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
ea521e06ae90620f4bd0d78cfe98e371c1c718f5
449d555969bfd7befe906877abab098c6e63a0e8
/2840/CH9/EX9.2/ex9_2.sce
923e4acd2cfe6d57ca178a983ab3e8dadde57b9f
[]
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
283
sce
ex9_2.sce
clc; clear all; h = 6.62e-34; // Planck's constant J.s v = 440e3; // Operating frequency of radio in Hertz P = 20e3 ; // Power of radio transmitter in Watts n = P/(h*v);// Let n be the number of photons emitted per second disp('',n,'Number of photon emitted per second is ');
5fe76ef1f467aa3f35ed8dd2cddeabe2e3103cb9
449d555969bfd7befe906877abab098c6e63a0e8
/3785/CH7/EX7.1/Ex7_1.sce
d65b2e7a855033c6f5dd9aca71ab6b225cffd510
[]
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,029
sce
Ex7_1.sce
// Example 7_1 clc;funcprot(0); // Given data D=6;// The diameter of a steel pipe in inch Q=2000;// Volume flow rate in gpm L=1.0;// Length in km nu=1.0*10^-6;// Kinematic viscosity in m^2/s rho=1*10^3;// The density of water in kg/m^3 // Calculation // (a) D=D*2.54*10^-2;// m Q=(Q*3.782*10^-3)/60;// m^3/s Vbar=(4*Q)/(%pi*D^2);// m/s Re_D=(Vbar*D)/nu;// Reynolds number // (b) epsilon=5*10^-5;// physical height in m function[X]=frictionfactor(y) X(1)=-(2.0*log10(((epsilon/D)/3.7)+(2.51/(Re_D*sqrt(y(1))))))-(1/sqrt(y(1))); endfunction // Guessing a value of f=1*10^-2; y=[1*10^-2]; f=fsolve(y,frictionfactor); dp=f*((1/2)*rho*Vbar^2)*((L*10^3)/D);// The pressure drop in Pa P=dp*Q;// The power required to maintain the flow in W printf("\n(a)Re_D=%1.3e.The How is turbulent since the Reynolds number exceeds the transition value of 2300. \n(b)The pressure drop,deltap=%1.3e Pa \n(c)The power required to maintain the flow,P=%1.3e W",Re_D,dp,P); // The answer is varied due to round off error
5bddfdc949b354779ed8b4f19728ba91b753a823
449d555969bfd7befe906877abab098c6e63a0e8
/3507/CH5/EX5.3/Ex5_3.sce
7ca406c062ba729d86eaeb997c61e9a8e2618330
[]
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
566
sce
Ex5_3.sce
//chapter5 //example5.3 //page85 // for Rl=50, Av=30 //for Rl=85, Av=34 // Av=mu*Rl/(rp+Rl) // thus // Av*rp-mu*Rl=-Av*rl // substituting for Rl=50 and Rl=85 we get the following linaer equations // 30*rp-50*mu=-1500 and // 34*rp-85*mu=-2890 // solving by matrix a=[30 34 ; -50 -85] b=[-1500 -2890] solution=b/a mu=solution(1,2) rp=solution(1,1) // in kilo ohms since RL was in kilo ohm in the equations gm_kilo_mho=mu/rp gm=gm_kilo_mho/1000 printf("mu = %.3f \n",mu) printf("rp = %.3f kilo ohm \n",rp) printf("gm = %.4f mho \n",gm)
e25051f6ac5953d15207cf4bc8e4eefe233e67b9
449d555969bfd7befe906877abab098c6e63a0e8
/1055/CH24/EX24.3/ch24_3.sce
92661eec272706e46ac0b0aedb45a9e62fd9f54b
[]
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,260
sce
ch24_3.sce
// Priority List Method clear clc; Fc1=1.1;//Fuel cost(1)=Rs 1.1/MBtu Fc2=1;//Fuel cost(2)=1/MBtu Fc3=1.2;//Fuel cost(3)=1.2/MBtu P1max=600; P1=P1max; F1=600+7.1*P1+0.00141*(P1^2);//For P1= Pm1ax Favg1=F1*Fc1/600;//Full load average production cost P2max=450; P2=P2max; F2=350+7.8*P2+0.00195*(P2^2);//For P2= P2max Favg2=F2*Fc2/450;//Full load average production cost P3max=250; P3=P3max; F3=80+8*P3+0.0049*(P3^2);//For P3= P3max Favg3=F3*Fc3/250;//Full load average production cost mprintf("Priority List is as follows\n"); mprintf("Unit Rs/MWhr MinMW Max MW\n") mprintf(" 2 %.3f 100 %.0f \n",Favg2,P2max) mprintf(" 1 %.4f 60 %.0f \n",Favg1,P1max) mprintf(" 3 %.2f 50 %.0f \n\n",Favg3,P3max) Fmax1=P1max+P2max+P3max; Fmax2=P2max+P1max Fmax3=P2max mprintf("Unit Commitment Scheme is follows\n") mprintf("Combination Min.MW from Combination Max.MW from Combination\n"); mprintf("2+1+3 310 %.0f \n",Fmax1); mprintf("2+1 260 %.0f \n",Fmax2); mprintf("2 100 %.0f ",Fmax3);
15f4d31ba5ac7ac95f7841334629d49e86dde9ee
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/latcfilt/latcfilt17.sce
95fd44eb22664908ffed598b468cd341719293c3
[]
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
512
sce
latcfilt17.sce
//i/p arg k is negative k=[-0.2 -0.3 -0.4 -1]; x=[1 2 3 4 5 6 7] [f,g] = latcfilt(k,x); disp(f); disp(g); //output // !--error 10000 //dimension mis-match between k and v //at line 46 of function latcfilt called by : //[f,g] = latcfilt(k,x); //matlab // Columns 1 through 6 // // 1.0000 2.3800 3.7600 4.7600 4.7600 4.7600 // // Column 7 // // 4.7600 // // Columns 1 through 6 // // -1.0000 -2.3800 -3.7600 -4.7600 -4.7600 -4.7600 // // Column 7 // // -4.7600 // >>
5b68e62f4ed84a6dbf7a813016503fe816fe091d
b5414750d56558b8389af44118501111b6f1bb14
/IIR_filter_obitos_diarios.sce
e45f9d60d8002de3db9fe196a864ed7459ccb056
[]
no_license
alexandrerussi/brasil-covid19-analysis
898526df26f846a82cb4223f7cfce4cef7b2cb7c
31220f87ff1ee8ab0a7301058628c919eb9a45f8
refs/heads/master
2022-12-22T19:54:01.640724
2020-09-11T04:52:27
2020-09-11T04:52:27
293,398,982
0
0
null
null
null
null
UTF-8
Scilab
false
false
903
sce
IIR_filter_obitos_diarios.sce
casos_novos1 = fscanfMat("C:\Users\Junior\Documents\Dev e tecnologias\GitHub\brasil-covid19-analysis\output\obitos_novos.txt"); casos_novos = [casos_novos1]; t = 0:1:194; n = length(t); x = casos_novos x_transp = x' hz = iir(3, 'hp', 'butt', 50/n, []); y_3 = flts(x_transp, hz); hz = iir(6, 'hp', 'butt', 50/n, []); y_6 = flts(x_transp, hz); hz = iir(9, 'hp', 'butt', 50/n, []); y_9 = flts(x_transp, hz); plot(t, x, "k"); plot(t, y_3, "m"); plot(t, y_6, "g"); xtitle("Óbitos de COVID-19 por data de notificação no Brasil (IIR)", "Data de notificação", "Óbitos diários") legend(["Óbitos diários"], ["IIR ordem 3"], ["IIR ordem 6"], ["IIR ordem 9"], 2); xs2png(0,'C:\Users\Junior\Documents\Dev e tecnologias\GitHub\brasil-covid19-analysis\graphs\obitos_covid_iir.png'); xs2png(gcf(),'C:\Users\Junior\Documents\Dev e tecnologias\GitHub\brasil-covid19-analysis\graphs\obitos_covid_iir.png');
0e73dea4ee1a636c41b2909037aeba9c053bfc9a
449d555969bfd7befe906877abab098c6e63a0e8
/3819/CH2/EX2.20/Ex2_20.sce
a919cae1f8fa2db172512132edf7b801eb27654b
[]
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
537
sce
Ex2_20.sce
// A Textbook of Fluid Mecahnics and Hydraulic Machines - By R K Bansal // Chapter 2 - Pressure and its measurements // Problem 2.20 //Given Data Set in the Problem dens=1000 g=9.81 SG1=1.2 SG2=1.0 dens1=SG1*dens dens2=SG2*dens SG_oil=0.7 dens_oil=SG_oil*dens p=poly(0,"p") pA=p pB=p x1=30/100 //calculations //equating pressure in left and rght limbs ,we get; function [f]=F(h) f=(pA-dens1*g*x1-dens_oil*g*h)-(pB-dens2*g*(h+x1)) endfunction h=10; y=fsolve(h,F) mprintf("The reading h is %f cm\n",y*100)
040848eb21e2667f784c48cf38ff2738e0f46ea6
449d555969bfd7befe906877abab098c6e63a0e8
/2252/CH7/EX7.14/Ex7_14.sce
52d115364d7b96f01fece8f598959c51948d040a
[]
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
862
sce
Ex7_14.sce
//calculating frequency of applied voltage C=25.5D-6//capacitance I=.4//current through circuit V=50//voltage across capacitor Xc=V/I f=1/(2*%pi*C*Xc) mprintf("Frequency=%d Hz\n",round(f)) //calculating parameters of choke coil V=35//voltage across choke coil Z=V/I//impedance of choke coil //r^2+(100*%pi*L)^2=Z^2 R=20/.4 Vac=45//voltage across ac portion of circuit Zac=Vac/I//impedance of ac portion //(R+r)^2+(100*%pi*L)^2=Zac^2 //solving for r and L r=(Zac^2-Z^2-R^2)/(2*R) L=sqrt(Z^2-r^2)/(100*%pi) Xl=2*%pi*50*L mprintf("Parameters of choke coil:\nResistance=%f ohm\nInductance=%f H\nInductive reactance=%f ohm\n",r,L,Xl) //calculating applied voltage Z=sqrt((R+r)^2+(Xl-Xc)^2) V=I*Z mprintf("Voltage applied to the circuit=%f V\n",V) //calculating losses in choke coil W=I^2*r mprintf("Losses in choke coil=%d W\n",round(W))
a6c8f66d20299ec94865dd0961bf34b08b091073
449d555969bfd7befe906877abab098c6e63a0e8
/575/DEPENDENCIES/855.sci
2ba9677032ec8bf78d4ca0b6b36b36743c164511
[]
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
sci
855.sci
basis=100 //lbm/h Hv=728 //Btu/lbm Hl=45 //Btu/lbm HF=100 //Btu/lbm T=120 //F xF=0.30
58a42f20135e7d9cf67ff53c35108a44c150344a
449d555969bfd7befe906877abab098c6e63a0e8
/3673/CH3/EX3.a.11/Example_a_3_11.sce
16b9b0c322e166333baba67fe71301b545d90785
[]
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
260
sce
Example_a_3_11.sce
//Example_a_3_11 page no:140 clc; I=30; R1=10; R2=5; R3=5; R4=2; R5=1; R6=1; Rab=(R2*(2+((R5*R6)/R4)))/(R2+(2+((R5*R6)/R4))); In=I*(Rab/6.67);//norton current disp(In,"the norton current is (in A)"); disp(Rab,"the norton resistance is (in ohm)");
bea7546acc6b9914a5a6d2a71c8dc9bd613911f3
449d555969bfd7befe906877abab098c6e63a0e8
/2201/CH2/EX2.16/ex2_16.sce
6e81e545704ae8ee024301ff2aa241cf15e87e30
[]
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
ex2_16.sce
// Exa 2.16 clc; clear; close; // Given data d = 4.2*10^28;// in atoms/m^3 n_d = d/10^6;// in atoms/m^3 e = 1.6*10^-19;// in C Miu_e = 0.36;// in m^2/V-sec Sigma_n = n_d *e *Miu_e;// in mho/m Rho_n = 1/Sigma_n;// in ohm m disp(Rho_n,"The resistivity in Ωm is");
073c2241a0541ada073309262b8a77cfda00d2f9
449d555969bfd7befe906877abab098c6e63a0e8
/3446/CH5/EX5.5/Ex5_5.sce
e2cb304217f20b49238413cb78aa2935752d69bf
[]
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
5,516
sce
Ex5_5.sce
// Exa 5.5 // To Calculate: // a) The calls per hour per cell site // b) The mean S/I ratio // c) The spectral efficiency in Erlang/km2/MHz // for Reuse ratio =4,7,12 and for omnidirectional, 120 degree and 60 degree antenna systems. clc; clear all; VCH=395;//Total allocated voice channels CHBW=30; // in kHz Spectrum=12.5; // in MHz CallHT=120; //Average call holding time in sec Blocking=0.02; // 2% PL=40; //slope of path loss in dBperdecade //solution disp("We consider only the first tier interferers and neglect the effects of cochannel interference from the second and other higher tiers."); //FOR 120degree sectorization //N=4 VCH11=(VCH/(4*3)); OffLoad11=24.629; // Offered traffic load per sector from Erlang-B table(Appendix A) Load_site11=3*OffLoad11; CarLoad11=(1-Blocking)*Load_site11; Calls_hr_site11=CarLoad11*3600/CallHT; R11=sqrt(CarLoad11/0.52); Seff11=CarLoad11/(2.6*Spectrum*R11^2); S_I11=PL*log10(sqrt(3*4))-10*log10(2); //N=7 VCH12=(VCH/(3*7)); OffLoad12=12.341; // Offered traffic load per sector from Erlang-B table(Appendix A) Load_site12=3*OffLoad12; CarLoad12=(1-Blocking)*Load_site12; Calls_hr_site12=CarLoad12*3600/CallHT; R12=sqrt(CarLoad12/0.52); Seff12=CarLoad12/(2.6*Spectrum*R12^2); S_I12=PL*log10(sqrt(3*7))-10*log10(2); //N=12 VCH13=VCH/(3*12); OffLoad13=5.842; // Offered traffic load per sector from Erlang-B table(Appendix A) Load_site13=3*OffLoad13; CarLoad13=(1-Blocking)*Load_site13; Calls_hr_site13=CarLoad13*3600/CallHT; R13=sqrt(CarLoad13/0.52); Seff13=CarLoad13/(2.6*Spectrum*R13^2); S_I13=PL*log10(sqrt(3*12))-10*log10(2); //For omnidirectional //N=4 VCH21=VCH/(4); OffLoad21=87.004; // Offered traffic load per sector from Erlang-B table(Appendix A) Load_site21=OffLoad21; CarLoad21=(1-Blocking)*Load_site21; Calls_hr_site21=CarLoad21*3600/CallHT; R21=sqrt(CarLoad21/0.52); Seff21=CarLoad21/(2.6*Spectrum*R21^2); S_I21=PL*log10(sqrt(3*4))-10*log10(6); //N=7 VCH22=VCH/(7); OffLoad22=46.817; // Offered traffic load per sector from Erlang-B table(Appendix A) Load_site22=OffLoad22; CarLoad22=(1-Blocking)*Load_site22; Calls_hr_site22=CarLoad22*3600/CallHT; R22=sqrt(CarLoad22/0.52); Seff22=CarLoad22/(2.6*Spectrum*R22^2); S_I22=PL*log10(sqrt(3*7))-10*log10(6); //N=12 VCH23=VCH/(12); OffLoad23=24.629; // Offered traffic load per sector from Erlang-B table(Appendix A) Load_site23=OffLoad23; CarLoad23=(1-Blocking)*Load_site23; Calls_hr_site23=CarLoad23*3600/CallHT; R23=sqrt(CarLoad23/0.52); Seff23=CarLoad23/(2.6*Spectrum*R23^2); S_I23=PL*log10(sqrt(3*12))-10*log10(6); // For 60degree Sectorization //N=3 VCH31=VCH/(6*3); OffLoad31=14.902; // Offered traffic load per sector from Erlang-B table(Appendix A) Load_site31=6*OffLoad31; CarLoad31=(1-Blocking)*Load_site31; Calls_hr_site31=CarLoad31*3600/CallHT; R31=sqrt(CarLoad31/0.52); Seff31=CarLoad31/(2.6*Spectrum*R31^2); S_I31=PL*log10(sqrt(3*3))-10*log10(1); //N=4 VCH32=VCH/(6*4); OffLoad32=10.656; // Offered traffic load per sector from Erlang-B table(Appendix A) Load_site32=6*OffLoad32; CarLoad32=(1-Blocking)*Load_site32; Calls_hr_site32=CarLoad32*3600/CallHT; R32=sqrt(CarLoad32/0.52); Seff32=CarLoad32/(2.6*Spectrum*R32^2); S_I32=PL*log10(sqrt(3*4))-10*log10(1); //N=7 VCH33=VCH/(6*7); OffLoad33=5.084; // Offered traffic load per sector from Erlang-B table(Appendix A) Load_site33=6*OffLoad33; CarLoad33=(1-Blocking)*Load_site33; Calls_hr_site33=CarLoad33*3600/CallHT; R33=sqrt(CarLoad33/0.52); Seff33=CarLoad33/(2.6*Spectrum*R33^2); S_I33=PL*log10(sqrt(3*7))-10*log10(1); //N=12 VCH34=VCH/(6*12); OffLoad34=2.227; // Offered traffic load per sector from Erlang-B table(Appendix A) Load_site34=6*OffLoad34; CarLoad34=(1-Blocking)*Load_site34; Calls_hr_site34=CarLoad34*3600/CallHT; R34=sqrt(CarLoad34/0.52); Seff34=CarLoad34/(2.6*Spectrum*R34^2); S_I34=PL*log10(sqrt(3*12))-10*log10(1); printf('For Omnidirectional Calls_per_hour_per_cellsite Mean S_I ratio SpecrtalEfficiency\n') printf('For N=4 %d %.1f %.3f\n',Calls_hr_site21,S_I21,Seff21); printf('For N=7 %d %.1f %.3f\n',Calls_hr_site22,S_I22,Seff22); printf('For N=12 %d %.1f %.3f\n',Calls_hr_site23,S_I23,Seff23); printf('For 120deg sector Calls_per_hour_per_cellsite Mean S_I ratio SpecrtalEfficiency\n') printf('For N=4 %d %.1f %.3f\n',Calls_hr_site11,S_I11,Seff11); printf('For N=7 %d %.1f %.3f\n',Calls_hr_site12,S_I12,Seff12); printf('For N=12 %d %.1f %.3f\n',Calls_hr_site13,S_I13,Seff13); printf('For 60 deg Sector Calls_per_hour_per_cellsite Mean S_I ratio SpecrtalEfficiency\n') printf('For N=3 %d %.1f %.3f\n',Calls_hr_site31,S_I31,Seff31); printf('For N=4 %d %.1f %.3f\n',Calls_hr_site32,S_I32,Seff32); printf('For N=7 %d %.1f %.3f\n',Calls_hr_site33,S_I33,Seff33); printf('For N=12 %d %.1f %.3f\n',Calls_hr_site34,S_I34,Seff34);
4f34634500ec1d9c8b514a24327866819937f45a
5f48beee3dc825617c83ba20a7c82c544061af65
/tests/s/15.tst
b94343c9a3ed8e5e77a78bfdf9ff38bb5c6682d6
[]
no_license
grenkin/compiler
bed06cd6dac49c1ca89d2723174210cd3dc8efea
30634ec46fba10333cf284399f577be7fb8e5b61
refs/heads/master
2020-06-20T12:44:17.903582
2016-11-27T03:08:20
2016-11-27T03:08:20
74,863,612
3
0
null
null
null
null
UTF-8
Scilab
false
false
24
tst
15.tst
int a[]; char b[][3][5];
c5a25a544fb24185f9e6d8f53adfaaae47dd6f9a
6b7b3be3c11fc662ae3f0b3e8880218ce3888a07
/math/SciLab/%ZQuat_m_s.sci
48bda402c7be5ca0b48494ea0da166951d08e945
[]
no_license
johnzet/Flight
27cfa7dc8039f6c7b91385d9e204ad4a54248960
2893750df8aaa38311ffc125b1f7dcc9f5019eab
refs/heads/main
2023-02-25T19:51:03.725205
2021-01-31T01:12:09
2021-01-31T01:12:09
334,544,210
0
0
null
null
null
null
UTF-8
Scilab
false
false
328
sci
%ZQuat_m_s.sci
function [q2] = %ZQuat_m_s(q1,a) N1 = size(q1); sa = size(a); if (sa(2) > 1 | N1 > 1) error("Invalid arguments sizes"); end if (sa(1) > 1) then // vector //q2 = ZQ_defQuat(q1.r * a, q1.i * a); error("Use ZQ_sandwich(q,v) instead"); else // scalar q2 = ZQ_defQuat(q1.r * a, q1.i * a); end endfunction
efaedee86b6ee38d851e49e7aa3bd3e0b15742a5
449d555969bfd7befe906877abab098c6e63a0e8
/3760/CH6/EX6.22/Ex6_22.sce
c44f427653c2062217a910d303659f3f46d6c4e0
[]
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
543
sce
Ex6_22.sce
clc; Pm=7500; V=420; f=50; P=4; s=0.04; r1=1.2; x1=1.4; x2=1.4; Xm=38.6; //As per Thevenin's Equivalent circuit Re=(r1*Xm)/(Xm+x2); Xe=(x1*Xm)/(x2+Xm); Ve=(V/sqrt(3))*(Xm/(x2+Xm)); r2=(3)*(1-s)*s*Ve*Ve*(1/Pm); smT=r2/(sqrt((Re*Re)+((Xe+x2)*(Xe+x2)))); Tem=((3*Ve*Ve)/((((120*f)/P)/60)*2*%pi))*(1/2)*(1/(Re+(sqrt((Re*Re)+((Xe+x2)*(Xe+x2)))))); Test=((3*Ve*Ve)/((((120*f)/P)/60)*2*%pi))*(r2/(((Re+r2)*(Re+r2))+((Xe+x2)*(Xe+x2)))); mprintf('maximum torque is %f Nm \n slip is %f \n starting torque is %f Nm',Tem,smT,Test);
cd4588c8b437b552671f253d7815acc85627f2f0
76d58c93412c99ad3e8468ca843883add5b16d43
/plus-minus-phase.sci
9ac92669c07d5be40e02aae5f240f5262efd7bbb
[]
no_license
NnataKha/Mixed-plus-minus-interaction-conflict-model
cd6daadc26e6189720f088adf9a739072125f1fa
a02cf4c1c21dc5559721c219c93ad706f3af30be
refs/heads/master
2020-03-16T18:52:00.884504
2018-05-10T11:24:44
2018-05-10T11:24:44
132,889,968
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,305
sci
plus-minus-phase.sci
//Change plus/minus interaction depending on the scalar product of the vectors //main clear; n = 3;//number of elements m = 100;//number of inetrations epsilon = 0.1; //Function for setting starting values randomly function [p, r]=initial(number_of_elements) p = rand(number_of_elements,1) r = rand(number_of_elements,1) s = sum(p) p = p ./ s s = sum(r) r = r ./ s endfunction //Function for computing the coefficient responsible for the kind of interaction. //It depends on theta^N, thta^(N+1) and epsilon, which is the maximum possible //value for theta (equal to tau_norm*tau_norm) function coef = coefficient(c, theta, theta_old, delta, epsilon) if (epsilon*delta>theta)&(theta<theta_old) then coef = 1 elseif (theta_old<theta)&(theta>(1-epsilon)*delta) then coef = -1 else coef = c end endfunction //Function for computing the conflict iterations function [x, y, th, coef]=conflict(p, r, number_of_steps, epsilon) theta = sqrt(p'*r) tau = min(p, r) t = tau ./ sum(tau) delta = sqrt(t'*t) //initial value for conflict coefficient if theta<epsilon then c = 1 else c = -1 end coef = [c] th = sqrt(p'*r) x = p y = r for k = 1:number_of_steps theta_old = theta theta = sqrt(p'*r) tau = min(p, r) p_temp = p .*(1+theta) + c .* tau r_temp = r .*(1+theta) + c .* tau c = coefficient(c, theta, theta_old, delta, epsilon) s = sum(p_temp) p = p_temp ./ s s = sum(r_temp) r = r_temp ./ s th = cat(2, th, theta) x = cat(2, x, p) y = cat(2, y, r) coef = cat(2, coef, [c]) end endfunction [p, r] = initial(n);//setting initial values [p_lim, r_lim, theta, c] = conflict(p, r, m, epsilon);//computing conflict t = [1:1:m+1] //visualization //subplot(211) //plot(p_lim') //plot(r_lim', '--') //xtitle("p (solid line), r (dashed line)") for i=1:m+1 p_1(i) = p_lim(1,i) r_1(i) = r_lim(1,i) p_2(i) = p_lim(2,i) end //plot(t, p_1') //plot(t, r_1', '--') plot3d(p_1,p_2,r_1,'.-') //subplot(212) //plot(theta) //plot(c, 'g.-') //legend('theta', 'c') //xtitle('theta and c')
00be0b33aa68eac0a4f6eb113dd2fc773f815cd9
e86653ab56eded6714574f9f8f34013272027113
/3885/CH3/EX3.7/Ex3_7.sci
b38a983502bf8414ebc075a55c46ddfda56a6b4f
[]
no_license
FOSSEE/Xcos_TBC_Uploads
3637554f9dca20d0c5ec2c5d00d30942edafe09a
37e81552cb6d9066617ba91b13c91098e5ab6758
refs/heads/master
2023-03-30T10:45:38.033053
2021-03-15T05:40:35
2021-03-17T09:45:20
346,244,418
0
0
null
null
null
null
UTF-8
Scilab
false
false
793
sci
Ex3_7.sci
//control systems by Nagoor Kani A //Edition 3 //Year of publication 2015 //Scilab version 6.0.0 //operating systems windows 10 // Example 3.7 clc; clear; s=%s p=poly([1 0.4 0 ],'s','coeff') q=poly([0 0.6 1],'s','coeff') g=p./q disp(g,'the given transfer function is') c=g/(1+g) disp(c,'the closed loop transfer function is') u=c/s disp(u,'the in put is unit step signal') //standard form od second order system is w^2/s^2+2*zeta*w*s+w^2 //compaing h with the standard form w=1//natural frequency of oscillation disp(w,'natural frequency of oscillation in rad/sec') zeta=1/(2*w) disp(zeta,'the damping ratio is') mp=exp((-zeta*%pi)/sqrt(1-(zeta)^2))*100//percentage peak overshoot disp(mp,'percentage peak overshoot in percentage') tp=%pi/(w*sqrt(1-(zeta)^2)) disp(tp,'peak time in seconds')
1ccd659250f894f2cb29b216c0fe17e242ec1dc5
449d555969bfd7befe906877abab098c6e63a0e8
/1466/CH1/EX1.6/1_6.sce
3b75540c430910701fc3b9c5c1518d9125931cd1
[]
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
180
sce
1_6.sce
clc //initialisation of variables dh= 2 //in d= 13.6 //kg/m^3 w= 62.4 //lbf/ft^3 //CALCULATIONS x= d*dh-dh P= w*x/(144*12) //RESULTS printf (' presure = %.2f Lb/in^2',P)
feb3e4eedba2aaabf728474eec0f264adcda4143
449d555969bfd7befe906877abab098c6e63a0e8
/2183/CH6/EX6.4.c/Ex_6_4_c.sce
b8c77446674ebdfe0f1af1ac1830a7b8a07db7b8
[]
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
282
sce
Ex_6_4_c.sce
// Example 6.4.c //optical loss clc; clear; close; NA=0.2;//numerical aperture n=1.4;//refractive index nc=(NA)^2;//coupling efficiency pe=0.012;// pc1=pe*nc;// Loss=round(-(10*log10(pc1)));//optical loss in dB disp(Loss,"optical loss in dB is") //answer is wrong in the text book
08cf401263e53707615a209730fc9bcd7bde0061
449d555969bfd7befe906877abab098c6e63a0e8
/2699/CH10/EX10.17/Ex10_17.sce
165aab45d999e68902ec95fa04ece7594838fb9f
[]
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
478
sce
Ex10_17.sce
//EX10_17 PG-10.65 clc disp("Refer to the figure-10.59 shown") Rf=10e3;//feedback resistance R1=10e3; R2=20e3; R3=30e3; R4=40e3; V1=-1;//first input voltage at the inverting terminal V2=2;//second input voltage at the inverting terminal V3=3;//third input voltage at the inverting terminal V4=-2;//fourth input voltage at the inverting terminal Vo=-(Rf/R1*V1+Rf/R2*V2+Rf/R3*V3+Rf/R4*V4);//output voltage printf("\n Therefore output voltage is Vo=%.1f V \n",Vo)
70e7ca47c1afd3b41f8b08eb3ff45ce7cd7d2a42
449d555969bfd7befe906877abab098c6e63a0e8
/1787/CH8/EX8.3/Exa8_3.sce
59004d95edbf4d554dc8468cdda61bade7091425
[]
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
645
sce
Exa8_3.sce
//Exa 8.3 clc; clear; close; //given data : NA=7.5*10^24;//in atoms/m^3 ND=1.5*10^22;//in atoms/m^3 De=25*10^-4;//in m^2/s Dh=10^-3;//in m^2/s TAUeo=500;//in ns TAUho=100;//in ns ni=1.5*10^16;//in atoms/m^3 VR=-10;//in Volt epsilon=11.6*8.854*10^-12;//in F/m e=1.6*10^-19;//in Coulamb VT=26;//in mV GL=10^27;//in m^-3 s^-1 Le=sqrt(De*TAUeo*10^-9);//in um Le=Le*10^6;//in um Lh=sqrt(Dh*TAUho*10^-9);//in um Lh=Lh*10^6;//in um JS=e*(ni^2)*(De/(Le*10^-6*NA)+De/(Lh*10^-6*ND));//in A/cm^2 JL=12.5;//in mA/cm^2 VOC=VT*log(1+JL/JS);//in Volt disp(VOC,"Open circuit voltage in Volt : "); //Note : Answer in the book is wrong.
5ab4717c38b096e4cb341e204a2d4d7780eaf9b9
449d555969bfd7befe906877abab098c6e63a0e8
/27/CH7/EX7.1.1/Example_7_1_1.sce
b897f3b9ebbc39e6c233ddb4a7c28a27dd1b7bcb
[]
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,367
sce
Example_7_1_1.sce
clear; clear; clc; close; set(gca(),"auto_clear","off") //hold on // Note r=-1 is not the fixed point as radius can't be negative. r1=0; //First Fixed Point r2=1; //Second Fixed Point for r=0:0.05:1.1 f=r*(1-(r^2)); plot2d(r,f,style=-2) end set(gca(),"grid",[2,5]) //Grid on plot2d(0,0,style=-3) plot2d(1,0,style=-4) plot2d(0.5,0,style=-12) plot2d(1.1,0,style=-13) xtitle("r(dot) = r * (1 - r^2)","x-Axis (r)","y-Axis (r dot)") figure function xd=linear711(t,x) xd(1)=(cos(t)*sqrt(x(1)^2+x(2)^2)*(1-x(1)^2-x(2)^2))-(sqrt(x(1)^2+x(2)^2)*sin(t)); xd(2)=(sin(t)*sqrt(x(1)^2+x(2)^2)*(1-x(1)^2-x(2)^2))+(sqrt(x(1)^2+x(2)^2)*cos(t)); //x(dot); x(2) means y. //y(dot); x(1) means x.; endfunction bound=[-4,-4,4,4]; //Bounds of x-axis and y-axis as [xmin ymin xmax ymax], change them according to your needs. nrect=16; //increase it to get more number of curves, i.e. more information will be available. set(gca(),"auto_clear","off") //hold on x=linspace(bound(1),bound(3),nrect); y=linspace(bound(2),bound(4),nrect); x0=[]; for i=1:16 x0=[x(i);y(i)]; t0=0; t=0:0.01:6000; xout=ode(x0,t0,t,linear711); plot2d(xout(1,:),xout(2,:)); end xtitle('Phase Portrait','x-axis ( x )','y-axis ( y )')
7abede8bbc973b444379942ecc684f516e09ad8d
449d555969bfd7befe906877abab098c6e63a0e8
/2699/CH2/EX2.3/Ex2_3.sce
cae6bfd5d6b6d30c8169722ca9176085999abe61
[]
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
540
sce
Ex2_3.sce
//Ex2_3 Pg-2-22 clc clear; disp(" Refer to the figure-2.24 shown ") disp(" since Rf=0 The circuit becomes as shown in figure-2.24(a)") V=10;//supply voltage Rf=0;//forward resistance Rl=1;//load resistance in k ohm Vin=0.7;//cut in voltage Il=(V-Vin)/Rl;//applying KVL to the loop If=Il; printf("\n \n current through the resistance Il=If = is %.1f mA",If) Vl=Il*Rl; printf("\n \n voltage across Rl is %.1f V",Vl) Pd=If*Vin; printf("\n \n diode power Pd = %.2f mW",Pd) Pl=Il*Vl; printf("\n \n load power Pl = %.2f mW",Pl)
c5ca705022726fbc0a9eb7dcbf75de3b8ee6efc0
717ddeb7e700373742c617a95e25a2376565112c
/1766/CH10/EX10.5/EX10_5.sce
8703e08fa5b0c0ccdaed3f9ebdbf37df18a9fb10
[]
no_license
appucrossroads/Scilab-TBC-Uploads
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
refs/heads/master
2021-01-22T04:15:15.512674
2017-09-19T11:51:56
2017-09-19T11:51:56
92,444,732
0
0
null
2017-05-25T21:09:20
2017-05-25T21:09:19
null
UTF-8
Scilab
false
false
1,672
sce
EX10_5.sce
clc;funcprot(0);....//EXAMPLE 10.5 //Initialization of Variables t=0.12;.......//Slab thickness in m K=30;.........//Thermal conductivity in W/mK q=10^6;........//Energy generation inside the slab ain W/m^3 Tb=150;........//Boundary temperature at x = 0.12 in degree celsius n=4;.......//No of discrete units delx = t/n;....//Length of discretized piece //Calculations //The governing equation is T(i+1)-2T(i)+T(i-1) +[delx^2 * q]/K = 0 //We apply this equation to all the four discritized slab units C=[delx^2 * q]/K;..........// The value of [delx^2 * q]/K in the governing equation c11=-2;.....//Co effieicnt of T1 in equation 1 c12=2;......//Co effieicnt of T1 in equation 2 c13=0;......//Co effieicnt of T1 in equation 3 c14=0;......//Co effieicnt of T1 in equation 4 c21=1;......//Co effieicnt of T2 in equation 1 c22=-2;.....//Co effieicnt of T2 in equation 2 c23=1;......//Co effieicnt of T2 in equation 3 c24=0;......//Co effieicnt of T2 in equation 4 c31=0;......//Co effieicnt of T3 in equation 1 c32=1;......//Co effieicnt of T3 in equation 2 c33=-2;......//Co effieicnt of T3 in equation 3 c34=1;......//Co effieicnt of T3 in equation 4 c41=0;......//Co effieicnt of T4 in equation 1 c42=0;......//Co effieicnt of T4 in equation 2 c43=1;......//Co effieicnt of T4 in equation 3 c44=-2;......//Co effieicnt of T4 in equation 4 M=[c11,c12,c13,c14;c21,c22,c23,c24;c31,c32,c33,c34;c41,c42,c43,c44];.......//Matrix B=[-C;-C;-C;-C-Tb];....//Boundary conditions Temperature matrix T=inv(M)*B; disp(T,"The steady state temperatures(In degree Celsius) at the four interfaces T1,T2,T3 and T4 respectively as shown in the figure are :")
5a3aec413cde1f9b3189a534a313b403a28c92e6
6cbc9ef86318b4cfcbe32fc27dc997eea5d0ae94
/fprint.tst
f3ae34081aac4928e367906e3b16963bd2409b25
[ "BSD-2-Clause" ]
permissive
sasagawa888/eisl
c60c8307cf4ba1be20be15a4d59005f04b2b348e
450e09dbb59139621981f1104eefcad19957de2a
refs/heads/master
2023-09-03T17:48:38.297684
2023-09-02T05:42:40
2023-09-02T05:42:40
168,798,493
200
25
NOASSERTION
2023-06-17T21:16:28
2019-02-02T05:35:38
Common Lisp
UTF-8
Scilab
false
false
17,117
tst
fprint.tst
((((((]78901FG >67890XF >67890XF <56789DE <56789DE {45678CD) [34567BC (>67890XF <56789DE <56789DE {45678CD {45678CD [34567BC) _23456AB (<56789DE {45678CD {45678CD [34567BC [34567BC _23456AB) XYZABC34) WXYZAB23 ((>67890XF <56789DE <56789DE {45678CD {45678CD [34567BC) _23456AB (<56789DE {45678CD {45678CD [34567BC [34567BC _23456AB) XYZABC34 ({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23) UVWXYZ12 ((<56789DE {45678CD {45678CD [34567BC [34567BC _23456AB) XYZABC34 ({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23 ([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12) STUVWX01) QRSTUV90 (((>67890XF <56789DE <56789DE {45678CD {45678CD [34567BC) _23456AB (<56789DE {45678CD {45678CD [34567BC [34567BC _23456AB) XYZABC34 ({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23) UVWXYZ12 ((<56789DE {45678CD {45678CD [34567BC [34567BC _23456AB) XYZABC34 ({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23 ([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12) STUVWX01 (({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23 ([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01) QRSTUV90) OPQRST89 (((<56789DE {45678CD {45678CD [34567BC [34567BC _23456AB) XYZABC34 ({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23 ([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12) STUVWX01 (({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23 ([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01) QRSTUV90 (([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90) OPQRST89) MNOPQR78) KLMNOP67 ((((>67890XF <56789DE <56789DE {45678CD {45678CD [34567BC) _23456AB (<56789DE {45678CD {45678CD [34567BC [34567BC _23456AB) XYZABC34 ({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23) UVWXYZ12 ((<56789DE {45678CD {45678CD [34567BC [34567BC _23456AB) XYZABC34 ({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23 ([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12) STUVWX01 (({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23 ([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01) QRSTUV90) OPQRST89 (((<56789DE {45678CD {45678CD [34567BC [34567BC _23456AB) XYZABC34 ({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23 ([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12) STUVWX01 (({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23 ([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01) QRSTUV90 (([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90) OPQRST89) MNOPQR78 ((({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23 ([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01) QRSTUV90 (([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90) OPQRST89 ((_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90 (WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89) MNOPQR78) KLMNOP67) IJKLMN56 ((((<56789DE {45678CD {45678CD [34567BC [34567BC _23456AB) XYZABC34 ({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23 ([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12) STUVWX01 (({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23 ([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01) QRSTUV90 (([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90) OPQRST89) MNOPQR78 ((({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23 ([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01) QRSTUV90 (([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90) OPQRST89 ((_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90 (WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89) MNOPQR78) KLMNOP67 ((([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90) OPQRST89 ((_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90 (WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89) MNOPQR78 ((XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90 (WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89 (UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90 QRSTUV90 OPQRST89) MNOPQR78) KLMNOP67) IJKLMN56) GHIJKL45) EFGHIJ34 (((((>67890XF <56789DE <56789DE {45678CD {45678CD [34567BC) _23456AB (<56789DE {45678CD {45678CD [34567BC [34567BC _23456AB) XYZABC34 ({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23) UVWXYZ12 ((<56789DE {45678CD {45678CD [34567BC [34567BC _23456AB) XYZABC34 ({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23 ([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12) STUVWX01 (({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23 ([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01) QRSTUV90) OPQRST89 (((<56789DE {45678CD {45678CD [34567BC [34567BC _23456AB) XYZABC34 ({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23 ([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12) STUVWX01 (({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23 ([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01) QRSTUV90 (([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90) OPQRST89) MNOPQR78 ((({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23 ([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01) QRSTUV90 (([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90) OPQRST89 ((_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90 (WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89) MNOPQR78) KLMNOP67) IJKLMN56 ((((<56789DE {45678CD {45678CD [34567BC [34567BC _23456AB) XYZABC34 ({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23 ([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12) STUVWX01 (({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23 ([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01) QRSTUV90 (([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90) OPQRST89) MNOPQR78 ((({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23 ([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01) QRSTUV90 (([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90) OPQRST89 ((_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90 (WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89) MNOPQR78) KLMNOP67 ((([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90) OPQRST89 ((_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90 (WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89) MNOPQR78 ((XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90 (WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89 (UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90 QRSTUV90 OPQRST89) MNOPQR78) KLMNOP67) IJKLMN56) GHIJKL45 (((({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23 ([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01) QRSTUV90 (([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90) OPQRST89 ((_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90 (WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89) MNOPQR78) KLMNOP67 ((([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90) OPQRST89 ((_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90 (WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89) MNOPQR78 ((XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90 (WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89 (UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90 QRSTUV90 OPQRST89) MNOPQR78) KLMNOP67) IJKLMN56 (((_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90 (WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89) MNOPQR78 ((XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90 (WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89 (UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90 QRSTUV90 OPQRST89) MNOPQR78) KLMNOP67 ((WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89 (UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90 QRSTUV90 OPQRST89) MNOPQR78 (STUVWX01 QRSTUV90 QRSTUV90 OPQRST89 OPQRST89 MNOPQR78) KLMNOP67) IJKLMN56) GHIJKL45) EFGHIJ34) CDEFGH23 (((((<56789DE {45678CD {45678CD [34567BC [34567BC _23456AB) XYZABC34 ({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23 ([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12) STUVWX01 (({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23 ([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01) QRSTUV90 (([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90) OPQRST89) MNOPQR78 ((({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23 ([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01) QRSTUV90 (([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90) OPQRST89 ((_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90 (WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89) MNOPQR78) KLMNOP67 ((([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90) OPQRST89 ((_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90 (WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89) MNOPQR78 ((XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90 (WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89 (UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90 QRSTUV90 OPQRST89) MNOPQR78) KLMNOP67) IJKLMN56) GHIJKL45 (((({45678CD [34567BC [34567BC _23456AB _23456AB XYZABC34) WXYZAB23 ([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01) QRSTUV90 (([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90) OPQRST89 ((_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90 (WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89) MNOPQR78) KLMNOP67 ((([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90) OPQRST89 ((_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90 (WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89) MNOPQR78 ((XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90 (WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89 (UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90 QRSTUV90 OPQRST89) MNOPQR78) KLMNOP67) IJKLMN56 (((_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90 (WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89) MNOPQR78 ((XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90 (WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89 (UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90 QRSTUV90 OPQRST89) MNOPQR78) KLMNOP67 ((WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89 (UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90 QRSTUV90 OPQRST89) MNOPQR78 (STUVWX01 QRSTUV90 QRSTUV90 OPQRST89 OPQRST89 MNOPQR78) KLMNOP67) IJKLMN56) GHIJKL45) EFGHIJ34 (((([34567BC _23456AB _23456AB XYZABC34 XYZABC34 WXYZAB23) UVWXYZ12 (_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90) OPQRST89 ((_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90 (WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89) MNOPQR78 ((XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90 (WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89 (UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90 QRSTUV90 OPQRST89) MNOPQR78) KLMNOP67) IJKLMN56 (((_23456AB XYZABC34 XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12) STUVWX01 (XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90 (WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89) MNOPQR78 ((XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90 (WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89 (UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90 QRSTUV90 OPQRST89) MNOPQR78) KLMNOP67 ((WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89 (UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90 QRSTUV90 OPQRST89) MNOPQR78 (STUVWX01 QRSTUV90 QRSTUV90 OPQRST89 OPQRST89 MNOPQR78) KLMNOP67) IJKLMN56) GHIJKL45 (((XYZABC34 WXYZAB23 WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01) QRSTUV90 (WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89 (UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90 QRSTUV90 OPQRST89) MNOPQR78) KLMNOP67 ((WXYZAB23 UVWXYZ12 UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90) OPQRST89 (UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90 QRSTUV90 OPQRST89) MNOPQR78 (STUVWX01 QRSTUV90 QRSTUV90 OPQRST89 OPQRST89 MNOPQR78) KLMNOP67) IJKLMN56 ((UVWXYZ12 STUVWX01 STUVWX01 QRSTUV90 QRSTUV90 OPQRST89) MNOPQR78 (STUVWX01 QRSTUV90 QRSTUV90 OPQRST89 OPQRST89 MNOPQR78) KLMNOP67 (QRSTUV90 OPQRST89 OPQRST89 MNOPQR78 MNOPQR78 KLMNOP67) IJKLMN56) GHIJKL45) EFGHIJ34) CDEFGH23) ABCDEF12)
b77392a3645f8d2ec07c987930a2ad05c2d0c200
8781912fe931b72e88f06cb03f2a6e1e617f37fe
/scilab/calc_soap/loader.sce
7f63bff5cc263d03d422d1ab91272bc790350670
[]
no_license
mikeg2105/matlab-old
fe216267968984e9fb0a0bdc4b9ab5a7dd6e306e
eac168097f9060b4787ee17e3a97f2099f8182c1
refs/heads/master
2021-05-01T07:58:19.274277
2018-02-11T22:09:18
2018-02-11T22:09:18
121,167,118
1
0
null
null
null
null
UTF-8
Scilab
false
false
208
sce
loader.sce
// generated by builder.sce: Please do not edit this file // ------------------------------------------------------ fooc_path=get_absolute_file_path('loader.sce'); link(fooc_path+'libfooc.dll',['fooc'],'c');
8498d23f39629aadc74d340757d7471f17dccf59
449d555969bfd7befe906877abab098c6e63a0e8
/2223/CH2/EX2.1/Ex2_1.sce
0528ccd2c90323dbf4acc4ab20bbce65492a90e9
[]
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
963
sce
Ex2_1.sce
// scilab Code Exa 2.1 Calculation on a Diffuser p1=800; // Initial Pressure in kPa T1=540; // Initial Temperature in K p2=580; // Final Pressure in kPa gamma=1.4; // Specific Heat Ratio cp=1005; // Specific Heat at Constant Pressure in J/(kgK) R=0.287; // Universal Gas Constant in kJ/kgK g=9.81; // Gravitational acceleration in m/s^2 sg=13.6; // Specific Gravity of mercury n=0.95; // Efficiency in % AR=4; // Area Ratio of Diffuser delp=(367)*(1e-3)*(g)*(sg); // Total Pressure Loss Across the Diffuser in kPa pr=p1/p2; // Pressure Ratio T2s=T1/(pr^((gamma-1)/gamma)); T2=T1-(n*(T1-T2s)); c2=sqrt(2*cp*(T1-T2)); ro2=p2/(R*T2); c3=c2/AR; m=0.5*1e-3*ro2*((c2^2)-(c3^2)); n_D=1-(delp/m); disp ("%",n_D*1e2," Efficiency of the diffuser is") p3=(p2+n_D*m)*1e-2; disp("m/s",c2,"the velocity of air at diffuser entry is") disp("m/s",c3,"the velocity of air at diffuser exit is") disp("bar",p3,"static pressure at the diffuser exit is")
3945ded651b1d27d514a695f9047a6233d61eb92
b9602336613b26d0b9c22a09d219c0ed8e158b4e
/Examples/Examples_VecFunc/indexMin_indexMax.sce
742707dd217f21671ebf2f2f17cd36e59e718fda
[ "BSD-2-Clause" ]
permissive
CEG-MCA-Scilab-Hackathon/Scilab_Armadillo_Toolbox
d0a366f5f058ee45d3c4be7a41e08ed419d4b7cd
70c97cda4e0dd54df0a638e9b99f380c09ffa37e
refs/heads/master
2022-12-11T01:28:28.742041
2020-08-26T12:24:27
2020-08-26T12:24:27
290,481,428
0
0
null
null
null
null
UTF-8
Scilab
false
false
215
sce
indexMin_indexMax.sce
// Function Name: indexMin/indexMax // Return index of min/max value // Calculating the indexMin/indexMax. inputvec1 = [1, 2, 3]; result = armaVec("indexMin",inputvec1) result = armaVec("indexMax",inputvec1)
ecb6a1605ee5f0110b2c98c621c03664c979ecfd
449d555969bfd7befe906877abab098c6e63a0e8
/608/CH14/EX14.08/14_08.sce
6153070dabcad4f538bd6c04c196fdc755785898
[]
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
349
sce
14_08.sce
//Problem 14.08: A supply voltage has a mean value of 150 V. Determine its maximum value and its rms value //initializing the variables: Vmean = 150; // in Volts //calculation: //for a sine wave Vmax = Vmean/0.637 Vrms = 0.707*Vmax printf("\n\n Result \n\n") printf("\n peak value = %.1f V",Vmax) printf("\n rms value = %.1f V",Vrms)
5259140affc95154998c273f5049bf4155d55a7e
449d555969bfd7befe906877abab098c6e63a0e8
/1382/CH6/EX6.9/EX_6_9.sce
49d7dcbb1b009cb58a7c755aab3be0b64fa66438
[]
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
571
sce
EX_6_9.sce
// Example 6.8;// INPUT VOLTAGE ,distortion AND close loop gain clc; clear; close; Vs=10;//output voltage in milli volts A=1000;//amplifier gain without feedback D=0.1;//distortion without feedback BetaAd=40;//FEEDBACK FACTOR IN dB BetaA=10^(BetaAd/20);// feedback ratio Df= ((D/(1+BetaA)))*100;//distortion in percentage with feedbck Af= (A/(1+(BetaA)));//GAIN WITH FEEDBACL Vo= Vs*(1+BetaA)*10^-3;//new output volate in volts disp(Vo,"new output volate in volts") disp(Df,"distortion in percentage with feedbck is") disp(Af,"gain with feedback is")
7f06367d94b1cb68718d1db86a4b7e83889c1e7e
449d555969bfd7befe906877abab098c6e63a0e8
/1376/CH16/EX16.7/16_7.sci
196a4b4b6f4fe0e062565eb9d18c31f0f572fc52
[]
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
545
sci
16_7.sci
//16.7 clc; disp('Star connections') R=20; Iph=440/(3^0.5*R); P_total=3*Iph^2*R; disp('when one of the resistor get disconnected') Iph=440/(2*20); P_total_new=2*Iph^2*R; P_reduction=(P_total-P_total_new)*100/P_total; printf("\nReduction in Power=%.2f percent",P_reduction) disp('Delta connections') R=20; Iph=440/(R); P_total=3*Iph^2*R; disp('when one of the resistor get disconnected') Iph=440/(20); P_total_new=2*Iph^2*R; P_reduction=(P_total-P_total_new)*100/P_total; printf("\nReduction in Power=%.2f percent",P_reduction)
c27f3efda5ae6c7f810163c0ce0ab9d46e7d637c
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/blog/ngram/5.16_14.tst
59ca6dfa7b0ffb204dd284f1bcd0f302ff09d35b
[]
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
663,919
tst
5.16_14.tst
16 83:1 165:1 337:1 407:1 627:1 934:1 1062:1 1081:1 1346:1 1413:1 1484:1 1569:1 1594:1 1596:1 1621:1 1654:1 1790:1 1904:1 2022:1 2108:1 2256:1 2336:1 2595:1 2738:1 2792:1 3417:1 3519:1 3606:1 3625:1 3651:1 3652:1 3688:1 3740:1 4106:1 4234:1 4347:1 4372:1 4653:1 4824:1 4927:1 4939:1 4940:1 5145:1 5214:1 5392:1 5525:1 5562:1 5624:1 5791:1 5860:1 5932:2 5976:1 6126:1 6127:1 6151:1 6250:1 6298:1 6523:1 6799:1 6996:1 7269:1 7275:1 7548:1 7668:1 7786:1 7805:1 7936:1 7977:1 8006:1 8358:1 8362:1 8526:1 8531:1 8550:1 8583:1 8595:1 8680:1 9078:1 9375:1 9428:1 9484:1 9511:1 9655:1 9730:1 9873:1 9883:1 10035:1 10374:1 10396:1 10401:1 10524:1 10649:1 10767:1 11047:1 11120:1 11172:1 11399:1 11431:1 11476:1 11499:1 11534:1 11633:1 11786:1 11787:1 11788:1 12768:1 12799:1 12870:1 12874:1 12884:1 12924:1 13114:1 13250:1 13365:1 13457:1 14087:1 14126:1 14158:1 14437:1 14898:1 15033:1 15058:1 15401:1 15442:1 15566:1 15637:2 15731:1 15773:1 15812:1 15832:1 16064:1 16146:1 16366:1 16373:1 16608:1 16920:1 16936:1 17103:1 17117:1 17130:1 17220:1 17311:1 17392:1 17404:1 17912:2 18052:1 18101:131 18272:1 18362:1 18512:1 18584:1 18825:1 18859:1 18883:1 18947:1 18972:1 18976:1 19206:1 19394:1 19525:1 19569:1 19756:1 19818:1 19900:1 19979:1 20402:1 20422:1 20561:1 20723:1 20782:1 20941:1 20976:1 21239:1 21379:1 21380:1 21515:1 21548:1 21594:1 21668:2 21718:1 21794:1 22042:1 22295:1 22530:1 22667:1 22670:1 22757:1 22856:1 23192:1 23224:1 23362:1 23646:1 23753:1 24036:1 24214:1 24360:1 24417:1 24540:1 24692:1 24847:1 24969:1 25191:1 25410:2 25414:1 25681:1 25698:1 26032:1 26331:1 26397:1 26430:1 26509:1 27280:2 27316:1 27394:1 27465:1 27561:1 27705:1 27926:1 27963:1 27968:1 28210:1 28344:1 28507:1 28509:1 16 83:1 165:1 201:1 337:1 407:1 509:1 627:1 934:1 1062:1 1081:1 1259:1 1275:1 1346:1 1413:1 1484:1 1501:1 1525:1 1544:1 1569:1 1583:1 1594:1 1596:1 1621:1 1632:1 1637:1 1654:1 1790:1 1904:2 1929:1 2022:1 2074:1 2108:1 2244:1 2248:1 2256:2 2336:1 2595:2 2731:1 2738:1 2792:2 2885:1 3254:1 3388:1 3417:1 3427:1 3512:1 3519:1 3606:1 3625:1 3651:1 3652:4 3688:2 3740:1 3777:1 3816:1 3925:1 3939:1 4106:1 4234:1 4347:1 4372:1 4543:1 4653:1 4660:1 4824:1 4893:1 4927:1 4939:1 4940:3 4975:1 5145:1 5214:3 5361:1 5392:1 5525:1 5562:1 5624:1 5662:1 5683:1 5791:1 5860:1 5932:2 5976:1 6079:1 6126:1 6127:1 6151:1 6250:1 6256:1 6267:1 6298:1 6450:1 6523:1 6582:1 6799:1 6996:1 7180:1 7221:1 7269:1 7275:1 7360:1 7420:1 7437:1 7548:3 7568:1 7586:1 7653:1 7668:1 7786:1 7805:1 7910:1 7928:1 7936:1 7977:1 7983:1 8006:2 8170:1 8176:1 8358:1 8362:1 8420:1 8517:1 8526:1 8531:1 8550:1 8583:1 8595:1 8667:1 8675:1 8678:1 8680:1 8995:1 9015:1 9078:1 9375:3 9428:1 9484:1 9511:3 9655:1 9730:1 9748:1 9830:1 9873:2 9876:1 9883:1 10035:1 10314:1 10374:1 10396:1 10401:1 10524:1 10635:1 10649:1 10767:1 10905:1 11047:1 11081:1 11112:1 11120:1 11172:1 11248:1 11336:1 11399:1 11406:1 11431:1 11476:1 11499:1 11534:1 11544:1 11633:1 11786:1 11787:1 11788:3 11955:1 12016:1 12134:1 12189:1 12369:1 12691:1 12768:1 12776:1 12799:1 12870:1 12874:1 12884:1 12889:1 12891:1 12924:1 12966:1 13049:1 13114:1 13149:1 13250:1 13365:1 13457:1 13855:1 13926:1 13935:1 14087:1 14126:1 14158:1 14437:1 14760:1 14826:1 14898:2 15033:1 15058:2 15067:1 15239:1 15269:1 15347:1 15401:1 15442:1 15566:3 15637:5 15731:1 15773:1 15774:1 15812:1 15832:1 16064:1 16068:1 16146:1 16151:1 16168:1 16255:1 16366:1 16373:1 16608:1 16744:1 16766:1 16920:1 16936:1 17019:1 17103:1 17117:1 17130:1 17220:1 17311:1 17392:1 17404:1 17609:1 17774:1 17779:1 17805:1 17912:3 18052:1 18101:219 18178:1 18271:1 18272:1 18362:1 18410:1 18472:1 18512:1 18584:2 18825:1 18830:1 18859:2 18883:2 18911:1 18947:1 18950:1 18972:1 18976:1 18997:1 19206:1 19209:1 19253:1 19394:1 19525:1 19569:1 19663:1 19677:1 19756:1 19818:1 19900:1 19945:1 19979:1 20245:1 20257:1 20322:1 20402:1 20422:1 20561:1 20718:1 20723:1 20733:1 20782:1 20838:1 20840:1 20941:1 20973:1 20976:1 21019:1 21142:1 21239:1 21379:3 21380:1 21515:3 21537:1 21548:1 21575:1 21594:1 21628:1 21668:2 21718:1 21753:1 21794:1 22042:1 22049:1 22165:1 22295:1 22453:1 22481:1 22530:1 22627:1 22667:1 22670:1 22677:1 22748:1 22757:2 22856:1 23104:1 23192:1 23224:1 23362:1 23646:1 23716:1 23753:1 23802:1 23879:1 24003:1 24036:1 24144:1 24214:1 24360:1 24417:1 24473:1 24488:1 24540:1 24692:1 24797:1 24847:1 24969:1 25117:1 25191:1 25387:1 25410:3 25414:1 25681:2 25683:1 25698:1 25700:1 25787:1 25793:1 26032:1 26289:1 26303:1 26331:1 26397:2 26401:1 26430:1 26503:1 26509:1 26510:1 26963:1 26989:1 27280:2 27281:1 27316:2 27394:1 27405:1 27465:1 27561:1 27692:1 27705:1 27773:1 27926:1 27963:1 27968:1 28210:1 28343:1 28344:1 28507:1 28509:1 16 83:1 165:1 201:1 337:1 407:1 509:1 627:1 856:1 934:1 966:1 1015:1 1062:1 1081:1 1259:1 1275:1 1346:1 1413:1 1484:1 1501:1 1525:1 1544:1 1569:1 1583:1 1594:1 1596:1 1621:1 1632:1 1637:1 1654:1 1790:1 1904:3 1929:1 2022:1 2074:1 2108:1 2244:1 2248:1 2256:3 2336:1 2595:3 2637:1 2731:2 2738:1 2755:1 2792:3 2828:1 2885:2 3254:1 3388:1 3417:1 3427:1 3442:1 3511:1 3512:1 3519:1 3569:1 3606:1 3625:1 3651:1 3652:5 3688:2 3740:1 3777:2 3816:1 3925:1 3939:1 4106:1 4234:1 4347:1 4372:1 4543:1 4653:1 4660:2 4824:1 4893:1 4927:1 4939:1 4940:4 4975:1 5145:1 5214:4 5361:1 5392:1 5525:1 5562:1 5624:1 5659:1 5662:1 5683:1 5791:1 5860:1 5932:2 5976:1 6079:1 6126:1 6127:1 6151:1 6250:1 6256:1 6267:1 6298:1 6450:1 6513:1 6523:1 6582:1 6799:1 6996:1 7000:1 7180:1 7221:2 7269:1 7275:1 7360:1 7420:1 7437:1 7548:3 7568:2 7586:1 7588:1 7653:1 7668:1 7786:1 7805:1 7910:1 7928:1 7936:1 7977:1 7983:1 8006:3 8092:1 8116:1 8170:2 8176:1 8194:1 8251:1 8357:1 8358:1 8362:1 8396:1 8420:1 8517:1 8526:1 8531:1 8550:1 8583:1 8595:1 8667:1 8675:1 8678:1 8680:1 8995:1 9015:1 9055:1 9078:1 9375:4 9428:1 9484:1 9511:4 9655:1 9730:1 9748:1 9830:1 9873:2 9876:2 9883:1 10035:1 10314:1 10374:1 10396:1 10401:1 10524:1 10635:1 10649:1 10767:1 10905:1 11039:1 11047:1 11081:1 11112:1 11120:1 11169:1 11172:1 11242:1 11248:2 11280:1 11336:1 11399:1 11406:1 11431:1 11476:1 11499:1 11534:1 11544:2 11633:1 11786:1 11787:1 11788:4 11939:1 11955:1 12016:1 12134:1 12189:1 12323:1 12369:2 12599:1 12691:1 12692:1 12768:1 12776:1 12799:1 12829:1 12870:1 12874:1 12884:1 12889:1 12891:1 12892:1 12924:1 12966:1 13033:1 13049:1 13114:1 13149:1 13250:1 13365:1 13457:1 13467:1 13493:1 13855:1 13926:1 13935:1 14087:1 14126:1 14158:1 14437:1 14760:2 14826:1 14898:2 15033:1 15058:2 15067:1 15239:1 15269:1 15347:1 15401:1 15442:1 15566:4 15637:6 15697:1 15731:1 15763:1 15773:1 15774:1 15812:1 15832:1 16064:1 16068:1 16146:1 16151:1 16168:1 16217:1 16255:1 16366:1 16373:1 16608:1 16683:1 16744:1 16766:1 16877:1 16911:1 16920:1 16936:1 17019:1 17103:1 17117:1 17130:1 17220:1 17311:1 17363:1 17392:1 17404:1 17609:2 17774:1 17779:1 17805:1 17912:4 18052:1 18101:287 18163:1 18178:2 18234:1 18271:1 18272:1 18298:1 18311:1 18362:1 18410:2 18472:1 18512:1 18584:3 18669:1 18825:1 18830:1 18859:3 18881:1 18883:2 18911:1 18947:1 18950:1 18972:1 18976:1 18997:1 19206:1 19209:1 19253:1 19394:1 19525:1 19569:1 19663:1 19677:2 19695:1 19707:1 19756:1 19818:1 19900:1 19945:1 19979:1 20245:1 20257:2 20322:1 20402:1 20422:1 20561:1 20718:1 20723:1 20733:1 20782:1 20838:1 20840:1 20870:1 20941:1 20973:1 20976:1 21019:1 21142:1 21239:1 21379:3 21380:1 21515:4 21537:1 21548:1 21556:1 21575:1 21594:1 21628:2 21668:2 21718:1 21753:1 21794:1 22042:1 22049:1 22165:1 22295:1 22453:1 22481:2 22530:1 22627:1 22667:1 22670:1 22677:1 22748:1 22757:2 22856:1 23104:1 23126:1 23192:1 23224:1 23306:1 23362:1 23646:1 23716:1 23753:1 23780:1 23802:1 23879:1 24003:1 24036:1 24144:1 24214:1 24234:1 24360:1 24417:1 24473:2 24488:1 24540:1 24692:1 24797:1 24847:1 24969:1 25117:1 25191:1 25387:1 25410:4 25414:1 25681:3 25683:1 25696:1 25698:1 25700:1 25787:1 25793:2 26032:1 26289:1 26303:1 26331:1 26397:2 26401:1 26430:1 26503:1 26509:1 26510:1 26869:1 26963:1 26989:1 27280:3 27281:1 27316:2 27394:1 27405:1 27465:1 27561:1 27692:1 27705:1 27773:1 27926:1 27963:1 27968:1 28210:1 28343:1 28344:1 28507:1 28509:1 16 83:1 165:1 201:1 327:1 337:2 407:2 509:1 627:1 757:1 856:1 934:1 966:1 985:1 1015:1 1062:1 1081:1 1239:1 1259:1 1275:1 1346:1 1413:1 1484:1 1501:1 1525:1 1544:1 1569:1 1572:1 1583:1 1594:1 1596:1 1621:1 1632:1 1637:1 1640:1 1654:1 1747:1 1790:1 1904:3 1929:1 2022:1 2023:1 2054:1 2074:1 2108:1 2232:1 2240:1 2244:1 2248:1 2256:3 2336:1 2437:1 2595:3 2637:1 2731:2 2738:1 2741:1 2755:1 2792:3 2818:2 2828:1 2885:3 3254:1 3388:1 3417:1 3427:1 3442:1 3511:1 3512:1 3519:1 3569:1 3606:1 3625:1 3651:1 3652:7 3688:3 3740:1 3777:3 3816:1 3838:1 3925:1 3939:1 4106:1 4234:1 4347:1 4372:1 4393:1 4543:1 4653:1 4660:2 4701:1 4824:1 4893:1 4927:1 4939:1 4940:5 4975:1 5145:1 5214:5 5361:1 5390:1 5392:1 5525:1 5562:1 5624:1 5659:1 5662:1 5683:1 5791:1 5860:1 5932:2 5976:1 6079:1 6126:1 6127:2 6151:2 6250:1 6256:1 6267:1 6298:1 6450:1 6513:1 6523:1 6582:1 6687:1 6711:1 6799:1 6996:1 7000:1 7180:1 7221:2 7269:1 7275:1 7290:1 7360:1 7420:1 7437:1 7479:1 7548:4 7567:2 7568:3 7586:1 7588:1 7653:1 7668:1 7786:1 7805:1 7910:1 7928:1 7936:1 7977:1 7983:1 8006:3 8092:1 8116:1 8170:3 8176:1 8194:1 8233:1 8251:1 8269:1 8357:1 8358:1 8362:1 8396:1 8420:1 8517:2 8526:1 8531:1 8550:1 8583:2 8595:1 8596:1 8667:1 8675:1 8678:1 8680:1 8725:1 8995:1 9015:1 9055:1 9078:1 9240:1 9375:5 9428:1 9484:1 9511:4 9655:1 9696:1 9730:1 9748:2 9830:1 9873:2 9876:2 9883:1 10035:1 10278:1 10312:1 10314:1 10374:1 10396:1 10401:1 10524:1 10635:1 10649:1 10767:1 10905:1 11039:1 11047:1 11054:1 11073:1 11081:1 11112:1 11120:1 11169:1 11172:1 11242:1 11248:2 11278:1 11280:1 11336:1 11399:1 11406:1 11431:1 11476:1 11499:1 11534:1 11544:2 11633:1 11764:1 11786:1 11787:1 11788:5 11939:1 11955:1 12016:1 12134:1 12187:1 12189:1 12323:1 12369:2 12370:1 12599:1 12652:1 12691:1 12692:1 12756:1 12768:1 12776:1 12799:1 12829:1 12870:1 12874:1 12884:1 12889:1 12891:1 12892:1 12924:1 12954:1 12966:1 13033:1 13049:1 13114:1 13149:1 13250:1 13365:1 13457:1 13467:1 13493:1 13518:1 13616:1 13620:1 13735:1 13795:1 13855:1 13926:1 13935:1 14087:1 14126:1 14158:1 14437:1 14443:1 14760:2 14826:1 14898:2 15033:1 15058:2 15067:1 15239:1 15254:1 15269:2 15347:1 15361:1 15401:1 15442:1 15502:1 15566:5 15637:8 15697:1 15731:1 15763:1 15773:1 15774:1 15810:1 15812:1 15832:1 16053:1 16064:1 16068:1 16146:1 16151:1 16168:1 16217:1 16255:2 16366:1 16373:1 16569:1 16608:1 16683:1 16744:1 16766:1 16877:1 16904:1 16911:1 16920:1 16936:1 17019:1 17103:2 17117:1 17130:1 17220:1 17311:1 17363:1 17392:1 17404:1 17595:1 17609:2 17774:1 17779:1 17805:1 17821:1 17912:4 17949:1 18052:1 18101:416 18163:1 18178:2 18234:1 18271:1 18272:1 18298:1 18311:1 18362:1 18410:2 18472:1 18512:1 18514:1 18557:1 18569:1 18584:3 18669:1 18786:1 18799:1 18825:1 18830:2 18859:3 18881:1 18883:2 18911:1 18947:1 18950:1 18972:1 18976:1 18997:1 19034:1 19206:1 19209:2 19253:1 19394:1 19525:1 19569:1 19663:2 19677:2 19695:1 19707:1 19756:1 19774:1 19818:1 19833:1 19900:1 19945:1 19979:1 20245:2 20257:3 20322:1 20402:1 20422:1 20496:1 20524:1 20561:1 20718:2 20723:1 20733:1 20782:1 20838:1 20840:1 20870:1 20941:1 20973:1 20976:1 21019:1 21086:1 21142:2 21239:1 21267:1 21306:1 21379:3 21380:1 21403:1 21446:1 21515:5 21537:1 21548:1 21556:1 21575:1 21594:1 21628:2 21668:2 21718:1 21753:1 21794:2 22042:1 22049:2 22133:1 22165:1 22295:1 22453:1 22481:2 22530:1 22627:1 22667:1 22670:1 22677:1 22681:1 22748:1 22757:3 22856:1 22937:1 23104:1 23126:1 23192:1 23224:1 23306:1 23362:1 23397:1 23492:1 23646:1 23716:1 23753:1 23780:1 23802:1 23879:1 24003:1 24036:1 24086:1 24144:1 24214:1 24234:1 24360:1 24417:1 24473:2 24488:1 24540:1 24692:1 24797:1 24847:1 24942:1 24969:1 25117:1 25191:1 25387:1 25410:4 25414:1 25681:3 25683:1 25696:1 25698:1 25700:1 25787:1 25793:2 25826:1 25844:1 26032:1 26289:1 26303:1 26331:1 26397:3 26401:1 26430:1 26503:1 26509:1 26510:1 26869:1 26963:1 26989:1 27248:1 27280:4 27281:1 27316:2 27394:1 27401:1 27405:1 27465:1 27558:1 27561:1 27692:1 27705:1 27749:1 27773:1 27926:1 27963:1 27968:1 28026:1 28210:1 28343:1 28344:1 28507:1 28509:1 28560:1 16 83:1 165:1 201:1 327:1 337:2 407:2 509:1 627:1 676:1 724:1 757:1 768:1 856:1 934:1 942:1 966:1 985:1 1015:1 1062:1 1081:1 1201:1 1239:2 1259:1 1275:1 1346:1 1413:1 1484:1 1501:1 1525:1 1544:1 1569:1 1572:1 1583:1 1594:1 1596:1 1621:1 1632:1 1637:1 1640:1 1654:1 1747:1 1790:1 1860:1 1904:3 1929:1 1950:1 2022:1 2023:1 2054:1 2074:1 2076:1 2108:1 2232:1 2240:1 2244:1 2246:1 2248:1 2256:3 2260:1 2272:1 2273:1 2336:1 2413:1 2437:1 2595:3 2607:1 2637:1 2662:1 2731:2 2738:1 2741:2 2755:1 2792:3 2818:2 2828:1 2885:3 3107:1 3254:1 3388:1 3417:1 3427:1 3442:1 3505:1 3511:1 3512:1 3519:1 3569:1 3606:1 3625:1 3651:1 3652:10 3688:4 3691:1 3721:1 3740:1 3777:3 3816:1 3838:1 3900:1 3904:1 3925:1 3939:1 4106:1 4153:1 4234:2 4277:1 4347:2 4372:1 4393:1 4449:1 4533:1 4543:1 4653:1 4660:2 4701:1 4824:1 4870:1 4893:1 4927:1 4928:1 4939:1 4940:7 4975:1 5145:1 5214:7 5361:1 5370:1 5386:1 5390:1 5392:1 5479:1 5525:1 5562:1 5565:1 5624:1 5659:1 5662:1 5683:1 5791:1 5794:1 5860:1 5932:2 5976:1 6079:1 6126:1 6127:2 6151:2 6250:1 6256:1 6267:1 6298:1 6450:1 6513:1 6523:1 6582:1 6604:1 6679:1 6687:1 6711:1 6799:1 6996:1 7000:1 7180:1 7221:2 7269:1 7275:1 7290:1 7360:1 7420:1 7437:1 7479:1 7548:6 7567:2 7568:3 7586:1 7588:1 7653:1 7668:1 7786:1 7805:1 7910:1 7928:1 7936:1 7977:1 7983:1 8006:4 8092:1 8116:1 8170:3 8176:1 8194:1 8233:1 8251:1 8269:1 8357:1 8358:1 8362:1 8381:1 8396:1 8420:1 8517:2 8526:1 8531:1 8550:1 8583:2 8595:1 8596:1 8616:1 8667:1 8675:1 8678:1 8680:1 8725:1 8991:1 8995:1 9015:1 9055:1 9078:1 9088:1 9240:1 9243:1 9328:1 9375:7 9420:1 9428:1 9484:1 9511:4 9586:1 9655:2 9696:1 9698:1 9730:1 9748:2 9830:1 9873:4 9876:2 9883:1 10035:1 10137:1 10278:1 10312:1 10314:1 10374:1 10396:1 10401:1 10499:1 10524:1 10635:1 10649:2 10727:1 10767:1 10892:1 10905:1 11039:1 11047:1 11054:1 11073:1 11081:1 11112:1 11118:1 11120:1 11169:1 11172:1 11242:1 11248:2 11278:1 11280:1 11336:1 11399:1 11406:1 11431:1 11476:1 11499:1 11534:1 11544:2 11633:1 11764:1 11786:1 11787:1 11788:7 11939:1 11955:1 12016:1 12019:1 12134:1 12187:1 12189:1 12323:1 12369:2 12370:1 12566:1 12599:1 12652:1 12691:1 12692:1 12756:1 12768:1 12776:1 12799:1 12829:1 12870:1 12874:1 12884:1 12889:1 12891:1 12892:1 12904:1 12924:1 12954:1 12966:1 13033:1 13049:1 13114:1 13149:1 13201:1 13250:1 13365:1 13457:1 13461:1 13467:1 13493:1 13518:1 13578:1 13616:1 13620:1 13679:1 13735:1 13795:1 13855:1 13926:1 13927:1 13935:1 14087:1 14126:1 14158:1 14183:1 14437:1 14443:1 14592:1 14760:2 14826:1 14887:1 14898:2 15033:1 15058:2 15063:1 15067:1 15190:1 15239:1 15243:1 15244:1 15254:1 15269:2 15347:1 15361:1 15401:1 15442:1 15502:1 15566:7 15620:1 15637:12 15697:1 15731:1 15763:1 15773:1 15774:1 15810:1 15812:1 15832:1 16053:1 16054:1 16064:1 16068:1 16078:1 16146:1 16151:1 16168:1 16217:1 16249:1 16255:2 16366:1 16373:1 16427:1 16569:1 16608:1 16683:1 16744:1 16766:1 16877:1 16904:1 16911:1 16920:1 16936:1 17019:1 17103:2 17117:1 17130:1 17199:1 17220:2 17311:1 17363:1 17369:1 17392:1 17404:1 17595:1 17609:2 17723:1 17774:1 17779:1 17805:1 17821:1 17912:4 17949:1 18052:1 18101:479 18163:1 18178:2 18234:1 18245:1 18271:1 18272:1 18298:1 18311:1 18362:1 18410:2 18472:1 18505:1 18512:1 18514:1 18557:1 18569:1 18584:3 18669:1 18786:1 18799:1 18825:1 18830:2 18859:3 18881:1 18883:3 18911:1 18947:1 18950:1 18972:1 18976:1 18980:1 18997:1 19034:1 19206:1 19209:2 19253:1 19307:1 19394:1 19470:1 19488:1 19525:1 19569:1 19663:2 19677:2 19695:1 19707:1 19756:1 19774:1 19818:1 19833:1 19900:1 19945:1 19979:1 20245:2 20257:3 20322:1 20402:1 20422:1 20496:1 20524:1 20561:1 20718:2 20723:1 20733:1 20782:1 20838:1 20840:1 20870:1 20941:1 20973:1 20976:2 21019:1 21086:1 21142:2 21156:1 21239:2 21267:1 21306:1 21379:3 21380:1 21403:1 21423:1 21446:1 21464:1 21515:7 21537:1 21548:1 21556:1 21575:1 21594:2 21628:2 21648:1 21668:2 21715:1 21718:1 21753:1 21769:1 21794:2 21941:1 22042:1 22049:2 22133:1 22165:1 22295:1 22453:1 22481:2 22530:1 22556:1 22607:1 22627:1 22667:1 22670:1 22677:1 22681:1 22748:1 22757:4 22856:1 22937:1 23104:2 23126:1 23192:1 23224:1 23306:1 23362:1 23397:1 23492:1 23646:1 23716:1 23753:1 23780:1 23802:1 23808:1 23867:1 23879:1 24003:1 24036:1 24050:1 24086:1 24144:1 24214:1 24234:1 24325:1 24360:1 24417:1 24434:1 24473:2 24488:1 24540:1 24692:1 24730:1 24797:1 24847:1 24942:2 24967:1 24969:2 25117:1 25157:1 25191:1 25323:1 25332:1 25387:1 25410:4 25414:1 25478:1 25681:3 25683:1 25696:1 25698:1 25700:1 25742:1 25787:1 25793:2 25826:1 25844:1 25861:1 26032:1 26067:1 26285:1 26289:1 26303:2 26331:1 26397:4 26398:1 26401:1 26430:1 26503:1 26509:1 26510:1 26664:1 26869:1 26963:1 26989:1 27071:1 27080:1 27248:1 27280:5 27281:1 27316:2 27373:1 27394:1 27401:1 27405:1 27465:1 27558:1 27561:1 27636:1 27692:1 27705:1 27749:1 27773:1 27834:1 27926:1 27963:1 27968:1 28026:1 28210:1 28343:2 28344:1 28507:1 28509:1 28560:1 28566:1 16 26:1 83:1 106:1 165:1 201:1 283:1 286:1 296:1 327:1 337:2 407:2 489:2 509:1 523:1 617:1 627:1 671:1 676:1 699:1 707:1 724:1 757:1 768:1 803:1 813:1 856:1 872:1 934:1 942:1 966:1 985:1 987:1 1015:1 1020:1 1062:1 1081:1 1125:1 1201:2 1239:2 1259:1 1275:1 1302:1 1346:1 1413:1 1484:1 1501:1 1521:1 1525:1 1544:1 1569:1 1572:2 1583:1 1594:1 1596:1 1601:1 1621:1 1628:1 1632:1 1637:1 1640:1 1654:1 1675:1 1747:1 1751:1 1789:1 1790:1 1809:1 1824:1 1860:1 1882:1 1903:1 1904:4 1929:1 1950:1 2022:1 2023:1 2054:1 2074:1 2076:2 2101:1 2108:1 2230:1 2232:1 2238:1 2240:1 2244:1 2246:1 2248:1 2256:4 2260:2 2272:1 2273:1 2336:1 2413:1 2437:1 2495:1 2595:4 2602:1 2607:1 2637:2 2651:1 2662:1 2674:1 2689:1 2731:2 2738:1 2741:2 2755:1 2792:4 2818:2 2828:2 2885:5 2899:1 2907:1 2986:1 3107:1 3117:1 3254:1 3388:1 3417:1 3427:1 3441:1 3442:1 3453:1 3505:1 3511:1 3512:1 3519:1 3569:1 3606:1 3625:1 3651:1 3652:10 3688:4 3691:1 3721:2 3724:1 3740:1 3742:1 3777:3 3813:1 3816:1 3838:1 3900:1 3904:1 3925:1 3939:1 4106:1 4153:1 4234:2 4277:1 4325:1 4347:2 4372:1 4393:1 4449:1 4533:1 4543:1 4653:1 4654:1 4660:2 4701:1 4792:2 4793:1 4824:1 4870:1 4893:1 4927:2 4928:1 4939:1 4940:7 4975:1 5144:1 5145:1 5181:1 5214:7 5317:1 5361:1 5370:1 5386:1 5390:1 5392:1 5448:1 5479:1 5525:1 5562:1 5565:1 5595:1 5624:1 5659:1 5662:1 5683:1 5791:1 5794:1 5796:1 5860:1 5932:2 5971:1 5976:1 6079:1 6088:1 6126:1 6127:2 6151:2 6181:1 6242:1 6250:1 6256:1 6267:1 6298:1 6450:1 6513:1 6523:1 6539:1 6582:1 6604:1 6615:1 6679:1 6687:1 6695:1 6711:1 6780:1 6789:1 6799:1 6803:1 6996:1 7000:1 7010:1 7180:1 7221:2 7269:1 7275:1 7290:1 7360:1 7420:1 7437:1 7466:1 7479:1 7496:1 7548:10 7567:2 7568:5 7586:1 7588:1 7616:1 7653:1 7668:1 7750:1 7786:1 7805:1 7826:1 7910:1 7921:1 7928:1 7936:1 7977:1 7983:1 8006:4 8063:1 8092:1 8116:1 8140:1 8170:3 8176:1 8194:1 8233:1 8251:1 8269:1 8357:1 8358:1 8359:1 8360:1 8361:1 8362:1 8381:1 8396:1 8412:1 8420:1 8517:2 8526:1 8531:1 8550:1 8583:2 8595:1 8596:1 8603:1 8616:1 8617:1 8667:1 8668:1 8675:1 8678:1 8680:1 8711:1 8725:1 8853:1 8991:1 8995:1 9015:1 9042:1 9055:1 9078:1 9088:1 9124:1 9240:1 9243:1 9263:1 9294:1 9328:1 9375:7 9383:1 9420:1 9428:1 9448:1 9484:1 9511:4 9586:1 9655:2 9696:1 9698:1 9730:1 9748:2 9780:1 9830:1 9873:4 9876:2 9883:1 10035:2 10137:1 10209:1 10230:1 10258:1 10278:1 10312:1 10314:1 10369:1 10374:1 10383:1 10396:1 10401:1 10413:2 10495:1 10499:1 10503:1 10510:1 10524:1 10588:1 10621:1 10635:1 10649:2 10727:1 10767:2 10779:1 10892:1 10905:1 10996:1 11039:2 11047:1 11054:1 11073:1 11081:1 11112:1 11118:2 11120:1 11147:1 11169:1 11172:1 11242:1 11248:2 11278:1 11280:1 11315:1 11336:1 11359:1 11373:1 11399:1 11406:1 11431:2 11476:1 11498:1 11499:1 11534:1 11544:2 11633:1 11764:1 11786:1 11787:1 11788:7 11797:2 11879:1 11938:1 11939:1 11955:1 12016:1 12019:1 12047:1 12058:1 12134:1 12187:1 12189:1 12323:2 12357:1 12369:2 12370:1 12394:1 12456:1 12566:1 12599:1 12652:1 12691:1 12692:1 12756:2 12768:1 12776:1 12798:1 12799:1 12829:1 12870:1 12874:1 12882:1 12884:1 12889:1 12891:1 12892:1 12900:1 12904:1 12915:1 12924:1 12954:2 12966:1 13033:1 13049:1 13095:1 13114:1 13131:1 13149:1 13178:1 13201:1 13243:1 13250:1 13254:1 13352:1 13365:1 13380:1 13435:1 13457:1 13461:1 13467:1 13493:1 13510:1 13518:1 13536:2 13578:1 13616:1 13620:1 13679:1 13735:2 13795:1 13855:1 13908:1 13926:1 13927:1 13935:1 14009:1 14087:1 14126:1 14158:1 14183:1 14437:1 14443:1 14566:1 14592:1 14760:2 14761:1 14793:1 14826:1 14832:1 14887:1 14898:2 14978:1 15033:1 15058:3 15063:1 15067:1 15190:1 15194:1 15239:1 15243:1 15244:1 15254:1 15269:2 15337:1 15347:1 15361:2 15401:1 15425:1 15442:1 15502:2 15566:7 15620:2 15637:13 15665:1 15697:1 15731:1 15763:1 15773:1 15774:1 15810:1 15812:1 15832:1 15902:1 16053:1 16054:1 16064:1 16068:1 16078:2 16108:1 16146:1 16151:1 16168:1 16217:1 16249:1 16255:3 16300:1 16338:1 16366:1 16373:1 16427:1 16569:2 16608:1 16654:1 16683:1 16744:1 16766:1 16796:1 16877:1 16896:1 16904:1 16911:1 16920:1 16936:1 16964:1 17019:1 17103:2 17117:1 17128:1 17130:1 17199:1 17220:2 17311:1 17363:1 17369:1 17392:1 17404:2 17568:1 17595:1 17609:2 17616:1 17666:1 17723:1 17774:1 17779:1 17805:1 17821:1 17874:1 17912:4 17949:1 17970:1 17984:1 18031:1 18052:1 18101:664 18163:1 18178:3 18215:1 18234:1 18245:1 18262:1 18271:1 18272:1 18298:1 18311:1 18362:1 18410:2 18462:1 18472:1 18505:1 18512:1 18514:1 18557:1 18569:1 18584:4 18669:1 18786:1 18799:1 18825:1 18830:2 18859:3 18881:1 18883:3 18911:1 18947:1 18950:1 18972:1 18976:1 18980:1 18987:1 18997:1 19034:1 19055:1 19067:1 19099:1 19206:1 19209:3 19253:1 19307:1 19347:1 19360:1 19394:1 19470:1 19488:1 19525:1 19569:1 19591:2 19663:3 19677:2 19695:1 19707:2 19724:1 19756:1 19774:1 19818:1 19833:2 19900:1 19910:1 19918:1 19945:1 19979:1 20022:1 20086:1 20245:3 20257:3 20322:1 20402:1 20422:1 20496:1 20502:1 20524:1 20528:1 20561:1 20718:2 20723:1 20733:1 20773:1 20782:1 20838:1 20840:1 20870:1 20941:1 20973:1 20976:2 20992:1 21019:1 21086:1 21142:2 21156:1 21231:1 21239:2 21252:1 21267:1 21306:1 21379:3 21380:1 21403:1 21423:2 21446:1 21464:1 21515:7 21537:1 21548:1 21556:1 21575:1 21583:1 21594:2 21628:2 21648:2 21668:2 21715:1 21718:1 21753:1 21769:1 21781:1 21794:2 21819:1 21941:1 22021:1 22042:1 22049:3 22130:1 22133:1 22165:1 22264:2 22295:1 22348:1 22425:1 22453:1 22481:2 22530:1 22556:1 22564:1 22568:2 22571:1 22607:1 22627:1 22667:1 22670:1 22677:1 22681:1 22699:1 22748:1 22757:4 22847:1 22856:1 22916:1 22937:1 22986:1 23059:1 23077:1 23104:2 23126:1 23192:1 23207:1 23215:1 23224:1 23306:1 23362:1 23397:2 23492:1 23646:1 23666:1 23716:1 23753:1 23780:1 23788:1 23802:1 23808:1 23867:3 23870:1 23879:1 23885:1 23937:1 24003:1 24020:1 24036:1 24050:1 24059:1 24086:1 24144:1 24214:1 24224:1 24234:1 24242:1 24325:1 24360:1 24406:1 24417:1 24434:1 24473:2 24476:1 24488:1 24540:1 24644:1 24647:1 24692:1 24697:1 24730:1 24760:1 24761:1 24797:1 24817:1 24843:1 24847:1 24873:2 24942:2 24967:1 24969:2 24990:1 24999:1 25071:1 25109:1 25117:1 25157:1 25191:1 25323:1 25332:1 25387:1 25410:4 25414:1 25478:1 25569:1 25681:3 25683:1 25696:1 25698:1 25700:1 25742:1 25787:1 25793:2 25826:1 25844:1 25861:1 25957:1 26032:1 26067:1 26285:2 26289:1 26303:2 26331:1 26397:4 26398:1 26401:1 26430:1 26503:1 26509:1 26510:1 26576:1 26664:1 26869:1 26889:1 26919:1 26963:1 26989:1 27025:1 27071:1 27080:1 27248:1 27271:1 27279:1 27280:8 27281:1 27316:2 27337:1 27364:1 27373:1 27394:1 27401:1 27405:1 27465:1 27558:1 27561:1 27636:1 27692:1 27705:2 27749:1 27773:1 27834:1 27926:1 27963:2 27968:1 28026:1 28046:1 28138:1 28172:1 28210:1 28229:1 28314:1 28336:1 28343:2 28344:1 28364:1 28430:1 28507:1 28509:1 28511:1 28560:1 28566:1 16 26:1 83:2 106:1 165:1 201:1 235:1 283:1 286:1 296:1 327:1 337:2 338:1 407:2 489:2 504:1 509:1 523:1 617:1 627:1 661:2 671:1 676:1 699:1 707:1 724:1 757:1 768:1 803:1 813:1 856:1 872:1 915:1 934:1 941:1 942:1 966:1 985:1 987:1 1015:1 1020:1 1062:1 1081:1 1125:1 1175:1 1201:2 1227:1 1239:2 1259:1 1275:1 1302:1 1306:1 1346:1 1413:1 1484:1 1501:2 1521:1 1525:1 1544:1 1569:1 1572:2 1583:1 1594:1 1596:1 1601:1 1621:1 1628:1 1632:1 1637:1 1640:1 1654:1 1675:1 1683:1 1722:1 1747:1 1751:1 1758:1 1789:1 1790:1 1809:1 1824:1 1860:1 1882:1 1903:1 1904:4 1929:1 1950:1 2022:1 2023:1 2054:1 2074:1 2076:2 2101:1 2108:1 2230:1 2232:1 2238:1 2240:1 2241:1 2244:1 2246:1 2248:1 2256:4 2259:1 2260:2 2272:1 2273:1 2336:1 2413:1 2437:1 2495:1 2595:4 2602:1 2607:1 2637:2 2651:1 2662:1 2674:1 2689:1 2731:2 2738:1 2741:2 2755:1 2792:4 2818:2 2828:3 2885:8 2899:1 2907:1 2986:1 3107:1 3117:1 3129:1 3133:1 3254:1 3388:1 3417:1 3427:1 3441:1 3442:1 3453:1 3505:1 3511:1 3512:1 3519:1 3569:1 3603:1 3606:1 3625:1 3651:1 3652:10 3688:4 3691:1 3721:2 3724:1 3740:1 3742:1 3777:3 3813:1 3816:1 3838:1 3900:1 3904:1 3911:1 3925:1 3939:1 4106:1 4153:1 4234:2 4277:1 4325:1 4347:2 4372:1 4393:1 4449:1 4533:1 4543:1 4653:1 4654:1 4660:2 4701:1 4792:4 4793:1 4824:1 4870:1 4893:1 4926:1 4927:3 4928:1 4939:1 4940:7 4975:1 5144:2 5145:2 5181:1 5214:7 5280:1 5317:1 5361:1 5370:1 5386:1 5390:1 5392:1 5448:1 5474:1 5479:1 5525:1 5562:1 5565:1 5595:1 5620:1 5624:1 5659:1 5660:1 5662:1 5683:1 5791:1 5794:1 5796:1 5860:1 5932:2 5971:1 5976:1 6003:1 6079:1 6088:1 6126:1 6127:2 6151:2 6168:1 6181:1 6242:1 6250:1 6256:1 6267:1 6298:1 6450:1 6513:1 6523:1 6539:2 6566:1 6582:1 6604:1 6615:1 6679:1 6687:1 6695:2 6699:1 6711:1 6780:1 6789:1 6799:1 6803:1 6857:1 6996:1 7000:2 7010:2 7027:1 7180:1 7221:2 7267:1 7269:1 7275:1 7290:1 7360:1 7420:1 7437:1 7466:1 7479:1 7496:1 7548:12 7567:2 7568:7 7586:1 7588:1 7616:1 7653:1 7668:1 7746:1 7750:1 7786:1 7805:1 7826:1 7910:1 7921:1 7928:1 7936:1 7951:1 7977:1 7983:1 8006:4 8063:1 8092:1 8116:1 8140:1 8170:3 8176:1 8194:1 8231:1 8233:1 8251:1 8269:1 8357:1 8358:1 8359:2 8360:1 8361:1 8362:1 8370:1 8373:1 8381:1 8396:1 8412:1 8420:1 8517:2 8526:1 8531:1 8550:1 8583:2 8595:1 8596:1 8603:1 8616:1 8617:1 8667:1 8668:1 8675:1 8678:1 8680:1 8711:1 8725:1 8853:1 8882:1 8991:1 8995:1 9015:1 9042:1 9055:1 9078:1 9088:1 9091:1 9124:1 9240:1 9243:1 9263:1 9292:1 9294:1 9328:1 9375:7 9383:1 9420:1 9428:1 9448:1 9484:1 9511:5 9586:1 9655:2 9696:1 9698:1 9730:1 9748:2 9780:1 9830:1 9873:4 9876:2 9883:1 10035:2 10137:1 10209:1 10230:1 10258:1 10278:1 10312:1 10314:1 10328:1 10369:1 10374:1 10383:2 10396:1 10401:1 10413:2 10464:1 10495:1 10499:1 10503:1 10510:1 10524:1 10588:1 10621:1 10635:1 10649:2 10727:1 10767:2 10779:1 10811:1 10892:1 10905:1 10996:1 11039:2 11047:1 11054:1 11073:1 11081:1 11112:1 11118:3 11120:1 11147:1 11169:1 11172:1 11180:1 11242:1 11248:2 11278:1 11280:1 11315:1 11336:1 11348:1 11359:1 11372:1 11373:1 11381:1 11383:1 11399:1 11406:1 11431:2 11476:1 11486:1 11498:1 11499:1 11530:1 11534:1 11544:2 11616:1 11633:1 11764:1 11765:1 11786:1 11787:1 11788:7 11797:2 11879:1 11938:1 11939:1 11955:1 12016:1 12019:1 12047:1 12058:1 12134:1 12187:1 12189:1 12198:1 12323:3 12336:1 12357:1 12369:2 12370:1 12394:1 12456:1 12566:1 12599:1 12652:1 12691:1 12692:1 12756:2 12768:1 12771:1 12776:1 12798:1 12799:1 12829:1 12870:1 12874:1 12882:1 12884:2 12889:1 12891:1 12892:1 12900:1 12904:1 12915:1 12924:1 12954:2 12966:1 13033:1 13049:1 13095:1 13114:1 13131:1 13149:1 13178:1 13201:1 13243:1 13250:1 13252:1 13254:1 13352:1 13365:2 13371:1 13380:1 13435:1 13457:1 13461:1 13467:1 13493:1 13510:1 13518:1 13535:1 13536:2 13543:1 13578:1 13615:1 13616:1 13620:1 13679:1 13735:2 13795:1 13855:1 13908:1 13926:1 13927:1 13935:1 13985:1 14009:1 14087:1 14126:1 14158:1 14183:1 14437:1 14443:1 14447:1 14566:1 14592:1 14678:1 14760:2 14761:1 14793:1 14826:1 14832:1 14887:1 14898:2 14978:1 15033:1 15058:3 15063:1 15067:1 15134:1 15190:1 15194:1 15239:1 15243:1 15244:1 15250:1 15254:1 15269:2 15337:1 15347:1 15361:2 15366:1 15401:1 15425:1 15442:1 15502:2 15513:2 15529:1 15566:7 15620:2 15637:13 15665:1 15697:1 15731:1 15763:1 15773:1 15774:1 15810:1 15812:1 15832:1 15902:2 15969:1 16053:1 16054:1 16064:1 16068:1 16078:2 16108:1 16146:1 16151:1 16168:1 16217:1 16249:1 16255:6 16300:1 16338:1 16366:1 16373:1 16427:1 16558:1 16569:2 16608:1 16654:2 16683:1 16721:1 16744:1 16766:1 16796:2 16877:1 16896:1 16904:1 16911:1 16915:1 16920:1 16936:1 16964:1 17019:1 17103:2 17117:1 17128:1 17130:1 17199:1 17220:2 17275:1 17311:1 17363:1 17369:1 17392:1 17396:1 17404:2 17531:1 17568:1 17595:1 17609:2 17616:1 17666:1 17723:1 17774:1 17779:1 17805:1 17821:1 17874:1 17912:4 17949:1 17970:1 17984:1 18031:1 18052:1 18101:776 18163:1 18178:3 18215:1 18234:1 18245:1 18262:1 18271:1 18272:1 18298:2 18311:2 18362:1 18410:2 18462:2 18472:1 18505:1 18512:1 18514:1 18557:1 18569:1 18584:4 18669:1 18786:1 18799:1 18801:1 18825:1 18830:2 18859:3 18881:1 18883:3 18911:1 18947:1 18950:1 18972:1 18976:1 18980:1 18987:1 18997:1 19028:1 19034:1 19055:1 19067:1 19099:1 19206:1 19209:6 19253:1 19307:1 19347:1 19360:1 19391:1 19394:1 19459:1 19470:1 19488:1 19525:1 19569:1 19591:2 19663:6 19677:2 19694:1 19695:1 19707:2 19724:1 19756:1 19774:1 19818:1 19833:2 19900:1 19910:1 19918:1 19945:1 19979:1 20022:1 20024:1 20086:1 20148:1 20245:5 20257:3 20322:1 20375:1 20402:1 20422:2 20496:1 20502:1 20524:1 20528:1 20561:1 20718:2 20720:2 20723:1 20733:1 20773:1 20782:1 20838:1 20840:2 20870:1 20941:1 20973:1 20976:2 20992:1 21019:1 21086:1 21142:2 21156:1 21231:1 21239:2 21252:1 21267:1 21272:1 21282:1 21291:1 21306:1 21379:3 21380:1 21403:1 21423:2 21446:1 21464:1 21515:7 21537:1 21548:1 21556:1 21575:1 21583:1 21594:2 21628:2 21648:2 21668:2 21679:1 21715:1 21718:1 21745:1 21753:1 21769:1 21781:1 21794:2 21819:1 21941:1 22021:1 22038:1 22042:1 22049:7 22130:1 22133:1 22165:1 22188:1 22264:2 22284:1 22295:1 22346:1 22348:1 22425:1 22453:1 22481:2 22530:1 22556:1 22564:1 22568:2 22571:1 22607:1 22627:1 22667:1 22670:1 22677:1 22681:1 22699:1 22748:1 22757:4 22847:1 22856:1 22916:1 22937:1 22986:1 23000:1 23059:1 23077:1 23104:2 23126:1 23192:1 23207:2 23215:1 23224:1 23306:1 23313:1 23362:1 23397:2 23405:1 23492:1 23646:1 23666:1 23689:1 23704:1 23707:1 23716:1 23753:1 23766:1 23780:1 23788:1 23802:1 23808:1 23841:1 23867:3 23870:1 23879:1 23885:1 23937:1 24003:1 24006:1 24020:1 24036:1 24050:1 24057:1 24059:1 24086:1 24144:1 24179:1 24214:1 24224:1 24234:1 24242:1 24325:1 24360:1 24406:1 24417:1 24434:1 24473:2 24476:1 24478:1 24488:1 24540:1 24644:1 24647:1 24653:1 24692:1 24697:1 24730:1 24760:1 24761:1 24797:1 24817:2 24843:1 24847:1 24873:2 24942:2 24967:1 24969:2 24990:1 24999:1 25071:1 25109:1 25117:1 25157:1 25191:1 25194:1 25323:1 25332:1 25387:1 25410:4 25414:1 25478:1 25569:1 25681:3 25683:1 25696:1 25698:1 25699:1 25700:1 25742:1 25787:1 25793:2 25826:1 25844:1 25861:1 25879:1 25957:1 26032:1 26067:1 26151:1 26285:2 26289:1 26303:2 26331:1 26397:4 26398:1 26401:1 26430:1 26503:1 26509:1 26510:1 26569:1 26576:1 26664:1 26843:1 26869:2 26889:1 26919:1 26963:1 26989:1 27025:1 27071:1 27080:1 27248:1 27271:1 27279:1 27280:11 27281:1 27289:1 27316:3 27326:1 27337:1 27364:1 27373:1 27394:1 27401:1 27405:1 27465:1 27558:1 27561:1 27636:1 27638:1 27692:1 27705:2 27749:1 27773:1 27834:1 27926:1 27963:2 27968:1 28026:1 28046:1 28138:2 28172:1 28210:1 28229:1 28283:1 28314:1 28336:1 28343:2 28344:1 28364:1 28430:1 28507:1 28509:1 28511:1 28560:1 28566:1 16 26:1 83:3 106:1 165:1 201:1 235:1 283:1 286:1 296:1 327:1 337:2 338:1 407:2 489:2 504:1 509:1 523:1 617:1 627:1 648:1 661:2 671:1 676:1 699:1 707:1 724:1 757:1 768:1 803:1 813:1 856:1 872:1 915:1 934:1 941:1 942:1 966:1 978:1 985:1 987:1 1015:1 1020:1 1062:1 1081:1 1125:1 1175:1 1201:2 1227:1 1239:2 1259:1 1275:1 1302:1 1306:1 1335:1 1346:1 1413:1 1484:1 1501:2 1521:1 1525:1 1544:1 1569:1 1572:2 1583:1 1594:1 1596:1 1601:1 1621:1 1628:1 1632:1 1637:1 1640:1 1654:1 1675:1 1683:1 1722:1 1747:1 1751:1 1758:2 1789:1 1790:1 1809:1 1824:1 1860:1 1882:1 1903:1 1904:4 1929:1 1950:1 2022:1 2023:1 2054:1 2074:1 2076:2 2101:1 2108:1 2230:1 2232:1 2238:1 2240:1 2241:1 2244:1 2246:1 2248:1 2256:4 2259:1 2260:2 2272:1 2273:1 2336:1 2413:1 2437:1 2495:1 2582:1 2595:4 2602:1 2607:1 2637:3 2651:1 2662:1 2674:1 2689:1 2731:2 2738:1 2741:2 2755:1 2792:4 2818:3 2828:4 2885:9 2899:1 2903:1 2907:1 2918:1 2986:1 3037:1 3107:1 3117:1 3129:1 3133:1 3254:1 3373:1 3388:1 3417:1 3427:1 3441:1 3442:1 3453:1 3505:1 3511:1 3512:1 3519:1 3569:1 3603:1 3606:1 3625:1 3651:1 3652:10 3688:4 3691:1 3721:2 3724:1 3740:1 3742:1 3777:3 3813:1 3816:1 3838:1 3853:1 3891:1 3900:1 3904:1 3911:1 3925:1 3939:1 4056:1 4106:1 4153:1 4234:2 4277:1 4325:1 4347:2 4372:1 4393:1 4449:1 4533:1 4543:1 4653:1 4654:1 4660:2 4701:1 4792:4 4793:1 4824:1 4870:1 4893:1 4926:1 4927:4 4928:1 4930:1 4939:1 4940:7 4975:1 5144:2 5145:2 5181:1 5214:7 5242:1 5280:1 5317:1 5361:1 5370:1 5386:1 5390:1 5392:1 5448:1 5474:1 5479:1 5523:1 5525:1 5562:1 5565:1 5595:1 5620:1 5624:1 5659:1 5660:1 5662:1 5683:1 5766:1 5791:1 5794:1 5796:1 5860:1 5932:2 5971:1 5976:1 6003:1 6079:1 6088:1 6126:1 6127:2 6151:2 6168:1 6181:1 6242:1 6250:1 6254:1 6256:1 6264:1 6267:1 6298:1 6450:1 6454:1 6513:1 6523:1 6539:2 6566:1 6582:1 6604:1 6615:1 6679:1 6687:1 6695:2 6699:1 6711:1 6780:1 6789:1 6799:1 6803:1 6857:1 6860:1 6996:1 7000:2 7010:2 7027:1 7180:1 7204:1 7221:2 7267:1 7269:1 7275:1 7290:1 7360:1 7420:1 7437:1 7466:1 7479:1 7496:1 7548:12 7567:3 7568:8 7586:1 7588:1 7616:1 7653:1 7668:1 7689:1 7746:1 7750:1 7786:1 7805:1 7826:1 7910:1 7921:1 7928:1 7936:1 7951:1 7977:1 7983:1 8006:4 8049:1 8063:1 8092:1 8116:1 8140:1 8170:3 8176:1 8194:1 8231:1 8233:1 8251:1 8269:1 8336:1 8357:1 8358:1 8359:2 8360:1 8361:1 8362:1 8370:1 8373:1 8381:1 8396:1 8412:1 8420:1 8421:1 8440:1 8517:2 8526:1 8531:1 8550:1 8583:2 8595:1 8596:1 8603:1 8616:1 8617:1 8667:1 8668:1 8675:1 8678:1 8680:1 8711:1 8725:1 8853:1 8854:1 8882:1 8991:1 8995:1 9015:1 9042:1 9055:1 9078:1 9088:1 9091:1 9124:1 9240:1 9243:1 9263:1 9278:1 9292:1 9294:1 9328:1 9375:7 9383:1 9420:1 9428:1 9448:1 9484:1 9511:5 9586:1 9655:2 9656:1 9696:1 9698:1 9717:1 9730:1 9748:2 9780:1 9785:1 9830:1 9873:4 9876:2 9883:1 9976:1 10018:1 10035:2 10137:1 10209:1 10230:1 10258:1 10278:1 10312:1 10314:1 10328:1 10369:1 10374:1 10383:3 10396:1 10401:1 10413:2 10464:1 10475:1 10495:1 10499:1 10503:1 10510:1 10524:1 10588:1 10621:1 10635:1 10649:2 10727:1 10767:2 10779:1 10811:1 10892:1 10905:1 10996:1 11039:2 11047:1 11054:1 11073:1 11081:1 11112:1 11118:3 11120:1 11147:1 11169:1 11172:1 11180:1 11242:1 11248:2 11278:1 11280:1 11315:1 11336:1 11348:1 11359:1 11372:1 11373:1 11381:1 11383:1 11399:1 11406:1 11431:2 11476:1 11486:1 11498:1 11499:1 11530:1 11534:1 11544:2 11616:1 11633:1 11764:1 11765:1 11786:1 11787:1 11788:7 11797:2 11879:1 11938:1 11939:1 11955:1 12016:1 12019:1 12047:1 12058:1 12134:1 12187:1 12189:1 12198:1 12323:4 12336:1 12345:1 12357:1 12369:2 12370:1 12394:1 12456:1 12566:1 12599:1 12652:1 12691:1 12692:1 12756:2 12768:1 12771:1 12776:1 12792:1 12798:1 12799:1 12829:1 12870:1 12874:1 12882:1 12883:1 12884:2 12889:1 12891:1 12892:1 12900:1 12904:1 12915:1 12924:1 12954:2 12966:1 13033:1 13034:1 13049:1 13095:1 13114:1 13131:1 13149:1 13178:1 13201:1 13243:1 13249:1 13250:1 13252:1 13254:1 13352:1 13365:2 13371:1 13380:1 13416:1 13435:1 13457:1 13461:1 13467:1 13493:1 13510:1 13518:1 13535:2 13536:2 13543:1 13578:1 13615:1 13616:1 13620:1 13679:1 13735:2 13795:1 13855:1 13908:1 13926:1 13927:1 13935:1 13985:1 14009:1 14087:1 14099:1 14126:1 14142:1 14158:1 14183:1 14437:1 14443:1 14447:1 14566:1 14592:1 14678:1 14760:2 14761:1 14793:1 14796:1 14826:1 14828:1 14832:1 14887:1 14898:2 14978:1 14992:1 15021:1 15033:1 15058:3 15063:2 15067:1 15134:1 15190:1 15194:1 15201:2 15239:1 15243:1 15244:1 15245:1 15250:1 15254:1 15269:2 15337:1 15347:1 15361:2 15366:1 15401:1 15425:1 15442:1 15478:1 15502:2 15513:2 15529:1 15566:7 15620:2 15637:13 15665:1 15697:1 15731:1 15763:1 15773:1 15774:1 15810:1 15812:1 15832:1 15896:1 15902:2 15969:1 16053:1 16054:1 16064:1 16068:1 16078:2 16108:1 16146:1 16151:1 16168:1 16217:1 16230:1 16249:1 16255:7 16289:1 16300:1 16338:1 16366:1 16369:1 16373:1 16426:1 16427:1 16453:1 16558:1 16569:2 16608:1 16654:2 16666:1 16683:1 16721:1 16744:1 16766:1 16796:2 16877:1 16896:1 16904:1 16911:1 16915:1 16920:1 16936:1 16964:1 17019:1 17103:2 17117:1 17128:1 17130:1 17199:1 17220:2 17275:1 17311:1 17363:1 17369:1 17392:1 17396:1 17404:2 17479:1 17529:1 17531:1 17568:1 17595:1 17609:2 17616:1 17666:1 17723:1 17754:1 17774:1 17779:1 17805:1 17806:1 17821:1 17874:1 17912:4 17949:1 17970:1 17984:1 18031:1 18052:1 18101:892 18163:1 18178:3 18215:1 18234:1 18245:1 18262:1 18271:1 18272:1 18298:2 18311:2 18314:1 18362:1 18410:2 18462:2 18472:1 18505:1 18512:1 18514:1 18557:1 18569:1 18584:4 18669:1 18786:1 18799:1 18801:1 18825:1 18829:1 18830:2 18834:1 18859:3 18881:1 18883:3 18911:1 18947:1 18950:1 18972:1 18976:1 18980:1 18987:1 18997:1 19028:1 19034:1 19055:1 19067:1 19099:1 19187:1 19206:1 19209:7 19253:1 19307:1 19329:1 19347:1 19360:1 19391:1 19394:1 19401:1 19409:1 19459:1 19470:1 19488:1 19525:1 19565:1 19569:1 19591:2 19663:7 19677:2 19694:1 19695:1 19707:2 19724:1 19756:1 19774:1 19818:1 19833:2 19900:1 19910:1 19918:1 19945:1 19968:1 19979:1 20022:1 20024:1 20086:1 20148:1 20245:5 20257:3 20261:1 20322:1 20375:1 20378:1 20402:1 20422:2 20496:1 20502:1 20524:1 20528:1 20561:1 20718:2 20720:2 20723:1 20733:1 20773:1 20782:1 20822:1 20828:1 20838:1 20840:2 20870:1 20927:1 20941:1 20952:1 20973:1 20976:2 20992:1 21019:1 21086:1 21096:1 21142:2 21156:1 21231:1 21237:1 21239:2 21252:1 21267:1 21272:1 21279:1 21282:1 21291:1 21306:1 21379:3 21380:1 21403:1 21412:1 21423:2 21446:1 21464:1 21515:7 21537:1 21548:1 21556:1 21575:1 21583:1 21594:2 21620:1 21628:2 21648:2 21668:2 21679:1 21704:1 21715:1 21718:1 21732:1 21745:1 21753:1 21769:1 21781:2 21794:2 21819:1 21941:1 22021:1 22038:1 22042:1 22049:8 22130:1 22133:1 22165:1 22188:1 22264:2 22284:1 22295:1 22346:1 22348:1 22414:1 22425:1 22453:1 22481:2 22530:1 22548:1 22556:1 22564:1 22568:2 22571:1 22607:1 22627:1 22667:1 22670:1 22677:1 22681:1 22699:1 22748:2 22757:4 22847:1 22856:1 22916:1 22924:1 22937:1 22986:1 23000:1 23059:1 23077:1 23104:2 23126:1 23192:1 23207:3 23215:2 23224:1 23228:1 23306:1 23313:1 23362:1 23397:2 23405:1 23492:1 23646:1 23666:2 23689:1 23704:1 23707:2 23716:1 23753:1 23766:1 23780:1 23788:1 23791:1 23802:1 23808:1 23841:1 23867:3 23870:1 23879:1 23885:1 23937:1 24003:1 24006:1 24020:1 24036:1 24050:1 24057:1 24059:1 24086:1 24144:1 24179:1 24214:1 24224:1 24230:1 24234:1 24242:1 24290:1 24325:1 24360:1 24406:1 24417:1 24434:1 24473:2 24476:1 24478:1 24488:1 24540:1 24572:1 24644:1 24647:1 24653:1 24692:1 24697:1 24730:2 24751:1 24760:1 24761:1 24789:1 24797:1 24817:2 24843:1 24847:1 24873:2 24942:2 24967:1 24969:2 24990:1 24999:1 25071:1 25109:1 25117:1 25157:1 25191:1 25194:1 25323:1 25332:1 25387:1 25410:4 25414:1 25478:1 25569:1 25681:3 25683:1 25696:1 25698:1 25699:1 25700:1 25742:1 25787:1 25793:2 25826:1 25844:1 25861:1 25879:1 25957:1 26032:1 26067:1 26151:1 26285:2 26289:1 26303:2 26331:1 26397:4 26398:1 26401:1 26430:1 26503:1 26509:1 26510:1 26548:1 26569:1 26576:1 26581:1 26664:1 26794:1 26843:1 26869:3 26889:1 26919:1 26963:1 26989:1 27025:1 27035:1 27071:1 27080:1 27217:1 27248:1 27271:1 27279:1 27280:11 27281:2 27289:1 27300:1 27315:1 27316:3 27326:1 27337:1 27364:1 27373:1 27394:1 27401:1 27405:1 27465:1 27492:1 27558:1 27561:1 27636:1 27638:1 27676:1 27692:1 27705:2 27749:1 27773:1 27834:1 27926:1 27963:2 27968:1 27971:1 28026:1 28046:1 28053:1 28138:3 28172:1 28210:1 28222:1 28229:2 28283:1 28297:1 28314:1 28336:1 28343:2 28344:1 28364:1 28430:1 28437:1 28507:1 28509:1 28511:1 28560:1 28566:1 16 26:1 83:4 106:1 165:1 201:1 235:2 283:1 286:1 296:2 327:1 337:2 338:1 364:1 407:2 489:2 504:1 509:1 523:1 526:1 617:1 627:1 648:2 661:4 671:1 676:1 699:1 707:1 724:1 735:1 757:1 768:1 803:1 813:1 856:1 872:1 915:1 934:1 941:1 942:1 966:1 978:1 985:1 987:1 1015:1 1020:1 1062:1 1081:1 1125:1 1175:1 1201:2 1227:1 1239:2 1259:1 1275:1 1302:1 1306:1 1335:1 1346:1 1413:1 1484:1 1501:2 1521:1 1525:1 1544:1 1569:1 1572:2 1583:1 1591:1 1594:1 1596:1 1601:1 1621:1 1628:1 1632:1 1637:1 1640:1 1654:1 1675:1 1683:1 1722:1 1747:1 1751:1 1758:2 1789:1 1790:1 1809:1 1820:1 1824:1 1860:1 1882:1 1884:1 1903:1 1904:4 1929:1 1950:1 2022:1 2023:1 2054:1 2074:1 2076:2 2101:1 2108:1 2230:1 2232:1 2237:1 2238:1 2240:1 2241:1 2244:2 2246:1 2248:1 2256:4 2259:1 2260:2 2272:1 2273:1 2336:1 2413:1 2437:1 2495:1 2582:1 2595:4 2602:1 2607:1 2637:3 2651:1 2662:1 2674:1 2689:1 2731:2 2738:1 2741:2 2755:1 2792:4 2818:3 2828:5 2885:10 2899:1 2903:1 2907:1 2918:1 2986:1 3037:1 3107:1 3117:1 3129:1 3133:2 3151:1 3254:1 3283:1 3373:1 3388:1 3417:1 3427:1 3441:1 3442:1 3453:1 3505:1 3511:1 3512:1 3519:1 3569:1 3603:1 3606:1 3625:1 3651:1 3652:13 3688:7 3689:1 3691:2 3706:1 3721:2 3724:1 3740:1 3742:1 3777:3 3813:1 3816:1 3838:1 3844:1 3853:1 3891:1 3900:1 3904:1 3911:1 3925:1 3939:1 4056:1 4106:1 4153:1 4234:3 4277:1 4325:1 4347:2 4372:1 4393:1 4449:1 4533:1 4543:1 4653:1 4654:1 4660:2 4701:1 4792:6 4793:1 4824:1 4870:1 4893:1 4926:1 4927:4 4928:1 4930:1 4939:1 4940:7 4975:1 5144:2 5145:2 5181:1 5214:7 5242:1 5280:1 5317:1 5361:1 5370:1 5386:1 5390:1 5392:1 5448:1 5465:1 5474:1 5479:1 5523:1 5525:1 5562:1 5565:1 5595:1 5620:1 5624:1 5659:1 5660:1 5662:1 5683:1 5766:1 5791:1 5794:1 5796:1 5860:1 5932:2 5945:1 5971:1 5976:1 6003:1 6079:1 6088:1 6126:1 6127:2 6151:2 6168:1 6181:1 6242:1 6250:1 6254:1 6256:1 6264:2 6267:1 6298:1 6450:1 6454:1 6513:2 6523:1 6539:2 6566:1 6582:1 6604:1 6615:1 6679:1 6687:1 6695:2 6699:1 6711:1 6780:1 6789:1 6799:1 6803:1 6819:1 6857:1 6860:1 6996:1 7000:4 7010:2 7027:1 7180:1 7204:1 7221:3 7267:1 7269:1 7275:1 7290:1 7360:1 7420:1 7430:1 7437:1 7466:1 7477:1 7479:1 7496:1 7548:14 7567:3 7568:9 7586:1 7588:1 7616:1 7638:1 7653:1 7668:1 7689:1 7746:3 7750:1 7786:1 7788:1 7805:1 7826:1 7910:1 7921:1 7928:1 7936:1 7951:1 7977:1 7983:1 8006:4 8049:1 8063:1 8092:1 8116:1 8140:1 8170:3 8176:1 8194:1 8199:1 8231:1 8233:1 8251:1 8260:1 8269:1 8336:1 8345:1 8357:2 8358:1 8359:2 8360:1 8361:1 8362:1 8370:1 8373:1 8381:1 8396:1 8402:1 8412:1 8420:1 8421:1 8440:1 8517:2 8526:1 8528:1 8531:1 8550:1 8583:2 8595:1 8596:1 8603:1 8616:1 8617:1 8637:1 8667:1 8668:1 8675:1 8678:1 8680:1 8711:1 8725:1 8743:1 8853:1 8854:1 8882:1 8991:1 8995:1 9015:1 9039:1 9042:1 9055:1 9078:1 9088:1 9091:1 9124:1 9240:1 9243:1 9263:1 9278:1 9292:1 9294:1 9328:1 9375:7 9383:1 9420:2 9428:1 9448:1 9484:1 9511:7 9586:2 9655:2 9656:1 9696:1 9698:1 9706:1 9717:1 9730:1 9744:1 9748:2 9780:1 9785:1 9830:1 9873:4 9876:2 9883:1 9885:1 9976:1 10018:1 10035:3 10137:1 10149:1 10209:1 10230:1 10258:1 10278:1 10312:1 10314:1 10328:1 10369:1 10374:1 10383:3 10396:1 10401:1 10413:2 10464:1 10475:1 10495:1 10499:1 10503:1 10510:1 10524:1 10588:1 10620:1 10621:1 10635:1 10649:2 10727:1 10767:2 10779:2 10811:1 10892:1 10905:1 10996:1 11039:2 11047:1 11054:1 11073:1 11081:1 11112:1 11118:3 11120:1 11147:1 11169:1 11172:1 11180:1 11242:1 11248:3 11278:1 11280:1 11315:1 11336:1 11348:1 11359:1 11372:3 11373:1 11381:1 11383:3 11399:1 11406:1 11431:3 11476:1 11486:2 11498:1 11499:1 11530:1 11534:1 11544:2 11575:1 11616:1 11633:1 11764:1 11765:1 11786:1 11787:1 11788:7 11797:2 11823:1 11837:1 11879:1 11938:2 11939:1 11955:1 12016:1 12019:1 12047:1 12058:1 12134:1 12187:1 12189:1 12198:1 12323:5 12336:1 12345:1 12357:1 12369:2 12370:1 12394:1 12420:1 12456:1 12566:1 12599:1 12652:1 12691:1 12692:2 12715:1 12756:2 12768:1 12771:1 12776:1 12792:1 12798:1 12799:1 12829:1 12870:1 12874:1 12882:1 12883:1 12884:3 12889:1 12891:1 12892:1 12900:1 12904:1 12915:1 12924:1 12954:2 12966:1 13033:2 13034:1 13049:1 13095:1 13114:1 13131:1 13149:1 13178:1 13201:1 13243:1 13249:1 13250:1 13252:1 13254:1 13352:1 13365:3 13371:1 13380:1 13411:1 13416:1 13435:1 13457:1 13461:1 13467:2 13493:1 13510:1 13518:1 13535:2 13536:2 13543:1 13578:1 13615:1 13616:1 13620:1 13679:1 13735:2 13795:1 13855:1 13908:1 13924:1 13926:1 13927:1 13935:1 13985:1 14009:1 14087:1 14099:1 14126:1 14142:1 14158:1 14183:1 14378:1 14437:1 14443:1 14447:1 14566:1 14592:1 14678:1 14760:2 14761:1 14766:1 14793:1 14796:1 14826:1 14828:1 14832:1 14887:2 14898:2 14978:1 14992:1 15021:1 15033:2 15058:3 15063:2 15067:1 15134:1 15190:1 15194:1 15201:2 15239:1 15243:1 15244:1 15245:1 15250:1 15254:1 15264:1 15269:2 15337:1 15347:1 15361:2 15366:1 15401:1 15425:1 15442:1 15478:1 15502:2 15513:2 15529:1 15566:7 15620:2 15637:17 15665:1 15697:1 15731:1 15763:1 15773:1 15774:1 15810:1 15812:1 15832:1 15896:1 15902:2 15969:1 16053:1 16054:1 16064:1 16068:1 16078:2 16108:1 16146:1 16151:1 16168:1 16217:2 16230:1 16249:1 16255:7 16289:1 16300:1 16338:1 16366:1 16369:1 16373:1 16426:1 16427:1 16453:1 16558:1 16569:2 16608:1 16623:1 16654:2 16666:1 16683:2 16721:1 16744:1 16766:1 16796:2 16877:1 16896:1 16904:1 16911:1 16915:2 16920:1 16936:1 16964:1 17018:1 17019:1 17077:1 17103:2 17117:1 17128:1 17130:1 17199:1 17220:3 17275:1 17311:1 17363:1 17369:1 17392:1 17396:1 17404:3 17479:1 17529:2 17531:1 17568:1 17595:1 17599:1 17609:2 17616:1 17666:1 17667:1 17723:1 17754:1 17774:1 17779:1 17805:1 17806:1 17821:1 17874:1 17912:5 17949:1 17970:1 17984:1 18010:1 18031:1 18052:1 18101:1050 18123:1 18163:1 18178:3 18215:1 18234:1 18245:1 18262:1 18271:1 18272:1 18298:3 18311:3 18314:1 18362:1 18410:3 18439:1 18462:2 18472:1 18505:1 18512:1 18514:1 18557:1 18569:1 18584:4 18669:1 18786:1 18799:1 18801:1 18825:1 18829:1 18830:2 18834:1 18859:3 18881:1 18883:4 18911:1 18947:1 18950:1 18972:1 18976:1 18980:1 18987:1 18997:1 19028:1 19034:1 19055:1 19067:1 19099:1 19187:1 19206:1 19209:7 19253:1 19299:1 19307:1 19329:1 19347:1 19360:1 19391:1 19394:1 19401:1 19409:1 19459:2 19470:1 19488:1 19525:1 19565:1 19569:1 19591:2 19663:7 19677:2 19694:1 19695:1 19707:3 19724:1 19756:1 19774:1 19818:1 19833:2 19900:1 19910:1 19918:1 19945:1 19968:1 19979:1 20022:1 20024:1 20086:1 20148:1 20210:1 20245:5 20257:3 20261:1 20322:1 20375:2 20378:1 20402:1 20422:3 20496:1 20502:1 20524:1 20528:1 20561:1 20628:1 20718:2 20720:2 20723:1 20733:1 20773:1 20782:1 20822:1 20828:1 20838:1 20840:2 20870:1 20927:1 20941:1 20952:1 20973:1 20976:3 20992:1 21019:1 21086:1 21096:2 21142:2 21156:2 21161:1 21231:1 21237:1 21239:3 21252:1 21267:1 21272:1 21279:1 21282:2 21291:1 21306:1 21379:3 21380:1 21403:1 21412:1 21423:2 21446:1 21464:1 21515:7 21537:1 21548:1 21556:1 21575:1 21583:1 21594:2 21620:1 21628:2 21648:2 21668:2 21679:2 21704:1 21715:1 21718:1 21732:1 21745:2 21753:1 21769:1 21781:2 21794:2 21819:1 21941:2 21949:1 22021:1 22038:1 22042:1 22049:8 22130:1 22133:1 22165:1 22188:1 22264:2 22284:1 22295:1 22346:1 22348:1 22414:1 22423:1 22425:1 22453:1 22481:2 22530:1 22548:1 22556:1 22564:1 22568:2 22571:1 22607:1 22627:1 22667:1 22670:1 22677:1 22681:1 22699:1 22706:1 22748:2 22757:7 22847:1 22856:1 22916:1 22924:1 22937:1 22986:1 23000:1 23059:1 23077:1 23104:2 23126:1 23192:1 23207:3 23215:2 23224:1 23228:1 23306:1 23313:1 23362:1 23397:2 23405:1 23492:1 23633:1 23646:1 23666:2 23689:1 23704:1 23707:2 23716:1 23753:1 23766:1 23780:1 23788:1 23791:1 23802:1 23808:1 23841:1 23867:3 23870:1 23879:1 23885:1 23937:1 24003:1 24006:1 24020:1 24036:1 24050:1 24057:1 24059:1 24086:1 24144:1 24179:1 24214:1 24224:1 24230:1 24234:1 24242:1 24290:1 24325:1 24360:1 24406:1 24417:1 24434:1 24473:2 24476:1 24478:1 24488:1 24540:1 24572:1 24644:1 24647:1 24653:1 24692:1 24697:1 24730:2 24751:1 24760:2 24761:1 24772:1 24784:1 24789:1 24797:1 24817:2 24843:1 24847:1 24873:2 24942:2 24967:1 24969:2 24990:1 24999:1 25071:1 25109:1 25117:1 25157:1 25160:1 25191:1 25194:1 25323:1 25332:1 25387:1 25410:5 25414:1 25478:1 25569:1 25681:3 25683:2 25696:1 25698:1 25699:2 25700:1 25742:1 25751:1 25787:1 25793:2 25826:1 25844:1 25861:1 25879:1 25957:1 26032:1 26067:1 26151:1 26216:1 26285:2 26289:1 26303:2 26331:1 26397:7 26398:1 26401:1 26430:1 26503:1 26509:1 26510:1 26548:1 26569:1 26576:1 26581:1 26624:1 26641:1 26664:1 26715:1 26794:1 26843:1 26869:3 26889:1 26894:1 26919:1 26963:1 26986:1 26989:1 27025:1 27035:1 27071:1 27080:1 27217:1 27248:1 27271:1 27279:2 27280:12 27281:2 27289:1 27300:1 27315:1 27316:5 27326:1 27337:1 27364:1 27373:1 27394:1 27401:1 27405:1 27465:1 27492:1 27558:1 27561:1 27636:1 27638:2 27676:1 27692:1 27705:2 27749:1 27773:1 27834:1 27926:1 27963:2 27968:1 27971:1 28026:1 28046:1 28053:1 28138:3 28172:1 28210:1 28222:1 28229:2 28283:1 28297:1 28314:1 28336:1 28343:2 28344:1 28364:1 28430:2 28437:1 28507:1 28509:1 28511:2 28560:1 28566:1 16 26:1 83:4 106:1 165:1 201:1 235:4 283:1 286:1 296:2 327:1 337:2 338:1 364:1 407:2 445:1 489:2 504:1 507:1 509:1 523:1 526:1 617:1 627:2 648:2 661:4 671:1 676:1 699:1 707:1 724:1 735:1 757:2 768:1 803:1 813:1 856:1 872:1 915:1 934:1 941:1 942:1 966:1 978:1 985:1 987:1 1015:1 1020:1 1062:1 1081:1 1125:1 1175:1 1200:1 1201:2 1227:1 1239:2 1259:1 1275:1 1302:1 1306:1 1335:1 1346:1 1413:1 1484:1 1501:2 1521:1 1525:1 1544:1 1569:1 1572:2 1583:1 1591:1 1594:1 1596:1 1601:1 1621:1 1628:1 1632:1 1637:1 1640:2 1654:1 1672:1 1675:1 1683:1 1722:1 1747:1 1751:1 1758:2 1789:1 1790:1 1809:1 1820:1 1824:1 1860:1 1882:1 1884:1 1903:1 1904:4 1929:1 1950:1 2022:1 2023:1 2054:1 2074:1 2076:2 2101:1 2108:1 2230:1 2232:1 2237:1 2238:1 2240:1 2241:1 2244:2 2246:1 2248:1 2256:4 2259:1 2260:2 2272:1 2273:1 2336:1 2361:1 2413:1 2437:1 2488:1 2495:1 2582:1 2595:4 2602:1 2607:1 2637:3 2651:1 2662:1 2674:1 2689:1 2731:2 2738:1 2741:2 2755:1 2792:4 2818:3 2828:5 2885:11 2899:1 2903:1 2907:1 2918:1 2986:1 3037:1 3107:1 3117:1 3129:2 3133:4 3151:2 3254:1 3283:1 3348:1 3373:1 3388:1 3417:1 3427:1 3441:1 3442:1 3453:1 3505:1 3511:1 3512:1 3519:1 3569:1 3603:1 3606:1 3625:1 3651:1 3652:14 3688:7 3689:1 3691:2 3697:1 3706:1 3721:2 3724:1 3740:2 3742:1 3777:3 3813:1 3816:1 3838:2 3844:1 3853:1 3891:1 3900:1 3904:1 3911:1 3925:1 3939:1 4056:1 4106:1 4153:1 4234:3 4277:1 4313:1 4325:2 4347:2 4372:1 4393:1 4449:1 4489:1 4533:1 4543:1 4653:1 4654:1 4660:2 4701:1 4792:6 4793:1 4824:1 4870:1 4893:1 4926:1 4927:4 4928:1 4930:1 4939:1 4940:7 4975:1 5144:2 5145:3 5181:1 5214:7 5242:1 5280:1 5317:1 5361:1 5370:1 5386:1 5390:1 5392:1 5448:1 5465:1 5474:1 5479:1 5489:1 5523:1 5525:1 5562:1 5565:1 5595:1 5620:1 5624:1 5659:1 5660:1 5662:1 5683:1 5766:1 5791:1 5794:1 5796:1 5860:1 5932:3 5945:1 5971:1 5976:1 6003:1 6079:1 6088:1 6126:1 6127:2 6151:3 6168:1 6181:1 6242:1 6250:1 6254:1 6256:1 6264:2 6267:1 6298:1 6450:1 6454:1 6513:2 6523:1 6539:2 6566:1 6582:1 6604:1 6615:1 6657:1 6679:1 6685:1 6687:1 6695:2 6699:1 6711:1 6780:1 6783:1 6789:1 6799:2 6803:1 6819:1 6857:1 6860:1 6896:1 6996:1 7000:4 7010:2 7027:1 7180:1 7204:1 7221:3 7267:1 7269:1 7275:1 7290:1 7360:1 7420:1 7430:1 7437:1 7466:1 7477:1 7479:1 7496:1 7548:14 7567:3 7568:9 7586:1 7588:1 7616:1 7638:1 7653:1 7668:1 7672:1 7689:1 7746:3 7750:1 7786:1 7788:1 7805:1 7826:1 7910:1 7921:1 7928:1 7936:1 7951:1 7977:1 7983:1 8006:4 8049:1 8063:1 8092:1 8116:1 8140:1 8170:3 8176:1 8194:1 8199:1 8231:1 8233:1 8251:1 8260:1 8269:1 8294:1 8336:1 8345:1 8357:2 8358:1 8359:2 8360:1 8361:1 8362:2 8370:1 8373:1 8381:1 8396:1 8402:1 8412:1 8420:1 8421:1 8440:1 8455:1 8496:1 8517:2 8526:1 8528:1 8531:1 8550:1 8583:2 8595:1 8596:1 8603:1 8616:1 8617:1 8637:1 8667:1 8668:1 8675:1 8678:1 8680:1 8711:1 8725:1 8743:1 8853:1 8854:1 8880:1 8882:1 8991:1 8995:1 9015:1 9039:1 9042:1 9055:1 9078:1 9088:1 9091:1 9124:1 9240:1 9243:1 9263:1 9278:1 9292:1 9294:1 9328:1 9375:7 9383:1 9408:1 9420:2 9428:2 9448:1 9484:1 9511:9 9529:1 9569:1 9586:2 9655:2 9656:1 9696:1 9697:1 9698:1 9706:1 9717:1 9730:1 9744:1 9748:2 9780:1 9785:1 9830:1 9873:4 9876:2 9883:1 9885:1 9976:1 10018:1 10023:1 10035:3 10137:1 10149:1 10209:2 10230:1 10258:1 10278:1 10312:1 10314:1 10328:1 10369:1 10374:1 10383:3 10396:1 10401:1 10413:2 10464:1 10475:1 10495:1 10499:1 10503:1 10510:1 10524:2 10588:1 10620:1 10621:1 10635:1 10649:2 10666:1 10702:1 10727:1 10767:2 10779:2 10811:1 10892:1 10905:1 10961:1 10996:1 11039:2 11047:1 11054:1 11073:1 11081:1 11112:1 11118:3 11120:1 11147:1 11169:1 11172:1 11180:1 11242:1 11248:3 11278:1 11280:1 11315:1 11336:1 11348:1 11359:1 11372:3 11373:1 11381:1 11383:3 11399:1 11406:1 11431:3 11441:1 11476:1 11486:4 11498:1 11499:1 11530:1 11534:1 11544:3 11575:1 11616:1 11633:1 11734:1 11764:1 11765:1 11786:1 11787:1 11788:7 11797:2 11823:1 11837:1 11879:1 11938:2 11939:1 11955:1 12016:1 12019:1 12047:1 12058:1 12134:1 12187:1 12189:1 12198:1 12257:1 12323:5 12336:1 12345:1 12357:1 12369:2 12370:1 12394:1 12420:1 12456:1 12566:1 12599:1 12652:1 12691:1 12692:2 12715:1 12756:2 12768:1 12771:1 12776:1 12792:1 12798:1 12799:1 12829:1 12870:1 12874:1 12882:1 12883:1 12884:3 12889:1 12891:1 12892:1 12900:1 12904:1 12915:1 12924:1 12954:2 12966:1 13033:2 13034:1 13049:1 13095:1 13114:1 13131:1 13149:1 13178:1 13190:1 13201:1 13243:1 13249:1 13250:1 13252:1 13254:1 13278:1 13301:1 13352:1 13365:3 13371:1 13380:1 13411:1 13416:1 13435:1 13457:1 13461:1 13467:2 13493:1 13510:1 13518:1 13535:2 13536:2 13543:1 13560:1 13578:1 13612:1 13615:1 13616:1 13620:1 13679:1 13735:2 13750:1 13795:1 13855:1 13908:1 13924:1 13926:1 13927:1 13935:1 13985:1 14009:1 14087:1 14099:1 14126:1 14142:1 14158:1 14183:1 14227:1 14378:1 14437:1 14443:1 14447:1 14566:1 14592:1 14624:1 14665:1 14678:1 14760:2 14761:1 14766:1 14793:1 14796:1 14826:1 14828:1 14832:1 14887:2 14898:2 14978:1 14992:1 15021:1 15033:2 15058:3 15063:2 15067:1 15118:1 15134:1 15190:1 15194:1 15201:2 15239:1 15243:1 15244:1 15245:1 15250:1 15254:1 15264:1 15269:2 15337:1 15347:1 15361:2 15366:2 15401:1 15425:1 15442:1 15478:1 15502:2 15513:2 15529:1 15566:7 15599:1 15620:2 15637:18 15665:1 15697:1 15731:1 15734:1 15763:1 15773:1 15774:1 15810:1 15812:1 15832:1 15855:1 15876:1 15896:1 15902:3 15969:1 16053:1 16054:1 16064:1 16068:1 16078:2 16108:1 16146:1 16151:1 16168:1 16215:1 16217:2 16230:1 16249:1 16255:7 16289:1 16300:1 16338:1 16366:1 16369:1 16373:1 16416:1 16426:1 16427:1 16453:1 16492:1 16558:1 16569:2 16608:1 16623:1 16649:1 16654:2 16666:1 16676:1 16683:2 16721:1 16744:1 16766:1 16796:2 16877:1 16896:1 16904:1 16911:1 16915:2 16920:1 16936:1 16940:1 16964:1 17018:1 17019:1 17077:1 17103:2 17117:1 17128:1 17130:1 17199:1 17220:3 17275:1 17311:1 17317:1 17363:1 17369:1 17392:1 17396:1 17404:3 17479:1 17529:2 17531:1 17568:1 17595:1 17599:1 17609:2 17616:1 17666:1 17667:1 17723:1 17754:1 17774:1 17779:1 17805:1 17806:1 17821:1 17874:1 17912:5 17949:1 17970:1 17984:1 18010:1 18031:1 18052:1 18101:1122 18123:1 18163:1 18178:3 18215:1 18234:2 18245:1 18262:1 18271:1 18272:1 18298:3 18311:3 18314:1 18362:1 18410:3 18439:1 18462:2 18472:1 18505:1 18512:1 18514:1 18557:1 18569:1 18584:4 18669:1 18677:1 18786:1 18799:1 18801:1 18813:1 18825:2 18829:1 18830:2 18834:1 18859:4 18881:1 18883:4 18910:1 18911:1 18947:1 18950:1 18972:1 18976:1 18980:1 18987:1 18997:1 19028:1 19034:1 19055:1 19067:1 19099:1 19187:1 19206:1 19209:7 19253:1 19299:1 19307:1 19329:1 19347:1 19360:1 19391:1 19394:1 19401:1 19402:1 19409:1 19459:4 19470:1 19488:1 19525:1 19565:1 19569:1 19591:2 19663:7 19677:2 19694:1 19695:1 19707:3 19724:1 19756:1 19774:1 19818:1 19833:2 19900:1 19910:1 19918:1 19945:2 19957:1 19968:1 19979:1 20022:1 20024:1 20086:1 20148:1 20169:1 20210:1 20245:5 20257:3 20261:1 20322:1 20375:2 20378:1 20402:1 20422:3 20496:1 20502:1 20524:1 20528:1 20561:1 20628:1 20718:2 20720:2 20723:1 20733:1 20773:1 20782:1 20822:1 20828:1 20838:1 20840:2 20870:1 20888:1 20927:1 20941:1 20952:1 20973:1 20976:3 20978:1 20992:1 21019:1 21037:1 21086:1 21096:2 21142:2 21156:2 21161:1 21231:1 21237:1 21239:3 21252:1 21267:1 21272:1 21279:1 21282:2 21291:1 21306:1 21379:3 21380:1 21403:1 21412:1 21423:2 21446:1 21464:1 21515:7 21537:1 21548:1 21556:1 21575:1 21583:1 21594:2 21620:1 21628:2 21648:2 21668:3 21679:2 21704:1 21715:1 21718:1 21732:1 21745:2 21753:1 21754:1 21769:1 21781:2 21794:3 21819:1 21941:2 21949:1 22021:1 22038:1 22042:1 22049:9 22130:1 22133:2 22165:1 22188:3 22241:1 22264:2 22284:1 22295:1 22346:1 22348:1 22414:1 22423:1 22425:1 22431:1 22453:1 22481:2 22530:1 22548:1 22556:1 22564:2 22568:2 22571:1 22607:1 22627:1 22646:1 22667:1 22670:1 22677:1 22681:1 22699:1 22706:1 22748:2 22757:7 22847:1 22856:1 22916:1 22924:1 22937:1 22986:1 23000:1 23059:1 23077:1 23104:2 23126:1 23192:1 23207:3 23215:2 23224:1 23228:1 23306:1 23313:1 23362:1 23397:2 23405:1 23492:1 23633:1 23646:1 23665:1 23666:2 23689:1 23704:1 23707:2 23716:1 23753:1 23766:1 23780:1 23788:1 23791:1 23802:1 23808:1 23841:1 23844:1 23867:3 23870:1 23879:1 23885:1 23937:1 24003:1 24006:1 24020:1 24036:1 24050:1 24057:1 24059:1 24083:1 24086:1 24144:1 24155:1 24179:1 24214:1 24224:1 24230:1 24234:1 24242:1 24290:1 24325:1 24360:1 24406:1 24417:1 24434:1 24473:2 24476:1 24478:1 24488:1 24540:1 24572:1 24644:1 24647:1 24653:1 24692:1 24697:1 24730:2 24751:1 24760:2 24761:1 24772:1 24784:1 24789:1 24797:1 24817:2 24841:1 24843:1 24847:1 24873:2 24942:2 24967:1 24969:2 24990:1 24999:1 25071:1 25092:1 25109:1 25117:1 25157:1 25160:1 25175:1 25191:1 25194:1 25256:1 25323:1 25332:1 25387:1 25410:5 25414:1 25478:1 25569:1 25586:1 25681:4 25683:2 25696:1 25698:1 25699:4 25700:1 25742:1 25751:1 25787:1 25793:2 25826:1 25844:1 25861:1 25879:1 25957:1 26023:1 26032:1 26067:1 26151:1 26158:1 26216:1 26285:2 26289:1 26301:1 26303:2 26331:1 26397:7 26398:1 26401:1 26430:1 26503:1 26509:1 26510:1 26548:1 26563:1 26569:1 26576:1 26581:1 26624:1 26641:1 26664:1 26715:1 26794:1 26843:1 26869:3 26889:1 26894:1 26919:1 26963:1 26986:1 26989:1 27025:1 27035:1 27071:1 27080:1 27217:1 27248:1 27271:1 27279:2 27280:12 27281:2 27283:1 27287:1 27289:1 27300:1 27315:1 27316:7 27326:1 27337:1 27364:1 27373:1 27394:1 27401:1 27405:1 27465:1 27492:1 27519:1 27558:2 27561:1 27636:1 27638:4 27666:1 27676:1 27692:1 27705:2 27749:1 27773:1 27834:1 27926:1 27963:2 27968:1 27971:1 27977:1 28026:1 28046:1 28053:1 28138:3 28172:1 28210:1 28222:1 28229:2 28283:1 28297:1 28300:1 28314:1 28336:1 28343:2 28344:1 28364:1 28430:2 28437:1 28507:1 28509:1 28511:2 28560:1 28566:1 16 26:1 83:4 106:1 165:1 201:1 213:1 235:4 283:1 286:1 296:2 327:1 337:2 338:1 364:1 407:2 445:1 489:2 504:1 507:1 509:1 523:1 526:1 617:1 627:2 648:2 661:4 671:1 676:1 699:1 707:1 724:1 735:1 757:2 768:1 803:1 813:1 856:1 872:1 915:1 934:1 941:1 942:1 966:1 978:1 985:1 987:1 1015:1 1020:1 1062:1 1081:1 1116:1 1125:1 1175:1 1200:1 1201:2 1217:1 1227:1 1239:2 1259:1 1275:1 1302:1 1306:1 1335:1 1346:1 1413:1 1484:1 1501:2 1513:1 1521:1 1525:1 1544:1 1569:1 1572:2 1583:1 1591:1 1594:1 1596:1 1601:1 1621:1 1628:1 1632:1 1637:1 1640:2 1654:1 1672:1 1675:1 1683:1 1722:1 1745:1 1747:1 1751:1 1758:2 1784:1 1789:1 1790:1 1809:1 1820:1 1824:1 1860:1 1882:1 1884:1 1903:1 1904:4 1914:1 1929:1 1950:1 2022:1 2023:1 2054:1 2074:1 2076:2 2101:1 2108:1 2174:1 2230:1 2232:1 2237:1 2238:1 2240:1 2241:1 2244:2 2246:1 2248:1 2251:1 2256:4 2259:1 2260:2 2272:1 2273:1 2290:1 2327:1 2336:1 2361:1 2413:1 2437:1 2488:1 2495:1 2582:1 2595:4 2602:1 2607:1 2635:1 2637:3 2651:1 2662:1 2674:1 2689:1 2721:1 2731:2 2738:1 2741:3 2755:1 2792:4 2818:5 2828:5 2885:12 2899:1 2903:1 2907:1 2918:1 2986:1 3037:1 3107:1 3117:1 3129:2 3133:4 3151:2 3173:1 3219:1 3254:1 3283:1 3348:1 3373:1 3388:1 3417:1 3427:1 3441:1 3442:1 3453:1 3505:1 3511:1 3512:1 3519:1 3569:1 3603:1 3606:1 3625:1 3651:1 3652:14 3687:1 3688:7 3689:1 3691:2 3697:1 3706:1 3718:1 3721:2 3724:1 3740:2 3742:1 3777:3 3813:1 3816:1 3838:2 3844:1 3853:1 3891:1 3900:1 3904:1 3911:1 3925:1 3939:1 4056:1 4106:1 4153:1 4156:1 4234:3 4277:1 4313:1 4325:2 4335:1 4347:2 4372:1 4393:1 4449:1 4489:1 4522:1 4533:1 4543:1 4653:1 4654:1 4660:2 4693:1 4701:1 4792:6 4793:1 4824:1 4870:1 4893:1 4903:1 4905:1 4926:1 4927:4 4928:1 4930:1 4939:1 4940:7 4975:1 5144:2 5145:3 5181:1 5214:7 5242:1 5280:1 5317:1 5359:1 5361:1 5370:1 5386:1 5390:1 5392:1 5448:1 5465:1 5474:1 5479:1 5489:1 5523:1 5525:1 5562:1 5565:1 5595:1 5620:1 5624:1 5659:1 5660:1 5662:1 5683:1 5703:1 5766:1 5791:1 5794:1 5796:1 5860:1 5932:3 5945:1 5971:1 5976:1 6003:1 6079:1 6088:1 6126:1 6127:2 6151:3 6165:1 6168:1 6181:1 6242:1 6250:1 6254:1 6256:1 6264:2 6265:1 6267:1 6298:1 6398:1 6424:1 6450:1 6454:1 6513:2 6523:1 6539:2 6566:1 6582:1 6604:1 6615:1 6657:1 6679:1 6685:1 6687:1 6695:2 6699:1 6704:1 6711:1 6731:1 6780:1 6783:1 6789:1 6799:2 6803:1 6819:1 6857:1 6860:1 6896:1 6996:1 7000:4 7010:2 7027:1 7180:1 7204:1 7221:3 7267:1 7269:1 7275:1 7290:1 7360:1 7420:1 7430:1 7437:1 7466:1 7477:1 7479:1 7496:1 7531:1 7548:14 7549:1 7555:1 7567:4 7568:9 7579:1 7586:1 7588:1 7616:2 7638:1 7653:1 7668:1 7672:1 7689:1 7746:3 7750:1 7786:1 7788:1 7805:1 7826:1 7910:1 7921:1 7928:1 7936:1 7951:1 7977:1 7983:1 8006:4 8039:1 8049:1 8063:1 8092:1 8116:1 8140:1 8170:3 8176:1 8194:2 8199:1 8231:1 8233:1 8251:1 8260:1 8269:1 8294:1 8336:1 8345:1 8357:2 8358:1 8359:2 8360:1 8361:1 8362:2 8370:1 8373:1 8381:1 8396:1 8402:1 8412:1 8420:1 8421:1 8440:1 8455:1 8496:1 8517:2 8526:1 8528:1 8531:1 8550:1 8583:2 8595:1 8596:1 8603:1 8609:1 8616:1 8617:1 8637:1 8667:1 8668:1 8675:1 8678:1 8680:2 8711:1 8725:1 8743:1 8853:1 8854:1 8880:1 8882:1 8991:1 8995:1 9015:1 9039:1 9042:1 9055:1 9078:1 9088:1 9091:1 9124:1 9240:1 9243:1 9263:1 9278:1 9292:1 9294:1 9328:1 9375:7 9383:1 9408:1 9420:2 9428:2 9437:1 9448:1 9484:1 9511:9 9529:1 9569:1 9586:2 9655:2 9656:1 9696:1 9697:1 9698:1 9706:1 9717:1 9730:1 9744:1 9748:2 9780:2 9785:1 9830:1 9873:4 9876:2 9883:1 9885:1 9976:1 10018:1 10023:1 10035:3 10137:1 10149:3 10209:2 10230:1 10258:1 10278:1 10312:2 10314:1 10320:1 10328:1 10369:1 10374:1 10383:3 10396:1 10401:1 10413:2 10464:1 10475:1 10495:1 10499:1 10503:1 10510:1 10524:2 10588:1 10620:1 10621:1 10635:1 10649:2 10650:1 10666:1 10702:1 10727:1 10767:2 10779:2 10811:1 10892:1 10905:1 10926:1 10941:1 10961:1 10996:1 11039:2 11047:1 11054:1 11073:1 11081:1 11112:1 11118:3 11120:1 11147:1 11169:1 11172:1 11180:1 11218:1 11242:1 11248:3 11278:1 11280:1 11315:1 11336:1 11348:1 11359:1 11372:3 11373:1 11381:1 11383:3 11399:1 11406:1 11422:1 11431:3 11441:1 11476:1 11486:4 11498:1 11499:1 11530:1 11534:1 11544:3 11575:1 11616:1 11633:1 11734:1 11764:1 11765:1 11786:1 11787:1 11788:7 11797:3 11823:1 11837:1 11879:1 11938:3 11939:1 11955:1 12016:1 12019:1 12047:1 12058:1 12134:1 12187:1 12189:1 12198:1 12257:1 12323:5 12336:1 12345:1 12357:1 12369:2 12370:2 12394:1 12420:1 12451:1 12456:1 12524:1 12525:1 12566:1 12599:1 12652:1 12691:1 12692:2 12715:1 12756:2 12768:1 12771:1 12776:1 12792:1 12798:1 12799:1 12829:1 12870:1 12874:1 12882:1 12883:1 12884:3 12889:1 12891:1 12892:1 12900:1 12904:1 12915:1 12924:1 12954:2 12966:1 12980:1 12997:1 13033:2 13034:1 13049:1 13065:1 13095:1 13114:1 13131:1 13149:1 13178:1 13190:1 13201:1 13243:1 13249:1 13250:1 13252:1 13254:1 13278:1 13301:1 13314:1 13334:1 13352:1 13365:3 13371:1 13380:1 13411:1 13416:1 13435:1 13457:1 13461:1 13462:1 13467:2 13493:1 13510:1 13518:1 13535:2 13536:3 13543:1 13560:1 13578:1 13612:1 13615:1 13616:1 13620:1 13679:1 13735:2 13750:1 13782:1 13795:1 13855:1 13908:1 13924:3 13926:1 13927:1 13935:1 13985:1 13989:1 14009:1 14087:1 14099:1 14126:1 14142:1 14158:1 14183:1 14227:1 14271:1 14370:1 14378:1 14437:1 14443:1 14447:1 14566:1 14592:1 14624:1 14665:1 14678:1 14760:2 14761:1 14766:1 14793:1 14796:1 14826:1 14828:1 14832:1 14887:2 14898:2 14978:1 14992:1 15021:1 15033:2 15058:3 15063:2 15067:1 15118:1 15134:1 15190:1 15194:1 15201:2 15222:1 15239:1 15243:1 15244:1 15245:1 15250:1 15254:1 15264:1 15269:2 15337:1 15347:1 15361:2 15366:2 15401:1 15425:1 15442:1 15478:1 15502:2 15513:2 15529:1 15566:7 15596:1 15599:1 15620:2 15637:18 15665:1 15697:1 15731:1 15734:1 15763:1 15773:1 15774:1 15810:1 15812:1 15832:1 15855:1 15876:1 15896:1 15902:3 15953:1 15969:1 16053:1 16054:1 16064:1 16068:1 16078:2 16108:1 16146:1 16151:1 16168:1 16215:1 16217:2 16230:1 16249:1 16255:7 16289:1 16300:1 16338:1 16366:1 16369:1 16373:1 16378:1 16416:1 16426:1 16427:1 16453:1 16492:1 16558:1 16569:2 16608:1 16617:1 16623:1 16630:1 16649:1 16654:2 16666:1 16676:1 16683:2 16721:1 16726:1 16744:1 16766:1 16796:3 16877:1 16896:2 16904:1 16911:1 16915:2 16920:1 16921:1 16936:1 16940:1 16964:1 16990:1 17018:1 17019:1 17077:1 17103:2 17117:1 17128:1 17130:1 17199:1 17220:3 17248:1 17275:1 17311:1 17317:1 17363:1 17369:1 17392:1 17396:1 17404:3 17479:1 17529:2 17531:1 17568:1 17595:1 17599:1 17609:2 17616:1 17666:1 17667:1 17723:1 17754:2 17774:1 17779:1 17805:1 17806:1 17821:1 17874:1 17912:5 17949:1 17970:1 17984:1 17998:1 18010:1 18031:2 18052:2 18101:1204 18123:1 18163:1 18178:3 18215:2 18234:2 18245:1 18262:1 18271:1 18272:1 18298:3 18311:3 18314:1 18362:1 18410:3 18439:1 18462:2 18472:1 18491:1 18505:1 18512:1 18514:1 18557:1 18569:1 18584:4 18669:1 18677:1 18786:1 18799:1 18801:1 18813:1 18825:2 18829:1 18830:2 18834:1 18859:4 18881:1 18883:4 18910:1 18911:1 18947:1 18950:1 18972:1 18976:1 18980:1 18987:1 18997:1 19028:1 19034:1 19055:1 19067:1 19099:1 19106:1 19187:1 19206:1 19209:7 19253:1 19299:1 19307:1 19329:1 19347:1 19360:1 19391:1 19394:1 19401:1 19402:1 19409:1 19459:4 19470:1 19488:1 19525:1 19565:1 19569:1 19591:2 19638:1 19663:7 19677:2 19694:1 19695:1 19707:4 19724:1 19756:1 19774:1 19818:1 19833:2 19900:1 19910:1 19918:1 19945:2 19957:1 19968:1 19979:1 20022:1 20024:1 20086:1 20148:1 20169:1 20210:1 20245:5 20257:3 20261:1 20299:1 20322:1 20375:2 20378:1 20402:1 20422:3 20432:2 20496:1 20502:1 20524:1 20528:1 20561:1 20628:1 20679:1 20718:2 20720:2 20723:1 20733:1 20773:1 20782:1 20798:1 20822:1 20828:1 20838:1 20840:2 20870:1 20888:1 20927:1 20941:1 20952:1 20973:1 20976:3 20978:1 20992:1 21019:1 21037:1 21086:1 21096:2 21108:1 21140:1 21142:2 21156:2 21161:1 21231:1 21237:1 21239:3 21245:1 21252:1 21266:1 21267:1 21272:1 21279:1 21282:2 21291:1 21306:1 21379:3 21380:1 21403:1 21412:1 21423:2 21435:1 21446:1 21464:1 21515:7 21537:1 21548:1 21556:1 21575:1 21583:1 21594:2 21620:1 21628:2 21648:3 21668:3 21679:2 21704:1 21715:1 21718:1 21732:1 21745:2 21753:1 21754:1 21769:1 21781:2 21794:3 21819:1 21941:2 21949:1 22021:1 22038:1 22042:1 22049:9 22130:1 22133:2 22165:1 22188:3 22192:1 22223:1 22241:1 22264:2 22284:1 22295:1 22329:1 22346:1 22348:1 22355:1 22414:1 22423:1 22425:2 22431:1 22432:1 22448:1 22452:1 22453:1 22481:2 22496:1 22530:1 22548:1 22556:1 22564:2 22568:2 22571:1 22607:1 22627:1 22646:1 22667:1 22670:1 22677:2 22681:1 22699:1 22706:1 22748:2 22757:7 22847:1 22856:1 22916:1 22924:1 22937:1 22951:1 22986:1 23000:1 23059:1 23062:1 23077:1 23104:2 23126:1 23192:1 23207:3 23215:2 23224:1 23228:1 23306:1 23313:1 23362:1 23397:2 23405:1 23492:1 23633:1 23646:1 23665:1 23666:2 23689:1 23704:1 23707:2 23716:1 23722:1 23753:1 23766:1 23780:1 23788:1 23791:1 23802:1 23808:1 23841:1 23844:1 23867:3 23870:1 23879:1 23885:1 23937:1 23971:1 24003:1 24006:1 24020:1 24036:1 24050:1 24057:1 24059:1 24083:1 24086:1 24144:1 24155:1 24179:1 24208:1 24214:1 24224:1 24230:1 24234:1 24242:2 24269:1 24290:1 24325:1 24360:1 24406:1 24417:1 24434:1 24473:2 24476:2 24478:1 24488:1 24540:1 24567:1 24572:1 24644:1 24647:1 24653:1 24692:1 24697:1 24730:2 24751:2 24760:2 24761:1 24772:1 24784:1 24789:1 24797:1 24817:2 24838:1 24841:1 24843:1 24847:1 24873:2 24942:3 24967:1 24969:2 24990:1 24999:1 25071:1 25092:1 25109:1 25117:1 25131:1 25140:1 25157:1 25160:1 25175:1 25191:1 25194:1 25256:1 25261:1 25289:1 25323:1 25332:1 25387:1 25410:5 25414:1 25478:1 25569:1 25586:1 25681:4 25683:2 25696:1 25698:1 25699:4 25700:1 25742:1 25751:1 25787:1 25793:2 25826:1 25844:1 25861:1 25879:1 25957:1 26023:1 26032:1 26067:1 26151:1 26158:1 26216:1 26218:1 26285:2 26289:1 26301:1 26303:2 26331:1 26397:7 26398:1 26401:1 26430:1 26503:1 26509:1 26510:1 26548:1 26557:1 26563:1 26569:1 26576:1 26581:1 26612:1 26624:1 26641:1 26664:1 26715:1 26794:1 26843:1 26869:3 26889:1 26894:1 26919:1 26963:1 26986:1 26989:1 27025:1 27035:1 27071:1 27080:1 27217:1 27228:3 27248:1 27271:1 27279:2 27280:12 27281:2 27283:1 27287:1 27289:1 27300:1 27315:1 27316:7 27326:1 27337:1 27364:1 27368:1 27373:1 27394:1 27401:1 27405:1 27452:1 27465:1 27492:1 27519:1 27558:2 27561:1 27633:1 27636:1 27638:4 27641:1 27666:1 27676:1 27692:1 27705:2 27749:1 27773:1 27834:1 27926:1 27963:2 27968:1 27971:1 27977:1 28026:1 28046:1 28053:1 28138:3 28169:1 28172:1 28210:1 28222:1 28229:2 28283:1 28297:1 28300:1 28314:1 28336:1 28343:2 28344:1 28352:1 28364:1 28430:2 28437:1 28507:1 28509:1 28511:2 28560:1 28566:1 28576:1 16 26:1 69:1 83:4 106:1 147:1 165:1 201:1 213:1 235:4 283:1 286:1 296:2 327:1 336:1 337:2 338:1 364:1 407:2 445:1 489:2 504:1 507:1 509:1 523:1 526:1 617:1 627:2 648:2 661:4 665:1 671:1 676:1 699:1 707:1 724:1 735:1 757:2 768:1 803:1 813:1 856:1 872:1 915:1 934:1 941:1 942:1 943:1 966:1 978:1 985:1 987:1 1015:2 1020:1 1062:1 1081:1 1116:1 1125:1 1175:1 1200:1 1201:2 1217:1 1227:1 1239:2 1259:1 1269:1 1275:1 1289:1 1302:1 1306:1 1335:1 1346:1 1375:1 1413:1 1415:1 1484:1 1501:2 1513:1 1521:1 1525:2 1544:1 1569:1 1572:2 1583:1 1591:1 1594:1 1596:1 1601:2 1621:1 1628:1 1632:1 1637:1 1640:2 1654:1 1672:1 1675:1 1683:1 1722:1 1743:1 1745:1 1747:1 1751:1 1758:2 1784:1 1789:1 1790:1 1809:1 1820:1 1824:1 1825:1 1831:1 1860:1 1877:1 1882:1 1884:1 1903:1 1904:4 1914:1 1929:1 1950:1 2022:1 2023:2 2054:1 2074:1 2076:2 2101:1 2108:1 2164:1 2174:1 2230:1 2232:2 2237:1 2238:1 2240:1 2241:1 2244:3 2246:1 2248:1 2251:1 2256:4 2259:1 2260:2 2272:1 2273:1 2290:1 2327:1 2336:1 2361:1 2413:1 2437:1 2488:1 2495:1 2582:1 2595:4 2602:1 2607:1 2635:1 2637:3 2651:1 2662:1 2674:1 2689:1 2721:1 2731:2 2738:1 2741:3 2755:1 2792:4 2818:5 2828:5 2885:14 2899:1 2903:1 2907:1 2918:1 2986:2 3037:2 3107:1 3117:1 3129:2 3133:4 3151:3 3153:1 3173:1 3219:2 3254:1 3283:1 3340:1 3348:1 3373:1 3388:1 3417:1 3427:1 3441:1 3442:1 3453:1 3505:1 3511:1 3512:1 3519:1 3569:1 3603:1 3606:1 3625:1 3651:1 3652:14 3677:1 3679:1 3687:1 3688:7 3689:1 3691:2 3697:1 3706:1 3718:1 3721:2 3724:1 3740:2 3742:1 3743:1 3777:3 3813:1 3816:1 3826:1 3838:2 3844:1 3853:1 3891:1 3900:1 3904:1 3911:1 3915:1 3925:1 3939:1 4056:1 4106:1 4109:1 4153:1 4156:1 4234:3 4277:1 4302:1 4313:1 4325:2 4335:1 4347:2 4372:1 4380:1 4393:1 4449:1 4489:1 4522:1 4533:1 4543:1 4653:1 4654:1 4660:2 4693:1 4701:1 4792:6 4793:1 4824:1 4848:1 4870:1 4893:1 4903:1 4905:1 4926:1 4927:4 4928:1 4930:1 4939:1 4940:7 4941:1 4975:1 5144:2 5145:3 5181:1 5213:1 5214:7 5242:1 5280:1 5317:1 5319:1 5359:1 5361:1 5370:1 5386:1 5390:1 5392:1 5447:1 5448:1 5465:1 5474:1 5479:1 5489:1 5523:1 5525:1 5562:1 5565:1 5595:1 5620:1 5624:1 5659:1 5660:1 5662:1 5683:1 5703:1 5766:1 5791:1 5794:1 5796:1 5803:1 5860:1 5932:3 5945:1 5971:1 5976:1 6003:1 6042:1 6047:1 6079:1 6087:1 6088:1 6126:1 6127:2 6151:3 6165:1 6168:1 6181:1 6242:1 6250:1 6254:1 6256:2 6264:2 6265:1 6267:1 6275:1 6298:1 6398:1 6410:1 6413:1 6424:1 6450:1 6454:1 6513:2 6523:1 6539:2 6547:1 6566:1 6582:1 6598:1 6604:1 6615:1 6657:1 6679:1 6685:1 6687:1 6695:2 6699:1 6704:1 6711:2 6731:1 6780:1 6783:1 6789:1 6799:2 6803:1 6819:1 6857:1 6860:1 6896:1 6909:1 6970:1 6996:1 7000:4 7010:2 7027:1 7180:1 7204:1 7221:3 7267:1 7269:1 7275:1 7290:1 7360:1 7420:1 7430:1 7437:1 7466:1 7477:1 7479:1 7496:1 7531:1 7548:15 7549:1 7555:1 7567:4 7568:11 7579:1 7586:1 7588:1 7616:3 7638:1 7653:1 7668:1 7672:1 7689:1 7746:3 7750:1 7786:1 7788:1 7805:1 7826:1 7910:1 7921:1 7928:1 7936:1 7951:1 7977:1 7983:1 8006:6 8026:1 8039:1 8049:1 8063:1 8092:1 8116:1 8127:1 8140:1 8154:1 8170:3 8176:1 8194:2 8199:1 8231:1 8233:1 8251:1 8260:1 8269:1 8277:1 8294:1 8336:1 8345:1 8357:2 8358:1 8359:2 8360:1 8361:1 8362:2 8370:1 8373:1 8381:1 8396:1 8402:1 8412:1 8420:1 8421:1 8440:1 8455:2 8475:1 8496:1 8517:2 8526:1 8528:1 8531:1 8550:1 8583:2 8595:1 8596:1 8603:1 8609:1 8616:1 8617:1 8637:1 8667:1 8668:1 8675:1 8678:1 8680:2 8711:2 8725:1 8743:1 8813:1 8853:1 8854:1 8863:1 8880:1 8882:1 8903:1 8991:1 8995:1 9015:1 9039:1 9042:1 9055:1 9071:1 9078:1 9088:1 9091:1 9124:1 9240:1 9243:1 9253:1 9263:1 9278:1 9292:1 9294:1 9325:1 9328:1 9375:7 9383:1 9408:1 9420:2 9428:2 9437:1 9448:1 9484:1 9511:9 9529:1 9569:1 9586:2 9655:2 9656:1 9690:1 9696:1 9697:1 9698:1 9706:1 9717:1 9730:1 9744:1 9748:2 9780:2 9785:1 9817:1 9830:1 9873:4 9876:2 9883:1 9885:1 9971:1 9976:1 10018:1 10023:1 10035:3 10137:1 10149:3 10209:2 10230:1 10258:1 10278:1 10311:1 10312:2 10314:1 10320:1 10328:1 10369:1 10374:1 10383:3 10396:1 10401:1 10413:3 10464:1 10475:1 10495:1 10498:1 10499:1 10503:1 10510:1 10524:2 10588:1 10620:1 10621:1 10635:1 10649:2 10650:2 10666:1 10702:1 10727:1 10767:2 10779:2 10811:1 10843:1 10892:1 10905:1 10926:1 10931:1 10941:1 10961:1 10996:2 11021:1 11039:2 11047:1 11054:1 11073:1 11081:1 11112:1 11116:1 11118:3 11120:1 11147:1 11169:1 11172:1 11180:1 11218:1 11238:1 11242:1 11248:3 11278:1 11280:2 11315:1 11336:1 11348:1 11359:1 11372:3 11373:1 11381:1 11383:3 11399:1 11406:1 11422:1 11431:3 11435:1 11441:1 11455:1 11475:1 11476:1 11486:4 11498:1 11499:1 11530:1 11534:1 11544:3 11557:1 11575:1 11616:1 11633:1 11734:1 11761:1 11764:1 11765:1 11786:1 11787:1 11788:7 11797:4 11823:1 11837:1 11879:1 11930:1 11938:3 11939:2 11955:1 11958:1 12016:1 12019:1 12047:1 12058:1 12134:1 12187:1 12189:1 12198:1 12203:1 12257:1 12323:5 12336:1 12345:1 12357:1 12369:2 12370:2 12394:1 12420:1 12451:1 12456:2 12524:1 12525:2 12566:1 12599:1 12652:1 12691:1 12692:2 12715:1 12756:2 12768:1 12771:1 12776:1 12792:1 12798:1 12799:1 12829:1 12870:1 12874:1 12882:1 12883:1 12884:3 12889:1 12891:1 12892:1 12900:1 12904:1 12915:1 12924:1 12954:2 12966:1 12980:1 12997:1 13019:1 13033:2 13034:1 13049:1 13065:1 13095:1 13114:1 13122:2 13131:1 13149:1 13178:1 13190:1 13201:1 13243:1 13249:1 13250:1 13252:1 13254:1 13278:1 13301:1 13314:1 13330:1 13334:1 13352:1 13365:3 13371:1 13380:1 13411:1 13416:1 13434:1 13435:1 13457:1 13461:1 13462:1 13467:2 13493:1 13510:1 13518:1 13535:2 13536:4 13543:1 13560:1 13578:1 13610:1 13612:1 13615:1 13616:1 13620:1 13679:1 13735:2 13750:1 13782:1 13795:1 13855:1 13908:1 13924:3 13926:1 13927:1 13935:1 13970:1 13985:1 13989:1 14009:1 14035:1 14087:1 14099:1 14106:1 14126:1 14142:1 14158:1 14183:1 14227:1 14271:1 14370:1 14378:1 14437:1 14443:2 14447:1 14496:1 14505:1 14545:1 14566:1 14592:1 14624:1 14665:1 14678:1 14760:2 14761:1 14766:1 14792:1 14793:1 14796:1 14826:1 14828:1 14832:1 14887:2 14898:2 14978:1 14992:1 15009:1 15021:1 15033:2 15058:3 15063:2 15067:1 15118:1 15134:1 15190:1 15194:1 15201:2 15210:1 15222:1 15239:1 15243:1 15244:2 15245:1 15250:1 15254:1 15264:1 15269:2 15337:1 15347:1 15356:1 15361:2 15366:3 15401:1 15425:1 15442:1 15478:1 15502:2 15513:2 15529:1 15540:1 15566:7 15596:1 15599:1 15620:2 15637:19 15665:1 15697:1 15731:1 15734:1 15763:1 15773:1 15774:1 15776:1 15780:1 15810:1 15812:1 15815:1 15831:1 15832:1 15855:1 15876:1 15896:1 15902:3 15934:1 15953:1 15969:1 16053:1 16054:1 16064:1 16068:1 16078:2 16108:1 16146:1 16151:1 16168:2 16215:1 16217:2 16230:1 16249:1 16255:7 16289:1 16300:1 16338:1 16343:1 16366:1 16369:2 16373:1 16378:1 16395:1 16416:1 16426:1 16427:1 16453:1 16492:1 16558:1 16569:2 16608:1 16617:1 16623:1 16630:1 16649:1 16654:2 16666:1 16676:1 16683:2 16721:1 16726:1 16744:1 16766:1 16796:3 16876:1 16877:1 16896:3 16904:1 16911:1 16915:2 16920:1 16921:1 16936:1 16940:1 16964:1 16990:1 17018:1 17019:1 17077:1 17103:2 17117:1 17128:1 17130:1 17196:1 17199:1 17220:3 17248:1 17275:1 17311:1 17317:1 17363:1 17369:1 17392:1 17396:2 17404:3 17479:1 17529:2 17531:1 17568:1 17595:1 17599:1 17609:2 17616:1 17661:1 17666:1 17667:1 17714:1 17723:1 17754:2 17774:1 17779:1 17805:1 17806:1 17821:1 17874:1 17912:5 17949:1 17970:1 17984:1 17998:1 18010:1 18027:1 18031:3 18052:2 18065:1 18095:1 18101:1344 18118:1 18123:1 18163:1 18178:3 18215:2 18234:2 18245:1 18262:1 18271:1 18272:1 18298:3 18311:3 18314:1 18362:1 18410:3 18439:1 18462:2 18472:1 18491:1 18505:1 18512:1 18514:1 18557:1 18569:1 18584:4 18669:1 18677:1 18786:1 18799:1 18801:1 18813:1 18825:2 18829:1 18830:2 18834:1 18859:5 18881:1 18883:4 18910:1 18911:1 18947:1 18950:1 18972:1 18976:1 18978:1 18980:1 18987:1 18997:1 19005:1 19028:1 19034:1 19055:1 19067:1 19099:1 19106:1 19187:1 19206:1 19209:7 19231:1 19253:1 19299:1 19307:2 19329:1 19347:1 19360:1 19391:1 19394:1 19401:1 19402:1 19409:1 19459:4 19470:1 19488:1 19525:1 19545:1 19565:1 19569:1 19591:3 19638:1 19663:7 19677:2 19694:1 19695:1 19707:6 19724:1 19756:1 19774:1 19818:1 19833:2 19865:1 19900:1 19910:1 19918:1 19945:2 19957:1 19968:1 19979:1 20022:1 20024:1 20086:1 20117:1 20148:1 20169:1 20210:1 20245:7 20257:3 20261:1 20299:1 20322:1 20375:2 20378:1 20402:1 20422:3 20432:2 20496:1 20502:1 20524:1 20528:1 20561:1 20628:1 20679:1 20718:2 20720:2 20723:1 20733:1 20773:1 20782:1 20798:1 20822:1 20828:1 20838:1 20840:2 20843:1 20870:1 20888:1 20927:1 20941:1 20951:1 20952:1 20973:1 20976:3 20978:1 20992:1 21019:1 21037:1 21086:1 21096:2 21108:1 21140:1 21142:2 21156:2 21161:1 21231:1 21237:1 21239:3 21245:1 21252:1 21266:1 21267:1 21272:1 21279:1 21282:2 21291:1 21306:1 21379:3 21380:1 21403:1 21412:1 21423:2 21435:1 21446:1 21464:1 21515:7 21518:1 21537:1 21548:1 21556:1 21575:1 21583:1 21594:2 21613:1 21620:1 21621:1 21628:2 21648:3 21664:1 21668:3 21679:2 21704:1 21715:1 21718:1 21732:1 21745:2 21753:1 21754:1 21769:1 21781:2 21794:3 21819:1 21828:1 21941:2 21949:1 22021:1 22038:1 22042:1 22049:9 22051:1 22130:1 22133:2 22165:1 22188:4 22192:1 22223:1 22241:1 22264:2 22284:1 22295:1 22329:1 22346:1 22348:1 22355:1 22414:1 22423:1 22425:3 22431:1 22432:1 22448:1 22452:1 22453:1 22481:2 22496:1 22530:1 22534:1 22548:1 22556:1 22564:2 22568:2 22571:1 22607:1 22619:1 22627:1 22646:2 22667:1 22670:1 22677:2 22681:1 22699:1 22706:1 22748:2 22757:7 22847:1 22856:1 22916:1 22924:1 22937:1 22951:1 22986:1 23000:1 23024:1 23059:1 23062:1 23077:1 23104:2 23126:1 23177:1 23192:1 23207:3 23215:2 23224:1 23228:1 23284:1 23306:1 23313:1 23362:1 23397:2 23405:1 23413:1 23492:1 23633:1 23646:1 23665:1 23666:2 23689:1 23697:1 23704:1 23707:2 23716:1 23722:1 23753:1 23766:1 23780:1 23788:1 23791:1 23802:1 23808:1 23841:1 23844:1 23867:3 23870:1 23879:1 23885:1 23921:1 23937:1 23971:1 24003:1 24006:1 24020:1 24036:1 24050:1 24057:1 24059:1 24083:1 24086:1 24144:2 24155:1 24179:1 24208:1 24214:1 24224:1 24230:1 24234:1 24242:3 24269:2 24290:1 24325:1 24360:1 24404:1 24406:1 24417:1 24434:1 24473:2 24476:3 24478:1 24488:1 24540:1 24567:1 24572:1 24644:2 24647:1 24653:1 24678:1 24692:1 24697:1 24730:2 24740:1 24751:2 24760:3 24761:1 24772:1 24784:1 24789:1 24797:1 24817:2 24838:1 24841:2 24843:1 24847:1 24873:2 24897:1 24942:3 24967:1 24969:2 24990:1 24999:1 25071:1 25092:2 25109:1 25117:1 25131:1 25140:1 25157:1 25160:1 25175:1 25191:1 25194:1 25217:1 25256:2 25261:1 25289:1 25323:1 25332:1 25387:1 25410:5 25414:1 25478:1 25569:1 25586:1 25681:4 25683:2 25696:2 25698:1 25699:4 25700:1 25742:1 25751:1 25787:1 25793:2 25805:1 25826:2 25844:1 25861:1 25879:1 25957:1 26023:1 26032:1 26067:1 26075:1 26151:1 26158:1 26216:1 26218:1 26285:2 26289:1 26301:1 26303:3 26331:1 26397:7 26398:1 26401:1 26430:1 26503:1 26509:1 26510:1 26548:1 26557:1 26563:1 26569:1 26576:1 26581:1 26612:1 26624:1 26641:1 26651:1 26664:1 26715:1 26765:1 26794:1 26829:1 26843:1 26869:3 26889:1 26894:1 26919:1 26963:1 26986:1 26989:1 26993:1 27025:1 27035:1 27038:1 27071:1 27080:1 27111:1 27145:1 27217:1 27228:3 27231:1 27248:1 27271:1 27279:2 27280:12 27281:2 27283:1 27287:1 27289:1 27300:1 27315:1 27316:7 27326:1 27337:1 27364:1 27368:1 27373:1 27394:1 27401:1 27405:1 27414:1 27452:1 27465:1 27492:1 27519:1 27558:2 27561:1 27633:1 27636:1 27638:4 27641:1 27666:1 27676:1 27692:1 27705:2 27749:1 27773:1 27834:1 27864:1 27926:1 27963:2 27968:1 27971:1 27977:1 28026:1 28046:1 28053:1 28138:3 28169:2 28172:1 28210:1 28222:1 28229:2 28283:1 28292:1 28297:1 28300:1 28314:1 28336:1 28343:2 28344:1 28352:1 28364:1 28420:1 28430:3 28437:1 28496:1 28507:1 28509:1 28511:2 28560:1 28566:1 28575:1 28576:1 16 26:1 69:1 83:4 106:1 137:1 147:1 165:1 201:1 213:1 235:4 283:1 286:1 296:2 327:1 336:1 337:2 338:1 364:1 407:2 445:1 489:2 504:1 507:1 509:1 523:1 526:1 617:1 627:3 648:2 661:4 665:1 671:1 676:1 699:1 707:1 713:1 724:1 735:1 757:2 768:1 803:1 813:1 856:1 872:1 915:1 934:1 939:1 941:1 942:1 943:1 966:1 978:1 985:1 987:1 1015:2 1020:1 1062:1 1081:1 1116:1 1125:1 1171:1 1175:1 1192:1 1200:1 1201:2 1217:1 1227:1 1239:2 1259:1 1269:1 1275:1 1289:1 1302:1 1306:1 1335:1 1346:1 1375:1 1413:1 1415:1 1438:1 1484:1 1501:2 1513:1 1521:1 1525:2 1544:1 1569:1 1572:2 1583:1 1591:1 1594:1 1596:1 1601:2 1621:1 1628:1 1632:1 1637:1 1640:2 1654:1 1672:1 1675:1 1683:1 1722:1 1743:1 1745:1 1747:1 1751:1 1758:2 1784:1 1789:1 1790:1 1809:1 1820:1 1824:1 1825:1 1831:1 1853:1 1860:1 1877:1 1882:1 1884:1 1903:1 1904:4 1914:1 1921:1 1929:1 1950:1 1986:1 2006:1 2015:1 2022:1 2023:2 2054:1 2074:1 2076:2 2101:1 2108:1 2164:1 2174:1 2230:2 2232:2 2237:1 2238:1 2240:1 2241:1 2244:3 2246:1 2248:1 2251:1 2256:4 2259:1 2260:2 2272:1 2273:1 2290:1 2327:1 2336:1 2361:1 2413:1 2437:1 2488:1 2495:1 2582:1 2595:4 2602:1 2607:1 2635:1 2637:3 2651:1 2662:1 2674:1 2689:1 2721:1 2731:2 2738:1 2741:3 2755:1 2792:4 2818:5 2828:6 2885:15 2899:1 2903:1 2907:1 2918:1 2986:2 3037:2 3107:1 3117:1 3129:2 3133:4 3151:3 3153:1 3173:1 3219:2 3254:1 3283:1 3330:1 3340:1 3348:1 3361:1 3373:1 3388:1 3417:1 3427:1 3441:1 3442:1 3453:1 3505:1 3511:1 3512:1 3519:1 3569:1 3588:1 3603:1 3606:1 3625:1 3651:1 3652:14 3677:1 3679:1 3687:1 3688:7 3689:1 3691:2 3697:1 3706:1 3718:1 3721:2 3724:1 3740:2 3742:1 3743:1 3777:3 3783:1 3813:1 3816:1 3826:1 3838:2 3844:1 3853:1 3891:1 3900:1 3904:1 3911:1 3915:1 3920:1 3925:1 3939:1 4056:1 4106:1 4109:1 4110:1 4153:1 4156:1 4234:3 4277:1 4302:1 4313:1 4325:2 4335:1 4347:2 4372:1 4380:1 4393:1 4448:1 4449:2 4489:1 4522:1 4533:1 4543:1 4653:1 4654:1 4660:2 4693:1 4701:1 4782:1 4792:9 4793:1 4824:1 4848:1 4870:1 4893:1 4903:1 4905:1 4926:1 4927:4 4928:1 4930:1 4939:1 4940:7 4941:1 4943:1 4948:1 4975:1 5045:1 5144:2 5145:3 5152:2 5181:1 5195:1 5213:1 5214:7 5242:1 5280:1 5317:1 5319:1 5359:1 5361:1 5370:1 5386:1 5390:1 5392:1 5447:1 5448:1 5465:1 5474:1 5479:1 5489:1 5523:1 5525:1 5562:1 5565:1 5595:1 5618:1 5620:1 5624:1 5631:1 5659:1 5660:1 5662:1 5683:1 5703:1 5731:1 5766:1 5791:1 5794:1 5796:1 5803:1 5860:1 5932:3 5945:1 5971:1 5976:1 6003:1 6042:1 6047:1 6057:1 6079:1 6086:1 6087:1 6088:1 6126:1 6127:2 6151:3 6153:1 6165:1 6168:1 6181:1 6242:1 6250:1 6254:1 6256:2 6262:1 6264:2 6265:1 6267:1 6275:1 6298:1 6358:1 6398:1 6410:1 6413:1 6424:1 6450:1 6454:1 6507:1 6513:2 6523:1 6533:2 6539:2 6547:1 6566:2 6582:1 6598:1 6604:1 6615:1 6657:1 6679:1 6685:1 6687:1 6695:2 6699:1 6704:1 6711:2 6731:1 6780:1 6783:1 6789:1 6799:2 6803:1 6819:1 6857:1 6860:1 6896:1 6909:1 6970:1 6996:1 7000:4 7010:2 7027:1 7049:1 7180:1 7204:1 7221:3 7267:1 7269:1 7275:2 7290:1 7360:1 7420:1 7430:1 7437:1 7466:1 7477:1 7479:2 7496:1 7505:1 7531:1 7548:16 7549:1 7555:1 7567:4 7568:12 7578:1 7579:1 7586:1 7588:1 7616:3 7638:1 7653:1 7668:1 7672:1 7689:1 7746:4 7750:1 7786:1 7788:2 7805:1 7826:1 7910:1 7921:1 7928:1 7936:1 7951:1 7977:1 7983:1 8006:6 8026:1 8039:1 8049:1 8063:1 8092:1 8116:1 8127:1 8140:1 8154:1 8170:3 8176:1 8194:2 8199:2 8231:1 8233:1 8251:1 8260:1 8269:1 8277:1 8294:1 8319:1 8336:1 8345:1 8357:2 8358:1 8359:2 8360:1 8361:1 8362:2 8370:1 8373:2 8381:1 8396:1 8402:1 8412:1 8420:1 8421:1 8440:1 8455:2 8475:1 8496:1 8517:2 8526:1 8528:1 8531:1 8550:1 8583:2 8595:1 8596:1 8603:1 8609:1 8616:1 8617:1 8621:1 8637:1 8667:1 8668:1 8675:1 8678:1 8680:3 8706:1 8711:2 8725:1 8743:1 8813:1 8853:1 8854:1 8863:1 8880:1 8882:1 8903:1 8991:1 8995:1 9015:1 9039:1 9042:1 9055:1 9071:1 9078:1 9088:1 9091:1 9124:1 9240:1 9243:1 9253:1 9263:1 9264:1 9278:1 9292:1 9294:1 9322:1 9325:1 9328:1 9375:7 9383:1 9408:1 9420:2 9428:2 9437:1 9448:1 9467:1 9484:1 9511:9 9529:1 9569:1 9586:2 9603:1 9655:2 9656:1 9690:1 9696:1 9697:1 9698:1 9706:1 9717:1 9730:1 9744:1 9748:2 9780:2 9785:1 9817:1 9830:1 9853:1 9855:1 9873:4 9876:2 9883:1 9885:1 9971:1 9976:1 10018:1 10023:1 10035:3 10137:1 10149:3 10209:2 10230:1 10258:1 10278:1 10297:1 10311:1 10312:2 10314:1 10320:1 10328:1 10369:1 10374:1 10383:3 10396:1 10401:1 10405:1 10413:3 10464:1 10475:1 10495:1 10498:1 10499:1 10503:1 10510:1 10524:2 10534:1 10588:1 10620:1 10621:1 10635:1 10649:2 10650:2 10666:1 10702:1 10727:2 10747:1 10767:2 10779:2 10811:1 10843:1 10892:1 10905:1 10926:1 10931:1 10941:1 10961:1 10996:2 11021:1 11039:2 11047:1 11054:1 11073:1 11081:1 11112:1 11116:1 11118:3 11120:1 11147:1 11169:1 11172:1 11180:1 11198:1 11218:1 11238:1 11242:1 11248:3 11278:2 11280:2 11315:1 11336:1 11348:1 11358:1 11359:1 11367:1 11372:4 11373:1 11381:1 11383:4 11399:1 11406:1 11422:1 11431:3 11435:1 11441:1 11455:1 11475:1 11476:1 11486:4 11498:1 11499:1 11530:1 11534:1 11544:3 11557:1 11575:1 11615:1 11616:1 11633:1 11683:1 11734:1 11761:1 11764:1 11765:1 11786:1 11787:1 11788:7 11797:4 11823:1 11837:1 11879:1 11930:1 11938:4 11939:2 11955:1 11958:1 12016:1 12019:1 12047:1 12058:1 12064:1 12134:1 12148:1 12187:1 12189:1 12198:1 12203:1 12257:1 12323:6 12336:1 12345:1 12357:1 12369:2 12370:2 12394:1 12420:1 12451:1 12456:2 12524:1 12525:2 12566:1 12599:1 12652:1 12691:1 12692:2 12715:1 12744:1 12756:2 12768:1 12771:1 12776:1 12792:1 12798:1 12799:1 12829:1 12870:1 12872:1 12874:1 12882:1 12883:1 12884:3 12889:1 12891:1 12892:1 12900:1 12904:1 12915:1 12924:1 12954:2 12966:1 12980:1 12997:1 13019:1 13033:2 13034:1 13049:1 13065:1 13071:1 13095:1 13114:1 13122:2 13131:1 13149:1 13178:1 13190:1 13201:2 13243:1 13249:1 13250:1 13251:1 13252:1 13254:1 13278:1 13301:1 13314:1 13330:1 13334:1 13352:1 13365:3 13371:1 13380:1 13411:1 13416:1 13434:1 13435:1 13439:1 13457:1 13461:1 13462:1 13467:2 13493:1 13510:1 13515:1 13518:1 13535:2 13536:4 13543:1 13560:1 13565:1 13578:1 13610:1 13612:1 13615:1 13616:1 13620:1 13679:1 13735:2 13750:1 13782:1 13795:1 13855:1 13908:1 13924:3 13926:1 13927:1 13935:1 13951:1 13970:1 13985:1 13989:1 14009:1 14035:1 14051:1 14087:1 14099:1 14106:1 14126:1 14142:1 14158:1 14183:1 14227:1 14271:1 14370:1 14378:1 14401:1 14437:1 14443:2 14447:1 14496:1 14505:1 14545:1 14566:1 14592:1 14624:1 14665:1 14678:1 14760:2 14761:1 14766:1 14792:1 14793:1 14796:1 14826:1 14828:1 14832:1 14887:2 14898:2 14978:1 14992:1 15009:1 15021:1 15033:2 15058:3 15063:2 15067:1 15099:1 15118:2 15134:1 15190:2 15194:1 15201:2 15210:1 15222:1 15239:1 15243:1 15244:2 15245:1 15250:1 15254:1 15264:1 15269:2 15337:1 15347:1 15356:1 15361:2 15366:3 15401:1 15425:1 15442:1 15461:1 15472:1 15478:1 15502:2 15513:2 15529:1 15540:1 15566:7 15596:1 15599:1 15620:2 15637:19 15665:1 15697:1 15731:1 15734:1 15763:1 15773:1 15774:1 15776:1 15780:1 15810:1 15812:1 15815:1 15831:1 15832:1 15855:1 15876:1 15896:1 15902:3 15934:1 15953:1 15969:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16108:1 16146:1 16151:1 16168:2 16215:1 16217:2 16228:1 16230:1 16249:1 16255:7 16289:1 16300:1 16338:1 16343:1 16366:1 16369:2 16373:1 16378:1 16395:1 16416:1 16426:1 16427:1 16453:1 16492:1 16558:1 16569:2 16608:1 16617:1 16623:1 16630:1 16646:1 16649:1 16652:1 16654:2 16666:1 16676:1 16683:3 16690:1 16721:1 16726:1 16744:1 16766:1 16771:1 16796:3 16876:1 16877:1 16896:3 16904:1 16911:1 16915:2 16920:1 16921:1 16936:1 16940:1 16964:1 16990:1 17018:1 17019:1 17077:1 17103:2 17117:1 17128:1 17130:1 17196:2 17199:1 17220:3 17248:1 17275:1 17294:1 17311:1 17317:1 17334:1 17363:1 17369:1 17392:1 17396:2 17404:3 17479:1 17529:2 17531:1 17568:1 17578:1 17595:1 17599:1 17609:2 17616:1 17640:1 17661:1 17666:1 17667:1 17714:1 17723:1 17754:2 17774:1 17779:1 17782:1 17785:1 17805:1 17806:1 17821:1 17874:1 17912:5 17949:1 17970:1 17984:1 17998:1 18010:1 18027:1 18031:3 18052:2 18065:1 18095:1 18101:1452 18118:1 18123:1 18163:1 18178:3 18215:2 18234:2 18245:1 18262:1 18271:1 18272:1 18298:3 18311:3 18314:1 18315:1 18362:1 18410:3 18439:1 18462:2 18472:1 18491:1 18505:1 18512:1 18514:1 18557:1 18569:1 18584:4 18669:1 18677:1 18786:1 18799:1 18801:1 18804:1 18813:1 18825:2 18829:1 18830:2 18834:1 18859:5 18881:1 18883:4 18910:1 18911:1 18947:1 18950:1 18972:1 18976:1 18978:1 18980:1 18987:1 18997:1 19005:1 19028:1 19034:1 19055:1 19067:1 19099:1 19106:1 19187:1 19206:1 19209:7 19220:1 19231:1 19253:1 19299:1 19307:2 19329:1 19347:1 19360:1 19391:1 19394:1 19401:1 19402:1 19409:1 19459:4 19470:1 19488:2 19514:1 19525:1 19543:1 19545:1 19565:1 19569:1 19591:4 19638:1 19663:7 19677:2 19694:1 19695:1 19707:7 19724:1 19756:1 19774:1 19818:1 19833:2 19865:1 19900:1 19910:1 19918:1 19945:2 19957:1 19968:1 19979:1 20022:1 20024:1 20086:1 20117:1 20148:1 20169:1 20210:1 20245:8 20257:3 20260:1 20261:1 20289:1 20299:1 20322:1 20375:2 20378:1 20402:1 20422:3 20429:1 20432:2 20496:1 20502:1 20524:1 20528:1 20561:1 20569:1 20620:1 20628:1 20679:1 20718:2 20720:2 20723:1 20733:1 20773:1 20782:1 20798:1 20822:1 20828:1 20838:1 20840:2 20843:1 20870:1 20888:1 20927:2 20941:1 20951:1 20952:1 20973:1 20976:3 20978:1 20992:1 21019:1 21037:1 21080:1 21086:1 21096:2 21108:1 21140:1 21142:2 21150:1 21156:2 21161:1 21231:1 21237:1 21239:3 21245:1 21252:1 21266:1 21267:1 21272:1 21279:1 21282:2 21291:1 21306:1 21334:1 21379:3 21380:1 21403:1 21412:1 21423:2 21435:1 21439:1 21446:1 21464:1 21474:1 21515:7 21518:1 21537:1 21548:1 21556:1 21575:1 21583:1 21594:2 21613:1 21620:1 21621:1 21628:2 21648:3 21664:1 21668:3 21679:2 21704:1 21715:1 21718:1 21732:1 21745:2 21753:1 21754:1 21769:1 21781:2 21794:3 21807:1 21819:1 21828:1 21941:2 21949:1 22021:1 22038:1 22042:1 22049:9 22051:1 22082:1 22099:1 22130:1 22133:2 22165:1 22188:4 22192:1 22223:1 22241:1 22264:2 22284:1 22295:1 22329:1 22346:1 22348:1 22355:1 22414:1 22423:1 22425:3 22431:1 22432:1 22448:1 22452:1 22453:1 22481:2 22496:1 22530:1 22534:1 22548:1 22551:1 22556:1 22564:2 22568:2 22571:1 22572:1 22607:1 22619:1 22627:1 22628:1 22646:2 22667:1 22670:1 22677:2 22681:1 22699:1 22706:1 22748:2 22757:7 22847:1 22856:1 22916:1 22924:1 22937:1 22951:1 22986:1 23000:1 23024:1 23059:1 23062:1 23077:1 23104:2 23126:1 23177:1 23192:1 23207:3 23215:2 23224:1 23228:1 23284:1 23306:1 23313:1 23362:1 23397:2 23405:1 23413:1 23492:1 23520:1 23568:2 23633:1 23646:1 23665:1 23666:2 23689:1 23697:1 23704:1 23707:2 23716:1 23722:1 23753:1 23766:1 23780:1 23788:1 23791:1 23802:1 23808:1 23841:1 23844:1 23867:3 23870:1 23879:1 23885:1 23899:1 23921:1 23937:1 23971:1 24003:1 24006:1 24020:1 24036:1 24050:1 24057:1 24059:1 24083:1 24086:1 24144:2 24155:1 24179:1 24208:1 24214:1 24224:1 24230:1 24234:1 24242:3 24269:2 24290:1 24325:1 24360:1 24404:1 24406:1 24417:1 24434:1 24473:2 24476:3 24478:1 24488:1 24540:1 24567:1 24572:1 24644:2 24647:1 24653:1 24678:1 24692:1 24697:2 24718:1 24728:1 24730:2 24740:1 24751:2 24760:3 24761:1 24772:1 24784:1 24789:1 24797:1 24817:2 24838:1 24841:2 24843:1 24847:1 24873:2 24897:1 24942:3 24967:1 24969:2 24990:1 24999:1 25056:1 25071:1 25092:2 25109:1 25117:1 25131:1 25138:1 25140:1 25157:1 25160:1 25175:1 25191:1 25194:1 25217:1 25230:1 25256:2 25261:1 25289:1 25323:1 25332:1 25387:1 25410:5 25414:1 25478:1 25569:1 25571:1 25586:1 25681:4 25683:2 25696:2 25698:1 25699:4 25700:1 25742:2 25751:2 25787:1 25793:2 25805:1 25826:2 25844:1 25861:1 25879:1 25910:1 25957:1 26023:1 26032:1 26067:1 26075:1 26151:1 26158:1 26216:1 26218:1 26285:2 26289:1 26301:1 26303:3 26331:1 26397:7 26398:1 26400:1 26401:1 26430:1 26503:1 26509:1 26510:1 26548:1 26557:1 26563:1 26569:1 26576:1 26581:1 26612:1 26624:1 26641:1 26651:1 26664:1 26715:1 26765:1 26792:1 26794:1 26829:1 26843:1 26869:3 26889:1 26894:1 26919:1 26963:1 26986:1 26989:1 26993:1 27017:1 27025:1 27035:1 27038:1 27071:1 27080:1 27111:1 27145:1 27217:1 27228:3 27231:1 27248:1 27271:1 27279:2 27280:13 27281:2 27283:1 27287:1 27289:1 27300:1 27315:1 27316:7 27326:1 27337:1 27364:1 27368:1 27373:1 27394:1 27401:1 27405:2 27414:1 27452:1 27465:1 27492:1 27519:1 27549:1 27558:2 27561:1 27633:1 27636:1 27638:4 27641:1 27666:1 27676:1 27692:1 27705:2 27749:1 27773:1 27775:1 27834:1 27864:1 27914:1 27926:1 27963:2 27968:1 27971:1 27977:1 27994:1 28026:1 28046:1 28053:1 28138:3 28169:2 28172:1 28210:1 28222:1 28229:2 28283:1 28292:1 28297:1 28300:1 28314:1 28336:1 28343:3 28344:1 28352:1 28364:1 28420:1 28430:3 28437:1 28496:1 28507:1 28509:1 28511:2 28523:1 28560:1 28566:1 28575:1 28576:1 28618:1 16 26:1 69:1 83:4 106:1 137:1 147:1 165:1 201:1 213:1 235:4 283:1 286:1 296:2 327:1 336:1 337:2 338:1 364:1 407:2 445:1 489:2 504:1 507:1 509:1 523:1 526:1 552:1 617:1 627:3 648:2 661:4 665:1 671:1 676:1 699:1 707:1 713:1 724:1 735:1 757:2 768:1 803:1 813:1 856:1 872:1 915:1 934:1 939:1 941:1 942:1 943:2 966:1 978:1 985:1 987:1 1015:2 1020:1 1062:1 1081:1 1086:1 1116:1 1125:1 1171:2 1175:1 1192:2 1200:1 1201:2 1217:1 1227:1 1239:2 1259:1 1269:1 1275:1 1289:2 1302:1 1306:1 1335:1 1346:1 1375:1 1413:1 1415:2 1438:2 1484:1 1501:2 1513:1 1521:1 1525:2 1544:1 1569:1 1572:2 1583:1 1591:1 1594:1 1596:1 1601:2 1621:1 1628:1 1632:1 1637:1 1640:2 1654:1 1672:1 1675:1 1683:1 1722:1 1743:1 1745:1 1747:1 1751:1 1758:2 1784:1 1789:1 1790:1 1809:1 1820:1 1824:1 1825:1 1831:1 1853:1 1860:1 1877:1 1882:1 1884:1 1903:1 1904:4 1914:1 1921:1 1929:1 1950:1 1986:1 2006:1 2015:2 2022:1 2023:3 2054:1 2074:1 2076:2 2101:1 2108:1 2164:1 2174:1 2230:2 2232:3 2237:1 2238:1 2240:1 2241:1 2244:3 2246:1 2248:1 2251:1 2256:4 2259:1 2260:2 2272:1 2273:1 2290:1 2327:1 2336:1 2361:1 2413:1 2437:1 2448:1 2488:1 2495:1 2582:1 2595:4 2602:1 2607:1 2630:1 2635:1 2637:4 2651:1 2662:1 2674:1 2689:1 2721:1 2731:2 2738:1 2741:3 2755:1 2792:4 2818:5 2828:6 2885:16 2899:1 2903:1 2907:1 2918:1 2986:2 3037:2 3107:1 3117:1 3129:2 3133:4 3151:4 3153:2 3173:1 3219:2 3254:1 3283:1 3330:1 3340:1 3348:1 3361:2 3373:1 3388:1 3417:1 3427:1 3441:1 3442:1 3453:1 3505:1 3511:1 3512:1 3519:1 3569:1 3588:1 3603:1 3606:1 3625:1 3651:1 3652:15 3677:2 3679:2 3687:1 3688:8 3689:1 3691:3 3697:1 3706:2 3718:1 3721:2 3724:1 3725:1 3740:2 3742:1 3743:1 3777:3 3783:1 3813:1 3815:1 3816:1 3826:2 3838:2 3844:1 3853:1 3891:1 3900:1 3904:1 3911:1 3915:1 3920:1 3925:1 3939:1 3953:1 4056:1 4106:1 4109:1 4110:1 4153:1 4156:1 4234:4 4277:1 4302:1 4313:1 4325:2 4335:1 4347:2 4372:1 4380:1 4393:1 4448:1 4449:2 4489:1 4519:1 4522:1 4533:1 4543:1 4653:1 4654:1 4660:2 4693:1 4701:1 4782:1 4792:9 4793:1 4824:1 4848:1 4870:1 4893:1 4903:1 4905:1 4926:1 4927:4 4928:1 4930:1 4939:1 4940:8 4941:1 4943:1 4948:1 4975:1 5045:1 5144:2 5145:3 5152:4 5181:1 5195:1 5213:1 5214:8 5242:1 5280:1 5317:1 5319:1 5359:1 5361:1 5370:1 5386:1 5390:1 5392:1 5447:1 5448:1 5465:1 5474:1 5479:1 5489:1 5523:1 5525:1 5562:1 5565:1 5595:1 5618:1 5620:1 5624:1 5631:1 5659:1 5660:1 5662:1 5683:1 5703:1 5731:1 5766:1 5791:1 5794:1 5796:1 5803:1 5860:1 5932:3 5945:1 5971:1 5976:1 6003:1 6042:1 6047:1 6057:1 6079:1 6086:1 6087:2 6088:1 6126:1 6127:2 6151:3 6153:1 6165:1 6168:1 6181:1 6242:1 6250:1 6251:1 6254:1 6256:2 6262:1 6264:2 6265:1 6267:1 6275:1 6298:1 6358:1 6398:1 6410:2 6413:1 6424:1 6450:1 6454:1 6507:1 6513:2 6523:1 6533:4 6539:2 6547:1 6566:2 6582:1 6598:2 6604:1 6615:1 6657:1 6679:1 6685:1 6687:1 6695:2 6699:1 6704:1 6711:2 6731:1 6780:1 6783:1 6789:1 6799:2 6803:1 6819:1 6857:1 6860:1 6896:1 6909:1 6970:1 6996:1 7000:4 7010:2 7027:1 7049:1 7180:1 7204:1 7221:3 7267:1 7269:1 7275:2 7290:1 7360:1 7420:1 7430:1 7437:1 7466:1 7477:1 7479:2 7496:1 7505:1 7531:1 7548:17 7549:1 7555:1 7567:4 7568:13 7578:1 7579:1 7586:1 7588:1 7616:3 7638:1 7653:1 7668:1 7672:1 7689:1 7746:4 7750:1 7786:1 7788:2 7805:1 7826:1 7862:1 7910:1 7921:1 7928:1 7936:1 7951:1 7977:1 7983:1 7998:1 8006:7 8026:1 8039:1 8049:1 8063:1 8092:1 8116:1 8127:2 8140:1 8154:1 8170:3 8176:1 8194:2 8199:2 8231:1 8233:1 8251:1 8260:1 8269:1 8277:1 8294:1 8319:2 8336:1 8345:1 8357:2 8358:1 8359:2 8360:1 8361:1 8362:2 8370:1 8373:2 8381:1 8396:1 8402:1 8412:1 8420:1 8421:1 8440:1 8455:2 8475:2 8496:1 8517:2 8526:1 8528:1 8531:1 8550:1 8583:2 8595:1 8596:1 8603:1 8609:1 8616:1 8617:1 8621:1 8637:1 8667:1 8668:1 8675:1 8678:1 8680:3 8706:1 8707:1 8711:3 8725:1 8743:1 8813:1 8853:1 8854:1 8863:1 8880:1 8882:1 8903:1 8991:1 8995:1 9015:1 9039:1 9042:1 9055:1 9071:1 9078:1 9088:1 9091:1 9124:1 9240:1 9243:1 9253:1 9263:1 9264:2 9278:1 9292:1 9294:1 9322:1 9325:1 9328:1 9375:8 9383:1 9408:1 9420:3 9428:2 9437:1 9448:1 9467:2 9484:1 9511:9 9529:1 9569:1 9586:3 9603:1 9655:2 9656:1 9690:1 9696:1 9697:1 9698:1 9706:1 9717:1 9730:1 9744:1 9748:2 9780:2 9785:1 9817:1 9830:1 9853:1 9855:1 9873:4 9876:3 9883:1 9885:1 9971:2 9976:1 10018:1 10023:1 10035:3 10137:1 10149:3 10209:2 10230:1 10258:1 10278:1 10297:2 10311:2 10312:2 10314:1 10320:1 10328:1 10369:1 10374:1 10383:3 10396:1 10401:1 10405:1 10413:4 10464:1 10475:1 10495:1 10498:1 10499:1 10503:1 10510:1 10524:2 10534:1 10588:1 10620:1 10621:1 10635:1 10649:2 10650:2 10666:1 10702:1 10727:2 10747:1 10767:2 10779:2 10811:1 10843:2 10892:1 10905:1 10926:1 10931:1 10941:1 10961:1 10971:1 10996:2 11021:1 11039:2 11047:1 11054:1 11073:1 11081:1 11112:1 11116:1 11118:3 11120:1 11147:1 11169:1 11172:1 11180:1 11198:1 11218:1 11238:1 11242:1 11248:3 11278:2 11280:2 11315:1 11336:1 11348:1 11358:1 11359:1 11367:1 11372:4 11373:1 11381:1 11383:4 11399:1 11406:1 11422:1 11431:3 11435:1 11441:1 11455:1 11475:1 11476:1 11486:4 11498:1 11499:1 11530:1 11534:1 11544:3 11557:1 11575:1 11615:1 11616:1 11633:1 11683:1 11734:1 11749:1 11761:1 11764:1 11765:1 11766:1 11786:1 11787:1 11788:8 11797:4 11823:1 11837:2 11879:1 11930:1 11938:5 11939:2 11955:1 11958:1 12016:1 12019:1 12047:1 12058:1 12064:1 12069:1 12134:1 12148:1 12187:1 12189:1 12198:1 12203:1 12257:1 12323:6 12336:1 12345:1 12357:1 12369:2 12370:2 12394:1 12420:1 12451:1 12456:2 12524:1 12525:2 12566:1 12599:1 12652:1 12691:1 12692:2 12715:1 12744:1 12756:2 12768:1 12771:1 12776:1 12792:1 12798:1 12799:1 12829:1 12870:1 12872:1 12874:1 12882:1 12883:1 12884:3 12889:1 12891:1 12892:1 12900:1 12904:1 12915:1 12924:1 12954:2 12966:1 12980:1 12997:1 13019:2 13033:2 13034:1 13049:1 13065:1 13071:1 13084:1 13095:1 13114:1 13122:3 13131:1 13149:1 13178:1 13190:1 13201:2 13243:1 13249:1 13250:1 13251:2 13252:1 13254:1 13278:1 13301:1 13310:1 13314:1 13330:2 13334:1 13352:1 13365:3 13371:1 13380:1 13411:1 13416:1 13434:1 13435:1 13439:1 13457:1 13461:1 13462:1 13467:2 13493:1 13510:1 13515:1 13518:1 13535:2 13536:4 13543:1 13560:1 13565:2 13578:1 13610:2 13612:1 13615:1 13616:1 13620:1 13679:1 13735:2 13750:1 13782:1 13795:1 13855:1 13908:1 13924:3 13926:1 13927:1 13935:1 13951:1 13970:1 13985:1 13989:1 14009:1 14035:1 14051:1 14087:1 14099:1 14106:1 14126:1 14142:1 14158:1 14183:1 14227:1 14271:1 14370:1 14378:1 14401:2 14437:1 14443:2 14447:1 14496:1 14505:1 14545:2 14566:1 14592:1 14624:1 14665:1 14678:1 14760:2 14761:1 14766:1 14792:1 14793:1 14796:1 14826:1 14828:1 14832:1 14887:2 14898:2 14978:1 14992:1 15009:1 15021:1 15033:2 15058:3 15063:2 15067:1 15099:1 15118:2 15134:1 15165:1 15190:2 15194:1 15201:2 15210:1 15222:1 15239:1 15243:1 15244:3 15245:1 15250:1 15254:1 15264:1 15269:2 15337:1 15347:1 15356:1 15361:2 15366:3 15401:1 15425:1 15442:1 15461:1 15472:1 15478:1 15502:2 15513:2 15529:1 15540:1 15566:8 15596:1 15599:1 15620:2 15637:22 15665:1 15697:1 15731:1 15734:1 15763:1 15773:1 15774:1 15776:1 15780:2 15810:1 15812:1 15815:1 15831:1 15832:1 15855:1 15876:1 15896:1 15902:3 15934:2 15953:1 15969:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16108:1 16146:1 16151:1 16168:2 16215:1 16217:2 16228:1 16230:1 16249:1 16255:7 16289:1 16300:1 16338:1 16343:1 16366:1 16369:3 16373:1 16378:1 16395:1 16416:1 16426:1 16427:1 16453:1 16492:1 16558:1 16569:2 16608:1 16617:1 16623:1 16630:1 16646:1 16649:1 16652:1 16654:2 16666:1 16676:1 16683:3 16690:1 16721:1 16726:1 16744:1 16766:1 16771:1 16796:3 16876:1 16877:1 16896:3 16904:1 16911:1 16915:2 16920:1 16921:1 16936:1 16940:1 16954:1 16964:1 16990:1 17018:1 17019:1 17077:1 17103:2 17117:1 17128:1 17130:1 17196:2 17199:1 17220:4 17248:1 17275:1 17294:1 17311:1 17317:1 17334:1 17341:1 17363:1 17369:1 17392:1 17396:2 17404:3 17479:1 17529:2 17531:1 17568:1 17578:1 17595:1 17599:1 17609:2 17616:1 17640:1 17661:1 17666:1 17667:1 17714:1 17723:1 17754:2 17774:1 17779:1 17782:1 17785:2 17805:1 17806:1 17821:1 17874:1 17912:5 17949:1 17970:1 17984:1 17998:1 18010:1 18027:1 18031:3 18052:2 18065:1 18095:1 18101:1531 18118:1 18123:1 18163:1 18178:3 18215:2 18234:2 18245:1 18262:1 18271:1 18272:1 18298:3 18311:3 18314:1 18315:1 18362:1 18410:3 18439:1 18462:2 18472:1 18491:1 18505:1 18512:1 18514:1 18557:1 18569:1 18584:4 18669:1 18677:1 18786:1 18799:1 18801:1 18804:1 18813:1 18825:2 18829:1 18830:2 18834:1 18859:5 18881:1 18883:5 18910:1 18911:1 18947:1 18950:1 18972:1 18976:1 18978:1 18980:1 18987:1 18997:1 19005:1 19028:1 19034:1 19055:1 19067:1 19099:1 19106:1 19148:1 19187:1 19206:1 19209:7 19220:1 19231:2 19253:1 19299:1 19307:3 19329:1 19347:1 19360:1 19391:1 19394:1 19401:1 19402:1 19409:1 19459:4 19464:1 19470:1 19472:1 19488:2 19514:1 19525:1 19543:1 19545:1 19565:1 19569:1 19591:5 19638:1 19663:7 19677:2 19694:1 19695:1 19707:8 19724:1 19747:1 19756:1 19774:1 19818:1 19833:2 19865:1 19900:1 19910:1 19918:1 19945:2 19957:1 19968:1 19979:1 20022:1 20024:1 20086:1 20099:1 20117:1 20148:1 20169:1 20210:2 20245:8 20257:3 20260:1 20261:1 20289:1 20299:1 20322:1 20375:2 20378:1 20402:1 20422:3 20429:1 20432:2 20496:1 20502:1 20524:1 20528:1 20561:1 20569:1 20620:1 20628:1 20679:1 20718:2 20720:2 20723:1 20733:1 20745:1 20773:1 20782:1 20798:1 20822:1 20828:1 20838:1 20840:2 20843:1 20870:1 20888:1 20927:2 20941:1 20951:1 20952:1 20973:1 20976:4 20978:1 20992:1 21019:1 21037:1 21080:1 21086:1 21096:2 21108:1 21140:1 21142:2 21150:2 21156:2 21161:1 21231:1 21237:1 21239:4 21245:1 21252:1 21266:1 21267:1 21272:1 21279:1 21282:2 21291:1 21306:1 21334:1 21379:3 21380:1 21403:1 21412:1 21423:2 21435:1 21439:1 21446:1 21464:1 21474:1 21515:8 21518:1 21537:1 21548:1 21556:1 21575:1 21583:1 21594:2 21613:1 21620:1 21621:1 21628:2 21648:3 21664:2 21668:3 21679:2 21704:1 21715:1 21718:1 21732:1 21745:2 21753:1 21754:1 21769:1 21781:2 21794:3 21807:1 21819:1 21828:2 21941:3 21949:1 22021:1 22038:1 22042:1 22049:9 22051:2 22082:1 22099:1 22130:1 22133:2 22165:1 22188:5 22192:1 22223:1 22241:1 22264:2 22284:1 22295:1 22329:1 22346:1 22348:1 22355:1 22414:1 22423:1 22425:3 22431:1 22432:1 22448:1 22452:1 22453:1 22481:2 22496:1 22530:1 22534:2 22548:1 22551:1 22556:1 22564:2 22568:2 22571:1 22572:1 22607:1 22619:1 22627:1 22628:1 22646:3 22667:1 22670:1 22677:2 22681:1 22699:1 22706:1 22748:2 22757:8 22847:1 22856:1 22916:1 22924:1 22937:1 22951:1 22986:1 23000:1 23024:2 23059:1 23062:1 23077:1 23104:2 23126:1 23177:1 23192:1 23207:3 23215:2 23224:1 23228:1 23284:1 23306:1 23313:1 23362:1 23397:2 23405:1 23413:1 23492:1 23520:1 23568:4 23633:1 23646:1 23665:1 23666:2 23668:1 23689:1 23697:1 23704:1 23707:2 23716:1 23722:1 23753:1 23766:1 23780:1 23788:1 23791:1 23802:1 23808:1 23841:1 23844:1 23867:3 23870:1 23879:1 23883:1 23885:1 23899:1 23921:1 23937:1 23971:1 24003:1 24006:1 24020:1 24036:1 24050:1 24057:1 24059:1 24083:1 24086:1 24144:2 24155:1 24179:1 24208:1 24214:1 24224:1 24230:1 24234:1 24242:3 24269:2 24290:1 24325:1 24360:1 24404:2 24406:1 24417:1 24434:1 24473:2 24476:3 24478:1 24488:1 24540:1 24567:1 24572:1 24637:1 24644:2 24647:1 24653:1 24678:1 24692:1 24697:2 24718:1 24728:1 24730:2 24740:2 24751:2 24760:3 24761:1 24772:1 24784:1 24789:1 24797:1 24817:2 24838:1 24841:3 24843:1 24847:1 24873:2 24897:1 24942:3 24967:1 24969:2 24990:1 24999:1 25056:1 25071:1 25092:3 25109:1 25117:1 25131:1 25138:2 25140:1 25157:1 25160:1 25175:1 25191:1 25194:1 25217:1 25230:1 25235:1 25256:3 25261:1 25277:1 25289:1 25323:1 25326:1 25332:1 25387:1 25410:5 25414:1 25478:1 25549:1 25569:1 25571:1 25586:1 25681:4 25683:2 25696:2 25698:1 25699:4 25700:1 25742:2 25751:2 25773:1 25787:1 25793:2 25805:1 25826:2 25844:1 25861:1 25879:1 25910:1 25957:1 26023:1 26032:1 26067:1 26075:1 26151:1 26158:1 26216:1 26218:1 26285:2 26289:1 26301:1 26303:4 26331:1 26397:8 26398:1 26400:2 26401:1 26430:1 26503:1 26509:1 26510:1 26548:1 26557:1 26559:1 26563:1 26569:1 26576:1 26581:1 26612:1 26624:1 26641:1 26651:1 26664:1 26715:1 26765:1 26792:1 26794:1 26829:2 26843:1 26869:3 26889:1 26894:1 26919:1 26963:1 26986:1 26989:1 26993:1 27017:1 27025:1 27035:1 27038:1 27071:1 27080:1 27111:1 27145:1 27217:1 27228:3 27231:1 27248:1 27271:1 27279:2 27280:13 27281:2 27283:1 27287:1 27289:1 27300:1 27315:1 27316:7 27326:1 27337:1 27364:1 27368:1 27373:1 27394:1 27401:1 27405:2 27414:1 27452:1 27465:1 27492:1 27495:1 27519:1 27549:1 27558:2 27561:1 27633:1 27636:1 27638:4 27641:1 27666:1 27676:1 27692:1 27705:2 27749:1 27773:1 27775:1 27834:1 27864:1 27914:2 27926:1 27963:2 27968:1 27971:1 27977:1 27994:2 28026:1 28046:1 28053:1 28138:3 28169:2 28172:1 28210:1 28222:1 28229:2 28283:1 28292:2 28297:1 28300:1 28314:1 28336:1 28343:3 28344:1 28352:1 28364:1 28420:1 28430:4 28437:1 28496:1 28507:1 28509:1 28511:2 28523:1 28560:1 28566:1 28575:1 28576:1 28618:1 16 26:1 27:1 69:1 83:4 106:1 137:1 147:1 162:1 165:1 201:1 213:1 235:4 283:1 286:1 296:2 327:1 336:1 337:2 338:1 364:1 407:2 442:1 445:1 460:1 489:2 504:1 507:1 509:1 523:1 526:1 552:1 617:1 627:3 648:2 661:4 665:1 671:1 676:1 699:1 707:1 713:1 724:1 735:1 757:2 768:1 803:1 813:1 856:1 872:1 915:1 934:1 939:1 941:1 942:1 943:2 966:1 978:1 985:2 987:1 1015:2 1020:1 1062:1 1081:1 1086:1 1116:1 1125:1 1171:3 1175:1 1192:2 1200:1 1201:2 1217:1 1227:1 1239:2 1259:1 1269:1 1275:1 1289:2 1290:1 1302:1 1306:1 1335:1 1346:1 1375:1 1413:1 1415:2 1438:2 1484:1 1501:2 1513:1 1521:1 1525:2 1544:1 1569:1 1572:2 1583:1 1591:1 1594:1 1596:1 1601:2 1621:1 1628:1 1632:1 1637:1 1640:2 1654:1 1672:1 1675:2 1683:1 1722:1 1743:1 1745:1 1747:1 1751:1 1758:2 1784:1 1789:1 1790:1 1809:1 1820:1 1824:1 1825:1 1831:1 1853:1 1860:1 1877:1 1882:1 1884:1 1895:1 1903:1 1904:4 1914:1 1921:1 1929:1 1950:1 1986:1 2006:1 2015:2 2022:1 2023:3 2054:1 2074:1 2076:2 2101:1 2108:1 2164:1 2174:1 2230:2 2232:3 2237:1 2238:1 2240:1 2241:1 2244:3 2246:1 2248:1 2251:1 2256:4 2259:1 2260:3 2272:1 2273:1 2290:1 2327:1 2336:1 2354:1 2361:1 2413:1 2437:1 2448:1 2488:1 2495:1 2556:1 2582:1 2595:4 2602:1 2607:1 2630:1 2633:1 2635:1 2637:4 2651:1 2662:1 2674:1 2689:1 2721:1 2731:2 2738:1 2741:3 2755:1 2792:4 2818:5 2828:6 2885:16 2899:1 2903:1 2907:1 2918:1 2986:2 2989:1 3037:2 3107:1 3117:1 3129:2 3133:4 3151:4 3153:2 3173:1 3219:3 3254:1 3283:1 3330:1 3340:1 3348:1 3361:3 3373:1 3388:1 3417:1 3427:1 3441:1 3442:1 3453:2 3505:1 3511:1 3512:1 3519:1 3569:1 3588:1 3603:1 3606:1 3625:1 3651:1 3652:16 3677:2 3679:3 3687:1 3688:9 3689:1 3691:3 3697:1 3706:3 3718:1 3721:2 3724:2 3725:1 3740:2 3742:1 3743:1 3777:3 3783:1 3788:1 3808:1 3813:1 3815:1 3816:1 3826:2 3838:2 3844:1 3853:1 3891:1 3900:1 3904:1 3911:1 3915:1 3920:1 3925:1 3939:1 3953:1 4056:1 4106:1 4109:1 4110:1 4153:1 4156:1 4234:5 4250:1 4277:1 4302:1 4313:1 4325:2 4335:1 4347:2 4372:1 4380:1 4386:1 4393:1 4448:1 4449:2 4489:1 4519:1 4522:1 4533:1 4543:1 4653:1 4654:1 4660:2 4693:1 4701:1 4782:1 4792:10 4793:1 4824:1 4848:1 4870:1 4893:1 4903:1 4905:1 4926:1 4927:4 4928:1 4930:1 4939:1 4940:9 4941:1 4943:1 4948:1 4975:1 5045:1 5144:2 5145:3 5152:5 5181:1 5195:1 5213:1 5214:9 5242:1 5280:1 5317:1 5319:1 5359:1 5361:1 5370:1 5386:1 5390:1 5392:1 5447:1 5448:1 5465:1 5474:1 5479:1 5489:1 5523:1 5525:1 5562:1 5565:1 5588:1 5595:1 5618:1 5620:1 5624:1 5631:1 5659:1 5660:1 5662:1 5683:1 5703:1 5707:1 5731:1 5766:2 5791:1 5794:1 5796:1 5803:1 5860:1 5932:3 5945:1 5971:1 5976:1 6003:1 6042:1 6047:1 6057:1 6079:1 6086:1 6087:2 6088:1 6126:1 6127:2 6151:3 6153:1 6165:1 6168:1 6181:1 6242:1 6247:1 6250:1 6251:1 6254:1 6256:2 6262:1 6264:2 6265:1 6267:1 6275:1 6298:1 6358:1 6398:1 6410:2 6413:1 6424:1 6450:1 6454:1 6507:1 6513:2 6523:1 6533:5 6535:1 6539:2 6547:1 6566:2 6582:1 6598:2 6604:1 6615:1 6657:1 6679:1 6685:1 6687:1 6695:2 6699:1 6704:1 6711:2 6731:1 6780:1 6783:1 6789:1 6799:2 6803:1 6819:1 6857:1 6860:1 6896:1 6909:1 6970:1 6996:1 7000:4 7010:2 7027:1 7036:1 7049:1 7180:1 7204:1 7221:3 7267:1 7269:1 7275:2 7290:1 7360:1 7420:1 7430:1 7437:1 7466:1 7477:1 7479:2 7496:1 7505:1 7531:1 7548:18 7549:1 7555:1 7567:4 7568:13 7578:1 7579:1 7586:1 7588:1 7616:3 7638:1 7653:1 7668:1 7672:1 7689:1 7746:4 7750:1 7786:1 7788:2 7805:1 7826:1 7862:1 7910:1 7921:1 7928:1 7936:1 7951:1 7977:1 7983:1 7998:1 8006:7 8026:1 8039:1 8049:1 8063:1 8092:1 8116:1 8127:2 8140:1 8154:1 8170:3 8176:1 8194:2 8199:2 8231:1 8233:1 8241:1 8251:1 8260:1 8269:1 8277:1 8294:1 8319:3 8336:1 8345:1 8357:2 8358:1 8359:2 8360:1 8361:2 8362:2 8370:1 8373:2 8381:1 8396:1 8402:1 8412:1 8420:1 8421:1 8428:1 8440:1 8455:2 8475:2 8496:1 8517:2 8526:1 8528:1 8531:1 8550:1 8583:2 8595:1 8596:1 8603:1 8609:1 8616:1 8617:1 8621:1 8637:1 8667:1 8668:1 8675:1 8678:1 8680:3 8706:1 8707:1 8711:3 8725:1 8743:1 8813:1 8827:1 8853:1 8854:1 8863:1 8880:1 8882:1 8903:1 8991:1 8995:1 9015:1 9039:1 9042:1 9055:1 9071:1 9078:1 9088:1 9091:1 9124:1 9240:1 9243:1 9253:1 9263:1 9264:2 9278:1 9292:1 9294:1 9322:1 9325:1 9328:1 9375:9 9383:1 9408:1 9420:3 9428:2 9437:1 9448:1 9467:2 9484:1 9511:9 9529:1 9569:1 9586:3 9603:1 9655:2 9656:1 9690:2 9696:1 9697:1 9698:1 9706:1 9717:1 9730:1 9744:1 9748:2 9780:2 9785:1 9795:1 9797:1 9817:1 9830:1 9853:1 9855:1 9873:5 9876:3 9883:1 9885:1 9971:2 9976:1 10018:1 10023:1 10035:3 10137:1 10149:3 10159:1 10181:1 10209:2 10230:1 10258:1 10278:1 10297:2 10311:2 10312:2 10314:1 10320:1 10328:1 10369:1 10374:1 10383:3 10396:1 10401:1 10405:1 10413:4 10464:1 10475:1 10495:1 10498:1 10499:1 10503:1 10510:1 10524:2 10534:1 10588:1 10604:1 10620:1 10621:1 10635:1 10649:2 10650:3 10666:1 10702:1 10727:2 10747:1 10767:2 10779:2 10811:1 10841:1 10843:2 10892:1 10905:1 10926:1 10931:1 10941:1 10961:1 10971:1 10996:2 11021:1 11039:2 11047:1 11054:1 11073:1 11081:1 11112:1 11116:1 11118:3 11120:1 11147:1 11169:1 11172:1 11180:1 11198:1 11218:1 11238:1 11242:1 11248:3 11278:2 11280:2 11315:1 11336:2 11348:1 11358:1 11359:1 11367:1 11370:1 11372:4 11373:1 11381:1 11383:4 11392:1 11399:1 11406:2 11422:1 11431:3 11435:1 11441:1 11455:1 11475:1 11476:1 11486:4 11498:1 11499:1 11530:1 11534:1 11544:3 11557:1 11575:1 11615:1 11616:1 11633:1 11683:1 11734:1 11749:1 11761:1 11764:1 11765:1 11766:1 11786:1 11787:1 11788:9 11797:4 11823:1 11837:2 11879:1 11930:1 11938:5 11939:2 11955:1 11958:1 12016:1 12019:1 12047:1 12058:1 12064:1 12069:1 12134:1 12148:1 12187:1 12189:1 12198:1 12203:1 12257:1 12323:6 12336:1 12345:1 12357:1 12369:2 12370:2 12394:1 12420:1 12451:1 12456:2 12524:1 12525:2 12566:1 12599:1 12652:1 12691:1 12692:2 12715:1 12744:1 12756:2 12768:1 12771:1 12776:1 12792:1 12798:1 12799:1 12829:1 12870:1 12872:1 12874:1 12882:1 12883:1 12884:3 12889:1 12891:1 12892:1 12900:1 12904:1 12915:1 12924:1 12954:3 12966:1 12980:1 12997:1 13019:2 13033:2 13034:1 13049:1 13065:1 13071:1 13084:1 13095:2 13114:1 13122:3 13131:1 13149:1 13178:1 13190:1 13201:2 13243:1 13249:1 13250:1 13251:2 13252:1 13254:1 13278:1 13301:1 13310:1 13314:1 13330:2 13334:1 13352:1 13365:3 13371:1 13380:1 13411:1 13416:1 13434:1 13435:1 13439:1 13457:1 13461:1 13462:1 13467:2 13493:1 13510:1 13515:1 13518:1 13535:2 13536:4 13543:1 13560:1 13565:3 13578:1 13610:2 13612:1 13615:1 13616:1 13620:1 13679:1 13735:2 13750:1 13782:1 13795:1 13855:1 13908:1 13924:3 13926:1 13927:1 13935:1 13951:1 13970:1 13985:1 13989:1 14009:1 14035:1 14051:1 14087:1 14099:1 14106:1 14126:1 14142:1 14158:1 14183:1 14227:1 14271:1 14370:1 14378:1 14401:2 14437:1 14443:2 14445:1 14447:1 14496:1 14505:1 14545:2 14566:1 14592:1 14624:1 14633:1 14665:1 14678:1 14760:2 14761:1 14766:1 14792:1 14793:1 14796:1 14826:1 14828:1 14832:1 14887:3 14898:2 14978:1 14992:1 15009:1 15021:1 15033:2 15058:3 15063:2 15067:1 15099:1 15118:2 15134:1 15165:1 15190:2 15194:1 15201:3 15210:1 15222:1 15239:1 15243:1 15244:3 15245:1 15250:1 15254:1 15264:1 15269:2 15337:1 15347:1 15356:1 15361:2 15366:3 15401:1 15425:1 15442:1 15461:1 15472:1 15478:1 15502:3 15513:2 15529:1 15540:1 15566:9 15587:1 15596:1 15599:1 15620:2 15637:24 15665:2 15697:1 15731:1 15734:1 15763:1 15773:1 15774:1 15776:1 15780:2 15810:1 15812:1 15815:1 15831:1 15832:1 15855:1 15876:1 15896:1 15902:3 15934:2 15953:1 15969:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16108:1 16146:1 16151:1 16168:2 16215:1 16217:2 16228:1 16230:1 16249:1 16255:7 16289:1 16300:1 16338:1 16343:1 16365:1 16366:1 16369:3 16373:1 16378:1 16380:1 16395:1 16416:1 16426:1 16427:1 16453:1 16492:1 16558:1 16569:2 16608:1 16617:1 16623:1 16630:1 16646:1 16649:1 16652:1 16654:2 16666:1 16676:1 16683:3 16690:1 16721:1 16726:1 16744:1 16766:1 16771:1 16796:3 16876:1 16877:1 16896:3 16904:1 16911:1 16915:2 16920:1 16921:1 16936:1 16940:1 16954:1 16964:1 16990:1 17018:1 17019:1 17077:1 17103:2 17117:1 17128:1 17130:1 17196:2 17199:1 17220:5 17248:1 17275:1 17294:1 17311:1 17317:1 17334:1 17341:1 17363:1 17369:1 17392:1 17396:2 17404:3 17479:1 17529:2 17531:1 17568:1 17578:1 17595:1 17599:1 17609:2 17616:1 17640:1 17661:1 17666:1 17667:1 17714:1 17723:1 17754:2 17774:1 17779:1 17782:1 17785:3 17805:1 17806:1 17821:1 17874:1 17912:5 17949:1 17970:1 17984:1 17998:1 18010:1 18027:1 18031:3 18052:2 18065:1 18095:1 18101:1648 18118:1 18123:1 18163:1 18178:3 18215:2 18234:2 18245:1 18262:1 18271:1 18272:1 18298:3 18311:3 18314:1 18315:1 18362:1 18410:3 18439:1 18462:2 18472:1 18491:1 18505:1 18512:1 18514:1 18557:1 18569:1 18584:4 18669:1 18677:1 18786:1 18799:1 18801:1 18804:1 18813:1 18825:2 18829:1 18830:2 18834:1 18859:6 18881:1 18883:6 18910:1 18911:1 18947:1 18950:1 18972:1 18976:1 18978:1 18980:1 18987:1 18997:1 19005:1 19028:1 19034:1 19055:1 19067:1 19099:1 19106:1 19148:1 19187:1 19206:1 19209:7 19220:1 19231:2 19253:1 19299:1 19307:3 19329:1 19347:1 19360:1 19391:1 19394:1 19401:1 19402:1 19409:1 19459:4 19464:1 19470:1 19472:1 19488:2 19514:1 19525:1 19543:1 19545:1 19565:1 19569:1 19591:5 19638:1 19663:7 19677:2 19679:1 19694:1 19695:1 19707:8 19724:1 19747:1 19756:1 19774:1 19818:1 19833:2 19865:1 19900:1 19910:1 19918:1 19945:2 19957:1 19968:1 19979:1 20022:1 20024:1 20086:1 20099:1 20117:1 20148:1 20169:1 20210:3 20245:8 20257:3 20260:1 20261:1 20289:1 20299:1 20322:1 20375:2 20378:1 20401:1 20402:1 20422:3 20429:1 20432:2 20496:1 20502:1 20524:1 20528:1 20561:1 20569:1 20620:1 20628:1 20672:1 20679:1 20718:2 20720:2 20723:1 20733:1 20745:1 20773:1 20782:1 20798:1 20822:1 20828:1 20838:1 20840:2 20843:1 20870:1 20888:1 20927:2 20941:1 20951:1 20952:1 20973:1 20976:5 20978:1 20992:1 21019:1 21037:1 21053:1 21080:1 21086:1 21096:2 21108:1 21140:1 21142:2 21150:2 21156:2 21161:1 21231:1 21237:1 21239:5 21245:1 21252:1 21266:1 21267:1 21272:1 21279:1 21282:2 21291:1 21306:1 21334:1 21379:3 21380:1 21403:1 21412:1 21423:2 21425:1 21435:1 21439:1 21446:1 21464:1 21474:1 21515:9 21518:1 21537:1 21548:1 21556:1 21575:1 21583:1 21594:2 21613:1 21620:1 21621:1 21628:2 21642:1 21648:4 21664:2 21668:3 21679:2 21704:1 21715:1 21718:1 21732:1 21745:2 21753:1 21754:1 21769:1 21781:2 21794:3 21807:1 21819:1 21828:2 21941:3 21949:1 22021:1 22038:1 22042:1 22049:9 22051:2 22082:1 22099:1 22130:1 22133:2 22165:1 22188:5 22192:1 22223:1 22241:1 22264:2 22284:1 22295:1 22329:1 22346:1 22348:1 22355:1 22414:1 22423:1 22425:3 22431:1 22432:1 22448:1 22452:1 22453:1 22466:1 22481:2 22496:1 22530:1 22534:2 22548:1 22551:1 22556:1 22564:2 22568:2 22571:1 22572:1 22607:1 22619:1 22627:1 22628:1 22646:3 22667:1 22670:1 22677:2 22681:1 22699:1 22706:1 22707:1 22748:2 22757:9 22847:1 22849:1 22856:1 22916:1 22924:1 22937:1 22951:1 22986:1 23000:1 23024:2 23059:1 23062:1 23077:1 23104:2 23126:1 23177:1 23192:1 23207:3 23215:2 23224:1 23228:1 23284:1 23306:1 23313:1 23362:1 23397:2 23405:1 23413:1 23492:1 23520:1 23568:5 23633:1 23646:1 23656:1 23665:1 23666:2 23668:1 23689:1 23697:1 23704:1 23707:2 23716:1 23722:1 23753:1 23766:1 23780:1 23788:1 23791:1 23802:1 23808:1 23841:1 23844:1 23867:3 23870:1 23879:1 23883:1 23885:1 23899:1 23921:1 23937:1 23971:1 24003:1 24006:1 24020:1 24036:1 24050:1 24057:1 24059:1 24083:1 24086:1 24144:2 24155:1 24179:1 24208:1 24214:1 24224:1 24230:1 24234:1 24242:3 24269:2 24290:1 24325:1 24360:1 24404:2 24406:1 24417:1 24420:1 24434:1 24473:2 24476:3 24478:1 24488:1 24540:1 24567:1 24572:1 24637:1 24644:2 24647:2 24653:1 24678:1 24692:1 24697:2 24718:1 24728:1 24730:2 24740:2 24751:2 24760:3 24761:1 24772:1 24784:1 24789:1 24797:1 24817:2 24838:1 24841:3 24843:1 24847:1 24873:2 24897:1 24942:3 24967:1 24969:2 24990:1 24999:1 25056:1 25071:1 25092:3 25109:1 25117:1 25131:1 25138:2 25140:1 25157:1 25160:1 25175:1 25191:1 25194:1 25217:1 25230:1 25235:1 25256:3 25261:1 25277:1 25289:1 25323:1 25326:1 25332:1 25348:1 25387:1 25410:5 25414:1 25451:1 25478:1 25525:1 25549:1 25569:1 25571:1 25586:1 25681:4 25683:2 25696:2 25698:1 25699:4 25700:2 25742:2 25751:2 25773:1 25787:1 25793:2 25805:1 25826:2 25844:1 25861:1 25879:1 25910:1 25957:1 26023:1 26032:1 26067:1 26075:1 26151:1 26158:1 26216:1 26218:1 26285:2 26289:1 26301:1 26303:4 26331:1 26397:9 26398:1 26400:3 26401:1 26430:1 26503:1 26509:1 26510:1 26548:1 26557:1 26559:1 26563:1 26569:1 26576:1 26581:1 26612:1 26624:1 26641:1 26651:1 26664:1 26715:1 26765:1 26792:1 26794:1 26829:2 26843:1 26869:3 26889:1 26894:1 26919:1 26963:1 26986:1 26989:1 26993:1 27017:1 27025:1 27035:1 27038:1 27071:1 27080:1 27111:1 27145:1 27217:1 27228:3 27231:1 27248:1 27271:1 27279:2 27280:14 27281:2 27283:1 27287:1 27289:1 27300:1 27315:1 27316:7 27326:1 27337:1 27364:1 27368:1 27373:1 27394:1 27401:1 27405:2 27414:1 27452:1 27465:1 27492:1 27495:1 27519:1 27549:1 27558:2 27561:1 27591:1 27633:2 27636:1 27638:4 27641:1 27666:1 27676:1 27692:1 27705:2 27745:1 27749:1 27773:1 27775:1 27828:1 27834:1 27864:1 27914:3 27926:1 27963:2 27968:1 27971:1 27977:1 27994:2 28026:1 28046:1 28053:1 28106:1 28138:3 28169:2 28172:1 28210:1 28222:1 28229:2 28283:1 28292:2 28297:1 28300:1 28314:1 28336:1 28343:3 28344:1 28352:1 28364:1 28420:1 28430:4 28437:1 28496:1 28507:1 28509:1 28511:2 28523:1 28560:1 28566:1 28575:1 28576:1 28618:1 16 26:1 27:1 69:1 83:4 106:1 137:1 147:1 162:1 165:1 201:1 213:1 235:4 283:1 286:1 296:2 327:1 336:1 337:2 338:1 364:1 407:2 442:1 445:1 460:1 489:2 504:1 507:1 509:1 523:1 526:1 552:1 617:1 627:3 648:2 654:1 661:4 665:1 671:1 676:1 699:1 707:1 713:1 724:1 735:1 757:2 768:1 803:1 813:1 856:1 872:1 915:1 934:1 939:1 941:1 942:1 943:2 966:1 978:1 985:2 987:1 1015:2 1020:1 1062:1 1081:1 1086:1 1116:1 1125:1 1171:3 1175:1 1192:2 1200:1 1201:2 1217:1 1227:1 1239:3 1259:1 1269:1 1275:1 1289:2 1290:1 1302:1 1306:1 1335:1 1346:1 1375:1 1413:1 1415:2 1438:2 1484:1 1501:2 1513:1 1521:1 1525:2 1541:1 1544:1 1569:1 1572:2 1583:1 1591:1 1594:1 1596:1 1601:2 1621:1 1628:1 1632:1 1637:1 1640:2 1654:1 1672:1 1675:2 1683:1 1722:1 1731:1 1743:1 1745:1 1747:1 1751:1 1758:2 1784:1 1789:1 1790:1 1809:1 1820:1 1824:1 1825:1 1831:1 1853:1 1860:1 1877:1 1882:1 1883:1 1884:1 1895:1 1903:1 1904:4 1914:1 1921:1 1929:1 1950:1 1986:1 2006:1 2015:2 2022:1 2023:3 2054:1 2074:1 2076:2 2101:1 2108:1 2164:1 2174:1 2230:2 2232:3 2237:1 2238:1 2240:1 2241:1 2244:3 2246:1 2248:1 2251:1 2256:4 2259:1 2260:3 2272:1 2273:1 2290:1 2327:1 2336:1 2354:1 2359:1 2361:1 2413:1 2437:1 2448:1 2488:1 2495:1 2556:1 2582:1 2595:4 2602:1 2607:1 2630:1 2633:1 2635:1 2637:4 2651:1 2662:1 2670:1 2674:1 2689:1 2721:1 2731:2 2738:1 2741:3 2755:1 2792:4 2818:5 2828:6 2885:16 2899:1 2903:1 2907:1 2918:1 2986:2 2989:1 3037:2 3062:1 3107:1 3117:1 3129:2 3133:4 3151:4 3153:2 3173:1 3219:3 3254:1 3283:1 3330:1 3340:1 3348:1 3361:3 3373:1 3388:1 3417:1 3427:1 3441:1 3442:1 3453:2 3505:1 3511:1 3512:1 3519:1 3550:1 3569:1 3588:1 3603:1 3606:1 3625:1 3651:1 3652:20 3677:2 3679:3 3687:1 3688:10 3689:1 3691:3 3697:1 3706:3 3718:1 3721:2 3724:2 3725:1 3740:2 3742:1 3743:1 3777:3 3783:1 3788:1 3808:1 3813:1 3815:1 3816:1 3826:2 3838:2 3844:1 3853:1 3891:1 3900:1 3904:1 3911:1 3915:1 3920:1 3925:1 3939:1 3953:1 4056:1 4106:1 4109:1 4110:1 4153:1 4156:1 4234:5 4250:1 4277:1 4302:1 4313:1 4325:2 4335:1 4347:2 4372:1 4380:1 4386:1 4393:1 4448:1 4449:2 4489:1 4519:1 4522:1 4533:1 4543:1 4653:1 4654:1 4660:2 4693:1 4701:1 4782:1 4792:10 4793:1 4824:1 4848:1 4870:1 4893:1 4903:1 4905:1 4926:1 4927:4 4928:1 4930:1 4939:1 4940:11 4941:1 4943:1 4948:1 4975:1 5045:1 5144:2 5145:3 5152:5 5181:1 5195:1 5213:1 5214:11 5242:1 5280:1 5317:1 5319:1 5359:1 5361:1 5370:1 5386:1 5390:1 5392:1 5447:1 5448:1 5465:1 5474:1 5479:1 5489:1 5523:1 5525:1 5562:1 5565:2 5588:1 5595:1 5618:1 5620:1 5624:1 5631:1 5659:1 5660:1 5662:1 5683:1 5703:1 5707:1 5731:1 5766:2 5791:1 5794:2 5796:1 5803:1 5860:1 5932:3 5945:1 5971:1 5976:1 6003:1 6042:1 6047:1 6057:1 6079:1 6086:1 6087:2 6088:1 6126:1 6127:2 6151:3 6153:1 6165:1 6168:1 6181:1 6184:1 6242:1 6244:1 6247:1 6250:1 6251:1 6254:1 6256:2 6262:1 6264:2 6265:1 6267:1 6275:1 6298:1 6358:1 6398:1 6410:2 6413:1 6424:1 6450:1 6454:1 6507:1 6513:2 6523:1 6533:5 6535:1 6539:2 6547:1 6557:1 6566:2 6582:1 6598:2 6604:1 6615:1 6657:1 6679:1 6685:2 6687:1 6695:2 6699:1 6704:1 6711:2 6731:1 6780:1 6783:1 6789:1 6799:2 6803:1 6819:1 6857:1 6860:1 6896:1 6909:1 6970:1 6996:1 7000:5 7010:2 7027:1 7036:1 7049:1 7180:1 7204:1 7221:3 7267:1 7269:1 7275:2 7290:1 7360:1 7420:1 7430:1 7437:1 7466:1 7477:1 7479:2 7496:1 7505:1 7531:1 7544:1 7548:18 7549:1 7555:1 7567:4 7568:13 7578:1 7579:1 7586:1 7588:1 7616:3 7638:1 7653:1 7668:1 7672:1 7689:1 7746:4 7750:1 7786:1 7788:2 7805:1 7826:1 7862:1 7910:1 7921:1 7928:2 7936:1 7951:1 7977:1 7983:1 7998:1 8006:7 8026:1 8039:1 8049:1 8063:1 8092:1 8098:1 8116:1 8127:2 8140:1 8154:1 8170:3 8176:1 8194:2 8199:2 8215:1 8220:1 8231:1 8233:1 8241:1 8251:1 8260:1 8269:1 8277:1 8294:1 8319:3 8336:1 8345:1 8357:2 8358:1 8359:2 8360:1 8361:2 8362:2 8370:1 8373:2 8375:1 8381:1 8396:1 8402:1 8412:1 8420:1 8421:1 8428:1 8440:1 8450:1 8455:2 8475:2 8496:1 8517:3 8526:1 8528:1 8531:1 8550:1 8583:2 8595:1 8596:1 8603:1 8609:1 8616:2 8617:1 8621:1 8637:1 8667:1 8668:1 8675:1 8678:1 8680:3 8706:1 8707:1 8711:3 8725:1 8743:1 8813:1 8827:1 8853:1 8854:1 8863:1 8880:1 8882:1 8903:1 8991:1 8995:1 9015:2 9039:1 9042:1 9055:1 9071:1 9078:1 9088:1 9091:1 9124:1 9240:1 9243:1 9252:1 9253:1 9263:1 9264:2 9278:1 9292:1 9294:1 9322:1 9325:1 9328:1 9375:11 9383:1 9408:1 9420:3 9428:2 9437:1 9448:1 9467:2 9484:1 9511:9 9529:1 9569:1 9580:1 9586:3 9603:1 9655:2 9656:1 9690:2 9696:1 9697:1 9698:1 9706:1 9717:1 9730:1 9744:1 9748:3 9751:1 9754:1 9780:2 9785:1 9795:1 9797:1 9817:1 9830:1 9853:1 9855:1 9873:6 9876:3 9883:1 9885:1 9971:2 9976:1 10018:1 10023:1 10035:3 10137:1 10149:3 10155:1 10159:1 10181:1 10209:2 10230:1 10258:1 10278:1 10297:2 10311:2 10312:2 10314:1 10320:1 10328:1 10369:1 10374:1 10383:3 10396:1 10401:1 10405:1 10413:4 10464:1 10475:1 10495:1 10498:1 10499:1 10503:1 10510:1 10524:2 10534:1 10588:1 10604:1 10620:1 10621:1 10635:2 10649:2 10650:3 10666:1 10702:1 10727:2 10742:1 10747:1 10767:2 10779:2 10811:1 10841:1 10843:2 10860:1 10892:1 10905:1 10926:1 10931:1 10941:1 10961:1 10971:1 10996:2 11021:1 11039:2 11047:1 11054:1 11073:1 11081:1 11112:1 11116:1 11118:3 11120:1 11147:1 11169:1 11172:1 11180:1 11198:1 11218:1 11238:1 11242:1 11248:3 11278:2 11280:2 11315:1 11336:2 11348:1 11358:1 11359:1 11367:1 11370:1 11372:4 11373:1 11381:1 11383:4 11392:1 11399:1 11406:2 11422:1 11431:3 11435:1 11441:1 11455:1 11475:1 11476:1 11486:4 11498:1 11499:1 11530:1 11534:1 11544:3 11557:1 11575:1 11615:1 11616:1 11633:1 11683:1 11734:1 11749:1 11761:1 11764:1 11765:1 11766:1 11786:1 11787:1 11788:11 11797:4 11823:1 11837:2 11879:1 11930:1 11938:5 11939:2 11955:1 11958:1 12016:1 12019:1 12047:1 12058:1 12064:1 12069:1 12134:1 12148:1 12187:1 12189:1 12198:1 12203:1 12257:1 12323:6 12336:1 12345:1 12357:1 12369:2 12370:2 12394:1 12420:1 12451:1 12456:2 12524:1 12525:2 12566:1 12599:1 12652:1 12691:1 12692:2 12715:1 12744:1 12756:2 12768:1 12771:1 12776:1 12792:1 12798:1 12799:1 12829:1 12870:1 12872:1 12874:1 12882:1 12883:1 12884:3 12889:1 12891:1 12892:1 12900:1 12904:2 12915:1 12924:1 12954:3 12966:1 12980:1 12997:1 13019:2 13033:2 13034:1 13049:1 13053:1 13065:1 13071:1 13084:1 13095:2 13114:1 13122:3 13131:1 13149:1 13160:1 13178:1 13190:1 13201:2 13243:1 13249:1 13250:1 13251:2 13252:1 13254:1 13278:1 13301:1 13310:1 13314:1 13330:2 13334:1 13352:1 13365:3 13371:1 13380:1 13411:1 13416:1 13434:1 13435:1 13439:1 13457:1 13461:1 13462:1 13467:3 13493:1 13510:1 13515:1 13518:1 13535:2 13536:4 13543:1 13560:1 13565:3 13578:1 13610:2 13612:1 13615:1 13616:1 13620:1 13679:1 13735:2 13750:1 13782:1 13795:1 13855:1 13907:1 13908:1 13917:1 13924:3 13926:1 13927:1 13935:1 13951:1 13970:1 13985:1 13989:1 14009:1 14035:1 14051:1 14087:1 14099:1 14106:1 14126:1 14142:1 14158:1 14183:1 14227:1 14271:1 14370:1 14378:1 14401:2 14437:1 14443:2 14445:1 14447:1 14496:1 14505:1 14545:2 14566:1 14592:1 14624:1 14633:1 14665:1 14678:1 14760:2 14761:1 14766:1 14792:1 14793:1 14796:1 14826:1 14828:1 14832:1 14887:3 14898:2 14978:1 14992:1 15009:1 15020:1 15021:1 15033:2 15058:3 15063:2 15067:1 15099:1 15113:1 15118:2 15134:1 15165:1 15190:2 15194:1 15201:4 15210:1 15222:1 15239:1 15243:1 15244:3 15245:1 15250:1 15254:1 15255:1 15264:1 15269:4 15337:1 15347:1 15356:1 15361:2 15366:3 15401:1 15425:1 15442:1 15461:1 15472:1 15478:1 15502:3 15513:2 15529:1 15540:1 15566:11 15587:1 15596:1 15599:1 15620:2 15637:27 15665:2 15697:1 15731:1 15734:1 15763:1 15773:1 15774:1 15776:1 15780:2 15810:1 15812:1 15815:1 15831:1 15832:1 15855:1 15876:1 15896:1 15902:3 15934:2 15953:1 15969:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16108:1 16146:1 16151:1 16168:2 16215:1 16217:2 16228:1 16230:1 16249:1 16255:7 16289:1 16300:1 16338:1 16343:1 16365:1 16366:1 16369:3 16373:1 16378:1 16380:1 16395:1 16416:1 16426:1 16427:1 16453:1 16492:1 16558:1 16569:2 16608:1 16617:1 16623:1 16630:1 16646:1 16649:1 16652:1 16654:2 16666:1 16676:1 16683:3 16690:1 16721:1 16726:1 16744:1 16766:1 16771:1 16796:3 16876:1 16877:1 16896:3 16904:1 16911:1 16915:2 16920:1 16921:1 16936:1 16940:1 16954:1 16964:1 16990:1 17018:1 17019:1 17077:1 17103:2 17117:1 17128:1 17130:1 17196:2 17199:1 17220:5 17248:1 17275:1 17294:1 17311:1 17317:1 17334:1 17341:1 17363:1 17369:1 17392:1 17396:2 17404:3 17479:1 17529:2 17531:1 17568:1 17578:1 17595:1 17599:1 17609:2 17616:1 17640:1 17661:1 17666:1 17667:1 17714:1 17723:1 17754:2 17774:1 17779:1 17782:1 17785:3 17805:1 17806:1 17821:1 17874:1 17912:5 17949:1 17970:1 17984:1 17998:1 18010:1 18027:1 18031:3 18052:2 18065:2 18095:1 18101:1684 18118:1 18123:1 18163:1 18178:3 18215:2 18234:2 18245:1 18262:1 18271:1 18272:1 18298:3 18311:3 18314:1 18315:1 18362:1 18410:3 18439:1 18462:2 18472:1 18491:1 18505:1 18512:1 18514:1 18557:1 18569:1 18572:1 18584:4 18669:1 18677:1 18761:1 18786:1 18799:1 18801:1 18804:1 18813:1 18825:2 18829:1 18830:3 18834:1 18847:1 18859:6 18881:1 18883:6 18910:1 18911:1 18947:1 18950:1 18972:1 18976:1 18978:1 18980:1 18987:1 18997:1 19005:1 19028:1 19034:1 19055:1 19067:1 19099:1 19106:1 19148:1 19187:1 19206:1 19209:7 19220:1 19231:2 19253:1 19291:1 19299:1 19307:3 19329:1 19347:1 19360:1 19383:1 19391:1 19394:1 19401:1 19402:1 19409:1 19459:4 19464:1 19470:1 19472:1 19488:2 19514:1 19525:1 19543:1 19545:1 19565:1 19569:1 19591:5 19638:1 19663:7 19677:2 19679:1 19694:1 19695:1 19707:8 19724:1 19747:1 19756:1 19774:1 19818:1 19833:2 19865:1 19900:1 19910:1 19918:1 19945:2 19957:1 19968:1 19979:1 20022:1 20024:1 20086:1 20099:1 20117:1 20148:1 20169:1 20210:3 20245:8 20257:3 20260:1 20261:1 20285:1 20289:1 20299:1 20322:1 20375:2 20378:1 20401:1 20402:1 20422:3 20429:1 20432:2 20496:1 20502:1 20524:1 20528:1 20561:1 20569:1 20572:1 20620:1 20628:1 20672:1 20679:1 20718:4 20720:2 20723:1 20733:1 20745:1 20773:1 20782:1 20798:1 20809:1 20810:1 20822:1 20827:1 20828:1 20838:1 20840:2 20843:1 20870:1 20888:1 20927:2 20941:1 20951:1 20952:1 20973:1 20976:5 20978:1 20992:1 21019:1 21037:1 21053:1 21080:1 21086:1 21096:2 21108:1 21140:1 21142:4 21150:2 21156:2 21161:1 21231:1 21237:1 21239:5 21245:1 21252:1 21266:1 21267:1 21272:1 21279:1 21282:2 21291:1 21306:1 21334:1 21379:3 21380:1 21403:1 21412:1 21423:2 21425:1 21435:1 21439:1 21446:1 21464:1 21474:1 21515:11 21518:1 21537:1 21548:1 21556:1 21575:1 21583:1 21594:2 21613:1 21620:1 21621:1 21628:2 21642:1 21648:4 21664:2 21668:3 21679:2 21704:1 21715:1 21718:1 21732:1 21743:1 21745:2 21753:1 21754:1 21769:1 21781:2 21794:3 21807:1 21819:1 21828:2 21941:3 21949:1 22021:1 22038:1 22042:1 22049:9 22051:2 22082:1 22099:1 22130:1 22133:2 22165:1 22188:5 22192:1 22223:1 22241:1 22264:2 22284:1 22295:1 22329:1 22346:1 22348:1 22355:1 22414:1 22423:1 22425:3 22431:1 22432:1 22448:1 22452:1 22453:1 22466:1 22481:2 22496:1 22530:1 22534:2 22548:1 22551:1 22556:1 22564:2 22568:2 22571:1 22572:1 22607:1 22619:1 22627:1 22628:1 22646:3 22667:1 22670:1 22677:2 22681:1 22699:1 22706:1 22707:1 22748:2 22757:10 22847:1 22849:1 22856:1 22916:1 22924:1 22937:1 22951:1 22986:1 23000:1 23024:2 23059:1 23062:1 23077:1 23104:2 23126:1 23177:1 23192:1 23207:3 23215:2 23224:1 23228:1 23284:1 23306:1 23313:1 23362:1 23396:1 23397:2 23405:1 23413:1 23492:1 23520:1 23568:5 23633:1 23646:1 23656:1 23665:1 23666:2 23668:1 23689:1 23697:1 23704:1 23707:2 23716:1 23722:1 23753:1 23766:1 23780:1 23788:1 23791:1 23802:1 23808:1 23841:1 23844:1 23867:3 23870:1 23879:1 23883:1 23885:1 23899:1 23921:1 23937:1 23954:1 23971:1 24003:1 24006:1 24020:1 24036:1 24050:1 24057:1 24059:1 24083:1 24086:1 24144:2 24155:1 24179:1 24208:1 24214:1 24224:1 24230:1 24234:1 24242:3 24269:2 24290:1 24325:1 24360:1 24404:2 24406:1 24417:1 24420:1 24434:1 24473:2 24476:3 24478:1 24488:1 24540:1 24567:1 24572:1 24637:1 24644:3 24647:2 24653:1 24678:1 24692:1 24697:2 24718:1 24728:1 24730:2 24740:2 24751:2 24760:3 24761:1 24772:1 24784:1 24789:1 24797:1 24817:2 24838:1 24841:3 24843:1 24847:1 24855:1 24873:2 24897:1 24915:1 24942:3 24967:1 24969:2 24990:1 24999:1 25056:1 25071:1 25092:3 25109:1 25117:1 25131:1 25138:2 25140:1 25157:1 25160:1 25175:1 25191:1 25194:1 25217:1 25230:1 25235:1 25256:3 25261:1 25277:1 25289:1 25323:2 25326:1 25332:1 25348:1 25387:1 25410:5 25414:1 25451:1 25478:1 25525:1 25549:1 25569:1 25571:1 25586:1 25681:4 25683:2 25696:2 25698:1 25699:4 25700:2 25742:2 25751:2 25773:1 25787:1 25793:2 25805:1 25826:2 25844:1 25861:1 25879:1 25910:1 25957:1 26023:1 26032:1 26067:1 26075:1 26151:1 26158:1 26216:1 26218:1 26272:1 26285:2 26289:1 26301:1 26303:4 26331:1 26397:10 26398:1 26400:3 26401:1 26430:1 26503:1 26509:1 26510:1 26548:1 26557:1 26559:1 26563:1 26569:1 26576:1 26581:1 26612:1 26624:1 26641:1 26651:1 26664:2 26715:1 26765:1 26792:1 26794:1 26829:2 26843:1 26869:3 26889:1 26894:1 26919:1 26963:1 26986:1 26989:1 26993:1 27017:1 27025:1 27035:1 27038:1 27071:1 27080:1 27111:1 27145:1 27216:1 27217:1 27228:3 27231:1 27248:1 27271:1 27279:2 27280:15 27281:2 27283:1 27287:1 27289:1 27300:1 27315:1 27316:7 27326:1 27337:1 27364:1 27368:1 27373:1 27394:1 27401:1 27405:2 27414:1 27452:1 27465:1 27492:1 27495:1 27519:1 27549:1 27558:2 27561:1 27591:1 27633:2 27636:1 27638:4 27641:1 27666:1 27676:1 27692:1 27705:2 27745:1 27749:1 27772:1 27773:2 27775:1 27828:1 27834:1 27864:1 27914:3 27926:1 27963:2 27968:1 27971:1 27977:1 27994:2 28026:1 28046:1 28053:1 28081:1 28106:1 28138:3 28169:2 28172:1 28210:1 28222:1 28229:2 28283:1 28292:2 28297:1 28300:1 28314:1 28336:1 28343:3 28344:1 28352:1 28364:1 28420:1 28430:4 28437:1 28496:1 28507:1 28509:1 28511:2 28523:1 28560:1 28566:1 28575:1 28576:1 28579:1 28618:1 16 26:1 27:1 69:1 83:4 106:1 137:1 147:1 162:1 165:1 201:1 213:1 235:4 283:1 286:1 296:2 327:1 336:1 337:2 338:1 364:1 407:2 442:2 445:1 449:1 460:1 489:2 504:1 507:1 509:1 523:1 526:1 552:1 553:1 617:1 627:3 648:2 654:1 661:4 665:1 671:1 676:1 699:1 707:1 713:1 724:1 735:1 757:2 768:1 803:1 813:1 856:1 872:1 915:1 934:1 939:1 941:1 942:1 943:2 966:1 978:1 985:2 987:1 1015:2 1020:1 1062:1 1081:1 1086:1 1116:1 1125:1 1171:3 1175:1 1192:2 1200:1 1201:2 1217:1 1227:1 1239:3 1259:1 1263:1 1269:1 1275:1 1289:2 1290:2 1302:1 1306:1 1335:1 1346:1 1375:1 1413:1 1415:2 1438:2 1446:1 1484:1 1501:2 1513:1 1521:1 1525:2 1541:1 1544:1 1569:1 1572:2 1583:1 1591:1 1594:1 1596:1 1601:2 1621:1 1628:1 1632:1 1637:1 1640:2 1654:1 1672:1 1675:3 1683:1 1722:1 1731:1 1743:1 1745:1 1747:1 1751:1 1758:2 1784:1 1789:1 1790:1 1809:1 1810:1 1820:1 1824:1 1825:1 1831:1 1853:1 1860:1 1877:1 1882:1 1883:1 1884:1 1895:1 1903:1 1904:4 1914:1 1921:1 1929:1 1950:1 1986:1 2006:1 2015:2 2022:1 2023:3 2054:1 2074:1 2076:2 2101:1 2108:1 2164:1 2174:1 2230:2 2232:3 2237:1 2238:1 2240:1 2241:1 2244:3 2246:1 2248:1 2251:1 2256:4 2259:1 2260:3 2272:1 2273:1 2290:1 2327:1 2336:1 2354:1 2359:1 2361:1 2413:1 2437:1 2448:1 2488:1 2495:1 2556:1 2582:1 2595:4 2602:1 2607:1 2630:1 2633:1 2635:1 2637:4 2651:1 2662:1 2670:1 2674:1 2684:1 2689:1 2721:1 2731:2 2738:1 2741:3 2755:1 2792:4 2818:5 2828:6 2885:16 2899:1 2903:1 2907:1 2918:1 2986:2 2989:1 3037:2 3062:1 3107:1 3117:1 3129:2 3133:4 3151:5 3153:2 3173:1 3219:3 3254:1 3283:1 3330:1 3340:1 3348:1 3361:3 3369:1 3373:1 3388:1 3417:1 3427:1 3441:1 3442:1 3453:3 3505:1 3511:1 3512:1 3519:1 3550:1 3569:1 3588:1 3603:1 3606:2 3625:1 3643:1 3651:1 3652:20 3677:2 3679:4 3687:2 3688:10 3689:1 3691:3 3697:1 3706:3 3718:1 3721:2 3724:2 3725:1 3740:2 3742:1 3743:1 3777:3 3783:1 3788:1 3808:1 3813:1 3815:1 3816:1 3826:2 3838:2 3844:1 3853:1 3891:1 3900:1 3904:1 3911:1 3915:1 3920:1 3925:1 3939:1 3953:1 4056:1 4101:1 4106:1 4109:1 4110:1 4143:1 4153:1 4156:1 4169:1 4234:6 4250:1 4277:1 4302:1 4313:1 4325:2 4335:1 4347:2 4372:1 4380:1 4386:1 4393:1 4448:1 4449:2 4489:1 4519:1 4522:2 4533:1 4543:1 4563:1 4653:1 4654:1 4660:2 4693:1 4701:1 4782:1 4792:10 4793:1 4824:1 4848:1 4870:1 4893:1 4902:1 4903:1 4905:1 4926:1 4927:4 4928:1 4930:1 4939:1 4940:11 4941:1 4943:1 4948:1 4975:1 5045:1 5144:2 5145:3 5152:5 5181:1 5195:1 5213:1 5214:11 5242:1 5280:1 5317:1 5319:1 5359:1 5361:1 5370:1 5379:1 5386:1 5390:1 5392:1 5447:1 5448:1 5465:1 5474:1 5479:1 5489:1 5523:1 5525:1 5562:1 5565:2 5588:2 5595:1 5618:1 5620:1 5624:1 5631:1 5659:1 5660:1 5662:1 5683:1 5703:1 5707:1 5731:1 5766:2 5791:1 5794:2 5796:1 5803:1 5860:1 5932:4 5945:1 5971:1 5976:1 6003:1 6042:1 6047:1 6057:1 6079:1 6086:1 6087:2 6088:1 6126:1 6127:2 6151:3 6153:1 6165:1 6168:1 6181:1 6184:1 6242:1 6244:1 6247:1 6250:1 6251:1 6254:1 6256:2 6262:1 6264:2 6265:1 6267:1 6275:1 6298:1 6358:1 6398:1 6410:2 6413:1 6424:1 6450:1 6454:1 6507:1 6513:2 6523:1 6533:5 6535:1 6539:2 6547:1 6557:1 6566:2 6582:1 6598:2 6604:1 6615:1 6657:1 6679:1 6685:2 6687:1 6695:2 6699:1 6704:1 6711:2 6731:1 6780:1 6783:1 6789:1 6799:2 6803:1 6819:1 6857:1 6860:1 6896:1 6909:1 6970:1 6996:1 7000:5 7010:2 7027:1 7036:1 7049:1 7180:1 7204:1 7221:3 7267:1 7269:1 7275:2 7290:1 7360:1 7420:1 7430:1 7437:1 7466:1 7477:1 7479:2 7496:1 7505:1 7531:1 7544:1 7548:18 7549:1 7555:1 7567:4 7568:13 7578:1 7579:1 7586:1 7588:1 7616:3 7638:1 7653:1 7668:1 7672:1 7689:1 7742:1 7746:4 7750:1 7786:1 7788:2 7805:1 7826:1 7862:1 7910:1 7921:1 7928:2 7936:1 7951:1 7977:1 7983:1 7998:1 8006:7 8026:1 8039:1 8049:1 8063:1 8092:1 8098:1 8116:1 8127:2 8140:1 8154:1 8167:1 8170:3 8176:1 8194:2 8199:2 8215:1 8220:1 8231:1 8233:1 8241:2 8251:1 8260:1 8263:1 8269:1 8277:1 8294:1 8308:1 8319:3 8336:1 8345:1 8357:2 8358:1 8359:2 8360:1 8361:2 8362:2 8370:1 8373:2 8375:1 8381:1 8396:1 8402:1 8412:1 8420:1 8421:1 8428:1 8440:1 8450:1 8455:2 8475:2 8496:1 8517:3 8526:1 8528:1 8531:1 8550:1 8583:2 8595:1 8596:1 8603:1 8609:1 8616:2 8617:1 8621:1 8637:1 8667:1 8668:2 8675:1 8678:1 8680:3 8687:1 8706:1 8707:1 8711:3 8725:1 8743:1 8813:1 8827:1 8853:1 8854:1 8863:1 8880:1 8882:1 8903:1 8962:1 8991:1 8995:1 9015:2 9039:1 9042:1 9055:1 9071:1 9078:1 9088:1 9091:1 9124:1 9240:1 9243:1 9246:1 9252:1 9253:1 9263:1 9264:2 9278:1 9292:1 9294:1 9322:1 9325:1 9328:1 9375:11 9383:1 9408:1 9420:3 9428:2 9437:1 9448:1 9467:2 9484:1 9511:9 9529:1 9569:1 9580:1 9586:3 9603:1 9655:2 9656:1 9690:3 9696:1 9697:1 9698:1 9706:1 9717:1 9730:1 9744:1 9748:3 9751:1 9754:1 9780:2 9785:1 9795:1 9797:2 9817:1 9830:1 9853:1 9855:1 9873:6 9876:3 9883:1 9885:1 9971:2 9976:1 10018:1 10023:1 10035:3 10137:1 10149:3 10155:1 10159:1 10181:1 10209:2 10230:1 10258:1 10278:1 10297:4 10311:2 10312:2 10314:1 10320:1 10328:1 10369:1 10374:1 10383:3 10396:1 10401:1 10405:1 10413:4 10464:1 10475:1 10495:1 10498:1 10499:1 10503:1 10510:1 10524:2 10534:1 10588:1 10604:1 10620:2 10621:1 10635:2 10649:2 10650:3 10666:1 10702:1 10727:2 10742:1 10747:1 10767:2 10779:2 10811:1 10841:1 10843:2 10860:1 10892:1 10905:1 10926:1 10931:1 10941:1 10961:1 10971:1 10996:2 11021:1 11039:2 11047:1 11054:1 11073:1 11081:1 11112:1 11116:1 11118:3 11120:1 11147:1 11169:1 11172:1 11180:1 11186:1 11198:1 11218:1 11232:1 11238:1 11242:1 11248:3 11261:1 11278:2 11280:2 11315:1 11336:2 11337:1 11348:1 11358:1 11359:1 11367:1 11370:1 11372:4 11373:1 11381:1 11383:4 11392:1 11399:1 11406:2 11422:2 11431:3 11435:1 11441:1 11455:1 11475:1 11476:1 11486:4 11498:1 11499:1 11530:1 11534:1 11544:3 11557:1 11575:1 11615:1 11616:1 11633:1 11683:1 11734:1 11749:1 11761:1 11764:1 11765:1 11766:1 11786:2 11787:2 11788:11 11797:4 11823:1 11837:2 11879:1 11930:1 11938:5 11939:2 11955:1 11958:1 12016:1 12019:1 12047:1 12058:1 12064:1 12069:1 12134:1 12148:1 12187:1 12189:1 12198:1 12203:1 12257:1 12323:6 12336:1 12341:1 12345:1 12357:1 12369:2 12370:2 12394:1 12420:1 12451:1 12456:2 12485:1 12524:1 12525:2 12566:1 12599:1 12652:1 12691:1 12692:2 12715:1 12744:1 12756:2 12768:1 12771:1 12776:1 12792:1 12798:1 12799:1 12829:1 12834:1 12835:1 12870:1 12872:1 12874:1 12882:1 12883:1 12884:3 12889:1 12891:1 12892:1 12900:1 12904:2 12915:1 12924:1 12928:1 12954:3 12966:1 12980:1 12997:1 13019:2 13033:2 13034:1 13049:1 13053:1 13065:1 13071:1 13084:1 13095:3 13114:1 13122:3 13131:1 13149:1 13160:1 13178:1 13190:1 13201:2 13243:1 13249:1 13250:1 13251:2 13252:1 13254:1 13278:1 13301:1 13310:1 13314:1 13318:1 13330:2 13334:1 13352:1 13365:4 13371:1 13380:1 13411:1 13416:1 13434:1 13435:1 13439:1 13457:1 13461:1 13462:1 13467:3 13493:1 13510:1 13515:1 13518:1 13530:1 13535:2 13536:4 13543:1 13560:1 13565:3 13578:1 13610:2 13612:1 13615:1 13616:1 13620:1 13679:1 13735:2 13750:1 13782:1 13795:1 13855:1 13907:1 13908:1 13917:1 13924:3 13926:1 13927:1 13935:1 13951:1 13970:1 13985:1 13989:1 14009:1 14035:1 14051:1 14087:1 14099:1 14106:1 14126:1 14142:1 14158:1 14183:1 14227:1 14271:1 14370:1 14378:1 14401:2 14437:2 14443:2 14445:1 14447:1 14450:1 14496:1 14505:1 14545:2 14566:1 14592:1 14624:1 14633:1 14665:1 14671:1 14678:1 14756:1 14760:2 14761:1 14766:1 14792:1 14793:1 14796:1 14826:1 14828:1 14832:1 14887:3 14898:2 14909:1 14978:1 14992:1 15009:1 15020:1 15021:1 15033:2 15058:3 15063:2 15067:1 15099:1 15113:1 15118:2 15134:1 15165:1 15190:2 15194:1 15201:4 15210:1 15222:1 15239:1 15243:1 15244:3 15245:1 15250:1 15254:1 15255:1 15264:2 15269:4 15337:1 15347:1 15356:1 15361:2 15366:3 15401:1 15425:1 15442:1 15461:1 15472:1 15478:1 15502:3 15513:2 15529:1 15540:1 15566:11 15587:1 15596:1 15599:1 15620:2 15637:28 15665:3 15697:1 15731:1 15734:1 15763:1 15773:1 15774:1 15776:1 15780:2 15810:1 15812:1 15815:1 15831:1 15832:1 15855:1 15876:1 15896:1 15902:3 15934:2 15953:1 15961:1 15969:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16108:1 16146:1 16151:1 16167:1 16168:2 16215:1 16217:2 16228:1 16230:1 16249:1 16255:7 16289:1 16300:1 16338:1 16343:1 16348:1 16365:1 16366:1 16369:3 16373:1 16375:1 16378:1 16380:1 16395:1 16416:1 16426:1 16427:1 16453:1 16492:1 16558:1 16569:2 16582:1 16588:1 16608:1 16617:1 16623:1 16630:1 16646:1 16649:1 16652:1 16654:2 16666:1 16676:1 16683:3 16690:1 16718:1 16721:1 16726:1 16744:1 16766:1 16771:1 16796:3 16876:1 16877:1 16896:3 16904:1 16911:1 16915:2 16920:1 16921:1 16936:1 16940:1 16954:1 16964:1 16990:1 17018:1 17019:1 17077:1 17103:2 17113:1 17117:1 17128:1 17130:1 17196:2 17199:1 17220:6 17248:1 17275:1 17294:1 17311:1 17317:1 17334:1 17341:1 17363:1 17369:1 17392:1 17396:2 17404:3 17479:1 17529:2 17531:1 17568:1 17578:1 17595:1 17599:2 17609:2 17616:1 17640:1 17661:1 17666:1 17667:2 17714:1 17723:1 17754:2 17774:1 17779:1 17782:1 17785:3 17805:1 17806:1 17821:1 17874:1 17912:5 17949:1 17968:1 17970:1 17984:1 17998:1 18010:1 18027:1 18031:3 18052:2 18065:2 18095:1 18101:1727 18118:1 18123:1 18163:1 18178:3 18215:2 18234:2 18245:1 18262:1 18271:1 18272:1 18298:3 18311:3 18314:1 18315:1 18362:1 18410:3 18439:1 18462:2 18472:1 18481:1 18491:1 18505:1 18512:1 18514:1 18557:1 18569:1 18572:1 18584:4 18669:1 18677:1 18679:1 18761:1 18786:1 18799:1 18801:1 18804:1 18813:1 18825:2 18829:1 18830:3 18834:1 18847:1 18859:6 18881:1 18883:7 18910:1 18911:1 18947:1 18950:1 18972:1 18976:1 18978:1 18980:1 18987:1 18997:1 19005:1 19028:1 19034:1 19055:1 19067:1 19099:1 19106:1 19148:1 19187:1 19206:1 19209:7 19220:1 19231:2 19253:1 19291:1 19299:1 19307:3 19329:1 19347:1 19360:1 19383:1 19391:1 19394:1 19401:1 19402:1 19409:1 19459:4 19464:1 19470:1 19472:1 19488:2 19514:1 19525:1 19543:1 19545:1 19565:1 19569:1 19591:5 19638:1 19663:7 19677:2 19679:1 19694:1 19695:1 19707:8 19724:1 19747:1 19756:1 19774:1 19818:1 19833:2 19865:1 19900:1 19910:1 19918:1 19945:2 19957:1 19968:1 19979:1 20022:1 20024:1 20086:1 20099:1 20117:1 20148:1 20169:1 20210:3 20245:8 20257:3 20260:1 20261:1 20285:1 20289:3 20299:1 20322:1 20364:1 20375:2 20378:1 20396:1 20401:1 20402:1 20422:4 20429:1 20432:2 20496:1 20502:1 20505:1 20524:1 20528:1 20561:1 20569:1 20572:1 20620:1 20628:1 20672:1 20679:1 20718:4 20720:2 20723:1 20733:1 20745:1 20773:1 20782:1 20798:1 20809:1 20810:1 20822:1 20827:1 20828:1 20838:1 20840:2 20843:1 20870:1 20888:1 20927:2 20941:1 20951:1 20952:1 20973:1 20976:6 20978:1 20992:1 21019:1 21037:1 21053:1 21080:1 21086:1 21096:2 21108:1 21140:1 21142:4 21150:2 21156:2 21161:1 21231:1 21237:1 21239:5 21245:1 21252:1 21266:1 21267:1 21272:1 21279:1 21282:2 21291:1 21306:1 21334:1 21379:3 21380:1 21403:1 21412:1 21423:2 21425:1 21435:1 21439:1 21446:1 21464:1 21474:1 21515:11 21516:1 21518:1 21537:1 21548:1 21556:1 21575:1 21583:1 21594:2 21613:1 21620:1 21621:1 21628:2 21642:2 21645:1 21648:4 21664:2 21668:3 21679:2 21704:1 21715:1 21718:1 21732:1 21743:1 21745:2 21753:1 21754:1 21769:1 21781:2 21794:3 21807:1 21819:1 21828:2 21941:3 21949:1 21989:1 22021:1 22038:1 22042:1 22049:9 22051:2 22082:1 22099:1 22130:1 22133:2 22165:1 22188:5 22192:1 22223:1 22241:1 22264:2 22284:1 22295:1 22329:1 22346:1 22348:1 22355:1 22414:1 22423:1 22425:3 22431:1 22432:1 22448:1 22452:1 22453:1 22466:1 22481:2 22496:1 22530:1 22534:2 22548:1 22551:1 22556:1 22564:2 22568:2 22571:1 22572:1 22607:1 22619:1 22627:1 22628:1 22646:3 22667:1 22670:1 22677:2 22681:1 22699:1 22706:1 22707:1 22748:2 22757:10 22847:1 22849:1 22856:1 22916:1 22924:1 22937:1 22951:1 22986:1 23000:1 23024:2 23059:1 23062:2 23077:1 23104:2 23126:1 23177:1 23192:1 23207:3 23215:2 23224:1 23228:1 23229:1 23284:1 23306:1 23313:1 23362:1 23396:1 23397:2 23405:1 23413:1 23421:1 23492:1 23520:1 23568:5 23633:1 23646:1 23656:1 23665:1 23666:2 23667:1 23668:1 23689:1 23697:1 23704:1 23707:2 23716:1 23722:1 23752:1 23753:1 23766:1 23780:1 23788:1 23791:1 23802:1 23808:1 23841:1 23844:1 23867:3 23870:1 23879:1 23883:1 23885:1 23899:1 23921:1 23937:1 23954:1 23971:1 23980:1 23982:1 24003:1 24006:1 24013:1 24020:1 24036:1 24050:1 24057:1 24059:1 24083:1 24086:1 24144:2 24155:1 24179:1 24208:1 24214:1 24224:1 24230:1 24234:1 24242:3 24269:2 24290:1 24325:1 24339:1 24360:1 24404:2 24406:1 24417:1 24420:1 24434:1 24473:2 24476:3 24478:1 24488:1 24540:1 24567:1 24572:1 24637:1 24644:3 24647:3 24653:1 24678:1 24692:1 24697:2 24718:1 24728:1 24730:2 24740:2 24751:2 24760:4 24761:1 24772:1 24784:1 24789:1 24797:1 24817:2 24838:1 24841:3 24843:1 24847:1 24855:1 24873:2 24897:1 24915:1 24942:3 24967:1 24969:2 24990:1 24999:1 25056:1 25071:1 25092:3 25109:1 25117:1 25131:1 25138:2 25140:1 25157:1 25160:2 25175:1 25191:1 25194:1 25217:1 25230:1 25235:1 25256:3 25261:1 25262:1 25277:1 25289:1 25323:2 25326:1 25332:1 25348:1 25387:1 25410:5 25414:1 25451:1 25478:1 25525:1 25537:1 25549:1 25569:1 25571:1 25586:1 25681:4 25683:2 25696:2 25698:1 25699:4 25700:2 25742:2 25751:2 25773:1 25787:1 25793:2 25805:1 25826:2 25844:1 25861:1 25879:1 25910:1 25957:1 26023:1 26032:1 26067:1 26075:1 26151:1 26158:1 26216:1 26218:1 26272:1 26285:2 26289:1 26301:1 26303:4 26331:1 26397:10 26398:1 26400:3 26401:1 26430:1 26503:1 26509:2 26510:1 26548:1 26555:1 26557:1 26559:1 26563:1 26569:1 26570:1 26576:1 26581:1 26612:2 26624:1 26641:1 26651:1 26664:2 26715:1 26765:1 26792:1 26794:1 26829:2 26843:1 26869:3 26889:1 26894:1 26919:1 26963:1 26986:1 26989:1 26993:1 27017:1 27025:1 27035:1 27038:1 27071:1 27080:1 27111:1 27145:1 27216:1 27217:1 27228:3 27231:1 27248:1 27271:1 27279:2 27280:15 27281:2 27283:1 27287:1 27289:1 27300:1 27315:1 27316:7 27326:1 27337:1 27364:1 27368:2 27373:1 27394:1 27401:1 27405:2 27414:1 27452:2 27465:1 27492:1 27495:1 27519:1 27549:1 27558:2 27561:1 27591:1 27633:2 27636:1 27638:4 27641:1 27661:1 27666:1 27676:1 27692:1 27705:2 27745:1 27749:1 27772:1 27773:2 27775:1 27818:1 27828:1 27834:1 27864:1 27914:3 27926:1 27963:2 27968:1 27971:1 27977:1 27994:2 28026:1 28046:1 28053:1 28081:1 28106:1 28138:3 28169:2 28172:1 28210:1 28217:1 28222:1 28229:2 28283:1 28292:2 28297:1 28300:1 28314:1 28326:1 28336:1 28343:3 28344:1 28352:1 28364:1 28420:1 28430:4 28437:1 28496:1 28507:1 28509:1 28511:2 28523:1 28560:1 28566:1 28575:1 28576:1 28579:1 28618:1 16 26:1 27:1 69:1 83:4 106:1 137:1 147:1 162:1 165:1 201:1 213:1 235:4 283:1 286:1 296:2 327:1 336:2 337:2 338:1 364:1 407:2 442:2 445:1 449:1 460:1 489:2 504:1 507:1 509:1 514:1 523:1 526:1 552:1 553:1 617:1 627:3 648:2 654:1 661:4 665:1 671:1 676:1 699:1 707:1 713:1 724:1 735:1 757:2 768:1 803:1 813:1 856:1 872:1 915:1 934:1 939:1 941:1 942:1 943:2 966:1 978:1 985:2 987:1 1015:2 1020:1 1062:1 1081:1 1086:1 1116:1 1125:1 1171:3 1175:1 1192:2 1200:1 1201:2 1217:1 1227:1 1239:3 1259:1 1263:1 1269:1 1275:1 1289:2 1290:2 1302:1 1306:1 1335:1 1346:1 1375:1 1413:1 1415:2 1438:3 1446:1 1484:1 1501:2 1513:1 1521:1 1522:1 1525:2 1541:1 1544:1 1569:1 1572:2 1583:1 1591:1 1594:1 1596:1 1601:2 1621:1 1628:1 1632:1 1637:1 1640:2 1654:1 1672:2 1675:3 1683:1 1722:1 1731:1 1743:1 1745:1 1747:1 1751:1 1758:2 1784:1 1789:1 1790:1 1809:1 1810:1 1820:1 1824:1 1825:1 1831:1 1853:1 1860:1 1877:1 1882:1 1883:1 1884:1 1895:1 1903:1 1904:4 1914:1 1921:1 1929:1 1950:1 1986:1 2006:1 2015:2 2022:1 2023:3 2049:1 2054:1 2074:1 2076:2 2101:1 2108:1 2164:1 2174:1 2229:1 2230:2 2232:3 2237:1 2238:1 2240:1 2241:1 2244:3 2246:1 2248:1 2251:1 2256:4 2259:1 2260:5 2272:1 2273:1 2290:1 2327:1 2336:1 2354:1 2359:1 2361:1 2413:3 2437:1 2448:1 2488:1 2495:1 2556:1 2582:2 2595:4 2602:1 2607:3 2630:1 2633:1 2635:1 2637:5 2651:1 2662:1 2670:1 2674:1 2684:1 2689:1 2721:1 2731:2 2738:1 2741:4 2755:1 2792:4 2818:5 2828:6 2885:17 2899:1 2903:1 2907:1 2918:1 2986:2 2989:1 3037:2 3062:1 3107:1 3117:1 3129:2 3133:4 3151:6 3153:2 3173:1 3181:1 3219:3 3254:1 3283:1 3303:1 3330:1 3340:1 3348:1 3361:3 3369:2 3373:1 3388:1 3417:1 3427:1 3441:1 3442:1 3453:3 3505:1 3511:1 3512:1 3519:1 3550:1 3569:1 3588:1 3603:1 3606:2 3625:1 3643:1 3651:1 3652:22 3677:2 3679:6 3687:2 3688:12 3689:1 3691:3 3697:1 3706:3 3718:1 3721:2 3724:2 3725:1 3740:2 3742:1 3743:1 3776:1 3777:3 3783:1 3788:1 3808:1 3813:1 3815:1 3816:2 3826:2 3838:2 3844:1 3853:1 3891:1 3900:1 3904:1 3911:1 3915:1 3918:1 3920:1 3925:1 3939:1 3953:1 4056:1 4101:1 4106:1 4109:1 4110:1 4143:1 4153:1 4156:1 4169:1 4234:8 4250:1 4277:1 4302:1 4306:1 4313:2 4325:2 4335:1 4347:3 4372:1 4380:1 4386:1 4393:1 4448:1 4449:2 4489:1 4519:1 4522:2 4533:1 4543:1 4563:1 4653:1 4654:1 4660:2 4693:2 4701:1 4782:1 4792:10 4793:1 4824:1 4848:1 4870:1 4893:1 4902:2 4903:1 4905:1 4926:1 4927:5 4928:1 4930:1 4933:1 4939:1 4940:12 4941:1 4943:1 4948:1 4975:1 5045:1 5144:2 5145:3 5152:5 5181:1 5195:1 5213:1 5214:12 5242:1 5280:1 5317:1 5319:1 5359:1 5361:1 5370:1 5379:1 5386:1 5390:1 5392:1 5447:1 5448:1 5465:1 5474:1 5479:1 5489:1 5523:1 5525:1 5562:1 5565:2 5588:2 5595:1 5618:1 5620:1 5624:1 5631:1 5659:1 5660:1 5662:1 5683:1 5703:1 5707:1 5731:1 5766:2 5791:1 5794:2 5796:1 5803:1 5860:1 5932:4 5945:1 5971:1 5976:1 6003:1 6042:1 6047:1 6057:1 6079:1 6086:1 6087:2 6088:2 6126:1 6127:2 6151:3 6153:1 6165:1 6168:1 6181:1 6184:1 6239:1 6242:1 6244:1 6247:1 6250:1 6251:1 6254:1 6256:3 6262:1 6264:2 6265:1 6267:1 6275:1 6298:1 6358:1 6392:1 6398:1 6410:2 6413:1 6424:1 6450:1 6454:1 6507:1 6513:2 6523:1 6533:5 6535:1 6539:2 6547:1 6557:1 6566:2 6582:1 6598:2 6604:1 6615:1 6657:1 6679:1 6685:2 6687:1 6695:2 6699:1 6704:1 6711:2 6731:1 6780:1 6783:1 6789:1 6799:2 6803:1 6819:1 6857:1 6860:1 6896:1 6909:1 6970:1 6996:1 7000:5 7010:2 7027:1 7036:1 7049:1 7180:1 7204:1 7221:3 7267:1 7269:1 7275:2 7290:1 7360:1 7411:1 7420:1 7430:1 7437:1 7466:1 7477:1 7479:2 7496:1 7505:1 7531:1 7544:1 7548:21 7549:1 7555:1 7567:4 7568:14 7578:1 7579:1 7586:1 7588:1 7616:3 7638:1 7653:1 7668:1 7672:1 7689:1 7742:1 7746:4 7750:1 7786:1 7788:2 7805:1 7826:1 7862:1 7910:1 7921:1 7928:2 7936:1 7951:1 7977:1 7983:1 7998:1 8006:8 8026:1 8037:1 8039:1 8049:1 8063:2 8092:1 8098:1 8116:1 8127:2 8140:1 8154:1 8167:1 8170:3 8176:1 8194:2 8199:2 8213:1 8215:1 8220:1 8231:1 8233:1 8241:2 8251:1 8260:1 8263:2 8269:1 8277:1 8294:1 8308:1 8319:3 8336:1 8345:1 8357:2 8358:1 8359:2 8360:1 8361:2 8362:2 8370:1 8373:2 8375:1 8381:1 8396:1 8402:1 8412:2 8420:1 8421:1 8428:1 8440:1 8450:1 8455:2 8475:2 8496:2 8517:3 8526:1 8528:1 8531:1 8550:1 8556:1 8583:2 8595:1 8596:1 8603:1 8609:2 8616:2 8617:1 8621:1 8637:1 8667:1 8668:2 8675:1 8678:1 8680:3 8687:1 8706:1 8707:1 8711:3 8725:1 8743:1 8813:1 8827:1 8853:1 8854:1 8863:1 8880:1 8882:1 8903:1 8962:1 8991:1 8995:1 9015:2 9039:1 9042:1 9049:1 9055:1 9071:1 9078:1 9088:1 9091:1 9124:1 9240:1 9243:1 9246:1 9252:1 9253:1 9263:1 9264:2 9278:1 9292:1 9294:1 9322:1 9325:1 9328:1 9375:12 9383:1 9408:1 9420:3 9428:2 9437:1 9448:1 9467:2 9484:1 9511:9 9529:1 9569:2 9580:1 9586:3 9603:1 9655:3 9656:1 9690:5 9696:1 9697:2 9698:1 9706:1 9717:1 9730:1 9744:1 9748:3 9751:1 9754:1 9780:3 9785:1 9795:1 9797:2 9817:1 9830:1 9853:1 9855:1 9873:7 9876:3 9883:1 9885:1 9971:2 9976:1 10018:1 10023:1 10035:3 10137:1 10149:3 10155:1 10159:1 10181:1 10209:2 10215:2 10230:1 10258:2 10278:1 10297:5 10311:2 10312:3 10314:1 10320:1 10328:1 10356:1 10369:1 10374:1 10383:3 10396:1 10401:1 10405:1 10413:4 10463:1 10464:1 10475:1 10495:1 10498:1 10499:1 10503:1 10510:1 10524:2 10534:1 10588:1 10604:1 10620:2 10621:1 10635:2 10649:3 10650:3 10666:1 10699:1 10702:1 10727:2 10742:1 10747:1 10767:2 10779:2 10811:1 10841:1 10843:2 10860:1 10892:1 10905:1 10926:1 10931:1 10941:1 10961:1 10971:1 10996:2 11021:1 11039:2 11047:1 11054:1 11073:1 11081:1 11112:1 11116:1 11118:3 11120:1 11147:1 11169:1 11172:1 11180:1 11186:1 11198:1 11218:1 11232:1 11238:1 11242:1 11248:3 11261:2 11278:2 11280:2 11315:1 11336:2 11337:1 11348:1 11358:1 11359:1 11367:1 11370:1 11372:4 11373:1 11381:1 11383:4 11392:1 11399:1 11406:2 11422:2 11431:3 11435:1 11441:1 11455:1 11475:1 11476:1 11486:4 11498:1 11499:1 11530:1 11534:1 11544:3 11557:1 11575:1 11615:1 11616:1 11633:1 11683:1 11734:1 11749:1 11761:1 11764:1 11765:1 11766:1 11786:2 11787:2 11788:12 11797:4 11823:1 11837:2 11879:1 11930:1 11938:5 11939:2 11955:1 11958:1 12016:1 12019:1 12040:1 12047:1 12054:1 12058:1 12064:1 12069:1 12134:1 12148:1 12187:1 12189:1 12198:1 12203:1 12257:1 12323:6 12336:1 12341:1 12345:1 12357:1 12369:2 12370:3 12394:1 12420:1 12451:1 12456:2 12485:1 12524:1 12525:2 12566:1 12599:1 12652:1 12691:1 12692:2 12715:1 12744:1 12756:2 12768:1 12771:1 12776:1 12792:1 12798:1 12799:1 12829:1 12834:1 12835:2 12870:1 12872:1 12874:1 12882:2 12883:1 12884:3 12889:1 12891:1 12892:1 12900:1 12904:2 12915:1 12924:1 12928:2 12954:4 12956:1 12966:1 12980:1 12997:1 13019:2 13033:2 13034:1 13049:1 13053:1 13065:1 13071:1 13084:1 13095:3 13114:1 13122:3 13131:1 13148:1 13149:1 13160:1 13178:2 13190:1 13201:2 13243:1 13249:1 13250:1 13251:2 13252:1 13254:1 13278:1 13301:1 13310:1 13314:1 13318:1 13330:2 13334:1 13335:1 13352:1 13365:5 13371:1 13380:1 13411:1 13416:1 13434:1 13435:1 13439:1 13457:1 13461:1 13462:1 13467:3 13493:1 13510:1 13515:1 13518:1 13530:2 13535:2 13536:4 13543:1 13560:1 13565:3 13578:1 13610:2 13612:1 13615:1 13616:1 13620:1 13679:1 13735:2 13750:1 13782:1 13795:1 13855:1 13907:1 13908:1 13917:1 13924:3 13926:1 13927:1 13935:1 13951:1 13970:1 13985:1 13989:1 14009:1 14035:1 14051:1 14087:1 14099:1 14106:1 14126:1 14142:1 14158:1 14183:1 14227:2 14271:1 14370:1 14378:1 14401:2 14437:2 14443:2 14445:1 14447:1 14450:1 14470:1 14496:1 14505:1 14522:1 14545:2 14566:1 14592:1 14624:1 14633:1 14665:1 14671:1 14678:1 14756:1 14760:2 14761:2 14766:1 14792:1 14793:1 14796:1 14826:1 14828:1 14832:1 14887:3 14898:2 14909:1 14978:1 14992:1 15009:1 15020:1 15021:1 15033:2 15058:3 15063:2 15067:1 15099:2 15113:1 15118:2 15134:1 15165:1 15190:2 15194:1 15201:4 15210:1 15222:1 15239:1 15243:1 15244:5 15245:1 15250:1 15254:1 15255:1 15264:2 15269:4 15302:1 15337:1 15347:1 15356:1 15361:2 15366:3 15388:1 15401:1 15425:1 15442:1 15461:1 15472:1 15478:1 15502:4 15513:2 15529:1 15540:1 15566:12 15587:1 15596:1 15599:1 15620:2 15637:32 15665:3 15697:1 15731:1 15734:2 15763:1 15773:1 15774:1 15776:1 15780:2 15784:1 15810:1 15812:1 15815:1 15831:1 15832:1 15855:1 15876:1 15896:1 15902:3 15934:2 15953:1 15961:2 15969:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16108:1 16146:1 16151:1 16167:2 16168:2 16210:1 16215:1 16217:2 16228:1 16230:1 16249:1 16255:7 16289:1 16300:2 16338:1 16343:1 16348:1 16365:1 16366:1 16369:3 16373:1 16375:2 16378:1 16380:1 16395:1 16407:1 16416:1 16426:2 16427:1 16453:1 16492:1 16558:1 16569:2 16582:1 16588:1 16608:1 16617:1 16623:1 16630:1 16646:1 16649:1 16652:1 16654:2 16666:1 16676:1 16683:3 16690:1 16718:1 16721:1 16726:1 16744:1 16766:1 16771:1 16796:3 16866:1 16876:1 16877:1 16896:3 16904:1 16911:1 16915:2 16920:1 16921:1 16936:1 16940:1 16954:1 16964:2 16990:1 17018:1 17019:1 17077:1 17098:1 17103:2 17113:1 17117:1 17128:1 17130:1 17196:2 17199:1 17201:1 17220:8 17248:1 17275:1 17294:1 17311:1 17317:1 17334:1 17341:1 17363:1 17369:1 17392:1 17396:2 17404:3 17479:1 17529:2 17531:1 17568:1 17578:1 17595:1 17599:2 17609:2 17616:1 17640:1 17661:1 17666:1 17667:2 17714:1 17723:1 17754:3 17774:1 17779:1 17782:1 17785:3 17805:1 17806:1 17821:1 17874:1 17912:5 17949:1 17968:1 17970:1 17984:1 17998:1 18010:1 18027:1 18031:3 18037:2 18052:2 18065:2 18095:1 18101:1782 18118:1 18123:1 18163:1 18178:3 18215:3 18234:2 18245:1 18262:1 18271:1 18272:1 18298:3 18311:3 18314:1 18315:1 18331:1 18362:1 18410:3 18439:1 18462:2 18472:1 18481:1 18491:1 18505:1 18512:1 18514:1 18515:1 18557:1 18569:1 18572:1 18584:4 18667:1 18669:1 18677:1 18679:2 18761:1 18786:1 18799:1 18801:1 18804:1 18813:2 18825:2 18829:1 18830:3 18834:1 18847:1 18859:6 18881:1 18883:9 18910:1 18911:1 18947:1 18950:1 18972:1 18976:1 18978:1 18980:1 18987:1 18997:2 19005:1 19028:1 19034:1 19055:1 19067:2 19099:1 19106:1 19148:1 19153:1 19187:1 19206:1 19209:7 19220:1 19231:2 19253:1 19291:1 19299:1 19307:5 19329:1 19347:1 19360:1 19383:1 19391:1 19394:1 19401:1 19402:1 19409:1 19459:4 19464:1 19470:1 19472:1 19488:2 19514:1 19525:1 19543:1 19545:1 19565:1 19569:1 19584:1 19591:5 19638:1 19663:7 19677:2 19679:1 19694:1 19695:1 19707:9 19724:1 19747:1 19756:1 19774:1 19818:1 19833:2 19865:1 19900:1 19910:1 19918:1 19945:2 19957:1 19968:1 19979:1 20022:1 20024:1 20086:1 20099:1 20117:1 20148:1 20169:1 20210:3 20227:1 20236:1 20245:8 20257:3 20260:1 20261:1 20285:1 20289:4 20299:1 20322:1 20327:1 20364:1 20375:2 20378:1 20396:2 20401:1 20402:1 20422:5 20429:1 20432:2 20496:1 20502:1 20505:1 20524:1 20528:1 20533:1 20561:1 20569:1 20572:1 20620:1 20628:1 20672:1 20679:1 20718:4 20720:2 20723:1 20733:1 20745:1 20773:1 20782:1 20798:1 20809:1 20810:1 20822:1 20827:1 20828:1 20838:1 20840:2 20843:2 20870:1 20888:1 20927:2 20941:1 20951:1 20952:1 20973:1 20976:8 20978:1 20992:1 21019:1 21037:2 21053:1 21080:1 21086:1 21096:2 21108:1 21140:1 21142:4 21150:2 21156:2 21161:1 21231:2 21237:1 21239:7 21245:1 21252:1 21266:1 21267:1 21272:1 21279:1 21282:2 21291:1 21306:1 21334:1 21379:3 21380:1 21403:1 21412:1 21423:2 21425:1 21435:1 21439:1 21446:1 21464:1 21474:1 21515:12 21516:1 21518:1 21537:1 21548:1 21556:1 21575:1 21583:1 21594:2 21613:2 21620:1 21621:1 21628:2 21642:2 21645:1 21648:4 21664:2 21668:3 21679:2 21704:1 21715:1 21718:1 21732:1 21743:1 21745:2 21753:1 21754:1 21769:1 21781:2 21794:3 21807:1 21819:1 21828:2 21840:1 21860:1 21941:3 21949:1 21989:1 22021:1 22038:1 22042:1 22049:9 22051:2 22082:1 22099:1 22130:1 22133:2 22165:1 22188:5 22192:1 22223:1 22241:1 22264:2 22284:1 22295:1 22329:1 22346:1 22348:1 22355:1 22414:1 22423:1 22425:3 22431:1 22432:1 22448:1 22452:1 22453:1 22466:1 22481:2 22496:1 22530:1 22534:2 22548:1 22551:1 22556:1 22564:2 22568:2 22571:1 22572:1 22607:1 22619:1 22627:1 22628:1 22646:4 22667:1 22670:1 22677:2 22681:1 22699:1 22706:1 22707:1 22748:2 22757:12 22847:1 22849:1 22856:1 22889:1 22916:1 22924:1 22937:1 22951:1 22986:1 23000:1 23022:1 23024:2 23059:1 23062:2 23077:1 23104:2 23126:1 23177:1 23192:1 23207:3 23215:2 23224:1 23228:1 23229:2 23284:1 23306:1 23313:1 23362:1 23396:1 23397:2 23405:1 23413:1 23421:1 23434:1 23492:1 23520:1 23568:5 23633:1 23646:1 23656:1 23665:1 23666:2 23667:3 23668:1 23689:1 23697:1 23704:1 23707:2 23716:1 23722:1 23752:1 23753:1 23766:1 23780:1 23788:1 23791:1 23802:1 23808:1 23841:1 23844:1 23867:3 23870:1 23879:1 23883:1 23885:1 23899:1 23921:1 23937:1 23954:1 23971:1 23980:1 23982:1 24003:1 24006:1 24013:1 24020:1 24036:1 24050:1 24052:1 24057:1 24059:1 24083:1 24086:1 24144:2 24155:2 24179:1 24208:1 24214:1 24224:1 24230:1 24234:1 24242:3 24269:2 24290:1 24325:1 24339:2 24360:1 24404:2 24406:1 24417:1 24420:1 24434:3 24473:2 24476:3 24478:1 24488:1 24540:1 24567:1 24572:1 24637:1 24644:4 24647:3 24653:1 24678:1 24692:1 24697:2 24718:1 24728:1 24730:2 24740:2 24751:3 24760:4 24761:1 24772:1 24784:1 24789:1 24797:1 24817:2 24838:1 24841:4 24843:1 24847:1 24855:1 24873:2 24897:1 24915:1 24942:4 24967:2 24969:2 24990:1 24999:1 25018:1 25056:1 25071:1 25092:3 25109:1 25117:1 25131:1 25138:2 25140:1 25157:1 25160:2 25175:1 25191:1 25194:1 25217:1 25230:2 25235:1 25256:4 25261:1 25262:1 25277:1 25289:1 25323:2 25326:1 25332:1 25348:1 25387:1 25410:5 25414:1 25451:1 25478:1 25525:1 25537:1 25549:1 25569:1 25571:1 25586:1 25681:4 25683:2 25696:2 25698:1 25699:4 25700:2 25742:2 25751:2 25773:1 25787:1 25793:2 25805:1 25826:2 25844:1 25861:1 25879:1 25910:1 25957:1 26023:1 26032:1 26067:1 26075:1 26120:1 26151:1 26158:1 26216:1 26218:2 26272:1 26285:2 26289:1 26301:1 26303:6 26331:1 26397:12 26398:1 26400:3 26401:1 26430:1 26503:1 26509:2 26510:1 26548:1 26555:1 26557:1 26559:1 26563:1 26569:1 26570:1 26576:1 26581:1 26612:2 26624:1 26641:1 26651:1 26664:2 26715:1 26725:1 26765:1 26792:1 26794:1 26829:2 26843:1 26869:3 26889:1 26894:1 26919:1 26963:1 26986:1 26989:1 26993:1 27017:1 27025:1 27035:1 27038:1 27071:1 27080:1 27111:1 27145:1 27216:1 27217:1 27228:3 27231:1 27248:1 27271:1 27279:2 27280:15 27281:2 27283:1 27287:1 27289:1 27300:1 27315:1 27316:7 27326:1 27329:1 27337:1 27364:1 27368:2 27373:1 27394:1 27401:1 27405:2 27414:1 27452:2 27465:1 27492:1 27495:1 27519:1 27549:1 27558:2 27561:1 27591:1 27633:2 27636:1 27638:4 27641:1 27661:1 27666:1 27676:1 27692:1 27705:2 27745:1 27749:1 27772:1 27773:2 27775:1 27818:1 27828:1 27834:1 27864:1 27914:3 27926:1 27963:2 27968:1 27971:1 27977:2 27994:2 28026:1 28046:1 28053:1 28081:1 28106:1 28138:3 28169:2 28172:1 28210:1 28217:1 28222:1 28229:3 28283:1 28292:2 28297:1 28300:1 28314:1 28326:1 28336:1 28343:3 28344:1 28352:1 28364:2 28420:1 28430:4 28437:1 28496:1 28507:1 28509:1 28511:2 28523:1 28560:1 28566:1 28575:1 28576:1 28579:1 28618:1 16 26:1 27:1 69:1 78:1 83:4 100:1 106:1 137:1 147:1 162:1 165:1 201:1 213:1 235:4 283:1 286:1 296:2 327:1 336:2 337:2 338:1 364:1 407:2 442:3 445:1 449:1 460:1 489:2 504:1 507:1 509:1 514:1 523:1 526:1 552:1 553:1 617:1 627:3 648:2 654:1 661:4 665:1 671:1 676:1 684:1 699:1 707:1 713:1 724:1 735:1 757:2 768:1 803:1 813:1 852:1 856:1 872:1 915:1 934:1 939:2 941:1 942:1 943:2 966:1 978:1 985:2 987:1 1015:2 1020:1 1052:1 1062:1 1081:1 1086:1 1108:1 1116:1 1125:1 1171:3 1175:1 1184:1 1192:2 1200:1 1201:3 1217:1 1227:1 1239:3 1259:1 1263:1 1267:1 1269:1 1275:1 1279:1 1289:2 1290:2 1302:2 1306:1 1319:1 1335:1 1346:1 1375:1 1379:1 1413:1 1415:2 1438:3 1446:1 1453:1 1484:1 1501:2 1513:1 1521:1 1522:1 1525:2 1541:1 1544:1 1569:1 1572:2 1583:1 1591:1 1594:1 1596:1 1601:2 1621:1 1628:1 1632:1 1637:1 1640:2 1654:1 1672:2 1675:3 1683:1 1722:1 1731:1 1743:2 1745:1 1747:1 1751:1 1758:2 1784:1 1789:1 1790:1 1809:1 1810:1 1820:1 1824:1 1825:1 1831:1 1837:1 1853:1 1860:1 1877:1 1882:1 1883:1 1884:1 1895:1 1903:1 1904:4 1914:1 1921:1 1929:1 1950:1 1986:1 2006:1 2015:2 2022:1 2023:3 2049:1 2054:1 2074:1 2076:2 2101:1 2108:2 2164:1 2174:1 2229:1 2230:2 2232:3 2237:1 2238:2 2240:1 2241:1 2244:3 2246:1 2248:1 2251:1 2256:4 2259:2 2260:5 2272:1 2273:1 2290:1 2327:1 2336:1 2354:1 2359:1 2361:1 2374:1 2413:3 2437:1 2448:2 2488:1 2495:1 2556:1 2582:2 2595:4 2602:1 2607:3 2623:1 2630:1 2633:1 2635:1 2637:5 2651:1 2662:1 2670:1 2674:1 2684:3 2689:1 2721:1 2731:2 2738:1 2741:4 2755:1 2792:4 2818:6 2828:6 2857:1 2885:17 2899:1 2903:1 2907:1 2918:1 2956:1 2986:2 2989:1 3037:2 3062:1 3107:1 3117:1 3129:2 3133:4 3151:6 3153:2 3168:1 3173:1 3181:1 3208:1 3219:4 3254:1 3281:1 3283:1 3303:1 3330:1 3340:1 3348:1 3361:3 3369:2 3373:1 3388:1 3417:1 3427:1 3441:1 3442:1 3453:3 3505:1 3511:1 3512:1 3513:1 3519:1 3550:1 3569:1 3588:1 3603:1 3606:2 3625:1 3643:1 3651:1 3652:24 3677:2 3678:1 3679:6 3687:2 3688:12 3689:1 3691:3 3697:2 3706:3 3718:1 3721:2 3724:2 3725:2 3740:2 3742:1 3743:1 3776:1 3777:3 3783:1 3788:1 3808:1 3813:1 3815:1 3816:2 3826:2 3838:2 3844:1 3853:1 3891:1 3900:1 3901:1 3904:1 3911:1 3915:1 3918:1 3920:1 3925:1 3939:1 3953:1 3993:1 4056:1 4101:1 4106:1 4109:1 4110:1 4143:1 4153:1 4156:1 4169:1 4234:8 4250:1 4277:1 4302:1 4306:1 4313:2 4325:2 4335:2 4347:3 4372:1 4380:1 4386:1 4393:1 4448:1 4449:2 4489:1 4515:1 4519:1 4522:2 4533:1 4543:1 4554:1 4563:1 4653:1 4654:1 4660:2 4693:2 4701:1 4782:1 4792:10 4793:1 4824:1 4848:1 4870:1 4893:1 4902:2 4903:1 4905:1 4926:1 4927:5 4928:1 4930:1 4933:2 4939:1 4940:13 4941:1 4943:1 4948:1 4949:1 4975:1 5045:1 5144:2 5145:3 5152:5 5181:1 5195:1 5213:2 5214:13 5242:1 5280:1 5317:1 5319:1 5355:1 5359:1 5361:1 5370:1 5375:1 5379:1 5386:1 5390:1 5392:1 5447:1 5448:1 5465:1 5474:1 5479:1 5489:1 5494:1 5497:1 5502:1 5523:1 5525:1 5562:1 5565:2 5588:2 5595:1 5618:1 5620:1 5624:1 5631:1 5659:1 5660:1 5662:1 5683:1 5701:1 5703:1 5707:1 5731:1 5766:2 5791:1 5794:2 5796:1 5803:1 5860:1 5932:4 5945:1 5971:1 5976:1 6003:1 6042:1 6047:1 6057:1 6079:1 6086:1 6087:2 6088:2 6126:1 6127:2 6129:1 6151:3 6153:1 6165:1 6168:1 6181:1 6184:1 6239:1 6242:1 6244:1 6247:1 6250:1 6251:1 6254:1 6256:3 6262:1 6264:2 6265:1 6267:1 6275:1 6298:1 6358:1 6392:1 6398:1 6410:2 6413:1 6424:1 6450:1 6454:1 6494:1 6507:1 6508:1 6513:2 6523:1 6533:5 6535:1 6539:2 6547:1 6557:1 6566:2 6582:1 6598:2 6604:1 6615:1 6657:1 6679:1 6685:2 6687:1 6695:2 6699:1 6704:1 6711:2 6731:1 6739:1 6780:1 6783:1 6789:1 6799:2 6803:1 6819:1 6857:1 6860:1 6896:1 6909:1 6954:1 6970:1 6996:1 7000:5 7010:2 7027:1 7036:1 7049:1 7180:1 7204:1 7221:3 7267:1 7269:1 7275:2 7290:1 7307:1 7360:1 7411:1 7420:1 7430:1 7437:1 7466:1 7477:1 7478:1 7479:2 7496:1 7505:1 7531:1 7544:1 7548:23 7549:1 7555:1 7567:5 7568:14 7578:1 7579:1 7586:1 7588:1 7615:1 7616:3 7638:1 7653:1 7668:1 7672:1 7689:1 7742:3 7746:4 7750:1 7786:1 7788:2 7805:1 7826:1 7862:1 7910:1 7921:1 7928:3 7936:1 7951:1 7977:1 7983:1 7998:1 8006:8 8026:1 8037:1 8039:1 8049:1 8063:2 8092:1 8098:1 8107:1 8116:1 8127:2 8140:1 8154:1 8167:1 8170:3 8176:1 8194:2 8199:2 8213:1 8214:1 8215:1 8220:1 8231:1 8233:1 8241:2 8251:1 8260:1 8263:2 8269:1 8277:1 8294:2 8308:1 8319:3 8336:1 8345:1 8357:2 8358:1 8359:2 8360:1 8361:2 8362:2 8370:1 8373:2 8375:1 8381:1 8396:1 8402:1 8412:2 8420:1 8421:1 8428:1 8440:1 8450:1 8455:2 8475:2 8496:2 8517:3 8526:1 8528:1 8531:1 8550:1 8556:1 8583:2 8595:1 8596:1 8603:1 8609:2 8616:2 8617:1 8621:1 8637:1 8667:1 8668:2 8675:1 8678:1 8680:3 8687:1 8706:1 8707:1 8711:3 8725:1 8743:1 8813:1 8827:2 8853:1 8854:1 8863:1 8880:1 8882:1 8903:1 8957:1 8962:2 8991:1 8995:1 9015:3 9039:1 9042:1 9049:1 9055:1 9071:1 9078:1 9088:2 9091:1 9124:1 9160:1 9240:1 9243:1 9246:1 9252:1 9253:1 9263:1 9264:2 9278:1 9292:1 9294:1 9322:1 9325:1 9328:1 9375:13 9383:1 9408:1 9420:3 9428:2 9437:1 9448:1 9467:2 9484:1 9511:10 9529:1 9569:2 9580:1 9586:3 9603:1 9655:3 9656:1 9690:5 9696:1 9697:2 9698:1 9706:1 9717:1 9730:1 9744:1 9748:3 9751:1 9753:1 9754:1 9780:3 9785:1 9795:1 9797:2 9817:1 9830:1 9853:1 9855:1 9873:7 9875:1 9876:4 9883:1 9885:1 9971:2 9976:1 10018:1 10023:1 10035:3 10137:2 10149:3 10155:1 10159:1 10163:1 10173:1 10181:1 10209:2 10215:2 10230:1 10258:2 10278:1 10297:5 10311:2 10312:3 10314:1 10320:1 10328:1 10334:1 10356:1 10369:1 10374:1 10383:3 10396:1 10401:1 10405:1 10413:4 10463:1 10464:1 10475:1 10495:1 10498:1 10499:1 10503:1 10510:1 10524:2 10534:1 10588:1 10604:1 10620:2 10621:1 10635:3 10649:3 10650:4 10666:1 10699:2 10702:1 10727:2 10742:1 10747:1 10767:2 10779:2 10811:1 10839:1 10841:1 10843:2 10860:1 10892:1 10904:1 10905:1 10926:1 10931:1 10941:1 10961:1 10970:1 10971:1 10996:2 11021:1 11039:2 11047:1 11054:1 11073:1 11080:1 11081:1 11112:1 11116:1 11118:4 11120:1 11147:1 11169:1 11172:1 11180:1 11186:1 11198:1 11218:1 11232:1 11238:1 11242:1 11248:3 11261:2 11278:3 11280:2 11315:1 11336:2 11337:1 11348:1 11358:1 11359:1 11367:1 11370:1 11372:4 11373:1 11374:1 11381:1 11383:4 11392:1 11399:1 11406:2 11422:2 11431:3 11435:1 11441:1 11455:1 11475:1 11476:1 11486:4 11498:1 11499:1 11530:1 11534:1 11544:3 11557:1 11575:1 11615:1 11616:1 11633:1 11683:1 11734:1 11749:1 11761:1 11764:1 11765:1 11766:1 11786:2 11787:2 11788:13 11797:4 11812:1 11823:1 11837:2 11879:1 11904:1 11930:1 11938:5 11939:2 11955:1 11958:1 12016:1 12019:1 12040:1 12047:1 12054:1 12058:1 12064:1 12069:1 12134:1 12148:1 12187:1 12189:2 12198:1 12203:1 12257:1 12323:6 12336:1 12341:1 12345:1 12357:1 12369:2 12370:3 12394:1 12420:1 12451:1 12456:2 12485:1 12524:1 12525:2 12550:1 12566:1 12599:1 12652:1 12691:1 12692:2 12702:1 12715:1 12744:1 12756:2 12768:1 12771:1 12776:1 12792:1 12798:1 12799:1 12829:1 12834:1 12835:2 12870:1 12872:1 12874:1 12881:1 12882:2 12883:1 12884:3 12889:1 12891:1 12892:1 12900:1 12904:2 12915:1 12919:1 12924:1 12928:2 12954:5 12956:1 12966:1 12980:1 12997:1 13019:2 13033:2 13034:1 13049:1 13053:1 13065:1 13071:1 13084:1 13095:3 13114:1 13122:3 13131:1 13136:1 13148:1 13149:1 13160:1 13178:2 13190:1 13201:2 13243:1 13249:1 13250:1 13251:2 13252:1 13254:1 13278:1 13301:1 13310:1 13314:1 13318:1 13330:2 13334:1 13335:1 13352:1 13365:5 13371:1 13380:1 13411:1 13416:1 13434:1 13435:1 13439:1 13457:1 13461:2 13462:1 13467:3 13493:1 13510:1 13515:1 13518:1 13529:1 13530:2 13535:2 13536:4 13543:1 13560:1 13565:3 13578:1 13610:2 13612:1 13615:1 13616:1 13620:1 13679:1 13735:2 13750:1 13769:1 13782:1 13795:1 13855:1 13907:1 13908:1 13917:1 13924:3 13926:1 13927:1 13935:1 13951:2 13956:1 13970:1 13985:1 13989:1 14009:1 14035:1 14051:1 14087:1 14099:1 14106:1 14126:1 14142:1 14158:1 14183:1 14225:1 14227:2 14271:1 14370:1 14378:1 14401:2 14437:2 14443:2 14445:1 14447:1 14450:1 14451:1 14470:1 14496:1 14505:1 14522:1 14545:2 14566:1 14592:1 14596:1 14624:1 14633:1 14662:1 14665:1 14671:1 14678:1 14756:1 14760:2 14761:2 14766:1 14792:1 14793:1 14796:1 14826:1 14828:1 14832:1 14855:1 14887:3 14898:2 14909:1 14978:1 14992:1 15006:1 15009:1 15020:1 15021:1 15033:2 15058:3 15063:2 15067:1 15099:2 15113:1 15118:2 15134:1 15165:1 15190:2 15194:1 15201:4 15210:1 15222:1 15238:1 15239:1 15243:1 15244:5 15245:1 15250:1 15254:1 15255:1 15264:2 15269:4 15302:1 15337:1 15347:1 15356:1 15361:2 15366:3 15388:1 15401:1 15425:1 15442:1 15446:1 15461:1 15472:1 15478:1 15502:5 15513:2 15529:1 15540:1 15566:13 15587:1 15596:1 15599:1 15620:2 15637:35 15665:3 15697:1 15731:1 15734:2 15763:1 15773:1 15774:1 15776:1 15780:2 15784:1 15810:1 15812:1 15815:1 15831:1 15832:1 15855:1 15857:1 15876:1 15896:1 15902:3 15934:2 15953:1 15961:2 15969:1 16026:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16108:1 16146:1 16151:1 16167:2 16168:2 16210:1 16215:1 16217:2 16228:1 16230:1 16249:1 16255:7 16289:1 16300:2 16338:1 16343:1 16348:1 16365:1 16366:1 16369:3 16373:1 16375:2 16378:1 16380:1 16395:1 16407:1 16416:1 16426:2 16427:2 16453:1 16492:1 16558:1 16569:2 16582:1 16588:1 16608:1 16617:1 16623:1 16630:1 16646:1 16649:1 16652:1 16654:2 16666:1 16676:1 16683:3 16690:1 16718:1 16721:1 16726:1 16744:1 16766:1 16771:1 16796:3 16866:1 16876:1 16877:1 16896:3 16904:1 16911:1 16915:2 16920:1 16921:1 16936:1 16940:1 16954:1 16964:2 16990:1 17018:1 17019:1 17077:1 17098:1 17103:2 17113:1 17117:1 17128:1 17130:1 17196:2 17199:1 17201:1 17220:8 17235:1 17248:1 17275:1 17294:1 17311:1 17317:1 17334:1 17341:1 17363:1 17369:1 17392:1 17396:2 17404:3 17479:1 17529:2 17531:1 17568:1 17578:1 17595:1 17599:2 17609:2 17616:1 17640:1 17661:1 17666:1 17667:2 17714:1 17723:1 17754:3 17760:1 17774:1 17779:1 17782:1 17785:3 17805:1 17806:1 17821:1 17823:1 17874:1 17912:5 17949:1 17968:1 17970:1 17984:1 17998:1 18003:1 18010:1 18027:1 18031:3 18037:2 18052:2 18065:2 18095:1 18101:1920 18118:1 18123:1 18163:1 18178:3 18215:3 18234:2 18245:1 18262:1 18271:1 18272:1 18298:3 18311:3 18314:1 18315:1 18331:1 18361:1 18362:1 18410:3 18439:1 18462:2 18472:1 18481:1 18491:1 18505:1 18512:1 18514:1 18515:1 18557:1 18569:1 18572:1 18584:4 18607:1 18667:1 18669:1 18677:1 18679:2 18761:1 18786:1 18799:1 18801:1 18804:2 18813:2 18825:2 18829:1 18830:3 18834:1 18847:1 18859:6 18881:1 18883:9 18910:1 18911:1 18936:1 18947:1 18950:1 18972:1 18976:1 18978:1 18980:1 18987:1 18997:2 19005:1 19028:1 19034:2 19055:1 19067:2 19099:1 19106:1 19148:1 19153:1 19187:1 19206:1 19209:7 19220:1 19231:2 19253:1 19291:1 19299:1 19307:5 19329:1 19347:1 19360:1 19383:1 19391:1 19394:1 19401:1 19402:1 19409:1 19459:4 19464:1 19470:1 19472:1 19488:2 19489:1 19514:1 19525:1 19543:1 19545:1 19565:1 19569:1 19584:1 19591:5 19638:1 19663:7 19677:2 19679:1 19694:1 19695:1 19707:9 19724:1 19747:1 19756:1 19774:1 19818:1 19822:1 19833:2 19865:1 19900:1 19910:1 19918:1 19945:2 19957:1 19968:1 19979:1 19986:1 20022:1 20024:1 20086:1 20099:1 20117:1 20148:1 20169:1 20210:3 20227:2 20236:1 20240:1 20245:8 20257:3 20260:1 20261:1 20285:1 20289:4 20299:1 20322:1 20327:1 20364:1 20375:2 20378:1 20396:2 20401:1 20402:1 20422:5 20429:1 20432:2 20496:1 20502:1 20505:1 20524:1 20528:1 20533:1 20561:1 20569:1 20572:1 20620:1 20628:1 20672:1 20679:1 20716:1 20718:4 20720:2 20723:1 20733:1 20741:1 20745:1 20773:1 20782:1 20798:1 20809:1 20810:1 20822:1 20827:1 20828:1 20838:1 20840:2 20843:2 20870:1 20888:1 20927:2 20941:1 20951:1 20952:1 20973:1 20976:8 20978:1 20992:1 21019:1 21037:2 21053:1 21080:1 21086:1 21096:2 21108:1 21140:1 21142:4 21150:2 21156:2 21161:1 21209:1 21231:2 21237:1 21239:7 21245:2 21252:1 21266:1 21267:1 21272:1 21279:1 21282:2 21291:1 21306:1 21314:1 21334:1 21379:4 21380:1 21403:1 21412:1 21423:2 21425:1 21435:1 21439:1 21446:1 21464:1 21474:1 21515:13 21516:1 21518:1 21537:1 21548:1 21556:1 21575:1 21583:1 21594:2 21611:1 21613:2 21620:1 21621:1 21628:2 21642:2 21645:1 21648:4 21664:2 21668:3 21679:2 21704:1 21715:1 21718:1 21732:1 21735:1 21743:1 21745:2 21753:1 21754:1 21766:1 21769:1 21781:3 21794:3 21807:2 21819:1 21828:2 21840:1 21860:1 21929:1 21941:3 21949:1 21967:1 21989:1 22021:1 22038:1 22042:1 22049:9 22051:2 22082:1 22099:1 22130:1 22133:2 22165:1 22188:5 22192:1 22223:1 22241:1 22264:2 22284:1 22295:1 22329:1 22346:1 22348:1 22355:1 22414:1 22423:1 22425:3 22431:1 22432:1 22448:1 22452:1 22453:1 22466:1 22481:2 22496:1 22530:1 22534:2 22548:1 22551:1 22556:1 22564:2 22568:2 22571:1 22572:1 22607:1 22619:1 22627:1 22628:1 22646:4 22667:1 22670:1 22677:2 22681:1 22699:2 22706:1 22707:1 22748:2 22757:12 22847:1 22849:1 22856:1 22889:1 22916:1 22924:1 22937:1 22949:1 22951:1 22986:1 23000:1 23022:1 23024:2 23059:1 23062:2 23077:2 23104:2 23126:1 23177:1 23192:1 23207:3 23215:2 23222:1 23224:1 23228:1 23229:2 23284:1 23306:1 23313:1 23362:1 23396:1 23397:2 23405:1 23413:1 23421:3 23434:1 23492:1 23520:1 23568:5 23633:1 23646:1 23655:1 23656:1 23665:1 23666:2 23667:3 23668:1 23689:1 23697:1 23704:1 23707:2 23716:1 23722:1 23752:1 23753:1 23766:1 23780:1 23788:1 23791:1 23802:1 23808:1 23841:1 23844:1 23867:3 23870:1 23879:2 23883:1 23885:1 23899:1 23921:1 23937:1 23954:1 23971:1 23980:1 23982:1 24003:1 24006:1 24013:1 24020:1 24036:1 24050:1 24052:1 24057:1 24059:1 24083:1 24086:1 24144:2 24155:2 24179:1 24208:1 24214:1 24224:1 24230:1 24234:1 24242:3 24269:2 24274:1 24290:1 24325:1 24339:2 24360:1 24404:2 24406:1 24417:1 24420:1 24434:3 24473:2 24476:3 24478:1 24484:1 24488:1 24540:1 24567:1 24572:1 24637:2 24644:4 24647:3 24653:1 24678:1 24692:1 24697:2 24718:1 24728:1 24730:2 24740:2 24751:3 24760:4 24761:1 24772:1 24784:1 24789:1 24797:1 24817:2 24838:1 24841:4 24843:1 24847:1 24854:1 24855:1 24873:2 24897:1 24915:2 24942:4 24967:2 24969:2 24990:1 24999:1 25018:1 25056:1 25071:1 25092:3 25109:1 25117:1 25131:1 25138:2 25140:1 25157:1 25160:2 25175:1 25191:1 25194:1 25217:1 25230:2 25235:1 25242:1 25256:4 25261:1 25262:1 25268:1 25277:1 25289:1 25323:2 25326:1 25332:1 25348:1 25387:1 25410:5 25414:1 25451:1 25478:1 25525:1 25537:1 25549:2 25569:1 25571:1 25586:1 25660:1 25681:4 25683:2 25696:2 25698:1 25699:4 25700:2 25742:2 25751:2 25773:1 25787:1 25793:2 25805:1 25826:2 25844:1 25852:1 25861:1 25879:1 25910:1 25957:1 26023:1 26032:1 26067:1 26075:1 26120:1 26151:1 26158:1 26216:1 26218:2 26272:1 26285:2 26289:1 26301:1 26303:6 26331:1 26397:12 26398:1 26400:3 26401:1 26430:1 26503:1 26509:2 26510:1 26548:1 26549:1 26555:1 26557:1 26559:1 26563:1 26569:1 26570:1 26576:1 26581:1 26612:2 26624:1 26641:1 26651:1 26664:2 26715:1 26725:1 26765:1 26792:1 26794:1 26829:2 26843:1 26869:4 26874:1 26889:1 26894:1 26919:1 26963:1 26986:1 26989:1 26993:1 27017:1 27025:1 27035:1 27038:1 27071:1 27080:1 27111:1 27145:1 27216:1 27217:1 27228:3 27231:1 27248:1 27271:1 27279:2 27280:15 27281:2 27283:1 27287:2 27289:1 27300:1 27315:1 27316:8 27326:1 27329:1 27337:1 27364:1 27368:2 27373:1 27394:1 27401:1 27405:2 27414:1 27447:1 27452:2 27465:1 27492:1 27495:1 27519:1 27549:1 27558:2 27561:1 27591:1 27627:1 27633:2 27636:1 27638:4 27641:1 27661:1 27666:1 27676:1 27692:1 27705:2 27745:1 27749:1 27772:2 27773:3 27775:1 27776:1 27818:1 27828:1 27834:1 27864:1 27914:3 27926:1 27963:2 27968:1 27971:1 27977:2 27994:2 28018:1 28026:1 28046:1 28053:1 28067:1 28081:1 28106:1 28138:3 28169:2 28172:1 28210:1 28217:1 28222:1 28229:3 28283:1 28292:2 28297:1 28300:1 28314:1 28326:1 28336:1 28343:3 28344:1 28352:1 28364:2 28420:1 28430:4 28437:1 28496:1 28503:1 28507:1 28509:1 28511:2 28523:1 28560:1 28566:1 28575:1 28576:1 28579:1 28618:1 16 26:1 27:1 69:1 78:1 83:4 100:1 106:1 137:1 147:1 162:1 165:1 201:1 213:1 235:4 283:1 286:1 296:3 318:1 327:1 336:2 337:2 338:1 364:1 382:1 407:2 418:1 442:3 445:1 449:1 460:1 489:2 504:1 507:1 509:1 514:1 523:1 526:1 552:1 553:1 617:1 627:3 648:2 654:1 661:4 665:1 671:1 676:1 684:1 699:1 707:1 713:1 724:1 735:1 757:2 768:1 803:1 813:1 852:1 856:1 872:1 915:1 934:2 939:3 941:1 942:1 943:2 944:1 966:1 978:1 985:3 987:1 1015:2 1020:1 1052:1 1062:1 1081:1 1086:1 1108:1 1116:1 1125:1 1171:3 1175:1 1184:1 1192:2 1200:1 1201:4 1217:1 1227:1 1239:3 1259:1 1263:1 1267:1 1269:1 1275:1 1278:1 1279:1 1289:2 1290:2 1302:2 1306:1 1319:1 1335:1 1346:1 1375:1 1379:1 1413:1 1415:2 1438:3 1446:1 1453:1 1475:1 1484:1 1497:1 1501:3 1513:1 1521:2 1522:1 1525:2 1541:1 1544:1 1569:1 1572:3 1583:1 1587:1 1591:1 1594:1 1596:1 1601:2 1621:1 1628:1 1632:1 1637:1 1640:2 1654:1 1672:2 1675:3 1678:1 1683:1 1722:1 1731:1 1743:2 1745:1 1747:1 1751:1 1758:2 1784:1 1789:1 1790:1 1809:1 1810:1 1820:1 1824:1 1825:1 1831:1 1837:1 1853:1 1860:1 1877:1 1882:1 1883:1 1884:1 1895:1 1903:1 1904:4 1914:1 1921:1 1929:1 1950:1 1986:1 2006:1 2015:2 2020:1 2022:1 2023:3 2044:1 2049:1 2054:1 2074:1 2075:1 2076:2 2101:1 2108:2 2164:1 2174:1 2227:1 2228:1 2229:1 2230:2 2232:3 2237:1 2238:2 2240:1 2241:1 2244:3 2245:1 2246:1 2248:1 2251:1 2256:4 2259:3 2260:5 2272:1 2273:1 2290:1 2327:1 2334:1 2336:1 2354:1 2359:1 2361:1 2374:1 2413:3 2437:1 2448:2 2483:1 2486:1 2488:1 2495:1 2556:1 2582:2 2595:4 2602:1 2607:3 2622:1 2623:1 2630:1 2633:1 2635:1 2637:5 2651:1 2662:1 2670:1 2674:1 2684:3 2689:1 2721:1 2731:2 2738:1 2739:1 2741:4 2747:1 2755:1 2792:4 2818:6 2828:6 2857:2 2885:19 2899:1 2903:1 2907:1 2918:1 2956:1 2986:2 2989:1 3037:2 3062:1 3107:1 3117:1 3129:2 3133:4 3151:6 3153:2 3168:1 3173:1 3181:1 3208:1 3218:1 3219:4 3254:1 3281:1 3283:1 3303:1 3330:1 3340:1 3348:1 3361:3 3369:2 3373:1 3388:1 3417:1 3427:1 3441:1 3442:1 3453:3 3505:1 3511:1 3512:1 3513:1 3519:1 3521:1 3550:1 3569:1 3588:1 3603:1 3606:3 3625:1 3643:1 3651:1 3652:24 3677:2 3678:1 3679:6 3687:2 3688:12 3689:1 3691:3 3697:2 3706:3 3718:1 3721:2 3724:2 3725:2 3740:2 3742:1 3743:1 3769:1 3776:1 3777:3 3783:1 3788:1 3808:1 3813:1 3815:1 3816:3 3826:2 3838:2 3844:1 3853:1 3891:1 3900:1 3901:1 3904:1 3911:1 3915:1 3918:1 3920:1 3925:1 3939:1 3953:1 3993:1 4056:1 4090:1 4101:1 4106:1 4109:1 4110:1 4143:1 4153:1 4156:1 4169:1 4234:8 4250:1 4277:1 4302:1 4306:1 4313:2 4322:1 4325:2 4335:2 4347:3 4351:1 4372:1 4380:1 4386:1 4393:1 4448:1 4449:2 4489:1 4515:2 4519:1 4522:2 4533:1 4543:2 4554:1 4563:1 4584:1 4653:1 4654:1 4660:2 4671:1 4685:1 4693:2 4701:1 4782:1 4792:10 4793:1 4824:1 4848:1 4870:1 4893:1 4902:2 4903:1 4905:2 4925:1 4926:1 4927:5 4928:1 4930:1 4933:2 4939:1 4940:13 4941:1 4943:1 4948:1 4949:3 4975:1 5045:1 5120:1 5144:3 5145:3 5152:5 5181:1 5195:1 5213:2 5214:13 5227:1 5242:1 5280:1 5317:1 5319:1 5355:1 5359:1 5361:1 5370:1 5375:1 5379:1 5386:1 5390:1 5392:1 5447:1 5448:1 5465:1 5474:1 5479:1 5489:2 5494:1 5497:1 5502:1 5523:1 5525:1 5562:1 5565:2 5588:2 5595:1 5618:1 5620:1 5624:1 5631:1 5656:1 5659:1 5660:1 5662:1 5679:1 5683:1 5701:1 5703:1 5707:1 5731:1 5766:2 5791:1 5794:2 5796:1 5803:1 5860:1 5932:4 5945:1 5971:1 5976:1 6003:1 6042:1 6043:1 6047:1 6057:1 6079:1 6086:1 6087:2 6088:2 6126:1 6127:2 6129:1 6151:3 6153:1 6165:1 6168:1 6181:1 6184:1 6239:1 6242:1 6244:1 6247:1 6250:1 6251:1 6254:2 6256:3 6262:1 6264:2 6265:1 6267:1 6275:1 6298:1 6358:1 6392:1 6398:1 6410:2 6413:1 6424:1 6450:1 6454:1 6494:1 6507:1 6508:1 6513:2 6523:1 6533:5 6535:1 6539:3 6547:1 6557:1 6566:2 6582:1 6598:2 6604:1 6615:1 6657:1 6679:1 6685:2 6687:1 6695:3 6699:1 6704:1 6711:2 6731:1 6739:1 6780:1 6783:1 6789:1 6799:2 6803:1 6819:1 6857:1 6860:1 6896:1 6909:1 6954:2 6970:1 6996:1 7000:5 7010:2 7027:1 7036:1 7049:1 7180:1 7204:1 7221:3 7267:1 7269:1 7275:3 7290:1 7307:2 7360:1 7411:1 7420:1 7430:1 7437:1 7466:1 7477:1 7478:3 7479:2 7496:1 7505:1 7530:1 7531:1 7544:1 7548:27 7549:1 7555:1 7567:5 7568:15 7578:1 7579:1 7586:1 7588:1 7615:1 7616:3 7638:1 7653:1 7668:1 7672:1 7689:1 7742:3 7746:4 7750:1 7786:1 7788:2 7805:1 7826:1 7862:1 7910:1 7921:1 7928:3 7936:1 7951:1 7960:1 7977:1 7983:1 7998:1 8006:9 8026:1 8037:1 8039:1 8049:1 8063:2 8092:1 8098:1 8107:2 8116:1 8127:2 8140:1 8154:1 8167:1 8170:3 8176:1 8194:2 8199:2 8213:1 8214:1 8215:1 8220:1 8231:1 8233:1 8241:2 8251:1 8260:1 8263:2 8269:1 8274:1 8277:1 8294:2 8308:1 8319:3 8336:1 8345:1 8357:2 8358:1 8359:3 8360:1 8361:2 8362:2 8370:1 8373:2 8375:1 8381:1 8396:1 8402:1 8412:2 8420:1 8421:1 8428:1 8440:1 8450:1 8455:2 8475:2 8496:2 8517:3 8526:1 8528:1 8531:1 8550:1 8556:1 8583:2 8595:1 8596:1 8603:1 8609:2 8616:2 8617:1 8621:1 8637:1 8667:1 8668:2 8675:1 8677:1 8678:1 8680:3 8687:1 8706:1 8707:1 8711:4 8725:1 8743:1 8813:1 8827:2 8853:1 8854:1 8863:1 8880:1 8882:1 8903:1 8919:1 8957:1 8962:2 8991:1 8995:1 9015:3 9035:1 9039:1 9042:1 9049:1 9055:1 9071:1 9078:1 9088:2 9091:1 9124:1 9160:1 9240:1 9243:1 9246:1 9252:1 9253:1 9263:1 9264:2 9278:1 9292:1 9294:1 9322:1 9325:1 9328:1 9375:13 9383:1 9408:1 9420:3 9428:2 9437:1 9448:1 9467:2 9484:1 9511:11 9529:1 9569:2 9580:1 9586:3 9603:1 9651:1 9655:3 9656:1 9690:5 9696:1 9697:2 9698:1 9706:1 9717:1 9730:1 9744:1 9748:3 9751:1 9753:1 9754:1 9780:3 9785:1 9795:1 9797:2 9817:1 9830:1 9848:1 9853:2 9855:1 9873:7 9875:1 9876:4 9883:1 9885:1 9971:2 9976:1 10018:1 10023:1 10035:3 10055:1 10084:1 10137:2 10149:3 10155:1 10159:1 10163:1 10173:1 10181:1 10191:1 10209:2 10215:2 10227:1 10230:1 10251:1 10258:2 10278:1 10281:1 10297:5 10311:2 10312:3 10314:1 10320:1 10328:1 10330:1 10334:1 10356:1 10369:1 10374:1 10383:3 10396:2 10401:1 10405:2 10413:5 10463:1 10464:1 10475:1 10495:1 10498:1 10499:1 10503:1 10510:1 10524:2 10534:1 10588:1 10595:1 10604:1 10620:2 10621:1 10635:3 10649:3 10650:4 10666:1 10699:2 10702:1 10727:2 10730:1 10742:1 10747:1 10767:2 10779:2 10811:1 10839:1 10841:1 10843:2 10860:1 10892:1 10900:1 10904:1 10905:1 10906:1 10926:1 10931:1 10941:1 10961:1 10965:1 10970:1 10971:1 10996:2 11021:1 11039:2 11047:1 11054:1 11073:1 11080:1 11081:1 11112:1 11116:1 11118:4 11120:1 11147:1 11169:1 11172:1 11180:1 11186:1 11198:1 11218:1 11232:1 11238:1 11242:1 11248:3 11261:2 11278:3 11280:2 11315:1 11328:1 11336:2 11337:1 11348:1 11358:1 11359:1 11367:1 11370:1 11372:4 11373:1 11374:1 11381:1 11383:4 11392:1 11399:1 11406:2 11422:2 11431:3 11435:1 11441:2 11455:1 11475:1 11476:1 11486:4 11498:1 11499:1 11530:1 11534:1 11544:3 11557:1 11575:1 11615:1 11616:1 11633:1 11651:1 11683:1 11734:2 11749:1 11761:1 11764:1 11765:1 11766:1 11786:3 11787:3 11788:13 11797:4 11812:1 11823:1 11837:2 11879:1 11904:1 11930:1 11938:5 11939:2 11955:1 11958:1 12016:1 12019:1 12040:1 12047:1 12054:1 12058:1 12064:1 12069:1 12134:1 12148:1 12187:1 12189:2 12198:1 12203:1 12257:1 12323:6 12336:1 12341:1 12345:1 12357:1 12369:2 12370:3 12394:1 12420:1 12451:1 12456:2 12485:1 12524:1 12525:2 12550:1 12566:1 12599:1 12652:1 12691:1 12692:2 12702:1 12710:1 12715:1 12744:1 12756:2 12768:1 12771:2 12776:1 12792:1 12798:1 12799:1 12829:1 12834:1 12835:2 12870:1 12872:1 12874:1 12881:1 12882:2 12883:1 12884:3 12889:2 12891:1 12892:1 12900:1 12904:2 12915:1 12919:1 12924:1 12928:2 12954:5 12956:1 12964:1 12966:1 12980:1 12997:1 13019:2 13033:2 13034:1 13049:1 13053:1 13065:1 13071:1 13084:1 13095:3 13114:1 13122:3 13131:1 13136:1 13148:1 13149:1 13150:1 13160:1 13178:2 13190:1 13201:2 13243:1 13249:1 13250:1 13251:2 13252:1 13254:1 13278:1 13301:1 13302:1 13310:1 13313:1 13314:1 13318:1 13330:2 13334:1 13335:1 13352:1 13365:5 13371:1 13380:1 13411:1 13416:1 13434:1 13435:1 13439:1 13457:1 13461:2 13462:1 13467:3 13493:1 13510:1 13515:1 13518:1 13529:2 13530:2 13535:2 13536:4 13543:1 13560:1 13565:3 13578:1 13610:2 13612:1 13615:1 13616:1 13620:1 13679:1 13735:2 13750:1 13769:1 13782:1 13795:1 13829:1 13855:1 13898:1 13907:1 13908:1 13917:1 13920:1 13924:3 13926:1 13927:1 13935:1 13951:2 13956:1 13970:1 13971:1 13985:1 13989:1 14009:1 14035:1 14051:1 14087:1 14091:1 14093:1 14099:1 14106:2 14126:1 14135:1 14142:1 14158:1 14183:1 14225:1 14227:2 14271:1 14370:1 14378:1 14401:2 14437:3 14443:2 14445:1 14447:1 14450:1 14451:1 14470:1 14496:1 14505:1 14522:1 14545:2 14551:1 14566:1 14592:1 14596:1 14624:1 14633:1 14662:1 14665:1 14671:1 14678:1 14756:1 14760:3 14761:2 14766:1 14792:2 14793:1 14796:1 14826:1 14828:1 14832:1 14855:1 14867:1 14887:3 14898:2 14909:1 14951:1 14978:1 14992:1 15006:1 15009:1 15020:1 15021:1 15033:2 15058:4 15063:2 15067:1 15073:1 15099:2 15113:1 15118:2 15131:1 15134:1 15165:1 15190:2 15193:1 15194:1 15201:4 15210:1 15222:1 15230:1 15238:1 15239:1 15243:1 15244:5 15245:1 15250:1 15254:1 15255:1 15264:2 15269:4 15302:1 15337:1 15347:1 15356:1 15361:2 15366:3 15388:1 15401:1 15421:1 15425:2 15442:1 15446:2 15461:1 15472:1 15478:1 15502:5 15513:2 15529:1 15538:1 15540:1 15566:13 15587:1 15596:2 15599:1 15620:2 15637:35 15665:3 15697:1 15731:1 15734:2 15758:1 15763:1 15773:1 15774:1 15776:1 15780:2 15784:1 15810:1 15812:1 15815:1 15831:1 15832:1 15833:1 15855:1 15857:1 15876:1 15896:1 15902:5 15934:2 15953:1 15961:2 15969:1 16026:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16107:1 16108:1 16146:1 16151:1 16156:1 16167:2 16168:2 16210:1 16215:1 16217:2 16219:1 16228:1 16230:1 16249:1 16255:8 16289:1 16300:2 16338:1 16343:1 16348:1 16365:1 16366:1 16369:3 16373:1 16375:2 16378:1 16380:1 16395:1 16407:1 16416:1 16426:2 16427:2 16453:1 16492:1 16558:1 16569:2 16582:1 16588:1 16608:1 16617:1 16623:1 16630:1 16646:1 16649:1 16652:1 16654:3 16666:1 16676:1 16683:3 16690:1 16718:1 16721:1 16726:1 16744:1 16766:1 16771:1 16796:4 16845:1 16866:1 16876:1 16877:1 16896:3 16904:1 16911:1 16915:2 16920:1 16921:1 16936:1 16940:1 16954:1 16964:2 16990:1 17018:1 17019:1 17077:1 17098:1 17103:2 17113:1 17117:1 17128:1 17130:1 17194:1 17196:2 17199:1 17201:1 17220:8 17235:1 17244:1 17248:1 17275:1 17294:1 17311:1 17317:1 17334:1 17341:1 17363:1 17369:1 17392:1 17396:2 17404:3 17479:1 17529:2 17531:1 17540:1 17568:1 17578:1 17595:1 17599:2 17609:2 17616:1 17640:1 17661:1 17666:1 17667:2 17714:1 17723:1 17754:3 17760:1 17774:1 17779:1 17782:1 17785:3 17805:1 17806:1 17821:1 17823:1 17874:1 17912:5 17949:1 17968:1 17970:1 17984:1 17998:1 18003:1 18010:1 18027:1 18031:3 18037:2 18052:2 18065:2 18095:1 18101:2071 18105:1 18118:2 18123:1 18157:1 18163:1 18178:3 18215:3 18234:2 18245:1 18262:1 18271:1 18272:1 18298:3 18306:1 18311:3 18314:1 18315:1 18331:1 18361:1 18362:1 18410:3 18439:1 18462:2 18472:1 18481:1 18491:1 18505:1 18512:1 18514:1 18515:1 18557:1 18569:1 18572:1 18584:4 18607:1 18667:1 18669:1 18677:1 18679:2 18761:1 18786:1 18799:1 18801:1 18804:2 18813:2 18825:2 18829:1 18830:3 18834:1 18847:1 18859:6 18881:1 18883:9 18910:1 18911:2 18914:1 18936:1 18947:1 18950:1 18968:1 18972:1 18976:1 18978:1 18980:1 18987:1 18997:2 19005:1 19028:1 19034:2 19055:1 19067:2 19099:1 19106:1 19148:1 19153:1 19187:1 19206:1 19209:8 19220:1 19231:2 19253:1 19279:1 19291:1 19299:1 19307:5 19329:1 19347:1 19359:1 19360:1 19383:1 19391:1 19394:1 19401:1 19402:1 19409:1 19459:4 19464:1 19470:1 19472:1 19488:2 19489:1 19514:1 19523:1 19525:1 19543:1 19545:1 19565:1 19569:1 19582:1 19584:1 19591:6 19638:1 19644:1 19663:8 19677:2 19679:2 19694:1 19695:1 19707:9 19724:1 19747:1 19756:1 19774:1 19818:1 19822:1 19833:2 19853:1 19865:1 19900:1 19910:1 19918:1 19945:3 19957:1 19968:1 19979:1 19986:1 20006:1 20022:1 20024:1 20086:1 20095:1 20099:1 20117:1 20129:1 20145:1 20148:1 20169:1 20210:3 20227:2 20236:1 20240:1 20245:9 20257:3 20260:1 20261:1 20285:1 20289:4 20299:1 20322:1 20327:1 20364:1 20375:2 20378:1 20396:2 20401:1 20402:1 20422:5 20429:1 20432:2 20496:1 20502:1 20505:1 20524:2 20528:1 20533:1 20546:1 20561:1 20569:1 20572:1 20583:1 20620:1 20628:1 20672:1 20679:1 20716:1 20718:4 20720:2 20723:2 20733:1 20741:1 20745:1 20773:1 20782:1 20798:1 20809:1 20810:1 20822:1 20827:1 20828:1 20838:1 20840:3 20843:2 20870:1 20888:1 20927:2 20941:1 20951:1 20952:1 20973:1 20976:9 20978:1 20992:1 21003:1 21019:1 21037:2 21053:1 21080:1 21086:1 21096:2 21108:1 21140:1 21142:4 21150:2 21156:2 21161:1 21209:1 21231:2 21237:1 21239:7 21245:2 21252:1 21266:1 21267:1 21272:1 21279:1 21282:2 21283:1 21291:1 21306:1 21309:2 21314:1 21334:1 21379:4 21380:1 21403:1 21412:1 21423:2 21425:1 21435:1 21439:1 21446:3 21464:1 21474:1 21515:13 21516:1 21518:1 21537:1 21548:1 21556:1 21575:1 21583:1 21594:2 21611:1 21613:2 21620:1 21621:1 21628:2 21642:2 21645:1 21648:5 21664:2 21668:3 21679:2 21704:1 21712:1 21715:1 21718:1 21732:1 21735:1 21743:1 21745:2 21753:1 21754:1 21766:2 21769:1 21781:3 21794:3 21807:2 21819:1 21828:2 21840:1 21860:1 21929:1 21941:3 21949:1 21967:1 21989:1 22021:1 22038:1 22042:1 22049:10 22051:2 22082:1 22099:1 22130:1 22133:2 22165:2 22188:5 22192:1 22223:1 22241:1 22264:2 22284:1 22295:1 22329:1 22346:1 22348:1 22355:1 22414:1 22423:1 22425:3 22431:1 22432:1 22448:1 22452:1 22453:1 22466:1 22481:2 22496:1 22530:1 22534:2 22548:1 22551:1 22556:1 22564:2 22568:2 22571:1 22572:1 22607:1 22619:1 22627:1 22628:1 22646:4 22667:1 22670:1 22677:2 22681:1 22699:2 22706:1 22707:1 22748:2 22757:12 22847:1 22849:1 22856:1 22889:1 22916:1 22924:1 22937:1 22949:1 22951:1 22957:1 22986:1 23000:1 23022:1 23024:2 23059:1 23062:2 23077:2 23104:2 23117:1 23122:1 23126:1 23177:1 23192:1 23207:3 23215:2 23222:1 23224:1 23228:1 23229:2 23284:1 23306:1 23313:1 23328:1 23360:1 23362:1 23396:1 23397:3 23405:1 23413:1 23421:3 23434:1 23492:1 23510:1 23520:1 23568:5 23633:1 23646:1 23655:1 23656:1 23665:1 23666:2 23667:3 23668:1 23689:1 23697:1 23704:1 23707:2 23712:1 23716:1 23722:1 23752:1 23753:2 23766:1 23780:1 23788:1 23791:1 23802:1 23808:1 23841:1 23844:1 23867:4 23870:1 23879:2 23883:1 23885:1 23899:1 23908:1 23921:1 23937:1 23954:1 23971:1 23980:1 23982:1 24003:1 24006:1 24013:1 24020:1 24036:1 24050:1 24052:1 24057:1 24059:1 24083:1 24086:1 24144:2 24155:2 24179:1 24208:1 24214:1 24224:1 24230:1 24234:1 24242:3 24269:2 24274:1 24290:1 24325:1 24339:2 24360:1 24404:2 24406:1 24412:1 24417:1 24420:1 24434:4 24473:2 24476:3 24478:1 24484:1 24488:1 24540:1 24567:1 24572:1 24614:1 24636:1 24637:2 24644:4 24647:3 24653:1 24678:1 24692:1 24697:2 24702:1 24718:1 24728:1 24730:2 24740:2 24751:3 24760:4 24761:1 24772:1 24784:1 24789:1 24797:1 24817:2 24838:1 24841:4 24843:1 24847:1 24854:1 24855:1 24873:2 24897:1 24915:2 24942:4 24967:2 24969:2 24990:1 24999:1 25018:1 25056:1 25071:1 25092:3 25109:1 25117:1 25131:1 25138:2 25140:1 25157:1 25160:2 25175:1 25191:1 25194:1 25217:1 25219:1 25228:1 25230:2 25235:1 25242:1 25256:4 25261:1 25262:1 25268:1 25277:1 25289:1 25323:2 25326:1 25332:1 25348:1 25360:1 25387:1 25410:5 25414:1 25451:1 25478:1 25525:1 25530:1 25537:1 25549:2 25569:1 25571:1 25586:1 25660:2 25681:4 25683:2 25696:2 25698:1 25699:4 25700:2 25705:1 25742:2 25751:2 25773:1 25787:1 25793:2 25805:1 25826:2 25844:1 25852:1 25861:1 25879:1 25910:1 25955:1 25957:1 26008:1 26023:1 26032:1 26042:1 26067:1 26075:1 26120:1 26151:1 26158:1 26216:1 26218:2 26272:1 26285:2 26289:1 26299:1 26301:1 26303:6 26331:1 26397:12 26398:1 26400:3 26401:1 26430:1 26503:1 26505:2 26509:3 26510:1 26548:1 26549:1 26555:1 26557:1 26559:1 26563:1 26569:1 26570:1 26576:1 26581:1 26612:2 26624:1 26641:1 26651:1 26664:2 26689:1 26715:1 26725:1 26765:1 26792:1 26794:1 26807:1 26829:2 26843:1 26869:4 26874:1 26879:1 26889:1 26894:1 26919:1 26954:1 26963:1 26986:1 26989:1 26993:1 27017:1 27025:1 27035:1 27038:2 27071:1 27080:1 27111:2 27145:1 27171:1 27216:1 27217:1 27228:3 27231:1 27248:1 27271:1 27279:2 27280:16 27281:2 27283:1 27287:3 27289:1 27300:1 27315:1 27316:9 27326:1 27329:1 27337:1 27364:1 27368:2 27372:1 27373:1 27394:1 27401:1 27405:2 27414:2 27419:1 27447:2 27448:1 27452:2 27465:1 27492:1 27495:1 27519:1 27549:1 27558:2 27561:1 27590:1 27591:1 27627:1 27633:2 27636:1 27638:4 27641:1 27644:1 27661:1 27666:1 27676:1 27692:1 27705:3 27745:1 27749:1 27772:2 27773:3 27775:1 27776:1 27818:1 27828:1 27834:1 27864:1 27914:3 27926:1 27963:2 27968:1 27971:1 27977:2 27994:2 28018:1 28026:1 28046:1 28053:1 28067:1 28081:1 28106:1 28138:3 28169:2 28172:1 28210:1 28217:1 28222:1 28229:3 28283:1 28292:2 28297:1 28300:1 28314:1 28326:1 28336:1 28343:4 28344:1 28352:1 28364:2 28420:1 28430:4 28437:1 28496:1 28503:1 28507:1 28509:1 28511:3 28523:1 28560:1 28566:1 28575:1 28576:1 28579:1 28587:1 28618:1 16 26:1 27:1 69:1 78:1 83:4 100:1 106:1 137:1 147:1 162:1 165:1 201:1 213:1 235:4 283:1 286:1 296:3 318:1 327:1 336:2 337:2 338:1 364:1 382:1 407:2 418:1 442:3 445:1 449:1 460:1 489:2 504:1 507:1 509:1 514:1 523:1 526:1 552:1 553:1 617:1 627:3 648:2 654:1 661:4 665:1 671:1 676:1 684:1 699:1 707:1 713:1 724:1 735:1 757:2 768:1 803:1 813:1 824:1 852:1 856:1 872:1 915:1 934:2 939:3 941:1 942:2 943:2 944:1 966:1 978:1 985:3 987:1 1015:2 1020:1 1052:1 1062:1 1081:1 1086:1 1108:1 1116:1 1125:1 1171:3 1175:1 1184:1 1192:2 1200:1 1201:4 1217:1 1227:1 1239:3 1259:1 1263:1 1267:1 1269:1 1275:2 1278:1 1279:1 1289:2 1290:2 1302:2 1306:1 1319:1 1335:1 1346:1 1375:1 1379:1 1413:1 1415:2 1438:3 1446:1 1453:1 1464:1 1475:1 1484:1 1497:1 1501:5 1513:1 1521:2 1522:1 1525:2 1541:1 1544:3 1569:1 1572:3 1583:1 1587:1 1591:1 1594:1 1596:1 1601:2 1621:1 1628:1 1632:2 1637:3 1640:2 1654:1 1672:2 1675:3 1678:1 1683:1 1684:1 1722:1 1731:1 1743:2 1745:1 1747:1 1751:1 1758:2 1784:1 1789:1 1790:1 1809:1 1810:1 1820:1 1824:1 1825:1 1831:1 1837:1 1849:1 1853:1 1860:1 1877:1 1882:1 1883:1 1884:1 1895:1 1903:1 1904:4 1914:1 1921:1 1929:1 1930:1 1950:1 1986:1 2006:1 2015:2 2020:2 2022:1 2023:3 2044:1 2049:1 2054:1 2074:3 2075:1 2076:2 2101:1 2108:3 2164:1 2174:1 2227:1 2228:1 2229:1 2230:2 2232:3 2237:1 2238:2 2240:1 2241:1 2244:5 2245:1 2246:1 2248:1 2251:1 2256:4 2259:3 2260:5 2272:1 2273:1 2290:1 2303:1 2327:1 2334:1 2336:1 2354:1 2359:1 2361:1 2374:1 2413:3 2437:1 2448:2 2483:1 2486:1 2488:1 2495:1 2556:1 2582:2 2595:4 2602:1 2607:3 2622:1 2623:1 2630:1 2633:1 2635:1 2637:5 2651:1 2662:1 2670:1 2674:1 2684:3 2689:1 2721:1 2731:2 2738:1 2739:1 2741:4 2747:2 2755:1 2792:4 2804:1 2818:7 2828:6 2857:2 2885:19 2899:1 2903:1 2907:1 2918:1 2956:1 2986:2 2989:1 3037:2 3062:1 3107:1 3117:1 3129:2 3133:4 3151:6 3153:2 3168:1 3173:1 3181:1 3208:1 3218:1 3219:4 3254:1 3281:1 3283:1 3303:1 3330:1 3340:1 3348:1 3361:3 3369:2 3373:1 3388:3 3417:1 3427:2 3441:1 3442:1 3453:3 3491:1 3505:1 3511:1 3512:3 3513:1 3519:1 3521:1 3522:1 3550:1 3569:1 3588:1 3603:1 3606:3 3625:1 3643:1 3651:1 3652:26 3677:2 3678:1 3679:6 3687:2 3688:13 3689:1 3691:3 3697:2 3706:3 3718:1 3721:2 3724:2 3725:2 3740:2 3742:1 3743:1 3769:2 3776:1 3777:3 3783:1 3788:1 3808:1 3813:1 3815:1 3816:3 3826:2 3838:2 3844:1 3853:1 3891:1 3900:1 3901:1 3904:1 3911:1 3915:1 3918:1 3920:1 3925:2 3939:3 3953:1 3993:1 4056:1 4086:1 4090:1 4101:1 4106:1 4109:1 4110:1 4143:1 4153:1 4156:1 4169:2 4234:8 4250:1 4277:1 4302:1 4306:1 4313:2 4322:1 4325:2 4335:2 4347:3 4351:1 4372:1 4380:1 4386:1 4393:1 4448:1 4449:2 4489:1 4515:2 4519:1 4522:2 4533:1 4543:2 4554:1 4563:1 4584:1 4653:1 4654:1 4660:2 4671:1 4685:1 4693:2 4701:1 4782:1 4792:10 4793:1 4824:1 4848:1 4870:1 4893:3 4902:2 4903:1 4905:3 4925:1 4926:1 4927:5 4928:1 4930:1 4933:2 4939:1 4940:14 4941:1 4943:1 4948:2 4949:3 4972:1 4975:2 5045:1 5120:1 5144:3 5145:3 5152:5 5181:1 5195:1 5213:2 5214:14 5227:1 5242:1 5280:1 5317:1 5319:1 5355:1 5359:1 5361:1 5370:1 5375:1 5379:1 5386:1 5390:1 5392:1 5447:1 5448:1 5465:1 5474:1 5479:1 5489:2 5494:1 5497:1 5502:1 5523:1 5525:1 5562:1 5565:2 5588:2 5595:1 5618:1 5620:1 5624:1 5631:1 5656:1 5659:1 5660:1 5662:1 5679:1 5683:1 5701:1 5703:1 5707:1 5731:1 5766:2 5791:1 5794:2 5796:1 5803:1 5860:1 5924:1 5931:1 5932:4 5941:1 5945:1 5971:1 5976:1 6003:1 6042:1 6043:1 6047:1 6057:1 6079:2 6086:1 6087:2 6088:2 6126:1 6127:2 6129:1 6151:3 6153:1 6165:1 6168:1 6181:1 6184:1 6239:1 6242:1 6243:1 6244:1 6247:1 6248:1 6250:1 6251:1 6254:2 6256:3 6262:1 6264:4 6265:1 6267:1 6275:1 6298:1 6358:1 6392:1 6398:1 6410:2 6413:1 6424:1 6450:1 6454:1 6494:1 6507:1 6508:1 6513:2 6523:1 6533:5 6535:1 6539:3 6547:1 6557:1 6566:2 6582:1 6598:2 6603:1 6604:1 6615:1 6639:1 6657:1 6679:1 6685:2 6687:1 6695:3 6699:1 6704:1 6711:2 6731:1 6739:1 6780:1 6783:1 6789:1 6791:1 6799:2 6803:1 6819:1 6857:1 6860:1 6876:2 6896:1 6909:1 6954:2 6970:1 6996:1 7000:5 7010:2 7027:1 7036:1 7049:1 7080:1 7180:1 7196:1 7204:1 7221:3 7267:1 7269:1 7275:3 7290:1 7307:2 7343:2 7360:1 7411:1 7420:1 7430:1 7437:3 7466:1 7477:1 7478:3 7479:2 7496:1 7505:1 7530:1 7531:1 7544:1 7548:29 7549:1 7555:1 7567:6 7568:15 7578:1 7579:1 7586:1 7588:1 7615:1 7616:3 7638:1 7653:1 7668:1 7672:1 7689:1 7742:3 7746:4 7750:1 7786:1 7788:2 7805:1 7826:1 7862:1 7910:3 7921:1 7928:4 7936:1 7951:1 7960:2 7977:1 7983:1 7998:1 8006:11 8026:1 8037:2 8039:1 8049:1 8063:2 8092:1 8098:1 8107:2 8116:1 8127:2 8140:1 8154:1 8167:1 8170:3 8176:2 8194:2 8199:2 8213:1 8214:1 8215:1 8220:1 8231:1 8233:1 8241:2 8251:1 8260:1 8263:2 8269:1 8274:1 8277:1 8294:2 8308:1 8319:3 8336:1 8345:1 8354:1 8357:2 8358:1 8359:3 8360:1 8361:2 8362:3 8370:1 8373:2 8375:1 8381:2 8396:1 8402:1 8412:2 8420:1 8421:1 8428:1 8440:1 8450:1 8455:2 8475:2 8496:2 8517:3 8526:1 8528:1 8531:1 8550:1 8556:1 8583:2 8595:1 8596:1 8603:1 8609:2 8616:2 8617:1 8621:1 8637:1 8667:3 8668:2 8675:3 8677:1 8678:2 8680:3 8687:1 8706:1 8707:1 8709:1 8711:4 8725:1 8743:1 8813:1 8827:2 8853:1 8854:1 8863:1 8880:1 8882:1 8903:1 8919:1 8957:1 8962:2 8991:1 8995:3 9008:1 9015:4 9035:1 9039:1 9042:1 9049:1 9055:1 9071:1 9078:1 9088:2 9091:1 9124:1 9160:1 9240:1 9243:1 9246:1 9252:1 9253:1 9263:1 9264:2 9278:1 9292:1 9294:1 9322:1 9325:1 9328:1 9375:14 9383:1 9408:1 9420:3 9428:2 9437:1 9448:1 9467:2 9484:1 9511:11 9529:1 9569:2 9580:1 9586:3 9587:1 9603:1 9651:1 9655:3 9656:1 9690:5 9696:2 9697:2 9698:1 9706:1 9717:1 9726:2 9730:1 9733:1 9739:1 9744:1 9748:3 9751:1 9753:1 9754:1 9780:3 9785:1 9795:1 9797:2 9817:1 9830:1 9848:1 9853:2 9855:1 9873:8 9875:1 9876:4 9883:1 9885:1 9971:2 9976:1 10018:1 10023:1 10035:4 10055:1 10084:1 10137:2 10149:3 10155:1 10159:1 10163:1 10173:1 10181:1 10191:1 10209:2 10215:2 10227:1 10230:1 10251:1 10258:2 10278:1 10281:1 10297:5 10311:2 10312:3 10314:2 10320:1 10328:1 10330:1 10334:1 10356:1 10369:1 10374:1 10383:3 10396:2 10401:1 10405:2 10413:5 10463:1 10464:1 10475:1 10495:1 10498:1 10499:1 10503:1 10510:1 10524:2 10534:1 10545:1 10588:1 10595:1 10604:1 10620:2 10621:1 10635:4 10649:3 10650:4 10666:1 10699:2 10702:1 10727:2 10730:1 10742:1 10747:1 10767:2 10779:2 10811:1 10839:1 10841:1 10843:2 10860:1 10892:1 10900:1 10904:1 10905:2 10906:1 10926:1 10931:1 10941:1 10961:1 10965:1 10970:1 10971:1 10996:2 11021:1 11039:2 11047:1 11054:1 11073:1 11080:1 11081:3 11112:1 11116:1 11118:4 11120:1 11147:1 11169:1 11172:1 11180:1 11186:2 11198:1 11218:1 11232:1 11238:1 11242:1 11248:3 11261:2 11278:3 11280:2 11299:1 11315:1 11328:3 11336:3 11337:1 11348:1 11358:1 11359:1 11367:1 11370:1 11372:4 11373:1 11374:1 11381:1 11383:4 11392:1 11399:1 11406:3 11422:2 11431:4 11435:1 11441:2 11455:1 11475:1 11476:1 11486:4 11492:1 11498:1 11499:1 11530:1 11534:1 11544:3 11557:1 11575:1 11615:2 11616:1 11633:1 11651:1 11683:1 11734:2 11749:1 11761:1 11764:1 11765:1 11766:1 11786:3 11787:3 11788:14 11797:4 11812:1 11823:1 11837:2 11879:1 11904:1 11930:1 11938:5 11939:2 11955:1 11958:1 12016:3 12019:1 12040:1 12047:1 12054:2 12058:1 12064:1 12069:1 12134:3 12148:1 12187:1 12189:2 12198:1 12203:1 12218:1 12257:1 12323:6 12336:1 12341:1 12345:1 12357:1 12369:2 12370:3 12391:1 12394:1 12420:1 12451:1 12456:2 12485:1 12524:1 12525:2 12550:1 12566:1 12599:1 12652:1 12691:1 12692:2 12702:1 12710:1 12715:1 12733:1 12744:1 12756:2 12768:1 12771:2 12776:1 12792:1 12798:1 12799:1 12829:1 12834:1 12835:2 12870:1 12872:1 12874:1 12881:1 12882:2 12883:1 12884:4 12889:2 12891:1 12892:1 12900:1 12904:2 12915:1 12919:1 12924:1 12928:2 12954:5 12956:1 12964:1 12966:1 12980:1 12997:1 13019:2 13033:2 13034:1 13049:3 13053:1 13065:1 13071:1 13084:1 13095:3 13114:1 13122:3 13131:1 13136:1 13148:1 13149:2 13150:2 13160:1 13178:2 13190:1 13201:2 13243:1 13249:1 13250:1 13251:2 13252:1 13254:1 13278:1 13301:1 13302:1 13310:1 13313:1 13314:1 13318:1 13330:2 13334:1 13335:1 13352:1 13365:5 13371:1 13380:1 13411:1 13416:1 13434:1 13435:1 13439:1 13457:1 13461:2 13462:1 13467:3 13493:1 13510:1 13515:1 13518:1 13529:2 13530:2 13535:2 13536:4 13543:1 13560:1 13565:3 13578:1 13610:2 13612:1 13615:1 13616:1 13620:1 13633:2 13679:1 13735:2 13750:1 13769:1 13782:1 13795:1 13829:1 13855:1 13898:1 13907:1 13908:1 13917:1 13920:1 13924:3 13926:1 13927:1 13935:1 13951:2 13956:1 13970:1 13971:1 13985:1 13989:1 14009:1 14035:1 14051:1 14087:1 14091:1 14093:1 14099:1 14106:2 14126:1 14135:1 14142:1 14158:1 14183:1 14225:1 14227:2 14271:1 14370:1 14378:1 14401:2 14437:3 14443:2 14445:1 14447:1 14450:1 14451:1 14470:1 14496:1 14505:1 14522:1 14545:2 14551:3 14566:1 14592:1 14596:1 14624:1 14633:1 14662:1 14665:1 14671:1 14678:1 14756:1 14760:3 14761:2 14766:1 14792:2 14793:1 14796:1 14826:3 14828:1 14832:1 14855:1 14867:1 14887:3 14898:2 14909:1 14951:2 14978:1 14992:1 15006:1 15009:1 15020:1 15021:1 15033:2 15058:6 15063:3 15067:1 15073:1 15099:2 15113:1 15118:2 15131:3 15134:1 15165:1 15190:2 15193:1 15194:1 15201:4 15210:1 15222:1 15230:1 15238:1 15239:2 15243:1 15244:5 15245:1 15250:1 15254:1 15255:1 15264:2 15269:4 15302:1 15337:1 15347:2 15356:1 15361:2 15366:3 15388:2 15401:1 15421:1 15425:2 15442:1 15446:2 15461:1 15472:1 15478:1 15502:5 15513:2 15529:1 15538:1 15540:1 15566:14 15587:1 15596:2 15599:1 15620:2 15637:37 15665:3 15697:1 15731:1 15734:2 15758:1 15763:1 15773:1 15774:2 15776:1 15780:2 15784:1 15797:1 15810:1 15812:1 15815:1 15831:1 15832:1 15833:1 15855:1 15857:1 15876:1 15896:1 15902:5 15934:2 15953:1 15961:2 15969:1 16026:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16107:1 16108:1 16137:1 16146:1 16151:3 16156:1 16167:2 16168:2 16187:2 16210:1 16215:1 16217:2 16219:1 16228:1 16230:1 16249:1 16255:8 16289:1 16300:2 16338:1 16343:1 16348:1 16365:1 16366:1 16369:3 16373:1 16375:2 16378:1 16380:1 16395:1 16407:1 16416:1 16426:2 16427:2 16453:1 16492:1 16558:1 16569:2 16582:1 16588:1 16608:1 16617:1 16623:1 16630:1 16646:1 16649:1 16652:1 16654:3 16666:1 16676:1 16683:3 16690:1 16718:1 16721:1 16726:1 16744:1 16766:2 16771:1 16796:4 16845:1 16866:1 16876:1 16877:1 16896:3 16902:1 16904:1 16911:1 16915:2 16920:1 16921:1 16936:1 16940:1 16954:1 16964:2 16990:1 17018:1 17019:2 17077:1 17098:1 17103:2 17113:1 17117:1 17128:1 17130:1 17194:1 17196:2 17199:1 17201:1 17220:8 17235:1 17244:1 17248:1 17275:1 17285:1 17294:1 17311:1 17317:1 17334:1 17341:1 17363:1 17369:1 17392:1 17396:2 17404:4 17479:1 17529:2 17531:1 17540:1 17568:1 17578:1 17595:1 17599:2 17609:2 17616:1 17640:1 17661:1 17666:1 17667:2 17714:1 17723:1 17754:3 17760:1 17774:3 17779:1 17782:1 17785:3 17805:1 17806:1 17821:1 17823:1 17874:1 17912:6 17949:1 17961:1 17968:1 17970:1 17984:1 17998:1 18003:1 18010:1 18027:1 18031:3 18037:2 18052:2 18065:2 18095:1 18101:2132 18105:1 18118:2 18123:1 18157:1 18163:1 18178:3 18188:1 18215:3 18234:2 18245:1 18262:1 18271:2 18272:1 18298:3 18306:1 18311:3 18314:1 18315:1 18331:1 18361:1 18362:1 18410:3 18439:1 18462:2 18472:1 18481:1 18491:1 18505:1 18512:1 18514:1 18515:1 18557:1 18569:2 18572:1 18584:4 18607:1 18667:1 18669:1 18677:1 18679:2 18761:1 18786:1 18799:1 18801:1 18804:2 18813:2 18825:2 18829:1 18830:3 18834:1 18847:1 18859:8 18881:1 18883:10 18910:1 18911:3 18914:1 18936:1 18947:1 18950:3 18968:1 18972:1 18976:1 18978:1 18980:1 18983:1 18987:1 18997:2 19005:1 19028:1 19034:2 19055:1 19067:2 19099:1 19103:1 19106:1 19148:1 19153:1 19187:1 19206:1 19209:8 19220:1 19231:2 19253:1 19279:1 19291:1 19299:1 19307:5 19329:1 19347:1 19359:1 19360:1 19383:1 19391:1 19394:1 19401:1 19402:1 19409:1 19459:4 19464:1 19470:1 19472:1 19488:2 19489:1 19514:1 19523:1 19525:1 19543:1 19545:1 19565:1 19569:1 19582:1 19584:1 19591:6 19638:1 19644:1 19663:8 19669:1 19677:2 19679:2 19694:1 19695:1 19707:9 19724:1 19747:1 19756:1 19774:1 19818:1 19822:1 19833:2 19853:3 19865:1 19900:2 19910:1 19918:1 19945:3 19957:1 19968:1 19979:1 19986:1 20006:1 20022:1 20024:1 20078:2 20086:1 20095:1 20099:1 20117:1 20129:1 20145:1 20148:1 20169:1 20210:3 20227:2 20236:1 20240:1 20245:9 20257:3 20260:1 20261:1 20285:1 20289:4 20299:1 20322:3 20327:1 20364:1 20375:2 20378:1 20396:2 20401:1 20402:1 20422:5 20429:1 20432:2 20453:1 20496:1 20502:1 20505:1 20524:2 20528:1 20533:1 20538:1 20546:3 20561:1 20569:1 20572:1 20583:1 20620:1 20628:1 20672:1 20679:1 20712:1 20716:1 20718:4 20720:2 20723:2 20733:3 20741:1 20745:1 20773:1 20782:1 20786:1 20798:1 20809:1 20810:1 20822:1 20827:1 20828:1 20838:1 20840:5 20843:2 20870:1 20888:1 20927:2 20941:1 20951:1 20952:1 20973:1 20976:9 20978:1 20992:1 20998:1 21003:1 21019:1 21037:2 21053:1 21080:1 21084:2 21086:1 21096:2 21108:1 21140:1 21142:4 21150:2 21156:2 21161:1 21209:1 21231:2 21237:1 21239:7 21245:2 21252:1 21266:1 21267:1 21269:1 21272:1 21279:1 21282:2 21283:1 21291:1 21306:1 21309:2 21314:1 21334:2 21379:4 21380:1 21403:1 21412:1 21423:2 21425:1 21435:1 21439:1 21446:3 21464:1 21474:1 21515:14 21516:1 21518:1 21537:1 21548:1 21556:1 21575:1 21583:1 21594:2 21611:1 21613:2 21620:1 21621:1 21628:2 21642:2 21645:1 21648:5 21664:2 21668:3 21679:2 21704:1 21712:1 21715:1 21718:1 21732:1 21735:1 21743:1 21745:2 21753:1 21754:1 21766:2 21769:1 21781:3 21794:3 21807:2 21819:1 21828:2 21840:1 21860:1 21929:1 21941:3 21949:1 21967:1 21989:1 22021:1 22038:1 22042:1 22049:10 22051:2 22082:1 22099:1 22130:1 22133:2 22165:2 22188:5 22192:1 22223:1 22241:1 22264:2 22284:1 22295:1 22329:1 22346:1 22348:1 22355:1 22414:1 22423:1 22425:3 22431:1 22432:1 22448:1 22452:1 22453:1 22466:1 22481:2 22496:1 22530:1 22534:2 22548:1 22551:1 22556:1 22564:2 22568:2 22571:1 22572:1 22607:1 22619:1 22627:3 22628:1 22646:4 22667:1 22670:1 22672:1 22677:2 22681:1 22699:2 22706:1 22707:1 22748:3 22755:1 22757:13 22847:1 22849:1 22856:1 22889:1 22916:1 22924:1 22937:1 22949:1 22951:1 22957:1 22986:1 23000:1 23022:1 23024:2 23059:1 23062:2 23077:2 23104:4 23117:1 23122:1 23126:1 23177:1 23192:1 23207:3 23215:2 23222:1 23224:1 23228:1 23229:2 23284:1 23306:1 23313:1 23328:1 23360:1 23362:1 23396:1 23397:3 23405:1 23413:1 23421:3 23434:1 23492:1 23510:3 23520:1 23521:1 23568:5 23633:1 23646:1 23655:1 23656:1 23665:1 23666:2 23667:3 23668:1 23689:1 23697:1 23704:1 23707:2 23712:1 23716:3 23722:1 23752:1 23753:2 23766:1 23780:1 23788:1 23791:1 23802:1 23808:1 23841:1 23844:1 23867:4 23870:1 23879:2 23883:1 23885:1 23899:1 23908:1 23921:1 23937:1 23954:1 23971:1 23980:1 23982:1 24003:1 24006:1 24013:1 24020:1 24036:1 24050:1 24052:1 24057:1 24059:1 24083:1 24086:1 24106:2 24144:2 24155:2 24179:1 24208:1 24214:1 24224:1 24230:1 24234:1 24242:3 24269:2 24274:1 24275:1 24290:1 24325:1 24339:2 24360:1 24404:2 24406:1 24412:1 24417:1 24420:1 24434:4 24473:2 24476:3 24478:1 24484:1 24488:2 24540:1 24567:1 24572:1 24614:1 24636:1 24637:2 24644:4 24647:3 24653:1 24678:1 24692:1 24697:2 24702:1 24718:1 24728:1 24730:3 24740:2 24751:3 24760:4 24761:1 24772:1 24784:1 24789:1 24797:1 24817:2 24838:1 24841:4 24843:1 24847:1 24854:1 24855:1 24873:2 24897:1 24915:3 24942:4 24967:2 24969:2 24990:1 24999:1 25018:1 25056:1 25071:1 25092:3 25109:1 25117:1 25131:1 25138:2 25140:1 25157:1 25160:2 25175:1 25191:1 25194:1 25217:1 25219:1 25228:1 25230:2 25235:1 25242:1 25256:4 25261:1 25262:1 25268:1 25277:1 25289:1 25323:2 25326:1 25332:1 25348:1 25360:1 25387:3 25410:6 25414:1 25451:1 25478:1 25525:1 25530:1 25537:1 25549:2 25569:1 25571:1 25586:1 25660:2 25681:4 25683:2 25696:2 25698:1 25699:4 25700:3 25703:1 25705:1 25742:2 25751:2 25773:1 25787:1 25793:2 25805:1 25826:2 25844:1 25852:1 25861:1 25879:1 25910:1 25955:1 25957:1 26008:1 26023:1 26032:1 26042:1 26067:1 26075:1 26120:2 26151:1 26158:1 26216:1 26218:2 26272:1 26285:2 26289:2 26299:1 26301:1 26303:7 26331:1 26397:13 26398:1 26400:3 26401:1 26430:1 26503:2 26505:2 26509:3 26510:1 26548:1 26549:1 26555:1 26557:1 26559:1 26563:1 26569:1 26570:1 26576:1 26581:1 26612:2 26624:1 26641:1 26651:1 26664:2 26689:1 26715:1 26725:1 26765:1 26792:1 26794:1 26807:3 26829:2 26843:1 26869:4 26874:1 26879:1 26889:1 26894:1 26919:1 26954:3 26963:3 26986:1 26989:1 26993:1 27017:1 27025:1 27035:1 27038:2 27071:1 27080:1 27111:2 27145:1 27171:1 27216:1 27217:1 27228:3 27231:1 27248:1 27271:1 27279:2 27280:19 27281:2 27283:2 27287:3 27289:1 27300:1 27315:1 27316:9 27326:1 27329:1 27337:1 27364:1 27368:2 27372:1 27373:1 27394:1 27401:1 27405:4 27414:2 27419:1 27447:2 27448:1 27452:2 27465:1 27492:1 27495:1 27496:1 27519:1 27549:1 27558:2 27561:1 27590:1 27591:1 27627:1 27633:2 27636:1 27638:4 27641:1 27644:1 27661:1 27666:1 27676:1 27692:3 27705:3 27745:1 27749:1 27772:3 27773:5 27775:1 27776:1 27805:2 27818:1 27828:1 27834:1 27864:1 27879:1 27914:3 27922:1 27926:1 27963:2 27968:1 27971:1 27977:2 27994:2 28018:1 28026:1 28046:1 28053:1 28067:1 28081:1 28106:1 28138:3 28169:2 28172:1 28210:1 28217:1 28222:1 28229:3 28283:1 28292:2 28297:1 28300:1 28314:1 28326:1 28336:1 28343:6 28344:1 28352:1 28364:2 28420:1 28430:4 28437:1 28496:1 28503:1 28507:1 28509:1 28511:3 28523:1 28560:1 28566:1 28575:1 28576:1 28579:1 28587:1 28618:1 16 26:1 27:1 69:1 78:1 83:4 100:1 106:1 137:1 147:1 162:1 165:1 201:1 213:1 235:4 254:1 283:1 286:1 296:3 318:1 327:1 336:2 337:2 338:1 364:1 382:1 407:2 418:1 442:3 445:1 449:1 460:1 478:1 489:2 504:1 507:1 509:1 514:1 523:1 526:1 552:1 553:1 567:1 617:1 627:3 648:2 654:1 661:4 665:1 671:1 676:1 684:1 699:1 707:1 713:1 724:1 735:1 757:2 768:1 772:1 803:1 805:1 813:1 824:1 826:1 852:1 856:1 872:1 902:1 915:1 934:2 939:3 941:1 942:3 943:2 944:2 966:1 978:1 985:3 987:2 1015:2 1020:1 1052:1 1062:1 1081:1 1086:1 1108:1 1116:1 1125:1 1171:3 1175:1 1184:1 1192:2 1200:1 1201:4 1217:1 1227:1 1239:3 1259:1 1263:1 1267:1 1269:1 1275:3 1278:1 1279:1 1289:2 1290:2 1302:2 1306:1 1319:1 1335:2 1346:2 1375:1 1379:1 1413:1 1415:2 1438:3 1446:1 1448:1 1453:1 1464:1 1475:1 1484:1 1497:1 1501:5 1513:1 1521:2 1522:1 1525:2 1531:1 1541:1 1544:3 1569:1 1572:3 1583:1 1587:1 1591:1 1594:1 1596:1 1601:2 1621:1 1628:1 1632:3 1637:3 1640:2 1654:1 1672:3 1675:3 1678:1 1683:1 1684:1 1722:1 1731:1 1733:1 1743:2 1745:1 1747:1 1751:1 1758:2 1784:1 1789:1 1790:1 1809:1 1810:1 1820:1 1824:1 1825:1 1831:1 1837:1 1849:1 1853:1 1860:1 1877:1 1882:1 1883:1 1884:1 1895:1 1903:1 1904:4 1914:1 1921:1 1929:1 1930:2 1950:1 1986:1 2006:1 2015:2 2020:2 2022:1 2023:3 2044:1 2049:1 2054:2 2074:3 2075:1 2076:2 2101:1 2108:3 2164:1 2174:1 2227:1 2228:1 2229:1 2230:2 2232:3 2237:1 2238:2 2240:1 2241:1 2244:5 2245:1 2246:2 2248:1 2251:1 2256:4 2259:3 2260:5 2272:1 2273:1 2290:1 2303:1 2327:1 2331:1 2334:1 2336:1 2354:1 2359:1 2361:1 2374:1 2413:3 2437:1 2448:2 2483:1 2486:1 2488:1 2495:1 2556:1 2582:2 2595:4 2602:1 2607:3 2622:1 2623:1 2630:1 2633:1 2635:1 2637:5 2651:1 2662:2 2670:1 2674:1 2677:1 2684:3 2689:1 2690:1 2721:1 2731:2 2738:1 2739:1 2741:4 2747:2 2755:1 2792:4 2799:1 2804:1 2818:8 2828:7 2857:2 2869:1 2885:19 2899:1 2903:1 2907:1 2918:1 2956:1 2986:2 2989:1 3037:3 3062:1 3107:1 3117:1 3129:2 3133:4 3151:7 3153:2 3168:1 3173:1 3181:1 3208:1 3218:1 3219:4 3254:1 3281:1 3283:1 3293:1 3303:1 3330:1 3340:1 3348:1 3361:3 3369:2 3373:1 3388:3 3417:1 3427:2 3441:1 3442:1 3453:3 3491:1 3505:1 3511:1 3512:3 3513:1 3519:1 3521:1 3522:1 3543:1 3550:1 3569:1 3588:1 3603:1 3606:3 3625:1 3643:1 3651:1 3652:27 3677:2 3678:1 3679:6 3681:1 3687:2 3688:14 3689:1 3691:3 3697:2 3706:3 3709:1 3718:1 3721:2 3724:2 3725:2 3740:2 3742:1 3743:1 3769:2 3776:1 3777:3 3783:1 3788:1 3808:1 3813:1 3815:1 3816:3 3826:2 3838:2 3844:1 3853:1 3866:1 3891:1 3900:1 3901:1 3904:1 3905:1 3911:1 3915:1 3918:1 3920:1 3925:3 3939:3 3953:1 3993:1 4052:1 4056:1 4086:1 4090:1 4101:1 4106:1 4109:1 4110:1 4137:1 4143:1 4153:1 4156:1 4169:2 4209:1 4234:8 4250:1 4277:1 4302:1 4306:1 4313:4 4322:1 4325:2 4335:2 4347:3 4351:1 4372:1 4380:1 4386:1 4393:1 4448:1 4449:2 4489:1 4515:2 4519:1 4522:2 4533:1 4543:2 4554:1 4563:1 4584:1 4653:1 4654:1 4660:2 4671:1 4685:1 4693:2 4701:1 4782:1 4792:11 4793:1 4824:1 4848:1 4870:1 4893:3 4902:2 4903:1 4905:3 4925:1 4926:2 4927:5 4928:1 4930:1 4933:2 4939:1 4940:14 4941:1 4943:1 4948:2 4949:3 4972:1 4975:2 5031:1 5045:1 5120:1 5144:3 5145:3 5152:5 5181:1 5195:1 5213:2 5214:14 5227:1 5242:1 5280:1 5317:1 5319:1 5355:1 5359:1 5361:1 5370:1 5375:1 5379:1 5386:1 5390:1 5392:1 5433:1 5447:1 5448:1 5465:1 5474:1 5479:1 5489:2 5494:1 5497:1 5502:1 5523:1 5525:1 5562:1 5565:2 5588:2 5595:1 5618:1 5620:1 5624:1 5631:1 5646:1 5656:1 5659:1 5660:1 5662:1 5679:1 5683:1 5701:1 5703:1 5707:1 5731:1 5766:2 5791:1 5794:2 5796:1 5803:1 5860:1 5903:1 5924:1 5931:1 5932:4 5941:1 5945:2 5971:1 5976:1 6003:1 6042:1 6043:1 6047:1 6057:1 6079:3 6086:1 6087:2 6088:2 6126:1 6127:2 6129:1 6151:3 6153:1 6165:1 6168:1 6181:1 6184:1 6239:1 6242:1 6243:1 6244:1 6247:1 6248:1 6250:1 6251:1 6254:2 6256:3 6262:1 6264:4 6265:1 6266:1 6267:1 6275:1 6298:1 6358:1 6392:1 6398:1 6410:2 6413:1 6424:1 6450:1 6454:1 6494:1 6507:1 6508:1 6513:2 6523:1 6533:5 6535:1 6539:3 6547:1 6557:1 6558:1 6566:2 6582:1 6598:2 6603:1 6604:1 6615:1 6639:1 6657:1 6679:1 6685:2 6687:1 6695:3 6699:1 6704:1 6711:2 6731:1 6739:1 6780:1 6783:1 6789:1 6791:1 6799:2 6803:1 6819:1 6857:1 6860:1 6876:2 6896:1 6909:1 6954:2 6970:1 6974:1 6996:1 7000:5 7010:2 7027:1 7036:1 7049:1 7080:1 7180:1 7196:1 7204:1 7221:3 7267:1 7269:1 7275:3 7290:2 7307:2 7343:2 7360:1 7411:1 7420:1 7430:1 7433:1 7437:3 7446:1 7466:1 7477:2 7478:4 7479:2 7496:1 7505:1 7530:1 7531:1 7544:1 7548:30 7549:1 7555:1 7567:7 7568:15 7578:1 7579:1 7586:1 7588:1 7615:1 7616:3 7638:1 7653:1 7668:1 7672:1 7689:2 7742:3 7746:5 7750:1 7786:1 7788:3 7805:1 7826:1 7858:1 7862:1 7910:3 7921:1 7928:5 7936:1 7951:1 7960:2 7973:1 7977:1 7983:1 7998:1 8006:12 8026:1 8037:2 8039:1 8049:1 8063:2 8092:1 8098:1 8107:2 8116:1 8127:2 8140:1 8154:1 8167:1 8170:3 8176:3 8194:2 8199:2 8213:2 8214:1 8215:1 8220:1 8231:1 8233:2 8241:2 8251:1 8260:2 8263:2 8269:1 8274:1 8277:1 8294:2 8308:1 8319:3 8336:1 8342:1 8345:1 8354:1 8357:2 8358:1 8359:3 8360:1 8361:2 8362:3 8370:1 8373:2 8375:1 8381:2 8396:1 8402:1 8412:2 8420:1 8421:1 8428:1 8440:1 8450:1 8455:2 8475:2 8496:4 8517:3 8526:1 8528:1 8531:1 8550:1 8556:1 8583:2 8595:1 8596:1 8603:1 8609:2 8616:2 8617:1 8621:1 8637:1 8667:3 8668:2 8675:3 8677:1 8678:2 8680:3 8687:2 8706:1 8707:1 8709:1 8711:4 8725:1 8743:1 8748:1 8813:1 8827:2 8853:2 8854:1 8863:1 8880:1 8882:1 8903:1 8919:1 8957:1 8962:3 8991:1 8995:3 9008:1 9015:5 9035:1 9039:1 9042:1 9049:1 9055:1 9071:1 9078:1 9088:2 9091:1 9110:1 9124:1 9160:1 9240:1 9243:1 9246:1 9252:1 9253:1 9263:1 9264:2 9278:1 9292:1 9294:1 9298:1 9322:1 9325:1 9328:1 9375:14 9383:1 9408:1 9420:3 9428:2 9437:1 9448:1 9467:2 9484:1 9511:11 9529:1 9535:1 9569:4 9580:1 9586:3 9587:1 9603:1 9614:1 9651:1 9655:3 9656:1 9690:5 9696:2 9697:3 9698:1 9706:1 9707:1 9717:1 9726:2 9730:1 9733:1 9739:1 9744:1 9748:3 9751:1 9753:1 9754:1 9780:3 9785:1 9795:1 9797:2 9817:1 9830:1 9848:1 9853:2 9855:1 9873:8 9875:1 9876:4 9883:1 9885:1 9971:2 9976:1 10018:1 10023:1 10035:4 10055:1 10084:1 10137:2 10149:3 10155:1 10159:1 10163:1 10173:1 10181:1 10191:1 10209:2 10215:3 10227:1 10230:1 10251:1 10258:2 10278:2 10281:1 10297:5 10311:2 10312:3 10314:2 10320:1 10328:1 10330:1 10334:1 10356:1 10369:1 10374:1 10383:4 10396:2 10401:1 10405:2 10413:5 10463:1 10464:1 10470:1 10475:1 10495:2 10498:1 10499:1 10503:1 10510:1 10524:2 10534:1 10545:1 10588:1 10595:1 10604:1 10620:2 10621:1 10635:5 10649:3 10650:4 10666:1 10699:3 10702:1 10727:2 10730:1 10740:1 10742:1 10747:1 10767:2 10779:2 10811:1 10839:1 10841:1 10843:2 10860:1 10892:1 10900:1 10904:1 10905:3 10906:1 10926:1 10931:1 10941:1 10961:1 10965:1 10970:1 10971:1 10996:2 11021:2 11039:2 11047:1 11054:1 11073:1 11080:1 11081:3 11112:1 11116:1 11118:5 11120:1 11147:1 11169:1 11172:1 11180:1 11186:2 11198:1 11218:1 11232:1 11238:1 11242:1 11248:3 11261:2 11278:3 11280:2 11299:1 11315:1 11328:3 11336:4 11337:1 11348:1 11358:1 11359:1 11367:1 11370:1 11372:5 11373:1 11374:1 11381:1 11383:5 11392:1 11399:1 11406:4 11422:2 11431:4 11435:1 11441:2 11455:1 11475:1 11476:1 11486:4 11492:1 11498:1 11499:1 11530:1 11534:1 11544:3 11557:1 11563:1 11575:1 11615:2 11616:1 11633:1 11651:1 11683:1 11691:1 11734:2 11749:1 11761:1 11764:1 11765:1 11766:1 11786:3 11787:3 11788:14 11797:4 11812:1 11823:1 11837:2 11879:1 11904:1 11930:1 11938:5 11939:2 11955:1 11958:2 12016:3 12019:1 12040:1 12047:1 12054:2 12058:1 12064:1 12069:1 12115:1 12134:3 12148:1 12187:1 12189:2 12198:1 12203:1 12218:1 12257:1 12323:6 12336:1 12341:1 12345:1 12357:1 12369:2 12370:3 12391:1 12394:1 12420:1 12451:1 12456:2 12485:1 12505:1 12524:1 12525:2 12550:1 12566:1 12599:1 12652:1 12671:1 12691:1 12692:2 12702:1 12710:1 12715:1 12719:1 12733:1 12744:1 12756:2 12768:1 12771:2 12776:1 12792:1 12798:1 12799:1 12829:1 12834:1 12835:2 12870:1 12872:1 12874:1 12881:1 12882:2 12883:1 12884:5 12889:2 12891:1 12892:1 12900:1 12904:2 12915:1 12919:1 12924:1 12928:2 12954:6 12956:1 12964:1 12966:1 12980:1 12997:1 13019:2 13033:2 13034:1 13049:3 13053:1 13065:1 13071:1 13084:1 13095:3 13114:1 13122:3 13131:1 13136:1 13148:1 13149:2 13150:2 13160:1 13174:1 13178:2 13190:1 13201:2 13237:1 13243:1 13249:1 13250:1 13251:2 13252:1 13254:1 13278:1 13301:1 13302:1 13310:1 13313:1 13314:1 13318:1 13330:2 13334:1 13335:1 13352:1 13365:6 13371:1 13380:1 13411:1 13416:1 13434:1 13435:1 13439:1 13457:1 13461:2 13462:1 13467:3 13493:1 13510:1 13515:1 13518:1 13529:2 13530:2 13535:2 13536:4 13543:1 13560:1 13565:3 13578:1 13589:1 13610:2 13612:1 13615:1 13616:1 13620:1 13633:2 13679:1 13735:2 13750:1 13769:1 13782:1 13795:1 13829:1 13855:1 13898:1 13907:1 13908:1 13917:1 13920:1 13924:3 13926:1 13927:1 13935:1 13951:2 13956:1 13970:1 13971:1 13985:1 13989:1 14009:1 14035:1 14051:1 14087:1 14091:1 14093:1 14099:1 14106:4 14126:1 14135:1 14142:1 14154:1 14158:1 14183:1 14225:1 14227:3 14271:1 14370:1 14378:1 14401:2 14437:3 14443:2 14445:1 14447:1 14450:1 14451:1 14470:1 14475:1 14496:1 14505:1 14522:1 14545:2 14551:3 14566:1 14592:1 14596:1 14624:1 14633:1 14662:1 14665:1 14671:1 14678:1 14756:1 14760:3 14761:2 14766:1 14792:4 14793:1 14796:1 14826:3 14828:1 14832:1 14855:1 14867:1 14870:1 14887:3 14898:2 14906:1 14909:1 14951:2 14978:1 14992:1 15006:1 15009:1 15020:1 15021:1 15033:2 15058:6 15063:4 15067:1 15073:1 15099:2 15113:1 15118:2 15131:3 15134:1 15165:1 15190:2 15193:1 15194:1 15201:4 15210:1 15222:1 15230:1 15238:1 15239:3 15243:1 15244:5 15245:1 15250:1 15254:1 15255:1 15264:2 15269:4 15302:1 15337:1 15347:2 15356:1 15361:2 15366:3 15388:2 15401:1 15421:1 15425:2 15442:1 15446:2 15461:1 15472:1 15478:1 15502:6 15513:2 15529:1 15538:1 15540:1 15554:1 15566:14 15587:1 15596:2 15599:1 15620:2 15637:39 15665:3 15697:1 15731:1 15734:2 15758:1 15763:1 15773:1 15774:3 15776:1 15780:2 15784:1 15797:1 15810:1 15812:1 15815:1 15831:1 15832:1 15833:1 15855:1 15857:1 15876:1 15896:1 15902:5 15934:2 15953:1 15961:2 15969:1 15988:1 16026:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16107:1 16108:1 16133:1 16137:1 16146:1 16151:3 16156:1 16167:2 16168:2 16187:3 16210:1 16215:1 16217:2 16219:1 16228:1 16230:1 16249:1 16255:8 16289:1 16300:2 16311:1 16338:1 16343:1 16348:1 16365:1 16366:1 16369:3 16373:1 16375:2 16378:1 16380:1 16395:1 16407:1 16416:1 16426:2 16427:2 16453:1 16492:1 16558:1 16569:2 16571:1 16582:1 16588:1 16608:1 16609:1 16617:1 16623:1 16630:1 16646:1 16649:1 16652:1 16654:3 16666:1 16676:1 16683:3 16690:1 16718:1 16721:1 16726:1 16744:1 16766:2 16771:1 16777:1 16796:4 16845:1 16866:1 16876:1 16877:1 16896:3 16899:1 16902:1 16904:1 16911:1 16915:2 16920:1 16921:1 16936:1 16940:1 16954:1 16964:2 16990:1 17018:1 17019:2 17077:1 17098:1 17103:2 17113:1 17117:1 17128:1 17130:1 17187:1 17194:1 17196:2 17199:2 17201:1 17220:8 17235:1 17244:1 17248:1 17275:1 17285:1 17294:1 17311:1 17317:1 17334:1 17341:1 17363:1 17369:1 17392:1 17396:2 17404:4 17479:1 17529:2 17531:1 17540:1 17568:1 17578:1 17595:1 17599:2 17609:2 17616:1 17640:1 17661:1 17666:1 17667:2 17714:1 17723:1 17754:3 17760:1 17774:3 17779:1 17782:1 17785:3 17805:1 17806:1 17821:1 17823:1 17856:1 17874:1 17912:7 17923:1 17949:1 17961:1 17968:1 17970:1 17978:1 17984:2 17998:1 18003:1 18010:1 18027:1 18031:3 18037:2 18052:2 18065:2 18095:1 18101:2238 18105:1 18118:4 18123:2 18157:1 18163:1 18178:3 18188:1 18215:3 18234:2 18245:1 18262:1 18271:3 18272:1 18298:3 18306:1 18311:3 18314:1 18315:1 18331:1 18361:1 18362:1 18408:1 18410:3 18439:1 18462:2 18472:1 18481:1 18491:1 18493:1 18505:1 18512:1 18514:1 18515:1 18557:1 18569:2 18572:1 18584:4 18599:1 18607:1 18667:1 18669:1 18677:1 18679:2 18731:1 18761:1 18786:2 18799:1 18801:1 18804:2 18813:3 18825:2 18829:1 18830:3 18834:1 18847:1 18859:10 18881:1 18883:11 18910:1 18911:3 18914:1 18936:1 18947:1 18950:3 18968:1 18972:1 18976:1 18978:1 18980:1 18983:1 18987:1 18997:2 19005:1 19028:1 19034:2 19055:1 19067:3 19099:1 19103:1 19106:1 19148:1 19153:1 19187:1 19206:1 19209:8 19212:1 19220:1 19231:2 19253:1 19279:1 19291:1 19299:1 19305:1 19307:5 19329:1 19347:1 19359:1 19360:1 19383:1 19391:1 19394:1 19401:1 19402:1 19409:1 19459:4 19464:1 19470:1 19472:1 19488:2 19489:1 19514:1 19523:1 19525:1 19543:1 19545:1 19565:1 19569:1 19582:1 19584:1 19591:6 19638:1 19644:1 19663:8 19669:1 19677:2 19679:2 19694:1 19695:1 19707:9 19724:1 19747:1 19756:1 19774:1 19786:1 19818:1 19822:1 19833:2 19853:3 19865:1 19900:2 19910:1 19918:1 19945:3 19957:1 19968:1 19979:1 19986:1 20006:1 20022:1 20024:1 20078:2 20086:1 20095:1 20099:1 20117:1 20120:1 20129:1 20143:1 20145:1 20148:1 20169:1 20210:3 20227:2 20236:1 20240:1 20245:9 20248:1 20257:3 20260:1 20261:1 20285:2 20289:4 20299:1 20322:3 20327:1 20335:1 20364:2 20375:2 20378:1 20396:2 20401:1 20402:1 20422:6 20429:1 20432:2 20438:1 20453:1 20496:1 20502:1 20505:1 20524:2 20528:1 20533:1 20538:1 20546:3 20561:1 20567:1 20569:1 20572:1 20583:1 20620:1 20628:1 20672:1 20679:1 20712:1 20716:1 20718:4 20720:2 20723:2 20733:3 20741:1 20745:1 20773:1 20782:1 20786:1 20798:1 20809:1 20810:1 20822:1 20827:1 20828:1 20838:1 20840:5 20843:2 20870:1 20888:1 20927:2 20934:1 20941:1 20951:1 20952:1 20973:2 20976:9 20978:1 20992:1 20998:1 21003:1 21014:1 21019:1 21037:3 21053:1 21080:1 21084:2 21086:1 21090:1 21096:2 21108:1 21140:1 21142:4 21150:2 21156:2 21161:1 21209:1 21231:2 21237:1 21239:7 21245:2 21252:1 21255:1 21266:2 21267:1 21269:1 21272:1 21279:1 21282:2 21283:1 21291:1 21306:2 21309:2 21314:1 21334:2 21379:4 21380:1 21403:1 21412:1 21423:2 21425:1 21435:1 21439:1 21446:4 21464:1 21474:1 21515:14 21516:1 21518:1 21537:1 21548:1 21556:1 21575:1 21583:1 21594:2 21611:1 21613:2 21620:1 21621:1 21628:2 21642:2 21645:1 21648:5 21664:2 21668:3 21679:2 21704:1 21712:1 21715:1 21718:1 21732:1 21735:1 21743:1 21745:2 21753:1 21754:1 21766:2 21769:1 21781:4 21794:3 21807:2 21819:1 21828:2 21840:1 21860:1 21873:1 21929:1 21941:3 21946:1 21949:1 21967:1 21989:1 22021:1 22038:1 22042:1 22049:10 22051:2 22082:1 22099:1 22130:1 22133:2 22165:2 22188:5 22192:1 22223:1 22241:1 22264:2 22284:1 22295:2 22329:1 22346:1 22348:1 22355:1 22414:1 22423:1 22425:3 22431:1 22432:1 22448:1 22452:1 22453:1 22463:1 22466:1 22478:1 22481:2 22496:1 22530:1 22534:2 22548:1 22551:1 22556:1 22564:2 22568:2 22571:1 22572:1 22607:1 22619:1 22627:3 22628:1 22646:5 22654:1 22667:1 22670:1 22672:2 22677:2 22681:1 22699:2 22706:1 22707:2 22708:1 22748:3 22755:1 22757:14 22837:1 22847:1 22849:1 22856:1 22889:1 22916:1 22924:1 22937:1 22949:1 22951:1 22957:1 22986:1 23000:1 23022:1 23024:2 23059:1 23062:2 23077:2 23104:4 23117:1 23122:1 23126:1 23177:1 23192:1 23207:3 23215:2 23222:1 23224:1 23227:1 23228:1 23229:2 23246:1 23284:1 23306:1 23313:1 23328:1 23360:1 23362:1 23396:1 23397:3 23405:1 23413:1 23421:3 23434:1 23492:1 23510:3 23520:1 23521:1 23568:5 23633:1 23646:1 23655:1 23656:1 23665:1 23666:2 23667:4 23668:1 23689:1 23697:1 23704:1 23707:2 23712:1 23716:3 23722:1 23752:1 23753:2 23766:1 23780:1 23788:1 23791:2 23802:1 23808:1 23841:1 23844:1 23867:4 23870:1 23879:2 23883:1 23885:1 23890:1 23899:1 23908:1 23921:1 23937:1 23954:1 23971:1 23980:1 23982:1 24003:1 24006:1 24011:1 24013:1 24020:1 24036:1 24050:1 24052:1 24057:1 24059:1 24083:1 24086:1 24106:2 24144:2 24155:4 24179:1 24208:1 24214:1 24224:1 24230:2 24234:1 24242:3 24269:2 24274:1 24275:1 24290:1 24325:1 24339:2 24360:1 24404:2 24406:1 24412:1 24417:1 24420:1 24434:4 24473:2 24476:3 24478:1 24484:1 24488:3 24533:1 24534:1 24540:1 24567:1 24572:1 24614:1 24636:1 24637:2 24641:1 24644:4 24647:3 24653:1 24678:1 24692:1 24697:2 24702:1 24718:1 24728:1 24730:4 24740:2 24751:3 24760:4 24761:1 24772:1 24784:1 24789:1 24797:1 24817:2 24838:1 24841:5 24843:1 24847:1 24854:1 24855:1 24873:2 24897:1 24915:3 24942:4 24967:2 24969:2 24990:1 24999:1 25018:1 25051:1 25053:1 25056:1 25071:1 25092:3 25109:1 25117:1 25131:1 25138:2 25140:1 25157:1 25160:2 25175:1 25191:1 25194:1 25217:1 25219:1 25228:1 25230:2 25235:1 25242:1 25256:5 25261:1 25262:1 25265:1 25268:1 25277:1 25289:1 25323:2 25326:1 25332:1 25348:1 25360:1 25385:1 25387:3 25410:7 25414:1 25451:1 25478:1 25525:1 25530:1 25537:1 25549:3 25569:1 25571:1 25586:1 25660:2 25681:5 25683:2 25696:2 25698:1 25699:4 25700:4 25703:1 25705:1 25742:2 25751:2 25773:1 25782:1 25787:1 25793:2 25801:1 25805:1 25826:2 25844:1 25852:1 25861:1 25879:1 25910:1 25955:1 25957:1 26008:1 26023:1 26032:1 26042:1 26067:1 26075:1 26104:1 26120:2 26151:1 26158:1 26216:1 26218:2 26272:1 26285:2 26289:3 26299:1 26301:1 26303:8 26331:1 26397:14 26398:1 26400:3 26401:1 26430:1 26503:2 26505:2 26509:3 26510:1 26548:1 26549:1 26555:2 26557:1 26559:1 26563:1 26569:1 26570:1 26576:1 26581:1 26612:2 26624:1 26641:1 26651:1 26664:2 26689:1 26711:1 26715:1 26725:1 26765:1 26792:1 26794:1 26807:3 26829:2 26843:1 26869:5 26874:1 26879:1 26889:1 26894:1 26919:1 26954:3 26963:3 26986:1 26989:1 26993:1 27017:1 27025:1 27035:1 27038:3 27044:1 27071:1 27080:1 27108:1 27111:4 27145:1 27171:1 27216:1 27217:1 27228:3 27231:1 27248:1 27271:1 27279:2 27280:19 27281:2 27283:2 27287:3 27289:1 27300:1 27315:1 27316:9 27326:1 27329:1 27337:1 27364:1 27368:2 27372:1 27373:1 27394:1 27401:1 27405:4 27414:4 27419:1 27447:3 27448:1 27452:2 27465:1 27492:1 27495:1 27496:1 27519:1 27549:1 27558:2 27561:1 27590:1 27591:1 27627:1 27633:2 27636:1 27638:4 27641:1 27644:1 27661:1 27666:1 27676:1 27692:3 27705:3 27745:1 27749:1 27772:3 27773:6 27775:1 27776:1 27783:1 27805:2 27818:1 27828:1 27834:1 27864:1 27879:1 27914:3 27922:1 27926:1 27963:2 27968:1 27971:1 27977:4 27984:1 27994:2 28018:1 28026:1 28046:1 28053:1 28067:1 28081:1 28106:1 28138:4 28169:2 28172:1 28210:1 28217:2 28222:1 28229:3 28265:1 28283:1 28292:2 28297:1 28300:1 28314:1 28326:1 28336:1 28343:6 28344:1 28352:1 28364:2 28420:1 28430:4 28437:1 28496:1 28503:1 28507:1 28509:1 28511:3 28516:1 28523:1 28560:1 28566:1 28569:1 28574:1 28575:1 28576:1 28579:1 28587:2 28618:1 16 26:1 27:1 69:1 78:1 83:4 100:1 106:1 137:1 147:1 162:1 165:1 175:1 201:1 213:1 235:4 254:1 283:1 286:1 296:3 318:1 327:1 336:2 337:2 338:1 364:1 372:1 382:1 407:2 418:1 442:3 445:1 449:1 460:1 478:1 489:2 504:1 507:1 509:1 514:1 523:1 526:1 552:1 553:1 567:1 617:1 627:3 634:1 648:2 654:1 661:4 665:1 671:1 676:1 684:1 688:1 699:1 707:1 713:1 724:1 735:1 757:2 768:1 772:1 787:1 803:1 805:1 813:1 824:1 826:1 852:1 856:1 872:1 902:1 910:1 915:1 924:2 934:2 939:3 941:1 942:4 943:2 944:2 966:1 978:1 985:3 987:2 1015:2 1020:1 1052:1 1059:2 1062:1 1081:1 1086:1 1108:1 1116:1 1125:1 1171:3 1175:1 1184:1 1192:2 1200:1 1201:4 1217:1 1227:1 1239:3 1259:1 1263:1 1267:1 1269:1 1275:3 1278:1 1279:1 1289:2 1290:2 1302:2 1306:1 1319:1 1331:1 1335:2 1346:2 1375:1 1379:1 1413:1 1415:2 1438:3 1446:1 1448:1 1453:1 1464:1 1475:1 1484:3 1497:1 1501:5 1513:2 1521:2 1522:1 1525:2 1531:1 1541:1 1544:3 1569:1 1572:3 1583:1 1587:1 1591:1 1594:1 1596:1 1601:2 1621:1 1628:1 1632:3 1637:3 1640:2 1654:1 1672:3 1675:3 1678:1 1683:1 1684:1 1698:1 1722:1 1731:1 1733:1 1743:2 1745:1 1747:1 1751:1 1758:2 1766:1 1784:1 1789:1 1790:1 1809:1 1810:1 1820:1 1824:1 1825:1 1831:1 1837:1 1849:1 1853:1 1860:1 1877:1 1882:1 1883:1 1884:1 1895:1 1901:1 1903:1 1904:4 1914:1 1921:1 1929:1 1930:2 1950:1 1986:1 2006:1 2015:2 2020:2 2022:1 2023:3 2044:1 2049:1 2054:2 2074:3 2075:1 2076:2 2101:1 2108:3 2164:1 2174:1 2227:1 2228:1 2229:1 2230:2 2232:3 2237:1 2238:2 2240:1 2241:1 2244:5 2245:1 2246:2 2248:1 2251:1 2256:4 2259:3 2260:5 2272:1 2273:1 2290:1 2303:1 2327:1 2331:1 2334:1 2336:2 2354:1 2359:1 2361:1 2374:1 2413:3 2437:1 2448:2 2483:1 2486:1 2488:1 2495:1 2526:1 2556:1 2582:2 2595:4 2602:1 2607:3 2622:1 2623:1 2630:1 2633:1 2635:2 2637:6 2651:1 2662:2 2670:1 2674:1 2677:1 2684:3 2689:1 2690:1 2721:2 2731:2 2738:1 2739:1 2741:4 2747:2 2755:1 2792:4 2799:1 2804:1 2818:8 2828:7 2857:2 2869:1 2885:20 2899:1 2903:1 2907:1 2918:1 2936:1 2956:1 2986:2 2989:1 3037:3 3041:1 3062:1 3107:1 3117:1 3129:2 3133:4 3151:8 3153:2 3168:1 3173:1 3181:1 3208:1 3218:1 3219:5 3254:1 3281:1 3283:1 3293:1 3303:1 3330:1 3340:1 3348:1 3361:3 3369:2 3373:1 3377:1 3388:3 3417:1 3427:2 3441:1 3442:1 3453:3 3491:1 3505:1 3511:1 3512:3 3513:1 3519:1 3521:1 3522:1 3543:1 3550:1 3569:1 3588:1 3603:1 3606:3 3625:1 3643:1 3651:1 3652:27 3677:2 3678:1 3679:6 3681:1 3686:1 3687:2 3688:14 3689:1 3691:3 3697:2 3706:3 3709:1 3718:1 3721:3 3724:2 3725:2 3740:2 3742:1 3743:1 3769:2 3776:1 3777:3 3783:1 3788:1 3808:1 3813:1 3815:1 3816:3 3826:2 3838:2 3844:1 3853:1 3866:1 3891:1 3900:1 3901:1 3904:1 3905:1 3911:1 3915:1 3918:1 3920:1 3925:3 3939:3 3953:1 3993:1 4052:1 4056:2 4086:1 4090:1 4101:1 4106:1 4109:1 4110:1 4137:1 4143:1 4153:1 4156:1 4169:2 4209:1 4234:8 4250:1 4277:1 4302:1 4306:1 4313:4 4322:1 4325:2 4335:2 4347:3 4351:1 4372:1 4380:1 4386:1 4393:1 4448:1 4449:2 4489:1 4515:2 4519:1 4522:2 4533:1 4543:3 4554:1 4563:1 4584:1 4653:1 4654:1 4660:2 4671:1 4685:1 4693:2 4701:1 4742:1 4782:1 4792:11 4793:1 4824:2 4848:1 4870:1 4893:3 4902:3 4903:1 4905:3 4925:2 4926:2 4927:5 4928:1 4930:1 4933:2 4939:1 4940:14 4941:1 4943:1 4948:2 4949:3 4956:1 4972:1 4975:2 5031:1 5045:1 5053:1 5058:1 5120:1 5144:3 5145:3 5152:5 5181:1 5195:1 5213:2 5214:14 5227:1 5242:1 5280:1 5317:1 5319:1 5355:1 5359:1 5361:1 5370:1 5375:1 5379:1 5386:1 5390:1 5392:1 5433:1 5437:1 5447:1 5448:2 5465:1 5474:1 5479:1 5489:2 5494:1 5497:1 5502:1 5523:1 5525:1 5562:1 5565:3 5588:2 5595:1 5604:1 5614:1 5618:1 5620:1 5624:1 5631:1 5646:1 5656:1 5659:1 5660:1 5662:1 5679:1 5683:1 5701:1 5703:1 5707:1 5731:1 5766:3 5791:1 5794:3 5796:1 5803:1 5860:2 5903:1 5924:1 5931:1 5932:5 5941:1 5945:2 5971:2 5976:1 6003:1 6042:2 6043:1 6047:1 6057:1 6079:3 6086:1 6087:2 6088:2 6126:1 6127:2 6129:1 6151:3 6153:1 6165:1 6166:1 6168:1 6181:1 6184:1 6239:1 6242:1 6243:1 6244:1 6247:1 6248:1 6250:1 6251:2 6254:2 6255:1 6256:3 6262:1 6264:4 6265:1 6266:1 6267:1 6275:1 6298:1 6358:1 6392:1 6398:1 6404:1 6410:2 6413:1 6424:1 6450:1 6454:1 6494:1 6507:1 6508:1 6513:2 6523:1 6533:5 6535:1 6539:3 6547:1 6550:1 6557:1 6558:1 6566:2 6582:1 6598:2 6603:1 6604:1 6615:1 6639:1 6657:1 6677:1 6679:1 6685:2 6687:1 6695:3 6699:1 6704:1 6711:2 6731:1 6739:1 6745:1 6780:1 6783:1 6789:1 6791:1 6799:2 6803:1 6819:1 6835:1 6857:1 6860:1 6876:2 6896:1 6909:1 6954:2 6970:1 6974:1 6996:1 7000:5 7010:2 7027:1 7036:1 7049:1 7080:1 7180:1 7196:1 7204:1 7221:3 7267:1 7269:1 7275:3 7290:2 7307:2 7343:2 7360:1 7406:1 7411:1 7420:1 7430:1 7433:1 7437:3 7446:1 7466:1 7477:2 7478:4 7479:2 7496:1 7499:2 7505:1 7530:1 7531:1 7544:1 7548:30 7549:1 7555:1 7567:7 7568:16 7578:1 7579:1 7586:1 7588:1 7615:1 7616:3 7638:1 7653:1 7668:1 7672:1 7689:2 7742:3 7746:5 7750:1 7786:1 7788:3 7805:1 7826:1 7858:1 7862:1 7910:3 7921:1 7928:5 7936:1 7951:1 7960:2 7973:1 7977:1 7983:1 7998:1 7999:1 8006:12 8026:1 8037:2 8039:1 8049:1 8063:2 8092:1 8098:1 8107:2 8116:1 8127:2 8140:1 8154:1 8167:1 8170:3 8176:3 8181:1 8194:2 8196:1 8199:2 8213:2 8214:1 8215:1 8220:1 8231:1 8233:2 8241:2 8251:1 8260:2 8263:2 8269:1 8274:1 8277:1 8294:2 8308:1 8319:3 8336:1 8342:1 8345:1 8354:1 8357:2 8358:1 8359:3 8360:1 8361:2 8362:3 8365:1 8370:1 8373:2 8375:2 8381:2 8396:1 8402:1 8412:2 8420:1 8421:1 8428:1 8440:1 8450:1 8455:2 8475:2 8496:4 8517:3 8526:1 8528:1 8531:1 8550:1 8556:1 8583:2 8595:1 8596:1 8603:1 8609:2 8616:2 8617:1 8621:1 8637:1 8667:3 8668:2 8675:3 8677:1 8678:2 8680:3 8687:2 8706:1 8707:1 8709:1 8711:4 8725:1 8743:1 8748:1 8813:1 8827:2 8853:2 8854:1 8863:1 8868:1 8880:1 8882:1 8903:1 8919:1 8957:1 8962:3 8991:1 8994:1 8995:3 9008:1 9015:5 9035:1 9039:1 9042:1 9049:1 9055:1 9071:1 9078:1 9088:3 9091:1 9110:1 9124:1 9156:1 9160:1 9219:1 9240:1 9243:1 9246:1 9252:1 9253:1 9263:1 9264:2 9278:1 9292:1 9294:1 9298:1 9322:1 9325:2 9328:1 9375:14 9383:1 9408:1 9420:3 9428:2 9437:1 9448:1 9459:1 9467:2 9484:1 9511:12 9529:1 9535:1 9569:4 9580:1 9586:3 9587:1 9603:1 9614:1 9651:1 9655:3 9656:1 9690:5 9696:2 9697:3 9698:1 9706:1 9707:1 9717:1 9726:2 9730:1 9733:1 9739:1 9744:1 9748:3 9751:1 9753:1 9754:1 9761:1 9780:3 9785:1 9795:1 9797:2 9817:1 9830:1 9848:1 9853:2 9855:1 9873:8 9875:1 9876:4 9883:1 9885:1 9971:2 9976:1 9986:1 10018:1 10023:1 10035:4 10055:1 10084:1 10121:1 10137:2 10149:3 10155:1 10159:1 10163:1 10173:1 10181:1 10191:1 10209:2 10215:3 10227:1 10230:1 10251:1 10258:2 10276:2 10278:2 10281:1 10297:5 10311:2 10312:3 10314:2 10320:1 10328:1 10330:1 10334:1 10356:2 10369:1 10374:1 10383:4 10396:2 10401:1 10405:2 10413:6 10463:1 10464:1 10470:1 10475:1 10495:2 10498:1 10499:2 10503:1 10510:1 10524:2 10534:1 10545:1 10588:1 10595:1 10604:1 10620:2 10621:1 10635:5 10649:3 10650:5 10666:1 10699:3 10702:1 10727:2 10730:1 10740:1 10742:1 10747:1 10767:3 10779:2 10811:1 10839:1 10841:1 10843:2 10860:1 10892:1 10894:1 10900:1 10904:1 10905:3 10906:1 10926:1 10931:1 10941:1 10945:1 10961:1 10965:1 10970:1 10971:1 10996:2 11021:2 11039:2 11047:1 11054:1 11073:1 11080:1 11081:3 11112:1 11116:1 11118:5 11120:1 11147:1 11169:1 11172:1 11180:1 11186:2 11198:1 11218:1 11232:1 11238:1 11242:1 11248:3 11261:3 11278:3 11280:2 11299:1 11315:1 11328:3 11336:4 11337:1 11348:1 11358:1 11359:1 11367:1 11370:1 11372:5 11373:1 11374:1 11381:1 11383:5 11392:1 11399:1 11406:4 11422:2 11431:4 11435:1 11441:2 11455:1 11475:1 11476:1 11486:4 11492:1 11496:1 11498:1 11499:1 11530:1 11534:1 11544:3 11557:1 11563:1 11575:1 11615:2 11616:1 11633:2 11651:1 11683:1 11691:1 11734:2 11737:1 11749:1 11761:1 11764:1 11765:1 11766:1 11786:3 11787:3 11788:14 11797:4 11812:1 11823:1 11837:2 11879:1 11904:1 11930:1 11938:5 11939:2 11955:1 11958:2 12016:3 12019:1 12040:1 12047:1 12054:2 12058:1 12064:1 12069:1 12081:1 12115:1 12134:3 12148:1 12187:1 12189:2 12198:1 12203:1 12218:1 12257:1 12323:6 12336:1 12341:1 12345:1 12357:1 12369:2 12370:3 12391:1 12394:1 12420:1 12451:1 12456:2 12485:1 12505:1 12524:1 12525:2 12550:1 12566:1 12599:1 12652:1 12671:1 12691:1 12692:2 12702:1 12710:1 12715:1 12719:1 12733:1 12741:1 12744:1 12756:2 12768:1 12771:2 12776:1 12792:1 12798:1 12799:1 12829:1 12834:1 12835:2 12870:1 12872:1 12874:1 12881:1 12882:2 12883:1 12884:5 12889:3 12891:1 12892:1 12900:1 12904:2 12915:2 12919:1 12924:1 12928:3 12954:7 12956:1 12964:1 12966:1 12970:2 12980:1 12997:1 13019:2 13033:2 13034:1 13049:3 13053:1 13065:1 13071:1 13084:1 13095:3 13114:1 13122:3 13131:1 13136:1 13148:1 13149:2 13150:2 13160:1 13174:1 13178:2 13190:1 13201:2 13237:1 13243:1 13249:1 13250:1 13251:2 13252:1 13254:1 13278:1 13301:1 13302:1 13310:1 13313:1 13314:1 13318:2 13330:2 13334:1 13335:1 13352:1 13365:6 13371:1 13380:1 13411:1 13416:1 13418:1 13434:1 13435:1 13439:1 13457:1 13461:2 13462:1 13467:3 13493:1 13510:1 13515:1 13518:1 13529:2 13530:3 13535:2 13536:4 13543:1 13560:1 13565:3 13578:1 13589:1 13610:2 13612:1 13615:1 13616:1 13620:1 13633:2 13679:1 13735:2 13750:1 13769:1 13782:1 13795:1 13829:1 13854:1 13855:1 13898:1 13907:1 13908:1 13917:1 13920:1 13924:3 13926:1 13927:1 13935:1 13951:2 13956:1 13970:1 13971:1 13985:1 13989:1 14009:2 14035:1 14051:1 14076:1 14087:1 14091:1 14093:1 14099:1 14106:4 14126:1 14135:1 14142:1 14154:1 14158:1 14183:1 14225:1 14227:3 14271:1 14370:1 14378:1 14401:2 14437:3 14443:2 14445:1 14447:1 14450:1 14451:1 14470:1 14475:1 14496:1 14505:1 14522:1 14545:2 14551:3 14566:1 14588:1 14592:1 14596:1 14624:1 14633:1 14662:1 14665:1 14671:1 14678:1 14756:1 14760:3 14761:2 14766:1 14792:4 14793:1 14796:1 14826:3 14828:1 14832:1 14855:1 14867:1 14870:1 14877:1 14887:3 14894:1 14898:2 14906:1 14909:1 14942:1 14951:2 14978:1 14992:1 15006:1 15009:1 15020:1 15021:1 15033:2 15058:7 15063:5 15067:1 15073:1 15099:2 15113:1 15118:2 15131:3 15134:1 15165:1 15190:2 15193:1 15194:1 15201:4 15210:1 15222:1 15230:1 15238:1 15239:3 15243:1 15244:5 15245:1 15250:1 15254:1 15255:1 15264:3 15269:4 15302:1 15337:1 15345:1 15347:2 15356:2 15361:2 15366:3 15388:2 15401:1 15421:2 15425:2 15442:1 15446:2 15461:1 15472:1 15478:1 15496:1 15502:7 15513:2 15529:1 15538:1 15540:1 15554:1 15566:14 15587:1 15596:5 15599:1 15620:2 15637:40 15665:3 15697:1 15731:1 15734:2 15758:1 15763:1 15773:1 15774:3 15776:1 15780:2 15784:1 15797:1 15810:1 15812:1 15815:1 15831:1 15832:1 15833:1 15855:1 15857:1 15876:1 15896:1 15902:5 15934:2 15938:1 15953:1 15961:2 15969:1 15988:1 16026:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16107:1 16108:1 16133:1 16137:1 16146:1 16151:3 16156:1 16165:1 16167:2 16168:3 16187:3 16210:1 16215:1 16217:2 16219:1 16220:1 16228:1 16230:1 16249:1 16255:9 16262:1 16289:1 16300:2 16311:1 16338:1 16343:1 16348:1 16365:1 16366:1 16369:3 16373:1 16375:2 16378:1 16380:1 16395:1 16407:1 16416:1 16421:1 16426:2 16427:2 16453:1 16492:1 16558:1 16569:2 16571:1 16582:1 16588:1 16608:1 16609:1 16617:2 16623:1 16630:1 16646:1 16649:1 16652:1 16654:3 16658:1 16666:1 16676:1 16683:3 16690:1 16704:1 16705:1 16718:1 16721:1 16726:1 16744:1 16766:2 16771:1 16777:1 16796:4 16845:1 16866:1 16876:1 16877:1 16879:1 16896:3 16899:1 16902:1 16904:1 16911:1 16915:2 16920:1 16921:1 16936:1 16940:1 16953:1 16954:1 16964:2 16990:1 17018:1 17019:2 17077:1 17098:1 17103:2 17113:1 17117:1 17128:1 17130:1 17187:1 17194:1 17196:2 17199:2 17201:1 17220:8 17235:1 17244:1 17248:1 17275:1 17285:1 17292:1 17294:1 17310:1 17311:1 17317:1 17334:1 17341:1 17363:1 17369:1 17392:1 17396:2 17403:1 17404:4 17448:1 17479:1 17529:2 17531:1 17540:1 17568:1 17578:1 17595:1 17599:2 17609:2 17616:1 17640:1 17661:1 17666:1 17667:3 17714:1 17723:1 17754:3 17760:1 17774:3 17779:1 17782:1 17785:3 17805:1 17806:1 17821:1 17823:1 17856:1 17874:1 17912:7 17916:1 17923:1 17949:1 17961:1 17968:1 17970:1 17978:1 17984:2 17998:1 18003:1 18010:1 18027:1 18031:3 18037:2 18052:2 18065:2 18095:1 18101:2377 18105:1 18118:4 18123:2 18157:1 18163:1 18178:3 18188:1 18215:3 18234:2 18245:1 18262:1 18271:3 18272:1 18298:3 18306:1 18311:3 18314:1 18315:1 18331:1 18361:1 18362:1 18408:1 18410:3 18439:1 18462:2 18472:1 18481:1 18491:1 18493:1 18505:1 18512:1 18514:1 18515:1 18557:1 18569:2 18572:1 18584:4 18599:1 18601:1 18607:1 18667:1 18669:1 18677:1 18679:3 18731:1 18761:1 18780:1 18786:2 18799:1 18801:1 18804:2 18813:3 18825:2 18829:1 18830:3 18834:1 18847:1 18859:10 18880:1 18881:1 18883:11 18892:1 18910:1 18911:3 18914:1 18936:1 18947:1 18950:3 18968:1 18972:1 18976:1 18978:2 18980:1 18983:1 18987:1 18997:2 18998:1 19005:1 19028:1 19034:2 19039:1 19055:1 19067:3 19099:1 19103:1 19106:1 19148:1 19153:1 19187:1 19206:1 19209:9 19212:1 19220:1 19231:2 19253:1 19279:1 19291:1 19299:1 19305:1 19307:5 19329:1 19347:2 19359:1 19360:1 19383:1 19391:1 19394:1 19401:1 19402:1 19409:1 19459:4 19464:1 19470:1 19472:1 19488:2 19489:1 19514:1 19523:1 19525:1 19539:1 19543:1 19545:1 19565:1 19569:1 19582:2 19584:1 19591:6 19638:1 19644:1 19663:9 19669:1 19677:2 19679:2 19694:1 19695:1 19707:9 19724:1 19747:1 19756:1 19774:1 19786:1 19818:1 19822:1 19833:2 19853:4 19856:1 19865:1 19870:1 19900:2 19910:1 19918:1 19945:3 19957:1 19968:1 19979:1 19986:1 20006:1 20022:1 20024:1 20078:2 20086:1 20095:1 20099:1 20117:1 20120:1 20129:1 20143:1 20145:1 20148:1 20169:1 20193:1 20210:3 20227:2 20231:1 20236:1 20240:1 20245:9 20248:1 20257:3 20260:1 20261:1 20279:1 20285:2 20289:4 20299:1 20322:3 20327:1 20335:1 20364:2 20375:2 20378:1 20396:2 20401:1 20402:1 20422:6 20429:1 20432:2 20438:1 20453:1 20490:1 20496:1 20502:1 20505:1 20524:2 20528:1 20533:1 20538:1 20546:3 20561:1 20567:1 20569:1 20572:1 20583:1 20620:1 20628:1 20672:1 20679:1 20712:1 20716:1 20718:4 20720:2 20723:2 20733:3 20741:1 20743:1 20745:1 20773:1 20782:1 20786:1 20798:1 20809:1 20810:1 20822:1 20827:1 20828:1 20838:1 20840:5 20843:2 20856:1 20870:1 20888:1 20927:2 20934:1 20941:1 20951:1 20952:1 20973:2 20976:9 20978:1 20992:1 20998:1 20999:1 21003:1 21014:1 21019:1 21037:3 21053:1 21080:1 21084:2 21086:1 21090:1 21096:2 21108:1 21140:1 21142:4 21150:2 21156:2 21161:1 21209:1 21231:2 21237:1 21239:7 21245:2 21252:1 21255:1 21266:2 21267:1 21269:1 21272:1 21279:1 21282:2 21283:1 21291:1 21292:1 21306:2 21309:2 21314:1 21334:2 21379:4 21380:1 21403:1 21412:1 21423:2 21425:1 21435:1 21439:1 21446:4 21457:1 21464:1 21474:1 21515:14 21516:1 21518:1 21537:1 21548:1 21556:1 21575:1 21583:1 21594:2 21611:1 21613:2 21620:1 21621:1 21628:2 21642:2 21645:1 21648:8 21664:2 21668:3 21679:2 21704:1 21712:1 21715:1 21718:2 21732:1 21735:1 21743:1 21745:2 21753:1 21754:1 21766:2 21769:1 21781:5 21794:3 21807:2 21819:1 21828:2 21840:1 21860:1 21873:1 21929:1 21941:3 21946:1 21949:1 21967:1 21989:1 22021:1 22038:1 22042:1 22049:11 22051:2 22082:1 22099:1 22120:1 22130:1 22132:1 22133:2 22139:1 22165:3 22185:1 22188:5 22192:1 22223:1 22241:1 22264:2 22284:1 22295:2 22329:1 22346:1 22348:2 22355:2 22414:1 22423:1 22425:3 22431:1 22432:1 22436:1 22448:1 22452:1 22453:1 22463:1 22466:1 22478:1 22481:2 22496:1 22530:1 22534:2 22548:1 22551:1 22556:1 22564:2 22568:3 22571:1 22572:1 22607:1 22619:1 22627:3 22628:1 22646:5 22654:1 22665:1 22667:1 22670:1 22672:2 22677:2 22681:1 22699:2 22706:1 22707:2 22708:1 22748:4 22755:1 22757:14 22837:1 22847:1 22849:1 22856:1 22889:1 22916:2 22924:1 22937:1 22949:1 22951:1 22957:1 22986:1 23000:1 23022:1 23024:2 23059:1 23062:2 23077:2 23104:4 23117:1 23122:1 23126:1 23177:1 23192:1 23207:3 23215:2 23222:1 23224:1 23227:1 23228:1 23229:2 23246:1 23278:1 23284:1 23306:1 23313:1 23328:1 23334:1 23360:1 23362:1 23396:1 23397:3 23405:1 23412:1 23413:1 23421:3 23434:1 23492:1 23510:3 23520:1 23521:1 23568:5 23633:1 23646:1 23655:1 23656:1 23665:1 23666:2 23667:4 23668:1 23689:1 23697:1 23704:1 23707:2 23712:1 23716:3 23722:2 23752:1 23753:2 23766:1 23780:1 23788:1 23791:2 23802:1 23808:1 23820:1 23841:1 23844:1 23867:4 23870:1 23879:2 23883:1 23885:1 23890:1 23899:1 23908:1 23921:1 23937:1 23954:1 23971:1 23980:1 23982:1 24003:1 24006:1 24011:1 24013:1 24020:1 24036:1 24050:1 24052:1 24057:1 24059:1 24083:1 24086:1 24106:2 24144:3 24155:4 24179:1 24208:1 24214:1 24224:1 24230:2 24234:1 24242:3 24269:2 24274:1 24275:1 24290:1 24325:1 24339:3 24360:1 24404:2 24406:1 24412:1 24417:1 24420:1 24434:4 24473:2 24476:3 24478:1 24484:1 24488:3 24533:1 24534:1 24540:1 24567:1 24572:1 24614:1 24636:1 24637:2 24641:1 24644:4 24647:3 24653:1 24678:1 24692:1 24694:1 24697:2 24702:1 24718:1 24728:1 24730:4 24740:2 24751:3 24760:5 24761:1 24772:1 24784:1 24789:1 24797:1 24817:2 24838:1 24841:5 24843:1 24847:1 24854:1 24855:1 24873:2 24897:1 24915:3 24942:4 24967:2 24969:2 24990:2 24999:1 25018:1 25051:1 25053:1 25056:1 25071:1 25092:3 25109:1 25117:1 25131:1 25138:2 25140:1 25157:1 25160:2 25173:1 25175:1 25191:1 25194:1 25200:1 25217:1 25219:1 25228:1 25230:2 25235:1 25242:1 25256:5 25261:1 25262:1 25265:1 25268:1 25277:1 25289:1 25323:2 25326:1 25332:1 25348:1 25360:1 25385:1 25387:3 25410:7 25414:1 25451:1 25478:1 25525:1 25530:1 25537:1 25549:3 25569:1 25571:1 25586:1 25660:2 25681:5 25683:2 25688:1 25696:2 25698:1 25699:4 25700:4 25703:1 25705:1 25742:2 25751:2 25773:1 25782:1 25787:1 25793:2 25801:1 25805:1 25826:2 25844:1 25852:1 25861:1 25879:1 25910:1 25955:1 25957:1 26008:1 26023:1 26032:1 26042:1 26067:1 26069:1 26075:1 26104:2 26110:1 26120:2 26151:1 26158:1 26216:1 26218:2 26272:1 26285:2 26289:3 26299:1 26301:1 26303:8 26331:1 26389:1 26397:14 26398:1 26400:3 26401:1 26430:1 26503:2 26505:3 26509:3 26510:1 26548:1 26549:1 26555:2 26557:1 26559:1 26563:1 26569:1 26570:1 26576:1 26581:1 26612:2 26624:1 26641:1 26651:1 26664:2 26666:1 26686:1 26689:1 26690:1 26711:1 26715:1 26725:1 26765:1 26792:1 26794:1 26807:3 26829:2 26843:1 26869:5 26874:1 26879:1 26889:1 26894:1 26919:1 26954:3 26963:3 26977:1 26986:1 26989:1 26993:1 27017:1 27025:1 27035:1 27038:3 27044:1 27071:1 27080:1 27108:1 27111:4 27145:1 27171:1 27216:1 27217:1 27228:4 27231:1 27239:1 27248:1 27271:1 27279:2 27280:21 27281:2 27283:2 27287:3 27289:1 27300:1 27315:1 27316:10 27326:1 27329:1 27337:1 27364:1 27368:2 27372:1 27373:1 27394:1 27401:1 27405:4 27414:4 27419:1 27447:3 27448:1 27452:2 27462:1 27465:1 27492:1 27495:1 27496:1 27519:1 27549:1 27558:2 27561:1 27590:1 27591:1 27620:1 27627:1 27633:2 27636:1 27638:4 27641:1 27644:1 27661:1 27666:1 27676:1 27692:6 27705:3 27743:1 27745:1 27749:1 27772:3 27773:6 27775:1 27776:1 27783:1 27805:2 27818:1 27828:1 27834:1 27864:1 27879:1 27914:3 27922:1 27926:1 27963:3 27968:1 27971:1 27977:4 27984:1 27994:2 28018:1 28026:1 28046:1 28053:1 28067:1 28081:1 28106:1 28108:1 28138:4 28169:2 28172:1 28210:1 28217:2 28222:1 28229:3 28265:1 28283:1 28292:2 28297:1 28300:1 28314:1 28326:1 28336:1 28343:6 28344:1 28352:1 28364:2 28420:1 28430:4 28437:2 28496:1 28503:1 28504:1 28507:1 28509:1 28511:3 28516:1 28523:1 28560:1 28566:1 28569:1 28574:1 28575:1 28576:1 28579:1 28587:2 28618:1 16 26:1 27:1 69:1 78:1 83:4 100:1 106:1 137:1 147:1 153:1 162:1 165:1 175:1 201:1 213:1 230:1 235:4 254:1 283:1 286:1 296:3 318:1 327:1 336:2 337:2 338:1 364:1 372:1 375:1 382:1 407:2 418:1 442:3 445:1 449:1 460:1 478:1 489:2 504:1 507:1 509:1 514:1 523:1 526:1 552:1 553:1 567:1 603:1 617:1 627:3 634:1 648:2 654:1 661:4 665:1 671:1 676:1 684:1 688:1 699:1 707:1 713:1 724:1 735:1 757:2 768:1 772:1 787:1 803:1 805:1 813:1 824:1 826:1 852:1 856:1 872:1 902:1 910:1 915:1 924:2 934:2 939:3 941:1 942:5 943:2 944:2 966:1 978:1 985:3 987:2 1015:2 1020:1 1052:1 1059:2 1062:1 1081:1 1086:1 1089:1 1108:1 1116:1 1125:1 1171:3 1175:1 1184:1 1192:2 1200:1 1201:4 1217:1 1227:1 1239:3 1259:1 1263:1 1267:1 1269:1 1275:3 1278:1 1279:1 1289:2 1290:2 1302:2 1306:1 1319:1 1331:1 1335:2 1346:2 1356:1 1375:2 1379:1 1404:1 1413:1 1415:2 1438:3 1446:1 1448:1 1453:1 1464:1 1475:1 1484:5 1497:1 1501:5 1513:2 1521:2 1522:1 1525:2 1531:1 1541:1 1544:3 1569:1 1572:3 1583:1 1587:1 1591:1 1594:1 1596:1 1601:2 1621:1 1628:1 1632:3 1637:3 1640:2 1654:1 1672:3 1675:3 1678:1 1683:1 1684:1 1698:1 1722:1 1731:1 1733:1 1743:2 1745:1 1747:1 1751:1 1758:2 1766:2 1784:1 1789:1 1790:1 1809:1 1810:1 1820:1 1824:1 1825:1 1831:1 1837:1 1849:1 1853:1 1860:1 1861:1 1877:1 1882:1 1883:1 1884:1 1895:1 1901:1 1903:1 1904:4 1914:1 1921:1 1929:1 1930:2 1931:1 1950:1 1986:1 2006:1 2015:2 2020:2 2022:1 2023:3 2044:1 2049:1 2054:2 2074:3 2075:1 2076:2 2101:1 2108:3 2126:1 2156:1 2164:1 2174:1 2188:1 2227:1 2228:1 2229:1 2230:2 2232:3 2237:1 2238:2 2240:1 2241:1 2244:5 2245:1 2246:2 2248:1 2251:1 2256:4 2259:3 2260:5 2272:1 2273:1 2290:1 2303:1 2308:1 2327:1 2331:1 2334:1 2336:2 2354:1 2359:1 2361:1 2374:1 2413:3 2423:1 2437:1 2448:2 2474:1 2483:1 2486:1 2488:1 2495:1 2526:1 2531:1 2556:1 2582:2 2595:4 2602:1 2607:3 2622:1 2623:1 2630:1 2633:1 2635:2 2637:6 2651:1 2662:2 2670:1 2674:1 2677:1 2684:3 2689:1 2690:1 2721:2 2731:2 2738:1 2739:1 2741:4 2747:2 2755:1 2792:4 2799:1 2804:1 2818:9 2828:7 2857:2 2869:1 2885:20 2899:1 2903:1 2907:1 2918:1 2920:1 2936:1 2956:1 2986:2 2989:1 3037:3 3041:1 3059:1 3062:1 3105:1 3107:1 3117:1 3129:2 3133:4 3151:9 3153:2 3168:1 3173:1 3181:1 3208:1 3218:1 3219:5 3254:1 3281:1 3283:1 3293:1 3303:1 3327:1 3330:1 3340:1 3348:1 3361:3 3369:2 3373:1 3377:1 3388:3 3417:1 3427:2 3441:1 3442:1 3453:3 3491:1 3505:1 3511:1 3512:3 3513:1 3519:1 3521:1 3522:1 3543:1 3550:1 3569:1 3588:1 3603:1 3606:3 3625:1 3643:1 3651:2 3652:28 3677:2 3678:1 3679:7 3681:1 3686:1 3687:2 3688:16 3689:1 3691:3 3697:2 3706:3 3709:1 3718:1 3721:3 3724:2 3725:2 3740:2 3742:1 3743:1 3769:2 3776:1 3777:3 3783:1 3788:1 3808:1 3813:1 3815:1 3816:3 3826:2 3838:2 3844:1 3853:1 3866:1 3891:1 3900:1 3901:1 3904:1 3905:1 3911:1 3915:1 3918:1 3920:1 3925:3 3939:3 3953:1 3993:1 4052:1 4056:2 4086:1 4090:1 4101:1 4106:1 4109:1 4110:1 4137:1 4143:1 4153:1 4156:1 4169:2 4209:1 4234:8 4250:1 4277:1 4302:1 4306:1 4313:4 4322:1 4325:2 4335:2 4347:3 4351:1 4372:1 4380:1 4386:1 4393:1 4448:1 4449:2 4489:1 4515:2 4519:1 4522:2 4533:1 4543:3 4554:1 4563:1 4584:1 4653:1 4654:1 4659:1 4660:2 4671:1 4685:1 4693:2 4701:1 4742:1 4782:1 4792:11 4793:1 4804:1 4824:2 4848:1 4850:2 4860:1 4870:1 4893:3 4902:3 4903:1 4905:4 4925:2 4926:2 4927:5 4928:1 4930:1 4933:2 4935:1 4939:1 4940:14 4941:1 4943:1 4948:2 4949:3 4956:1 4972:1 4975:2 5031:1 5045:1 5053:1 5058:1 5120:1 5144:3 5145:3 5152:5 5181:1 5195:1 5209:1 5213:2 5214:14 5227:1 5242:1 5252:1 5280:1 5317:1 5319:1 5355:1 5359:1 5361:1 5370:1 5375:1 5379:1 5386:1 5390:1 5392:1 5433:1 5437:1 5447:1 5448:2 5465:1 5474:1 5479:1 5489:2 5494:1 5497:1 5502:1 5523:1 5525:1 5562:1 5565:3 5588:2 5595:1 5604:1 5614:1 5618:1 5620:1 5624:1 5631:1 5635:1 5646:1 5656:1 5659:1 5660:1 5662:1 5679:1 5683:1 5701:1 5703:1 5707:1 5731:1 5766:3 5791:1 5794:3 5796:1 5803:1 5860:2 5903:1 5924:1 5931:1 5932:5 5941:1 5945:2 5971:2 5976:1 6003:1 6020:1 6042:2 6043:1 6047:1 6057:1 6079:3 6086:1 6087:2 6088:2 6126:1 6127:2 6129:1 6151:3 6153:1 6165:1 6166:1 6168:1 6177:1 6181:1 6184:1 6239:2 6242:1 6243:1 6244:1 6247:1 6248:1 6250:1 6251:2 6254:2 6255:3 6256:3 6262:1 6264:5 6265:1 6266:1 6267:1 6275:1 6298:1 6358:1 6392:1 6398:1 6404:1 6410:2 6413:1 6424:1 6450:1 6454:1 6494:1 6507:1 6508:1 6513:2 6523:1 6533:5 6535:1 6539:3 6547:1 6550:1 6557:1 6558:1 6566:2 6582:2 6598:2 6603:1 6604:1 6615:1 6639:1 6657:1 6661:1 6677:2 6679:1 6684:1 6685:2 6687:1 6695:3 6699:1 6704:1 6711:2 6731:1 6739:1 6745:1 6780:1 6783:1 6789:1 6791:1 6799:2 6803:1 6819:1 6835:1 6857:1 6860:1 6876:2 6896:1 6909:1 6954:2 6970:1 6974:1 6982:1 6996:1 7000:5 7010:2 7027:1 7036:1 7049:1 7080:1 7180:1 7196:1 7204:1 7221:3 7267:1 7269:1 7275:3 7290:2 7307:2 7343:2 7360:1 7406:1 7411:1 7420:1 7430:1 7433:1 7437:3 7446:1 7466:1 7477:2 7478:4 7479:2 7496:1 7499:2 7505:1 7530:1 7531:1 7544:1 7548:30 7549:1 7555:1 7567:8 7568:16 7578:1 7579:1 7582:1 7586:1 7588:1 7615:1 7616:3 7638:1 7653:1 7668:1 7672:1 7689:2 7742:3 7746:5 7750:1 7786:1 7788:3 7805:1 7826:1 7858:1 7862:1 7910:3 7921:1 7926:1 7928:5 7936:1 7951:1 7960:2 7973:1 7977:1 7983:1 7998:1 7999:1 8006:13 8026:1 8037:2 8039:1 8049:1 8063:2 8092:1 8098:1 8107:2 8116:1 8127:2 8140:1 8154:1 8167:1 8170:3 8176:3 8181:1 8194:2 8196:1 8199:2 8213:2 8214:1 8215:1 8220:1 8231:1 8233:2 8241:2 8251:1 8260:2 8263:2 8269:1 8274:1 8277:1 8294:2 8308:1 8319:3 8336:1 8342:1 8345:1 8354:1 8357:2 8358:1 8359:3 8360:1 8361:2 8362:3 8365:1 8370:1 8373:2 8375:2 8381:2 8396:1 8402:1 8412:2 8420:1 8421:1 8428:1 8440:1 8450:1 8455:2 8475:2 8496:4 8517:3 8526:1 8528:1 8531:1 8550:1 8556:1 8583:2 8595:1 8596:1 8603:1 8609:2 8616:2 8617:1 8621:1 8637:1 8667:3 8668:2 8675:3 8676:1 8677:1 8678:2 8680:3 8687:2 8688:1 8706:1 8707:1 8709:1 8711:4 8725:1 8743:2 8748:1 8813:1 8827:2 8853:2 8854:1 8863:1 8868:1 8880:1 8882:1 8903:1 8919:1 8957:1 8962:3 8991:1 8994:1 8995:3 9008:1 9015:5 9035:1 9039:2 9042:1 9049:1 9055:1 9071:1 9078:1 9088:3 9091:1 9110:1 9124:1 9156:1 9160:1 9219:1 9240:1 9243:1 9246:1 9252:1 9253:1 9263:1 9264:2 9278:1 9292:1 9294:1 9298:1 9322:1 9325:2 9328:1 9375:14 9383:1 9408:2 9420:3 9428:2 9434:1 9437:1 9448:1 9459:1 9467:2 9484:1 9511:13 9529:1 9535:1 9569:4 9575:1 9580:1 9586:3 9587:1 9603:1 9614:1 9651:1 9655:3 9656:1 9690:6 9696:2 9697:3 9698:2 9706:1 9707:1 9717:1 9726:2 9730:2 9733:1 9739:1 9744:1 9748:3 9751:1 9753:1 9754:1 9761:1 9780:3 9785:2 9795:1 9797:2 9817:1 9830:1 9848:1 9853:3 9855:1 9873:8 9875:1 9876:4 9883:1 9885:1 9971:2 9976:1 9986:1 10018:1 10023:1 10035:4 10055:1 10084:1 10121:1 10137:2 10149:3 10155:1 10159:1 10163:1 10173:1 10181:1 10191:1 10209:2 10215:3 10227:1 10230:1 10251:1 10258:2 10276:2 10278:2 10281:1 10288:1 10297:5 10311:2 10312:3 10314:2 10320:1 10328:1 10330:1 10334:1 10355:1 10356:2 10369:1 10374:1 10383:4 10396:2 10401:1 10405:2 10413:6 10463:1 10464:1 10470:1 10475:1 10495:2 10498:1 10499:2 10503:1 10510:1 10524:2 10534:1 10545:1 10588:1 10595:1 10604:1 10620:2 10621:1 10635:5 10649:3 10650:5 10663:1 10666:1 10699:3 10702:1 10727:2 10730:1 10740:1 10742:1 10747:1 10767:3 10779:2 10811:1 10839:1 10841:1 10843:2 10860:1 10892:1 10894:1 10900:1 10904:1 10905:3 10906:1 10926:1 10931:1 10941:1 10945:2 10961:1 10965:1 10970:1 10971:1 10996:2 11021:2 11039:2 11047:1 11054:1 11073:1 11080:1 11081:3 11112:1 11116:1 11118:5 11120:1 11147:1 11169:1 11172:1 11180:1 11186:2 11198:1 11218:1 11232:1 11238:1 11242:1 11248:3 11261:3 11263:1 11278:3 11280:2 11299:1 11315:1 11322:1 11328:3 11336:4 11337:1 11348:1 11358:1 11359:1 11367:1 11370:1 11372:5 11373:1 11374:1 11381:1 11383:5 11392:1 11399:1 11406:4 11422:2 11431:4 11435:1 11441:2 11455:1 11475:1 11476:1 11486:4 11492:1 11496:1 11498:1 11499:1 11530:1 11534:1 11544:3 11557:1 11563:1 11575:1 11615:2 11616:1 11633:2 11651:1 11683:1 11691:1 11734:2 11737:1 11749:1 11761:1 11764:1 11765:1 11766:1 11786:3 11787:3 11788:14 11797:4 11812:1 11823:1 11837:2 11859:1 11879:1 11904:1 11930:1 11938:5 11939:2 11955:1 11958:2 12016:3 12019:1 12040:1 12047:1 12054:2 12058:1 12064:1 12069:1 12081:1 12115:1 12134:3 12148:1 12187:1 12189:2 12198:1 12203:1 12218:1 12257:1 12323:6 12336:1 12341:1 12345:1 12357:1 12369:2 12370:3 12391:1 12394:1 12420:1 12451:1 12456:2 12485:1 12505:1 12524:1 12525:2 12550:1 12566:1 12599:1 12652:1 12671:1 12691:1 12692:2 12702:1 12710:1 12712:1 12715:1 12719:1 12733:1 12741:1 12744:1 12756:2 12768:1 12771:2 12776:1 12792:1 12798:1 12799:1 12829:1 12834:1 12835:2 12837:1 12870:1 12872:1 12874:1 12881:1 12882:2 12883:1 12884:5 12889:3 12891:1 12892:1 12900:1 12904:2 12915:2 12919:1 12924:1 12928:3 12954:7 12956:1 12964:1 12966:1 12970:2 12980:1 12997:1 13019:2 13033:2 13034:1 13049:3 13053:1 13065:1 13071:1 13084:1 13095:3 13114:1 13122:4 13131:1 13136:1 13148:1 13149:2 13150:2 13160:1 13174:1 13178:2 13190:1 13201:2 13237:1 13243:1 13249:1 13250:1 13251:2 13252:1 13254:1 13277:1 13278:1 13301:1 13302:1 13310:1 13313:1 13314:1 13318:2 13330:2 13334:1 13335:1 13352:1 13365:6 13371:1 13380:1 13411:1 13416:1 13418:1 13434:1 13435:1 13439:1 13457:1 13461:2 13462:1 13467:3 13493:1 13510:1 13515:1 13518:1 13529:2 13530:3 13535:2 13536:4 13543:1 13560:1 13565:3 13578:1 13589:1 13610:2 13612:1 13615:1 13616:1 13620:1 13633:2 13666:1 13679:1 13735:2 13750:1 13769:1 13782:1 13795:1 13829:1 13854:1 13855:1 13898:1 13907:1 13908:1 13917:1 13920:1 13924:3 13926:1 13927:1 13935:1 13937:1 13951:2 13956:1 13970:1 13971:1 13985:1 13989:1 14009:2 14035:1 14051:1 14076:1 14087:1 14091:1 14093:1 14099:1 14106:4 14126:1 14135:1 14142:1 14154:1 14158:1 14183:1 14225:1 14227:3 14271:1 14370:1 14378:1 14401:2 14437:3 14443:2 14445:1 14447:1 14450:1 14451:1 14470:1 14475:1 14496:1 14505:1 14522:1 14545:2 14551:3 14566:1 14588:1 14592:1 14596:1 14601:1 14624:1 14633:1 14662:1 14665:1 14667:1 14671:1 14678:1 14710:1 14756:1 14760:3 14761:2 14766:1 14792:4 14793:1 14796:1 14811:1 14826:3 14828:1 14832:1 14835:1 14840:1 14855:1 14867:1 14870:1 14877:1 14887:3 14894:1 14898:2 14906:1 14909:1 14942:1 14951:2 14978:1 14992:1 15006:1 15009:1 15020:1 15021:1 15033:2 15058:7 15063:6 15067:1 15073:1 15099:2 15113:1 15118:2 15131:3 15134:1 15165:1 15190:2 15193:1 15194:1 15201:4 15210:1 15222:1 15230:1 15238:1 15239:3 15243:2 15244:5 15245:1 15250:1 15254:1 15255:1 15263:1 15264:4 15269:4 15302:1 15337:1 15345:1 15347:2 15356:2 15361:2 15366:3 15375:1 15388:2 15401:1 15421:2 15425:2 15442:1 15446:2 15461:1 15472:1 15478:1 15496:2 15502:7 15513:2 15529:1 15538:1 15540:1 15554:1 15557:1 15566:14 15587:1 15596:5 15597:1 15599:1 15620:2 15637:43 15665:3 15697:1 15731:1 15733:1 15734:2 15758:1 15763:1 15765:1 15773:2 15774:3 15776:1 15780:2 15784:1 15797:1 15810:1 15812:1 15815:1 15831:1 15832:1 15833:1 15855:1 15857:1 15876:1 15896:1 15902:5 15919:1 15934:2 15938:1 15953:1 15961:2 15969:1 15988:1 16026:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16107:1 16108:1 16133:1 16137:1 16146:1 16151:3 16156:1 16165:1 16167:2 16168:3 16187:3 16210:1 16215:1 16217:2 16219:1 16220:1 16228:1 16230:1 16249:1 16255:9 16262:1 16289:1 16300:2 16311:1 16338:1 16343:1 16348:1 16365:1 16366:1 16369:3 16373:1 16375:2 16378:1 16380:1 16390:1 16395:1 16407:1 16416:1 16421:1 16426:2 16427:2 16453:1 16492:2 16517:1 16558:1 16569:2 16571:1 16582:1 16588:1 16608:1 16609:1 16617:2 16623:1 16630:1 16646:1 16649:1 16652:1 16654:3 16658:1 16666:1 16676:1 16683:3 16690:1 16704:1 16705:1 16718:1 16721:1 16726:1 16744:1 16766:2 16771:1 16777:1 16796:4 16845:1 16866:1 16876:1 16877:1 16879:1 16896:3 16899:1 16902:1 16904:1 16911:1 16915:2 16920:1 16921:1 16936:1 16940:2 16953:1 16954:1 16964:2 16990:1 16993:1 17018:1 17019:2 17077:1 17098:1 17103:2 17113:1 17117:1 17128:1 17130:1 17142:2 17187:1 17194:1 17196:2 17199:2 17201:1 17219:1 17220:8 17235:1 17244:1 17248:1 17275:1 17285:1 17292:1 17294:1 17310:1 17311:1 17317:1 17334:1 17341:1 17363:1 17369:1 17392:1 17396:2 17403:1 17404:4 17417:1 17448:1 17479:1 17513:1 17529:2 17531:1 17540:1 17568:1 17571:1 17578:1 17595:1 17599:2 17609:2 17616:1 17640:1 17657:1 17661:1 17666:1 17667:3 17714:1 17723:1 17754:3 17760:1 17774:3 17779:1 17782:1 17785:3 17805:1 17806:1 17811:1 17821:1 17823:1 17828:1 17850:1 17856:1 17874:1 17912:7 17916:1 17923:1 17930:1 17949:1 17961:1 17968:1 17970:1 17978:1 17984:2 17998:1 18003:1 18010:1 18027:1 18031:3 18037:2 18052:3 18065:2 18095:1 18101:2529 18105:1 18118:4 18123:2 18157:1 18163:1 18178:3 18188:1 18215:3 18234:2 18245:2 18262:1 18267:1 18271:3 18272:1 18298:3 18306:1 18311:3 18314:1 18315:1 18331:1 18361:1 18362:1 18408:1 18410:3 18439:1 18462:2 18472:1 18481:1 18491:1 18493:1 18505:1 18512:1 18514:1 18515:1 18557:1 18567:1 18569:2 18572:1 18584:4 18599:1 18601:1 18607:1 18631:1 18667:1 18669:1 18677:1 18679:3 18731:1 18761:1 18780:1 18786:2 18796:1 18799:1 18801:1 18804:2 18813:3 18825:2 18829:1 18830:3 18834:1 18847:1 18859:10 18877:1 18878:1 18880:1 18881:1 18883:11 18892:1 18910:1 18911:3 18914:1 18936:1 18947:1 18950:3 18968:1 18972:1 18976:1 18978:2 18980:1 18983:1 18987:1 18997:2 18998:1 19005:1 19028:1 19034:2 19039:1 19055:1 19067:3 19099:1 19103:1 19106:1 19148:1 19153:1 19187:1 19206:1 19209:9 19212:1 19220:1 19231:2 19253:1 19279:1 19291:1 19299:1 19305:1 19307:5 19329:1 19347:2 19359:1 19360:1 19383:1 19391:1 19394:1 19399:1 19401:1 19402:1 19409:1 19436:1 19459:4 19464:1 19470:1 19472:1 19488:2 19489:1 19514:1 19523:1 19525:1 19539:1 19543:2 19545:1 19565:1 19569:1 19574:1 19582:2 19584:1 19591:6 19612:1 19638:1 19644:1 19663:9 19669:1 19677:2 19679:2 19694:1 19695:1 19706:1 19707:9 19724:1 19747:1 19756:1 19774:1 19786:1 19818:1 19822:1 19833:2 19853:4 19856:1 19865:1 19870:1 19900:2 19910:1 19918:1 19945:4 19955:1 19957:1 19968:1 19979:1 19986:1 20006:1 20022:1 20024:1 20078:2 20086:1 20095:1 20099:1 20117:1 20120:1 20129:1 20143:1 20145:1 20148:1 20169:1 20193:1 20210:3 20227:2 20231:1 20236:1 20240:1 20245:9 20248:1 20257:3 20260:1 20261:1 20279:1 20285:2 20289:4 20299:1 20322:3 20327:1 20335:1 20364:2 20375:2 20378:1 20396:2 20401:1 20402:1 20422:6 20429:1 20432:2 20438:1 20453:1 20490:1 20496:1 20502:1 20505:1 20524:2 20528:1 20531:1 20533:1 20538:1 20546:3 20561:1 20567:1 20569:1 20572:1 20583:1 20620:1 20628:1 20647:1 20672:1 20679:1 20712:1 20716:1 20718:4 20720:2 20723:2 20733:3 20741:1 20743:1 20745:1 20773:1 20782:1 20786:1 20798:1 20809:1 20810:1 20822:1 20827:1 20828:1 20838:1 20840:5 20843:2 20856:2 20860:1 20870:1 20874:1 20888:1 20927:2 20934:1 20941:1 20951:1 20952:1 20953:1 20973:2 20976:9 20978:1 20992:1 20998:1 20999:1 21003:1 21014:1 21019:1 21037:3 21053:1 21080:1 21084:2 21086:1 21090:1 21096:3 21108:1 21140:1 21142:4 21150:2 21156:2 21161:1 21209:1 21231:2 21237:1 21238:1 21239:7 21241:1 21245:2 21252:1 21255:1 21266:2 21267:1 21269:1 21272:1 21279:1 21282:2 21283:1 21291:1 21292:1 21306:2 21309:2 21314:1 21334:2 21379:4 21380:1 21403:1 21412:1 21423:2 21425:1 21435:1 21439:1 21446:4 21457:1 21464:1 21474:1 21515:14 21516:1 21518:1 21537:1 21548:1 21556:1 21575:1 21583:1 21594:2 21609:1 21611:1 21613:2 21620:1 21621:1 21628:2 21642:2 21645:1 21648:8 21664:2 21668:3 21679:2 21704:1 21712:1 21715:1 21718:2 21732:1 21735:1 21738:1 21743:1 21745:2 21753:1 21754:1 21766:2 21769:1 21781:5 21794:3 21807:2 21819:1 21828:2 21840:1 21860:2 21873:1 21929:1 21941:3 21946:1 21949:1 21967:1 21989:1 22001:1 22015:1 22021:1 22038:1 22042:1 22049:11 22051:2 22082:1 22099:1 22120:1 22130:1 22132:1 22133:2 22139:1 22165:3 22185:1 22188:5 22192:1 22223:1 22241:1 22264:2 22284:1 22290:1 22295:2 22329:1 22346:1 22348:2 22355:2 22374:1 22414:1 22423:1 22424:1 22425:3 22431:1 22432:1 22436:1 22448:1 22452:1 22453:1 22463:1 22466:1 22478:1 22481:2 22496:1 22530:1 22534:2 22548:1 22551:2 22556:1 22564:2 22568:3 22571:1 22572:1 22593:1 22607:1 22619:1 22627:3 22628:1 22646:5 22654:1 22657:1 22665:1 22667:1 22670:1 22672:2 22677:2 22681:1 22699:2 22706:1 22707:2 22708:1 22748:4 22755:1 22757:16 22759:1 22837:1 22847:1 22849:1 22856:1 22889:1 22916:2 22924:1 22937:1 22949:1 22951:1 22957:1 22986:1 23000:1 23008:1 23022:1 23024:2 23059:1 23062:2 23077:2 23104:4 23117:1 23122:1 23126:1 23177:1 23192:1 23207:3 23215:2 23222:1 23224:1 23227:1 23228:1 23229:2 23246:1 23278:1 23284:1 23306:1 23313:1 23328:1 23334:1 23360:1 23362:1 23396:1 23397:3 23405:1 23412:1 23413:1 23421:3 23434:1 23470:1 23492:1 23510:3 23520:1 23521:1 23568:5 23633:1 23646:1 23655:1 23656:1 23665:1 23666:2 23667:4 23668:1 23689:1 23697:1 23704:1 23707:2 23712:1 23716:3 23722:2 23752:1 23753:2 23766:1 23780:1 23788:1 23791:2 23802:1 23808:1 23820:1 23841:1 23844:1 23867:4 23870:1 23879:2 23883:1 23885:1 23890:1 23899:1 23908:1 23921:1 23937:1 23954:1 23971:1 23980:1 23982:1 24003:1 24006:1 24011:1 24013:1 24020:1 24036:1 24050:1 24052:1 24057:1 24059:1 24083:1 24086:1 24099:1 24106:2 24144:3 24155:4 24179:1 24208:1 24214:1 24224:1 24230:2 24234:1 24242:3 24269:2 24274:1 24275:1 24290:1 24306:1 24325:1 24339:4 24360:1 24404:2 24406:1 24412:1 24417:1 24420:1 24434:4 24473:2 24476:3 24478:1 24484:1 24488:3 24533:1 24534:1 24540:1 24567:1 24572:1 24600:1 24614:1 24620:1 24636:1 24637:2 24641:1 24644:4 24647:3 24653:1 24678:1 24692:1 24694:1 24697:2 24702:1 24718:1 24728:1 24730:5 24740:2 24742:1 24751:3 24760:5 24761:1 24772:1 24784:1 24789:1 24797:1 24817:2 24838:1 24841:5 24843:1 24847:1 24854:1 24855:1 24873:2 24897:1 24915:3 24942:4 24946:1 24967:2 24969:2 24990:2 24999:1 25018:1 25051:1 25053:1 25056:1 25061:1 25071:1 25081:1 25092:3 25109:1 25117:1 25131:1 25138:2 25140:1 25157:1 25160:2 25173:1 25175:1 25191:1 25194:1 25200:1 25217:1 25219:1 25228:1 25230:2 25235:1 25242:1 25256:5 25261:1 25262:1 25265:1 25268:1 25277:1 25289:1 25323:2 25326:1 25332:1 25348:1 25360:1 25385:1 25387:3 25402:1 25410:7 25414:1 25451:1 25478:1 25514:1 25525:1 25530:1 25537:1 25549:3 25555:1 25569:1 25571:1 25586:1 25660:3 25681:5 25683:2 25688:1 25696:2 25698:1 25699:4 25700:4 25703:1 25705:1 25722:1 25742:2 25751:2 25773:1 25782:1 25787:1 25793:2 25801:1 25805:1 25826:2 25844:1 25852:1 25861:1 25879:1 25910:1 25955:1 25957:1 26008:1 26023:1 26032:1 26042:1 26067:1 26069:2 26075:1 26104:2 26110:2 26120:2 26137:1 26151:1 26158:1 26216:1 26218:2 26272:1 26285:2 26289:3 26299:1 26301:1 26303:8 26331:1 26389:1 26397:16 26398:1 26400:3 26401:1 26410:1 26420:1 26430:1 26450:1 26454:1 26503:2 26505:3 26509:3 26510:1 26548:1 26549:1 26555:2 26557:1 26559:1 26563:1 26569:1 26570:1 26576:1 26581:1 26612:2 26624:1 26641:1 26651:1 26664:2 26666:1 26686:1 26689:1 26690:1 26711:1 26715:1 26725:1 26765:1 26766:1 26792:1 26794:1 26807:3 26829:2 26843:1 26869:6 26874:1 26879:1 26889:1 26894:1 26919:1 26954:3 26963:3 26977:1 26986:1 26989:1 26993:1 27017:1 27025:1 27035:1 27038:3 27044:1 27071:2 27080:1 27108:1 27111:4 27135:1 27145:1 27171:1 27213:1 27216:1 27217:1 27228:4 27231:1 27239:1 27248:1 27259:1 27271:1 27279:2 27280:21 27281:2 27283:2 27287:3 27289:1 27300:1 27315:1 27316:11 27326:1 27329:1 27337:1 27364:1 27368:2 27372:1 27373:1 27394:1 27401:1 27405:4 27414:4 27419:1 27447:3 27448:1 27452:2 27462:1 27465:1 27492:1 27495:1 27496:1 27519:1 27549:1 27558:2 27561:1 27590:1 27591:1 27611:1 27620:1 27627:1 27633:2 27636:1 27638:4 27641:1 27644:1 27661:1 27666:1 27676:1 27692:7 27705:3 27743:1 27745:1 27749:1 27772:3 27773:6 27775:1 27776:1 27783:1 27805:2 27814:1 27818:1 27828:1 27834:1 27835:1 27842:1 27864:3 27879:1 27914:3 27922:1 27926:1 27963:3 27968:1 27971:1 27977:4 27984:1 27994:2 28018:1 28026:1 28046:1 28053:1 28067:1 28081:1 28106:1 28108:1 28138:4 28169:2 28172:1 28176:1 28185:1 28210:1 28217:2 28222:1 28229:3 28265:1 28283:1 28292:2 28297:1 28300:1 28314:1 28326:1 28336:1 28343:6 28344:1 28352:1 28364:2 28395:2 28420:1 28430:4 28437:2 28496:1 28503:1 28504:1 28507:1 28509:1 28511:3 28516:1 28523:1 28560:1 28566:1 28569:1 28574:1 28575:1 28576:1 28579:1 28587:2 28618:1 16 26:1 27:1 69:1 78:1 83:4 100:1 106:1 137:1 147:1 153:1 162:1 165:1 175:1 201:1 213:1 230:1 235:4 254:1 283:1 286:1 296:4 318:1 327:1 336:2 337:2 338:1 364:1 372:1 375:1 382:1 407:2 418:1 442:3 445:1 449:2 460:1 478:1 489:2 504:1 507:1 509:1 514:1 523:1 526:2 552:1 553:1 567:2 603:1 617:1 627:3 634:1 648:2 654:1 661:4 665:1 671:1 676:1 684:1 688:1 699:1 707:1 713:1 724:1 735:1 757:2 768:1 772:1 787:1 803:1 805:1 813:1 824:1 826:1 843:1 852:1 856:1 872:1 902:1 910:1 915:1 924:2 934:2 939:3 940:1 941:1 942:5 943:2 944:2 966:1 978:1 985:3 987:2 1010:1 1015:2 1020:1 1052:1 1059:2 1062:1 1081:1 1086:1 1089:1 1108:1 1116:1 1125:1 1171:3 1175:1 1184:1 1192:2 1200:1 1201:4 1217:1 1222:1 1227:1 1239:3 1259:1 1263:1 1267:1 1269:1 1275:3 1278:1 1279:1 1289:2 1290:2 1302:2 1306:1 1319:1 1321:1 1331:1 1335:2 1346:2 1356:1 1375:2 1379:1 1404:1 1413:1 1415:2 1438:3 1440:1 1446:1 1448:1 1453:1 1464:1 1475:1 1484:6 1497:1 1501:5 1513:2 1521:2 1522:1 1525:2 1531:1 1541:1 1544:3 1569:1 1572:5 1583:1 1587:1 1591:1 1594:1 1596:1 1601:2 1621:1 1628:1 1632:3 1637:3 1640:2 1654:1 1657:1 1672:4 1675:3 1678:1 1683:1 1684:1 1698:1 1722:1 1731:1 1733:1 1743:2 1745:1 1747:1 1751:1 1758:2 1766:2 1784:1 1789:1 1790:1 1809:1 1810:1 1820:1 1824:1 1825:1 1831:1 1837:1 1849:1 1853:1 1860:1 1861:1 1877:1 1882:1 1883:1 1884:1 1895:1 1901:1 1903:1 1904:4 1910:1 1914:1 1921:1 1929:1 1930:2 1931:1 1950:1 1986:1 2006:1 2015:2 2017:1 2020:2 2022:1 2023:3 2044:1 2049:1 2054:2 2072:1 2074:3 2075:1 2076:2 2101:1 2108:3 2126:1 2133:1 2156:1 2158:1 2164:1 2170:1 2174:1 2188:1 2227:1 2228:1 2229:1 2230:2 2232:3 2237:1 2238:3 2240:1 2241:1 2244:5 2245:1 2246:3 2248:1 2251:1 2256:4 2259:3 2260:5 2272:1 2273:1 2290:1 2303:1 2308:1 2327:1 2331:1 2334:1 2336:2 2354:1 2359:1 2361:1 2374:1 2413:3 2423:1 2437:1 2448:2 2474:1 2483:1 2486:1 2488:1 2495:1 2526:1 2531:1 2556:1 2582:2 2595:4 2602:1 2607:3 2622:1 2623:1 2630:1 2633:1 2635:2 2637:6 2651:1 2662:2 2670:1 2674:1 2677:1 2684:3 2689:1 2690:1 2721:2 2731:2 2738:1 2739:1 2741:4 2747:2 2755:1 2792:4 2795:1 2799:1 2804:1 2818:10 2828:7 2857:2 2869:1 2885:21 2899:1 2903:1 2907:1 2918:1 2920:1 2936:1 2956:1 2986:2 2989:1 3037:3 3041:1 3053:1 3059:1 3062:1 3105:1 3107:1 3117:1 3129:2 3133:4 3151:10 3153:2 3168:1 3173:1 3181:1 3191:1 3208:1 3218:1 3219:5 3254:1 3281:1 3283:1 3293:1 3303:1 3327:1 3330:1 3340:1 3348:1 3361:3 3369:2 3373:1 3377:1 3388:3 3417:1 3427:2 3441:1 3442:1 3453:3 3491:1 3505:1 3511:1 3512:3 3513:1 3519:2 3521:1 3522:1 3543:1 3550:1 3569:1 3588:1 3603:1 3606:3 3625:1 3643:1 3651:2 3652:30 3677:2 3678:1 3679:7 3681:1 3686:1 3687:2 3688:16 3689:1 3691:4 3697:2 3706:3 3709:1 3718:1 3721:3 3724:2 3725:2 3740:2 3742:1 3743:1 3769:2 3776:1 3777:3 3783:1 3788:1 3808:1 3813:1 3815:1 3816:3 3826:2 3838:2 3844:1 3853:1 3866:1 3889:1 3891:1 3900:1 3901:1 3904:1 3905:1 3911:1 3915:1 3918:1 3920:1 3925:3 3939:3 3953:1 3993:1 4052:1 4056:2 4086:1 4090:1 4101:2 4106:1 4109:1 4110:1 4137:1 4143:1 4153:1 4156:1 4169:3 4209:1 4234:8 4250:1 4277:1 4302:1 4306:1 4313:5 4322:1 4325:2 4335:2 4347:3 4351:1 4372:1 4380:1 4386:1 4393:1 4448:1 4449:2 4484:1 4489:1 4515:2 4519:1 4522:2 4533:1 4543:3 4554:1 4563:2 4584:1 4653:1 4654:1 4659:1 4660:2 4671:1 4685:1 4693:2 4701:1 4742:1 4754:1 4779:1 4782:1 4792:12 4793:1 4804:1 4824:2 4848:1 4850:2 4860:1 4870:1 4893:3 4902:3 4903:1 4905:4 4925:2 4926:2 4927:5 4928:1 4930:1 4933:2 4935:1 4939:1 4940:15 4941:1 4943:1 4948:2 4949:3 4956:1 4972:1 4975:2 5031:1 5045:1 5053:1 5058:1 5120:1 5144:3 5145:3 5152:5 5181:1 5195:1 5209:1 5213:2 5214:15 5227:1 5242:1 5252:1 5280:2 5317:1 5319:1 5330:1 5355:1 5359:1 5361:1 5370:1 5375:1 5379:1 5386:1 5390:1 5392:1 5431:1 5433:1 5437:1 5447:1 5448:2 5465:1 5474:1 5479:1 5489:2 5494:1 5497:1 5502:1 5523:1 5525:1 5562:1 5565:3 5588:2 5595:1 5604:1 5614:1 5618:1 5620:1 5624:1 5631:1 5635:1 5646:1 5656:1 5659:1 5660:1 5662:1 5679:1 5683:1 5701:1 5703:1 5707:1 5731:1 5766:3 5791:1 5794:3 5796:1 5803:1 5860:2 5903:1 5924:1 5931:1 5932:5 5941:1 5945:2 5971:2 5976:1 6003:1 6020:1 6042:2 6043:1 6046:1 6047:1 6057:1 6079:3 6086:1 6087:2 6088:2 6126:1 6127:2 6129:1 6151:3 6153:1 6165:1 6166:1 6168:1 6177:1 6181:1 6184:1 6239:2 6242:1 6243:1 6244:1 6247:1 6248:1 6250:2 6251:2 6254:2 6255:3 6256:3 6262:2 6264:5 6265:1 6266:1 6267:2 6275:1 6298:1 6358:1 6392:1 6398:1 6404:1 6410:2 6413:1 6424:1 6450:1 6454:1 6494:1 6507:1 6508:1 6513:2 6523:1 6533:5 6535:1 6539:3 6547:1 6550:1 6557:1 6558:1 6566:2 6582:2 6598:2 6603:1 6604:1 6606:1 6615:1 6639:1 6657:1 6661:1 6677:2 6679:1 6684:1 6685:2 6687:1 6695:3 6699:1 6704:1 6711:2 6731:1 6739:1 6745:1 6780:1 6783:1 6789:1 6791:1 6799:2 6803:1 6819:1 6835:1 6857:1 6860:1 6876:2 6893:1 6896:1 6909:1 6954:2 6970:1 6974:1 6982:1 6996:1 7000:5 7010:2 7027:1 7036:1 7049:1 7080:1 7134:1 7180:1 7196:1 7204:1 7221:4 7267:1 7269:1 7275:3 7290:2 7307:3 7343:2 7360:1 7378:1 7406:1 7411:1 7420:1 7430:1 7433:1 7437:3 7446:1 7466:1 7477:2 7478:4 7479:2 7496:1 7499:2 7505:1 7530:1 7531:1 7544:1 7548:32 7549:1 7550:1 7555:1 7567:9 7568:17 7578:1 7579:1 7582:1 7586:1 7588:1 7615:1 7616:3 7638:1 7653:1 7668:1 7672:1 7689:2 7742:3 7746:5 7750:1 7786:1 7788:3 7805:1 7826:1 7851:1 7858:1 7862:1 7910:3 7921:1 7926:1 7928:5 7936:1 7951:1 7960:2 7973:1 7977:1 7983:1 7998:1 7999:1 8006:15 8026:1 8031:1 8037:2 8039:1 8049:1 8063:2 8092:1 8098:1 8107:2 8116:1 8127:2 8140:1 8154:1 8167:1 8170:3 8176:3 8181:1 8194:2 8196:1 8199:2 8213:2 8214:1 8215:1 8220:1 8231:1 8233:2 8241:2 8251:1 8260:2 8263:2 8269:1 8274:1 8277:1 8294:2 8308:1 8319:3 8336:1 8342:1 8345:1 8354:1 8357:2 8358:1 8359:3 8360:1 8361:2 8362:3 8365:1 8370:1 8373:2 8375:2 8381:3 8396:1 8402:1 8412:2 8420:1 8421:1 8427:1 8428:1 8440:1 8450:1 8455:2 8475:2 8496:5 8517:3 8526:1 8528:1 8531:1 8550:1 8556:1 8583:2 8595:1 8596:1 8603:1 8609:2 8616:2 8617:1 8621:1 8637:1 8667:3 8668:2 8675:3 8676:1 8677:1 8678:2 8680:3 8687:2 8688:1 8706:1 8707:1 8709:2 8711:4 8725:1 8727:1 8743:2 8748:1 8813:1 8827:2 8835:1 8853:2 8854:1 8863:1 8868:1 8880:1 8882:1 8895:1 8903:1 8919:1 8957:1 8962:3 8991:1 8994:1 8995:3 9008:1 9015:5 9035:1 9039:2 9042:1 9049:1 9055:1 9071:1 9078:1 9088:3 9091:1 9110:1 9124:1 9156:1 9160:1 9219:1 9240:1 9243:1 9246:2 9252:1 9253:1 9263:1 9264:2 9278:1 9292:1 9294:1 9298:1 9322:1 9325:2 9328:1 9375:15 9383:1 9408:2 9420:4 9428:2 9434:1 9437:1 9448:1 9455:1 9459:1 9467:2 9484:1 9511:13 9529:1 9535:2 9550:1 9569:5 9575:1 9580:1 9586:3 9587:1 9603:1 9614:1 9651:1 9655:3 9656:1 9690:6 9696:2 9697:4 9698:2 9706:1 9707:1 9717:1 9726:2 9730:2 9733:1 9739:1 9744:1 9748:3 9751:1 9753:1 9754:1 9761:1 9780:3 9785:2 9795:1 9797:2 9817:1 9830:1 9848:1 9853:3 9855:1 9873:9 9875:1 9876:4 9883:1 9885:1 9971:2 9976:1 9986:1 10018:1 10023:1 10035:4 10055:1 10084:1 10121:1 10137:2 10149:3 10155:1 10159:1 10163:1 10173:1 10181:1 10191:1 10209:2 10215:3 10227:1 10230:1 10251:1 10258:2 10276:2 10278:2 10281:1 10288:1 10297:6 10311:2 10312:3 10314:3 10320:1 10328:1 10330:1 10334:1 10355:1 10356:2 10369:1 10374:1 10383:4 10396:2 10401:1 10405:2 10413:6 10463:1 10464:1 10470:1 10475:1 10495:2 10498:1 10499:2 10503:1 10510:1 10524:2 10534:1 10545:1 10549:1 10588:1 10595:1 10604:1 10620:2 10621:1 10635:5 10649:3 10650:5 10663:1 10666:1 10699:4 10702:1 10727:2 10730:1 10740:1 10742:1 10747:1 10767:3 10779:2 10811:1 10839:1 10841:1 10843:2 10860:1 10892:1 10894:1 10900:1 10904:1 10905:3 10906:1 10926:1 10931:1 10941:1 10945:2 10961:1 10965:1 10970:1 10971:1 10996:2 11021:2 11032:1 11039:2 11047:1 11054:1 11073:1 11080:1 11081:3 11112:1 11116:1 11118:5 11120:1 11147:1 11169:1 11172:1 11180:1 11186:2 11198:1 11218:1 11232:1 11238:1 11242:1 11248:4 11261:3 11263:1 11278:3 11280:2 11299:1 11315:1 11322:1 11328:3 11335:1 11336:4 11337:1 11348:1 11349:1 11358:1 11359:1 11367:1 11370:1 11372:5 11373:1 11374:1 11381:1 11383:5 11392:1 11399:1 11406:4 11422:2 11431:4 11435:1 11441:2 11446:1 11455:1 11475:1 11476:1 11486:4 11492:1 11496:1 11498:1 11499:1 11530:1 11534:1 11544:3 11557:1 11563:1 11575:1 11615:2 11616:2 11633:2 11651:1 11683:1 11691:2 11734:2 11737:2 11749:1 11761:1 11764:1 11765:1 11766:1 11786:3 11787:3 11788:15 11797:4 11812:1 11823:1 11837:2 11859:1 11879:1 11904:1 11930:1 11938:5 11939:2 11955:1 11958:2 11959:1 11963:1 11984:1 12016:3 12019:1 12040:1 12047:1 12054:2 12058:1 12064:1 12069:1 12081:1 12115:1 12134:3 12148:1 12187:1 12189:2 12198:1 12203:1 12218:1 12257:1 12323:6 12336:1 12341:1 12345:1 12348:1 12357:1 12369:2 12370:3 12391:1 12394:1 12420:1 12451:1 12456:2 12485:1 12505:1 12510:1 12524:1 12525:2 12550:1 12566:1 12599:1 12652:1 12671:2 12691:1 12692:2 12698:1 12702:1 12710:1 12712:1 12715:1 12719:1 12722:1 12733:1 12741:1 12744:1 12756:2 12768:1 12771:2 12776:1 12792:1 12798:1 12799:1 12829:1 12834:1 12835:2 12837:1 12870:1 12872:1 12874:1 12881:1 12882:2 12883:1 12884:5 12889:3 12891:1 12892:1 12900:1 12904:2 12915:3 12919:1 12924:1 12928:3 12954:7 12956:1 12964:1 12966:1 12970:2 12980:1 12997:1 13019:2 13033:2 13034:1 13049:3 13053:1 13065:1 13071:1 13084:1 13095:3 13114:1 13122:5 13131:1 13136:1 13148:1 13149:2 13150:2 13160:1 13174:1 13178:2 13190:1 13201:2 13237:1 13243:1 13249:1 13250:1 13251:2 13252:1 13254:1 13277:1 13278:1 13296:1 13301:1 13302:1 13310:1 13313:1 13314:1 13318:2 13319:1 13330:2 13334:1 13335:1 13352:1 13365:6 13371:1 13380:1 13411:1 13416:1 13418:1 13434:1 13435:1 13439:1 13457:1 13458:1 13461:2 13462:1 13467:3 13493:1 13510:1 13515:1 13518:1 13529:2 13530:3 13535:2 13536:4 13543:1 13560:1 13565:3 13578:1 13589:2 13610:2 13612:1 13615:1 13616:1 13620:1 13628:1 13633:2 13666:1 13679:1 13722:1 13735:2 13750:1 13769:1 13782:1 13795:1 13829:1 13854:1 13855:1 13880:1 13898:1 13907:1 13908:1 13917:1 13920:1 13924:3 13926:1 13927:1 13935:1 13937:1 13951:2 13956:1 13970:1 13971:1 13985:1 13989:1 14009:2 14035:1 14051:1 14070:1 14076:1 14087:1 14091:1 14093:1 14099:1 14106:4 14126:1 14135:1 14142:1 14154:1 14158:1 14183:1 14197:1 14225:1 14227:4 14271:1 14370:1 14378:1 14401:2 14437:3 14443:3 14445:1 14447:1 14450:1 14451:1 14470:1 14475:1 14496:1 14505:1 14522:1 14545:2 14546:1 14551:3 14566:1 14577:1 14588:1 14592:1 14596:1 14601:1 14624:1 14633:1 14662:1 14665:1 14667:1 14671:1 14678:1 14710:1 14756:2 14760:3 14761:2 14766:1 14792:4 14793:1 14796:1 14811:1 14826:3 14828:1 14832:1 14835:1 14840:1 14855:1 14867:1 14870:1 14877:1 14887:3 14894:1 14898:2 14906:2 14909:1 14942:1 14951:2 14970:1 14978:1 14992:1 15006:1 15009:1 15020:1 15021:1 15033:2 15058:7 15063:7 15067:1 15073:1 15099:2 15112:1 15113:1 15118:2 15131:3 15134:1 15165:1 15190:2 15193:1 15194:1 15201:4 15210:1 15222:1 15230:1 15232:1 15238:1 15239:3 15243:2 15244:5 15245:1 15250:1 15254:1 15255:1 15263:1 15264:5 15269:4 15302:1 15337:1 15345:1 15347:2 15356:2 15361:2 15366:3 15375:1 15388:2 15401:1 15421:2 15425:2 15442:1 15446:2 15461:1 15472:1 15478:1 15496:2 15502:7 15513:2 15529:2 15538:1 15540:1 15554:1 15557:1 15566:15 15587:1 15596:5 15597:1 15599:1 15620:2 15637:46 15665:3 15669:1 15697:1 15731:1 15733:1 15734:2 15758:1 15763:2 15765:1 15766:1 15773:2 15774:3 15776:1 15780:2 15784:1 15797:1 15810:1 15812:1 15815:1 15831:1 15832:1 15833:1 15855:1 15857:1 15876:1 15896:1 15902:5 15919:1 15934:2 15938:1 15953:1 15961:2 15969:1 15988:1 16026:1 16035:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16107:1 16108:1 16133:1 16137:1 16146:2 16151:3 16153:1 16156:1 16165:1 16167:2 16168:3 16187:3 16199:1 16210:1 16215:1 16217:2 16219:1 16220:1 16228:1 16230:1 16237:1 16249:1 16255:10 16262:1 16289:1 16300:2 16311:1 16338:1 16343:1 16348:1 16365:1 16366:1 16369:3 16373:1 16375:2 16378:1 16380:1 16390:1 16395:1 16407:1 16416:1 16421:1 16426:2 16427:2 16453:1 16492:2 16517:1 16558:1 16569:2 16571:1 16582:1 16588:1 16608:1 16609:1 16617:2 16623:1 16630:1 16646:1 16649:1 16652:1 16654:3 16658:1 16666:1 16676:1 16683:3 16690:1 16704:1 16705:1 16718:1 16721:1 16726:1 16744:1 16766:2 16771:1 16777:1 16796:4 16845:1 16866:1 16876:1 16877:1 16879:1 16896:3 16899:1 16902:1 16904:1 16911:1 16915:2 16920:1 16921:1 16936:2 16940:2 16949:1 16953:1 16954:1 16964:2 16987:1 16990:1 16993:1 17018:2 17019:2 17058:1 17061:1 17077:1 17098:1 17103:2 17113:2 17117:1 17128:1 17130:1 17142:2 17187:1 17194:1 17196:2 17199:2 17201:1 17219:1 17220:8 17223:1 17235:1 17244:1 17248:1 17275:1 17285:1 17292:1 17294:1 17310:1 17311:1 17317:1 17334:2 17341:1 17354:1 17363:1 17369:1 17392:1 17396:2 17403:1 17404:4 17417:1 17448:1 17479:1 17513:1 17529:3 17531:1 17540:1 17568:1 17571:1 17578:1 17587:1 17595:1 17599:3 17609:2 17616:1 17640:1 17657:1 17661:1 17666:1 17667:3 17714:1 17723:1 17754:3 17760:1 17774:3 17779:1 17782:1 17785:3 17805:1 17806:1 17811:1 17821:1 17823:1 17828:1 17850:1 17856:1 17874:1 17912:9 17916:1 17923:1 17930:1 17949:1 17961:1 17968:1 17970:1 17978:1 17984:2 17998:1 18003:1 18010:1 18027:1 18031:3 18037:2 18052:3 18065:2 18095:1 18101:2639 18105:1 18118:4 18123:2 18157:1 18163:1 18171:1 18178:3 18188:1 18215:3 18234:2 18245:2 18262:1 18267:1 18271:3 18272:2 18298:3 18306:1 18311:3 18314:1 18315:1 18331:1 18361:1 18362:1 18381:1 18408:1 18410:4 18434:1 18439:1 18462:2 18472:1 18481:1 18491:1 18493:1 18505:1 18512:1 18514:1 18515:1 18557:1 18567:1 18569:2 18572:1 18584:4 18599:1 18601:1 18607:1 18631:1 18667:1 18669:1 18677:1 18679:3 18731:1 18761:1 18780:1 18786:2 18796:1 18799:1 18801:1 18804:2 18813:4 18825:2 18829:1 18830:3 18834:1 18847:1 18859:10 18877:1 18878:1 18880:1 18881:1 18883:12 18892:1 18910:1 18911:3 18914:1 18936:1 18947:1 18950:3 18968:1 18972:1 18976:1 18978:2 18980:2 18983:1 18987:1 18997:2 18998:1 19005:1 19028:1 19034:2 19039:1 19055:1 19067:3 19099:1 19103:1 19106:1 19148:1 19153:1 19179:1 19187:1 19206:1 19209:10 19212:1 19220:1 19231:2 19253:1 19279:1 19291:1 19299:1 19305:1 19307:5 19329:1 19347:2 19359:1 19360:1 19383:1 19391:1 19394:1 19399:1 19401:1 19402:1 19409:1 19436:1 19459:4 19464:1 19470:1 19472:1 19488:2 19489:1 19514:1 19523:1 19525:1 19539:1 19543:2 19545:1 19565:1 19569:1 19574:1 19582:2 19584:1 19591:6 19612:1 19638:1 19644:1 19663:10 19669:1 19677:2 19679:2 19694:1 19695:1 19706:1 19707:9 19724:1 19747:1 19756:1 19774:1 19786:1 19818:1 19822:1 19833:2 19853:4 19856:1 19865:1 19870:1 19900:2 19910:1 19918:1 19945:4 19955:1 19957:1 19968:1 19979:1 19986:1 20006:1 20022:1 20024:1 20044:1 20078:2 20086:1 20095:1 20099:1 20117:1 20120:1 20129:1 20143:1 20145:1 20148:1 20169:1 20193:1 20210:3 20227:2 20230:1 20231:1 20236:1 20240:1 20245:9 20248:1 20252:1 20257:3 20260:1 20261:1 20279:1 20285:2 20289:5 20299:1 20322:3 20327:1 20335:1 20364:2 20375:2 20378:1 20396:2 20401:1 20402:1 20422:6 20429:1 20432:2 20438:1 20453:1 20490:1 20496:1 20502:1 20505:1 20507:1 20524:2 20528:1 20531:1 20533:1 20538:1 20546:3 20561:1 20567:1 20569:1 20572:1 20583:1 20620:1 20628:1 20647:1 20672:1 20679:1 20712:1 20716:1 20718:4 20720:2 20723:3 20733:3 20741:1 20743:1 20745:1 20773:1 20782:1 20786:1 20787:1 20798:1 20809:1 20810:1 20822:1 20827:1 20828:1 20838:1 20840:5 20843:2 20856:2 20860:1 20870:1 20874:1 20888:1 20926:1 20927:2 20934:1 20941:1 20951:1 20952:1 20953:1 20973:2 20976:10 20978:1 20992:1 20998:1 20999:1 21003:1 21014:1 21019:1 21026:1 21037:4 21053:1 21080:2 21084:2 21086:1 21090:1 21096:3 21108:1 21140:1 21141:1 21142:4 21150:2 21156:2 21161:1 21209:1 21231:2 21237:1 21238:1 21239:7 21241:1 21245:2 21252:1 21254:1 21255:1 21266:2 21267:1 21269:1 21272:1 21279:1 21282:2 21283:1 21291:1 21292:1 21306:2 21309:2 21314:1 21334:2 21369:1 21379:4 21380:1 21403:1 21407:1 21412:1 21423:2 21425:1 21435:1 21439:1 21446:4 21457:1 21464:1 21474:1 21515:15 21516:1 21518:1 21537:1 21548:1 21556:1 21575:1 21583:1 21594:2 21609:1 21611:1 21613:2 21620:1 21621:1 21628:2 21642:2 21645:1 21648:8 21664:2 21668:3 21679:2 21704:1 21712:1 21715:1 21718:2 21732:1 21735:1 21738:1 21743:1 21745:2 21753:1 21754:1 21766:2 21769:1 21781:6 21794:3 21807:2 21819:1 21828:2 21840:1 21860:2 21873:1 21895:1 21929:1 21941:3 21946:1 21949:1 21967:1 21989:1 22001:1 22015:1 22021:1 22038:1 22042:1 22049:12 22051:2 22082:1 22099:1 22120:1 22130:1 22132:1 22133:2 22139:1 22165:3 22185:1 22188:5 22192:1 22223:1 22225:1 22241:1 22264:2 22284:1 22290:1 22295:2 22329:1 22344:1 22346:1 22348:2 22355:2 22374:1 22414:1 22423:1 22424:1 22425:3 22431:1 22432:1 22436:1 22448:1 22452:1 22453:1 22463:1 22466:1 22478:1 22481:2 22496:1 22530:1 22534:2 22548:1 22551:2 22556:1 22564:2 22568:3 22571:1 22572:1 22593:1 22607:1 22619:1 22627:3 22628:1 22646:6 22654:1 22657:1 22665:1 22667:1 22670:1 22672:2 22677:2 22681:1 22699:2 22706:1 22707:2 22708:1 22748:4 22755:1 22757:17 22759:1 22837:1 22847:1 22849:1 22856:1 22889:1 22916:2 22924:1 22937:1 22949:1 22951:1 22957:1 22965:1 22986:1 23000:1 23008:1 23022:1 23024:2 23059:1 23062:2 23077:2 23104:4 23117:1 23122:1 23126:1 23177:1 23192:1 23207:3 23215:2 23222:1 23224:1 23227:1 23228:1 23229:2 23246:1 23278:1 23284:1 23300:1 23306:1 23313:1 23328:1 23334:1 23360:1 23362:1 23389:1 23396:1 23397:5 23405:1 23412:1 23413:1 23421:3 23434:1 23470:1 23492:1 23510:3 23520:1 23521:1 23568:5 23633:2 23646:1 23655:1 23656:1 23665:1 23666:2 23667:4 23668:1 23689:1 23697:1 23704:1 23707:2 23712:1 23716:3 23722:2 23752:1 23753:2 23766:2 23780:1 23788:1 23791:2 23802:1 23808:1 23820:1 23841:1 23844:1 23860:1 23867:4 23870:1 23879:2 23883:1 23885:1 23890:1 23899:1 23908:1 23921:1 23937:1 23954:1 23971:1 23980:1 23982:1 23998:1 24003:1 24006:2 24011:1 24013:1 24020:1 24036:1 24050:1 24052:1 24057:1 24059:1 24083:1 24086:1 24099:1 24106:2 24144:3 24155:5 24179:1 24208:1 24214:1 24224:1 24230:2 24234:1 24242:3 24269:2 24274:1 24275:1 24290:1 24306:1 24325:1 24331:1 24339:4 24360:1 24404:2 24406:1 24412:1 24417:1 24420:1 24434:4 24473:2 24476:3 24478:1 24484:1 24488:3 24533:1 24534:1 24540:1 24567:1 24572:1 24600:1 24614:1 24620:1 24636:1 24637:2 24641:1 24644:4 24647:3 24653:1 24678:1 24692:1 24694:1 24697:2 24702:1 24718:1 24728:1 24730:5 24740:2 24742:1 24751:3 24760:5 24761:1 24772:1 24784:1 24789:1 24797:1 24817:2 24838:1 24841:6 24843:1 24847:1 24854:1 24855:1 24873:2 24897:1 24915:3 24942:4 24946:1 24967:2 24969:2 24990:2 24999:1 25018:1 25051:1 25053:1 25056:1 25061:1 25071:1 25081:1 25092:3 25109:1 25117:1 25131:1 25138:2 25140:1 25143:1 25157:1 25160:2 25173:1 25175:1 25191:1 25194:1 25200:1 25217:1 25219:1 25228:1 25230:2 25235:1 25242:1 25256:6 25261:1 25262:1 25265:1 25268:1 25277:1 25283:1 25286:1 25289:1 25323:2 25326:1 25332:1 25348:1 25360:1 25385:1 25387:3 25402:1 25410:9 25414:1 25451:1 25478:1 25514:1 25525:1 25530:1 25537:1 25549:3 25555:1 25569:1 25571:2 25586:1 25660:3 25681:5 25683:2 25688:1 25696:2 25698:1 25699:4 25700:4 25703:1 25705:1 25722:1 25742:2 25751:2 25773:1 25782:1 25787:1 25793:3 25801:1 25805:1 25826:3 25844:1 25852:1 25861:1 25867:1 25879:1 25910:1 25955:1 25957:1 26008:1 26023:1 26032:1 26042:1 26051:1 26067:1 26069:2 26075:1 26104:2 26110:2 26120:2 26137:1 26151:1 26158:1 26201:1 26216:1 26218:2 26228:1 26272:1 26285:2 26289:3 26299:1 26301:1 26303:8 26331:1 26389:1 26397:17 26398:1 26400:3 26401:1 26410:1 26420:1 26430:1 26450:1 26454:1 26503:2 26505:3 26509:3 26510:1 26548:1 26549:1 26555:2 26557:1 26559:1 26563:1 26569:1 26570:1 26576:1 26581:1 26612:2 26624:1 26641:1 26651:1 26664:2 26666:1 26686:1 26689:1 26690:1 26711:1 26715:1 26725:1 26765:1 26766:1 26792:1 26794:1 26807:3 26810:1 26829:2 26843:1 26869:7 26874:1 26879:1 26889:1 26894:1 26919:1 26954:3 26963:3 26977:1 26986:1 26989:1 26993:1 27017:1 27025:1 27035:1 27038:3 27044:1 27071:2 27080:1 27108:2 27111:4 27135:1 27143:1 27145:1 27171:1 27213:1 27216:1 27217:1 27228:4 27231:1 27239:1 27248:1 27259:1 27271:1 27279:2 27280:22 27281:2 27283:2 27287:3 27289:1 27290:1 27300:1 27315:1 27316:11 27326:1 27329:1 27337:1 27364:1 27368:2 27372:1 27373:1 27394:1 27401:1 27405:4 27414:4 27419:1 27447:3 27448:1 27452:2 27458:1 27462:1 27465:1 27492:1 27495:1 27496:1 27519:1 27549:1 27558:2 27561:1 27590:1 27591:1 27611:1 27620:1 27627:1 27633:2 27636:1 27638:4 27641:1 27644:1 27661:2 27666:1 27676:1 27692:7 27695:1 27705:3 27743:1 27745:1 27749:1 27772:3 27773:6 27775:1 27776:1 27783:1 27799:1 27805:2 27814:1 27818:1 27828:1 27834:1 27835:1 27842:1 27864:3 27879:1 27914:3 27922:1 27926:1 27961:1 27963:4 27968:1 27971:1 27977:5 27984:1 27994:2 28018:1 28026:1 28046:1 28053:1 28067:1 28081:1 28106:1 28108:1 28138:4 28169:2 28172:1 28176:1 28185:1 28210:1 28217:2 28222:1 28229:3 28237:1 28265:1 28283:1 28292:2 28297:1 28300:1 28314:1 28326:2 28336:1 28343:6 28344:1 28352:1 28364:2 28380:1 28395:2 28397:1 28420:1 28430:4 28437:2 28496:1 28503:1 28504:1 28507:1 28509:1 28511:3 28516:1 28523:1 28560:1 28566:1 28569:1 28574:1 28575:1 28576:1 28579:1 28587:2 28618:1 16 26:1 27:1 69:1 78:1 83:4 100:1 106:1 137:1 147:1 153:1 162:1 165:1 175:1 201:1 213:1 230:1 235:4 254:1 283:1 286:1 296:4 318:1 327:1 336:2 337:2 338:1 364:1 372:1 375:1 382:1 407:2 418:1 442:3 445:1 449:2 460:1 478:1 489:2 504:1 507:1 509:1 514:1 523:1 526:2 552:1 553:1 567:2 603:1 617:1 627:3 634:1 648:2 654:1 661:4 665:1 671:1 676:1 684:1 688:1 699:1 707:1 713:1 724:1 735:1 757:2 768:1 772:1 787:1 803:1 805:1 813:1 824:1 826:1 843:1 852:1 856:1 872:1 902:1 910:2 915:1 924:2 934:2 939:3 940:1 941:1 942:5 943:2 944:2 966:1 978:1 983:1 985:4 987:2 1010:1 1015:2 1020:1 1052:1 1059:2 1062:1 1081:1 1086:1 1089:1 1108:1 1116:1 1125:1 1171:3 1175:1 1184:1 1187:1 1192:2 1200:1 1201:4 1217:1 1222:1 1227:1 1239:3 1259:1 1263:1 1267:1 1269:1 1275:3 1278:1 1279:1 1289:2 1290:2 1302:2 1306:1 1319:1 1321:1 1331:1 1335:2 1346:2 1356:1 1375:2 1379:1 1404:1 1413:1 1415:2 1438:3 1440:1 1446:1 1448:1 1453:1 1464:1 1475:1 1484:6 1497:1 1501:5 1513:2 1521:2 1522:1 1525:2 1531:1 1541:1 1544:3 1569:1 1572:5 1583:1 1587:1 1591:1 1594:1 1596:1 1601:2 1621:2 1628:1 1632:3 1637:3 1640:2 1653:1 1654:1 1657:1 1672:4 1675:3 1678:1 1683:1 1684:1 1698:1 1722:1 1731:1 1733:1 1743:2 1745:1 1747:1 1751:1 1758:2 1766:2 1784:1 1789:1 1790:1 1809:1 1810:1 1820:1 1824:1 1825:1 1831:1 1837:1 1849:1 1853:1 1860:1 1861:1 1877:1 1882:1 1883:1 1884:1 1889:1 1895:1 1901:1 1903:1 1904:4 1910:1 1914:1 1921:1 1929:1 1930:2 1931:1 1950:1 1986:1 2006:1 2015:2 2017:1 2019:1 2020:2 2022:1 2023:3 2044:1 2049:1 2054:2 2072:1 2074:3 2075:1 2076:2 2101:1 2108:3 2126:1 2133:1 2156:1 2158:1 2164:1 2170:1 2174:1 2188:1 2227:1 2228:1 2229:1 2230:2 2232:4 2237:1 2238:3 2240:1 2241:1 2244:5 2245:1 2246:3 2248:1 2251:1 2256:4 2259:3 2260:6 2272:1 2273:1 2290:1 2303:1 2308:1 2327:1 2331:1 2334:1 2336:2 2354:1 2359:1 2361:1 2374:1 2413:3 2423:1 2437:1 2448:2 2474:1 2483:1 2486:1 2488:1 2495:1 2526:1 2531:1 2556:1 2582:2 2595:4 2602:1 2607:3 2615:1 2622:1 2623:1 2630:1 2633:1 2635:2 2637:6 2651:1 2662:2 2670:1 2674:1 2677:1 2684:3 2689:1 2690:1 2721:2 2731:2 2738:1 2739:1 2741:4 2747:2 2755:1 2792:4 2795:1 2799:1 2804:1 2818:10 2828:7 2857:2 2869:1 2885:21 2899:1 2903:1 2907:1 2918:1 2920:1 2936:1 2956:1 2986:2 2989:1 3037:3 3041:1 3053:1 3059:1 3062:1 3070:1 3105:1 3107:1 3117:1 3129:2 3133:4 3151:10 3153:2 3168:1 3173:1 3181:1 3191:1 3208:1 3218:1 3219:5 3254:1 3281:1 3283:1 3293:1 3303:1 3327:1 3330:1 3340:1 3348:1 3361:3 3369:2 3373:1 3377:1 3388:3 3417:1 3426:1 3427:2 3441:1 3442:1 3453:3 3491:1 3505:1 3511:1 3512:3 3513:1 3519:2 3521:1 3522:1 3543:1 3550:1 3569:1 3588:1 3603:1 3606:3 3625:1 3643:1 3651:2 3652:30 3677:2 3678:1 3679:7 3681:1 3686:1 3687:2 3688:16 3689:1 3691:4 3697:2 3706:3 3709:1 3718:1 3721:3 3724:2 3725:2 3740:2 3742:1 3743:1 3769:2 3776:1 3777:3 3783:1 3788:1 3808:1 3813:1 3815:1 3816:3 3826:2 3838:2 3844:1 3853:1 3866:1 3889:1 3891:1 3900:1 3901:1 3904:1 3905:1 3911:1 3915:1 3918:1 3920:1 3925:3 3939:3 3953:1 3993:1 4036:1 4052:1 4056:2 4086:1 4090:1 4101:2 4106:1 4109:1 4110:1 4137:1 4143:1 4153:1 4156:1 4169:3 4209:1 4234:8 4250:1 4277:1 4302:1 4306:1 4313:5 4322:1 4325:2 4335:2 4347:3 4351:1 4372:1 4380:1 4386:1 4393:1 4448:1 4449:2 4484:1 4489:1 4515:2 4519:1 4522:2 4533:1 4543:3 4554:1 4563:2 4584:1 4586:1 4653:1 4654:1 4659:1 4660:2 4671:1 4685:1 4693:2 4701:1 4742:1 4754:1 4779:1 4782:1 4792:12 4793:1 4804:1 4824:2 4848:1 4850:2 4860:1 4870:1 4893:3 4902:3 4903:1 4905:4 4925:2 4926:2 4927:5 4928:1 4930:1 4933:2 4935:1 4939:1 4940:15 4941:1 4943:1 4948:2 4949:3 4956:1 4972:1 4975:2 5031:1 5045:1 5053:1 5058:1 5120:1 5144:3 5145:3 5152:5 5181:1 5195:1 5209:1 5213:2 5214:15 5227:1 5242:1 5252:1 5280:2 5317:1 5319:1 5330:1 5355:1 5359:1 5361:1 5370:1 5375:1 5379:1 5386:1 5390:1 5392:1 5431:1 5433:1 5437:1 5447:1 5448:2 5465:1 5474:1 5479:1 5489:2 5494:1 5497:1 5502:1 5523:1 5525:1 5562:1 5565:3 5588:2 5595:1 5604:1 5614:1 5618:1 5620:1 5624:1 5631:1 5635:1 5646:1 5656:1 5659:1 5660:1 5662:1 5679:1 5683:1 5697:1 5701:1 5703:1 5707:1 5731:1 5766:3 5791:1 5794:3 5796:1 5803:1 5860:2 5903:1 5924:1 5931:1 5932:5 5941:1 5945:2 5971:2 5976:1 6003:1 6020:1 6042:2 6043:1 6046:1 6047:1 6057:1 6079:3 6086:1 6087:2 6088:2 6126:1 6127:2 6129:1 6151:4 6153:1 6165:1 6166:1 6168:1 6177:1 6181:1 6184:1 6239:2 6242:1 6243:1 6244:1 6247:1 6248:1 6250:2 6251:2 6254:2 6255:3 6256:3 6262:2 6264:5 6265:1 6266:1 6267:2 6275:1 6298:1 6358:1 6392:1 6398:1 6404:1 6410:2 6413:1 6424:1 6450:1 6454:1 6494:1 6507:1 6508:1 6513:2 6523:1 6533:5 6535:1 6539:3 6547:1 6550:1 6557:1 6558:1 6566:2 6582:2 6598:2 6603:1 6604:1 6606:1 6615:1 6639:1 6657:1 6661:1 6677:2 6679:1 6684:1 6685:2 6687:1 6695:3 6699:1 6704:1 6711:2 6731:1 6739:1 6745:1 6780:1 6783:2 6789:1 6791:1 6799:2 6803:1 6819:1 6835:1 6857:1 6860:1 6876:2 6893:1 6896:1 6909:1 6954:2 6970:1 6974:1 6982:1 6996:1 7000:5 7010:2 7027:1 7036:1 7049:1 7080:1 7134:1 7180:1 7196:1 7204:1 7221:4 7267:1 7269:1 7275:3 7290:2 7307:4 7343:2 7360:1 7378:1 7406:1 7411:1 7420:1 7430:1 7433:1 7437:3 7446:1 7466:1 7477:2 7478:4 7479:2 7496:1 7499:2 7505:1 7530:1 7531:1 7544:1 7548:34 7549:1 7550:1 7555:1 7567:9 7568:17 7578:1 7579:1 7582:1 7586:1 7588:1 7615:1 7616:3 7638:1 7653:1 7668:1 7672:1 7689:2 7742:3 7746:5 7750:1 7786:1 7788:3 7805:1 7826:1 7851:1 7858:1 7862:1 7910:3 7921:1 7926:1 7928:5 7936:2 7951:1 7960:2 7973:1 7977:1 7983:1 7998:1 7999:1 8006:15 8026:1 8031:1 8037:2 8039:1 8049:1 8063:2 8092:1 8098:1 8107:2 8116:1 8127:2 8140:1 8154:1 8167:1 8170:3 8176:3 8181:1 8194:2 8196:1 8199:2 8213:2 8214:1 8215:1 8220:1 8231:1 8233:2 8241:2 8251:1 8260:2 8263:2 8269:1 8274:1 8277:1 8294:2 8308:1 8319:3 8336:1 8342:1 8345:1 8354:1 8357:2 8358:1 8359:3 8360:1 8361:2 8362:3 8365:1 8370:1 8373:2 8375:2 8381:3 8396:1 8402:1 8412:2 8420:1 8421:1 8427:1 8428:1 8440:1 8450:1 8455:2 8462:1 8475:2 8496:5 8517:3 8526:1 8528:1 8531:1 8550:1 8556:1 8583:2 8595:1 8596:1 8603:1 8609:2 8616:2 8617:1 8621:1 8637:1 8667:3 8668:2 8675:3 8676:1 8677:1 8678:2 8680:3 8687:2 8688:2 8706:1 8707:1 8709:2 8711:4 8725:1 8727:1 8743:2 8748:1 8813:1 8827:2 8835:1 8853:2 8854:1 8863:1 8868:1 8880:1 8882:1 8895:1 8903:1 8919:1 8957:1 8962:3 8991:1 8994:1 8995:3 9008:1 9015:5 9035:2 9039:2 9042:1 9049:1 9055:1 9071:1 9078:1 9088:3 9091:1 9110:1 9124:1 9156:1 9160:1 9219:1 9240:1 9243:1 9246:2 9252:1 9253:1 9263:1 9264:2 9278:1 9292:1 9294:1 9298:1 9322:1 9325:2 9328:1 9375:15 9383:1 9408:2 9420:4 9428:2 9434:1 9437:1 9448:1 9455:1 9459:1 9467:2 9484:1 9511:13 9529:1 9535:2 9550:1 9569:5 9575:1 9580:1 9586:3 9587:1 9590:1 9603:1 9614:1 9651:2 9655:3 9656:1 9690:6 9696:2 9697:4 9698:2 9706:1 9707:1 9717:1 9726:2 9730:2 9733:1 9739:1 9744:1 9748:3 9751:1 9753:1 9754:1 9761:1 9780:3 9785:2 9795:1 9797:2 9817:1 9830:1 9848:1 9853:3 9855:1 9873:9 9875:1 9876:4 9883:1 9885:1 9967:1 9971:2 9976:1 9986:1 10018:1 10023:1 10035:4 10055:1 10084:1 10121:1 10137:2 10149:3 10155:1 10159:1 10163:1 10173:1 10181:1 10191:1 10209:2 10215:3 10227:1 10230:1 10251:1 10258:2 10276:2 10278:2 10281:1 10288:1 10297:6 10311:2 10312:3 10314:3 10320:1 10328:1 10330:1 10334:1 10355:1 10356:2 10369:1 10374:1 10383:4 10396:2 10401:1 10405:2 10413:6 10463:1 10464:1 10470:1 10475:1 10495:2 10498:1 10499:2 10503:1 10510:1 10524:2 10534:1 10545:1 10549:1 10588:1 10595:1 10604:1 10620:2 10621:1 10635:5 10649:3 10650:5 10663:1 10666:1 10699:4 10702:1 10727:2 10730:1 10740:1 10742:1 10747:1 10767:3 10779:2 10811:1 10839:1 10841:1 10843:2 10860:1 10892:1 10894:1 10899:1 10900:1 10904:1 10905:3 10906:1 10926:1 10931:1 10941:1 10945:2 10961:1 10965:1 10970:1 10971:1 10996:2 11019:1 11021:2 11032:1 11039:2 11047:1 11054:1 11073:1 11080:1 11081:3 11112:1 11116:1 11118:5 11120:1 11147:1 11169:1 11172:1 11180:1 11186:2 11198:1 11218:1 11232:1 11238:1 11242:1 11248:4 11261:3 11263:1 11278:3 11280:2 11299:1 11315:1 11322:1 11328:3 11335:1 11336:4 11337:1 11348:1 11349:1 11358:1 11359:1 11367:1 11370:1 11372:5 11373:1 11374:1 11381:1 11383:5 11392:1 11399:1 11406:4 11422:2 11431:4 11435:1 11441:2 11446:1 11455:1 11475:1 11476:1 11486:4 11492:1 11496:1 11498:1 11499:2 11530:1 11534:1 11544:3 11557:1 11563:1 11575:1 11615:2 11616:2 11633:2 11651:1 11683:1 11691:2 11734:2 11737:2 11749:1 11761:1 11764:1 11765:1 11766:1 11786:3 11787:3 11788:15 11797:4 11812:1 11823:1 11837:2 11859:1 11879:1 11904:1 11930:1 11938:5 11939:2 11955:1 11958:2 11959:1 11963:1 11984:1 12016:3 12019:1 12040:1 12047:1 12054:2 12058:1 12064:1 12069:1 12081:1 12115:1 12134:3 12148:1 12187:1 12189:2 12198:1 12203:1 12218:1 12257:1 12323:6 12336:1 12341:1 12345:1 12348:1 12357:1 12369:2 12370:3 12391:1 12394:1 12420:1 12451:1 12456:2 12485:1 12505:1 12510:1 12524:1 12525:2 12550:1 12566:1 12599:1 12652:1 12671:2 12691:1 12692:2 12698:1 12702:1 12710:1 12712:1 12715:1 12719:1 12722:1 12733:1 12741:1 12744:1 12756:2 12768:1 12769:1 12771:2 12776:1 12792:1 12798:1 12799:1 12829:1 12834:1 12835:2 12837:1 12870:2 12872:1 12874:1 12881:1 12882:2 12883:1 12884:6 12889:3 12891:1 12892:1 12900:1 12904:2 12915:3 12919:1 12924:1 12928:3 12954:7 12956:1 12964:1 12966:1 12970:2 12980:1 12997:1 13019:2 13033:2 13034:1 13049:3 13053:1 13065:1 13071:1 13084:1 13095:3 13114:1 13119:1 13122:5 13131:1 13136:1 13148:1 13149:2 13150:2 13160:1 13174:1 13178:2 13190:1 13201:2 13237:1 13243:1 13249:1 13250:1 13251:2 13252:1 13254:1 13277:1 13278:1 13296:1 13301:1 13302:1 13310:1 13313:1 13314:1 13318:2 13319:1 13330:2 13334:1 13335:1 13352:1 13365:7 13371:1 13380:1 13411:1 13416:1 13418:1 13434:1 13435:1 13439:1 13457:1 13458:1 13461:2 13462:1 13467:3 13493:1 13510:1 13515:1 13518:1 13529:2 13530:3 13535:2 13536:4 13543:1 13560:1 13565:3 13578:1 13589:2 13610:2 13612:1 13615:1 13616:1 13620:1 13628:1 13629:1 13633:2 13666:1 13679:1 13722:1 13723:1 13735:2 13750:1 13769:1 13782:1 13795:1 13829:1 13854:1 13855:1 13880:1 13898:2 13907:1 13908:1 13917:1 13920:1 13924:3 13926:1 13927:1 13935:1 13937:1 13951:2 13956:1 13970:1 13971:1 13985:1 13989:1 14009:2 14035:1 14051:1 14070:1 14076:1 14087:1 14091:1 14093:1 14099:1 14106:4 14126:1 14135:1 14142:1 14145:1 14154:1 14158:1 14183:1 14197:1 14225:1 14227:4 14271:1 14370:1 14378:1 14401:2 14437:3 14443:3 14445:1 14447:1 14450:1 14451:1 14470:1 14475:1 14496:1 14505:1 14522:1 14545:2 14546:1 14551:3 14566:1 14577:1 14588:1 14592:1 14596:1 14601:1 14624:1 14633:1 14662:1 14665:1 14667:1 14671:1 14678:1 14710:1 14756:2 14760:3 14761:2 14766:1 14792:4 14793:1 14796:1 14811:1 14826:3 14828:1 14832:1 14835:1 14840:1 14855:1 14867:1 14870:1 14877:1 14887:3 14894:2 14898:2 14906:2 14909:1 14942:1 14951:2 14970:1 14978:1 14992:1 15006:1 15009:1 15020:1 15021:1 15033:3 15058:7 15063:7 15067:1 15073:1 15099:2 15112:1 15113:1 15118:2 15131:3 15134:1 15165:1 15190:2 15193:1 15194:1 15201:4 15210:1 15222:1 15230:1 15232:1 15238:1 15239:3 15243:2 15244:5 15245:1 15250:1 15254:1 15255:1 15263:1 15264:5 15269:4 15302:1 15337:1 15345:1 15347:2 15356:2 15361:2 15366:4 15375:1 15388:2 15401:1 15421:2 15425:2 15442:1 15446:2 15461:1 15472:1 15478:1 15496:2 15502:8 15513:2 15529:2 15538:1 15540:1 15554:1 15557:1 15566:15 15587:1 15596:5 15597:1 15599:1 15620:2 15637:46 15665:3 15669:1 15697:1 15731:1 15733:1 15734:2 15758:1 15763:2 15765:1 15766:1 15773:2 15774:3 15776:1 15780:2 15784:1 15797:1 15810:1 15812:1 15815:1 15831:1 15832:1 15833:1 15855:1 15857:1 15876:1 15896:1 15902:5 15919:1 15934:2 15938:1 15953:1 15961:2 15969:1 15988:1 16026:1 16035:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16107:1 16108:1 16133:1 16137:1 16146:2 16151:3 16153:1 16156:1 16165:1 16167:2 16168:3 16187:3 16199:1 16210:1 16215:1 16217:2 16219:1 16220:1 16228:1 16230:1 16237:1 16249:1 16255:10 16262:1 16289:1 16300:2 16311:1 16338:1 16343:1 16348:1 16365:1 16366:2 16369:3 16373:1 16375:2 16378:1 16380:1 16390:1 16395:1 16407:1 16416:1 16421:1 16426:2 16427:2 16446:1 16453:1 16472:1 16492:2 16517:1 16558:1 16569:2 16571:1 16582:1 16588:1 16608:1 16609:1 16617:2 16623:1 16630:1 16646:1 16649:1 16652:1 16654:3 16658:1 16666:1 16676:1 16683:3 16690:1 16704:1 16705:1 16718:1 16721:1 16726:1 16744:1 16766:2 16771:1 16777:1 16796:4 16845:1 16866:1 16876:1 16877:1 16879:1 16896:3 16899:1 16902:1 16904:1 16911:1 16915:2 16920:1 16921:1 16936:2 16940:2 16949:1 16953:1 16954:1 16964:2 16987:1 16990:1 16993:1 17018:2 17019:2 17058:1 17061:1 17077:1 17098:1 17103:2 17113:2 17117:1 17128:1 17130:1 17142:2 17187:1 17194:1 17196:2 17199:2 17201:1 17219:1 17220:8 17223:1 17235:1 17244:1 17248:1 17275:1 17285:1 17292:1 17294:1 17310:1 17311:2 17317:1 17334:2 17338:1 17341:1 17354:1 17363:1 17369:1 17392:1 17396:2 17403:1 17404:4 17417:1 17448:1 17479:1 17501:1 17513:1 17529:3 17531:1 17540:1 17568:1 17571:1 17578:1 17587:1 17595:1 17599:3 17609:2 17616:1 17640:1 17657:1 17661:1 17666:1 17667:3 17714:1 17723:1 17754:3 17760:1 17774:3 17779:1 17782:1 17785:3 17805:1 17806:1 17811:1 17821:1 17823:1 17828:1 17850:1 17856:1 17874:1 17912:9 17916:1 17923:1 17930:1 17949:1 17961:1 17968:1 17970:1 17978:1 17984:2 17998:1 18003:1 18010:1 18027:1 18031:3 18037:2 18052:3 18065:2 18095:1 18101:2700 18105:1 18118:4 18123:2 18157:1 18163:1 18171:1 18178:3 18188:1 18215:3 18234:2 18245:2 18262:1 18267:1 18271:3 18272:2 18298:3 18306:1 18311:3 18314:1 18315:1 18331:1 18361:1 18362:1 18381:1 18408:1 18410:4 18434:1 18439:1 18462:2 18472:1 18481:1 18491:1 18493:1 18505:1 18512:1 18514:1 18515:1 18557:1 18567:1 18569:2 18572:1 18584:4 18599:1 18601:1 18607:1 18631:1 18667:1 18669:1 18677:1 18679:3 18731:1 18761:1 18780:1 18786:2 18796:1 18799:2 18801:1 18804:2 18813:4 18825:2 18829:1 18830:3 18834:1 18847:1 18859:10 18877:1 18878:1 18880:1 18881:1 18883:12 18892:1 18910:1 18911:3 18914:1 18936:1 18947:1 18950:3 18968:1 18972:2 18976:1 18978:2 18980:2 18983:1 18987:1 18997:2 18998:1 19005:1 19028:1 19034:3 19039:1 19055:1 19067:3 19099:1 19103:1 19106:1 19148:1 19153:1 19179:1 19187:1 19206:1 19209:10 19212:1 19220:1 19231:2 19253:1 19279:1 19291:1 19299:1 19305:1 19307:5 19329:1 19347:2 19359:1 19360:1 19383:1 19390:1 19391:1 19394:1 19399:1 19401:1 19402:1 19409:1 19436:1 19459:4 19464:1 19470:1 19472:1 19488:2 19489:1 19514:1 19523:1 19525:1 19539:1 19543:2 19545:1 19565:1 19569:1 19574:2 19582:2 19584:1 19591:6 19612:1 19638:1 19644:1 19663:10 19669:1 19677:2 19679:2 19694:1 19695:1 19706:1 19707:9 19724:1 19747:1 19756:1 19774:1 19786:1 19818:1 19822:1 19833:2 19853:4 19856:1 19865:1 19870:1 19900:2 19910:1 19918:1 19945:4 19955:1 19957:1 19968:1 19979:1 19986:1 20006:1 20022:1 20024:1 20044:1 20078:2 20086:1 20095:1 20099:1 20117:1 20120:1 20129:1 20143:1 20145:1 20148:1 20169:1 20193:1 20210:3 20227:2 20230:1 20231:1 20236:1 20240:1 20245:9 20248:1 20252:1 20257:3 20260:1 20261:1 20279:1 20285:2 20289:5 20299:1 20322:3 20327:1 20335:1 20364:2 20375:2 20378:1 20396:2 20401:1 20402:1 20422:7 20429:1 20432:2 20438:1 20453:1 20490:1 20496:1 20502:1 20505:1 20507:1 20524:2 20528:1 20531:1 20533:1 20538:1 20546:3 20561:1 20567:1 20569:1 20572:1 20583:1 20620:1 20628:1 20647:1 20672:1 20679:1 20712:1 20716:1 20718:4 20720:2 20723:3 20733:3 20741:1 20743:1 20745:1 20773:1 20782:1 20786:1 20787:1 20798:1 20809:1 20810:1 20822:1 20827:1 20828:1 20838:1 20840:5 20843:2 20856:2 20860:1 20870:1 20874:1 20888:1 20926:1 20927:2 20934:1 20941:1 20951:1 20952:1 20953:1 20971:1 20973:2 20976:10 20978:1 20992:1 20998:1 20999:1 21003:1 21014:1 21019:1 21026:1 21037:4 21053:1 21080:2 21084:2 21086:1 21090:1 21096:3 21108:1 21125:1 21140:1 21141:1 21142:4 21150:2 21156:2 21161:1 21209:1 21231:2 21237:1 21238:1 21239:7 21241:1 21245:2 21252:1 21254:1 21255:1 21266:2 21267:1 21269:1 21272:1 21279:1 21282:2 21283:1 21291:1 21292:1 21306:2 21309:2 21314:1 21334:2 21369:1 21379:4 21380:1 21403:1 21407:1 21412:1 21423:2 21425:1 21435:1 21439:1 21446:4 21457:1 21464:1 21474:1 21515:15 21516:1 21518:1 21537:1 21548:1 21556:1 21575:1 21583:1 21594:2 21609:1 21611:1 21613:2 21620:1 21621:1 21628:2 21642:2 21645:1 21648:8 21664:2 21668:3 21679:2 21704:1 21712:1 21715:1 21718:2 21732:1 21735:1 21738:1 21743:1 21745:2 21753:1 21754:1 21766:2 21769:1 21781:6 21794:3 21807:2 21819:1 21828:2 21840:1 21860:2 21873:1 21895:1 21929:1 21941:3 21946:1 21949:1 21967:1 21989:1 22001:1 22015:1 22021:1 22032:1 22038:1 22042:1 22049:12 22051:2 22082:1 22090:1 22099:1 22120:1 22130:1 22132:1 22133:2 22139:1 22165:3 22185:1 22188:5 22192:1 22223:1 22225:1 22241:1 22264:2 22284:1 22290:1 22295:2 22329:1 22344:1 22346:1 22348:2 22355:2 22374:1 22414:1 22423:1 22424:1 22425:3 22431:1 22432:1 22436:1 22448:1 22452:1 22453:1 22463:1 22466:1 22478:1 22481:2 22496:1 22530:1 22534:2 22548:1 22551:2 22556:1 22564:2 22568:3 22571:1 22572:1 22593:1 22607:1 22619:1 22627:3 22628:1 22646:6 22654:1 22657:1 22665:1 22667:1 22670:1 22672:2 22677:2 22681:1 22699:2 22706:1 22707:2 22708:1 22748:4 22755:1 22757:17 22759:1 22837:1 22847:1 22849:1 22856:1 22889:1 22916:2 22924:1 22937:1 22949:1 22951:1 22957:1 22965:1 22986:1 23000:1 23008:1 23022:1 23024:2 23059:1 23062:2 23077:2 23104:4 23117:1 23122:1 23126:1 23159:1 23177:1 23192:2 23207:3 23215:2 23222:1 23224:1 23227:1 23228:1 23229:2 23246:1 23278:1 23284:1 23300:1 23306:1 23313:1 23328:1 23334:1 23360:1 23362:1 23389:1 23396:1 23397:5 23405:1 23412:1 23413:1 23421:3 23434:1 23470:1 23492:1 23510:3 23520:1 23521:1 23568:5 23633:2 23643:1 23646:1 23655:1 23656:1 23665:1 23666:2 23667:4 23668:1 23689:1 23697:1 23704:1 23707:2 23712:1 23716:3 23722:2 23752:1 23753:2 23766:2 23780:1 23788:1 23791:2 23802:2 23808:1 23820:1 23841:1 23844:1 23860:1 23867:4 23870:1 23879:2 23883:1 23885:1 23890:1 23899:1 23908:1 23921:1 23937:1 23954:1 23971:1 23980:1 23982:1 23998:1 24003:1 24006:2 24011:1 24013:1 24020:1 24036:1 24050:1 24052:1 24057:1 24059:1 24083:1 24086:1 24099:1 24106:2 24144:3 24155:5 24179:1 24208:1 24214:1 24224:1 24230:2 24234:1 24242:3 24269:2 24274:1 24275:1 24290:1 24306:1 24325:1 24331:1 24339:4 24360:1 24404:2 24406:1 24412:1 24417:1 24420:1 24434:4 24457:1 24473:2 24476:3 24478:1 24484:1 24488:3 24533:1 24534:1 24540:1 24567:1 24572:1 24600:1 24614:1 24620:1 24636:1 24637:2 24641:1 24644:4 24647:3 24653:1 24678:1 24692:1 24694:1 24697:2 24702:1 24718:1 24728:1 24730:5 24740:2 24742:1 24751:3 24760:5 24761:1 24772:1 24784:1 24789:1 24797:1 24817:2 24838:1 24841:6 24843:1 24847:1 24854:1 24855:1 24873:2 24897:1 24915:3 24942:4 24946:1 24967:2 24969:2 24990:2 24999:1 25018:1 25051:1 25053:1 25056:1 25061:1 25071:1 25081:1 25092:3 25109:1 25117:1 25131:1 25138:2 25140:1 25143:1 25157:1 25160:2 25173:1 25175:1 25179:1 25191:1 25194:1 25200:1 25217:1 25219:1 25228:1 25230:2 25235:1 25242:1 25256:6 25261:1 25262:1 25265:1 25268:1 25277:1 25283:1 25286:1 25289:1 25323:2 25326:1 25332:1 25348:1 25360:1 25385:1 25387:3 25402:1 25410:9 25414:1 25451:1 25478:1 25514:1 25525:1 25530:1 25537:1 25549:3 25555:1 25569:1 25571:2 25586:1 25660:3 25681:5 25683:2 25688:1 25696:2 25698:1 25699:4 25700:4 25703:1 25705:1 25722:1 25742:2 25751:2 25773:1 25782:1 25787:1 25793:3 25801:1 25805:1 25826:3 25844:1 25852:1 25861:1 25867:1 25879:1 25910:1 25955:1 25957:1 26008:1 26023:1 26032:1 26042:1 26051:1 26067:1 26069:2 26075:1 26104:2 26110:2 26120:2 26137:1 26151:1 26158:1 26201:1 26216:1 26218:2 26228:1 26272:1 26285:2 26289:3 26299:1 26301:1 26303:8 26331:2 26389:1 26397:17 26398:1 26400:3 26401:1 26410:1 26420:1 26430:1 26450:1 26454:1 26503:2 26505:3 26509:3 26510:1 26548:1 26549:1 26555:2 26557:1 26559:1 26563:1 26569:1 26570:1 26576:1 26581:1 26612:2 26624:1 26641:1 26651:1 26664:2 26666:1 26686:1 26689:1 26690:1 26711:1 26715:1 26725:1 26765:1 26766:1 26792:1 26794:1 26797:1 26807:3 26810:2 26829:2 26843:1 26869:7 26874:1 26879:1 26889:1 26894:1 26919:1 26954:3 26963:3 26977:1 26986:1 26989:1 26993:1 27017:1 27025:1 27035:1 27038:3 27044:1 27071:2 27080:1 27108:2 27111:4 27135:1 27143:1 27145:1 27171:1 27213:1 27216:1 27217:1 27228:4 27231:1 27239:1 27248:1 27259:1 27271:1 27279:2 27280:22 27281:2 27283:2 27287:3 27289:1 27290:1 27300:1 27315:1 27316:12 27326:1 27329:1 27337:1 27364:1 27368:2 27372:1 27373:1 27394:1 27401:1 27405:4 27414:4 27419:1 27447:3 27448:1 27452:2 27458:1 27462:1 27465:1 27492:1 27495:1 27496:1 27519:1 27549:1 27558:2 27561:1 27590:1 27591:1 27611:1 27620:1 27627:1 27633:2 27636:1 27638:4 27641:1 27644:1 27661:2 27666:1 27676:1 27692:7 27695:1 27705:3 27743:1 27745:1 27749:1 27772:3 27773:6 27775:1 27776:1 27783:1 27799:1 27805:2 27814:1 27818:1 27828:1 27834:1 27835:1 27842:1 27864:3 27879:1 27914:3 27922:1 27926:2 27961:1 27963:4 27968:1 27971:1 27977:5 27984:1 27994:2 28018:1 28026:1 28046:1 28053:1 28067:1 28081:1 28106:1 28108:1 28138:4 28169:2 28172:1 28176:1 28185:1 28210:1 28217:2 28222:1 28229:3 28237:1 28265:1 28283:1 28292:2 28297:1 28300:1 28314:1 28326:2 28336:1 28341:1 28343:6 28344:1 28352:1 28364:2 28380:2 28395:2 28397:1 28420:1 28430:4 28437:2 28496:1 28503:1 28504:1 28507:1 28509:1 28511:3 28516:1 28523:1 28560:1 28566:1 28569:1 28574:1 28575:1 28576:1 28579:1 28587:2 28618:1 16 26:1 27:1 69:1 78:1 83:4 100:1 106:1 137:1 147:1 153:1 162:1 165:1 175:1 201:1 213:1 230:1 235:4 254:1 283:1 286:1 296:4 318:1 327:1 336:2 337:2 338:1 364:1 372:1 375:1 382:1 407:2 418:1 442:3 445:1 449:2 460:1 478:1 489:2 504:1 507:1 509:1 514:1 523:1 526:2 552:1 553:1 567:3 603:1 617:1 627:3 634:1 648:2 654:1 661:4 665:1 671:1 676:1 684:1 688:1 699:1 707:1 713:1 724:1 735:1 757:2 768:1 772:1 787:1 803:1 805:1 813:1 824:1 826:1 843:1 852:1 856:1 872:1 902:1 910:2 915:1 924:2 933:1 934:2 939:3 940:1 941:2 942:5 943:2 944:2 966:1 978:1 983:1 985:5 987:2 1010:1 1015:2 1020:1 1052:1 1059:2 1062:1 1081:1 1086:1 1089:1 1108:1 1116:1 1125:1 1171:3 1175:1 1184:1 1187:1 1192:2 1200:1 1201:4 1217:1 1222:1 1227:1 1239:3 1259:1 1263:1 1267:1 1269:1 1275:3 1278:1 1279:1 1289:2 1290:2 1302:2 1306:1 1319:1 1321:1 1331:1 1335:2 1346:2 1356:1 1375:2 1379:1 1404:1 1413:1 1415:2 1438:3 1440:1 1446:1 1448:1 1453:1 1464:1 1475:1 1484:6 1497:1 1501:5 1513:2 1521:2 1522:1 1525:2 1531:1 1535:1 1541:1 1544:3 1569:1 1572:5 1583:1 1587:1 1591:1 1594:1 1596:1 1601:2 1621:2 1628:1 1632:3 1637:3 1640:2 1641:1 1653:1 1654:1 1657:1 1672:4 1675:3 1678:1 1683:1 1684:1 1698:1 1722:1 1731:1 1733:1 1743:2 1745:1 1747:1 1751:1 1758:2 1766:2 1784:1 1789:1 1790:1 1809:1 1810:1 1820:1 1824:1 1825:1 1831:1 1837:1 1849:1 1853:1 1860:1 1861:1 1877:1 1882:1 1883:1 1884:1 1889:1 1895:1 1901:1 1903:1 1904:4 1910:1 1914:1 1921:1 1929:1 1930:2 1931:1 1950:1 1986:1 2001:1 2006:1 2015:2 2017:2 2019:1 2020:2 2022:1 2023:3 2044:1 2049:1 2054:2 2072:1 2074:3 2075:1 2076:2 2101:1 2108:4 2126:1 2133:1 2156:1 2158:1 2164:1 2170:1 2174:2 2188:1 2227:1 2228:1 2229:1 2230:2 2232:4 2237:1 2238:3 2240:1 2241:1 2244:5 2245:1 2246:3 2248:1 2251:1 2256:5 2259:3 2260:6 2272:1 2273:1 2290:1 2303:1 2308:1 2327:2 2331:1 2334:1 2336:2 2354:1 2359:1 2361:1 2374:1 2413:3 2423:1 2437:1 2448:2 2474:1 2483:1 2486:1 2488:1 2495:1 2526:1 2531:1 2556:1 2582:2 2587:1 2595:4 2602:1 2607:3 2615:1 2622:1 2623:1 2630:1 2633:1 2635:2 2637:7 2651:1 2653:1 2662:2 2670:1 2674:1 2677:1 2684:3 2689:1 2690:1 2721:2 2731:2 2738:1 2739:1 2741:4 2747:2 2755:1 2792:4 2795:1 2799:1 2804:1 2818:10 2828:7 2857:2 2869:1 2885:22 2899:1 2903:1 2907:1 2918:1 2920:1 2936:1 2956:1 2962:1 2986:2 2987:1 2989:1 3037:3 3041:1 3053:1 3059:1 3062:1 3070:1 3105:1 3107:1 3116:1 3117:1 3129:2 3133:4 3151:10 3153:2 3168:1 3173:1 3181:1 3191:1 3208:1 3218:1 3219:5 3254:1 3281:1 3283:1 3293:1 3303:1 3327:1 3330:1 3340:1 3348:1 3361:3 3369:2 3373:1 3377:1 3388:3 3417:1 3426:1 3427:2 3430:1 3441:1 3442:1 3453:3 3491:1 3505:1 3511:1 3512:3 3513:1 3519:2 3521:1 3522:1 3543:1 3550:1 3569:1 3588:1 3598:1 3603:1 3606:3 3625:1 3643:1 3651:2 3652:32 3677:2 3678:1 3679:7 3681:1 3686:1 3687:2 3688:18 3689:1 3691:4 3697:2 3706:3 3709:1 3718:1 3721:3 3724:2 3725:2 3740:2 3742:1 3743:1 3769:2 3776:1 3777:3 3783:1 3788:1 3808:1 3813:1 3815:1 3816:3 3826:2 3838:2 3840:1 3844:1 3853:1 3866:1 3889:1 3891:1 3900:1 3901:1 3904:1 3905:1 3911:1 3915:1 3918:1 3920:1 3925:3 3939:3 3953:1 3993:1 4036:1 4052:1 4056:2 4086:1 4090:1 4101:2 4106:1 4109:1 4110:1 4137:1 4143:1 4153:1 4156:1 4169:3 4199:1 4209:1 4234:8 4250:1 4277:1 4302:1 4306:1 4313:5 4322:1 4325:2 4335:2 4347:4 4351:1 4372:1 4380:1 4386:1 4393:1 4435:1 4448:1 4449:2 4474:1 4484:1 4489:1 4499:1 4515:2 4519:1 4522:2 4533:1 4543:3 4554:1 4563:2 4584:1 4585:1 4586:1 4653:1 4654:1 4659:1 4660:2 4671:1 4685:1 4693:2 4701:1 4742:1 4754:1 4779:1 4782:1 4792:13 4793:1 4804:1 4824:2 4848:1 4850:2 4860:1 4870:1 4893:3 4902:3 4903:1 4905:4 4925:2 4926:2 4927:6 4928:1 4929:1 4930:1 4933:2 4935:1 4939:1 4940:17 4941:1 4943:1 4948:2 4949:3 4956:1 4972:1 4975:2 5031:2 5045:1 5053:1 5058:1 5120:1 5144:3 5145:3 5152:5 5181:1 5190:1 5195:1 5209:1 5213:2 5214:17 5227:1 5242:1 5250:1 5252:1 5280:2 5317:1 5319:1 5330:1 5355:1 5359:1 5361:1 5370:1 5375:1 5379:1 5386:1 5390:2 5392:1 5431:1 5433:1 5437:1 5447:1 5448:2 5465:1 5474:1 5479:1 5489:2 5494:1 5497:1 5502:1 5523:1 5525:1 5562:1 5565:3 5588:2 5595:1 5604:1 5614:1 5618:1 5620:1 5624:1 5631:1 5635:1 5646:1 5656:1 5659:1 5660:1 5662:1 5679:1 5683:1 5697:1 5701:1 5703:1 5707:1 5731:1 5766:3 5791:1 5794:3 5796:1 5803:1 5846:1 5860:2 5903:1 5924:1 5931:1 5932:5 5941:1 5945:2 5971:2 5976:1 6003:1 6020:1 6024:1 6042:2 6043:1 6046:1 6047:1 6057:1 6079:3 6086:1 6087:2 6088:2 6126:1 6127:2 6129:1 6136:1 6151:5 6153:1 6165:1 6166:1 6168:1 6177:1 6181:1 6184:1 6239:2 6242:1 6243:1 6244:1 6247:1 6248:1 6250:2 6251:2 6254:2 6255:3 6256:3 6262:2 6264:6 6265:1 6266:1 6267:2 6275:1 6298:1 6325:1 6358:1 6392:1 6398:1 6404:1 6410:2 6413:1 6424:1 6450:1 6454:1 6494:1 6507:1 6508:1 6513:2 6523:1 6533:5 6535:1 6539:3 6547:1 6550:1 6557:1 6558:1 6566:2 6582:3 6598:2 6603:1 6604:1 6606:1 6615:1 6639:1 6657:1 6661:1 6677:2 6679:1 6684:1 6685:2 6687:1 6695:3 6699:1 6704:1 6711:2 6718:1 6731:1 6739:1 6745:1 6780:1 6783:2 6789:1 6791:1 6795:1 6799:2 6803:1 6819:2 6835:1 6857:1 6860:1 6876:2 6893:1 6896:1 6909:1 6954:2 6970:1 6974:1 6982:1 6996:1 7000:5 7010:2 7027:1 7036:1 7049:1 7080:1 7134:1 7180:1 7196:1 7204:1 7221:4 7267:1 7269:1 7275:3 7290:2 7307:4 7343:2 7360:1 7378:1 7406:1 7411:1 7420:1 7430:1 7433:1 7437:3 7446:1 7466:1 7477:3 7478:4 7479:2 7496:1 7499:2 7505:1 7530:1 7531:1 7544:1 7548:35 7549:1 7550:1 7555:1 7567:9 7568:18 7578:1 7579:1 7582:1 7586:1 7588:1 7590:1 7615:1 7616:3 7638:1 7653:1 7668:1 7672:1 7689:2 7742:3 7746:5 7750:1 7780:1 7786:1 7788:4 7802:1 7805:1 7826:1 7851:1 7858:1 7862:1 7910:3 7921:1 7926:1 7928:5 7936:2 7951:1 7960:2 7973:1 7977:1 7983:1 7998:1 7999:1 8006:16 8026:1 8031:1 8037:2 8039:1 8049:1 8063:2 8092:1 8098:1 8107:2 8116:1 8127:2 8140:1 8154:1 8167:1 8170:3 8176:3 8181:1 8194:2 8196:1 8199:3 8213:2 8214:1 8215:1 8220:1 8231:1 8233:2 8241:2 8251:1 8260:2 8263:2 8269:1 8274:1 8276:1 8277:1 8294:2 8308:1 8319:3 8327:1 8336:1 8342:1 8345:1 8354:1 8357:2 8358:1 8359:3 8360:1 8361:2 8362:4 8365:1 8370:1 8373:2 8375:2 8381:3 8396:1 8402:1 8412:2 8420:1 8421:1 8427:1 8428:1 8440:1 8450:1 8455:2 8462:1 8475:2 8492:1 8496:5 8517:3 8526:1 8528:1 8531:1 8550:1 8556:1 8583:2 8595:1 8596:1 8603:1 8609:2 8616:3 8617:1 8621:1 8637:1 8640:1 8667:3 8668:2 8675:3 8676:1 8677:1 8678:2 8680:3 8687:2 8688:2 8706:1 8707:1 8709:2 8711:4 8725:1 8727:1 8743:2 8748:1 8763:1 8813:1 8827:2 8835:1 8838:1 8853:2 8854:1 8863:1 8868:1 8880:1 8882:1 8895:1 8903:1 8918:1 8919:1 8957:1 8962:3 8978:1 8991:1 8994:1 8995:3 9008:1 9015:5 9035:2 9039:2 9042:1 9049:1 9055:1 9071:1 9078:1 9088:3 9091:1 9110:1 9124:1 9156:1 9160:1 9219:1 9240:1 9243:1 9246:2 9252:2 9253:1 9263:1 9264:2 9278:1 9292:1 9294:1 9298:1 9322:1 9325:2 9328:1 9350:1 9375:17 9383:1 9399:1 9408:2 9420:4 9428:2 9434:1 9437:1 9448:1 9455:1 9459:1 9467:2 9484:1 9511:13 9529:1 9535:2 9550:1 9569:5 9575:1 9580:1 9586:3 9587:1 9590:1 9603:1 9614:1 9651:2 9655:3 9656:1 9690:6 9696:2 9697:4 9698:2 9706:1 9707:1 9717:1 9726:2 9730:2 9733:1 9739:1 9744:1 9748:3 9751:1 9753:1 9754:1 9761:1 9780:3 9785:3 9795:1 9797:2 9809:1 9817:1 9830:1 9848:1 9853:3 9855:1 9873:9 9875:1 9876:5 9883:1 9885:1 9967:1 9971:2 9976:1 9986:1 10018:1 10023:1 10035:4 10055:1 10081:1 10084:1 10121:1 10137:2 10149:3 10155:1 10159:1 10163:1 10173:1 10181:1 10191:1 10209:2 10215:3 10227:1 10230:1 10251:1 10258:2 10276:2 10278:2 10281:1 10288:1 10297:6 10311:2 10312:3 10314:3 10320:1 10328:1 10330:1 10334:1 10355:1 10356:2 10369:1 10374:1 10383:4 10396:2 10401:1 10405:2 10413:6 10463:1 10464:1 10470:1 10475:1 10495:2 10498:1 10499:2 10503:1 10510:1 10524:2 10534:1 10545:1 10549:1 10588:1 10591:1 10595:1 10604:1 10620:2 10621:1 10635:5 10649:3 10650:5 10663:1 10666:1 10670:1 10699:4 10702:1 10727:2 10729:1 10730:1 10740:1 10742:2 10747:1 10767:3 10779:2 10811:1 10839:1 10841:1 10843:2 10860:1 10892:1 10894:1 10899:1 10900:1 10901:1 10904:1 10905:3 10906:1 10926:1 10931:1 10941:1 10945:2 10961:1 10965:1 10970:1 10971:1 10996:2 11019:1 11021:2 11032:1 11039:2 11047:1 11054:1 11073:1 11080:1 11081:3 11112:1 11116:2 11118:5 11120:1 11147:1 11169:1 11172:1 11180:1 11186:2 11198:1 11218:2 11232:1 11238:1 11242:1 11245:1 11248:4 11261:3 11263:1 11278:3 11280:2 11299:1 11315:1 11322:1 11328:3 11335:1 11336:4 11337:1 11348:1 11349:1 11354:1 11358:1 11359:1 11367:1 11370:1 11372:5 11373:1 11374:1 11381:1 11383:5 11392:1 11399:1 11406:4 11422:2 11431:5 11435:1 11441:2 11446:1 11455:1 11475:1 11476:1 11486:4 11492:1 11496:1 11498:1 11499:2 11530:1 11534:1 11544:3 11557:1 11563:1 11566:1 11575:1 11615:2 11616:2 11633:2 11649:1 11651:1 11683:1 11691:3 11734:2 11737:2 11749:1 11761:1 11764:1 11765:1 11766:1 11786:3 11787:3 11788:17 11797:4 11812:1 11813:1 11823:1 11837:2 11859:1 11879:1 11904:1 11930:1 11938:6 11939:2 11955:1 11958:2 11959:1 11963:1 11984:1 12016:3 12019:1 12040:1 12047:1 12054:2 12058:1 12064:1 12069:1 12081:1 12115:1 12134:3 12148:1 12187:1 12189:2 12196:1 12198:1 12203:1 12218:1 12257:1 12275:1 12323:6 12336:1 12341:1 12345:1 12348:1 12357:1 12369:2 12370:3 12391:1 12394:1 12420:1 12451:1 12456:2 12485:1 12505:1 12510:1 12524:1 12525:2 12550:1 12566:2 12599:1 12652:1 12671:3 12691:1 12692:2 12698:1 12702:1 12710:1 12712:1 12715:1 12719:1 12722:1 12733:1 12741:1 12744:1 12756:2 12765:1 12768:1 12769:1 12771:2 12776:1 12792:1 12798:1 12799:1 12829:1 12834:1 12835:2 12837:1 12870:2 12872:1 12874:1 12881:1 12882:2 12883:1 12884:6 12889:3 12891:1 12892:1 12900:1 12904:3 12915:3 12919:1 12924:1 12928:3 12934:1 12954:7 12956:1 12964:1 12966:1 12970:2 12979:1 12980:1 12997:1 13019:2 13033:2 13034:1 13049:3 13052:1 13053:1 13065:1 13071:1 13084:2 13095:3 13114:1 13119:2 13122:5 13131:1 13136:1 13148:1 13149:2 13150:2 13160:1 13174:1 13178:2 13190:1 13201:2 13237:1 13243:1 13249:1 13250:1 13251:2 13252:1 13254:1 13257:1 13270:1 13277:1 13278:1 13296:1 13301:1 13302:1 13310:1 13313:1 13314:1 13318:2 13319:1 13330:2 13334:1 13335:1 13352:1 13365:7 13371:1 13380:1 13411:1 13416:1 13418:1 13434:1 13435:1 13439:1 13457:1 13458:1 13461:2 13462:1 13467:4 13493:1 13510:1 13515:1 13518:1 13529:2 13530:3 13535:2 13536:4 13543:1 13560:1 13565:3 13578:1 13589:2 13610:2 13612:1 13615:1 13616:1 13620:1 13628:1 13629:2 13633:2 13666:1 13679:1 13722:1 13723:1 13735:2 13750:1 13769:1 13782:1 13795:1 13829:1 13854:1 13855:1 13880:1 13898:2 13907:2 13908:1 13917:1 13920:1 13924:3 13926:1 13927:1 13935:1 13937:1 13951:2 13956:1 13970:1 13971:1 13985:1 13989:1 14009:2 14035:1 14051:1 14070:1 14076:1 14087:1 14091:1 14093:1 14099:1 14106:4 14126:1 14135:1 14142:1 14145:1 14154:2 14158:1 14183:1 14197:1 14225:1 14227:4 14271:1 14370:1 14378:1 14385:1 14401:2 14437:3 14443:3 14445:1 14447:1 14450:1 14451:1 14470:1 14475:1 14496:1 14505:1 14522:1 14545:2 14546:1 14551:3 14566:1 14577:1 14588:1 14592:2 14596:1 14601:1 14624:1 14633:1 14662:1 14665:1 14667:1 14671:1 14678:1 14710:1 14756:2 14760:3 14761:3 14766:1 14792:4 14793:1 14796:1 14811:1 14826:3 14828:1 14832:1 14835:1 14840:1 14855:1 14867:1 14870:1 14877:1 14887:3 14894:2 14898:2 14906:2 14909:1 14942:1 14951:2 14970:1 14978:1 14992:1 15006:1 15009:1 15020:1 15021:1 15033:3 15058:8 15063:7 15067:1 15073:1 15099:2 15112:1 15113:2 15118:2 15131:3 15134:1 15154:1 15165:1 15190:2 15193:1 15194:1 15201:4 15210:2 15222:1 15230:1 15232:1 15234:1 15238:1 15239:3 15243:2 15244:5 15245:1 15250:1 15254:1 15255:1 15263:1 15264:5 15269:4 15302:1 15337:1 15345:1 15347:2 15356:2 15361:2 15366:4 15375:1 15388:2 15401:1 15421:2 15425:2 15442:1 15446:2 15461:1 15472:1 15478:1 15488:1 15496:2 15502:8 15513:2 15529:2 15538:1 15540:1 15554:1 15557:1 15566:17 15587:1 15596:5 15597:1 15599:1 15620:2 15637:50 15665:3 15669:1 15697:1 15731:1 15733:1 15734:2 15758:1 15763:2 15765:1 15766:2 15773:2 15774:3 15776:1 15780:2 15784:1 15797:1 15810:1 15812:1 15815:1 15831:1 15832:1 15833:1 15855:1 15857:1 15876:1 15896:1 15902:5 15919:1 15934:2 15938:1 15953:1 15961:2 15969:1 15974:1 15988:1 16026:1 16035:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16107:2 16108:1 16133:1 16137:1 16146:2 16151:3 16153:1 16156:1 16165:1 16167:2 16168:3 16187:3 16199:1 16210:1 16215:1 16217:2 16219:1 16220:1 16228:1 16230:1 16237:1 16249:1 16255:10 16262:1 16289:1 16300:2 16310:1 16311:1 16338:1 16343:1 16348:1 16365:1 16366:2 16369:3 16373:1 16375:2 16378:1 16380:1 16390:1 16395:1 16407:1 16416:1 16421:1 16426:2 16427:2 16446:1 16453:1 16472:1 16492:2 16501:1 16517:1 16558:1 16569:2 16571:1 16582:1 16588:2 16601:1 16608:1 16609:1 16617:2 16623:2 16630:1 16646:1 16649:1 16652:1 16654:3 16658:1 16666:1 16676:1 16683:3 16690:1 16704:1 16705:1 16718:1 16721:1 16726:1 16744:2 16766:2 16771:1 16777:1 16796:4 16845:1 16866:1 16876:1 16877:1 16879:1 16896:3 16899:1 16902:1 16904:1 16911:1 16915:2 16920:1 16921:1 16936:2 16940:2 16949:1 16953:1 16954:1 16964:2 16982:1 16987:1 16990:1 16993:1 17018:2 17019:2 17055:1 17058:1 17061:1 17077:1 17082:1 17098:1 17103:2 17113:2 17117:1 17128:1 17130:1 17142:2 17187:1 17194:1 17196:2 17199:2 17201:1 17219:1 17220:8 17223:1 17235:1 17244:1 17248:1 17275:1 17285:1 17292:1 17294:1 17310:1 17311:2 17317:2 17334:2 17338:1 17341:1 17354:1 17363:1 17369:1 17392:1 17396:2 17403:1 17404:4 17417:1 17448:1 17479:1 17501:1 17513:1 17529:3 17531:1 17540:1 17568:1 17571:1 17578:1 17587:1 17595:1 17599:3 17609:2 17616:1 17640:1 17657:1 17661:1 17666:1 17667:3 17714:1 17723:1 17754:3 17760:1 17774:3 17779:1 17782:1 17785:3 17805:1 17806:1 17811:1 17821:1 17823:1 17828:1 17850:1 17856:1 17874:1 17912:9 17916:1 17923:1 17930:1 17946:1 17949:1 17961:1 17968:1 17970:1 17978:1 17984:2 17998:1 18003:1 18010:1 18027:1 18031:3 18035:1 18037:2 18038:1 18052:3 18057:1 18065:2 18066:1 18095:1 18101:2836 18105:1 18118:4 18123:2 18149:1 18157:1 18163:1 18171:1 18178:3 18188:1 18215:3 18226:1 18234:2 18245:2 18262:1 18267:1 18271:3 18272:2 18298:3 18306:1 18309:1 18311:3 18314:1 18315:1 18331:1 18361:1 18362:1 18381:1 18408:1 18410:4 18434:1 18439:1 18462:2 18472:1 18481:1 18491:1 18493:1 18505:1 18512:1 18514:1 18515:1 18557:1 18567:1 18569:2 18572:1 18584:4 18599:1 18601:1 18607:1 18631:1 18667:1 18669:1 18677:1 18679:3 18731:1 18761:1 18780:1 18786:2 18796:1 18799:2 18801:1 18804:2 18813:4 18825:2 18829:1 18830:3 18834:1 18847:1 18859:10 18877:1 18878:1 18880:1 18881:1 18883:12 18892:1 18910:1 18911:3 18914:1 18936:1 18947:1 18950:3 18968:1 18972:2 18976:1 18978:3 18980:2 18983:1 18987:1 18997:2 18998:1 19005:1 19028:1 19034:3 19039:1 19055:1 19067:3 19099:1 19103:1 19106:1 19148:1 19153:1 19179:1 19187:1 19206:1 19209:10 19212:1 19220:1 19231:2 19253:1 19279:1 19291:1 19299:1 19305:1 19307:5 19329:1 19347:2 19359:1 19360:1 19383:1 19390:1 19391:1 19394:1 19399:1 19401:1 19402:1 19409:1 19436:1 19459:4 19464:1 19470:1 19472:1 19488:2 19489:1 19514:1 19523:1 19525:1 19539:1 19543:2 19545:2 19565:1 19569:1 19574:2 19582:2 19584:1 19591:6 19612:1 19638:1 19644:1 19663:10 19669:1 19677:2 19679:2 19694:1 19695:1 19706:1 19707:10 19724:1 19747:1 19756:1 19774:1 19786:1 19818:1 19822:1 19833:2 19853:4 19856:1 19865:1 19870:1 19900:2 19910:1 19918:1 19945:4 19955:1 19957:2 19968:1 19979:1 19986:1 20006:1 20022:1 20024:1 20044:1 20078:2 20086:1 20095:1 20099:1 20117:1 20120:2 20129:1 20143:1 20145:1 20148:1 20169:1 20193:1 20210:3 20227:2 20230:1 20231:1 20236:1 20240:1 20245:9 20248:1 20252:1 20257:3 20260:1 20261:1 20279:1 20285:2 20289:5 20299:1 20322:3 20325:1 20327:1 20335:1 20364:2 20375:2 20378:1 20396:2 20401:1 20402:1 20422:7 20429:1 20432:2 20438:1 20453:1 20490:1 20496:1 20502:1 20505:1 20507:1 20524:2 20528:1 20531:1 20533:1 20538:1 20546:3 20561:1 20567:1 20569:1 20572:1 20583:1 20585:1 20620:1 20628:1 20647:1 20672:1 20679:1 20712:1 20716:1 20718:4 20720:2 20723:3 20733:3 20741:1 20743:1 20745:1 20773:1 20782:1 20786:1 20787:1 20798:1 20809:1 20810:1 20822:1 20827:1 20828:1 20838:1 20840:5 20843:2 20856:2 20860:1 20870:1 20874:1 20888:1 20926:1 20927:2 20934:1 20941:1 20951:1 20952:1 20953:1 20971:1 20973:2 20976:10 20978:1 20992:1 20998:1 20999:1 21003:1 21014:1 21019:1 21026:1 21037:4 21053:1 21080:2 21084:2 21086:1 21090:1 21096:4 21108:1 21125:1 21140:1 21141:1 21142:4 21150:2 21156:3 21161:1 21209:1 21231:3 21237:1 21238:1 21239:7 21241:1 21245:2 21252:1 21254:1 21255:1 21266:2 21267:1 21269:1 21272:1 21279:1 21282:2 21283:1 21291:1 21292:1 21306:2 21309:2 21314:1 21334:2 21369:1 21379:4 21380:1 21403:1 21407:1 21412:1 21423:2 21425:1 21435:1 21439:1 21446:4 21457:1 21464:1 21474:1 21515:17 21516:2 21518:1 21537:1 21548:1 21556:1 21575:1 21583:1 21594:2 21609:1 21611:1 21613:2 21620:1 21621:1 21623:1 21628:2 21642:2 21645:1 21648:8 21664:2 21668:3 21679:2 21704:1 21712:1 21715:1 21718:2 21732:1 21735:1 21738:1 21743:1 21745:2 21753:1 21754:1 21766:2 21769:1 21781:6 21794:3 21807:2 21819:1 21828:2 21840:1 21860:2 21873:1 21895:1 21929:1 21941:3 21946:1 21949:1 21967:1 21989:1 22001:1 22015:1 22021:1 22032:1 22038:1 22042:1 22049:12 22051:2 22082:1 22090:1 22099:1 22120:1 22130:1 22132:1 22133:2 22139:1 22154:1 22165:3 22185:1 22188:5 22192:1 22223:1 22225:1 22241:1 22264:2 22284:1 22290:1 22295:2 22329:1 22344:1 22346:1 22348:2 22355:2 22374:1 22414:1 22423:1 22424:1 22425:3 22431:1 22432:1 22436:1 22448:1 22452:1 22453:1 22463:1 22466:1 22478:1 22481:2 22496:1 22530:1 22534:2 22548:1 22551:2 22556:1 22564:2 22568:3 22571:1 22572:1 22593:1 22607:1 22619:1 22627:3 22628:1 22646:6 22654:1 22657:1 22665:1 22667:1 22670:1 22672:2 22677:2 22681:1 22699:2 22706:1 22707:2 22708:1 22748:4 22755:1 22757:19 22759:1 22837:1 22847:1 22849:1 22856:1 22889:1 22916:2 22924:1 22925:1 22937:1 22949:1 22951:1 22957:1 22965:1 22986:1 23000:1 23008:1 23022:1 23024:2 23059:1 23062:2 23077:2 23104:4 23117:1 23122:1 23126:1 23159:1 23175:1 23177:1 23192:2 23207:3 23215:2 23222:1 23224:1 23227:1 23228:1 23229:2 23246:1 23278:1 23284:1 23300:1 23306:1 23313:1 23328:1 23334:1 23360:1 23362:1 23389:1 23391:1 23396:1 23397:5 23405:1 23412:1 23413:1 23421:3 23434:1 23470:1 23492:1 23510:3 23520:1 23521:1 23558:1 23568:5 23633:2 23643:1 23646:1 23655:1 23656:1 23665:1 23666:2 23667:5 23668:1 23689:1 23697:1 23704:1 23707:2 23712:1 23716:3 23722:2 23752:1 23753:2 23766:2 23780:1 23788:1 23791:2 23802:2 23808:1 23820:1 23841:1 23844:1 23860:1 23867:4 23870:1 23879:2 23883:1 23885:1 23890:1 23899:1 23908:1 23921:1 23937:1 23954:1 23971:1 23980:1 23982:2 23998:1 24003:1 24006:2 24011:1 24013:1 24020:1 24027:1 24036:1 24050:1 24052:1 24057:1 24059:1 24081:1 24083:1 24086:1 24099:1 24106:2 24144:3 24155:5 24179:1 24208:1 24214:1 24224:1 24230:2 24234:1 24242:3 24252:1 24269:2 24274:1 24275:1 24290:1 24306:1 24325:1 24331:1 24339:4 24360:1 24363:1 24396:1 24404:2 24406:1 24412:1 24417:1 24420:1 24434:4 24457:1 24473:2 24476:3 24478:1 24484:1 24488:3 24533:1 24534:1 24540:1 24567:1 24572:1 24600:1 24614:1 24620:1 24636:1 24637:2 24641:1 24644:7 24647:3 24653:1 24678:1 24692:1 24694:1 24697:2 24702:1 24718:1 24728:1 24730:5 24740:2 24742:1 24751:3 24760:5 24761:1 24772:1 24784:1 24789:1 24797:1 24817:2 24838:1 24841:6 24843:1 24847:1 24854:1 24855:1 24873:2 24897:1 24915:3 24942:4 24946:1 24967:2 24969:2 24990:2 24999:1 25018:1 25051:1 25053:1 25056:1 25061:1 25071:1 25081:1 25092:4 25109:1 25117:1 25131:1 25135:1 25138:2 25140:1 25143:1 25153:1 25157:2 25160:2 25173:1 25175:1 25179:1 25191:1 25194:1 25200:1 25217:1 25219:1 25228:1 25230:2 25235:1 25242:1 25256:6 25261:1 25262:1 25265:1 25268:1 25277:1 25283:1 25286:1 25289:1 25323:2 25326:1 25332:1 25348:1 25360:1 25379:1 25385:1 25387:3 25402:1 25410:9 25414:1 25451:1 25455:1 25478:1 25514:1 25525:1 25530:1 25537:1 25549:3 25555:1 25569:1 25571:2 25586:1 25660:3 25681:5 25683:2 25688:1 25696:2 25698:1 25699:4 25700:4 25703:1 25705:1 25722:1 25742:2 25751:2 25773:1 25782:1 25787:1 25793:3 25801:1 25805:1 25826:3 25844:1 25852:1 25861:2 25867:1 25879:1 25910:1 25916:1 25955:1 25957:1 25967:1 26008:1 26023:1 26032:1 26042:1 26051:1 26067:1 26069:2 26075:1 26104:2 26110:2 26120:2 26137:1 26151:1 26158:1 26201:1 26216:1 26218:2 26228:1 26272:1 26285:2 26289:3 26299:1 26301:1 26303:8 26331:2 26389:1 26397:19 26398:1 26400:3 26401:1 26410:1 26420:1 26430:2 26450:1 26454:1 26503:2 26505:3 26509:3 26510:1 26546:1 26548:1 26549:1 26555:2 26557:2 26559:1 26563:1 26569:1 26570:1 26576:1 26581:1 26588:1 26612:2 26624:1 26641:1 26651:1 26664:2 26666:1 26686:1 26689:1 26690:1 26711:1 26715:1 26725:1 26765:1 26766:1 26792:1 26794:1 26797:1 26807:3 26810:2 26829:2 26843:1 26869:7 26874:1 26879:1 26889:1 26894:1 26919:1 26954:3 26963:3 26977:1 26986:1 26989:1 26993:1 27017:1 27025:1 27035:1 27038:3 27044:1 27071:2 27080:1 27108:3 27111:4 27135:1 27143:1 27145:1 27171:1 27213:1 27216:1 27217:1 27228:4 27231:1 27239:1 27248:1 27256:1 27259:1 27271:1 27279:2 27280:23 27281:2 27283:2 27287:4 27289:1 27290:1 27300:1 27315:1 27316:12 27326:1 27329:1 27337:1 27364:1 27368:2 27372:1 27373:2 27381:1 27394:1 27401:1 27405:4 27414:4 27419:1 27447:3 27448:1 27452:2 27458:1 27462:1 27465:1 27492:1 27495:1 27496:1 27519:1 27549:1 27558:2 27561:1 27590:1 27591:1 27594:1 27611:1 27620:1 27627:1 27633:2 27636:1 27638:4 27641:1 27644:1 27661:2 27666:1 27676:1 27692:7 27695:1 27705:3 27743:1 27745:1 27749:1 27772:3 27773:6 27775:1 27776:1 27783:1 27799:1 27804:1 27805:2 27814:1 27818:1 27828:1 27834:1 27835:1 27842:1 27864:3 27879:1 27914:3 27920:1 27922:1 27926:2 27961:1 27963:4 27968:1 27971:1 27977:5 27984:1 27994:2 28018:1 28026:1 28046:1 28053:1 28067:1 28081:1 28106:1 28108:1 28122:1 28138:4 28169:2 28172:1 28176:1 28185:1 28210:1 28217:2 28222:1 28229:3 28237:1 28265:1 28283:1 28292:3 28297:1 28300:1 28314:1 28326:2 28336:1 28341:1 28343:6 28344:1 28352:1 28364:2 28380:2 28391:1 28395:2 28397:1 28420:1 28430:4 28437:2 28496:1 28503:1 28504:1 28507:1 28509:1 28511:3 28516:1 28523:1 28554:1 28560:1 28566:1 28569:1 28574:1 28575:1 28576:1 28579:1 28587:2 28618:1 16 26:1 27:1 69:1 78:1 83:4 100:1 106:1 137:1 147:1 153:1 162:1 165:1 175:1 176:1 201:1 213:1 230:1 235:4 254:1 283:1 286:1 296:4 318:1 327:1 336:2 337:2 338:1 364:1 372:1 375:1 382:1 407:2 418:1 442:3 445:1 449:2 460:1 478:1 489:2 504:1 507:1 509:1 514:1 523:1 526:2 552:1 553:1 567:3 603:1 617:1 627:3 634:1 648:2 654:1 661:4 665:1 671:1 676:1 684:1 688:1 699:1 707:1 713:1 724:1 735:1 757:2 768:1 772:1 787:1 803:1 805:1 809:1 813:1 824:1 826:1 843:1 852:1 856:1 872:1 902:1 910:2 913:1 915:1 924:2 933:1 934:2 939:3 940:1 941:3 942:6 943:2 944:2 947:1 966:1 978:1 983:1 985:6 987:2 1010:1 1015:2 1020:1 1052:1 1059:2 1062:1 1081:1 1086:1 1089:1 1108:1 1116:1 1125:1 1170:1 1171:3 1175:1 1184:1 1187:1 1192:2 1200:1 1201:4 1217:2 1222:1 1227:1 1237:1 1239:3 1259:1 1263:1 1267:1 1269:1 1275:4 1278:1 1279:1 1289:2 1290:2 1302:2 1306:1 1319:1 1321:1 1331:1 1335:2 1346:2 1356:1 1375:2 1379:1 1404:1 1413:1 1415:2 1438:3 1440:1 1446:1 1448:1 1451:1 1453:1 1464:1 1475:1 1484:6 1497:1 1501:6 1513:2 1521:2 1522:1 1525:2 1531:1 1535:1 1541:1 1544:4 1560:1 1569:1 1572:5 1583:1 1587:1 1591:1 1594:1 1596:1 1601:2 1621:2 1628:1 1632:4 1637:4 1640:2 1641:1 1653:1 1654:1 1657:1 1672:4 1675:3 1678:1 1683:1 1684:1 1698:1 1722:1 1731:1 1733:1 1743:2 1745:1 1747:1 1751:1 1758:2 1766:2 1784:1 1789:1 1790:1 1809:1 1810:1 1820:1 1824:1 1825:1 1831:1 1837:1 1849:1 1853:1 1860:1 1861:1 1877:1 1882:1 1883:1 1884:1 1889:1 1895:1 1901:1 1903:1 1904:4 1908:1 1910:1 1914:1 1921:1 1929:1 1930:3 1931:1 1950:1 1953:1 1978:1 1986:1 2001:1 2006:1 2015:2 2017:2 2019:1 2020:2 2022:1 2023:3 2044:1 2049:1 2054:2 2072:1 2074:3 2075:1 2076:2 2101:1 2108:4 2126:1 2133:1 2156:1 2158:1 2164:1 2170:1 2174:3 2188:1 2227:1 2228:1 2229:1 2230:2 2232:4 2237:1 2238:4 2240:1 2241:1 2244:5 2245:1 2246:3 2248:1 2251:1 2256:5 2259:3 2260:6 2272:1 2273:1 2277:1 2290:1 2303:1 2308:1 2321:1 2327:2 2331:1 2334:1 2336:2 2354:1 2359:1 2361:1 2374:1 2413:3 2423:1 2437:1 2448:2 2474:1 2483:1 2486:1 2488:1 2495:1 2526:1 2531:1 2556:1 2582:2 2587:1 2595:4 2596:1 2602:1 2607:3 2615:1 2622:2 2623:1 2630:1 2633:1 2635:2 2637:7 2651:1 2653:1 2662:2 2670:1 2674:1 2677:1 2684:3 2689:1 2690:1 2713:1 2721:2 2731:2 2738:1 2739:1 2741:4 2747:2 2755:1 2792:4 2795:1 2799:1 2804:1 2818:10 2828:7 2857:2 2869:1 2885:24 2899:1 2903:1 2907:1 2918:1 2920:1 2936:1 2956:1 2962:1 2986:2 2987:1 2989:1 3037:3 3041:1 3053:1 3059:1 3062:1 3070:1 3105:1 3106:1 3107:1 3116:1 3117:1 3129:2 3133:4 3151:10 3153:2 3168:1 3173:1 3181:1 3191:1 3208:1 3218:1 3219:6 3254:1 3281:1 3283:1 3293:1 3303:1 3319:2 3327:1 3330:1 3340:1 3348:1 3361:3 3369:2 3373:1 3377:1 3388:4 3417:1 3426:1 3427:3 3430:1 3441:1 3442:1 3453:3 3491:1 3505:1 3511:1 3512:3 3513:1 3519:2 3521:1 3522:1 3543:1 3550:1 3569:1 3588:1 3598:1 3603:1 3606:3 3625:1 3643:1 3651:2 3652:32 3677:2 3678:1 3679:7 3681:1 3686:1 3687:2 3688:18 3689:1 3691:4 3697:2 3706:3 3709:1 3718:2 3721:3 3724:2 3725:2 3740:2 3742:1 3743:1 3755:1 3769:2 3776:1 3777:3 3783:1 3788:1 3808:1 3813:1 3815:1 3816:3 3826:2 3838:2 3840:1 3844:1 3853:1 3866:2 3873:1 3889:1 3891:1 3900:1 3901:1 3904:1 3905:1 3911:1 3915:1 3918:1 3920:1 3925:4 3939:4 3953:1 3993:1 3995:1 4036:1 4052:1 4056:2 4086:1 4090:1 4101:2 4106:1 4107:1 4109:1 4110:1 4137:1 4143:1 4153:1 4156:1 4169:3 4199:1 4209:1 4234:8 4250:1 4277:1 4302:1 4306:1 4313:5 4322:1 4325:2 4335:2 4347:4 4351:1 4372:1 4380:1 4386:1 4393:1 4435:1 4448:1 4449:2 4474:1 4484:1 4489:1 4499:1 4515:2 4519:1 4522:2 4533:1 4543:3 4554:1 4563:3 4584:1 4585:1 4586:1 4653:1 4654:1 4659:1 4660:2 4671:1 4685:1 4693:2 4701:1 4742:1 4754:1 4779:1 4782:1 4792:13 4793:1 4804:1 4824:2 4848:1 4850:2 4860:1 4870:1 4893:3 4902:3 4903:1 4905:4 4925:2 4926:2 4927:6 4928:1 4929:1 4930:1 4933:2 4935:1 4939:1 4940:17 4941:1 4943:1 4948:2 4949:3 4956:1 4972:1 4975:3 5031:2 5045:1 5053:1 5058:1 5120:1 5144:3 5145:3 5152:5 5181:1 5190:1 5195:1 5209:1 5213:2 5214:17 5227:1 5242:1 5250:3 5252:1 5280:2 5317:1 5319:1 5330:1 5355:1 5359:1 5361:1 5370:1 5375:1 5379:1 5386:1 5390:2 5392:1 5431:1 5433:1 5437:1 5446:1 5447:1 5448:2 5465:1 5474:1 5479:1 5489:2 5494:1 5497:1 5502:1 5523:1 5525:1 5562:1 5565:3 5588:2 5595:1 5604:1 5614:1 5618:1 5620:1 5624:1 5631:1 5635:1 5646:1 5654:1 5656:1 5659:1 5660:1 5662:1 5679:1 5683:1 5697:1 5701:1 5703:1 5707:1 5731:1 5766:3 5791:1 5794:3 5796:1 5803:1 5808:1 5846:1 5860:2 5903:1 5924:1 5931:1 5932:5 5941:1 5945:2 5971:2 5976:1 6003:1 6020:1 6024:1 6042:2 6043:1 6046:1 6047:1 6057:1 6079:4 6086:1 6087:2 6088:2 6126:1 6127:2 6129:1 6136:1 6151:5 6153:1 6165:1 6166:1 6168:1 6177:1 6181:1 6184:1 6239:2 6242:1 6243:1 6244:1 6247:1 6248:1 6250:2 6251:2 6254:2 6255:3 6256:3 6262:2 6264:6 6265:1 6266:1 6267:2 6275:1 6298:1 6325:1 6358:1 6392:1 6398:1 6404:1 6410:2 6413:1 6424:1 6450:1 6454:1 6463:1 6494:1 6507:1 6508:1 6513:2 6523:1 6533:5 6535:1 6539:3 6547:1 6550:1 6557:1 6558:1 6566:2 6582:3 6598:2 6603:1 6604:1 6606:1 6615:1 6639:1 6657:1 6661:1 6677:2 6679:1 6684:1 6685:2 6687:1 6695:3 6699:1 6704:1 6711:2 6718:1 6731:1 6739:1 6745:1 6780:1 6783:2 6789:1 6791:1 6795:1 6799:2 6803:1 6819:2 6835:1 6857:1 6860:1 6876:2 6893:1 6896:2 6909:1 6930:1 6954:2 6970:1 6974:1 6982:1 6996:1 7000:5 7010:2 7027:1 7036:1 7049:1 7080:1 7134:1 7180:1 7196:1 7204:1 7221:4 7267:1 7269:1 7275:3 7290:2 7307:4 7343:2 7360:2 7378:1 7387:1 7406:1 7411:1 7420:1 7430:1 7433:1 7437:4 7446:1 7466:1 7477:3 7478:4 7479:2 7496:1 7499:2 7502:1 7505:1 7530:1 7531:2 7544:1 7547:1 7548:36 7549:1 7550:1 7555:2 7567:9 7568:20 7578:1 7579:1 7582:1 7586:1 7588:1 7590:1 7615:1 7616:4 7638:1 7653:1 7668:1 7672:1 7689:2 7742:3 7746:5 7750:1 7780:1 7786:1 7788:4 7802:1 7805:1 7826:1 7851:1 7858:1 7862:1 7910:3 7921:1 7926:1 7928:6 7936:2 7951:1 7960:2 7973:1 7977:1 7983:1 7998:1 7999:1 8006:17 8026:1 8031:1 8037:2 8039:1 8049:1 8063:2 8092:1 8098:1 8107:2 8116:1 8127:2 8140:1 8154:1 8167:1 8170:3 8176:4 8181:1 8194:2 8196:1 8199:3 8213:2 8214:1 8215:1 8220:1 8231:1 8233:2 8241:2 8251:1 8260:2 8263:2 8269:1 8274:1 8276:1 8277:1 8294:2 8308:1 8319:3 8327:1 8336:1 8342:1 8345:1 8349:1 8354:1 8357:2 8358:1 8359:3 8360:1 8361:2 8362:4 8365:1 8370:1 8373:2 8375:2 8381:3 8396:1 8402:1 8412:2 8420:1 8421:1 8427:1 8428:1 8440:1 8450:1 8455:2 8462:1 8475:2 8492:1 8496:5 8517:3 8526:1 8528:1 8531:1 8550:1 8556:1 8583:2 8595:1 8596:1 8603:1 8609:2 8616:3 8617:1 8621:1 8637:1 8640:1 8667:4 8668:2 8675:4 8676:1 8677:1 8678:3 8680:3 8687:2 8688:2 8706:1 8707:1 8709:2 8711:4 8725:1 8727:1 8743:2 8748:1 8763:1 8813:1 8827:2 8835:1 8838:1 8853:2 8854:1 8863:1 8868:1 8880:1 8882:1 8895:1 8903:1 8918:1 8919:1 8957:1 8962:3 8978:1 8991:1 8994:1 8995:3 9008:1 9015:6 9035:2 9039:2 9042:1 9049:1 9055:1 9071:1 9078:1 9088:3 9091:1 9110:1 9124:1 9156:1 9160:1 9219:1 9240:1 9243:1 9246:3 9252:2 9253:1 9263:1 9264:2 9278:1 9292:1 9294:1 9298:2 9322:1 9325:2 9328:1 9350:1 9375:17 9383:1 9399:1 9408:2 9420:4 9428:2 9434:1 9437:1 9448:1 9455:1 9459:1 9467:2 9484:1 9511:14 9529:1 9535:2 9550:1 9569:5 9575:1 9580:1 9586:3 9587:1 9590:1 9603:1 9614:1 9651:2 9655:3 9656:1 9690:6 9696:2 9697:4 9698:2 9706:1 9707:1 9717:1 9726:2 9730:2 9733:1 9739:1 9744:1 9748:3 9751:1 9753:1 9754:1 9761:1 9780:3 9785:3 9795:1 9797:2 9809:1 9817:1 9830:1 9848:1 9853:3 9855:1 9873:9 9875:1 9876:5 9883:1 9885:1 9967:1 9971:2 9976:1 9986:1 10018:1 10023:1 10035:4 10055:1 10081:1 10084:1 10121:1 10137:2 10149:3 10155:1 10159:1 10163:1 10173:1 10181:1 10191:1 10209:2 10215:3 10227:1 10230:1 10251:1 10258:2 10276:2 10278:2 10281:1 10288:1 10297:6 10311:2 10312:3 10313:1 10314:3 10320:1 10328:1 10330:1 10334:1 10355:1 10356:2 10369:1 10374:1 10383:4 10396:2 10401:1 10405:2 10413:7 10417:1 10463:1 10464:1 10470:1 10475:1 10495:2 10498:1 10499:2 10503:1 10509:1 10510:1 10524:2 10534:1 10545:1 10549:1 10588:1 10591:1 10595:1 10604:1 10620:2 10621:1 10635:6 10649:3 10650:6 10663:1 10666:1 10670:1 10672:1 10699:4 10702:1 10727:2 10729:1 10730:1 10740:1 10742:2 10747:1 10767:3 10779:2 10811:1 10839:1 10841:1 10843:2 10846:1 10860:1 10892:1 10894:1 10899:1 10900:1 10901:1 10904:1 10905:4 10906:1 10926:1 10931:1 10941:1 10945:2 10961:1 10965:1 10970:1 10971:1 10996:2 11019:1 11021:2 11032:1 11039:2 11047:1 11054:1 11073:1 11080:1 11081:3 11112:1 11116:2 11118:5 11120:1 11147:1 11169:1 11172:1 11180:1 11186:2 11198:1 11218:3 11232:1 11238:1 11242:1 11245:1 11248:4 11261:3 11263:1 11278:3 11280:2 11296:1 11299:1 11315:2 11322:1 11328:3 11335:2 11336:6 11337:1 11348:1 11349:1 11354:1 11358:1 11359:1 11367:1 11370:1 11372:5 11373:1 11374:1 11381:1 11383:5 11392:1 11399:1 11406:6 11422:2 11431:5 11435:1 11441:2 11446:1 11455:1 11475:1 11476:1 11486:4 11492:1 11496:1 11498:1 11499:2 11530:1 11534:1 11544:3 11557:1 11563:1 11566:1 11575:1 11615:2 11616:2 11633:2 11649:1 11651:1 11683:1 11691:3 11734:2 11737:2 11749:1 11761:1 11764:1 11765:1 11766:1 11786:3 11787:3 11788:17 11797:5 11806:1 11812:1 11813:2 11823:1 11837:2 11859:1 11879:1 11904:1 11930:1 11938:7 11939:2 11955:1 11958:2 11959:1 11963:1 11984:1 12016:3 12019:1 12040:1 12047:1 12054:2 12058:1 12064:1 12069:1 12081:1 12115:1 12134:3 12148:1 12187:1 12189:3 12196:1 12198:1 12203:1 12218:1 12257:1 12275:1 12323:6 12336:1 12339:1 12341:1 12345:1 12348:1 12357:1 12369:2 12370:3 12391:1 12394:1 12420:1 12451:1 12456:2 12485:1 12505:1 12510:2 12524:1 12525:2 12550:1 12566:2 12599:1 12652:1 12671:3 12691:1 12692:2 12698:1 12702:1 12710:1 12712:1 12715:1 12719:1 12722:1 12733:1 12741:1 12744:1 12756:2 12765:1 12768:1 12769:1 12771:2 12776:1 12792:1 12798:1 12799:2 12829:1 12834:1 12835:2 12837:1 12870:2 12872:1 12874:1 12875:1 12881:1 12882:2 12883:1 12884:6 12889:3 12891:1 12892:1 12900:1 12904:3 12915:3 12919:1 12924:1 12928:3 12934:1 12954:7 12956:1 12964:1 12966:1 12970:2 12979:1 12980:2 12997:1 13019:2 13033:2 13034:1 13049:4 13052:1 13053:1 13065:1 13071:1 13084:2 13095:3 13114:1 13119:2 13122:6 13131:1 13136:1 13148:1 13149:2 13150:2 13160:1 13174:1 13177:1 13178:2 13190:1 13201:2 13221:1 13237:2 13243:1 13249:1 13250:1 13251:2 13252:1 13254:1 13257:1 13270:1 13277:1 13278:1 13296:1 13301:1 13302:1 13310:1 13313:1 13314:1 13318:2 13319:1 13330:2 13334:1 13335:1 13352:1 13365:7 13371:1 13380:1 13411:1 13416:1 13418:1 13434:1 13435:1 13436:1 13439:1 13457:1 13458:2 13461:2 13462:1 13467:4 13493:1 13510:1 13515:1 13518:1 13529:2 13530:3 13535:2 13536:5 13543:1 13560:1 13565:3 13578:1 13589:2 13610:2 13612:1 13615:1 13616:1 13620:1 13628:1 13629:2 13633:2 13666:1 13679:1 13722:1 13723:1 13735:2 13750:1 13769:1 13782:1 13795:1 13829:1 13854:1 13855:1 13880:1 13898:2 13907:2 13908:1 13917:1 13920:1 13924:3 13926:1 13927:1 13935:1 13937:1 13951:2 13956:1 13970:1 13971:1 13985:1 13989:1 14009:2 14035:1 14051:1 14070:1 14076:1 14087:1 14091:1 14093:1 14099:1 14106:4 14126:1 14135:1 14142:1 14145:1 14154:2 14158:1 14183:1 14197:1 14225:1 14227:4 14271:1 14370:1 14378:1 14385:1 14401:2 14437:3 14443:3 14445:1 14447:1 14450:1 14451:1 14470:1 14475:1 14496:1 14505:1 14522:1 14545:2 14546:1 14551:3 14566:1 14577:1 14588:1 14592:2 14596:1 14601:1 14624:1 14633:1 14662:1 14665:1 14667:1 14671:1 14678:1 14710:1 14756:2 14760:3 14761:3 14766:1 14792:4 14793:1 14796:1 14811:1 14826:4 14828:1 14832:1 14835:1 14840:1 14855:1 14867:1 14870:1 14877:1 14887:3 14894:2 14898:2 14906:2 14909:1 14942:1 14951:2 14970:1 14978:1 14992:1 15006:1 15009:1 15020:1 15021:1 15033:3 15036:1 15058:8 15063:8 15067:1 15073:1 15099:2 15112:1 15113:2 15118:2 15131:3 15134:1 15154:1 15165:1 15190:2 15193:1 15194:1 15201:4 15210:2 15221:1 15222:1 15224:1 15230:1 15232:1 15234:1 15238:1 15239:4 15243:2 15244:5 15245:1 15250:1 15254:1 15255:1 15263:1 15264:5 15269:4 15302:1 15337:1 15345:1 15347:2 15356:2 15361:2 15366:4 15375:1 15388:2 15401:1 15421:2 15425:2 15442:1 15446:2 15461:1 15465:1 15472:1 15478:1 15488:1 15496:2 15502:8 15513:2 15529:2 15538:1 15540:1 15554:1 15557:1 15566:17 15587:1 15596:5 15597:1 15599:1 15620:2 15637:50 15665:3 15669:1 15697:1 15731:1 15733:1 15734:2 15758:1 15763:2 15765:1 15766:2 15773:2 15774:4 15776:1 15780:2 15784:1 15797:1 15810:1 15812:1 15815:1 15831:1 15832:1 15833:1 15855:1 15857:1 15876:1 15896:1 15902:5 15919:1 15934:2 15938:1 15953:1 15961:2 15969:1 15974:1 15988:1 16026:1 16035:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16107:2 16108:1 16133:1 16137:1 16146:2 16151:4 16153:1 16156:1 16165:1 16167:2 16168:3 16187:3 16199:1 16210:1 16215:1 16217:2 16219:1 16220:1 16228:1 16230:1 16237:1 16249:1 16255:10 16262:1 16289:1 16300:2 16310:1 16311:1 16338:1 16343:1 16348:1 16365:1 16366:2 16369:3 16373:1 16375:2 16378:1 16380:1 16390:1 16395:1 16407:1 16416:1 16421:1 16426:2 16427:2 16446:1 16453:1 16459:1 16472:1 16492:3 16501:1 16517:1 16558:1 16569:2 16571:1 16582:1 16588:2 16601:1 16608:1 16609:1 16617:2 16623:2 16630:2 16646:1 16649:1 16652:1 16654:3 16658:1 16666:1 16674:1 16676:1 16683:3 16690:1 16704:1 16705:1 16718:1 16721:1 16726:1 16744:2 16766:2 16771:1 16777:1 16796:4 16845:1 16866:1 16876:1 16877:1 16879:1 16896:4 16899:1 16902:1 16904:1 16911:1 16915:2 16920:1 16921:1 16936:2 16940:2 16949:1 16953:1 16954:1 16964:2 16982:1 16987:1 16990:1 16993:1 17010:1 17018:2 17019:2 17055:1 17058:1 17061:1 17077:1 17082:1 17098:1 17103:2 17113:2 17117:1 17128:1 17130:1 17142:2 17187:2 17194:1 17196:2 17199:2 17201:1 17219:1 17220:8 17223:2 17235:1 17244:1 17248:1 17275:1 17285:1 17292:1 17294:1 17310:1 17311:2 17317:3 17334:2 17338:2 17341:1 17354:1 17363:1 17369:1 17392:1 17396:2 17403:1 17404:4 17417:1 17448:1 17479:1 17501:1 17513:1 17529:3 17531:1 17540:1 17568:1 17571:1 17578:1 17587:1 17595:1 17599:3 17609:2 17616:1 17640:1 17657:1 17661:1 17666:1 17667:3 17714:1 17723:1 17752:1 17754:3 17760:1 17774:4 17779:1 17782:1 17785:3 17805:1 17806:1 17811:1 17821:1 17823:1 17828:1 17850:1 17856:1 17874:1 17912:9 17916:1 17923:1 17930:1 17946:1 17949:1 17961:1 17968:1 17970:1 17978:1 17984:2 17998:1 18003:1 18010:1 18027:1 18031:4 18035:1 18037:2 18038:1 18052:3 18057:1 18065:2 18066:1 18095:1 18101:2942 18105:1 18118:4 18123:2 18149:1 18157:1 18163:1 18171:1 18178:3 18188:1 18215:3 18226:1 18234:2 18245:2 18262:1 18267:1 18271:4 18272:2 18298:3 18306:1 18309:1 18311:3 18314:1 18315:1 18331:1 18346:1 18361:1 18362:1 18381:1 18408:1 18410:4 18434:1 18439:1 18462:2 18472:1 18481:1 18491:1 18493:1 18505:1 18512:1 18514:1 18515:1 18557:1 18567:1 18569:2 18572:1 18584:4 18599:1 18601:1 18607:1 18631:1 18667:1 18669:1 18677:1 18679:3 18731:1 18761:1 18780:1 18786:2 18796:1 18799:2 18801:1 18804:2 18813:4 18825:2 18829:1 18830:3 18834:1 18847:1 18859:12 18877:1 18878:1 18880:1 18881:1 18883:14 18892:1 18910:1 18911:4 18914:1 18936:1 18947:1 18950:4 18968:1 18972:2 18976:1 18978:3 18980:2 18983:1 18987:1 18997:2 18998:1 19005:1 19028:1 19034:3 19039:1 19055:1 19067:3 19099:1 19103:1 19106:1 19148:1 19153:1 19176:1 19179:1 19187:1 19206:1 19209:10 19212:1 19220:1 19231:3 19253:1 19279:1 19291:1 19299:1 19305:1 19307:5 19326:1 19329:1 19347:2 19359:1 19360:1 19383:1 19390:1 19391:1 19394:1 19399:1 19401:1 19402:1 19409:1 19436:1 19459:4 19464:1 19470:1 19472:1 19488:2 19489:1 19514:1 19523:1 19525:1 19539:1 19543:2 19545:4 19565:1 19569:1 19574:2 19582:2 19584:1 19591:7 19612:1 19638:1 19644:1 19663:11 19669:1 19677:2 19679:2 19694:1 19695:1 19706:1 19707:11 19724:1 19747:1 19756:1 19774:1 19786:1 19818:1 19822:1 19833:2 19853:4 19856:2 19865:1 19870:1 19900:2 19910:1 19918:1 19945:5 19955:1 19957:3 19968:1 19979:1 19986:1 19998:1 20006:1 20022:1 20024:1 20044:1 20078:2 20086:1 20095:1 20099:1 20109:1 20117:1 20120:2 20129:1 20143:1 20145:1 20148:1 20169:1 20193:1 20210:3 20227:2 20230:1 20231:1 20236:1 20240:1 20245:10 20248:1 20252:1 20257:3 20260:1 20261:1 20279:1 20285:2 20289:5 20299:1 20322:4 20325:1 20327:1 20335:1 20352:1 20364:2 20375:2 20378:1 20396:2 20401:1 20402:1 20422:7 20429:1 20432:2 20438:1 20453:1 20490:1 20496:1 20502:1 20505:1 20507:1 20524:2 20528:1 20531:1 20533:1 20538:1 20546:3 20561:1 20567:1 20569:1 20572:1 20583:1 20585:1 20620:1 20628:1 20647:1 20672:1 20679:1 20712:1 20716:1 20718:4 20720:2 20723:3 20733:4 20741:1 20743:1 20745:1 20773:1 20782:1 20786:1 20787:1 20798:1 20809:1 20810:1 20822:1 20827:1 20828:1 20838:1 20840:6 20843:2 20856:2 20860:1 20870:1 20874:1 20888:1 20926:1 20927:2 20934:1 20941:1 20951:1 20952:1 20953:1 20971:1 20973:3 20976:11 20978:1 20992:1 20998:1 20999:1 21003:1 21014:1 21019:1 21026:1 21037:4 21053:1 21080:2 21084:2 21086:1 21090:1 21096:4 21108:1 21120:1 21125:1 21140:1 21141:1 21142:4 21150:2 21156:3 21161:1 21209:1 21231:3 21237:1 21238:1 21239:7 21241:1 21245:2 21252:2 21254:1 21255:1 21266:2 21267:1 21269:1 21272:1 21279:1 21282:2 21283:1 21291:1 21292:1 21302:1 21306:2 21309:2 21314:1 21334:2 21369:1 21379:5 21380:1 21403:1 21407:1 21412:1 21423:2 21425:1 21435:1 21439:1 21446:4 21457:1 21464:1 21474:1 21515:17 21516:2 21518:1 21537:1 21548:1 21556:1 21575:1 21583:1 21594:2 21609:1 21611:1 21613:2 21620:1 21621:1 21623:1 21628:2 21642:2 21645:1 21648:8 21664:2 21668:3 21679:2 21704:1 21712:1 21715:1 21718:2 21732:1 21735:1 21738:1 21743:1 21745:2 21753:1 21754:1 21766:2 21769:1 21781:6 21794:3 21807:2 21819:1 21828:2 21840:1 21860:2 21873:1 21895:1 21929:1 21941:3 21946:1 21949:1 21959:1 21967:1 21989:1 22001:1 22015:1 22021:1 22032:1 22038:1 22042:1 22049:12 22051:2 22082:2 22090:1 22099:1 22120:1 22130:1 22132:1 22133:2 22139:1 22154:1 22165:3 22185:1 22188:5 22192:1 22223:1 22225:1 22241:1 22248:1 22264:2 22284:1 22290:1 22295:2 22329:1 22344:1 22346:1 22348:2 22355:2 22374:1 22414:1 22423:1 22424:1 22425:4 22431:1 22432:1 22436:1 22448:1 22452:1 22453:1 22463:1 22466:1 22478:1 22481:2 22496:1 22530:1 22534:2 22548:1 22551:2 22556:1 22564:2 22568:3 22571:1 22572:1 22593:1 22607:1 22619:1 22627:3 22628:1 22646:6 22654:1 22657:1 22665:1 22667:1 22670:1 22672:3 22677:2 22681:1 22699:2 22706:1 22707:2 22708:1 22748:4 22755:1 22757:19 22759:1 22837:2 22847:1 22849:1 22856:1 22889:1 22916:2 22924:1 22925:1 22937:1 22949:1 22951:1 22957:1 22965:1 22986:1 23000:1 23008:1 23022:1 23024:2 23059:1 23062:2 23077:2 23104:4 23117:1 23122:1 23126:1 23159:1 23175:1 23177:1 23192:2 23207:3 23215:2 23222:1 23224:1 23227:1 23228:1 23229:2 23246:1 23278:1 23284:1 23300:1 23306:1 23313:1 23328:1 23334:1 23360:1 23362:1 23389:1 23391:1 23396:1 23397:5 23405:1 23412:1 23413:1 23421:3 23434:1 23470:1 23492:1 23510:3 23520:1 23521:1 23558:1 23568:5 23633:2 23643:1 23646:1 23655:1 23656:1 23665:1 23666:2 23667:5 23668:1 23689:1 23697:1 23704:1 23707:2 23712:1 23716:3 23722:2 23752:1 23753:2 23766:2 23780:1 23788:1 23791:2 23802:2 23808:1 23820:1 23841:1 23844:1 23860:1 23867:4 23870:1 23879:3 23883:1 23885:1 23890:1 23899:1 23908:1 23921:1 23937:1 23954:1 23971:1 23980:1 23982:2 23998:1 24003:1 24006:2 24011:1 24013:1 24020:1 24027:1 24036:1 24050:1 24052:1 24057:1 24059:1 24081:1 24083:1 24086:1 24099:1 24106:2 24144:3 24155:5 24179:1 24191:1 24208:1 24214:1 24224:1 24230:2 24234:1 24241:1 24242:4 24252:1 24269:2 24274:1 24275:1 24290:1 24306:1 24325:1 24331:1 24339:4 24360:1 24363:1 24396:1 24404:2 24406:2 24412:1 24417:1 24420:1 24434:5 24457:1 24473:2 24476:4 24478:1 24484:1 24488:4 24492:1 24533:1 24534:1 24540:1 24567:1 24572:1 24600:1 24614:1 24620:1 24636:1 24637:2 24641:1 24644:7 24647:3 24653:1 24678:1 24692:1 24694:1 24697:2 24702:1 24718:1 24728:1 24730:6 24740:2 24742:1 24751:3 24760:5 24761:1 24772:1 24784:1 24789:1 24797:1 24817:2 24838:1 24841:6 24843:1 24847:1 24854:1 24855:1 24873:2 24883:1 24897:1 24915:3 24942:4 24946:1 24967:2 24969:2 24990:2 24999:1 25018:1 25051:1 25053:1 25056:1 25061:1 25071:1 25081:1 25092:4 25109:1 25117:1 25131:1 25135:1 25138:2 25140:1 25143:1 25153:1 25157:2 25160:2 25173:1 25175:1 25179:1 25191:1 25194:1 25200:1 25217:1 25219:1 25228:1 25230:2 25235:1 25242:1 25256:6 25261:1 25262:1 25265:1 25268:1 25277:1 25283:1 25286:1 25289:2 25323:2 25326:1 25332:1 25348:1 25360:1 25379:1 25385:1 25387:3 25402:1 25410:9 25414:1 25451:1 25455:1 25478:1 25514:1 25525:1 25530:1 25537:1 25549:3 25555:1 25569:1 25571:2 25586:1 25660:3 25681:5 25683:2 25688:1 25695:1 25696:2 25698:1 25699:4 25700:6 25703:1 25705:1 25722:1 25742:2 25751:2 25773:1 25782:1 25787:1 25793:3 25801:1 25805:1 25826:3 25844:1 25852:1 25861:2 25867:1 25879:1 25910:1 25916:1 25955:1 25957:1 25967:1 26008:1 26023:1 26032:1 26042:1 26051:1 26067:1 26069:2 26075:1 26104:2 26110:2 26120:2 26137:1 26151:1 26158:1 26201:1 26216:1 26218:2 26228:1 26272:1 26281:1 26285:2 26289:4 26299:1 26301:1 26303:9 26331:2 26332:1 26389:1 26397:19 26398:1 26400:3 26401:1 26410:1 26420:1 26430:2 26450:1 26454:1 26503:2 26505:3 26509:3 26510:2 26544:1 26546:1 26548:1 26549:1 26555:2 26557:2 26559:1 26563:1 26569:1 26570:1 26576:1 26581:1 26588:3 26612:2 26624:1 26641:1 26651:1 26664:2 26666:1 26686:1 26689:1 26690:1 26711:1 26715:1 26725:1 26765:1 26766:1 26792:1 26794:1 26797:1 26807:3 26810:2 26829:2 26843:1 26869:7 26874:1 26879:1 26889:1 26894:1 26919:1 26954:3 26963:3 26977:1 26986:1 26989:1 26993:1 27017:1 27025:1 27035:1 27038:3 27044:1 27071:2 27080:1 27108:3 27111:4 27135:1 27143:1 27145:1 27171:1 27177:1 27213:1 27216:1 27217:1 27228:4 27231:1 27239:1 27248:1 27256:3 27259:1 27271:1 27279:2 27280:24 27281:2 27283:2 27287:4 27289:1 27290:1 27300:1 27315:1 27316:13 27326:1 27329:1 27337:1 27364:1 27368:2 27372:1 27373:2 27381:1 27394:1 27401:1 27405:4 27414:4 27419:1 27447:3 27448:1 27452:2 27458:1 27462:1 27465:1 27492:1 27495:1 27496:1 27519:1 27549:1 27558:2 27561:1 27590:1 27591:1 27594:1 27611:1 27619:1 27620:1 27627:1 27633:2 27636:1 27638:4 27641:1 27644:1 27661:2 27666:1 27676:1 27692:8 27695:1 27705:3 27743:1 27745:1 27749:1 27772:3 27773:7 27775:1 27776:1 27780:1 27783:1 27799:1 27804:1 27805:2 27814:1 27818:1 27828:1 27834:1 27835:1 27842:1 27864:3 27879:1 27914:3 27920:1 27922:1 27926:2 27951:1 27961:1 27963:4 27968:1 27971:1 27977:5 27984:1 27994:2 28018:1 28026:1 28046:1 28053:1 28067:1 28081:1 28106:2 28108:1 28122:1 28138:4 28169:2 28172:1 28176:1 28185:1 28210:1 28217:2 28222:1 28229:3 28237:1 28265:1 28283:1 28292:3 28297:1 28300:1 28314:1 28326:2 28336:1 28341:1 28343:6 28344:1 28352:1 28364:2 28380:2 28391:1 28395:2 28397:1 28420:1 28430:4 28437:2 28496:1 28503:1 28504:1 28507:1 28509:1 28511:3 28516:1 28523:1 28554:1 28560:2 28566:1 28569:1 28574:1 28575:1 28576:1 28579:1 28587:2 28618:1 28629:1 16 6:1 26:1 27:1 29:1 44:1 69:1 78:1 83:4 100:1 106:1 137:1 147:1 153:1 162:1 165:1 175:1 176:1 201:1 206:1 211:1 213:1 230:1 235:4 239:1 254:1 283:1 286:1 296:4 318:1 327:1 336:2 337:2 338:1 364:1 372:1 375:1 382:1 407:2 418:1 442:3 445:1 449:2 460:1 478:1 489:2 504:1 507:1 509:1 514:1 523:1 526:2 552:1 553:1 567:4 603:1 614:1 617:2 627:3 634:1 648:2 654:1 661:4 665:1 671:1 676:1 684:1 688:1 699:1 707:1 713:1 724:1 735:1 757:2 768:1 772:1 787:1 803:1 805:1 809:1 813:1 824:1 826:1 828:1 843:1 852:1 856:1 872:2 902:1 910:2 913:1 915:1 924:2 933:1 934:2 939:3 940:1 941:3 942:6 943:2 944:2 947:1 966:1 978:1 983:1 985:6 987:2 1010:1 1015:2 1020:1 1052:1 1059:2 1062:1 1081:1 1086:1 1089:1 1108:1 1116:1 1125:1 1170:1 1171:3 1175:1 1184:1 1187:1 1192:2 1200:1 1201:4 1217:2 1222:1 1227:1 1237:1 1239:3 1259:1 1263:1 1267:1 1269:2 1275:4 1278:1 1279:1 1289:4 1290:2 1292:1 1302:3 1306:1 1316:1 1319:1 1321:1 1331:1 1335:3 1346:2 1356:1 1375:2 1379:1 1404:1 1413:1 1415:2 1438:3 1440:1 1446:1 1448:1 1451:1 1453:2 1464:1 1475:1 1484:6 1497:1 1501:6 1513:2 1521:2 1522:1 1525:3 1531:1 1535:1 1541:1 1544:4 1560:1 1569:1 1572:5 1583:1 1587:1 1591:1 1594:1 1596:1 1601:2 1621:2 1628:1 1632:4 1637:4 1640:2 1641:1 1653:1 1654:1 1657:1 1672:4 1675:3 1678:1 1683:1 1684:1 1698:1 1722:1 1731:1 1733:1 1743:2 1745:1 1747:1 1751:1 1758:3 1766:2 1784:1 1789:1 1790:1 1809:1 1810:1 1820:1 1824:1 1825:1 1831:1 1837:1 1844:1 1849:1 1853:1 1860:1 1861:1 1877:1 1882:1 1883:1 1884:1 1889:1 1895:1 1901:1 1903:2 1904:4 1908:1 1910:1 1914:1 1921:1 1929:1 1930:3 1931:1 1950:1 1953:1 1978:1 1986:1 2001:1 2006:1 2015:2 2017:2 2019:1 2020:2 2022:1 2023:3 2044:1 2049:1 2054:2 2072:1 2074:3 2075:1 2076:2 2101:1 2108:4 2126:1 2133:1 2156:1 2158:1 2164:1 2170:1 2174:3 2188:1 2227:1 2228:1 2229:1 2230:2 2232:4 2237:1 2238:5 2240:1 2241:1 2244:5 2245:1 2246:3 2248:1 2251:1 2256:5 2259:3 2260:6 2272:1 2273:1 2277:1 2290:1 2303:1 2308:1 2321:1 2327:2 2331:1 2334:1 2336:2 2346:1 2354:1 2359:1 2361:1 2374:1 2413:3 2423:1 2437:1 2448:2 2474:1 2483:1 2486:1 2488:1 2495:1 2526:1 2531:1 2556:1 2582:2 2587:1 2595:4 2596:1 2602:1 2607:3 2615:1 2622:2 2623:1 2630:1 2633:1 2635:2 2637:7 2651:1 2653:1 2662:2 2670:1 2674:1 2677:1 2684:3 2689:1 2690:1 2713:2 2721:2 2731:2 2738:1 2739:1 2741:4 2747:2 2755:1 2792:4 2795:1 2799:1 2804:1 2818:11 2828:7 2857:2 2869:1 2885:24 2899:1 2903:1 2907:1 2918:1 2920:1 2936:1 2956:1 2962:1 2981:1 2986:2 2987:1 2989:1 3037:3 3041:1 3053:1 3059:1 3062:1 3070:1 3085:1 3105:1 3106:1 3107:1 3116:1 3117:1 3129:2 3133:4 3151:10 3153:2 3168:1 3173:1 3181:1 3191:1 3208:1 3218:1 3219:7 3254:1 3281:1 3283:1 3293:1 3303:1 3319:2 3327:1 3330:1 3340:1 3348:1 3361:3 3369:2 3373:1 3377:1 3388:4 3417:1 3426:1 3427:3 3430:1 3441:1 3442:1 3453:3 3491:1 3505:1 3511:1 3512:3 3513:1 3519:2 3521:1 3522:1 3543:1 3550:1 3569:1 3588:1 3598:1 3603:1 3606:3 3608:1 3625:1 3643:1 3651:2 3652:34 3677:2 3678:1 3679:7 3681:1 3686:1 3687:2 3688:19 3689:1 3691:4 3697:2 3706:3 3709:1 3718:2 3721:3 3724:2 3725:2 3740:2 3742:1 3743:1 3755:1 3769:2 3776:1 3777:3 3781:1 3783:1 3788:1 3808:1 3813:1 3815:1 3816:3 3826:2 3838:2 3840:1 3844:1 3853:1 3866:2 3873:1 3889:1 3891:1 3900:1 3901:1 3904:1 3905:1 3911:1 3915:2 3918:1 3920:1 3925:4 3939:4 3953:1 3985:1 3993:1 3995:1 4036:1 4052:1 4056:3 4062:1 4086:1 4090:1 4101:2 4106:1 4107:2 4109:1 4110:1 4137:1 4143:1 4153:1 4156:1 4169:3 4199:1 4209:1 4221:1 4234:9 4250:1 4277:1 4302:2 4306:1 4313:5 4322:1 4325:2 4335:2 4347:5 4351:1 4372:1 4380:1 4383:1 4386:1 4393:1 4435:1 4448:1 4449:2 4474:1 4484:1 4489:1 4499:2 4515:2 4519:1 4522:2 4533:1 4543:3 4554:1 4563:3 4584:1 4585:1 4586:1 4609:1 4653:1 4654:1 4659:1 4660:2 4671:1 4685:1 4689:1 4693:2 4701:1 4742:1 4754:1 4779:1 4782:1 4785:1 4792:13 4793:1 4804:1 4824:2 4848:1 4850:2 4860:1 4870:1 4893:3 4902:3 4903:1 4905:4 4925:2 4926:2 4927:6 4928:1 4929:1 4930:1 4933:2 4935:1 4939:1 4940:18 4941:1 4943:1 4948:2 4949:3 4956:2 4972:1 4975:3 5031:2 5045:1 5053:1 5058:1 5120:1 5144:3 5145:3 5152:5 5181:1 5190:1 5195:1 5209:1 5213:2 5214:18 5227:1 5242:1 5250:3 5252:1 5280:2 5317:1 5319:1 5330:1 5355:1 5359:1 5361:1 5370:1 5375:1 5379:1 5386:1 5390:2 5392:1 5431:1 5433:1 5437:1 5446:1 5447:1 5448:2 5465:1 5474:1 5479:1 5489:2 5494:1 5497:1 5502:1 5503:2 5521:1 5523:1 5525:1 5562:1 5565:3 5588:2 5595:1 5604:1 5614:1 5618:1 5620:1 5624:1 5631:1 5635:1 5643:1 5646:1 5654:1 5656:1 5659:1 5660:1 5662:1 5679:1 5683:1 5697:1 5701:1 5702:1 5703:1 5707:1 5731:1 5766:3 5791:1 5794:3 5796:1 5803:1 5808:1 5846:1 5860:2 5903:1 5924:1 5931:1 5932:6 5941:1 5945:2 5971:2 5976:1 6003:1 6020:1 6024:1 6034:1 6042:2 6043:1 6046:1 6047:1 6057:1 6079:4 6086:1 6087:2 6088:2 6126:1 6127:2 6129:1 6136:1 6151:5 6153:1 6165:1 6166:1 6168:1 6177:1 6181:1 6184:1 6194:1 6239:2 6242:1 6243:1 6244:1 6247:1 6248:1 6250:2 6251:2 6254:2 6255:3 6256:4 6262:2 6264:6 6265:1 6266:1 6267:2 6275:1 6298:1 6325:2 6329:1 6358:1 6392:1 6398:1 6404:1 6410:2 6413:1 6424:1 6450:1 6454:1 6463:1 6494:1 6507:1 6508:1 6513:2 6523:1 6533:5 6535:1 6539:3 6547:1 6550:1 6557:1 6558:1 6566:2 6582:3 6598:2 6603:1 6604:1 6606:1 6615:1 6639:1 6657:1 6661:1 6677:2 6679:1 6684:1 6685:2 6687:1 6695:3 6699:1 6704:3 6711:2 6718:1 6731:1 6739:2 6745:1 6780:1 6783:2 6789:1 6791:1 6795:1 6799:2 6803:1 6819:2 6835:1 6857:1 6860:1 6876:2 6893:1 6896:2 6909:1 6930:1 6954:2 6970:1 6974:1 6982:1 6996:1 7000:5 7010:2 7027:1 7036:1 7049:1 7080:1 7134:1 7180:1 7196:1 7204:1 7221:4 7267:1 7269:1 7275:3 7290:2 7307:4 7343:2 7360:2 7378:1 7387:1 7406:1 7411:1 7419:1 7420:1 7430:1 7433:1 7437:4 7446:1 7466:1 7477:3 7478:4 7479:2 7496:1 7499:2 7502:1 7505:1 7512:1 7530:1 7531:2 7544:1 7547:1 7548:37 7549:1 7550:1 7555:2 7567:10 7568:20 7578:1 7579:1 7582:1 7586:1 7588:1 7590:1 7615:1 7616:5 7638:1 7653:1 7668:1 7672:1 7689:2 7705:1 7742:3 7746:5 7750:1 7780:1 7786:1 7788:4 7802:1 7805:1 7826:1 7851:1 7858:1 7862:1 7910:3 7921:1 7926:1 7928:7 7936:2 7942:1 7951:1 7960:2 7973:1 7977:1 7983:1 7998:1 7999:1 8006:17 8026:1 8031:1 8037:2 8039:1 8049:1 8063:2 8092:1 8098:1 8107:2 8116:1 8127:2 8140:1 8154:1 8167:1 8170:3 8176:4 8181:2 8194:2 8196:1 8199:3 8213:2 8214:1 8215:1 8220:1 8231:1 8233:2 8241:2 8251:1 8260:2 8263:2 8269:1 8274:1 8276:1 8277:1 8294:2 8308:1 8319:3 8327:1 8336:1 8342:1 8345:1 8349:1 8354:1 8357:2 8358:1 8359:3 8360:1 8361:2 8362:4 8365:1 8370:1 8373:2 8375:2 8381:3 8396:1 8402:1 8412:2 8420:1 8421:1 8427:1 8428:1 8440:1 8450:1 8455:2 8462:1 8475:2 8492:1 8496:5 8517:3 8526:1 8528:1 8531:2 8550:1 8556:1 8583:2 8595:1 8596:1 8603:1 8609:2 8616:3 8617:1 8621:1 8637:1 8640:1 8667:4 8668:2 8675:4 8676:1 8677:1 8678:3 8680:3 8687:2 8688:2 8706:1 8707:1 8709:2 8711:4 8725:1 8727:1 8743:2 8748:1 8763:1 8798:1 8813:1 8827:2 8835:1 8838:1 8853:2 8854:2 8863:1 8868:1 8880:1 8882:1 8895:1 8903:1 8918:1 8919:1 8926:1 8957:1 8962:3 8978:1 8991:1 8994:1 8995:3 9008:1 9015:7 9035:2 9039:2 9042:1 9049:1 9055:1 9071:1 9078:1 9088:3 9091:1 9110:1 9124:1 9156:1 9160:1 9201:1 9219:1 9240:1 9243:1 9246:3 9252:2 9253:1 9263:1 9264:2 9278:1 9292:1 9294:1 9298:2 9322:1 9325:2 9328:1 9337:1 9350:1 9375:18 9383:1 9399:1 9408:2 9420:4 9428:2 9434:1 9437:1 9448:1 9455:1 9459:1 9467:2 9484:1 9511:14 9529:1 9535:2 9550:1 9569:5 9575:1 9580:1 9586:3 9587:1 9590:1 9603:1 9614:1 9651:2 9655:3 9656:1 9690:6 9696:2 9697:4 9698:2 9706:2 9707:1 9717:1 9726:2 9730:2 9733:1 9739:1 9744:1 9748:3 9751:1 9753:1 9754:1 9761:1 9780:3 9785:3 9795:1 9797:2 9809:1 9817:2 9830:1 9848:1 9853:3 9855:1 9873:10 9875:1 9876:5 9883:1 9885:1 9967:1 9971:2 9976:1 9986:1 9998:1 10018:3 10023:1 10035:4 10055:1 10081:1 10084:1 10103:1 10121:1 10137:2 10149:4 10155:1 10159:1 10163:1 10173:2 10181:1 10191:1 10209:2 10215:4 10227:1 10230:1 10251:1 10258:2 10276:2 10278:2 10281:2 10288:1 10297:6 10311:2 10312:3 10313:1 10314:3 10320:1 10328:1 10330:1 10334:1 10355:1 10356:2 10369:1 10374:1 10383:4 10394:1 10396:2 10401:1 10405:2 10413:7 10417:1 10463:1 10464:1 10470:1 10475:1 10495:2 10498:1 10499:2 10503:1 10509:1 10510:1 10524:2 10534:1 10545:1 10549:1 10588:1 10591:1 10595:1 10604:1 10620:2 10621:1 10635:7 10649:3 10650:7 10663:2 10666:1 10670:1 10672:1 10679:1 10692:1 10699:4 10702:1 10727:2 10729:1 10730:1 10740:1 10742:2 10747:2 10767:3 10779:2 10811:1 10839:1 10841:1 10843:2 10846:1 10860:1 10892:1 10894:1 10899:1 10900:1 10901:1 10904:1 10905:4 10906:1 10907:1 10926:1 10931:1 10941:1 10945:2 10961:1 10965:1 10970:1 10971:1 10996:2 11019:1 11021:3 11032:1 11039:2 11047:1 11054:1 11073:1 11080:1 11081:3 11112:1 11116:3 11118:5 11120:1 11122:1 11147:1 11169:1 11172:1 11180:1 11186:2 11198:1 11218:3 11232:1 11238:1 11242:1 11245:1 11248:4 11261:3 11263:1 11278:3 11280:2 11296:1 11299:1 11315:2 11322:1 11328:3 11335:2 11336:7 11337:1 11348:1 11349:1 11354:1 11358:1 11359:1 11367:1 11370:1 11372:5 11373:1 11374:1 11381:1 11383:5 11392:1 11394:1 11399:1 11406:7 11422:2 11431:5 11435:1 11441:2 11446:1 11455:1 11475:1 11476:1 11486:4 11492:1 11496:1 11498:1 11499:2 11530:1 11534:1 11544:3 11557:1 11563:1 11566:2 11575:1 11615:2 11616:2 11633:2 11649:2 11651:1 11683:1 11691:4 11734:2 11737:2 11749:1 11754:1 11761:1 11764:1 11765:1 11766:1 11786:3 11787:3 11788:18 11797:6 11806:1 11812:1 11813:2 11823:1 11837:2 11859:1 11879:1 11904:1 11930:1 11938:7 11939:2 11955:1 11958:3 11959:1 11963:1 11984:1 12016:3 12019:1 12040:1 12047:1 12054:2 12058:1 12064:1 12069:1 12081:1 12115:1 12134:3 12148:1 12187:1 12189:3 12196:1 12198:1 12202:1 12203:1 12218:1 12257:1 12258:1 12264:1 12275:1 12323:6 12336:1 12339:1 12341:1 12345:1 12348:1 12357:1 12369:2 12370:3 12391:1 12394:2 12420:1 12451:1 12456:2 12485:1 12505:1 12510:2 12524:1 12525:2 12550:1 12566:2 12599:1 12652:1 12671:4 12691:1 12692:2 12698:1 12702:1 12710:2 12712:1 12715:1 12719:1 12722:1 12733:1 12741:1 12744:1 12756:2 12765:1 12768:1 12769:1 12771:2 12776:1 12792:1 12798:1 12799:2 12829:1 12834:1 12835:2 12837:1 12870:2 12872:1 12874:1 12875:1 12881:1 12882:2 12883:1 12884:6 12889:3 12891:1 12892:1 12900:1 12904:3 12915:3 12919:1 12924:1 12928:3 12934:1 12954:7 12956:1 12960:1 12964:1 12966:1 12970:2 12979:1 12980:2 12997:2 13019:2 13033:2 13034:1 13049:4 13052:1 13053:1 13062:1 13065:1 13071:1 13084:2 13095:3 13114:1 13119:2 13122:6 13131:1 13136:1 13148:1 13149:2 13150:2 13151:1 13160:1 13174:1 13177:1 13178:2 13190:1 13201:2 13221:1 13237:2 13243:1 13249:1 13250:1 13251:2 13252:1 13254:1 13257:1 13270:1 13277:1 13278:1 13283:1 13296:1 13301:1 13302:1 13310:1 13313:1 13314:1 13318:2 13319:1 13330:2 13334:1 13335:1 13352:1 13365:7 13371:1 13380:1 13411:1 13416:1 13418:1 13434:1 13435:1 13436:2 13439:2 13457:1 13458:2 13461:2 13462:1 13467:4 13493:1 13510:1 13515:1 13518:1 13529:2 13530:3 13535:2 13536:6 13543:1 13560:1 13565:3 13578:1 13589:2 13610:2 13612:1 13615:1 13616:1 13620:1 13628:1 13629:2 13633:2 13666:1 13679:1 13722:1 13723:1 13735:2 13750:1 13769:1 13782:1 13795:1 13829:1 13854:1 13855:1 13880:1 13898:2 13907:2 13908:1 13917:1 13920:1 13924:4 13926:1 13927:1 13935:1 13937:1 13951:2 13952:1 13956:1 13970:1 13971:1 13972:1 13985:1 13989:1 14009:2 14035:1 14051:1 14070:1 14076:1 14087:1 14091:1 14093:1 14099:1 14106:4 14126:1 14135:1 14142:1 14145:1 14154:2 14158:1 14183:1 14197:1 14225:1 14227:4 14255:1 14271:1 14368:1 14370:1 14378:1 14385:1 14401:2 14437:3 14443:3 14445:1 14447:1 14450:1 14451:1 14470:1 14475:1 14496:2 14505:1 14522:1 14545:2 14546:1 14551:3 14566:1 14577:1 14588:1 14592:2 14596:1 14601:1 14624:1 14633:1 14662:1 14665:1 14667:1 14671:1 14678:1 14710:1 14756:2 14760:3 14761:3 14766:1 14792:4 14793:1 14796:1 14811:1 14826:4 14828:1 14832:1 14835:1 14840:1 14855:1 14867:1 14870:1 14877:1 14887:3 14894:2 14898:2 14906:2 14909:1 14942:1 14951:2 14970:1 14978:1 14992:1 15006:1 15009:1 15020:1 15021:1 15033:3 15036:1 15058:8 15063:8 15067:1 15073:1 15099:2 15112:1 15113:2 15118:2 15131:3 15134:1 15154:1 15165:1 15190:2 15193:1 15194:1 15201:4 15210:3 15221:1 15222:1 15224:2 15230:1 15232:2 15234:1 15238:1 15239:4 15243:2 15244:6 15245:1 15250:2 15254:1 15255:1 15263:1 15264:5 15269:4 15302:1 15337:1 15345:1 15347:2 15356:2 15361:2 15366:4 15375:1 15388:2 15401:1 15403:1 15421:2 15425:2 15442:1 15446:2 15461:1 15465:1 15472:1 15478:1 15488:1 15496:2 15502:8 15513:2 15529:2 15538:1 15540:2 15554:1 15557:1 15566:18 15587:1 15596:5 15597:1 15599:1 15620:2 15637:52 15665:3 15669:1 15697:1 15731:1 15733:1 15734:2 15758:1 15763:2 15765:1 15766:2 15773:2 15774:4 15776:1 15780:2 15784:1 15797:1 15810:1 15812:1 15815:1 15831:1 15832:1 15833:1 15855:1 15857:1 15876:1 15896:1 15902:5 15919:1 15934:2 15938:1 15953:1 15961:2 15969:1 15974:1 15988:1 16026:1 16035:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16107:2 16108:1 16133:1 16137:1 16146:2 16151:4 16153:1 16156:1 16165:1 16167:2 16168:3 16187:3 16199:1 16210:1 16215:1 16217:2 16219:1 16220:1 16228:1 16230:1 16237:1 16249:1 16255:10 16262:1 16264:1 16289:2 16300:2 16310:1 16311:1 16338:1 16343:1 16348:1 16365:1 16366:2 16369:3 16373:1 16375:2 16378:1 16380:1 16390:1 16395:1 16407:1 16416:1 16421:1 16426:2 16427:2 16446:2 16453:1 16459:1 16472:1 16492:3 16501:1 16517:1 16558:1 16569:2 16571:1 16582:1 16588:2 16601:1 16608:1 16609:1 16617:2 16623:2 16630:2 16646:1 16649:1 16652:1 16654:3 16658:1 16666:1 16674:1 16676:1 16683:3 16690:1 16704:1 16705:1 16718:1 16721:1 16726:1 16744:2 16766:2 16771:1 16777:1 16796:4 16845:1 16847:1 16866:1 16876:1 16877:1 16879:1 16896:5 16899:1 16902:1 16904:1 16911:1 16915:2 16920:1 16921:1 16934:1 16936:2 16940:2 16949:1 16953:1 16954:1 16964:2 16982:1 16987:1 16990:1 16993:1 17010:1 17018:2 17019:2 17055:1 17058:1 17061:1 17077:1 17082:1 17098:1 17103:2 17113:2 17117:1 17128:1 17130:1 17142:2 17187:2 17194:1 17196:2 17199:2 17201:1 17219:1 17220:9 17223:2 17235:1 17244:1 17248:1 17275:1 17285:1 17292:1 17294:1 17310:1 17311:2 17317:3 17334:2 17338:2 17341:1 17354:1 17363:1 17369:1 17392:1 17396:3 17403:2 17404:4 17417:1 17448:1 17479:1 17481:1 17501:1 17513:1 17529:3 17531:1 17540:1 17568:1 17571:1 17578:1 17587:1 17595:1 17599:3 17609:2 17616:1 17640:1 17657:1 17661:1 17666:1 17667:3 17714:2 17723:1 17752:1 17754:4 17760:1 17774:4 17779:1 17782:1 17785:3 17805:1 17806:1 17811:1 17821:1 17823:2 17828:1 17850:1 17856:1 17874:1 17912:10 17916:1 17923:1 17930:1 17946:1 17949:1 17961:1 17968:1 17970:1 17978:1 17984:2 17998:1 18003:1 18010:1 18013:1 18027:1 18031:5 18035:1 18037:2 18038:1 18052:3 18057:1 18065:2 18066:1 18095:1 18101:3064 18105:1 18118:4 18123:2 18149:1 18157:1 18163:1 18171:1 18178:3 18179:1 18188:1 18215:3 18226:1 18234:2 18245:2 18262:1 18267:1 18271:4 18272:2 18298:3 18306:1 18309:1 18311:3 18314:1 18315:1 18331:1 18346:1 18361:1 18362:1 18366:1 18381:1 18408:1 18410:4 18434:1 18439:1 18462:2 18472:1 18481:1 18491:1 18493:1 18505:1 18512:1 18514:1 18515:1 18557:1 18567:1 18569:2 18572:1 18584:4 18599:1 18601:1 18607:1 18631:1 18667:1 18669:1 18677:1 18679:3 18731:1 18761:1 18780:1 18786:2 18796:1 18799:2 18801:1 18804:2 18813:4 18825:2 18829:1 18830:3 18834:1 18847:1 18859:14 18877:1 18878:1 18880:2 18881:1 18883:15 18892:1 18910:1 18911:4 18914:1 18936:2 18947:1 18950:4 18968:1 18972:2 18976:1 18978:4 18980:2 18983:1 18987:1 18997:2 18998:1 19000:1 19005:1 19028:1 19034:3 19039:1 19055:1 19067:3 19099:1 19103:1 19106:1 19148:1 19153:1 19176:1 19179:1 19187:1 19206:1 19209:10 19212:1 19220:1 19231:3 19253:1 19256:1 19279:1 19291:1 19299:1 19305:1 19307:6 19326:1 19329:1 19347:2 19357:1 19359:1 19360:1 19383:1 19390:1 19391:1 19394:1 19399:1 19401:1 19402:1 19409:1 19436:1 19459:4 19464:1 19470:1 19472:1 19488:2 19489:1 19514:1 19523:1 19525:1 19539:1 19543:2 19545:4 19565:2 19569:1 19574:2 19582:2 19584:1 19591:7 19612:1 19638:1 19644:1 19663:11 19669:1 19677:2 19679:2 19694:1 19695:1 19706:1 19707:11 19724:1 19747:1 19756:1 19774:1 19786:1 19818:1 19822:1 19833:2 19853:4 19854:1 19856:2 19865:1 19870:1 19900:2 19910:1 19918:1 19945:5 19955:1 19957:3 19968:1 19979:1 19986:1 19998:1 20006:1 20022:1 20024:1 20044:1 20078:2 20086:1 20095:1 20099:1 20109:1 20117:1 20120:2 20129:1 20143:1 20145:1 20148:1 20169:1 20193:1 20210:3 20217:1 20227:2 20230:1 20231:1 20232:1 20236:1 20240:1 20245:11 20248:1 20252:1 20257:3 20260:2 20261:1 20279:1 20285:2 20289:5 20299:1 20322:4 20325:1 20327:1 20335:1 20352:1 20364:2 20366:1 20375:2 20378:1 20396:2 20401:1 20402:1 20413:1 20422:7 20429:1 20432:2 20438:1 20453:1 20490:1 20496:1 20502:1 20505:1 20507:1 20524:2 20528:1 20531:1 20533:1 20538:1 20546:3 20561:1 20567:1 20569:1 20572:1 20583:1 20585:1 20620:1 20628:1 20647:1 20672:1 20679:1 20712:1 20716:1 20718:4 20720:2 20723:3 20733:4 20741:1 20743:1 20745:1 20773:1 20782:1 20786:1 20787:1 20798:1 20809:1 20810:1 20822:1 20827:1 20828:1 20838:1 20840:6 20843:3 20856:2 20860:1 20870:1 20874:1 20888:1 20926:1 20927:2 20934:1 20941:1 20951:1 20952:1 20953:1 20971:1 20973:3 20976:12 20978:1 20992:1 20998:1 20999:2 21003:1 21014:1 21019:1 21024:1 21026:1 21037:5 21053:1 21080:2 21084:2 21086:1 21090:1 21096:4 21108:1 21120:1 21125:1 21140:1 21141:1 21142:4 21150:2 21156:3 21161:1 21209:1 21231:3 21237:1 21238:1 21239:8 21241:1 21245:2 21252:2 21254:1 21255:1 21266:2 21267:1 21269:1 21272:1 21279:2 21282:2 21283:1 21291:1 21292:1 21302:1 21306:2 21309:2 21314:1 21334:2 21369:1 21379:5 21380:1 21403:1 21407:1 21412:1 21423:2 21425:1 21435:1 21439:1 21446:4 21457:1 21464:1 21467:1 21474:1 21515:18 21516:2 21518:1 21537:1 21548:1 21556:1 21575:1 21583:1 21594:2 21609:1 21611:1 21613:2 21620:1 21621:1 21623:1 21628:2 21642:2 21644:1 21645:1 21648:8 21664:2 21668:3 21679:2 21704:1 21706:1 21712:1 21715:1 21718:2 21732:1 21735:1 21738:1 21743:1 21745:2 21753:1 21754:1 21766:2 21769:1 21781:9 21794:3 21807:2 21819:1 21828:2 21840:1 21860:2 21873:1 21874:1 21895:1 21929:1 21941:3 21946:1 21949:1 21959:1 21967:1 21989:1 22001:1 22015:1 22021:1 22032:1 22038:1 22041:1 22042:1 22049:12 22051:2 22082:2 22090:1 22099:1 22120:1 22130:2 22132:1 22133:2 22139:1 22154:1 22165:3 22185:1 22188:5 22192:1 22223:1 22225:1 22241:1 22248:1 22264:2 22284:1 22290:1 22295:2 22310:1 22322:1 22329:1 22333:1 22344:1 22346:1 22348:2 22355:2 22374:1 22414:1 22423:1 22424:1 22425:5 22431:1 22432:1 22436:1 22448:1 22452:1 22453:1 22463:1 22466:1 22478:1 22481:2 22496:1 22530:1 22534:2 22548:1 22551:2 22556:1 22564:2 22568:4 22571:1 22572:1 22593:1 22607:1 22619:1 22627:3 22628:2 22634:1 22646:6 22654:1 22657:1 22665:1 22667:1 22670:1 22672:3 22677:2 22681:1 22683:1 22699:2 22706:1 22707:2 22708:1 22748:4 22755:1 22757:20 22759:1 22837:2 22846:1 22847:1 22849:1 22856:1 22872:1 22889:1 22916:2 22922:1 22924:1 22925:1 22937:1 22949:1 22951:1 22957:1 22965:1 22986:1 23000:1 23008:1 23022:1 23024:2 23028:1 23059:1 23062:2 23076:1 23077:2 23104:4 23117:1 23122:1 23126:1 23159:1 23175:1 23177:1 23192:2 23207:3 23215:2 23222:1 23224:1 23227:1 23228:1 23229:2 23246:1 23278:1 23284:1 23300:1 23306:1 23313:1 23328:1 23334:1 23360:1 23362:1 23389:1 23391:1 23396:1 23397:5 23405:1 23412:1 23413:1 23421:3 23434:1 23470:1 23492:1 23510:3 23520:1 23521:1 23558:1 23568:5 23633:2 23643:1 23646:1 23655:1 23656:1 23665:1 23666:2 23667:5 23668:1 23689:1 23697:1 23704:1 23707:2 23712:1 23716:3 23722:2 23752:1 23753:2 23766:2 23780:1 23788:1 23791:2 23802:2 23808:1 23820:1 23841:1 23844:1 23860:1 23867:4 23870:1 23879:3 23883:1 23885:1 23890:1 23899:1 23900:1 23908:1 23921:1 23933:1 23937:1 23954:1 23971:1 23980:1 23982:2 23998:1 24003:1 24006:2 24011:1 24013:1 24020:1 24027:1 24036:1 24040:1 24050:1 24052:1 24057:1 24059:1 24081:1 24083:1 24086:1 24099:1 24106:2 24144:3 24155:5 24179:1 24191:1 24208:1 24214:1 24224:1 24230:2 24231:1 24234:1 24241:1 24242:5 24252:1 24269:2 24274:1 24275:1 24290:1 24306:1 24325:1 24331:1 24339:4 24360:1 24363:1 24367:1 24396:1 24404:2 24406:2 24412:1 24417:1 24420:1 24434:6 24457:1 24473:2 24476:5 24478:1 24484:1 24488:4 24492:1 24533:1 24534:1 24540:1 24567:1 24572:1 24600:1 24614:1 24620:1 24634:1 24636:1 24637:2 24640:1 24641:1 24644:7 24647:3 24653:1 24678:1 24692:2 24694:1 24697:2 24702:1 24718:1 24728:1 24730:6 24731:1 24740:2 24742:1 24751:4 24760:5 24761:1 24772:1 24782:1 24784:1 24789:1 24797:1 24817:2 24838:1 24841:6 24843:1 24847:1 24854:1 24855:1 24873:2 24883:1 24897:2 24915:3 24928:1 24942:4 24946:1 24967:2 24969:2 24990:2 24999:1 25018:1 25051:1 25053:1 25056:1 25061:1 25071:1 25081:1 25092:4 25109:1 25117:1 25131:1 25135:1 25138:2 25140:1 25143:1 25153:1 25157:2 25160:2 25173:1 25175:1 25179:1 25191:1 25194:1 25200:1 25217:2 25219:1 25228:1 25230:2 25235:1 25242:1 25256:6 25261:1 25262:1 25265:1 25268:1 25277:1 25283:1 25286:1 25289:2 25323:2 25326:1 25332:1 25348:1 25360:1 25379:1 25385:1 25387:3 25402:1 25410:10 25414:1 25451:1 25455:1 25478:1 25514:1 25525:1 25530:1 25537:1 25549:3 25555:1 25569:1 25571:2 25586:1 25660:3 25681:5 25683:2 25684:1 25688:1 25695:1 25696:2 25698:1 25699:4 25700:7 25703:1 25705:1 25722:1 25742:2 25751:2 25773:1 25782:1 25787:1 25793:3 25801:1 25805:1 25826:3 25844:1 25852:1 25861:2 25867:1 25879:1 25910:1 25916:1 25955:1 25957:1 25967:1 26008:1 26023:1 26032:1 26042:1 26051:1 26067:1 26069:2 26075:1 26104:2 26110:2 26120:2 26137:1 26151:1 26158:1 26201:1 26216:1 26218:2 26228:2 26272:1 26281:1 26285:2 26289:4 26299:1 26301:1 26303:9 26331:2 26332:1 26389:1 26397:20 26398:1 26400:3 26401:1 26410:1 26420:1 26430:3 26450:1 26454:1 26503:2 26505:3 26509:3 26510:2 26544:2 26546:1 26548:1 26549:1 26555:2 26557:2 26559:1 26563:1 26569:1 26570:1 26576:1 26581:1 26588:3 26612:2 26624:1 26641:1 26651:1 26664:2 26666:1 26686:1 26689:1 26690:1 26711:1 26715:1 26725:1 26765:1 26766:1 26789:1 26792:1 26794:1 26797:1 26807:3 26808:1 26810:2 26829:2 26843:1 26869:7 26874:1 26879:1 26889:1 26894:1 26919:1 26954:3 26963:3 26977:1 26986:1 26989:1 26993:1 27017:1 27025:1 27035:1 27038:3 27044:1 27071:2 27080:1 27108:4 27111:4 27134:1 27135:1 27143:1 27145:1 27157:1 27171:1 27177:1 27213:1 27216:1 27217:1 27228:4 27231:1 27239:1 27248:1 27256:3 27259:1 27271:1 27279:2 27280:24 27281:2 27283:2 27287:4 27289:1 27290:1 27300:1 27315:1 27316:13 27326:1 27329:1 27337:1 27364:1 27368:2 27372:1 27373:2 27381:1 27383:1 27394:1 27401:1 27405:4 27414:4 27419:1 27447:3 27448:1 27452:2 27458:1 27462:1 27465:1 27492:1 27495:1 27496:1 27519:1 27549:1 27558:2 27561:1 27590:1 27591:1 27594:1 27611:1 27619:1 27620:1 27627:1 27629:1 27633:2 27636:1 27638:4 27641:1 27644:1 27661:2 27666:1 27676:1 27692:8 27695:1 27697:1 27705:3 27743:1 27745:1 27749:1 27772:3 27773:8 27775:1 27776:1 27780:1 27783:1 27799:1 27804:1 27805:2 27814:1 27818:1 27828:1 27834:1 27835:1 27842:1 27864:3 27879:1 27914:3 27920:1 27922:1 27926:2 27951:2 27961:1 27963:4 27968:1 27971:1 27977:5 27984:1 27994:2 28018:1 28026:1 28046:1 28053:1 28067:1 28081:1 28106:3 28108:1 28122:1 28138:4 28169:2 28172:1 28176:1 28185:1 28210:1 28217:2 28222:1 28229:3 28237:1 28265:1 28283:1 28292:3 28297:1 28300:1 28314:1 28326:2 28336:1 28341:1 28343:6 28344:1 28352:1 28364:2 28380:2 28391:1 28395:2 28397:1 28420:1 28430:4 28437:2 28442:1 28496:1 28503:1 28504:1 28507:1 28509:1 28511:3 28516:1 28523:1 28530:1 28554:1 28560:2 28566:1 28569:1 28574:1 28575:1 28576:1 28579:1 28587:2 28618:1 28629:1 16 6:1 26:1 27:1 29:1 44:1 69:1 78:1 83:4 100:1 106:1 137:1 147:1 153:1 162:1 165:1 172:1 175:2 176:1 201:1 206:1 211:1 213:1 230:1 235:4 239:1 254:1 283:1 286:1 296:4 300:1 318:1 327:1 336:2 337:2 338:1 364:1 372:1 375:1 382:1 399:1 407:2 418:1 442:3 445:1 449:2 460:1 471:1 478:1 489:2 504:1 507:1 509:1 514:1 523:1 526:2 552:1 553:1 567:5 603:1 614:1 617:2 627:3 634:1 648:2 654:1 661:4 665:1 671:1 676:1 684:1 685:1 688:1 699:1 707:1 713:1 724:1 735:1 747:2 757:2 768:1 772:1 787:1 803:1 805:1 809:1 813:1 824:1 826:1 828:1 843:1 852:1 856:1 872:2 902:1 910:2 913:1 915:1 924:2 933:1 934:2 939:3 940:1 941:3 942:6 943:2 944:2 947:1 966:1 978:1 983:1 985:6 987:2 1010:1 1015:2 1020:1 1052:1 1059:2 1062:1 1081:1 1086:1 1089:1 1108:1 1116:1 1125:1 1170:1 1171:3 1174:1 1175:1 1184:1 1187:1 1192:2 1200:1 1201:4 1217:2 1222:1 1227:1 1237:1 1239:3 1259:1 1263:1 1267:1 1269:2 1275:4 1278:1 1279:1 1289:4 1290:2 1292:1 1302:3 1306:1 1316:1 1319:1 1321:1 1331:1 1335:3 1346:2 1356:1 1375:2 1379:1 1404:1 1413:1 1415:2 1438:3 1440:1 1446:1 1448:1 1451:1 1453:2 1464:1 1475:1 1484:6 1497:1 1501:6 1513:2 1521:2 1522:1 1525:3 1531:1 1535:1 1541:1 1544:4 1560:1 1569:1 1572:5 1583:1 1587:1 1591:1 1594:1 1596:1 1601:2 1603:1 1621:2 1628:1 1632:4 1637:4 1640:2 1641:1 1653:1 1654:1 1657:1 1672:4 1675:3 1678:1 1683:1 1684:1 1692:1 1698:1 1722:1 1731:1 1733:1 1743:2 1745:1 1747:1 1751:1 1758:3 1766:2 1784:1 1789:1 1790:1 1809:1 1810:1 1820:1 1824:1 1825:1 1831:1 1837:1 1844:1 1849:1 1853:1 1860:1 1861:1 1877:1 1882:1 1883:1 1884:1 1889:1 1895:1 1901:1 1903:2 1904:4 1908:1 1910:1 1912:1 1914:1 1921:1 1929:1 1930:3 1931:1 1950:1 1953:1 1978:1 1986:1 2001:1 2006:1 2015:2 2017:2 2019:1 2020:2 2022:1 2023:3 2044:1 2049:1 2054:2 2072:1 2074:3 2075:1 2076:2 2101:1 2108:4 2126:1 2133:1 2156:1 2158:1 2164:1 2170:1 2174:3 2188:1 2227:1 2228:1 2229:1 2230:2 2232:4 2237:1 2238:5 2240:1 2241:1 2244:5 2245:1 2246:4 2248:1 2251:1 2256:5 2259:3 2260:6 2272:1 2273:1 2277:1 2290:1 2303:1 2308:1 2321:1 2327:2 2331:1 2334:1 2336:2 2346:1 2354:1 2359:1 2361:1 2374:1 2413:3 2423:1 2437:1 2448:2 2474:1 2483:1 2486:1 2488:1 2495:1 2526:1 2531:1 2556:1 2582:2 2587:1 2595:4 2596:1 2602:1 2607:3 2615:1 2622:2 2623:1 2630:1 2633:1 2635:2 2637:9 2651:1 2653:1 2662:2 2668:1 2670:1 2674:1 2677:1 2684:3 2689:1 2690:1 2713:2 2721:2 2731:2 2738:1 2739:1 2741:5 2747:2 2755:1 2792:4 2795:1 2798:1 2799:1 2804:1 2818:11 2828:7 2857:2 2869:1 2885:27 2899:1 2903:1 2907:1 2918:1 2919:1 2920:1 2936:1 2956:1 2962:2 2981:1 2986:2 2987:1 2989:1 3037:3 3041:1 3053:1 3059:1 3062:1 3070:1 3085:1 3105:1 3106:1 3107:1 3116:1 3117:1 3129:2 3133:4 3151:10 3153:2 3168:1 3173:1 3181:1 3191:1 3208:1 3218:1 3219:7 3254:1 3281:1 3283:1 3293:1 3303:1 3319:2 3327:1 3330:1 3340:1 3348:1 3361:3 3369:2 3373:1 3377:1 3388:4 3417:1 3426:1 3427:3 3430:1 3441:1 3442:1 3453:3 3491:1 3502:1 3505:1 3511:1 3512:3 3513:1 3519:2 3521:1 3522:1 3543:1 3550:1 3569:1 3588:1 3598:1 3603:2 3606:3 3608:1 3625:1 3643:1 3651:2 3652:35 3659:1 3677:2 3678:1 3679:7 3681:1 3686:1 3687:2 3688:20 3689:1 3691:4 3697:2 3706:3 3709:1 3718:2 3721:3 3724:2 3725:2 3740:2 3742:1 3743:1 3755:1 3769:2 3776:1 3777:3 3781:1 3783:1 3788:1 3808:1 3811:2 3813:1 3815:1 3816:3 3826:2 3838:2 3840:1 3844:1 3853:1 3866:2 3873:1 3889:1 3891:1 3900:1 3901:1 3904:1 3905:1 3911:1 3915:2 3918:1 3920:1 3925:4 3939:4 3953:1 3985:1 3993:1 3995:1 4031:1 4036:1 4052:1 4056:3 4062:1 4086:1 4090:1 4101:2 4106:1 4107:2 4109:1 4110:1 4137:1 4143:1 4153:1 4156:1 4169:3 4199:1 4209:1 4221:1 4234:9 4250:1 4277:1 4302:2 4306:1 4313:5 4322:1 4325:2 4335:2 4347:6 4351:1 4372:1 4380:1 4383:1 4386:1 4393:1 4435:1 4448:1 4449:2 4474:1 4484:1 4489:1 4499:2 4515:2 4519:1 4522:2 4533:1 4543:4 4554:1 4563:3 4584:2 4585:1 4586:1 4609:1 4653:1 4654:1 4659:1 4660:2 4671:1 4685:1 4689:1 4693:2 4701:2 4742:1 4754:1 4779:1 4782:1 4785:1 4792:14 4793:2 4804:1 4824:2 4848:1 4850:2 4860:1 4870:1 4893:3 4902:3 4903:1 4905:4 4925:2 4926:2 4927:6 4928:1 4929:1 4930:1 4933:2 4935:1 4939:1 4940:19 4941:1 4943:1 4948:2 4949:3 4956:2 4972:1 4975:3 5031:2 5045:1 5053:1 5058:1 5120:1 5144:3 5145:3 5152:5 5181:1 5190:1 5195:1 5209:1 5213:2 5214:19 5227:1 5242:1 5250:3 5252:1 5280:2 5317:1 5319:1 5330:1 5355:1 5359:1 5361:2 5370:1 5375:1 5379:1 5386:1 5388:1 5390:2 5392:1 5431:1 5433:1 5437:1 5446:1 5447:1 5448:2 5465:1 5474:1 5479:1 5489:2 5494:1 5497:1 5502:1 5503:2 5521:1 5523:1 5525:1 5561:1 5562:1 5565:3 5588:2 5595:1 5604:1 5614:1 5618:1 5620:1 5624:1 5631:1 5635:1 5643:1 5646:1 5653:1 5654:1 5656:1 5659:1 5660:1 5662:1 5675:1 5679:1 5683:1 5697:1 5701:1 5702:1 5703:1 5707:1 5720:1 5731:1 5766:3 5791:1 5794:3 5796:1 5803:1 5808:1 5846:1 5860:2 5903:1 5924:1 5931:1 5932:7 5941:1 5945:2 5971:2 5976:1 5980:1 6003:1 6020:1 6024:1 6026:1 6034:1 6042:2 6043:1 6046:1 6047:1 6057:1 6079:4 6086:1 6087:2 6088:2 6126:1 6127:2 6129:1 6136:1 6151:5 6153:1 6165:1 6166:1 6168:1 6177:1 6181:1 6184:1 6194:1 6239:3 6242:1 6243:1 6244:1 6247:1 6248:1 6250:2 6251:2 6254:2 6255:3 6256:4 6262:2 6264:7 6265:1 6266:1 6267:2 6275:1 6298:1 6325:3 6329:1 6357:1 6358:1 6392:1 6398:1 6404:1 6410:2 6413:1 6424:1 6450:1 6454:1 6463:1 6494:1 6507:2 6508:1 6513:2 6523:1 6533:5 6535:1 6539:3 6547:1 6550:1 6557:1 6558:1 6566:2 6580:1 6582:3 6586:2 6598:2 6603:1 6604:1 6606:1 6615:1 6639:1 6657:1 6661:1 6670:1 6677:2 6679:1 6684:1 6685:2 6687:1 6695:3 6699:1 6704:3 6711:3 6718:1 6731:1 6739:2 6745:1 6780:1 6783:2 6789:1 6791:1 6795:1 6799:2 6803:1 6819:2 6835:1 6857:1 6860:1 6876:2 6893:1 6896:2 6909:1 6930:1 6954:2 6970:1 6974:1 6982:1 6996:1 7000:5 7010:2 7016:1 7027:1 7036:1 7049:1 7080:1 7126:1 7134:1 7153:1 7180:1 7196:1 7204:1 7213:1 7221:4 7267:1 7269:1 7275:3 7290:2 7307:4 7343:2 7360:2 7378:1 7387:1 7406:1 7411:1 7419:1 7420:1 7430:1 7433:1 7437:4 7446:1 7466:1 7477:4 7478:4 7479:2 7496:1 7499:2 7502:1 7505:1 7512:1 7530:1 7531:2 7544:1 7547:1 7548:38 7549:1 7550:1 7555:2 7567:11 7568:23 7578:1 7579:1 7582:1 7586:1 7588:1 7590:1 7615:1 7616:5 7638:1 7653:1 7668:1 7672:1 7689:2 7705:1 7742:3 7746:5 7750:1 7780:1 7786:1 7788:5 7802:1 7805:1 7826:1 7851:1 7858:1 7862:1 7910:3 7921:1 7926:1 7928:7 7936:2 7942:1 7951:1 7960:2 7973:1 7977:1 7983:1 7998:1 7999:1 8006:17 8026:1 8031:1 8037:2 8039:1 8049:1 8063:2 8092:1 8098:1 8107:2 8116:1 8127:2 8140:1 8154:1 8167:1 8170:3 8176:4 8181:2 8194:2 8196:1 8199:3 8213:2 8214:1 8215:1 8220:1 8231:1 8233:2 8241:2 8251:1 8260:2 8263:2 8269:1 8274:1 8276:1 8277:1 8294:2 8308:1 8319:3 8327:1 8336:1 8342:1 8345:1 8349:1 8354:1 8357:2 8358:1 8359:3 8360:2 8361:2 8362:4 8365:1 8370:1 8373:2 8375:2 8381:3 8396:1 8402:1 8412:2 8420:1 8421:1 8427:1 8428:1 8440:1 8450:1 8455:2 8462:1 8475:2 8492:1 8496:5 8517:3 8526:1 8528:1 8531:2 8550:1 8556:1 8583:2 8595:1 8596:1 8603:1 8609:2 8616:3 8617:1 8621:1 8637:1 8640:1 8667:4 8668:2 8675:4 8676:1 8677:1 8678:3 8680:3 8687:2 8688:2 8706:2 8707:1 8709:2 8711:4 8725:1 8727:1 8743:2 8748:1 8763:1 8798:1 8813:1 8827:2 8835:1 8838:1 8853:2 8854:2 8863:1 8868:1 8880:1 8882:1 8895:1 8903:1 8918:1 8919:1 8926:1 8935:1 8957:1 8962:3 8978:1 8991:1 8994:1 8995:3 9008:1 9015:7 9035:2 9039:3 9042:1 9049:1 9055:1 9071:1 9078:1 9088:3 9091:1 9110:1 9124:1 9156:1 9160:1 9201:1 9219:1 9240:1 9243:1 9246:3 9252:2 9253:1 9263:1 9264:2 9278:1 9292:1 9294:1 9298:2 9322:1 9325:2 9328:1 9337:1 9350:1 9375:19 9383:1 9399:1 9408:2 9420:4 9428:2 9434:1 9437:1 9448:1 9455:1 9459:1 9467:2 9484:1 9511:14 9529:1 9535:2 9550:1 9569:5 9575:1 9580:1 9586:3 9587:1 9590:1 9603:1 9614:1 9620:1 9622:1 9651:2 9655:3 9656:1 9690:6 9696:2 9697:4 9698:2 9706:2 9707:1 9717:1 9726:2 9730:2 9733:1 9739:2 9744:1 9748:3 9751:1 9753:1 9754:1 9761:1 9770:1 9780:3 9785:3 9795:1 9797:2 9809:1 9817:2 9830:1 9848:1 9853:3 9855:1 9873:10 9875:1 9876:6 9883:1 9885:1 9909:1 9967:1 9971:2 9976:1 9986:1 9998:1 10018:3 10023:1 10035:4 10055:1 10081:1 10084:1 10103:1 10121:1 10137:2 10149:4 10155:1 10159:1 10163:1 10173:2 10181:1 10191:1 10209:2 10215:4 10227:1 10230:1 10251:1 10258:2 10276:2 10278:2 10281:2 10288:1 10297:6 10311:2 10312:4 10313:1 10314:3 10320:1 10328:1 10330:1 10334:1 10355:1 10356:3 10369:1 10374:1 10383:4 10394:1 10396:2 10401:1 10405:2 10413:7 10417:1 10463:1 10464:1 10470:1 10475:1 10495:2 10498:1 10499:2 10503:1 10509:1 10510:1 10524:2 10534:1 10545:1 10549:1 10588:1 10591:1 10595:1 10604:1 10620:2 10621:1 10635:7 10649:3 10650:7 10663:2 10666:1 10670:1 10672:1 10679:1 10692:1 10699:4 10702:1 10727:2 10729:1 10730:1 10740:1 10742:2 10747:3 10767:3 10779:3 10811:1 10839:1 10841:1 10843:2 10846:1 10860:1 10892:1 10894:1 10899:1 10900:1 10901:1 10904:1 10905:4 10906:1 10907:1 10926:1 10931:1 10941:1 10945:2 10961:1 10965:1 10970:1 10971:1 10996:2 11019:1 11021:3 11032:1 11039:2 11047:1 11054:1 11073:1 11080:1 11081:3 11112:1 11116:3 11118:5 11120:1 11122:1 11147:1 11169:1 11172:1 11180:1 11186:2 11198:1 11218:3 11232:1 11238:1 11242:1 11245:1 11248:4 11261:3 11263:1 11277:2 11278:3 11280:2 11286:1 11296:1 11299:1 11315:3 11322:1 11328:3 11335:2 11336:7 11337:1 11348:1 11349:1 11354:1 11355:1 11358:1 11359:1 11367:1 11368:1 11370:1 11372:5 11373:1 11374:1 11381:1 11383:5 11392:1 11394:1 11399:1 11401:1 11406:7 11422:2 11431:5 11435:1 11441:2 11446:1 11455:1 11475:1 11476:1 11486:4 11492:1 11496:1 11498:1 11499:2 11530:1 11534:1 11544:3 11557:1 11563:1 11566:2 11575:1 11615:2 11616:2 11633:2 11649:2 11651:1 11683:1 11691:5 11734:2 11737:2 11749:1 11754:1 11761:1 11764:1 11765:1 11766:1 11768:1 11786:3 11787:3 11788:19 11797:6 11806:1 11812:1 11813:2 11823:1 11837:2 11859:1 11879:1 11904:1 11930:1 11938:9 11939:2 11955:1 11958:3 11959:1 11963:1 11984:1 12016:3 12019:1 12040:1 12047:1 12054:2 12058:1 12064:1 12069:1 12081:1 12115:2 12134:3 12148:1 12187:1 12189:3 12196:1 12198:1 12202:1 12203:1 12218:1 12257:1 12258:1 12264:1 12275:1 12323:6 12336:1 12339:1 12341:1 12345:1 12348:1 12357:1 12369:2 12370:4 12391:1 12394:2 12420:1 12451:1 12456:2 12485:1 12505:1 12510:2 12524:1 12525:2 12550:1 12566:2 12599:1 12652:1 12671:5 12691:1 12692:2 12698:1 12702:1 12710:2 12712:1 12715:1 12719:1 12722:1 12733:1 12741:1 12744:1 12756:2 12765:1 12768:1 12769:1 12771:2 12776:1 12792:1 12798:1 12799:2 12829:1 12834:1 12835:2 12837:1 12870:2 12872:2 12874:1 12875:1 12881:1 12882:2 12883:1 12884:6 12889:4 12891:1 12892:1 12900:1 12904:3 12915:3 12919:1 12924:1 12928:3 12934:1 12954:7 12956:1 12960:1 12964:1 12966:1 12970:2 12979:1 12980:2 12997:2 13019:2 13033:2 13034:1 13049:4 13052:1 13053:1 13062:1 13065:1 13071:1 13084:2 13095:3 13114:1 13119:2 13122:6 13131:1 13136:1 13148:2 13149:2 13150:2 13151:1 13160:1 13174:1 13177:1 13178:2 13190:1 13201:2 13221:1 13237:2 13243:1 13249:1 13250:1 13251:2 13252:1 13254:1 13257:1 13270:1 13277:1 13278:1 13283:1 13296:1 13301:1 13302:1 13310:1 13313:1 13314:1 13318:2 13319:1 13330:2 13334:1 13335:1 13352:1 13365:7 13370:2 13371:1 13377:1 13380:1 13411:1 13416:1 13418:1 13434:1 13435:1 13436:2 13439:2 13457:1 13458:2 13461:2 13462:1 13467:4 13493:1 13510:1 13515:1 13518:1 13529:2 13530:3 13535:2 13536:6 13543:1 13560:1 13565:3 13578:1 13589:2 13610:2 13612:1 13615:1 13616:1 13620:1 13628:1 13629:2 13633:2 13666:1 13679:1 13722:1 13723:1 13728:1 13735:2 13750:1 13769:1 13782:1 13795:1 13829:1 13854:1 13855:1 13880:1 13894:1 13898:2 13907:2 13908:1 13917:1 13920:1 13924:4 13926:1 13927:1 13935:1 13937:1 13951:2 13952:1 13956:1 13970:1 13971:1 13972:1 13985:1 13989:1 14009:2 14035:1 14051:1 14065:1 14070:1 14076:1 14087:1 14091:1 14093:1 14099:1 14106:4 14126:1 14135:1 14142:1 14145:1 14154:2 14158:1 14183:1 14197:1 14225:1 14227:4 14238:1 14255:1 14271:1 14368:1 14370:1 14378:1 14385:1 14401:2 14437:3 14443:3 14445:1 14447:1 14450:1 14451:1 14470:1 14475:1 14496:2 14505:1 14522:1 14541:1 14545:2 14546:1 14551:3 14566:1 14577:1 14588:1 14592:2 14596:1 14601:1 14624:1 14633:1 14662:1 14665:1 14667:1 14671:1 14678:1 14709:1 14710:1 14756:2 14760:3 14761:3 14766:1 14792:4 14793:1 14796:1 14811:1 14826:4 14828:1 14832:1 14835:1 14840:1 14855:1 14867:1 14870:1 14877:1 14887:3 14894:2 14898:2 14906:2 14909:1 14942:1 14951:2 14970:1 14978:1 14992:1 15006:1 15009:1 15020:1 15021:1 15033:3 15036:1 15058:8 15063:8 15067:1 15073:1 15099:2 15112:1 15113:2 15118:2 15131:3 15134:1 15154:1 15165:1 15171:1 15190:3 15193:1 15194:1 15201:4 15210:3 15221:1 15222:1 15224:2 15230:1 15232:2 15234:1 15238:1 15239:4 15243:2 15244:6 15245:1 15250:2 15254:1 15255:1 15263:1 15264:5 15269:4 15300:1 15302:1 15337:1 15345:1 15347:2 15356:2 15361:2 15366:4 15375:1 15388:2 15401:1 15403:1 15421:2 15425:2 15442:1 15446:2 15461:1 15465:1 15472:1 15478:1 15488:1 15496:2 15502:8 15513:2 15529:2 15538:1 15540:2 15554:1 15557:1 15566:19 15587:1 15596:5 15597:1 15599:1 15620:2 15637:54 15665:3 15669:1 15697:1 15731:1 15733:1 15734:2 15756:1 15758:1 15763:2 15765:1 15766:2 15773:2 15774:4 15776:1 15780:2 15784:1 15797:1 15810:1 15812:1 15815:1 15822:1 15831:1 15832:1 15833:1 15855:1 15857:1 15876:1 15896:1 15902:5 15919:1 15934:2 15938:1 15953:1 15961:2 15969:1 15974:1 15988:1 16026:1 16035:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16107:2 16108:1 16116:1 16133:1 16137:1 16146:2 16151:4 16153:1 16156:1 16165:1 16167:2 16168:3 16187:3 16190:1 16199:1 16210:1 16215:1 16217:2 16219:1 16220:1 16228:1 16230:1 16237:1 16249:1 16255:11 16262:1 16264:1 16289:2 16300:2 16310:1 16311:1 16338:1 16343:1 16348:1 16365:1 16366:2 16369:3 16373:1 16375:2 16378:1 16380:1 16390:1 16395:1 16407:1 16416:1 16421:1 16426:2 16427:2 16446:2 16450:2 16453:1 16459:1 16472:1 16486:1 16491:1 16492:3 16501:1 16517:1 16558:1 16569:2 16571:1 16582:1 16588:2 16590:1 16601:1 16608:1 16609:1 16617:2 16623:3 16630:2 16646:1 16649:1 16652:1 16654:3 16658:1 16666:1 16674:1 16676:1 16683:3 16690:1 16704:1 16705:1 16718:1 16721:1 16726:1 16744:2 16766:2 16771:1 16777:1 16796:4 16845:1 16847:1 16860:1 16866:1 16876:1 16877:1 16879:1 16896:5 16899:1 16902:1 16904:1 16911:1 16915:2 16920:1 16921:1 16934:1 16936:2 16940:2 16949:1 16953:1 16954:1 16964:2 16982:1 16987:1 16990:1 16993:1 17010:1 17018:2 17019:2 17055:1 17058:1 17061:1 17077:1 17082:1 17098:1 17103:2 17113:2 17117:1 17128:1 17130:1 17142:2 17187:2 17194:1 17196:2 17199:2 17201:1 17219:1 17220:9 17223:2 17235:1 17244:1 17248:2 17275:1 17285:1 17292:1 17294:1 17310:1 17311:2 17317:3 17334:2 17338:2 17341:1 17354:1 17361:1 17363:1 17369:1 17392:1 17396:3 17403:2 17404:4 17417:1 17448:1 17479:1 17481:1 17501:1 17513:1 17529:3 17531:1 17540:1 17568:1 17571:1 17578:1 17587:1 17595:1 17599:3 17609:2 17616:1 17640:1 17657:1 17661:1 17666:1 17667:3 17673:1 17714:2 17718:1 17723:1 17752:1 17754:4 17760:1 17774:4 17779:1 17782:1 17785:3 17805:1 17806:1 17811:1 17821:1 17823:2 17828:1 17850:1 17856:1 17874:1 17912:10 17916:1 17923:1 17930:1 17946:1 17949:1 17961:1 17968:1 17970:1 17978:1 17984:2 17986:1 17998:1 18003:1 18010:1 18013:1 18027:1 18031:5 18035:1 18037:2 18038:1 18052:3 18057:1 18065:2 18066:1 18095:1 18101:3197 18105:1 18118:4 18123:2 18149:1 18157:1 18163:1 18171:1 18178:3 18179:1 18188:1 18215:3 18226:1 18234:2 18245:2 18262:1 18267:1 18271:4 18272:2 18298:3 18306:1 18309:1 18311:3 18314:1 18315:1 18331:1 18346:1 18361:1 18362:1 18366:1 18381:1 18408:1 18410:4 18429:1 18434:1 18439:1 18444:1 18462:2 18472:1 18481:1 18491:1 18493:1 18505:1 18512:1 18514:1 18515:1 18557:1 18567:1 18569:2 18572:1 18584:4 18599:1 18601:1 18607:1 18618:1 18631:1 18667:1 18669:1 18677:1 18679:3 18731:1 18761:1 18780:1 18786:2 18796:1 18799:2 18801:1 18804:2 18813:4 18825:2 18829:1 18830:3 18834:1 18847:1 18859:14 18877:1 18878:1 18880:2 18881:1 18883:15 18892:2 18910:1 18911:4 18912:1 18914:1 18936:2 18947:1 18950:4 18968:1 18972:2 18976:1 18978:5 18980:2 18983:1 18987:1 18997:2 18998:1 19000:1 19005:1 19028:1 19034:3 19039:1 19055:1 19067:3 19099:1 19103:1 19106:1 19148:1 19153:1 19176:1 19179:1 19187:1 19206:1 19209:11 19212:1 19220:1 19231:3 19253:1 19256:1 19279:1 19291:1 19299:1 19305:1 19307:6 19326:1 19329:1 19347:2 19357:1 19359:1 19360:1 19383:1 19390:1 19391:1 19394:1 19399:1 19401:1 19402:1 19409:1 19436:1 19459:4 19464:1 19470:1 19472:1 19488:3 19489:1 19514:2 19523:1 19525:1 19539:1 19543:2 19545:4 19565:2 19569:1 19574:2 19582:2 19584:1 19591:7 19612:1 19638:1 19644:1 19663:12 19669:1 19677:2 19679:2 19694:1 19695:1 19706:1 19707:13 19724:1 19747:1 19756:1 19774:1 19786:1 19818:1 19822:1 19833:2 19853:4 19854:1 19856:2 19865:1 19870:1 19900:2 19910:1 19918:1 19945:5 19955:1 19957:3 19968:1 19979:1 19986:1 19998:1 20006:1 20022:1 20024:1 20044:1 20078:2 20086:1 20095:1 20099:1 20109:1 20117:1 20120:2 20129:1 20143:1 20145:1 20148:1 20169:1 20193:1 20210:3 20217:1 20227:2 20230:1 20231:1 20232:1 20236:1 20240:1 20245:12 20248:1 20252:1 20257:3 20260:3 20261:1 20279:1 20285:2 20289:5 20299:1 20322:4 20325:1 20327:1 20335:1 20352:1 20364:2 20365:1 20366:1 20375:2 20378:1 20396:2 20401:1 20402:1 20413:1 20422:7 20429:1 20432:2 20438:1 20453:1 20490:1 20496:1 20502:1 20505:1 20507:1 20524:2 20528:1 20531:1 20533:1 20538:1 20546:3 20559:1 20561:1 20567:1 20569:1 20572:1 20583:1 20585:1 20620:1 20628:1 20647:1 20672:1 20679:1 20712:1 20716:1 20718:4 20720:2 20723:3 20733:4 20741:1 20743:1 20745:1 20773:1 20782:1 20786:1 20787:1 20798:1 20804:1 20809:1 20810:1 20822:1 20827:1 20828:1 20838:1 20840:6 20843:3 20856:2 20860:1 20870:1 20874:1 20888:1 20926:1 20927:2 20934:1 20941:1 20951:1 20952:1 20953:1 20971:1 20973:3 20976:12 20978:1 20992:1 20998:1 20999:2 21003:1 21014:1 21019:1 21024:1 21026:1 21037:5 21053:1 21080:2 21084:3 21086:1 21090:1 21096:4 21108:1 21120:1 21125:1 21140:1 21141:1 21142:4 21150:2 21156:3 21161:1 21209:1 21231:3 21237:1 21238:1 21239:8 21241:2 21245:2 21252:2 21254:1 21255:1 21266:2 21267:1 21269:1 21272:1 21279:2 21282:2 21283:1 21291:1 21292:1 21293:1 21302:1 21306:2 21309:2 21314:1 21334:2 21369:1 21379:5 21380:1 21403:1 21407:1 21412:1 21413:1 21423:2 21425:1 21435:1 21439:1 21446:4 21457:1 21464:1 21467:1 21474:1 21515:19 21516:2 21518:1 21537:1 21548:1 21556:1 21575:1 21583:1 21594:2 21609:1 21611:1 21613:2 21620:1 21621:1 21623:1 21628:2 21642:2 21644:1 21645:1 21648:8 21664:2 21668:3 21679:2 21704:1 21706:1 21712:1 21715:1 21718:2 21732:1 21735:1 21738:1 21743:1 21745:2 21753:1 21754:1 21766:2 21769:1 21781:9 21794:3 21807:3 21819:1 21828:2 21840:1 21860:2 21873:1 21874:1 21895:1 21929:1 21941:3 21946:1 21949:1 21959:1 21967:1 21989:1 22001:1 22015:1 22021:1 22032:1 22038:1 22041:1 22042:2 22049:13 22051:2 22082:2 22090:1 22099:1 22120:1 22130:2 22132:1 22133:2 22139:1 22154:1 22165:3 22180:1 22185:1 22188:5 22192:1 22223:1 22225:1 22241:1 22248:1 22264:2 22279:1 22284:1 22290:1 22295:2 22310:1 22322:1 22329:1 22333:1 22344:1 22346:1 22348:2 22355:2 22374:1 22414:1 22423:1 22424:1 22425:5 22431:1 22432:1 22436:1 22448:1 22452:1 22453:1 22463:1 22466:1 22478:1 22481:2 22496:1 22530:1 22534:2 22548:1 22551:2 22556:1 22564:2 22568:4 22571:1 22572:1 22587:1 22593:1 22607:1 22619:1 22627:3 22628:3 22634:1 22646:6 22654:1 22657:1 22665:1 22667:1 22670:1 22672:3 22677:2 22681:1 22683:1 22699:2 22706:1 22707:2 22708:1 22720:1 22748:4 22755:1 22757:21 22759:1 22837:2 22846:1 22847:1 22849:1 22856:1 22872:1 22889:1 22916:2 22922:1 22924:1 22925:1 22937:1 22949:1 22951:1 22957:1 22965:1 22986:1 23000:1 23008:1 23022:1 23024:2 23028:1 23059:1 23062:2 23076:1 23077:2 23104:4 23117:1 23122:1 23126:1 23159:1 23175:1 23177:1 23192:2 23207:3 23215:2 23222:1 23224:1 23227:1 23228:1 23229:2 23246:1 23266:1 23278:1 23284:1 23300:1 23306:1 23313:1 23321:1 23328:1 23334:1 23360:1 23362:1 23389:1 23391:1 23396:1 23397:5 23405:1 23412:1 23413:1 23421:3 23434:1 23470:1 23492:1 23510:3 23520:1 23521:1 23558:1 23568:5 23633:2 23643:1 23646:1 23655:1 23656:1 23665:1 23666:2 23667:5 23668:1 23689:1 23697:1 23704:1 23707:2 23712:1 23716:3 23722:2 23752:1 23753:2 23766:2 23780:1 23788:1 23791:2 23802:2 23808:1 23820:1 23841:1 23844:1 23860:1 23867:4 23870:1 23879:3 23883:1 23885:1 23890:1 23899:1 23900:1 23908:1 23921:1 23933:1 23934:1 23937:1 23954:1 23971:1 23980:1 23982:2 23998:1 24003:1 24006:2 24011:1 24013:1 24020:1 24027:1 24036:1 24040:1 24050:1 24052:1 24057:1 24059:1 24081:1 24083:1 24086:1 24099:1 24106:2 24144:3 24155:5 24179:1 24191:1 24208:1 24214:1 24224:1 24230:2 24231:1 24234:1 24241:1 24242:5 24252:1 24269:2 24274:1 24275:1 24290:1 24306:1 24325:1 24331:1 24339:4 24359:1 24360:1 24363:1 24367:1 24396:1 24404:2 24406:3 24412:1 24417:1 24420:1 24434:7 24457:1 24473:2 24476:5 24478:1 24484:1 24488:4 24491:1 24492:1 24533:1 24534:1 24540:1 24567:1 24572:1 24600:1 24614:1 24620:1 24634:1 24636:1 24637:2 24640:1 24641:1 24644:7 24647:3 24653:1 24678:1 24692:2 24694:1 24697:2 24702:1 24718:1 24728:1 24730:6 24731:1 24740:2 24742:1 24751:4 24760:5 24761:1 24772:2 24782:1 24784:1 24789:1 24797:1 24817:2 24838:1 24841:6 24843:1 24847:1 24854:1 24855:1 24873:2 24883:1 24897:2 24915:3 24928:1 24942:5 24946:1 24967:2 24969:2 24990:2 24999:1 25018:1 25051:1 25053:1 25056:1 25061:1 25071:1 25081:1 25092:4 25109:1 25117:1 25121:1 25131:1 25135:1 25138:2 25140:1 25143:1 25153:1 25157:2 25160:2 25173:1 25175:1 25179:1 25191:1 25194:1 25200:1 25217:2 25219:1 25228:1 25230:2 25235:1 25242:1 25256:6 25261:1 25262:1 25265:1 25268:1 25277:1 25283:1 25286:1 25289:2 25323:2 25326:1 25332:1 25348:1 25358:1 25360:1 25379:1 25385:1 25387:3 25402:1 25410:10 25414:1 25451:1 25455:1 25478:1 25494:1 25514:1 25525:1 25530:1 25537:1 25549:3 25555:1 25569:1 25571:2 25586:1 25641:2 25660:3 25681:5 25683:2 25684:1 25688:1 25695:1 25696:2 25698:1 25699:4 25700:7 25703:1 25705:1 25722:1 25742:2 25751:2 25773:1 25782:1 25787:1 25793:3 25801:1 25805:1 25826:3 25844:1 25852:1 25856:1 25861:2 25867:1 25879:1 25905:1 25910:1 25916:1 25955:1 25957:1 25967:1 26008:1 26023:1 26032:1 26042:1 26051:1 26067:1 26069:2 26075:1 26104:2 26110:2 26120:2 26137:1 26151:1 26158:1 26189:1 26196:1 26201:1 26216:2 26218:2 26228:2 26254:1 26272:1 26281:1 26285:2 26289:4 26299:1 26301:1 26303:9 26331:2 26332:1 26389:1 26397:21 26398:1 26400:3 26401:1 26410:1 26420:1 26430:3 26450:1 26454:1 26503:2 26505:3 26509:3 26510:2 26544:2 26546:1 26548:1 26549:1 26555:2 26557:2 26559:1 26563:1 26569:1 26570:1 26576:2 26581:1 26588:3 26590:1 26612:2 26624:1 26638:1 26641:2 26651:1 26664:2 26666:1 26686:1 26689:1 26690:1 26711:1 26715:1 26725:1 26765:1 26766:1 26789:1 26792:1 26794:1 26797:1 26807:3 26808:1 26810:2 26829:2 26843:1 26869:7 26874:1 26879:1 26889:1 26894:1 26919:1 26954:3 26963:3 26977:1 26986:2 26989:1 26993:1 27017:1 27025:1 27035:1 27038:3 27044:1 27071:2 27080:1 27108:5 27111:4 27134:1 27135:1 27143:1 27145:1 27157:1 27171:1 27177:1 27213:1 27216:1 27217:1 27228:4 27231:1 27239:1 27248:1 27256:3 27259:1 27271:1 27279:2 27280:25 27281:2 27283:2 27287:4 27289:1 27290:1 27300:1 27315:1 27316:13 27326:1 27329:1 27337:1 27364:1 27368:2 27372:1 27373:2 27381:1 27383:1 27394:1 27401:1 27405:4 27414:4 27419:2 27447:3 27448:1 27452:2 27458:1 27462:1 27465:1 27477:1 27492:1 27495:1 27496:1 27519:1 27549:1 27558:2 27561:1 27562:1 27590:1 27591:1 27594:1 27611:1 27619:1 27620:1 27627:1 27629:1 27633:2 27636:1 27638:4 27641:1 27644:1 27661:2 27666:1 27676:1 27692:8 27695:1 27697:1 27705:3 27708:1 27743:1 27745:1 27749:1 27772:3 27773:8 27775:1 27776:1 27780:1 27783:1 27799:1 27804:2 27805:2 27814:1 27818:1 27828:1 27834:1 27835:1 27842:1 27864:3 27879:1 27895:1 27914:3 27920:1 27922:1 27926:2 27951:2 27961:1 27963:4 27968:1 27971:1 27977:5 27984:1 27994:2 28018:1 28026:1 28046:1 28053:1 28067:1 28081:1 28106:3 28108:1 28122:1 28138:4 28169:2 28172:1 28176:1 28185:1 28210:1 28217:2 28222:1 28229:3 28237:1 28265:1 28283:1 28292:3 28297:1 28300:1 28314:1 28326:2 28336:1 28341:1 28343:6 28344:1 28352:1 28364:2 28380:2 28391:1 28395:2 28397:1 28420:1 28430:5 28437:2 28442:1 28496:1 28503:1 28504:1 28507:1 28509:1 28511:5 28516:1 28523:1 28530:1 28554:1 28560:2 28566:1 28569:1 28574:1 28575:1 28576:1 28579:1 28587:2 28618:1 28629:1 16 6:1 26:1 27:1 29:1 44:1 69:1 78:1 83:4 100:1 106:1 137:1 147:1 153:1 162:1 165:1 172:1 175:2 176:1 201:1 206:1 211:1 213:1 230:1 235:4 239:1 254:1 283:1 286:1 296:4 300:1 318:1 327:1 336:2 337:3 338:1 364:1 372:1 375:1 382:1 399:1 407:2 418:1 442:3 445:1 449:2 460:1 471:1 478:1 489:2 504:1 507:1 509:1 514:1 523:1 526:2 552:1 553:1 567:5 603:1 614:1 617:3 627:3 634:1 648:2 654:1 661:4 665:1 671:1 676:1 684:1 685:1 688:1 699:1 707:1 713:1 724:1 735:1 747:2 757:2 768:1 772:1 787:1 803:1 805:1 809:1 813:1 824:1 826:1 828:1 843:1 852:1 856:1 872:2 902:1 910:2 913:1 915:1 924:2 933:2 934:2 939:3 940:1 941:3 942:6 943:2 944:2 947:1 963:1 966:1 978:1 982:1 983:1 985:6 987:2 1010:1 1015:2 1020:1 1052:1 1059:2 1062:1 1081:1 1086:1 1089:1 1108:2 1116:1 1125:1 1170:1 1171:3 1174:1 1175:1 1184:1 1187:1 1192:2 1200:1 1201:4 1217:2 1222:1 1227:1 1237:1 1239:3 1259:1 1263:1 1267:1 1269:2 1275:4 1278:1 1279:1 1289:4 1290:2 1292:1 1302:3 1306:1 1316:1 1319:1 1321:1 1331:1 1335:3 1346:2 1356:1 1375:2 1379:1 1404:1 1413:1 1415:2 1438:3 1440:1 1446:1 1448:1 1451:1 1453:2 1464:1 1475:1 1484:6 1493:1 1497:1 1501:6 1513:2 1521:2 1522:1 1525:3 1531:1 1535:1 1541:1 1544:4 1560:1 1569:1 1571:1 1572:5 1583:1 1587:1 1591:2 1594:1 1596:1 1601:2 1603:1 1621:2 1628:1 1632:4 1637:4 1640:2 1641:1 1653:1 1654:1 1657:1 1672:5 1675:3 1678:1 1683:1 1684:1 1692:1 1698:1 1722:1 1731:1 1733:1 1743:2 1745:1 1747:1 1751:1 1758:3 1766:2 1784:1 1789:1 1790:1 1809:1 1810:1 1820:1 1824:1 1825:1 1831:1 1837:1 1844:1 1849:1 1853:1 1860:1 1861:1 1868:1 1877:1 1882:1 1883:1 1884:1 1889:1 1895:1 1901:1 1903:2 1904:4 1908:1 1910:1 1912:1 1914:1 1921:1 1929:1 1930:3 1931:1 1950:1 1953:1 1958:1 1978:1 1986:1 2001:1 2006:1 2015:2 2017:2 2019:1 2020:2 2022:1 2023:3 2044:1 2049:1 2054:2 2072:1 2074:3 2075:1 2076:2 2101:1 2108:4 2126:2 2133:1 2156:1 2158:1 2164:1 2170:1 2174:3 2188:1 2227:1 2228:1 2229:1 2230:2 2232:4 2237:1 2238:5 2240:1 2241:1 2244:5 2245:1 2246:4 2248:1 2251:1 2256:5 2259:3 2260:7 2272:1 2273:1 2277:1 2290:1 2303:1 2308:1 2321:1 2327:2 2331:1 2334:1 2336:2 2346:1 2354:1 2359:1 2361:1 2374:1 2391:1 2413:5 2423:1 2437:1 2448:2 2474:1 2483:1 2486:1 2488:1 2495:1 2526:1 2531:1 2556:1 2582:2 2587:1 2595:4 2596:1 2602:1 2607:4 2615:1 2622:2 2623:1 2630:1 2633:1 2635:2 2637:10 2651:1 2653:1 2662:2 2668:1 2670:1 2674:1 2677:1 2684:3 2689:1 2690:1 2713:2 2721:2 2731:2 2738:1 2739:1 2741:5 2747:2 2755:1 2792:4 2795:1 2798:1 2799:1 2804:1 2818:11 2828:7 2857:2 2869:1 2885:29 2899:2 2903:1 2907:1 2918:1 2919:1 2920:1 2936:1 2956:1 2962:2 2970:1 2981:1 2986:2 2987:1 2989:2 3037:3 3041:1 3053:1 3059:1 3062:1 3070:1 3085:1 3105:1 3106:1 3107:1 3116:1 3117:1 3129:2 3133:4 3151:10 3153:2 3168:1 3173:1 3181:1 3191:1 3208:1 3218:1 3219:7 3254:1 3281:1 3283:1 3293:1 3303:1 3319:2 3327:1 3330:1 3340:1 3348:1 3361:3 3369:2 3373:1 3377:1 3388:4 3417:1 3426:1 3427:3 3430:1 3441:1 3442:1 3453:3 3491:1 3502:1 3505:1 3511:1 3512:3 3513:2 3519:2 3521:1 3522:1 3535:1 3543:1 3550:1 3569:1 3588:1 3598:1 3603:2 3606:3 3608:1 3625:1 3643:1 3651:2 3652:35 3659:1 3677:2 3678:1 3679:8 3681:1 3686:1 3687:2 3688:21 3689:1 3691:4 3697:2 3706:3 3709:1 3718:2 3721:3 3724:2 3725:2 3740:2 3742:1 3743:1 3755:1 3769:2 3776:1 3777:3 3781:1 3783:1 3788:1 3808:1 3811:2 3813:1 3815:1 3816:3 3826:2 3838:2 3840:1 3844:1 3853:1 3866:2 3873:1 3889:1 3891:1 3900:1 3901:1 3904:1 3905:1 3911:1 3915:2 3918:1 3920:1 3925:4 3939:4 3953:1 3985:1 3993:1 3995:1 4031:1 4036:1 4052:1 4056:3 4062:1 4086:1 4090:1 4101:2 4106:1 4107:2 4109:1 4110:1 4137:1 4143:1 4153:1 4156:1 4169:3 4199:1 4209:1 4221:1 4234:9 4250:1 4277:1 4302:2 4306:1 4313:5 4322:1 4325:2 4335:2 4347:6 4351:1 4372:1 4380:1 4383:1 4386:1 4393:1 4435:1 4448:1 4449:2 4470:1 4474:1 4484:1 4489:1 4499:2 4515:2 4519:1 4522:2 4533:1 4543:4 4554:1 4563:3 4584:2 4585:1 4586:1 4609:1 4653:1 4654:1 4659:1 4660:2 4671:1 4685:1 4689:1 4693:2 4701:2 4742:1 4754:1 4779:1 4782:1 4785:1 4792:15 4793:2 4804:1 4824:2 4848:1 4850:2 4860:1 4870:1 4893:3 4902:3 4903:1 4905:4 4925:2 4926:2 4927:7 4928:1 4929:1 4930:1 4932:1 4933:2 4935:1 4939:1 4940:19 4941:1 4943:1 4948:2 4949:3 4956:2 4972:1 4975:3 5031:2 5045:1 5053:1 5058:1 5120:1 5144:3 5145:3 5152:5 5181:1 5190:1 5195:1 5209:1 5213:2 5214:19 5227:1 5242:1 5250:3 5252:1 5280:2 5317:1 5319:1 5330:1 5355:1 5359:1 5361:2 5370:1 5375:1 5379:1 5386:1 5388:1 5390:2 5392:1 5431:1 5433:1 5437:1 5446:1 5447:1 5448:2 5465:1 5474:1 5479:1 5489:2 5494:1 5497:1 5502:1 5503:2 5521:1 5523:1 5525:1 5561:1 5562:1 5565:3 5588:2 5595:1 5604:1 5614:1 5618:1 5620:1 5624:1 5631:1 5635:1 5643:1 5646:1 5653:1 5654:1 5656:1 5659:1 5660:1 5662:1 5674:1 5675:1 5679:1 5683:1 5697:1 5701:1 5702:1 5703:1 5707:1 5720:1 5731:1 5745:1 5766:3 5791:1 5794:3 5796:1 5803:1 5808:1 5817:1 5846:1 5860:2 5894:1 5903:1 5924:1 5931:2 5932:8 5941:1 5945:2 5971:2 5976:1 5977:1 5980:1 6003:1 6020:1 6024:1 6026:1 6034:2 6042:2 6043:1 6046:1 6047:1 6057:1 6079:4 6086:1 6087:2 6088:2 6126:1 6127:3 6129:1 6136:1 6151:5 6153:1 6165:1 6166:1 6168:1 6177:1 6181:1 6184:1 6194:1 6239:4 6242:2 6243:1 6244:1 6247:1 6248:1 6250:2 6251:2 6254:2 6255:3 6256:4 6262:2 6264:7 6265:1 6266:1 6267:2 6275:1 6298:1 6325:3 6329:1 6357:1 6358:1 6392:1 6394:1 6398:1 6404:1 6410:2 6413:1 6424:1 6450:1 6454:1 6463:1 6494:1 6507:2 6508:1 6513:2 6523:1 6533:5 6535:1 6539:3 6547:1 6550:1 6557:1 6558:1 6566:2 6580:1 6582:3 6586:2 6598:2 6603:1 6604:1 6606:1 6615:1 6639:1 6657:1 6661:1 6670:1 6677:2 6679:1 6684:1 6685:2 6687:1 6695:3 6699:1 6704:3 6711:3 6718:1 6731:1 6739:2 6745:1 6780:1 6783:2 6789:1 6791:1 6795:1 6799:2 6803:1 6819:2 6835:1 6857:2 6860:1 6876:2 6893:1 6896:2 6909:1 6930:1 6954:2 6970:1 6974:1 6982:1 6996:1 7000:5 7010:2 7015:1 7016:1 7027:1 7036:1 7049:1 7080:1 7126:1 7134:1 7153:1 7180:1 7196:1 7204:1 7213:1 7221:4 7267:1 7269:1 7275:3 7290:2 7307:4 7343:2 7360:2 7378:1 7387:2 7406:1 7411:1 7419:1 7420:1 7430:1 7433:1 7437:4 7446:1 7466:1 7477:4 7478:5 7479:2 7496:1 7499:2 7502:1 7505:1 7512:1 7530:1 7531:2 7544:1 7547:1 7548:39 7549:1 7550:1 7555:2 7567:11 7568:25 7578:1 7579:1 7582:1 7586:1 7588:1 7590:1 7615:1 7616:5 7638:1 7653:1 7668:1 7672:1 7689:2 7705:1 7742:3 7746:6 7750:1 7780:1 7786:1 7788:5 7802:1 7805:1 7826:1 7851:1 7858:1 7862:1 7910:3 7921:1 7926:1 7928:7 7936:2 7942:1 7951:1 7960:2 7973:1 7977:1 7983:1 7998:1 7999:1 8006:17 8026:1 8031:1 8037:2 8039:1 8049:1 8063:2 8092:1 8098:1 8107:2 8116:1 8127:2 8140:1 8154:1 8167:1 8170:3 8176:4 8181:2 8194:2 8196:1 8199:3 8213:2 8214:1 8215:2 8220:1 8231:1 8233:2 8241:2 8251:1 8260:2 8263:2 8269:1 8274:1 8276:1 8277:1 8294:2 8308:1 8319:3 8327:1 8336:1 8342:1 8345:1 8349:1 8354:1 8357:2 8358:1 8359:3 8360:2 8361:2 8362:5 8365:1 8370:2 8373:2 8375:2 8381:3 8396:1 8402:1 8412:2 8420:1 8421:1 8427:1 8428:1 8440:1 8450:1 8455:2 8462:1 8469:1 8475:3 8492:1 8496:5 8517:3 8526:1 8528:1 8531:2 8550:1 8556:1 8583:2 8595:1 8596:1 8603:1 8609:2 8616:3 8617:1 8621:1 8637:1 8640:2 8667:4 8668:2 8675:4 8676:1 8677:1 8678:4 8680:3 8687:2 8688:2 8706:2 8707:1 8709:2 8711:4 8725:1 8727:1 8743:2 8748:1 8763:1 8798:1 8813:1 8827:2 8835:1 8838:1 8853:2 8854:2 8863:1 8868:1 8880:1 8882:1 8895:1 8903:1 8918:1 8919:1 8926:1 8935:1 8957:1 8962:3 8974:1 8978:1 8991:2 8994:1 8995:3 9008:1 9015:7 9035:2 9039:3 9042:1 9049:1 9055:1 9071:1 9078:1 9088:3 9091:1 9110:1 9124:1 9156:1 9160:1 9201:1 9219:1 9240:1 9243:1 9246:3 9252:2 9253:1 9263:1 9264:2 9278:1 9292:1 9294:1 9298:2 9322:1 9325:2 9328:1 9337:1 9350:1 9375:19 9383:1 9399:1 9408:2 9420:4 9428:2 9434:1 9437:1 9448:1 9455:1 9459:1 9467:2 9484:1 9492:1 9511:14 9526:2 9529:1 9535:2 9550:1 9569:5 9575:1 9580:1 9586:3 9587:1 9590:1 9603:1 9614:1 9620:1 9622:1 9651:2 9655:3 9656:1 9666:1 9690:7 9696:2 9697:4 9698:2 9706:2 9707:1 9717:1 9726:2 9730:2 9733:1 9739:2 9744:1 9748:3 9751:1 9753:1 9754:1 9761:1 9770:1 9780:3 9785:3 9795:1 9797:2 9809:1 9817:2 9830:1 9848:1 9853:3 9855:1 9873:10 9875:1 9876:6 9883:1 9885:1 9888:1 9909:1 9967:1 9971:2 9976:1 9986:1 9998:2 10018:3 10023:1 10035:4 10055:1 10081:1 10084:1 10103:1 10121:1 10137:2 10149:4 10155:1 10159:1 10163:1 10173:2 10181:1 10191:1 10209:2 10215:5 10227:1 10230:1 10251:1 10258:2 10276:2 10278:2 10281:2 10288:1 10297:6 10304:1 10311:2 10312:4 10313:1 10314:3 10320:1 10328:1 10330:1 10334:1 10355:1 10356:3 10369:1 10374:1 10383:4 10394:1 10396:2 10401:1 10405:2 10413:7 10417:1 10463:1 10464:1 10470:1 10475:1 10495:2 10498:1 10499:2 10503:1 10509:1 10510:1 10524:2 10531:1 10534:1 10545:1 10549:1 10588:1 10591:1 10595:1 10604:1 10620:2 10621:1 10635:7 10649:3 10650:7 10663:2 10666:1 10670:1 10672:1 10679:1 10684:2 10692:1 10699:4 10702:1 10727:2 10729:1 10730:1 10740:1 10742:2 10747:4 10767:3 10779:3 10811:1 10839:1 10841:1 10843:2 10846:1 10860:1 10892:1 10894:1 10899:1 10900:1 10901:1 10904:1 10905:4 10906:1 10907:1 10926:1 10931:1 10941:1 10945:2 10961:1 10965:1 10970:1 10971:1 10996:2 11019:1 11021:3 11032:1 11039:2 11047:1 11054:1 11073:1 11080:1 11081:3 11112:1 11116:3 11118:5 11120:1 11122:1 11147:1 11169:1 11172:1 11180:1 11186:2 11198:1 11218:3 11232:1 11238:1 11242:1 11245:1 11248:4 11261:3 11263:1 11277:2 11278:3 11280:2 11286:1 11296:1 11299:1 11315:3 11322:1 11328:3 11335:2 11336:7 11337:1 11348:1 11349:1 11354:1 11355:1 11358:1 11359:1 11367:1 11368:1 11370:1 11372:6 11373:1 11374:1 11381:1 11383:6 11392:1 11394:1 11399:1 11401:1 11406:7 11422:2 11431:5 11435:1 11441:2 11446:1 11455:1 11475:1 11476:1 11486:4 11492:1 11496:1 11498:1 11499:2 11530:1 11534:1 11544:3 11557:1 11563:1 11566:2 11575:1 11615:2 11616:2 11633:2 11649:2 11651:1 11683:1 11691:5 11734:2 11737:2 11749:1 11754:1 11761:1 11764:1 11765:1 11766:1 11768:1 11786:3 11787:3 11788:19 11797:6 11806:1 11812:1 11813:2 11823:1 11837:2 11859:1 11879:2 11904:1 11930:1 11938:9 11939:2 11955:1 11958:3 11959:1 11963:1 11984:1 12016:3 12019:1 12040:1 12047:1 12054:2 12058:1 12064:1 12069:1 12081:2 12115:2 12134:3 12148:1 12187:1 12189:3 12196:1 12198:1 12202:1 12203:1 12218:1 12257:1 12258:1 12264:1 12275:1 12323:6 12336:1 12339:1 12341:1 12345:1 12348:1 12357:1 12369:2 12370:4 12391:1 12394:2 12420:1 12451:1 12456:2 12485:1 12505:1 12510:2 12524:1 12525:2 12550:1 12566:2 12599:1 12652:1 12671:5 12691:1 12692:2 12698:1 12702:1 12710:2 12712:1 12715:1 12719:1 12722:1 12733:1 12741:1 12744:1 12756:2 12765:1 12768:1 12769:1 12771:2 12776:1 12792:1 12798:1 12799:2 12829:1 12834:1 12835:2 12837:1 12870:2 12872:2 12874:1 12875:1 12881:1 12882:2 12883:1 12884:6 12889:4 12891:1 12892:1 12900:2 12904:3 12915:3 12919:1 12924:1 12928:3 12934:1 12954:7 12956:1 12960:1 12964:1 12966:1 12970:2 12979:1 12980:2 12997:2 13019:2 13033:2 13034:1 13049:4 13052:1 13053:1 13062:1 13065:1 13071:1 13084:2 13095:3 13114:1 13119:2 13122:6 13131:1 13136:1 13148:2 13149:2 13150:2 13151:1 13160:1 13174:1 13177:1 13178:2 13190:1 13201:2 13221:1 13237:2 13243:1 13249:1 13250:1 13251:2 13252:1 13254:1 13257:1 13270:1 13277:1 13278:1 13283:1 13296:1 13301:1 13302:1 13310:1 13313:1 13314:1 13318:2 13319:1 13330:2 13334:1 13335:1 13352:1 13365:7 13370:2 13371:1 13377:1 13380:1 13411:1 13416:1 13418:1 13434:1 13435:1 13436:2 13439:2 13457:1 13458:2 13461:2 13462:1 13467:4 13493:1 13510:1 13515:1 13518:1 13529:2 13530:3 13535:2 13536:6 13543:1 13560:2 13565:3 13578:1 13589:2 13610:2 13612:1 13615:1 13616:1 13620:1 13628:1 13629:2 13633:2 13666:1 13679:1 13722:1 13723:1 13728:1 13735:2 13750:1 13769:1 13782:1 13795:1 13829:1 13854:1 13855:1 13880:1 13894:1 13898:3 13907:2 13908:1 13917:1 13920:1 13924:4 13926:1 13927:1 13935:1 13937:1 13951:2 13952:1 13956:1 13970:1 13971:1 13972:1 13985:1 13989:1 14009:2 14035:1 14051:1 14065:1 14070:1 14076:1 14087:1 14091:1 14093:1 14099:1 14106:4 14126:1 14135:1 14142:1 14145:1 14154:2 14158:1 14183:1 14197:1 14225:1 14227:4 14238:1 14255:1 14271:1 14303:1 14368:1 14370:1 14378:1 14385:1 14401:2 14437:3 14443:3 14445:1 14447:1 14450:1 14451:1 14470:1 14475:1 14496:2 14505:1 14522:1 14541:1 14545:2 14546:1 14551:3 14566:1 14577:1 14588:1 14592:2 14596:1 14601:1 14624:1 14633:2 14662:1 14665:1 14667:1 14671:1 14678:1 14709:1 14710:1 14756:2 14760:3 14761:4 14766:1 14792:4 14793:1 14796:1 14811:1 14826:4 14828:1 14832:1 14835:1 14840:1 14855:1 14867:1 14870:1 14877:1 14887:3 14894:2 14898:2 14906:2 14909:1 14942:1 14951:2 14970:1 14978:1 14992:1 15006:1 15009:1 15020:1 15021:1 15033:3 15036:1 15058:8 15063:8 15067:1 15073:1 15099:2 15112:1 15113:2 15118:2 15131:3 15134:1 15154:1 15165:1 15171:1 15190:3 15193:1 15194:1 15201:6 15210:3 15221:1 15222:1 15224:2 15230:1 15232:2 15234:1 15238:1 15239:4 15243:2 15244:6 15245:1 15250:2 15254:1 15255:1 15263:1 15264:6 15269:4 15300:1 15302:1 15337:1 15345:1 15347:2 15355:1 15356:2 15361:2 15366:5 15375:1 15388:2 15401:1 15403:2 15421:2 15425:2 15442:1 15446:2 15461:1 15465:1 15472:1 15478:1 15488:1 15496:3 15502:8 15513:2 15529:2 15538:1 15540:2 15554:1 15557:1 15566:19 15587:1 15596:5 15597:1 15599:1 15620:2 15637:55 15665:3 15669:1 15697:1 15731:1 15733:1 15734:2 15756:1 15758:1 15763:2 15765:1 15766:2 15773:2 15774:4 15776:1 15780:2 15784:1 15797:1 15810:1 15812:1 15815:1 15822:1 15831:1 15832:1 15833:1 15855:1 15857:1 15869:1 15876:1 15896:1 15902:5 15919:1 15934:2 15938:1 15953:1 15961:2 15969:1 15974:1 15988:1 16026:1 16035:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16107:2 16108:1 16116:1 16133:1 16137:1 16146:2 16151:4 16153:1 16156:1 16165:1 16167:2 16168:3 16187:3 16190:1 16199:1 16210:1 16215:1 16217:2 16219:1 16220:1 16228:1 16230:1 16237:1 16249:1 16254:1 16255:13 16262:1 16264:1 16289:2 16300:2 16310:1 16311:1 16338:1 16343:1 16348:1 16365:1 16366:2 16369:3 16373:1 16375:2 16378:1 16380:2 16390:1 16395:1 16407:1 16416:1 16421:1 16426:2 16427:2 16446:2 16450:2 16453:1 16459:1 16472:1 16486:1 16491:1 16492:3 16501:1 16517:1 16558:1 16569:2 16571:1 16582:1 16587:1 16588:2 16590:1 16601:1 16608:1 16609:1 16617:2 16623:3 16630:2 16646:1 16649:1 16652:1 16654:3 16658:1 16666:1 16674:1 16676:1 16683:3 16690:1 16704:1 16705:1 16718:1 16721:1 16726:1 16744:2 16765:1 16766:2 16771:1 16777:1 16796:4 16845:1 16847:1 16851:1 16860:1 16866:1 16876:1 16877:1 16879:1 16896:5 16899:1 16902:1 16904:1 16911:1 16915:2 16920:1 16921:1 16934:1 16936:2 16940:2 16949:1 16953:1 16954:1 16964:2 16982:1 16987:1 16990:1 16993:1 17010:1 17018:2 17019:2 17055:1 17058:1 17061:1 17077:1 17082:1 17098:1 17103:3 17113:2 17117:1 17128:1 17130:1 17142:2 17187:3 17194:1 17196:2 17199:2 17201:1 17219:1 17220:9 17223:2 17235:1 17244:1 17248:2 17275:1 17285:1 17292:1 17294:1 17310:1 17311:2 17317:3 17334:2 17338:2 17341:1 17354:1 17361:1 17363:1 17369:1 17392:1 17396:4 17403:2 17404:4 17417:1 17446:1 17448:1 17479:1 17481:1 17501:1 17513:1 17529:3 17531:1 17540:1 17568:1 17571:1 17578:1 17587:1 17595:1 17599:3 17609:2 17616:1 17640:1 17657:1 17661:1 17666:1 17667:3 17673:1 17714:2 17718:1 17723:2 17750:1 17752:1 17754:4 17760:1 17774:4 17779:1 17782:1 17785:3 17805:1 17806:1 17811:1 17821:1 17823:2 17828:1 17850:1 17856:1 17874:1 17912:10 17916:1 17923:1 17930:1 17946:1 17949:1 17961:1 17968:1 17970:1 17978:1 17984:2 17986:1 17998:1 18003:1 18010:1 18013:1 18027:1 18031:5 18035:1 18037:2 18038:1 18052:3 18057:2 18065:2 18066:1 18095:1 18101:3306 18105:1 18118:4 18123:2 18149:1 18157:1 18163:1 18171:1 18178:3 18179:1 18188:1 18215:3 18226:1 18234:2 18245:2 18262:1 18267:1 18271:4 18272:2 18298:3 18306:1 18309:1 18311:3 18314:1 18315:1 18331:1 18346:1 18361:1 18362:1 18366:1 18381:1 18408:1 18410:4 18429:1 18434:1 18439:1 18444:1 18462:2 18472:1 18481:1 18491:1 18493:1 18505:1 18512:1 18514:1 18515:1 18557:1 18567:1 18569:2 18572:1 18584:4 18599:1 18601:1 18607:1 18618:1 18631:1 18667:2 18669:1 18677:1 18679:3 18731:1 18761:1 18780:1 18786:2 18796:1 18799:2 18801:1 18804:2 18813:4 18825:2 18829:1 18830:3 18834:1 18847:1 18859:14 18877:1 18878:1 18880:3 18881:1 18883:17 18892:2 18910:1 18911:5 18912:1 18914:1 18931:1 18936:2 18947:1 18950:4 18968:1 18972:2 18976:1 18978:6 18980:2 18983:1 18987:1 18997:2 18998:1 19000:1 19005:1 19028:1 19034:3 19039:1 19055:1 19067:3 19099:1 19103:1 19106:1 19148:1 19153:1 19176:1 19179:1 19187:1 19206:1 19209:13 19212:1 19220:1 19231:3 19253:1 19256:1 19279:1 19291:1 19299:1 19305:1 19307:6 19326:1 19329:1 19347:2 19357:1 19359:1 19360:1 19383:1 19390:1 19391:1 19394:1 19399:1 19401:1 19402:1 19409:1 19430:1 19436:1 19459:4 19464:1 19470:1 19472:1 19488:3 19489:1 19514:2 19523:1 19525:1 19539:1 19543:2 19545:4 19565:2 19569:1 19574:2 19582:2 19584:1 19591:7 19612:1 19638:1 19644:1 19663:14 19669:1 19677:2 19679:2 19694:1 19695:1 19706:1 19707:13 19724:1 19747:1 19756:1 19774:1 19786:1 19818:1 19822:1 19833:2 19853:4 19854:1 19856:2 19865:1 19870:1 19900:2 19910:1 19918:1 19945:5 19955:1 19957:3 19968:1 19979:1 19986:1 19998:1 20006:1 20022:1 20024:1 20044:1 20078:2 20086:1 20095:1 20099:1 20109:1 20117:1 20120:2 20129:1 20143:1 20145:1 20148:2 20169:1 20177:1 20193:1 20210:3 20217:1 20224:1 20227:2 20230:1 20231:1 20232:1 20236:1 20240:1 20245:13 20248:1 20252:1 20257:3 20260:4 20261:1 20279:2 20285:2 20289:5 20299:1 20322:4 20325:1 20327:1 20335:1 20336:1 20352:1 20364:2 20365:1 20366:1 20375:2 20378:1 20396:2 20401:1 20402:1 20413:1 20422:7 20429:1 20432:2 20438:1 20453:1 20490:1 20496:1 20502:1 20505:1 20507:1 20524:2 20528:1 20531:1 20533:1 20538:1 20546:3 20559:1 20561:1 20567:1 20569:1 20572:1 20583:1 20585:1 20620:1 20628:1 20647:1 20672:1 20679:1 20712:1 20716:1 20718:4 20720:2 20723:3 20733:4 20741:1 20743:1 20745:1 20773:1 20777:1 20782:1 20786:1 20787:1 20798:1 20804:1 20809:1 20810:1 20822:1 20827:1 20828:1 20838:1 20840:6 20843:3 20856:2 20860:1 20863:1 20870:1 20874:1 20888:1 20924:1 20926:1 20927:2 20934:1 20941:1 20951:1 20952:1 20953:1 20971:1 20973:4 20976:13 20978:1 20992:1 20998:1 20999:2 21003:1 21010:1 21014:1 21019:1 21024:1 21026:1 21037:5 21053:1 21080:2 21084:3 21086:1 21090:1 21096:4 21108:1 21120:1 21125:1 21140:1 21141:1 21142:4 21150:2 21156:3 21161:1 21209:1 21231:4 21237:1 21238:1 21239:8 21241:2 21245:2 21252:2 21254:1 21255:1 21266:2 21267:1 21269:1 21272:1 21279:2 21282:2 21283:1 21291:1 21292:1 21293:1 21302:1 21306:2 21309:2 21314:1 21334:2 21369:1 21379:5 21380:1 21403:1 21407:1 21412:1 21413:1 21423:2 21425:1 21435:1 21439:1 21446:4 21457:1 21464:1 21467:1 21474:1 21515:19 21516:2 21518:1 21537:1 21548:1 21556:1 21569:1 21575:1 21583:1 21594:2 21609:1 21611:1 21613:2 21620:1 21621:1 21623:1 21628:2 21637:1 21642:2 21644:1 21645:1 21648:8 21664:2 21668:4 21679:2 21704:1 21706:1 21712:1 21715:1 21718:2 21732:1 21735:1 21738:1 21743:1 21745:2 21753:1 21754:1 21766:2 21769:1 21781:9 21794:3 21807:3 21819:1 21828:2 21840:1 21860:2 21873:1 21874:1 21895:1 21929:1 21935:1 21941:3 21946:1 21949:1 21959:1 21967:1 21989:1 22001:1 22015:1 22021:1 22032:1 22038:1 22041:2 22042:2 22049:15 22051:2 22082:2 22090:1 22099:1 22120:1 22130:3 22132:1 22133:2 22139:1 22154:1 22165:3 22180:1 22185:1 22188:5 22192:1 22223:1 22225:1 22241:1 22246:1 22248:1 22264:2 22279:1 22283:1 22284:1 22290:1 22295:2 22310:1 22322:1 22329:1 22333:1 22344:1 22346:1 22348:2 22355:2 22361:1 22374:1 22414:1 22423:1 22424:1 22425:5 22431:1 22432:1 22436:1 22448:1 22452:1 22453:1 22463:1 22466:1 22471:1 22478:1 22481:2 22496:1 22530:1 22534:2 22548:1 22551:2 22556:1 22564:2 22568:4 22571:1 22572:1 22587:1 22593:1 22607:1 22619:1 22627:3 22628:4 22633:1 22634:1 22646:6 22654:1 22657:1 22665:1 22667:1 22670:1 22672:3 22677:2 22681:1 22683:1 22699:2 22706:1 22707:2 22708:1 22720:1 22748:4 22755:1 22757:22 22759:1 22837:2 22846:1 22847:1 22849:1 22856:1 22872:1 22889:1 22916:3 22922:1 22924:2 22925:1 22937:1 22949:1 22951:1 22957:1 22965:1 22983:1 22986:1 23000:1 23008:1 23022:1 23024:2 23028:1 23059:1 23062:2 23076:1 23077:2 23104:4 23109:1 23117:1 23122:1 23126:1 23152:1 23159:1 23175:1 23177:1 23192:2 23207:3 23215:2 23222:1 23224:1 23227:1 23228:1 23229:2 23246:1 23266:1 23278:1 23284:1 23300:1 23306:1 23313:1 23321:1 23328:1 23334:1 23360:1 23362:1 23389:1 23391:1 23396:1 23397:5 23405:1 23412:1 23413:1 23421:3 23434:1 23470:1 23492:1 23510:3 23520:1 23521:1 23558:1 23568:5 23633:2 23643:1 23646:1 23655:1 23656:1 23665:1 23666:2 23667:5 23668:1 23689:1 23697:1 23704:1 23707:2 23712:1 23716:3 23722:2 23752:1 23753:2 23766:2 23780:1 23788:1 23791:2 23802:2 23808:1 23820:1 23841:1 23844:1 23860:1 23867:4 23870:1 23879:3 23883:1 23885:1 23890:1 23899:1 23900:1 23908:1 23921:1 23933:1 23934:1 23937:1 23944:1 23954:1 23960:1 23971:1 23980:1 23982:2 23998:1 24003:1 24006:2 24011:1 24013:1 24020:1 24027:1 24036:1 24040:1 24050:1 24052:1 24057:1 24059:1 24081:1 24083:1 24086:1 24099:1 24106:2 24144:3 24155:5 24179:1 24191:1 24208:1 24214:1 24224:1 24230:2 24231:1 24234:1 24241:1 24242:5 24252:1 24269:2 24274:1 24275:1 24290:1 24306:1 24325:1 24331:1 24339:4 24359:1 24360:1 24363:1 24367:1 24396:1 24404:2 24406:3 24412:1 24417:1 24420:1 24434:7 24457:1 24473:2 24476:5 24478:1 24484:1 24488:4 24491:1 24492:1 24533:1 24534:1 24540:1 24567:1 24572:1 24600:1 24614:1 24620:1 24634:1 24636:1 24637:2 24640:1 24641:1 24644:8 24647:3 24653:1 24678:1 24692:3 24694:1 24697:2 24702:1 24718:1 24728:1 24730:6 24731:1 24740:2 24742:1 24751:4 24760:5 24761:1 24772:2 24782:1 24784:1 24789:1 24797:1 24817:2 24838:1 24841:6 24843:1 24847:1 24854:1 24855:1 24873:2 24883:1 24897:2 24915:3 24928:1 24942:5 24946:1 24967:2 24969:2 24973:1 24990:2 24999:1 25018:1 25051:1 25053:1 25056:1 25061:1 25071:1 25081:1 25092:4 25109:1 25117:1 25121:1 25131:1 25135:1 25138:2 25140:1 25143:1 25153:1 25157:2 25160:2 25173:1 25175:1 25179:1 25191:1 25194:1 25200:1 25217:2 25219:1 25228:1 25230:2 25235:1 25242:1 25256:6 25261:1 25262:1 25265:1 25268:2 25277:1 25283:1 25286:1 25289:2 25323:2 25326:1 25332:1 25348:1 25358:1 25360:1 25379:1 25385:1 25387:3 25402:1 25410:10 25414:1 25451:1 25455:1 25478:1 25494:1 25514:1 25525:1 25530:1 25537:1 25549:3 25555:1 25560:1 25569:1 25571:2 25586:1 25641:2 25660:3 25681:5 25683:2 25684:1 25688:1 25695:1 25696:2 25698:1 25699:4 25700:7 25703:1 25705:1 25722:1 25742:2 25751:2 25773:1 25782:1 25787:1 25793:3 25801:1 25805:1 25826:3 25844:1 25852:1 25856:1 25861:2 25867:1 25879:1 25905:1 25910:1 25916:1 25955:1 25957:1 25967:1 26008:1 26023:1 26032:1 26042:1 26051:1 26067:1 26069:2 26075:1 26104:2 26110:2 26120:2 26137:1 26151:1 26158:1 26189:1 26196:1 26201:1 26216:2 26218:2 26228:2 26254:1 26272:1 26281:1 26285:2 26289:4 26299:1 26301:1 26303:9 26331:2 26332:1 26389:1 26397:22 26398:1 26400:3 26401:1 26410:1 26420:1 26430:3 26450:1 26452:1 26454:1 26495:1 26503:2 26505:3 26509:3 26510:2 26514:1 26519:1 26544:2 26546:1 26548:1 26549:1 26555:2 26557:2 26559:2 26563:1 26569:1 26570:1 26571:1 26576:2 26581:1 26588:3 26590:1 26612:2 26624:1 26638:1 26641:2 26651:1 26664:2 26666:1 26686:1 26689:1 26690:1 26711:1 26715:1 26716:1 26725:1 26765:1 26766:1 26789:2 26792:1 26794:1 26797:1 26807:3 26808:1 26810:2 26829:2 26843:1 26869:7 26874:1 26879:1 26889:1 26894:1 26909:1 26919:1 26954:3 26963:3 26977:1 26986:2 26989:1 26993:1 27017:1 27025:1 27035:1 27038:3 27044:1 27071:2 27080:1 27108:5 27111:4 27134:1 27135:1 27143:1 27145:1 27157:1 27171:1 27177:1 27213:1 27216:1 27217:1 27228:4 27231:1 27239:1 27248:1 27256:3 27259:1 27271:1 27279:2 27280:27 27281:2 27283:2 27287:4 27289:1 27290:1 27300:1 27315:1 27316:13 27326:1 27329:1 27337:1 27364:1 27368:2 27372:1 27373:2 27381:1 27383:2 27394:1 27401:1 27405:4 27414:4 27419:2 27447:3 27448:1 27450:1 27452:2 27458:1 27462:1 27465:1 27477:1 27492:1 27495:1 27496:1 27519:1 27549:1 27558:2 27561:1 27562:1 27590:1 27591:1 27594:1 27611:1 27619:1 27620:1 27627:1 27629:1 27633:2 27636:1 27638:4 27641:2 27644:1 27661:2 27666:1 27676:1 27692:8 27695:1 27697:1 27705:3 27708:1 27743:1 27745:1 27749:1 27772:3 27773:8 27775:1 27776:1 27780:1 27783:1 27799:1 27804:2 27805:2 27814:1 27818:1 27828:1 27834:2 27835:1 27842:1 27864:3 27879:1 27895:1 27914:3 27920:1 27922:1 27926:2 27951:2 27961:1 27963:4 27968:1 27971:1 27977:5 27984:1 27994:2 28018:1 28026:1 28046:1 28053:1 28067:1 28081:1 28106:3 28108:1 28122:1 28138:4 28169:2 28172:1 28176:1 28185:1 28210:1 28217:2 28222:1 28229:3 28237:1 28265:1 28283:1 28292:3 28297:1 28300:1 28314:1 28326:2 28336:1 28341:1 28343:6 28344:1 28352:1 28364:2 28380:2 28391:1 28395:2 28397:1 28420:1 28430:5 28437:2 28442:1 28496:1 28503:1 28504:1 28507:1 28509:1 28511:5 28516:1 28523:1 28530:1 28554:1 28560:2 28566:1 28569:1 28574:1 28575:1 28576:1 28579:1 28587:2 28618:1 28629:1 16 6:1 10:1 26:1 27:2 29:1 44:1 69:1 78:1 83:4 100:1 106:1 137:1 147:1 153:1 162:1 165:1 172:1 175:2 176:1 201:1 206:1 211:1 213:1 230:1 235:4 239:1 254:1 283:1 286:1 296:4 300:1 318:1 327:1 336:2 337:3 338:1 364:1 372:1 375:1 382:1 399:1 407:2 418:1 442:3 445:2 449:2 460:1 471:1 478:1 489:2 504:1 507:1 509:1 514:1 523:1 526:2 552:1 553:1 567:5 603:1 614:1 617:3 627:3 634:1 648:2 654:1 661:4 665:1 671:1 676:1 684:1 685:1 688:1 699:1 707:1 713:1 724:1 735:1 747:2 757:2 768:1 772:1 787:1 803:1 805:1 809:1 813:1 824:1 826:1 828:1 843:2 852:1 856:2 872:2 902:2 907:1 910:2 913:1 915:1 924:2 933:2 934:2 939:3 940:1 941:3 942:6 943:2 944:2 947:2 963:1 966:1 978:1 982:1 983:1 985:6 987:2 1010:1 1015:2 1020:1 1052:1 1059:2 1062:1 1081:1 1086:1 1089:1 1108:2 1116:1 1125:2 1170:1 1171:3 1174:1 1175:1 1184:1 1187:1 1192:2 1200:1 1201:4 1217:2 1222:1 1227:1 1237:1 1239:3 1259:1 1263:1 1267:1 1269:2 1275:4 1278:1 1279:1 1289:4 1290:2 1292:1 1302:3 1306:1 1316:1 1319:1 1321:1 1331:1 1333:1 1335:3 1346:2 1356:1 1375:2 1379:1 1404:1 1413:1 1415:2 1438:3 1440:1 1446:1 1448:1 1451:1 1453:2 1464:1 1475:1 1484:6 1493:1 1497:1 1501:6 1513:2 1521:2 1522:1 1525:3 1531:1 1535:1 1541:1 1544:4 1560:1 1569:1 1571:1 1572:5 1583:1 1587:2 1591:2 1594:1 1596:1 1601:2 1603:1 1621:2 1628:1 1632:4 1637:4 1640:2 1641:1 1653:1 1654:1 1657:1 1672:5 1675:3 1678:1 1683:1 1684:1 1692:1 1698:1 1706:1 1722:1 1731:1 1733:1 1743:2 1745:1 1747:1 1751:1 1758:3 1766:2 1779:1 1784:1 1789:1 1790:1 1809:1 1810:1 1816:1 1820:1 1824:1 1825:1 1831:1 1837:1 1844:1 1849:1 1853:1 1860:1 1861:1 1865:1 1868:1 1877:1 1882:1 1883:1 1884:1 1889:1 1895:1 1901:1 1903:2 1904:4 1908:1 1910:1 1912:1 1914:1 1921:1 1929:1 1930:3 1931:1 1933:1 1950:1 1953:1 1958:1 1978:1 1986:1 2001:1 2006:1 2015:2 2017:2 2019:1 2020:2 2022:1 2023:3 2044:1 2049:1 2054:2 2072:1 2074:3 2075:1 2076:2 2077:1 2078:1 2101:1 2108:4 2126:2 2133:1 2156:1 2158:1 2164:1 2170:1 2174:3 2188:1 2191:1 2227:2 2228:1 2229:1 2230:2 2232:4 2237:1 2238:5 2240:1 2241:1 2244:5 2245:1 2246:4 2248:1 2251:1 2253:1 2256:6 2259:3 2260:7 2272:1 2273:2 2277:1 2290:1 2303:1 2308:1 2321:1 2327:2 2331:1 2334:1 2336:2 2346:1 2354:1 2359:2 2361:1 2374:1 2391:1 2413:5 2423:1 2437:1 2448:2 2474:1 2483:1 2486:1 2488:1 2495:1 2526:1 2531:1 2556:1 2582:2 2587:1 2595:4 2596:1 2602:1 2607:4 2615:1 2622:2 2623:1 2630:1 2633:1 2635:3 2637:10 2651:1 2653:1 2659:1 2662:2 2668:1 2670:1 2674:1 2677:1 2684:3 2689:1 2690:1 2713:2 2721:2 2731:2 2738:1 2739:1 2741:5 2747:2 2755:1 2792:4 2795:1 2798:1 2799:1 2804:1 2818:11 2828:7 2837:1 2857:2 2869:1 2875:1 2885:30 2899:2 2903:1 2907:1 2918:1 2919:1 2920:1 2936:1 2956:1 2962:2 2970:1 2981:1 2986:2 2987:1 2989:2 3037:3 3041:1 3053:1 3059:1 3062:2 3070:1 3085:1 3105:1 3106:1 3107:1 3116:1 3117:1 3122:1 3129:2 3133:4 3141:1 3151:12 3153:2 3168:1 3173:1 3181:1 3191:1 3208:1 3218:1 3219:7 3254:1 3281:1 3283:1 3293:1 3301:1 3303:2 3319:2 3327:1 3330:1 3340:1 3348:1 3361:3 3369:2 3373:1 3377:1 3388:4 3417:1 3423:1 3426:1 3427:3 3430:1 3441:1 3442:1 3453:3 3491:1 3502:1 3505:1 3511:1 3512:3 3513:2 3519:2 3521:1 3522:1 3535:1 3543:1 3550:1 3569:1 3588:1 3598:1 3603:2 3606:4 3608:1 3625:1 3643:1 3651:2 3652:41 3659:1 3677:2 3678:1 3679:9 3681:1 3686:1 3687:2 3688:23 3689:1 3691:4 3697:2 3706:3 3709:1 3718:2 3721:3 3724:2 3725:2 3740:2 3742:1 3743:1 3755:1 3769:2 3776:1 3777:3 3781:1 3783:1 3788:1 3808:1 3811:2 3813:1 3815:1 3816:3 3826:2 3838:2 3840:1 3844:1 3853:1 3866:2 3873:1 3889:1 3891:1 3900:1 3901:1 3904:1 3905:1 3911:1 3915:2 3918:1 3920:1 3925:4 3939:4 3953:1 3985:1 3993:1 3995:1 4031:1 4036:1 4052:1 4056:3 4062:1 4086:1 4090:1 4101:2 4106:1 4107:2 4109:1 4110:1 4137:1 4143:2 4153:1 4156:1 4169:3 4199:1 4209:1 4221:1 4234:11 4250:1 4269:1 4277:1 4302:2 4306:1 4313:5 4322:1 4325:2 4335:2 4347:7 4351:1 4372:1 4380:1 4383:1 4386:1 4393:1 4435:1 4448:1 4449:2 4470:1 4474:1 4484:1 4489:1 4499:2 4515:2 4519:1 4522:2 4533:1 4543:4 4554:1 4563:3 4584:2 4585:1 4586:1 4609:1 4653:1 4654:1 4659:1 4660:2 4671:1 4685:1 4689:1 4693:2 4701:2 4742:1 4754:1 4779:1 4782:1 4785:1 4792:15 4793:2 4804:1 4824:2 4848:1 4850:2 4860:1 4870:1 4893:3 4902:3 4903:1 4905:4 4925:2 4926:3 4927:7 4928:1 4929:1 4930:1 4932:1 4933:2 4935:1 4939:1 4940:20 4941:1 4943:1 4948:2 4949:3 4956:2 4972:1 4975:3 5031:2 5045:1 5053:1 5058:1 5120:1 5144:3 5145:3 5152:5 5181:1 5190:1 5195:1 5209:1 5213:2 5214:20 5227:1 5242:1 5250:3 5252:1 5280:3 5317:1 5319:1 5330:1 5355:1 5359:1 5361:2 5370:1 5375:1 5379:1 5386:1 5388:1 5390:2 5392:1 5395:1 5431:1 5433:1 5437:1 5446:1 5447:1 5448:2 5465:2 5474:1 5479:1 5489:2 5494:1 5497:1 5502:1 5503:2 5509:1 5521:1 5523:1 5525:1 5561:1 5562:1 5565:5 5588:2 5595:1 5604:1 5614:1 5618:1 5620:1 5624:1 5631:1 5635:1 5643:1 5646:1 5653:1 5654:1 5656:1 5659:1 5660:1 5662:1 5674:1 5675:1 5679:1 5683:1 5697:1 5701:1 5702:1 5703:1 5707:1 5720:1 5731:1 5745:1 5766:3 5791:1 5794:5 5796:1 5803:1 5808:1 5817:1 5846:1 5860:2 5894:1 5903:1 5924:1 5931:2 5932:8 5941:1 5945:2 5971:2 5976:1 5977:1 5980:1 6003:1 6020:1 6024:1 6026:1 6034:2 6042:2 6043:1 6046:1 6047:1 6057:1 6079:4 6086:1 6087:2 6088:2 6126:1 6127:3 6129:1 6136:1 6151:5 6153:1 6165:1 6166:1 6168:1 6177:1 6181:1 6184:1 6194:1 6239:5 6242:2 6243:1 6244:1 6247:1 6248:1 6250:2 6251:2 6254:2 6255:3 6256:5 6262:2 6264:7 6265:1 6266:1 6267:2 6275:1 6298:1 6325:3 6329:1 6357:1 6358:1 6392:1 6394:1 6398:1 6404:1 6410:2 6413:1 6424:1 6446:1 6450:1 6454:1 6463:1 6494:1 6507:3 6508:1 6513:2 6523:1 6533:5 6535:1 6539:3 6547:1 6550:1 6557:1 6558:1 6566:2 6580:1 6582:3 6586:2 6598:2 6603:1 6604:1 6606:1 6615:1 6639:1 6657:1 6661:1 6665:1 6670:1 6677:2 6679:3 6684:1 6685:2 6687:1 6695:3 6699:2 6704:3 6711:3 6718:1 6731:1 6739:3 6745:1 6780:1 6783:2 6789:1 6791:1 6795:1 6799:2 6803:1 6819:2 6835:1 6857:2 6860:1 6876:2 6893:1 6896:2 6909:1 6930:1 6954:2 6970:1 6974:1 6982:1 6996:1 7000:5 7003:1 7010:3 7015:1 7016:1 7027:1 7036:1 7049:1 7080:1 7126:1 7134:1 7145:1 7153:1 7180:1 7196:1 7204:1 7213:1 7221:5 7267:1 7269:1 7275:3 7290:2 7307:4 7343:2 7360:2 7377:1 7378:1 7387:2 7406:1 7411:1 7419:1 7420:1 7430:1 7433:1 7437:4 7446:1 7466:1 7477:4 7478:5 7479:2 7496:1 7499:2 7502:2 7505:1 7512:1 7530:1 7531:2 7544:1 7547:1 7548:42 7549:1 7550:1 7555:2 7567:11 7568:26 7578:1 7579:1 7582:1 7586:1 7588:1 7590:1 7615:1 7616:5 7638:1 7653:1 7668:1 7672:2 7689:2 7705:1 7742:3 7746:6 7750:1 7780:1 7786:1 7788:5 7802:1 7805:1 7826:1 7851:1 7858:1 7862:1 7910:3 7921:1 7926:1 7928:7 7936:2 7942:1 7951:1 7960:2 7973:1 7977:2 7983:1 7998:1 7999:1 8006:17 8026:1 8031:1 8037:2 8039:1 8049:1 8063:2 8092:1 8098:1 8107:2 8116:1 8127:2 8139:1 8140:1 8154:1 8167:1 8170:3 8176:4 8181:2 8194:2 8196:1 8199:3 8213:2 8214:1 8215:2 8220:1 8231:1 8233:2 8241:2 8251:1 8260:2 8263:2 8269:1 8274:1 8276:1 8277:1 8294:2 8308:1 8319:3 8327:1 8336:1 8342:1 8345:1 8349:1 8354:1 8357:2 8358:1 8359:3 8360:2 8361:2 8362:5 8365:1 8370:2 8373:2 8375:2 8381:3 8396:1 8402:2 8412:2 8420:1 8421:1 8427:1 8428:1 8440:1 8450:1 8455:2 8462:1 8469:1 8475:3 8492:1 8496:5 8517:4 8526:1 8528:1 8531:2 8550:1 8556:1 8583:2 8595:1 8596:1 8603:1 8609:3 8616:3 8617:1 8621:1 8637:1 8640:2 8667:4 8668:2 8675:4 8676:1 8677:1 8678:4 8680:3 8687:2 8688:2 8706:3 8707:1 8709:2 8711:4 8725:1 8727:1 8743:2 8748:1 8763:1 8798:1 8813:1 8827:2 8835:1 8838:1 8853:2 8854:2 8863:1 8868:1 8880:1 8882:1 8895:1 8903:1 8918:1 8919:1 8926:1 8935:1 8957:1 8962:3 8974:1 8978:1 8991:2 8994:1 8995:3 9006:1 9008:1 9015:7 9035:2 9039:3 9042:1 9049:1 9055:1 9071:1 9078:1 9088:3 9091:1 9110:1 9111:1 9124:1 9156:1 9160:1 9201:1 9219:1 9240:1 9243:1 9246:3 9252:2 9253:1 9263:1 9264:2 9278:1 9292:2 9294:1 9298:2 9322:1 9325:3 9328:1 9337:1 9350:1 9375:20 9383:1 9399:1 9408:2 9420:4 9428:2 9434:1 9437:1 9448:1 9455:1 9456:1 9459:1 9467:2 9484:2 9492:1 9511:14 9526:2 9529:1 9535:2 9550:1 9569:5 9575:1 9580:1 9586:3 9587:1 9590:1 9603:1 9614:1 9620:1 9622:1 9651:2 9655:3 9656:1 9666:1 9690:8 9696:2 9697:4 9698:2 9706:2 9707:1 9717:1 9726:2 9730:2 9733:1 9739:2 9744:2 9748:4 9751:4 9753:1 9754:1 9761:1 9770:1 9780:3 9785:3 9795:1 9797:2 9809:1 9817:2 9830:1 9848:1 9853:3 9855:1 9873:11 9875:1 9876:6 9883:1 9885:1 9888:1 9909:1 9967:1 9971:2 9976:1 9986:1 9998:2 10018:4 10023:1 10035:4 10050:1 10055:1 10081:1 10084:1 10103:1 10121:1 10137:2 10149:5 10155:1 10159:1 10163:1 10173:2 10181:1 10191:1 10209:2 10215:6 10227:1 10230:1 10251:1 10258:2 10276:2 10278:2 10281:2 10288:1 10297:6 10304:1 10311:2 10312:4 10313:1 10314:3 10320:1 10328:1 10330:1 10334:1 10355:1 10356:3 10369:1 10374:1 10383:4 10394:1 10396:2 10401:1 10405:2 10413:7 10417:1 10463:1 10464:1 10470:1 10475:1 10495:2 10498:1 10499:2 10503:1 10509:1 10510:1 10524:2 10531:1 10534:1 10545:1 10549:1 10588:1 10591:1 10595:1 10604:1 10620:2 10621:1 10635:7 10649:3 10650:7 10663:2 10666:1 10670:1 10672:1 10679:1 10684:2 10692:1 10699:4 10702:1 10727:2 10729:1 10730:1 10740:1 10742:2 10747:5 10759:1 10767:3 10779:3 10795:1 10810:1 10811:1 10814:1 10839:1 10841:1 10843:2 10844:1 10846:1 10860:1 10876:1 10892:1 10894:1 10899:1 10900:1 10901:1 10904:1 10905:4 10906:1 10907:1 10926:1 10931:1 10941:1 10945:2 10961:1 10965:1 10970:1 10971:1 10996:2 11019:1 11021:3 11029:2 11032:1 11039:2 11047:1 11054:1 11073:1 11080:1 11081:3 11112:1 11116:3 11118:6 11120:1 11122:1 11147:1 11169:1 11172:1 11180:1 11186:2 11198:1 11218:3 11232:1 11238:1 11242:1 11245:1 11248:5 11261:3 11263:1 11277:2 11278:3 11280:2 11286:1 11296:1 11299:1 11315:3 11322:1 11328:3 11335:2 11336:9 11337:1 11348:1 11349:1 11354:1 11355:1 11358:1 11359:1 11367:1 11368:2 11370:1 11372:6 11373:1 11374:1 11381:1 11383:6 11392:1 11394:1 11399:1 11401:1 11406:9 11422:2 11431:5 11435:1 11441:2 11446:1 11455:1 11475:1 11476:1 11486:4 11492:1 11496:1 11498:1 11499:2 11530:1 11534:1 11544:3 11557:1 11563:1 11566:2 11575:1 11615:2 11616:2 11633:2 11649:2 11651:1 11683:1 11691:5 11734:2 11737:2 11749:1 11754:1 11761:1 11764:1 11765:1 11766:1 11768:1 11786:4 11787:4 11788:20 11797:6 11806:1 11812:1 11813:2 11823:2 11837:2 11859:1 11879:2 11904:1 11930:1 11938:9 11939:2 11955:1 11958:3 11959:1 11963:2 11984:1 12016:3 12019:1 12040:1 12047:1 12054:2 12058:1 12064:1 12069:1 12081:2 12115:2 12134:3 12148:1 12187:1 12189:3 12196:1 12198:1 12202:1 12203:1 12218:1 12236:1 12257:1 12258:1 12264:1 12275:1 12323:6 12336:1 12339:1 12341:1 12345:1 12348:1 12357:1 12369:2 12370:4 12391:1 12394:2 12420:1 12451:1 12456:2 12485:1 12505:1 12510:2 12516:1 12524:1 12525:2 12550:1 12566:2 12599:1 12600:1 12652:1 12671:5 12691:1 12692:3 12698:1 12702:1 12710:2 12712:1 12715:1 12719:1 12722:1 12733:1 12741:1 12744:2 12756:2 12765:1 12768:1 12769:1 12771:2 12776:1 12792:1 12798:1 12799:2 12829:1 12834:1 12835:2 12837:1 12870:2 12872:3 12874:1 12875:1 12881:1 12882:2 12883:1 12884:7 12889:4 12891:1 12892:1 12900:2 12904:3 12915:3 12919:1 12924:2 12928:3 12934:1 12954:7 12956:1 12960:1 12964:1 12966:1 12970:2 12979:1 12980:2 12997:2 13019:2 13033:3 13034:1 13049:4 13052:1 13053:1 13062:1 13065:1 13071:1 13084:2 13095:3 13114:1 13119:2 13122:6 13131:1 13136:1 13148:2 13149:2 13150:2 13151:1 13160:3 13174:1 13177:1 13178:2 13190:1 13201:2 13221:1 13237:2 13238:1 13243:1 13249:1 13250:2 13251:2 13252:2 13254:2 13257:1 13270:1 13277:1 13278:1 13283:1 13296:1 13301:1 13302:1 13310:1 13313:1 13314:1 13318:2 13319:1 13330:2 13334:1 13335:1 13352:1 13365:8 13370:2 13371:1 13377:1 13380:1 13411:1 13416:1 13418:1 13434:1 13435:1 13436:2 13439:2 13457:1 13458:2 13461:2 13462:1 13467:5 13493:1 13510:1 13515:1 13518:1 13529:2 13530:3 13535:2 13536:6 13543:2 13560:2 13565:3 13578:1 13589:2 13604:1 13610:2 13612:1 13615:2 13616:1 13620:1 13628:1 13629:2 13633:2 13656:1 13666:1 13679:1 13722:1 13723:1 13728:1 13735:2 13750:1 13769:1 13782:1 13795:1 13829:1 13854:1 13855:1 13880:1 13894:1 13898:3 13907:2 13908:1 13917:1 13920:1 13924:5 13926:1 13927:1 13935:1 13937:1 13951:2 13952:1 13956:1 13970:1 13971:1 13972:1 13985:1 13989:1 14009:2 14035:1 14051:1 14065:1 14070:1 14076:1 14087:1 14091:1 14093:2 14099:1 14106:4 14126:1 14135:1 14142:1 14145:1 14154:2 14158:1 14183:1 14197:1 14225:1 14227:4 14238:1 14255:1 14271:1 14303:1 14368:1 14370:1 14378:1 14385:1 14401:2 14437:4 14443:3 14445:1 14447:1 14450:1 14451:1 14470:1 14475:1 14496:2 14505:1 14522:1 14541:1 14545:2 14546:1 14551:3 14566:1 14577:1 14588:1 14592:2 14596:1 14599:1 14601:1 14624:1 14633:2 14662:1 14665:1 14667:1 14671:1 14678:1 14709:1 14710:1 14756:2 14760:3 14761:4 14766:1 14792:4 14793:1 14796:1 14811:1 14826:4 14828:1 14832:1 14835:1 14840:1 14855:1 14867:1 14870:1 14877:1 14887:3 14894:2 14898:2 14906:2 14909:1 14942:1 14951:2 14970:1 14978:1 14992:1 15006:1 15009:1 15020:1 15021:1 15033:3 15036:1 15058:8 15063:8 15067:1 15073:1 15099:2 15112:1 15113:2 15118:2 15131:3 15134:1 15154:1 15165:1 15171:1 15190:3 15193:1 15194:1 15201:6 15210:3 15221:1 15222:1 15224:2 15230:1 15232:2 15234:1 15236:1 15238:1 15239:5 15243:2 15244:7 15245:1 15250:2 15254:2 15255:1 15263:1 15264:6 15269:4 15300:1 15302:1 15337:1 15345:1 15347:2 15355:1 15356:2 15361:2 15366:5 15375:1 15388:2 15401:1 15403:2 15421:2 15425:2 15442:1 15446:2 15461:1 15465:1 15472:1 15478:1 15488:1 15496:3 15502:8 15513:2 15529:2 15538:1 15540:4 15554:1 15557:1 15566:20 15570:1 15587:1 15596:5 15597:1 15599:1 15620:2 15637:60 15665:3 15669:1 15697:1 15731:1 15733:1 15734:3 15756:1 15758:1 15763:2 15765:1 15766:2 15773:2 15774:4 15776:1 15780:2 15784:1 15797:1 15810:1 15812:1 15815:1 15822:1 15831:1 15832:1 15833:1 15855:1 15857:1 15869:1 15876:1 15896:1 15902:5 15919:1 15934:2 15938:1 15953:1 15961:2 15969:2 15974:1 15988:1 16026:1 16035:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16107:2 16108:1 16116:1 16130:1 16133:1 16137:1 16146:2 16151:4 16153:1 16156:1 16165:1 16167:2 16168:3 16187:3 16190:1 16199:1 16210:1 16215:1 16217:3 16219:1 16220:2 16228:1 16230:1 16237:1 16249:3 16254:1 16255:13 16262:1 16264:1 16289:2 16300:2 16310:1 16311:2 16338:1 16343:1 16348:2 16365:1 16366:2 16369:3 16373:1 16375:3 16378:1 16380:2 16390:1 16395:1 16407:1 16416:1 16421:1 16426:2 16427:2 16446:2 16450:2 16453:1 16459:1 16472:1 16486:1 16491:1 16492:3 16501:1 16517:1 16540:1 16558:1 16562:1 16569:2 16571:1 16582:1 16587:1 16588:2 16589:1 16590:1 16601:1 16608:1 16609:1 16617:2 16623:3 16630:2 16646:1 16649:1 16652:1 16654:3 16658:1 16666:1 16674:1 16676:1 16683:3 16690:1 16704:2 16705:1 16718:1 16721:1 16726:1 16744:2 16765:1 16766:2 16771:1 16777:1 16780:1 16796:4 16845:1 16847:1 16851:1 16860:1 16866:1 16876:1 16877:1 16879:1 16896:5 16899:1 16902:1 16904:1 16911:1 16915:2 16920:1 16921:1 16934:1 16936:2 16940:2 16949:1 16953:1 16954:1 16964:2 16982:1 16987:1 16990:1 16993:1 17010:1 17018:2 17019:2 17055:1 17058:1 17061:1 17077:1 17082:1 17098:1 17103:3 17113:2 17117:1 17128:1 17130:1 17142:2 17187:3 17193:1 17194:1 17196:2 17199:2 17201:1 17219:1 17220:11 17223:2 17235:1 17244:1 17248:2 17275:1 17285:1 17292:1 17294:1 17310:1 17311:2 17317:3 17334:2 17338:2 17341:1 17354:1 17361:1 17363:1 17369:1 17376:1 17392:1 17396:4 17403:2 17404:4 17417:2 17446:1 17448:1 17479:1 17481:1 17501:1 17513:1 17529:3 17531:1 17540:1 17568:1 17571:1 17578:1 17587:1 17595:1 17599:3 17609:2 17616:1 17640:1 17641:1 17646:1 17657:1 17661:1 17666:1 17667:3 17673:1 17714:4 17718:1 17723:2 17750:1 17752:1 17754:4 17760:1 17774:4 17779:1 17782:1 17785:3 17805:1 17806:1 17811:1 17821:1 17823:2 17828:1 17850:1 17856:1 17873:1 17874:1 17912:10 17916:1 17923:1 17930:1 17946:1 17949:1 17961:1 17968:1 17970:1 17978:1 17984:2 17986:1 17998:1 18003:1 18010:1 18013:1 18027:1 18031:5 18035:1 18037:2 18038:1 18052:3 18057:2 18065:2 18066:1 18095:1 18101:3377 18105:1 18118:4 18123:2 18149:1 18157:1 18163:1 18171:1 18178:3 18179:1 18188:1 18214:1 18215:3 18226:1 18234:2 18245:2 18262:1 18267:1 18271:5 18272:2 18298:3 18306:1 18309:1 18311:3 18314:1 18315:1 18331:1 18346:1 18361:1 18362:1 18366:1 18381:1 18408:1 18410:5 18415:1 18429:1 18434:1 18439:1 18444:1 18462:3 18472:1 18481:2 18491:1 18493:1 18505:1 18512:1 18514:1 18515:1 18557:1 18567:1 18569:2 18572:1 18584:4 18599:1 18601:1 18607:1 18618:1 18623:1 18631:1 18667:3 18669:1 18677:1 18679:3 18731:1 18761:1 18780:1 18786:2 18796:1 18799:2 18801:1 18804:2 18813:4 18825:2 18829:1 18830:4 18834:1 18847:4 18859:16 18877:1 18878:1 18880:3 18881:1 18883:20 18892:2 18910:1 18911:5 18912:1 18914:1 18931:1 18936:2 18947:1 18950:4 18968:1 18972:2 18976:1 18978:6 18980:2 18983:1 18987:1 18997:2 18998:1 19000:1 19005:1 19028:1 19034:3 19039:1 19055:1 19067:3 19099:1 19103:1 19106:1 19148:1 19153:1 19176:1 19179:1 19187:1 19206:1 19209:13 19212:1 19220:1 19231:3 19253:1 19256:1 19279:1 19291:1 19299:1 19305:1 19307:7 19326:1 19329:1 19347:2 19357:1 19359:1 19360:1 19383:1 19390:1 19391:1 19394:1 19399:1 19401:2 19402:1 19409:1 19430:1 19436:1 19459:4 19464:1 19470:1 19472:1 19488:3 19489:1 19514:3 19523:1 19525:1 19539:1 19543:2 19545:4 19565:2 19569:1 19574:2 19582:2 19584:1 19591:7 19612:1 19638:1 19644:1 19663:15 19669:1 19677:2 19679:2 19694:1 19695:1 19706:1 19707:13 19724:1 19747:1 19756:1 19774:1 19786:2 19818:1 19822:1 19833:2 19853:4 19854:1 19856:2 19865:1 19870:1 19900:2 19910:1 19918:1 19945:5 19955:1 19957:3 19968:1 19979:1 19986:1 19998:1 20006:1 20022:1 20024:1 20044:2 20078:2 20086:1 20095:1 20099:1 20109:1 20117:1 20120:2 20129:1 20143:1 20145:1 20148:2 20169:1 20177:1 20193:1 20210:3 20217:1 20224:1 20227:2 20230:1 20231:1 20232:1 20235:1 20236:1 20240:1 20245:13 20248:1 20252:1 20257:3 20260:5 20261:1 20279:2 20285:2 20289:5 20299:1 20322:4 20325:1 20327:1 20335:1 20336:1 20352:1 20364:2 20365:1 20366:1 20375:2 20378:1 20396:2 20401:1 20402:1 20413:1 20422:8 20429:1 20432:2 20438:1 20453:1 20490:1 20496:1 20502:1 20505:1 20507:1 20524:2 20528:1 20531:1 20533:1 20538:1 20546:3 20559:1 20561:1 20567:2 20569:1 20572:1 20579:1 20583:1 20585:1 20620:1 20628:2 20647:1 20672:1 20679:1 20712:1 20716:1 20718:4 20720:2 20723:3 20733:4 20741:1 20743:1 20745:1 20773:1 20777:1 20782:1 20786:1 20787:1 20798:1 20804:1 20809:1 20810:1 20822:1 20827:1 20828:1 20838:2 20840:6 20843:3 20856:2 20860:1 20863:1 20870:1 20874:1 20888:1 20924:2 20926:1 20927:2 20934:2 20941:1 20951:1 20952:1 20953:1 20971:1 20973:4 20976:15 20978:1 20992:1 20998:2 20999:2 21003:1 21010:1 21014:1 21019:1 21024:1 21026:1 21037:5 21049:1 21053:1 21080:2 21084:3 21086:1 21090:1 21096:4 21108:1 21120:1 21125:1 21140:1 21141:1 21142:4 21150:2 21156:3 21161:1 21209:1 21231:4 21237:1 21238:1 21239:9 21241:2 21245:2 21252:2 21254:1 21255:1 21266:2 21267:2 21269:1 21272:1 21279:2 21282:2 21283:1 21291:1 21292:1 21293:1 21297:1 21302:1 21306:2 21309:2 21314:1 21334:2 21369:1 21379:5 21380:1 21403:1 21407:1 21412:1 21413:2 21423:2 21425:1 21428:1 21435:1 21439:1 21446:4 21457:1 21464:1 21467:1 21474:1 21515:20 21516:2 21518:1 21537:1 21548:1 21556:1 21569:1 21575:1 21583:1 21594:4 21609:1 21611:1 21613:2 21620:1 21621:1 21623:1 21628:2 21637:1 21642:2 21644:1 21645:1 21648:8 21664:2 21668:4 21679:2 21704:1 21706:2 21712:1 21715:1 21718:2 21732:1 21735:1 21738:1 21743:1 21745:2 21753:1 21754:1 21766:2 21769:1 21781:10 21794:4 21807:4 21819:1 21828:2 21840:1 21860:2 21873:1 21874:1 21895:1 21929:1 21935:1 21941:3 21946:1 21949:1 21959:1 21967:1 21972:1 21989:1 22001:1 22015:1 22021:1 22032:1 22038:1 22041:2 22042:2 22049:15 22051:2 22082:2 22090:1 22099:1 22120:1 22130:3 22132:1 22133:2 22139:1 22154:1 22165:3 22180:1 22185:1 22188:5 22192:1 22223:1 22225:1 22241:1 22246:1 22248:1 22264:2 22279:1 22283:1 22284:1 22290:1 22295:2 22310:1 22322:1 22329:1 22333:1 22344:1 22346:1 22348:2 22355:2 22361:1 22374:1 22414:1 22423:1 22424:1 22425:5 22431:1 22432:1 22436:1 22448:1 22452:1 22453:1 22463:1 22466:1 22471:1 22478:1 22481:2 22496:1 22530:1 22534:2 22548:1 22551:2 22556:1 22564:2 22568:4 22571:1 22572:1 22587:1 22593:1 22607:1 22619:1 22627:3 22628:5 22633:1 22634:1 22646:6 22654:1 22657:1 22665:1 22667:1 22670:1 22672:3 22677:2 22681:1 22683:1 22699:2 22706:1 22707:2 22708:1 22720:1 22748:4 22755:1 22757:24 22759:1 22837:2 22846:1 22847:1 22849:1 22856:1 22872:1 22889:1 22916:3 22922:1 22924:2 22925:1 22937:1 22949:1 22951:1 22957:1 22965:1 22983:1 22986:1 23000:1 23008:1 23022:1 23024:2 23028:1 23059:1 23062:2 23076:1 23077:2 23104:4 23109:1 23117:1 23122:1 23126:1 23152:1 23159:1 23175:1 23177:1 23192:2 23207:3 23215:2 23222:1 23224:1 23227:1 23228:1 23229:2 23246:1 23266:1 23278:1 23284:1 23300:1 23306:1 23313:1 23321:1 23328:1 23334:1 23360:1 23362:1 23389:1 23391:1 23396:1 23397:5 23405:1 23412:1 23413:1 23417:1 23421:3 23434:1 23470:1 23492:1 23510:3 23520:1 23521:1 23558:1 23568:5 23595:1 23633:2 23643:1 23646:1 23655:1 23656:1 23665:1 23666:2 23667:5 23668:1 23689:1 23697:1 23704:2 23707:2 23712:1 23716:3 23722:2 23752:2 23753:2 23766:2 23780:1 23788:1 23791:2 23802:2 23808:1 23820:1 23841:1 23844:1 23860:1 23867:4 23870:1 23879:3 23883:1 23885:1 23890:1 23899:1 23900:1 23908:1 23916:1 23921:1 23933:1 23934:1 23937:1 23944:1 23954:1 23960:1 23971:1 23980:1 23982:2 23998:1 24003:1 24006:2 24011:1 24013:1 24020:1 24027:1 24036:1 24040:1 24050:1 24052:1 24057:1 24059:1 24081:1 24083:1 24086:1 24099:1 24106:2 24144:3 24155:5 24179:1 24191:1 24208:1 24214:1 24224:1 24230:2 24231:1 24234:1 24241:1 24242:5 24252:1 24269:2 24274:1 24275:1 24290:1 24306:1 24325:1 24331:1 24339:4 24359:1 24360:1 24363:1 24367:1 24396:1 24404:2 24406:4 24412:1 24417:1 24420:1 24434:8 24457:1 24473:2 24476:5 24478:1 24484:1 24486:1 24488:4 24491:1 24492:1 24533:1 24534:1 24540:1 24567:1 24572:1 24600:1 24614:1 24620:1 24634:1 24636:1 24637:2 24640:1 24641:1 24644:8 24647:3 24653:1 24678:1 24692:3 24694:1 24697:2 24702:1 24718:1 24728:1 24730:6 24731:1 24740:2 24742:1 24751:4 24760:5 24761:2 24772:2 24782:1 24784:1 24789:1 24797:1 24817:2 24838:1 24841:6 24843:1 24847:1 24854:1 24855:1 24873:2 24883:1 24897:2 24915:3 24928:1 24942:5 24946:1 24967:2 24969:4 24973:1 24990:2 24999:1 25018:1 25051:1 25053:1 25056:1 25061:1 25071:1 25081:1 25085:1 25092:4 25109:1 25117:1 25121:1 25131:1 25135:1 25138:2 25140:1 25143:1 25153:1 25157:2 25160:2 25173:1 25175:1 25179:1 25191:1 25194:1 25200:1 25217:2 25219:1 25228:1 25230:2 25235:1 25242:1 25256:6 25261:1 25262:1 25265:1 25268:2 25277:1 25283:1 25286:1 25289:2 25323:2 25326:1 25332:1 25348:1 25358:1 25360:1 25379:1 25385:1 25387:3 25402:1 25410:10 25414:1 25451:1 25455:1 25478:1 25486:1 25494:1 25514:1 25525:1 25530:1 25537:1 25549:3 25555:1 25560:1 25569:1 25571:2 25586:1 25641:2 25660:3 25681:5 25683:2 25684:1 25688:1 25695:1 25696:2 25698:1 25699:4 25700:9 25703:1 25705:1 25722:1 25742:2 25751:2 25773:1 25782:1 25787:1 25793:4 25801:1 25805:1 25819:1 25826:3 25844:1 25852:1 25856:1 25861:2 25867:1 25879:1 25905:1 25910:1 25916:1 25955:1 25957:1 25967:1 26008:1 26023:1 26032:1 26042:1 26051:1 26067:1 26069:2 26075:1 26104:2 26110:2 26120:2 26137:1 26151:1 26158:1 26189:1 26196:1 26201:1 26216:2 26218:2 26228:2 26254:1 26272:2 26281:1 26285:2 26289:5 26299:1 26301:1 26303:9 26331:2 26332:1 26389:1 26397:24 26398:1 26400:3 26401:1 26410:1 26420:1 26430:4 26450:1 26452:1 26454:1 26495:1 26503:2 26505:3 26509:4 26510:2 26514:1 26519:1 26544:2 26546:1 26548:1 26549:1 26555:2 26557:2 26559:2 26563:1 26569:1 26570:1 26571:1 26576:3 26581:1 26588:3 26590:1 26612:2 26624:1 26638:1 26641:2 26651:1 26664:2 26666:1 26686:1 26689:1 26690:1 26711:1 26715:2 26716:1 26725:1 26765:1 26766:1 26789:2 26792:1 26794:1 26797:1 26807:3 26808:1 26810:2 26829:2 26843:1 26869:9 26874:1 26879:1 26889:1 26894:1 26909:1 26919:1 26954:3 26963:3 26977:1 26986:2 26989:1 26993:1 27017:1 27025:1 27035:1 27038:3 27044:1 27071:2 27075:1 27080:1 27083:1 27108:5 27111:4 27134:1 27135:1 27143:1 27145:1 27157:1 27162:1 27171:1 27177:1 27213:1 27216:1 27217:1 27228:4 27231:1 27239:1 27248:1 27256:3 27259:1 27271:1 27279:2 27280:27 27281:2 27283:2 27287:4 27289:1 27290:1 27300:1 27315:1 27316:13 27326:1 27329:1 27337:1 27364:1 27368:2 27372:1 27373:2 27381:1 27383:2 27394:1 27401:1 27405:4 27414:4 27419:2 27447:3 27448:1 27450:1 27452:2 27458:1 27462:1 27465:1 27477:1 27492:1 27495:1 27496:1 27519:1 27549:1 27550:1 27558:2 27561:1 27562:1 27590:1 27591:1 27594:1 27611:1 27619:1 27620:1 27627:1 27629:1 27633:2 27636:1 27638:4 27641:2 27644:1 27661:2 27666:1 27676:1 27692:8 27695:1 27697:1 27705:4 27708:1 27743:1 27745:1 27749:1 27772:3 27773:8 27775:1 27776:1 27780:1 27783:1 27799:1 27804:2 27805:2 27814:1 27818:1 27828:1 27834:2 27835:1 27842:1 27864:3 27879:1 27895:1 27914:3 27920:1 27922:1 27926:2 27927:1 27951:2 27961:1 27963:5 27968:1 27971:1 27977:5 27984:1 27994:2 28018:1 28026:1 28046:1 28053:1 28067:1 28081:1 28106:3 28108:1 28122:1 28138:4 28169:2 28172:1 28176:1 28185:1 28210:1 28217:2 28222:1 28229:3 28237:1 28265:1 28283:1 28292:3 28297:1 28300:1 28314:1 28326:2 28336:1 28341:1 28343:6 28344:1 28352:1 28364:2 28380:2 28391:1 28395:2 28397:1 28420:1 28430:5 28437:2 28442:1 28496:1 28499:1 28503:1 28504:1 28507:1 28509:1 28511:5 28516:1 28523:1 28530:1 28554:1 28560:2 28566:1 28569:1 28574:1 28575:1 28576:1 28579:1 28587:2 28618:1 28629:1 16 6:1 10:1 26:1 27:2 29:1 44:1 69:1 78:1 83:4 100:1 106:1 137:1 147:1 153:1 162:1 165:1 172:1 175:2 176:1 201:1 206:1 211:1 213:1 230:1 235:4 239:1 254:2 283:1 286:1 296:4 300:1 318:1 327:1 336:2 337:3 338:1 364:1 372:1 375:1 382:1 399:1 407:2 418:1 442:3 445:2 449:2 460:1 471:1 478:1 489:2 504:1 507:1 509:1 514:1 523:1 526:2 552:1 553:1 567:5 603:1 614:1 617:3 627:3 634:1 648:2 654:1 661:4 665:1 671:1 676:1 684:1 685:1 688:1 699:1 707:1 713:1 724:1 735:1 747:2 757:2 768:1 772:1 787:1 803:1 805:1 809:1 813:1 824:1 826:1 828:1 843:2 852:1 856:2 872:2 902:2 907:1 910:2 913:1 915:1 924:2 933:2 934:2 939:3 940:1 941:3 942:6 943:2 944:2 947:2 963:1 966:2 978:1 982:1 983:1 985:6 987:2 1010:1 1015:2 1020:1 1052:1 1059:2 1062:1 1081:1 1086:1 1089:1 1108:2 1116:1 1125:2 1170:1 1171:3 1174:1 1175:1 1184:1 1187:1 1192:2 1200:1 1201:4 1217:2 1222:1 1227:1 1237:1 1239:3 1259:1 1263:1 1267:1 1269:2 1275:4 1278:1 1279:1 1289:5 1290:2 1292:1 1302:3 1306:1 1316:1 1319:1 1321:1 1331:1 1333:1 1335:3 1346:2 1356:1 1375:2 1379:1 1404:1 1413:1 1415:2 1438:3 1440:1 1446:1 1448:1 1451:1 1453:2 1464:1 1475:1 1484:6 1493:1 1497:1 1501:6 1513:2 1521:2 1522:1 1525:3 1531:1 1535:1 1541:1 1544:4 1560:1 1569:1 1571:1 1572:5 1583:1 1587:2 1591:2 1594:1 1596:1 1601:2 1603:1 1621:2 1628:1 1632:4 1637:4 1640:2 1641:1 1653:1 1654:1 1657:1 1672:5 1675:3 1678:1 1683:1 1684:1 1692:1 1698:2 1706:1 1722:1 1731:1 1733:1 1743:2 1745:1 1746:1 1747:1 1751:1 1758:3 1766:2 1779:1 1784:1 1789:1 1790:1 1809:1 1810:1 1816:1 1820:1 1824:1 1825:1 1831:1 1837:2 1844:1 1849:1 1853:1 1860:1 1861:1 1865:1 1868:1 1877:1 1882:1 1883:1 1884:1 1889:1 1895:1 1901:1 1903:2 1904:4 1908:1 1910:1 1912:1 1914:1 1921:1 1929:1 1930:3 1931:1 1933:1 1950:1 1953:1 1958:1 1978:1 1986:1 2001:1 2006:1 2015:2 2017:2 2019:1 2020:2 2022:1 2023:3 2044:1 2049:1 2054:2 2072:1 2074:3 2075:1 2076:2 2077:1 2078:1 2101:1 2108:4 2126:2 2133:1 2156:1 2158:1 2164:1 2170:1 2174:3 2188:1 2191:1 2227:2 2228:1 2229:1 2230:2 2232:4 2237:1 2238:6 2240:1 2241:1 2244:5 2245:1 2246:4 2248:1 2251:1 2253:1 2256:6 2259:3 2260:7 2272:1 2273:2 2277:1 2290:1 2303:1 2308:1 2321:1 2327:2 2331:1 2334:1 2336:3 2340:1 2346:1 2354:1 2359:2 2361:1 2374:1 2391:1 2413:5 2423:1 2437:1 2448:2 2474:1 2483:1 2486:1 2488:1 2495:1 2526:1 2531:1 2556:1 2582:2 2587:1 2595:4 2596:1 2602:1 2607:4 2615:1 2622:2 2623:1 2630:1 2633:1 2635:3 2637:10 2651:1 2653:1 2659:1 2662:2 2668:1 2670:1 2674:1 2677:1 2684:3 2689:1 2690:1 2713:2 2721:2 2731:2 2738:1 2739:1 2741:5 2747:2 2755:1 2792:4 2795:1 2798:1 2799:1 2804:1 2818:11 2828:7 2837:1 2857:2 2869:1 2875:1 2885:30 2899:2 2903:1 2907:1 2918:1 2919:1 2920:1 2936:1 2956:1 2962:2 2970:1 2981:1 2986:2 2987:1 2989:2 3028:1 3037:3 3041:1 3053:1 3059:1 3062:2 3070:1 3085:1 3105:1 3106:1 3107:1 3116:1 3117:1 3122:1 3129:2 3133:4 3141:1 3151:12 3153:2 3168:1 3173:1 3181:1 3191:1 3208:1 3218:1 3219:7 3254:1 3281:1 3283:1 3293:1 3301:1 3303:2 3319:2 3327:1 3330:1 3340:1 3348:1 3361:3 3369:2 3373:1 3377:1 3388:4 3417:1 3423:1 3426:1 3427:3 3430:1 3441:1 3442:1 3453:3 3491:1 3502:1 3505:1 3511:1 3512:4 3513:2 3519:2 3521:1 3522:1 3535:2 3543:1 3550:1 3569:1 3588:1 3598:1 3603:2 3606:4 3608:1 3625:1 3643:1 3651:4 3652:43 3659:1 3677:2 3678:1 3679:9 3681:1 3686:1 3687:2 3688:26 3689:1 3691:4 3697:2 3706:3 3709:1 3718:2 3721:3 3724:2 3725:2 3740:2 3742:1 3743:1 3755:1 3769:2 3776:1 3777:3 3781:1 3783:1 3788:1 3808:1 3811:2 3813:1 3815:1 3816:3 3826:2 3838:2 3840:1 3844:1 3853:1 3866:2 3873:1 3889:1 3891:1 3900:1 3901:2 3904:1 3905:1 3911:1 3915:2 3918:1 3920:1 3925:4 3939:4 3953:1 3985:1 3993:1 3995:1 4031:1 4036:1 4052:1 4056:3 4062:1 4086:1 4090:1 4101:2 4106:1 4107:2 4109:1 4110:1 4137:1 4143:2 4153:1 4156:1 4169:3 4184:1 4199:1 4209:1 4221:1 4234:13 4250:1 4269:1 4277:1 4302:2 4306:1 4313:5 4322:1 4325:2 4335:2 4347:7 4351:1 4372:1 4380:1 4383:1 4386:1 4393:1 4435:1 4448:1 4449:2 4470:1 4474:1 4484:1 4489:1 4499:2 4515:2 4519:1 4522:2 4533:1 4543:4 4554:1 4563:3 4584:2 4585:1 4586:1 4609:1 4653:1 4654:1 4659:1 4660:2 4671:1 4685:1 4689:1 4693:2 4701:2 4742:1 4754:1 4779:1 4782:1 4785:1 4792:16 4793:2 4804:1 4824:2 4848:1 4850:2 4860:1 4865:1 4870:1 4893:3 4902:3 4903:1 4905:4 4925:2 4926:3 4927:8 4928:1 4929:1 4930:1 4932:1 4933:2 4935:1 4939:1 4940:22 4941:1 4943:1 4948:2 4949:3 4956:2 4957:1 4972:1 4975:3 4995:1 5031:2 5045:1 5053:1 5058:1 5120:1 5144:3 5145:3 5152:5 5158:1 5181:1 5190:1 5195:1 5209:1 5213:2 5214:22 5227:1 5242:1 5250:3 5252:1 5280:3 5317:1 5319:1 5330:1 5343:1 5355:1 5359:1 5361:2 5370:1 5375:1 5379:1 5386:1 5388:1 5390:2 5392:1 5395:1 5431:1 5433:1 5437:1 5446:1 5447:1 5448:2 5465:3 5474:1 5479:1 5489:2 5494:1 5497:1 5502:1 5503:2 5509:1 5521:1 5523:1 5525:1 5561:1 5562:1 5565:5 5588:2 5595:1 5604:1 5614:1 5618:1 5620:1 5624:1 5631:1 5635:1 5643:1 5646:1 5653:1 5654:1 5656:1 5659:2 5660:1 5662:1 5674:1 5675:1 5679:1 5683:1 5697:1 5701:1 5702:1 5703:1 5707:1 5720:1 5731:1 5745:1 5766:3 5791:1 5794:5 5796:1 5803:1 5808:1 5817:1 5846:1 5860:2 5894:1 5903:1 5924:1 5931:3 5932:8 5941:1 5945:2 5971:2 5976:1 5977:1 5980:1 6003:1 6020:1 6024:1 6026:1 6034:2 6038:1 6042:2 6043:1 6046:1 6047:1 6057:1 6079:4 6086:1 6087:2 6088:2 6126:1 6127:3 6129:1 6136:1 6151:5 6153:1 6165:1 6166:1 6168:1 6177:1 6181:1 6184:1 6194:1 6239:6 6242:2 6243:1 6244:1 6247:1 6248:1 6250:2 6251:2 6254:2 6255:3 6256:5 6262:2 6264:7 6265:1 6266:1 6267:2 6275:1 6298:1 6325:3 6329:1 6356:1 6357:1 6358:1 6392:1 6394:1 6398:1 6404:1 6410:2 6413:1 6424:1 6446:1 6450:1 6454:1 6463:1 6494:1 6507:3 6508:1 6513:2 6523:1 6533:5 6535:1 6539:3 6547:1 6550:1 6557:1 6558:1 6566:2 6580:1 6582:3 6586:2 6598:2 6603:1 6604:1 6606:1 6615:1 6639:1 6657:1 6661:1 6665:1 6670:1 6677:2 6679:3 6684:1 6685:2 6687:1 6695:3 6699:2 6704:3 6711:3 6718:1 6731:1 6739:3 6745:1 6780:1 6783:2 6789:1 6791:1 6795:1 6799:2 6803:1 6819:3 6835:1 6857:2 6860:1 6876:2 6893:1 6896:2 6909:1 6930:1 6954:2 6970:1 6974:1 6982:1 6996:1 7000:5 7003:1 7010:3 7015:1 7016:1 7027:1 7036:1 7049:1 7080:1 7126:1 7134:1 7145:1 7153:1 7180:1 7196:1 7204:1 7213:1 7221:5 7267:1 7269:1 7275:3 7290:2 7307:4 7343:2 7360:2 7377:1 7378:1 7387:2 7406:1 7411:1 7419:1 7420:1 7430:1 7433:1 7437:4 7446:1 7466:1 7477:4 7478:5 7479:2 7496:1 7499:2 7502:2 7505:1 7512:1 7530:1 7531:2 7544:1 7547:1 7548:43 7549:1 7550:1 7555:2 7567:11 7568:26 7578:1 7579:1 7582:1 7586:1 7588:1 7590:1 7595:1 7615:1 7616:5 7638:1 7653:1 7668:1 7672:2 7689:2 7705:1 7742:3 7746:7 7750:1 7780:1 7786:1 7788:5 7802:1 7805:1 7826:1 7837:1 7851:1 7858:1 7862:1 7910:3 7921:1 7926:1 7928:7 7936:2 7942:1 7951:1 7960:2 7973:1 7977:2 7983:1 7998:1 7999:1 8006:18 8026:1 8031:1 8037:2 8039:1 8049:1 8063:2 8092:1 8098:1 8107:2 8116:1 8127:2 8139:1 8140:1 8154:1 8167:1 8170:3 8176:4 8181:2 8194:2 8196:1 8199:4 8213:2 8214:1 8215:2 8220:1 8231:1 8233:2 8241:2 8251:1 8260:2 8263:2 8269:1 8274:1 8276:1 8277:1 8294:2 8308:1 8319:3 8327:1 8336:1 8342:1 8345:1 8349:1 8354:1 8357:2 8358:1 8359:3 8360:2 8361:2 8362:5 8365:1 8370:2 8373:2 8375:2 8381:3 8396:1 8402:2 8412:2 8420:1 8421:1 8427:1 8428:1 8440:1 8450:1 8455:2 8462:1 8469:2 8475:3 8492:1 8496:5 8517:5 8526:1 8528:1 8531:2 8550:1 8556:1 8583:2 8595:1 8596:1 8603:1 8609:3 8616:3 8617:1 8621:1 8637:1 8640:2 8667:4 8668:2 8675:4 8676:1 8677:1 8678:4 8680:3 8687:2 8688:2 8706:3 8707:1 8709:2 8711:4 8725:1 8727:1 8743:2 8748:1 8763:1 8798:1 8813:1 8827:2 8835:1 8838:1 8853:2 8854:2 8863:1 8868:1 8880:1 8882:1 8895:1 8903:1 8918:1 8919:1 8926:2 8935:1 8957:1 8962:3 8974:1 8978:1 8991:2 8994:1 8995:4 9006:1 9008:1 9015:7 9035:2 9039:3 9042:1 9049:1 9055:1 9071:1 9078:1 9088:3 9091:1 9110:1 9111:1 9124:1 9156:1 9160:1 9201:1 9219:1 9240:1 9243:1 9246:3 9252:2 9253:1 9263:1 9264:2 9278:1 9292:2 9294:1 9298:2 9322:1 9325:3 9328:1 9337:1 9350:1 9375:22 9383:1 9399:1 9408:2 9420:4 9428:2 9434:1 9437:1 9448:1 9455:1 9456:1 9459:1 9467:2 9484:2 9492:1 9494:1 9511:14 9526:2 9529:1 9535:2 9550:1 9569:5 9575:1 9580:1 9586:3 9587:1 9590:1 9603:1 9614:1 9620:1 9622:1 9651:2 9655:3 9656:1 9666:1 9690:8 9696:2 9697:4 9698:2 9706:3 9707:1 9717:1 9726:2 9730:3 9733:1 9734:1 9739:2 9744:2 9748:4 9751:4 9753:1 9754:1 9761:1 9770:1 9780:3 9785:3 9795:1 9797:2 9809:1 9817:2 9830:1 9848:1 9853:3 9855:1 9873:12 9875:1 9876:6 9883:1 9885:1 9888:1 9909:1 9967:1 9971:2 9976:1 9986:1 9998:2 10018:4 10023:1 10035:4 10050:1 10055:1 10081:1 10084:1 10103:1 10121:1 10137:2 10149:5 10155:1 10159:1 10163:1 10173:2 10181:1 10191:1 10209:2 10215:7 10226:1 10227:1 10230:1 10251:1 10258:2 10276:3 10278:2 10281:2 10288:1 10297:6 10304:1 10311:2 10312:4 10313:1 10314:3 10320:1 10328:1 10330:1 10334:1 10355:1 10356:3 10369:1 10374:1 10383:4 10394:1 10396:2 10401:1 10405:2 10413:7 10417:1 10463:1 10464:1 10470:1 10475:1 10495:2 10498:1 10499:2 10503:1 10509:1 10510:1 10524:2 10531:1 10534:1 10545:1 10549:1 10588:1 10591:1 10595:1 10604:1 10620:2 10621:1 10634:1 10635:7 10649:4 10650:7 10663:2 10666:1 10670:1 10672:1 10679:1 10684:2 10692:1 10699:4 10702:1 10727:2 10729:1 10730:1 10740:1 10742:2 10747:5 10759:1 10767:3 10774:1 10779:3 10795:1 10810:1 10811:1 10814:1 10839:1 10841:1 10843:2 10844:1 10846:1 10860:1 10876:1 10892:1 10894:1 10899:1 10900:1 10901:1 10904:1 10905:4 10906:1 10907:1 10926:1 10931:1 10941:1 10945:2 10961:1 10965:1 10970:1 10971:1 10996:2 11019:1 11021:4 11029:2 11032:1 11039:2 11047:1 11054:1 11073:1 11080:1 11081:4 11112:1 11116:3 11118:6 11120:1 11122:1 11147:1 11169:1 11172:1 11180:1 11186:2 11198:1 11218:3 11232:1 11238:1 11242:1 11245:1 11248:5 11261:3 11263:1 11277:2 11278:3 11280:2 11286:1 11296:1 11299:1 11315:3 11322:1 11328:3 11335:2 11336:9 11337:1 11348:1 11349:1 11354:1 11355:1 11358:1 11359:1 11367:1 11368:3 11370:1 11372:7 11373:1 11374:1 11381:1 11383:7 11392:1 11394:1 11399:1 11401:1 11406:10 11422:2 11431:5 11435:1 11441:2 11446:1 11455:1 11475:1 11476:1 11486:4 11492:1 11496:1 11498:1 11499:2 11530:1 11534:1 11544:3 11557:1 11563:1 11566:2 11575:1 11615:2 11616:2 11633:2 11649:2 11651:1 11683:1 11691:5 11734:2 11737:2 11749:1 11754:1 11761:1 11764:1 11765:1 11766:1 11768:1 11786:4 11787:4 11788:22 11793:1 11797:6 11806:1 11812:1 11813:2 11823:2 11837:2 11859:1 11879:2 11904:1 11930:1 11938:9 11939:2 11955:1 11958:4 11959:1 11963:2 11984:1 12016:3 12019:1 12040:1 12047:1 12054:2 12058:1 12064:1 12069:1 12081:2 12115:2 12134:4 12148:1 12187:1 12189:3 12196:1 12198:1 12202:1 12203:1 12218:1 12236:1 12257:1 12258:1 12264:1 12266:1 12275:1 12323:6 12336:1 12339:1 12341:1 12345:1 12348:1 12357:1 12369:2 12370:4 12391:1 12394:3 12420:1 12451:1 12456:2 12485:1 12505:1 12510:2 12516:1 12524:1 12525:2 12550:1 12566:2 12599:1 12600:1 12652:1 12671:5 12673:1 12691:1 12692:3 12698:1 12702:1 12710:2 12712:1 12715:1 12719:1 12722:1 12733:1 12741:1 12744:2 12756:2 12765:1 12768:1 12769:1 12771:2 12776:1 12792:1 12798:1 12799:2 12829:1 12834:1 12835:2 12837:1 12870:2 12872:3 12874:1 12875:1 12881:1 12882:2 12883:1 12884:7 12889:4 12891:1 12892:1 12900:2 12904:3 12915:3 12919:1 12924:2 12928:3 12934:1 12954:7 12956:1 12960:1 12964:1 12966:1 12970:3 12979:1 12980:2 12997:2 13019:2 13033:3 13034:1 13049:4 13052:1 13053:1 13062:1 13065:1 13071:1 13084:2 13095:3 13114:1 13117:1 13119:2 13122:6 13131:1 13136:1 13148:2 13149:2 13150:2 13151:1 13160:3 13174:1 13177:1 13178:2 13190:1 13201:2 13221:1 13237:2 13238:1 13243:1 13249:1 13250:2 13251:2 13252:2 13254:2 13257:1 13270:1 13277:1 13278:1 13283:1 13296:1 13301:1 13302:1 13310:1 13313:1 13314:1 13318:2 13319:1 13330:2 13334:1 13335:1 13352:1 13365:8 13370:2 13371:1 13377:1 13380:1 13411:1 13416:1 13418:1 13434:1 13435:1 13436:2 13439:2 13457:1 13458:2 13461:2 13462:1 13467:5 13493:1 13510:1 13515:1 13518:1 13529:2 13530:3 13535:2 13536:6 13543:2 13560:2 13565:3 13578:1 13589:2 13604:1 13610:2 13612:1 13615:2 13616:1 13620:1 13628:1 13629:2 13633:2 13656:1 13666:1 13679:1 13722:1 13723:1 13728:1 13735:2 13750:1 13769:1 13782:1 13795:1 13829:1 13854:1 13855:1 13880:1 13894:1 13898:3 13907:2 13908:1 13917:1 13920:1 13924:5 13926:1 13927:1 13935:1 13937:1 13951:2 13952:1 13956:1 13970:1 13971:1 13972:1 13985:1 13989:1 14009:2 14013:1 14035:1 14051:1 14065:1 14070:1 14076:1 14087:1 14091:1 14093:2 14099:1 14106:4 14126:1 14135:1 14142:1 14145:1 14154:2 14158:1 14183:1 14197:1 14225:1 14227:4 14238:1 14255:1 14271:1 14303:1 14368:1 14370:1 14378:1 14385:1 14401:2 14437:4 14443:3 14445:2 14447:1 14450:1 14451:1 14470:1 14475:1 14496:2 14505:1 14522:1 14541:1 14545:2 14546:1 14551:3 14566:1 14577:1 14588:1 14592:2 14596:1 14599:1 14601:1 14624:1 14633:2 14662:1 14665:1 14667:1 14670:1 14671:1 14678:1 14709:1 14710:1 14747:1 14756:2 14760:3 14761:4 14766:1 14792:4 14793:1 14796:1 14811:1 14826:4 14828:2 14832:1 14835:1 14840:1 14855:1 14867:1 14870:1 14877:1 14887:3 14894:2 14898:2 14906:2 14909:1 14942:1 14951:2 14970:1 14978:1 14992:1 15006:1 15009:1 15020:1 15021:1 15033:3 15036:1 15058:9 15063:8 15067:1 15073:1 15099:2 15112:1 15113:2 15118:2 15131:3 15134:1 15154:1 15158:1 15165:1 15171:1 15190:3 15193:1 15194:1 15201:6 15210:3 15221:1 15222:1 15224:2 15230:1 15232:3 15234:1 15236:1 15238:1 15239:5 15243:2 15244:7 15245:1 15250:2 15254:2 15255:1 15263:1 15264:6 15269:4 15300:1 15302:1 15337:1 15345:1 15347:2 15355:1 15356:2 15361:2 15366:6 15375:1 15388:2 15401:1 15403:2 15421:2 15425:3 15442:1 15446:2 15461:1 15465:1 15472:1 15478:1 15488:1 15496:3 15502:8 15513:2 15529:2 15538:1 15540:4 15554:1 15557:1 15566:22 15570:1 15587:1 15596:5 15597:1 15599:1 15620:2 15637:65 15665:3 15669:1 15697:1 15731:1 15733:1 15734:3 15756:1 15758:1 15763:2 15765:1 15766:2 15773:2 15774:4 15776:1 15780:2 15784:2 15797:1 15810:1 15812:1 15815:1 15822:1 15831:1 15832:1 15833:1 15855:1 15857:1 15869:1 15876:1 15896:1 15902:5 15919:1 15934:2 15938:1 15953:1 15961:2 15969:2 15974:1 15988:1 16026:1 16035:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16107:2 16108:1 16116:1 16130:1 16133:1 16137:1 16146:2 16151:4 16153:1 16156:1 16165:1 16167:2 16168:3 16187:3 16190:1 16199:1 16210:1 16215:1 16217:3 16219:1 16220:2 16228:1 16230:1 16237:1 16249:3 16254:1 16255:13 16262:1 16264:1 16289:2 16300:2 16310:1 16311:2 16338:1 16343:1 16348:2 16365:1 16366:2 16369:3 16373:1 16375:3 16378:1 16380:2 16390:1 16395:1 16407:1 16416:1 16421:1 16426:2 16427:2 16446:2 16450:2 16453:1 16459:1 16472:1 16486:1 16491:1 16492:3 16501:1 16517:1 16540:1 16558:1 16562:1 16569:2 16571:1 16582:1 16587:1 16588:2 16589:1 16590:1 16601:1 16608:1 16609:1 16617:2 16623:3 16630:2 16646:1 16649:1 16652:1 16654:3 16658:1 16666:1 16674:1 16676:1 16683:3 16690:1 16704:2 16705:1 16718:1 16721:1 16726:1 16744:2 16765:1 16766:2 16771:1 16777:1 16780:1 16796:4 16845:1 16847:1 16851:1 16860:1 16866:1 16876:1 16877:1 16879:1 16896:5 16899:1 16902:1 16904:1 16911:1 16915:2 16920:1 16921:1 16934:1 16936:2 16940:2 16949:1 16953:1 16954:1 16964:2 16982:1 16987:1 16990:1 16993:1 17010:1 17018:2 17019:2 17055:1 17058:1 17061:1 17077:1 17082:1 17098:1 17103:3 17113:2 17117:1 17128:1 17130:1 17142:3 17187:3 17193:1 17194:1 17196:2 17199:2 17201:2 17202:1 17219:1 17220:13 17223:2 17235:1 17244:1 17248:2 17275:1 17285:1 17292:1 17294:1 17310:1 17311:2 17317:3 17334:2 17338:2 17341:1 17354:1 17361:1 17363:1 17369:1 17376:1 17392:1 17396:4 17403:2 17404:4 17417:2 17446:1 17448:1 17479:1 17481:1 17501:1 17513:1 17529:3 17531:1 17540:1 17568:1 17571:1 17578:1 17584:1 17587:1 17595:1 17599:3 17609:2 17616:1 17640:1 17641:1 17646:1 17657:1 17661:1 17666:1 17667:3 17673:1 17714:4 17718:1 17723:2 17750:1 17752:1 17754:4 17760:1 17774:4 17779:1 17782:1 17785:3 17805:1 17806:1 17811:1 17821:1 17823:2 17828:1 17850:1 17856:1 17873:1 17874:1 17912:10 17916:1 17923:1 17930:1 17946:1 17949:1 17961:1 17968:1 17970:1 17978:1 17980:1 17984:2 17986:1 17998:1 18003:1 18010:1 18013:2 18027:1 18031:5 18035:1 18037:2 18038:1 18052:3 18057:2 18065:2 18066:1 18095:1 18101:3492 18105:1 18118:4 18123:2 18149:1 18157:1 18163:2 18171:1 18178:3 18179:1 18188:1 18214:1 18215:3 18226:1 18234:2 18245:2 18262:1 18267:1 18271:5 18272:2 18298:3 18306:1 18309:1 18311:3 18314:1 18315:1 18331:1 18346:1 18361:1 18362:1 18366:1 18381:1 18408:1 18410:5 18415:1 18429:1 18434:1 18439:1 18444:1 18462:3 18472:1 18481:2 18491:1 18493:1 18505:1 18512:1 18514:1 18515:1 18557:1 18567:1 18569:2 18572:1 18584:4 18599:2 18601:1 18607:1 18618:1 18623:1 18631:1 18667:4 18669:1 18677:1 18679:3 18731:1 18761:1 18780:1 18786:2 18796:1 18799:2 18801:1 18804:2 18813:4 18825:2 18829:1 18830:4 18834:1 18847:4 18859:16 18877:1 18878:1 18880:3 18881:1 18883:22 18892:2 18910:1 18911:5 18912:1 18914:1 18931:1 18936:2 18947:1 18950:4 18968:1 18972:2 18976:1 18978:6 18980:2 18983:1 18987:1 18997:2 18998:1 19000:1 19005:1 19028:1 19034:3 19039:1 19055:1 19067:3 19099:1 19103:1 19106:1 19148:1 19153:1 19176:1 19179:1 19187:1 19206:1 19209:13 19212:1 19220:1 19231:3 19253:1 19256:1 19279:1 19291:1 19299:1 19305:1 19307:7 19326:1 19329:1 19347:2 19357:1 19359:1 19360:1 19378:1 19383:1 19390:1 19391:1 19394:2 19399:1 19401:2 19402:1 19409:2 19430:1 19436:1 19459:4 19464:1 19470:1 19472:1 19488:3 19489:1 19514:3 19523:1 19525:1 19539:1 19543:2 19545:5 19565:2 19569:1 19574:2 19582:2 19584:1 19591:7 19612:1 19638:1 19644:1 19663:15 19669:1 19677:2 19679:2 19694:1 19695:1 19706:1 19707:13 19724:1 19747:1 19756:1 19774:1 19786:2 19818:1 19822:1 19833:2 19853:4 19854:1 19856:2 19865:1 19870:1 19900:2 19910:1 19918:1 19945:5 19955:1 19957:3 19968:1 19979:1 19986:1 19998:1 20006:1 20022:1 20024:1 20044:2 20078:2 20086:1 20095:1 20099:1 20109:1 20117:1 20120:2 20129:1 20143:1 20145:1 20148:2 20169:1 20177:1 20193:1 20210:3 20217:1 20224:1 20227:2 20230:1 20231:1 20232:1 20235:1 20236:1 20240:1 20245:13 20248:1 20252:1 20257:3 20260:5 20261:1 20279:3 20285:2 20289:5 20299:1 20322:4 20325:1 20327:1 20335:1 20336:1 20352:1 20364:2 20365:1 20366:1 20375:2 20378:1 20396:2 20401:1 20402:1 20413:1 20422:8 20429:1 20432:2 20438:1 20453:1 20490:1 20496:1 20502:1 20505:1 20507:1 20524:2 20528:1 20531:1 20533:1 20538:1 20546:3 20559:1 20561:1 20567:2 20569:1 20572:1 20579:1 20583:1 20585:1 20620:1 20628:2 20647:1 20672:1 20678:1 20679:1 20712:1 20716:1 20718:4 20720:2 20723:3 20733:4 20741:1 20743:1 20745:1 20773:1 20777:1 20782:1 20786:1 20787:1 20798:1 20804:1 20809:1 20810:1 20815:1 20822:1 20827:1 20828:1 20838:2 20840:6 20843:3 20856:2 20860:1 20861:1 20863:1 20870:1 20874:1 20880:1 20888:1 20924:2 20926:1 20927:2 20934:2 20941:1 20951:1 20952:1 20953:1 20971:1 20973:4 20976:17 20978:1 20992:1 20998:2 20999:2 21003:1 21010:1 21014:1 21019:1 21024:1 21026:1 21037:5 21049:1 21053:1 21080:2 21084:3 21086:1 21090:1 21096:4 21108:1 21120:1 21125:1 21140:1 21141:1 21142:4 21150:2 21156:3 21161:1 21209:1 21231:4 21237:2 21238:1 21239:11 21241:2 21245:2 21252:2 21254:1 21255:1 21266:2 21267:2 21269:1 21272:1 21279:2 21282:2 21283:1 21291:1 21292:1 21293:1 21297:1 21302:1 21306:2 21309:2 21314:1 21334:2 21369:1 21379:5 21380:1 21403:1 21407:1 21412:1 21413:2 21423:2 21425:1 21428:1 21435:1 21439:1 21444:1 21446:4 21457:1 21464:1 21467:1 21474:1 21515:22 21516:2 21518:1 21537:1 21548:1 21556:1 21569:1 21575:1 21583:1 21594:4 21609:1 21611:1 21613:2 21620:1 21621:1 21623:1 21628:2 21637:1 21642:2 21644:1 21645:1 21648:8 21664:2 21668:4 21679:2 21704:1 21706:2 21712:1 21715:1 21718:2 21732:1 21735:1 21738:1 21743:1 21745:2 21753:1 21754:1 21766:2 21769:1 21781:10 21794:4 21807:4 21819:1 21828:2 21840:1 21860:2 21873:1 21874:1 21895:1 21914:1 21929:1 21935:1 21941:3 21946:1 21949:1 21959:1 21967:1 21972:1 21989:1 22001:1 22015:1 22021:1 22032:1 22038:1 22040:1 22041:2 22042:2 22049:15 22051:2 22082:2 22090:1 22099:1 22120:1 22130:3 22132:1 22133:2 22139:1 22154:1 22165:3 22180:1 22185:1 22188:5 22192:1 22223:1 22225:1 22241:1 22246:1 22248:1 22264:2 22279:1 22283:1 22284:1 22290:1 22295:2 22310:1 22322:1 22329:1 22333:1 22344:1 22346:1 22348:2 22355:2 22361:1 22374:1 22414:1 22423:1 22424:1 22425:5 22431:1 22432:1 22436:1 22448:1 22452:1 22453:1 22463:2 22466:1 22471:1 22478:1 22481:2 22496:1 22530:1 22534:2 22548:1 22551:2 22556:1 22564:2 22568:4 22571:1 22572:1 22587:1 22593:1 22607:1 22619:1 22627:3 22628:5 22633:1 22634:1 22646:6 22654:1 22657:1 22665:1 22667:1 22670:1 22672:3 22677:2 22681:1 22683:1 22699:2 22706:1 22707:2 22708:1 22720:1 22748:5 22755:1 22757:27 22759:1 22837:2 22844:1 22846:1 22847:1 22849:1 22856:1 22872:1 22889:1 22916:3 22922:1 22924:2 22925:1 22937:1 22949:1 22951:1 22957:1 22965:1 22983:1 22986:1 23000:1 23008:1 23022:1 23024:2 23028:1 23059:1 23062:2 23076:1 23077:2 23089:1 23104:4 23109:1 23117:1 23122:1 23126:1 23152:1 23159:1 23175:1 23177:1 23192:2 23207:3 23215:2 23222:1 23224:1 23227:1 23228:1 23229:2 23246:1 23266:1 23278:1 23284:1 23300:1 23306:1 23313:1 23321:1 23328:1 23334:2 23360:1 23362:1 23389:1 23391:1 23396:1 23397:5 23405:1 23412:1 23413:1 23417:1 23421:3 23434:2 23470:1 23492:1 23494:1 23510:3 23520:1 23521:1 23558:1 23568:5 23595:1 23633:2 23643:1 23646:1 23655:1 23656:1 23665:1 23666:2 23667:5 23668:1 23689:1 23697:1 23704:2 23707:2 23712:1 23716:3 23722:2 23726:1 23752:2 23753:2 23766:2 23780:1 23788:1 23791:2 23802:2 23808:1 23820:1 23841:1 23844:1 23860:1 23867:4 23870:1 23879:3 23883:1 23885:1 23890:1 23899:1 23900:1 23908:1 23916:1 23921:1 23933:1 23934:1 23937:1 23944:1 23954:1 23960:1 23971:1 23980:1 23982:2 23998:1 24003:1 24006:2 24011:1 24013:1 24020:1 24027:1 24036:1 24040:1 24050:1 24052:1 24057:1 24059:1 24081:1 24083:1 24086:1 24099:1 24106:2 24144:3 24155:5 24179:1 24191:1 24208:1 24214:1 24224:1 24230:2 24231:1 24234:1 24241:1 24242:5 24252:1 24269:2 24274:1 24275:1 24290:1 24306:2 24325:1 24331:1 24339:4 24359:1 24360:1 24363:1 24367:1 24396:1 24404:2 24406:4 24412:1 24417:1 24420:1 24434:8 24457:1 24473:2 24476:5 24478:1 24484:1 24486:1 24488:4 24491:1 24492:1 24533:1 24534:1 24540:1 24567:1 24572:1 24600:1 24614:1 24620:1 24634:1 24636:1 24637:2 24640:1 24641:2 24644:8 24647:3 24653:1 24678:1 24692:3 24694:1 24697:2 24702:1 24718:1 24728:1 24730:6 24731:1 24740:2 24742:1 24751:4 24760:5 24761:2 24772:2 24782:1 24784:1 24789:1 24797:1 24817:2 24838:1 24841:6 24843:1 24847:1 24854:1 24855:1 24873:2 24883:1 24897:2 24915:3 24928:1 24942:5 24946:1 24967:2 24969:4 24973:1 24990:2 24999:1 25018:1 25051:1 25053:1 25056:1 25061:1 25071:1 25081:1 25085:1 25092:4 25109:1 25117:1 25121:1 25131:1 25135:1 25138:2 25140:1 25143:1 25153:1 25157:2 25160:2 25173:1 25175:1 25179:1 25191:1 25194:1 25200:1 25217:2 25219:1 25228:1 25230:2 25235:1 25242:1 25256:6 25261:1 25262:1 25265:1 25268:2 25277:1 25283:1 25286:1 25289:2 25323:2 25326:1 25332:1 25348:1 25358:1 25360:1 25379:1 25385:1 25387:3 25402:1 25410:10 25414:1 25451:1 25455:1 25478:1 25486:1 25494:1 25514:1 25525:1 25530:1 25537:1 25549:3 25555:1 25560:1 25569:1 25571:2 25586:1 25641:2 25660:3 25681:5 25683:2 25684:1 25688:1 25695:1 25696:2 25698:1 25699:4 25700:9 25703:1 25705:1 25722:1 25742:2 25751:3 25773:1 25782:1 25787:1 25793:4 25801:1 25805:1 25819:1 25826:3 25844:1 25852:1 25856:1 25861:2 25866:1 25867:1 25879:1 25905:1 25910:1 25916:1 25955:1 25957:1 25967:1 26008:1 26023:1 26032:1 26042:1 26051:1 26067:1 26069:2 26075:1 26104:2 26110:2 26120:2 26137:1 26151:1 26158:1 26189:1 26196:1 26201:1 26216:2 26218:2 26228:2 26254:1 26272:2 26281:1 26285:2 26289:5 26299:1 26301:1 26303:9 26331:2 26332:1 26383:1 26389:1 26397:27 26398:1 26400:3 26401:1 26410:1 26420:1 26430:4 26450:1 26452:1 26454:1 26495:1 26503:2 26505:3 26509:4 26510:2 26514:1 26519:1 26544:2 26546:1 26548:1 26549:1 26555:2 26557:2 26559:2 26563:1 26569:1 26570:1 26571:1 26576:3 26581:1 26588:3 26590:1 26612:2 26624:1 26638:1 26641:2 26651:1 26664:2 26666:1 26686:1 26689:1 26690:1 26711:1 26715:2 26716:2 26725:1 26765:1 26766:1 26789:2 26792:1 26794:1 26797:1 26807:3 26808:1 26810:2 26829:2 26843:1 26869:9 26874:1 26879:1 26889:1 26894:1 26909:1 26919:1 26954:3 26963:3 26977:1 26986:2 26989:1 26993:1 27017:1 27025:1 27035:1 27038:3 27044:1 27071:2 27075:1 27080:1 27083:1 27108:5 27111:4 27134:1 27135:1 27143:1 27145:1 27157:1 27162:1 27171:1 27177:1 27213:1 27216:1 27217:1 27228:4 27231:1 27239:1 27248:1 27256:3 27259:1 27271:1 27279:2 27280:27 27281:2 27283:2 27287:4 27289:1 27290:1 27300:1 27315:1 27316:13 27326:1 27329:1 27337:1 27364:1 27368:2 27372:1 27373:2 27381:1 27383:2 27394:1 27401:1 27405:5 27414:4 27419:2 27447:3 27448:1 27450:1 27452:2 27458:1 27462:1 27465:1 27477:1 27492:1 27495:1 27496:1 27519:1 27549:1 27550:1 27558:2 27561:1 27562:1 27590:1 27591:1 27594:1 27611:1 27619:1 27620:1 27627:1 27629:1 27633:2 27636:1 27638:4 27641:2 27644:1 27661:2 27666:1 27676:1 27692:8 27695:1 27697:1 27705:4 27708:1 27743:1 27745:1 27749:1 27772:3 27773:8 27775:1 27776:1 27780:1 27783:1 27799:1 27804:2 27805:2 27814:1 27818:1 27828:1 27834:2 27835:1 27842:1 27864:3 27879:1 27895:1 27914:3 27920:1 27922:1 27926:2 27927:1 27951:2 27961:2 27963:5 27968:1 27971:1 27977:5 27984:1 27994:2 28018:1 28026:1 28046:1 28053:1 28067:1 28081:1 28106:3 28108:2 28122:1 28138:4 28169:2 28172:1 28176:1 28185:1 28210:1 28217:2 28222:1 28229:3 28237:1 28265:1 28283:1 28292:3 28297:1 28300:1 28314:1 28326:2 28336:1 28341:1 28343:6 28344:1 28352:1 28364:2 28370:1 28378:1 28380:2 28391:1 28395:3 28397:1 28420:1 28430:5 28437:2 28442:1 28496:1 28499:1 28503:1 28504:1 28507:1 28509:1 28511:5 28516:1 28523:1 28530:1 28554:1 28560:2 28566:1 28569:1 28574:1 28575:1 28576:1 28579:1 28587:2 28618:1 28629:1 16 6:1 10:1 26:1 27:2 29:1 44:1 69:1 78:1 83:5 100:1 106:1 137:1 147:1 153:1 162:1 165:1 172:1 175:2 176:1 201:1 206:1 211:1 213:1 230:1 235:4 239:1 254:2 283:1 286:1 296:4 300:1 318:1 327:1 336:2 337:3 338:1 364:1 372:1 375:1 382:1 399:1 407:2 418:1 442:3 445:2 449:2 460:1 471:1 478:1 489:2 504:1 507:1 509:1 514:1 523:2 526:2 552:1 553:1 567:5 603:1 614:1 617:3 621:1 627:3 634:1 648:3 654:1 661:4 665:1 671:1 676:1 684:1 685:1 688:1 699:1 707:1 713:1 724:1 735:1 747:2 757:2 768:1 772:1 787:1 803:1 805:1 809:1 813:1 824:1 826:1 828:1 843:2 852:1 856:2 872:2 902:2 907:1 910:2 913:1 915:1 924:2 933:2 934:2 939:3 940:1 941:3 942:6 943:2 944:2 947:2 963:1 966:2 978:1 982:1 983:1 985:6 987:2 1010:1 1015:2 1020:1 1052:1 1059:2 1062:1 1081:1 1086:1 1089:1 1108:2 1116:1 1125:2 1170:1 1171:3 1174:1 1175:1 1184:1 1187:1 1192:2 1200:1 1201:4 1217:2 1222:1 1227:1 1237:2 1239:3 1259:1 1263:1 1267:1 1269:2 1275:4 1278:1 1279:1 1289:5 1290:2 1292:1 1302:3 1306:1 1316:1 1319:1 1321:1 1331:1 1333:1 1335:3 1346:2 1356:1 1375:2 1379:1 1390:1 1404:1 1410:1 1413:1 1415:2 1438:3 1440:1 1446:1 1448:1 1451:1 1453:2 1464:1 1475:1 1484:6 1493:1 1497:1 1501:6 1513:2 1521:2 1522:1 1525:3 1531:1 1535:1 1540:1 1541:1 1544:4 1560:1 1569:1 1571:1 1572:6 1583:1 1587:2 1591:2 1594:1 1596:1 1601:2 1603:1 1621:2 1628:1 1632:4 1637:4 1640:2 1641:1 1653:1 1654:1 1657:1 1672:5 1675:3 1678:1 1683:1 1684:1 1692:1 1698:2 1706:1 1722:1 1731:1 1733:1 1743:2 1745:1 1746:1 1747:1 1751:1 1758:3 1766:3 1779:1 1784:1 1789:1 1790:1 1809:1 1810:1 1816:1 1820:1 1824:1 1825:1 1831:1 1837:2 1844:1 1849:1 1853:1 1860:1 1861:1 1865:1 1868:1 1877:2 1882:1 1883:1 1884:1 1889:1 1895:1 1901:1 1903:2 1904:4 1908:1 1910:1 1912:1 1914:1 1921:1 1929:1 1930:3 1931:1 1933:1 1950:1 1953:1 1958:1 1978:1 1986:1 2001:1 2006:1 2015:2 2017:2 2019:1 2020:2 2022:1 2023:3 2044:1 2049:1 2054:2 2072:1 2074:3 2075:1 2076:2 2077:1 2078:1 2101:1 2108:4 2126:2 2133:1 2156:1 2158:1 2164:1 2170:1 2172:1 2174:3 2188:1 2191:1 2204:1 2227:2 2228:1 2229:1 2230:2 2232:4 2236:1 2237:1 2238:6 2240:1 2241:1 2244:5 2245:1 2246:4 2248:1 2251:1 2253:1 2256:6 2259:3 2260:7 2265:1 2267:1 2272:1 2273:2 2277:1 2283:1 2290:1 2303:1 2308:1 2321:1 2327:2 2331:1 2334:1 2336:3 2340:1 2346:1 2354:1 2359:2 2361:1 2374:1 2391:1 2413:5 2423:1 2437:1 2443:2 2448:2 2474:1 2483:1 2486:1 2488:1 2495:1 2526:2 2531:1 2556:1 2582:2 2587:1 2595:4 2596:1 2602:1 2607:4 2615:1 2622:2 2623:1 2630:1 2633:1 2635:3 2637:10 2651:1 2653:1 2659:1 2662:2 2668:1 2670:1 2674:1 2677:1 2684:3 2689:1 2690:1 2695:1 2713:2 2721:2 2731:2 2738:1 2739:1 2741:5 2747:4 2755:1 2792:4 2795:1 2798:1 2799:1 2804:1 2818:12 2828:7 2837:1 2857:2 2869:1 2875:1 2885:30 2899:2 2903:1 2907:1 2918:1 2919:1 2920:1 2936:1 2956:1 2962:2 2970:1 2981:1 2986:2 2987:1 2989:2 3028:1 3037:3 3041:1 3053:2 3059:1 3062:2 3070:1 3085:1 3105:1 3106:1 3107:1 3116:1 3117:1 3122:1 3129:2 3133:4 3141:1 3151:12 3153:2 3166:1 3168:1 3173:1 3181:1 3191:2 3208:1 3218:1 3219:7 3238:1 3254:1 3281:1 3283:1 3293:1 3301:1 3303:2 3319:2 3327:1 3330:1 3340:1 3348:1 3357:1 3361:3 3369:2 3373:1 3377:1 3388:4 3417:1 3423:1 3426:1 3427:3 3430:1 3439:1 3441:1 3442:1 3453:3 3491:1 3502:1 3505:1 3511:1 3512:4 3513:2 3519:2 3521:1 3522:1 3535:2 3543:1 3550:1 3569:1 3588:1 3598:1 3603:2 3606:4 3608:1 3625:1 3643:1 3651:4 3652:43 3659:1 3677:2 3678:1 3679:9 3681:1 3686:1 3687:2 3688:26 3689:2 3691:4 3694:1 3697:2 3706:3 3709:1 3718:2 3721:4 3724:2 3725:2 3740:2 3742:1 3743:1 3755:1 3769:2 3776:1 3777:3 3781:1 3783:1 3788:1 3808:1 3811:2 3813:1 3815:1 3816:3 3826:2 3838:2 3840:1 3844:1 3853:1 3861:1 3863:1 3866:2 3873:1 3889:1 3891:1 3900:1 3901:2 3904:1 3905:1 3911:1 3915:2 3918:1 3920:1 3925:4 3939:4 3953:1 3985:1 3993:1 3995:1 4031:1 4036:1 4052:1 4056:3 4062:1 4086:1 4090:1 4101:2 4106:1 4107:2 4109:1 4110:1 4137:1 4143:2 4153:1 4156:1 4169:3 4184:1 4199:1 4209:1 4221:1 4234:13 4250:1 4269:1 4277:1 4302:2 4306:1 4313:5 4322:1 4325:2 4335:2 4347:7 4351:1 4372:1 4380:1 4383:1 4386:1 4393:1 4435:1 4448:1 4449:2 4470:1 4474:1 4484:1 4489:1 4499:2 4515:2 4519:1 4522:2 4533:1 4543:4 4554:1 4563:4 4584:2 4585:1 4586:1 4609:1 4653:1 4654:1 4659:1 4660:2 4671:1 4685:1 4689:1 4693:2 4701:2 4742:1 4754:2 4779:1 4782:1 4785:1 4792:17 4793:2 4804:1 4824:2 4848:1 4850:2 4860:1 4865:1 4870:1 4893:3 4902:3 4903:1 4905:4 4925:2 4926:4 4927:8 4928:1 4929:1 4930:1 4932:1 4933:2 4935:1 4939:1 4940:23 4941:1 4943:1 4948:2 4949:3 4956:2 4957:1 4972:1 4975:3 4995:2 5031:2 5045:1 5053:1 5058:1 5120:1 5144:3 5145:3 5152:5 5158:1 5181:1 5190:1 5195:1 5209:1 5213:2 5214:23 5227:1 5242:1 5250:3 5252:1 5280:3 5317:1 5319:1 5330:1 5343:1 5355:1 5359:1 5361:2 5370:1 5375:1 5379:1 5386:1 5388:1 5390:2 5392:1 5395:1 5431:1 5433:1 5437:1 5446:1 5447:1 5448:2 5454:1 5465:3 5474:1 5479:1 5489:2 5494:1 5497:1 5502:1 5503:2 5509:1 5521:1 5523:1 5525:1 5561:1 5562:1 5565:5 5588:2 5595:1 5604:1 5614:1 5618:1 5620:1 5624:1 5631:1 5635:1 5643:1 5646:1 5653:1 5654:1 5656:1 5659:2 5660:1 5662:1 5674:1 5675:1 5679:1 5683:1 5697:1 5701:1 5702:1 5703:1 5707:1 5720:1 5731:1 5745:1 5766:3 5791:1 5794:5 5796:1 5803:1 5808:1 5817:1 5828:1 5846:1 5860:2 5894:1 5903:1 5924:1 5931:3 5932:8 5941:1 5945:2 5971:2 5976:1 5977:1 5980:1 6003:1 6020:1 6024:1 6026:1 6034:2 6038:1 6042:2 6043:1 6046:1 6047:1 6057:1 6079:4 6086:1 6087:2 6088:2 6126:1 6127:3 6129:1 6136:1 6151:5 6153:1 6165:1 6166:1 6168:1 6177:1 6181:1 6184:1 6194:1 6239:6 6242:2 6243:1 6244:1 6247:1 6248:1 6250:2 6251:2 6254:2 6255:3 6256:5 6262:2 6264:7 6265:1 6266:1 6267:2 6275:1 6298:1 6325:3 6329:1 6341:1 6356:2 6357:1 6358:1 6392:1 6394:1 6398:1 6404:1 6410:2 6413:1 6424:1 6446:1 6450:1 6454:1 6463:1 6494:1 6507:3 6508:1 6513:2 6523:1 6533:5 6535:1 6539:3 6547:1 6550:1 6557:1 6558:1 6566:2 6580:1 6582:3 6585:1 6586:2 6598:2 6603:1 6604:1 6606:1 6615:1 6639:1 6657:1 6661:1 6665:1 6670:1 6677:2 6679:3 6684:2 6685:2 6687:1 6695:3 6699:2 6704:3 6711:3 6718:1 6731:1 6739:3 6745:1 6780:1 6783:2 6789:1 6791:1 6795:1 6799:2 6803:1 6819:3 6828:1 6835:1 6857:2 6860:1 6876:2 6893:1 6896:2 6909:1 6930:1 6954:2 6970:1 6974:1 6982:2 6996:1 7000:5 7003:1 7010:3 7015:1 7016:1 7027:1 7036:1 7049:1 7080:1 7126:1 7134:1 7145:1 7153:1 7180:1 7196:1 7204:1 7213:1 7221:5 7267:1 7269:1 7275:3 7290:2 7307:4 7343:2 7360:2 7377:1 7378:1 7387:2 7406:1 7411:1 7419:1 7420:2 7430:1 7433:1 7437:4 7446:1 7466:1 7471:1 7477:4 7478:5 7479:3 7496:1 7499:2 7502:2 7505:1 7512:1 7530:1 7531:2 7544:1 7547:1 7548:46 7549:1 7550:1 7555:2 7567:12 7568:26 7578:1 7579:1 7582:1 7586:1 7588:1 7590:1 7595:1 7615:1 7616:5 7638:1 7653:1 7668:1 7672:2 7689:2 7705:1 7742:3 7746:7 7750:1 7780:1 7786:1 7788:5 7802:1 7805:1 7826:1 7837:1 7851:1 7858:1 7862:1 7910:3 7920:2 7921:1 7926:1 7928:7 7936:2 7942:1 7951:1 7960:2 7973:1 7977:2 7983:1 7998:1 7999:1 8006:19 8026:1 8031:1 8037:2 8039:1 8049:1 8063:2 8092:1 8098:1 8107:2 8116:1 8127:2 8139:1 8140:1 8154:1 8167:1 8170:3 8176:4 8181:2 8194:2 8196:1 8199:4 8213:2 8214:1 8215:2 8220:1 8231:1 8233:2 8241:2 8251:1 8260:2 8263:2 8269:1 8274:1 8276:1 8277:1 8294:2 8308:1 8319:3 8327:1 8336:1 8342:1 8345:1 8349:1 8354:1 8357:2 8358:1 8359:3 8360:2 8361:2 8362:5 8365:1 8366:1 8370:2 8373:2 8375:2 8381:3 8396:1 8402:2 8412:2 8420:1 8421:1 8427:1 8428:1 8440:1 8450:1 8455:2 8462:1 8469:2 8475:3 8492:1 8496:5 8517:5 8526:1 8528:1 8531:2 8550:1 8556:1 8583:2 8595:1 8596:1 8603:1 8609:3 8616:3 8617:1 8621:1 8637:1 8640:2 8667:4 8668:2 8675:4 8676:1 8677:1 8678:4 8680:3 8687:2 8688:2 8706:3 8707:1 8709:2 8711:4 8725:1 8727:1 8743:2 8748:1 8763:1 8798:1 8813:1 8827:2 8835:1 8838:1 8853:2 8854:2 8863:1 8868:1 8880:1 8882:1 8895:1 8903:1 8918:1 8919:1 8926:2 8935:1 8957:1 8962:3 8974:1 8978:1 8991:2 8994:1 8995:4 9006:1 9008:1 9015:7 9035:2 9039:3 9042:1 9049:1 9055:1 9071:1 9078:1 9088:3 9091:1 9110:1 9111:1 9124:2 9125:1 9156:1 9160:1 9201:1 9219:1 9236:1 9240:1 9243:1 9246:3 9252:2 9253:1 9263:1 9264:2 9278:1 9292:2 9294:1 9298:2 9322:1 9325:3 9328:1 9337:1 9350:1 9375:23 9383:1 9399:1 9408:2 9420:4 9428:2 9434:1 9437:1 9448:1 9455:1 9456:1 9459:1 9466:1 9467:2 9484:2 9492:1 9494:1 9511:14 9526:2 9529:1 9535:2 9550:1 9569:5 9575:1 9580:1 9586:3 9587:1 9590:1 9603:1 9614:1 9620:1 9622:1 9651:2 9655:3 9656:1 9666:1 9690:8 9696:2 9697:4 9698:2 9706:3 9707:1 9717:1 9726:2 9730:3 9733:1 9734:1 9739:2 9744:2 9748:4 9751:4 9753:1 9754:1 9761:1 9770:1 9774:1 9780:3 9785:3 9795:1 9797:2 9809:1 9817:2 9830:1 9848:1 9853:3 9855:1 9873:12 9875:1 9876:6 9883:1 9885:1 9888:1 9909:1 9967:1 9971:2 9976:1 9986:1 9998:2 10018:4 10023:1 10035:4 10050:1 10055:1 10081:1 10084:1 10103:1 10121:1 10137:2 10149:5 10155:1 10159:1 10163:1 10173:2 10181:1 10191:1 10209:2 10215:7 10226:1 10227:1 10230:1 10251:1 10258:2 10276:3 10278:2 10281:2 10288:1 10297:6 10304:1 10311:2 10312:4 10313:1 10314:3 10320:1 10328:1 10330:1 10334:1 10355:1 10356:3 10369:1 10374:1 10383:4 10394:1 10396:2 10401:1 10405:2 10413:7 10417:1 10463:1 10464:1 10470:1 10475:1 10495:2 10498:1 10499:2 10503:1 10509:1 10510:1 10524:2 10531:1 10534:1 10545:1 10549:1 10588:1 10591:1 10595:1 10604:1 10620:2 10621:1 10634:1 10635:7 10649:4 10650:7 10663:3 10666:1 10670:1 10672:1 10679:1 10684:2 10692:1 10699:4 10702:1 10727:2 10729:1 10730:1 10740:1 10742:2 10747:5 10759:1 10767:3 10774:1 10779:3 10795:1 10810:1 10811:1 10814:1 10839:1 10841:1 10843:2 10844:1 10846:1 10860:1 10876:1 10892:1 10894:1 10899:1 10900:1 10901:1 10904:1 10905:4 10906:1 10907:1 10926:1 10931:1 10941:1 10945:2 10961:1 10965:1 10970:1 10971:1 10996:2 11019:1 11021:4 11029:2 11032:1 11039:2 11047:1 11054:1 11073:1 11080:1 11081:4 11112:1 11116:3 11118:6 11120:1 11122:2 11147:1 11169:1 11172:1 11180:1 11186:2 11198:1 11218:3 11232:1 11238:1 11242:1 11245:1 11248:5 11259:1 11261:3 11263:1 11277:2 11278:3 11280:2 11286:1 11296:1 11299:1 11315:3 11322:1 11328:3 11335:2 11336:9 11337:1 11348:1 11349:1 11354:1 11355:1 11358:1 11359:1 11367:1 11368:3 11370:1 11371:1 11372:7 11373:1 11374:1 11381:1 11383:7 11392:1 11394:1 11399:1 11401:1 11406:10 11422:2 11431:5 11435:1 11441:2 11446:1 11455:1 11475:1 11476:1 11486:4 11492:1 11496:1 11498:1 11499:2 11530:1 11534:1 11544:3 11557:1 11563:1 11566:2 11575:1 11598:1 11615:2 11616:2 11633:2 11649:2 11651:1 11683:1 11691:5 11734:2 11737:2 11749:1 11754:1 11759:1 11761:1 11764:1 11765:1 11766:1 11768:1 11786:4 11787:4 11788:23 11793:1 11797:6 11806:1 11812:1 11813:2 11823:2 11837:2 11859:1 11879:2 11900:1 11904:1 11930:1 11938:9 11939:2 11955:1 11958:4 11959:1 11963:2 11984:1 12005:1 12016:3 12019:1 12040:1 12047:1 12054:2 12058:1 12064:1 12069:1 12081:2 12115:2 12134:4 12148:1 12187:1 12189:3 12196:1 12198:1 12202:1 12203:1 12218:1 12236:1 12257:1 12258:1 12264:1 12266:1 12275:1 12323:6 12336:1 12339:1 12341:1 12345:1 12348:1 12357:1 12369:2 12370:4 12391:1 12394:3 12420:1 12451:1 12456:2 12485:1 12505:1 12510:2 12516:1 12524:1 12525:2 12550:1 12566:2 12599:1 12600:1 12652:1 12671:5 12673:1 12684:1 12691:1 12692:3 12698:1 12702:1 12710:2 12712:1 12715:1 12719:1 12722:1 12733:1 12741:1 12744:2 12748:1 12756:2 12765:1 12768:1 12769:1 12771:2 12776:1 12792:1 12798:1 12799:2 12829:1 12834:1 12835:2 12837:1 12870:2 12872:3 12874:1 12875:1 12881:1 12882:2 12883:1 12884:7 12889:4 12891:1 12892:1 12900:2 12904:3 12915:3 12919:1 12924:2 12928:3 12934:1 12954:7 12956:1 12960:1 12964:1 12966:1 12970:3 12979:1 12980:2 12997:2 13019:2 13033:3 13034:1 13049:4 13052:1 13053:1 13062:1 13065:1 13071:1 13084:2 13095:3 13114:1 13117:1 13119:2 13122:7 13131:1 13136:1 13148:2 13149:2 13150:2 13151:1 13152:1 13160:3 13174:1 13177:1 13178:2 13190:1 13201:2 13221:1 13237:2 13238:1 13243:1 13249:1 13250:2 13251:2 13252:2 13254:2 13257:1 13270:1 13277:1 13278:1 13281:1 13282:1 13283:1 13296:1 13301:2 13302:1 13310:1 13313:1 13314:1 13318:2 13319:1 13330:2 13334:1 13335:1 13352:1 13365:8 13370:2 13371:1 13377:1 13380:1 13411:1 13416:1 13418:1 13434:1 13435:1 13436:2 13439:2 13457:1 13458:2 13461:2 13462:1 13467:5 13493:1 13510:1 13515:1 13518:1 13529:2 13530:3 13535:2 13536:6 13543:2 13560:2 13565:3 13578:1 13589:2 13604:1 13610:2 13612:1 13615:2 13616:1 13620:1 13628:1 13629:2 13633:2 13656:1 13666:1 13679:1 13722:1 13723:1 13728:1 13730:1 13735:2 13750:1 13769:1 13782:1 13795:1 13829:1 13854:1 13855:1 13880:1 13894:1 13898:3 13907:2 13908:1 13917:1 13920:1 13924:5 13926:1 13927:1 13935:1 13937:1 13951:2 13952:1 13956:1 13970:1 13971:1 13972:1 13985:1 13989:1 14009:2 14013:1 14035:1 14051:1 14065:1 14070:1 14076:1 14087:1 14091:2 14093:2 14099:1 14106:4 14126:2 14135:1 14142:1 14145:1 14154:2 14158:1 14183:1 14197:1 14225:1 14227:4 14238:1 14255:1 14271:1 14303:1 14304:1 14368:1 14370:1 14378:1 14385:1 14401:2 14437:4 14443:3 14445:2 14447:1 14450:1 14451:1 14470:1 14475:1 14496:2 14505:1 14522:1 14541:1 14545:2 14546:1 14551:3 14566:1 14577:1 14588:1 14592:2 14596:1 14599:1 14601:1 14624:1 14633:2 14662:1 14665:1 14667:1 14670:1 14671:1 14678:1 14709:1 14710:1 14747:1 14756:2 14760:3 14761:4 14766:1 14792:4 14793:1 14796:1 14811:1 14826:4 14828:2 14832:1 14835:1 14840:1 14855:1 14867:1 14870:1 14877:1 14887:3 14894:2 14898:2 14906:2 14909:1 14942:1 14951:2 14968:1 14970:1 14978:1 14992:1 15006:1 15007:1 15009:1 15020:1 15021:1 15033:3 15036:1 15058:9 15063:8 15067:1 15073:1 15099:2 15112:1 15113:2 15118:2 15131:3 15134:1 15154:1 15158:1 15165:1 15171:1 15190:3 15193:1 15194:1 15201:6 15210:3 15211:1 15221:1 15222:1 15224:2 15230:1 15232:3 15234:1 15236:1 15238:1 15239:5 15243:2 15244:7 15245:1 15250:2 15254:2 15255:1 15263:1 15264:6 15269:4 15300:1 15302:1 15337:1 15345:1 15347:2 15355:1 15356:2 15361:2 15366:6 15375:1 15388:2 15401:1 15403:2 15421:2 15425:3 15442:1 15446:2 15461:1 15465:1 15472:1 15478:1 15488:1 15496:3 15500:1 15502:8 15513:2 15529:2 15538:1 15540:4 15554:1 15557:1 15566:23 15570:1 15587:1 15596:5 15597:1 15599:1 15620:2 15637:66 15665:3 15669:1 15697:1 15731:1 15733:1 15734:3 15756:1 15758:1 15763:2 15765:1 15766:2 15773:2 15774:4 15776:1 15780:2 15783:1 15784:2 15797:1 15810:1 15812:1 15815:1 15822:1 15831:1 15832:1 15833:1 15855:1 15857:1 15869:1 15876:1 15896:1 15902:5 15919:1 15934:2 15938:2 15953:1 15961:2 15969:2 15974:1 15988:1 16026:1 16035:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16107:2 16108:1 16116:1 16130:1 16133:1 16137:1 16146:3 16151:4 16153:1 16156:1 16165:1 16167:2 16168:3 16187:3 16190:1 16199:2 16210:1 16215:1 16217:3 16219:1 16220:2 16222:1 16228:1 16230:1 16237:1 16249:3 16254:1 16255:13 16262:1 16264:1 16289:2 16300:2 16310:1 16311:2 16338:1 16343:1 16348:2 16365:1 16366:2 16369:3 16373:1 16375:3 16378:1 16380:2 16390:1 16395:1 16407:1 16416:1 16421:1 16426:2 16427:2 16446:2 16450:2 16453:1 16459:1 16472:1 16486:1 16491:1 16492:3 16501:1 16517:1 16540:1 16558:1 16562:1 16569:2 16571:1 16582:1 16587:1 16588:2 16589:1 16590:1 16601:1 16608:1 16609:1 16617:2 16623:3 16630:2 16646:1 16649:1 16652:1 16654:3 16658:1 16666:1 16674:1 16676:1 16683:3 16690:1 16704:2 16705:1 16718:1 16721:1 16726:1 16744:2 16765:1 16766:2 16771:1 16777:1 16780:1 16796:4 16845:2 16847:1 16851:1 16860:1 16866:1 16876:1 16877:1 16879:1 16896:5 16899:1 16902:1 16904:1 16911:1 16915:2 16916:1 16920:1 16921:1 16934:1 16936:2 16940:2 16949:1 16953:1 16954:1 16964:2 16982:1 16987:1 16988:1 16990:1 16993:1 17010:1 17018:2 17019:2 17055:1 17058:2 17061:1 17077:1 17082:1 17098:1 17103:3 17113:2 17117:1 17128:1 17130:1 17142:3 17187:3 17193:1 17194:1 17196:2 17199:2 17201:2 17202:1 17219:1 17220:13 17223:2 17235:1 17244:1 17248:2 17275:1 17285:1 17292:1 17294:1 17310:1 17311:2 17317:3 17334:2 17338:2 17341:1 17354:1 17361:1 17363:1 17369:1 17376:1 17392:1 17396:4 17403:2 17404:4 17417:2 17446:1 17448:1 17479:1 17481:1 17501:1 17513:1 17529:3 17531:1 17540:1 17568:1 17571:1 17578:1 17584:1 17587:1 17595:1 17599:3 17609:2 17616:1 17640:1 17641:1 17646:1 17657:1 17661:1 17666:1 17667:3 17673:1 17714:4 17718:1 17723:2 17750:1 17752:1 17754:4 17760:1 17774:4 17779:1 17782:1 17785:3 17805:2 17806:1 17811:1 17821:1 17823:2 17828:1 17850:1 17856:1 17873:1 17874:1 17912:11 17916:1 17923:1 17930:1 17946:1 17949:1 17961:1 17968:1 17970:1 17978:1 17980:1 17984:2 17986:1 17998:1 18003:1 18010:1 18013:2 18027:1 18031:5 18035:1 18037:2 18038:1 18052:4 18057:2 18065:2 18066:1 18095:1 18101:3655 18105:1 18118:4 18123:2 18149:1 18157:1 18163:2 18171:1 18178:3 18179:1 18188:1 18214:1 18215:3 18226:1 18234:2 18245:2 18262:1 18267:1 18271:5 18272:2 18298:3 18306:1 18309:1 18311:3 18314:1 18315:1 18331:1 18346:1 18361:1 18362:1 18366:1 18381:1 18408:1 18410:5 18415:1 18429:1 18434:1 18439:1 18444:1 18462:3 18472:1 18481:2 18491:1 18493:1 18505:1 18512:1 18514:1 18515:1 18557:1 18567:1 18569:2 18572:1 18584:4 18599:2 18601:1 18607:1 18618:1 18623:1 18631:1 18667:4 18669:1 18677:1 18679:3 18731:1 18761:1 18780:1 18786:2 18796:1 18799:2 18801:1 18804:2 18813:4 18825:2 18829:1 18830:4 18834:1 18847:4 18859:16 18877:1 18878:1 18880:3 18881:1 18883:22 18892:2 18910:1 18911:6 18912:1 18914:1 18931:1 18936:2 18947:1 18950:4 18968:1 18972:2 18976:1 18978:6 18980:2 18983:1 18987:1 18997:2 18998:1 19000:1 19005:1 19028:1 19034:3 19039:1 19055:1 19067:3 19099:1 19103:1 19106:1 19148:1 19153:1 19176:1 19179:1 19187:1 19206:1 19209:13 19212:1 19220:1 19231:3 19253:1 19256:1 19279:1 19291:1 19299:1 19305:1 19307:7 19326:1 19329:1 19347:2 19357:1 19359:1 19360:1 19378:1 19383:1 19390:1 19391:1 19394:2 19399:1 19401:2 19402:1 19409:2 19430:1 19436:1 19459:4 19464:1 19470:1 19472:1 19488:3 19489:1 19514:3 19523:1 19525:1 19539:1 19543:2 19545:5 19565:2 19569:1 19574:2 19582:2 19584:1 19586:1 19591:7 19612:1 19638:1 19644:1 19663:15 19669:1 19677:2 19679:3 19694:1 19695:1 19706:1 19707:13 19724:1 19747:1 19756:1 19774:1 19786:2 19818:1 19822:1 19833:2 19853:4 19854:1 19856:2 19865:1 19870:1 19900:2 19910:1 19918:1 19945:5 19955:1 19957:3 19968:1 19979:1 19986:1 19998:1 20006:1 20022:1 20024:1 20044:2 20078:2 20086:1 20095:1 20099:1 20109:1 20117:1 20120:2 20129:1 20131:1 20143:1 20145:1 20148:2 20169:1 20171:1 20177:1 20193:1 20210:3 20217:1 20224:1 20227:2 20230:1 20231:1 20232:1 20235:1 20236:1 20240:1 20245:13 20248:1 20252:2 20257:3 20260:5 20261:1 20279:3 20285:2 20289:5 20299:1 20322:4 20325:1 20327:1 20335:1 20336:1 20352:1 20364:2 20365:1 20366:1 20375:2 20378:1 20396:2 20401:1 20402:1 20413:1 20422:8 20429:1 20432:2 20438:1 20448:1 20453:1 20467:1 20490:1 20496:1 20502:1 20505:1 20507:1 20524:2 20528:1 20531:1 20533:1 20538:1 20546:3 20559:1 20561:1 20567:2 20569:1 20572:1 20579:1 20583:1 20585:1 20620:1 20628:2 20647:1 20672:1 20678:1 20679:1 20708:1 20712:1 20716:1 20718:4 20720:2 20723:3 20733:4 20741:1 20743:1 20745:1 20773:1 20777:1 20782:1 20786:1 20787:1 20798:1 20804:1 20809:1 20810:1 20815:2 20822:1 20827:1 20828:1 20838:2 20840:6 20843:3 20856:2 20860:1 20861:1 20863:1 20870:1 20874:1 20880:1 20888:1 20924:2 20926:1 20927:2 20934:2 20941:2 20951:1 20952:1 20953:1 20971:1 20973:4 20976:17 20978:1 20992:1 20998:2 20999:2 21003:1 21010:1 21014:1 21019:1 21024:1 21026:1 21037:5 21049:1 21053:1 21080:2 21084:3 21086:1 21090:1 21096:4 21108:1 21120:1 21125:1 21140:1 21141:1 21142:4 21150:2 21156:3 21161:1 21209:1 21231:4 21237:2 21238:1 21239:11 21241:3 21245:2 21252:2 21254:1 21255:1 21266:2 21267:3 21269:1 21272:1 21279:2 21282:2 21283:1 21291:1 21292:1 21293:1 21297:1 21302:1 21306:2 21309:2 21314:1 21334:2 21369:1 21379:5 21380:1 21403:1 21407:1 21412:1 21413:2 21423:2 21425:1 21428:1 21435:1 21439:1 21444:1 21446:4 21457:1 21464:1 21467:1 21474:1 21515:23 21516:2 21518:1 21537:1 21548:1 21556:2 21569:1 21575:1 21583:1 21594:4 21609:1 21611:1 21613:2 21620:1 21621:1 21623:1 21628:2 21637:1 21642:2 21644:1 21645:1 21648:8 21664:2 21668:4 21679:2 21704:1 21706:2 21712:1 21715:1 21718:2 21732:1 21735:1 21738:1 21743:1 21745:2 21753:1 21754:1 21766:2 21769:1 21781:10 21794:4 21802:1 21807:4 21819:1 21828:2 21840:1 21860:2 21873:1 21874:1 21895:1 21914:1 21929:1 21935:1 21941:3 21946:1 21949:1 21959:1 21967:1 21972:1 21985:1 21989:1 22001:1 22015:1 22021:1 22032:1 22038:1 22040:1 22041:2 22042:2 22049:15 22051:2 22082:2 22090:1 22099:1 22120:1 22130:3 22132:1 22133:2 22136:1 22139:1 22154:1 22165:3 22180:1 22185:1 22188:5 22192:1 22223:1 22225:1 22241:1 22246:1 22248:1 22264:2 22279:1 22283:1 22284:1 22290:1 22295:2 22310:1 22322:1 22329:1 22333:1 22344:1 22346:1 22348:2 22355:2 22361:1 22374:1 22414:1 22423:1 22424:1 22425:5 22431:1 22432:1 22436:1 22448:1 22452:1 22453:1 22463:2 22466:1 22471:1 22478:1 22481:2 22496:1 22506:1 22530:1 22534:2 22548:1 22551:2 22556:1 22564:2 22568:4 22571:1 22572:1 22587:1 22593:1 22607:2 22619:1 22627:3 22628:5 22633:1 22634:1 22646:6 22654:1 22657:1 22665:1 22667:1 22670:1 22672:3 22677:2 22681:1 22683:1 22699:2 22706:1 22707:2 22708:1 22720:1 22748:5 22755:1 22757:27 22759:1 22837:2 22844:1 22846:2 22847:1 22849:1 22856:1 22872:1 22889:1 22916:3 22922:1 22924:2 22925:1 22937:1 22949:1 22951:1 22957:1 22965:1 22983:1 22986:1 23000:1 23008:1 23022:1 23024:2 23028:1 23059:1 23062:2 23076:1 23077:2 23089:1 23104:4 23109:1 23117:1 23122:1 23126:1 23152:1 23159:1 23175:1 23177:1 23192:2 23207:3 23215:2 23222:1 23224:2 23227:1 23228:1 23229:2 23246:1 23266:1 23278:1 23284:1 23300:1 23306:1 23313:1 23321:1 23328:1 23334:2 23360:1 23362:1 23389:1 23391:1 23396:1 23397:6 23405:1 23412:1 23413:1 23417:1 23421:3 23434:2 23470:1 23492:1 23494:1 23502:1 23510:3 23520:1 23521:1 23558:1 23568:5 23595:1 23602:1 23633:2 23643:1 23646:1 23655:1 23656:1 23665:1 23666:2 23667:5 23668:1 23689:1 23697:1 23704:2 23707:2 23712:1 23716:3 23722:2 23726:1 23752:2 23753:2 23766:2 23780:1 23788:1 23791:2 23802:2 23808:1 23820:1 23841:1 23844:1 23860:1 23867:4 23870:1 23879:3 23883:1 23885:1 23890:1 23899:1 23900:1 23908:1 23916:1 23921:1 23933:1 23934:1 23937:1 23944:1 23954:1 23960:1 23971:1 23980:1 23982:2 23998:1 24003:1 24006:2 24011:1 24013:1 24020:1 24027:1 24036:1 24040:1 24050:1 24052:1 24057:1 24059:1 24081:1 24083:1 24086:1 24099:1 24106:2 24144:3 24155:5 24179:1 24191:1 24208:1 24214:1 24224:1 24230:2 24231:1 24234:1 24241:1 24242:5 24252:1 24269:2 24274:1 24275:1 24290:1 24306:2 24325:1 24331:1 24339:4 24359:1 24360:1 24363:1 24367:1 24396:1 24404:2 24406:4 24412:2 24417:1 24420:1 24434:8 24436:1 24457:1 24473:2 24476:5 24478:1 24484:1 24486:1 24488:4 24491:1 24492:1 24533:1 24534:1 24540:1 24567:1 24572:1 24600:1 24614:1 24620:1 24634:1 24636:1 24637:2 24640:1 24641:2 24644:8 24647:3 24653:1 24678:1 24692:3 24694:1 24697:2 24702:1 24718:1 24728:1 24730:6 24731:1 24740:2 24742:1 24751:4 24760:5 24761:2 24772:2 24782:1 24784:1 24789:1 24797:1 24817:2 24838:1 24841:6 24843:1 24847:1 24854:1 24855:1 24873:2 24883:1 24897:2 24915:3 24928:1 24942:5 24946:1 24967:2 24969:4 24973:1 24990:2 24999:1 25018:1 25051:1 25053:1 25056:1 25061:1 25071:1 25081:1 25085:1 25092:4 25109:1 25117:1 25121:1 25131:1 25135:1 25138:2 25140:1 25143:1 25153:1 25157:2 25160:2 25173:1 25175:1 25179:1 25191:1 25194:1 25200:1 25217:2 25219:1 25228:1 25230:2 25235:1 25242:1 25256:6 25261:1 25262:1 25265:1 25268:2 25277:1 25283:1 25286:1 25289:2 25323:2 25326:1 25332:2 25348:1 25358:1 25360:1 25379:1 25385:1 25387:3 25402:1 25410:11 25414:1 25451:1 25455:1 25478:1 25486:1 25494:1 25514:1 25525:1 25530:1 25537:1 25549:3 25555:1 25560:1 25569:1 25571:2 25586:1 25641:2 25660:3 25681:5 25683:2 25684:1 25688:1 25695:1 25696:2 25698:1 25699:4 25700:9 25703:1 25705:1 25722:1 25742:2 25751:3 25773:1 25782:1 25787:1 25793:4 25801:1 25805:1 25819:1 25826:3 25844:1 25852:1 25856:1 25861:2 25866:1 25867:1 25879:1 25901:1 25905:1 25910:1 25916:1 25955:1 25957:1 25967:1 26008:1 26023:1 26032:1 26042:1 26051:1 26067:1 26069:2 26075:1 26104:2 26110:2 26120:2 26137:1 26151:1 26158:1 26189:1 26196:1 26201:1 26216:2 26218:2 26228:2 26254:1 26272:2 26281:1 26285:2 26289:5 26299:1 26301:1 26303:9 26331:2 26332:1 26361:1 26383:1 26389:1 26397:27 26398:1 26400:3 26401:1 26410:1 26420:1 26430:5 26450:1 26452:1 26454:1 26495:1 26503:2 26505:3 26509:4 26510:2 26514:1 26519:1 26544:2 26546:1 26548:1 26549:1 26555:2 26557:2 26559:2 26562:2 26563:1 26569:1 26570:1 26571:1 26576:3 26581:1 26588:3 26590:1 26612:2 26624:1 26638:1 26641:2 26651:1 26664:2 26666:1 26686:1 26689:1 26690:1 26711:1 26715:2 26716:2 26725:1 26765:1 26766:1 26784:1 26789:2 26792:1 26794:1 26797:1 26799:1 26807:3 26808:1 26810:2 26829:2 26840:1 26843:1 26869:9 26874:1 26879:1 26889:1 26894:1 26909:1 26919:1 26954:3 26963:3 26977:1 26986:2 26989:1 26993:1 27017:1 27025:1 27035:1 27038:3 27044:1 27071:2 27075:1 27080:1 27083:1 27108:5 27111:4 27134:1 27135:1 27143:2 27145:1 27157:1 27162:1 27171:1 27177:1 27213:1 27216:1 27217:1 27228:4 27231:1 27239:1 27248:1 27256:3 27259:1 27271:1 27279:2 27280:28 27281:2 27283:3 27287:4 27289:1 27290:1 27300:1 27315:1 27316:13 27326:1 27329:1 27337:1 27364:1 27368:2 27372:1 27373:2 27381:1 27383:2 27394:1 27401:1 27405:6 27414:4 27419:2 27447:3 27448:1 27450:1 27452:2 27458:1 27462:1 27465:1 27477:1 27492:1 27495:1 27496:1 27519:1 27526:1 27549:1 27550:1 27558:2 27561:1 27562:1 27590:1 27591:1 27594:1 27611:1 27619:1 27620:1 27627:1 27629:1 27633:2 27636:1 27638:4 27641:2 27644:1 27658:1 27661:2 27666:1 27676:1 27692:8 27695:1 27697:1 27705:4 27708:1 27743:1 27745:1 27749:1 27772:3 27773:8 27775:1 27776:1 27780:1 27783:1 27799:1 27804:2 27805:2 27814:1 27818:1 27828:1 27834:2 27835:1 27842:1 27864:3 27879:1 27895:1 27914:3 27920:1 27922:2 27926:2 27927:1 27951:2 27961:2 27963:5 27968:1 27971:1 27977:5 27984:1 27994:2 28018:1 28026:1 28046:1 28053:1 28067:1 28081:1 28106:3 28108:2 28122:1 28138:4 28169:2 28172:1 28176:1 28185:1 28210:1 28217:2 28222:1 28229:3 28237:1 28265:1 28283:1 28292:3 28295:1 28297:1 28300:1 28301:1 28314:1 28326:2 28336:1 28340:1 28341:1 28343:6 28344:1 28352:1 28364:2 28370:1 28378:1 28380:2 28391:1 28395:3 28397:1 28420:1 28430:5 28437:2 28442:1 28496:1 28499:1 28503:1 28504:1 28507:1 28509:1 28511:5 28516:1 28523:1 28530:1 28554:1 28560:2 28566:1 28569:1 28574:1 28575:1 28576:1 28579:1 28587:2 28618:1 28627:1 28629:1 16 6:1 10:1 26:1 27:2 29:1 44:1 69:1 78:1 82:1 83:5 100:1 106:1 137:1 147:1 153:1 162:1 165:2 172:1 175:2 176:1 201:1 206:1 211:2 213:1 230:1 235:4 239:1 254:2 283:1 286:1 296:4 300:1 318:1 327:1 336:2 337:3 338:1 364:1 372:1 375:1 382:1 399:1 407:2 418:1 442:3 445:2 449:2 460:1 471:1 478:1 489:2 504:1 507:1 509:1 514:1 523:2 526:2 552:1 553:1 567:5 603:1 614:1 617:3 621:1 627:3 634:1 648:3 654:1 661:4 665:1 671:1 676:1 684:1 685:1 688:1 699:1 707:1 713:1 724:1 735:1 747:2 757:2 768:1 772:1 787:1 803:1 805:1 809:1 813:1 824:1 826:1 828:1 843:3 852:1 856:2 861:1 872:2 902:2 907:1 910:2 913:1 915:1 924:2 933:2 934:2 939:3 940:1 941:3 942:6 943:2 944:2 947:2 963:1 966:2 978:1 982:1 983:1 985:6 987:2 1010:1 1015:2 1020:1 1052:1 1059:2 1062:1 1081:1 1086:1 1089:1 1108:2 1116:1 1125:2 1150:1 1170:1 1171:3 1174:1 1175:1 1184:1 1187:1 1192:2 1200:1 1201:4 1217:2 1222:1 1224:1 1227:1 1237:2 1239:3 1259:1 1263:1 1267:1 1269:2 1275:4 1278:1 1279:1 1289:5 1290:2 1292:1 1302:3 1306:1 1316:1 1319:1 1321:1 1331:1 1333:1 1335:3 1346:2 1356:1 1375:2 1379:1 1390:1 1404:1 1410:1 1413:1 1415:2 1438:3 1440:1 1446:1 1448:1 1451:1 1453:2 1464:1 1475:1 1484:6 1493:1 1497:1 1501:6 1513:2 1521:2 1522:1 1525:3 1531:1 1535:1 1540:1 1541:1 1544:4 1560:1 1569:1 1571:1 1572:8 1583:1 1587:3 1589:1 1590:1 1591:2 1594:1 1596:1 1601:2 1603:1 1621:2 1628:1 1632:4 1637:4 1640:2 1641:1 1653:1 1654:1 1657:1 1672:5 1675:3 1678:1 1683:1 1684:1 1692:1 1698:2 1706:1 1722:1 1731:1 1733:1 1743:2 1745:1 1746:1 1747:1 1751:1 1758:3 1766:4 1779:1 1784:1 1789:1 1790:1 1809:1 1810:1 1816:1 1820:1 1824:1 1825:1 1831:1 1837:2 1844:1 1849:1 1853:1 1860:1 1861:1 1865:1 1868:1 1877:3 1882:1 1883:1 1884:1 1889:1 1895:1 1901:1 1903:2 1904:4 1908:1 1910:1 1912:1 1914:1 1921:1 1929:1 1930:3 1931:1 1933:1 1950:1 1953:1 1958:1 1978:1 1986:1 2001:1 2006:1 2015:2 2017:2 2019:1 2020:2 2022:1 2023:3 2044:1 2049:1 2054:2 2072:1 2074:3 2075:1 2076:2 2077:1 2078:1 2101:1 2108:4 2126:2 2133:1 2156:1 2158:1 2164:1 2170:1 2172:1 2174:3 2188:1 2191:1 2204:1 2227:2 2228:1 2229:1 2230:2 2232:4 2236:2 2237:1 2238:6 2240:1 2241:1 2244:5 2245:1 2246:4 2248:1 2251:1 2253:1 2256:6 2259:3 2260:7 2265:1 2267:1 2272:1 2273:2 2277:1 2279:1 2283:1 2290:1 2303:1 2308:1 2321:1 2327:2 2331:1 2334:1 2336:3 2340:1 2346:1 2354:1 2359:2 2361:1 2374:1 2391:1 2413:5 2423:1 2437:1 2443:2 2448:2 2474:1 2483:1 2486:1 2488:1 2495:1 2526:2 2531:1 2556:1 2582:2 2587:1 2595:4 2596:1 2602:1 2607:4 2615:1 2622:2 2623:1 2630:1 2633:1 2635:3 2637:10 2651:1 2653:1 2659:1 2662:2 2668:1 2670:1 2674:1 2677:1 2684:4 2689:1 2690:1 2695:1 2713:2 2721:2 2731:2 2738:1 2739:1 2741:5 2747:4 2755:1 2792:4 2795:1 2798:1 2799:1 2804:1 2806:1 2818:13 2828:7 2837:1 2848:1 2857:2 2869:1 2875:1 2885:30 2899:2 2903:1 2907:1 2918:1 2919:1 2920:1 2936:1 2948:1 2956:1 2962:2 2970:1 2981:1 2986:2 2987:1 2989:2 3028:1 3037:3 3041:1 3053:3 3059:1 3062:2 3070:1 3085:1 3105:1 3106:1 3107:1 3115:1 3116:1 3117:1 3122:1 3129:2 3133:4 3141:1 3151:13 3153:2 3166:1 3168:1 3173:1 3181:1 3191:2 3208:1 3218:1 3219:7 3238:1 3254:1 3281:1 3283:1 3293:1 3301:1 3303:2 3319:2 3327:1 3330:1 3340:1 3348:1 3357:2 3361:3 3369:2 3373:1 3377:1 3388:4 3417:1 3423:1 3426:1 3427:3 3430:1 3439:1 3441:1 3442:1 3453:3 3491:1 3502:1 3505:1 3511:1 3512:4 3513:2 3519:2 3521:1 3522:1 3535:2 3543:1 3550:1 3569:1 3588:1 3598:1 3603:2 3606:4 3608:1 3625:1 3643:1 3651:4 3652:44 3659:1 3677:2 3678:1 3679:9 3681:1 3686:1 3687:2 3688:27 3689:2 3691:6 3694:1 3697:2 3706:3 3709:1 3718:2 3721:4 3724:2 3725:2 3740:2 3742:1 3743:1 3755:1 3769:2 3776:1 3777:3 3781:1 3783:1 3788:1 3808:1 3811:2 3813:1 3815:1 3816:3 3826:2 3838:2 3840:1 3844:1 3853:1 3861:1 3863:1 3866:2 3873:1 3889:1 3891:1 3900:1 3901:2 3904:1 3905:1 3911:1 3915:2 3918:1 3920:1 3925:4 3939:4 3953:1 3985:1 3993:1 3995:1 4013:1 4031:1 4036:1 4052:1 4056:3 4062:1 4086:1 4090:1 4101:2 4106:1 4107:2 4109:1 4110:1 4137:1 4143:2 4153:1 4156:1 4169:3 4184:1 4199:1 4209:1 4221:1 4234:14 4250:1 4269:1 4277:1 4302:2 4306:1 4313:5 4322:1 4325:2 4335:2 4347:7 4351:1 4362:1 4372:1 4380:1 4383:1 4386:1 4393:1 4435:1 4448:1 4449:2 4470:1 4474:1 4484:1 4489:1 4499:2 4515:2 4519:1 4522:2 4533:1 4543:4 4554:1 4557:1 4563:4 4582:1 4584:2 4585:1 4586:1 4609:1 4653:1 4654:1 4659:1 4660:2 4671:1 4685:1 4689:1 4693:2 4701:2 4742:1 4754:2 4779:1 4782:1 4785:1 4792:17 4793:2 4804:1 4824:2 4848:1 4850:2 4860:1 4865:1 4870:1 4893:3 4896:1 4902:3 4903:1 4905:4 4925:2 4926:4 4927:8 4928:1 4929:1 4930:1 4932:1 4933:2 4935:1 4939:1 4940:24 4941:1 4943:1 4948:2 4949:3 4956:2 4957:1 4972:1 4975:3 4995:2 5031:2 5045:1 5053:1 5058:1 5064:1 5120:1 5144:3 5145:3 5152:5 5158:1 5181:1 5190:1 5195:1 5209:1 5213:2 5214:24 5227:1 5242:1 5249:1 5250:3 5252:1 5280:3 5315:1 5317:1 5319:1 5330:1 5343:1 5355:1 5359:1 5361:2 5370:1 5375:1 5379:1 5386:1 5388:1 5390:2 5392:1 5395:1 5431:1 5433:1 5437:1 5446:1 5447:1 5448:2 5454:1 5465:4 5474:1 5479:1 5489:2 5494:1 5497:1 5502:1 5503:2 5509:1 5521:1 5523:1 5525:1 5561:1 5562:1 5565:5 5588:2 5595:1 5604:1 5614:1 5618:1 5620:1 5624:1 5631:1 5635:1 5643:1 5646:1 5653:1 5654:1 5656:1 5659:2 5660:1 5662:1 5674:1 5675:1 5679:1 5683:1 5697:1 5701:1 5702:1 5703:1 5707:1 5720:1 5731:1 5745:1 5766:3 5791:1 5794:5 5796:1 5803:1 5808:1 5817:1 5828:1 5846:1 5860:2 5894:1 5903:1 5924:1 5931:3 5932:9 5941:1 5945:2 5971:2 5976:1 5977:1 5980:1 6003:1 6020:1 6024:1 6026:1 6034:2 6038:1 6042:2 6043:1 6046:1 6047:1 6057:1 6079:4 6086:1 6087:2 6088:2 6126:1 6127:3 6129:1 6136:1 6151:5 6153:1 6165:1 6166:1 6168:1 6177:1 6181:1 6184:1 6194:1 6239:6 6242:2 6243:1 6244:1 6247:1 6248:1 6250:2 6251:2 6254:2 6255:3 6256:5 6262:2 6264:7 6265:1 6266:1 6267:3 6275:1 6288:1 6298:1 6325:3 6329:1 6341:1 6356:2 6357:1 6358:1 6392:1 6394:1 6398:1 6404:1 6410:2 6413:1 6424:1 6446:1 6450:1 6454:1 6463:1 6494:1 6507:3 6508:1 6513:2 6523:1 6533:5 6535:2 6539:3 6547:1 6550:1 6557:1 6558:1 6566:2 6580:1 6582:3 6585:1 6586:2 6598:2 6603:1 6604:1 6606:1 6615:1 6639:1 6657:1 6661:1 6665:1 6670:1 6677:2 6679:3 6684:3 6685:2 6687:1 6695:3 6699:2 6704:4 6711:3 6718:1 6731:1 6739:3 6745:1 6780:1 6783:2 6789:1 6791:1 6795:1 6799:2 6803:1 6819:3 6828:1 6835:1 6857:2 6860:1 6876:2 6893:1 6896:2 6909:1 6930:1 6954:2 6970:1 6974:1 6982:2 6996:1 7000:5 7003:1 7010:3 7012:1 7015:1 7016:1 7027:1 7036:1 7049:1 7080:1 7126:1 7134:1 7145:1 7153:1 7180:1 7196:1 7204:1 7213:1 7221:5 7267:1 7269:1 7275:3 7290:2 7307:4 7343:2 7352:1 7360:2 7377:1 7378:1 7387:2 7406:1 7411:1 7419:1 7420:2 7430:1 7433:1 7437:4 7446:1 7466:1 7471:1 7477:4 7478:5 7479:3 7496:1 7499:2 7502:2 7505:1 7512:1 7530:1 7531:2 7544:1 7547:1 7548:47 7549:1 7550:1 7555:2 7567:13 7568:26 7578:1 7579:1 7582:1 7586:1 7588:1 7590:1 7595:1 7615:1 7616:5 7638:1 7653:1 7668:1 7672:2 7689:3 7705:1 7742:4 7746:7 7750:1 7780:1 7786:1 7788:5 7802:1 7805:1 7826:1 7837:1 7851:1 7858:1 7862:1 7910:3 7920:2 7921:1 7926:1 7928:7 7936:2 7942:1 7951:1 7960:2 7973:1 7977:2 7983:1 7998:1 7999:1 8006:21 8018:1 8026:1 8031:2 8037:2 8039:1 8049:1 8063:2 8092:1 8098:1 8107:2 8116:1 8127:2 8139:1 8140:1 8154:1 8167:1 8170:3 8176:4 8181:3 8194:2 8196:2 8199:4 8213:2 8214:1 8215:2 8220:1 8231:1 8233:2 8241:2 8251:1 8260:2 8263:2 8269:1 8270:1 8274:1 8276:1 8277:1 8294:2 8308:1 8319:3 8327:1 8336:1 8342:1 8345:1 8349:1 8354:1 8357:2 8358:1 8359:3 8360:2 8361:2 8362:5 8365:1 8366:1 8370:2 8373:2 8375:2 8381:3 8396:1 8402:3 8412:2 8420:1 8421:1 8427:1 8428:1 8440:1 8450:2 8455:2 8462:1 8469:2 8475:3 8492:1 8496:5 8517:5 8526:1 8528:1 8531:2 8550:1 8556:1 8583:2 8595:1 8596:1 8603:1 8609:3 8616:3 8617:1 8621:1 8637:1 8640:2 8667:5 8668:2 8675:4 8676:1 8677:1 8678:4 8680:3 8687:2 8688:2 8706:3 8707:1 8709:2 8711:4 8725:1 8727:1 8743:2 8748:1 8763:1 8798:1 8813:1 8827:2 8835:1 8838:1 8853:2 8854:2 8863:1 8868:1 8880:1 8882:1 8895:1 8903:1 8918:1 8919:1 8926:2 8935:1 8957:1 8962:4 8974:1 8978:1 8991:2 8994:1 8995:4 9006:1 9008:1 9015:7 9035:2 9039:3 9042:1 9049:1 9055:1 9071:1 9078:1 9088:3 9091:1 9110:1 9111:1 9124:2 9125:1 9156:1 9160:1 9201:1 9219:1 9236:1 9240:1 9243:1 9246:3 9252:2 9253:1 9263:1 9264:2 9278:1 9292:2 9294:1 9298:2 9322:1 9325:3 9328:1 9337:1 9350:1 9375:24 9383:1 9399:1 9408:2 9420:6 9428:2 9434:1 9437:1 9448:1 9455:1 9456:1 9459:1 9466:1 9467:2 9484:2 9492:1 9494:1 9511:14 9526:2 9529:1 9535:2 9550:1 9569:5 9575:1 9580:1 9586:3 9587:1 9590:1 9603:1 9614:1 9620:1 9622:1 9651:2 9655:3 9656:1 9666:1 9690:8 9696:2 9697:4 9698:2 9706:3 9707:1 9717:1 9726:2 9730:3 9733:1 9734:1 9739:2 9744:2 9748:4 9751:5 9753:1 9754:1 9761:1 9770:1 9774:1 9780:3 9785:3 9795:1 9797:2 9809:1 9817:2 9830:1 9848:1 9853:3 9855:1 9873:12 9875:1 9876:6 9883:1 9885:1 9888:1 9909:1 9967:1 9971:2 9976:1 9986:1 9998:2 10018:4 10023:1 10035:4 10050:1 10055:1 10081:1 10084:1 10103:1 10121:1 10137:2 10149:5 10155:1 10159:1 10163:1 10173:2 10181:1 10191:1 10209:2 10215:7 10226:1 10227:1 10230:1 10251:1 10258:2 10276:3 10278:2 10281:2 10288:1 10297:6 10298:1 10304:1 10311:2 10312:4 10313:1 10314:4 10320:1 10328:1 10330:3 10334:1 10355:1 10356:3 10369:1 10374:1 10383:4 10394:1 10396:2 10401:1 10405:2 10413:7 10417:1 10463:1 10464:1 10470:1 10475:1 10495:2 10498:1 10499:2 10503:1 10509:1 10510:1 10524:2 10531:1 10534:1 10545:1 10549:1 10588:1 10591:1 10595:1 10604:1 10620:3 10621:1 10634:1 10635:7 10649:4 10650:7 10663:3 10666:1 10670:1 10672:1 10679:1 10684:2 10692:1 10699:4 10702:1 10727:2 10729:1 10730:1 10740:1 10742:2 10747:5 10759:1 10767:3 10774:1 10779:3 10795:1 10810:1 10811:1 10814:1 10839:1 10841:1 10843:2 10844:1 10846:1 10860:1 10876:1 10892:1 10894:1 10899:1 10900:1 10901:1 10904:1 10905:4 10906:1 10907:1 10926:1 10931:1 10941:1 10945:2 10959:1 10961:1 10965:1 10970:1 10971:1 10996:2 11019:1 11021:4 11029:2 11032:1 11039:2 11047:1 11054:1 11073:1 11080:1 11081:4 11112:1 11116:3 11118:6 11120:1 11122:2 11147:1 11169:1 11172:1 11180:1 11186:2 11198:1 11218:3 11232:1 11238:1 11242:1 11245:1 11248:5 11259:1 11261:3 11263:1 11277:2 11278:3 11280:2 11286:1 11296:1 11299:1 11315:3 11322:1 11328:3 11335:2 11336:9 11337:1 11348:1 11349:1 11354:1 11355:1 11358:1 11359:1 11367:1 11368:3 11370:1 11371:1 11372:7 11373:1 11374:1 11381:1 11383:7 11392:1 11394:1 11399:1 11401:1 11406:10 11422:2 11431:5 11435:1 11441:2 11446:1 11455:1 11475:1 11476:1 11486:4 11492:1 11496:1 11498:1 11499:2 11530:1 11534:1 11544:3 11557:1 11563:1 11566:2 11575:1 11598:1 11615:2 11616:2 11633:2 11649:2 11651:1 11683:1 11691:5 11734:2 11737:2 11749:1 11754:1 11759:1 11761:1 11764:1 11765:1 11766:1 11768:1 11786:4 11787:4 11788:24 11793:1 11797:6 11806:1 11812:1 11813:2 11823:3 11837:2 11859:1 11879:2 11900:1 11904:1 11930:1 11938:9 11939:2 11955:1 11958:4 11959:1 11963:2 11968:1 11984:1 12005:1 12016:3 12019:1 12040:1 12047:1 12054:2 12058:1 12064:1 12069:1 12081:2 12115:2 12134:4 12148:1 12155:1 12187:1 12189:3 12196:1 12198:1 12202:1 12203:1 12218:1 12236:1 12257:1 12258:1 12264:1 12266:1 12275:1 12323:6 12336:1 12339:1 12341:1 12345:1 12348:1 12357:1 12369:2 12370:4 12391:1 12394:3 12420:1 12451:1 12456:2 12485:1 12505:1 12510:2 12516:1 12524:1 12525:2 12550:1 12566:2 12599:1 12600:1 12651:1 12652:1 12671:5 12673:1 12684:1 12691:1 12692:3 12698:1 12702:1 12710:2 12712:1 12715:1 12719:1 12722:1 12733:1 12741:1 12744:2 12748:1 12756:2 12765:1 12768:1 12769:1 12771:2 12776:1 12792:1 12798:1 12799:2 12829:1 12834:1 12835:2 12837:1 12870:2 12872:3 12874:1 12875:1 12881:1 12882:2 12883:1 12884:7 12886:1 12889:4 12891:1 12892:1 12900:2 12904:3 12915:3 12919:1 12924:2 12928:3 12934:1 12954:7 12956:1 12960:1 12964:1 12966:1 12968:1 12970:3 12979:1 12980:2 12997:2 13019:2 13033:3 13034:1 13049:5 13052:1 13053:1 13062:1 13065:1 13071:1 13084:2 13095:3 13114:1 13117:1 13119:2 13122:7 13131:1 13136:1 13148:2 13149:2 13150:2 13151:1 13152:1 13160:4 13174:1 13177:1 13178:2 13190:1 13201:2 13221:1 13237:2 13238:1 13243:1 13249:1 13250:2 13251:2 13252:2 13254:2 13257:1 13270:1 13277:1 13278:1 13281:1 13282:1 13283:1 13296:1 13301:2 13302:1 13310:1 13313:1 13314:1 13318:3 13319:1 13330:2 13334:1 13335:1 13352:1 13365:8 13370:2 13371:1 13377:1 13380:1 13411:1 13416:1 13418:1 13434:1 13435:1 13436:2 13439:2 13457:1 13458:2 13461:2 13462:1 13467:5 13493:1 13510:1 13515:1 13518:1 13529:2 13530:3 13535:2 13536:6 13543:2 13560:2 13565:3 13578:1 13589:2 13604:1 13610:2 13612:1 13615:2 13616:1 13620:1 13628:1 13629:2 13633:2 13656:1 13666:1 13679:1 13722:1 13723:1 13728:1 13730:1 13735:2 13750:1 13769:1 13782:1 13795:1 13829:1 13854:1 13855:1 13864:1 13880:1 13894:1 13898:3 13907:2 13908:1 13917:1 13920:1 13924:5 13926:1 13927:1 13935:1 13937:1 13951:2 13952:1 13956:1 13970:1 13971:1 13972:1 13985:1 13989:1 14009:2 14013:1 14035:1 14051:1 14065:1 14070:1 14076:1 14087:1 14091:2 14093:2 14099:1 14106:4 14126:2 14135:1 14142:1 14145:1 14154:2 14158:1 14183:1 14197:1 14225:1 14227:4 14238:1 14255:1 14271:1 14303:1 14304:1 14368:1 14370:1 14378:1 14385:1 14401:2 14437:4 14443:3 14445:2 14447:1 14450:1 14451:1 14470:1 14475:1 14496:2 14505:1 14516:1 14522:1 14541:1 14545:2 14546:1 14551:3 14566:1 14577:1 14588:1 14592:2 14596:1 14599:1 14601:1 14624:1 14633:2 14662:1 14665:2 14667:1 14670:1 14671:1 14678:1 14709:1 14710:1 14747:1 14756:2 14760:3 14761:4 14766:1 14792:4 14793:1 14796:1 14811:1 14826:5 14828:2 14832:1 14835:1 14840:1 14855:1 14867:1 14870:1 14877:1 14887:4 14894:2 14898:2 14906:2 14909:1 14942:1 14951:2 14968:1 14970:1 14978:1 14992:1 15006:1 15007:1 15009:1 15020:1 15021:1 15033:3 15036:1 15058:9 15063:8 15067:1 15073:1 15099:2 15112:1 15113:2 15118:2 15131:3 15134:1 15154:1 15158:1 15165:1 15171:1 15190:3 15193:1 15194:1 15201:7 15210:3 15211:1 15221:1 15222:1 15224:2 15230:1 15232:3 15234:1 15236:1 15238:1 15239:5 15243:2 15244:7 15245:1 15250:2 15254:2 15255:1 15263:1 15264:6 15269:4 15300:1 15302:1 15337:1 15345:1 15347:2 15349:1 15355:1 15356:2 15361:2 15366:6 15375:1 15388:2 15401:1 15403:2 15421:2 15425:3 15442:1 15446:2 15461:1 15465:1 15472:1 15478:1 15488:1 15496:3 15500:1 15502:8 15513:2 15529:3 15538:1 15540:4 15554:1 15557:1 15566:24 15570:1 15587:1 15596:5 15597:1 15599:1 15620:2 15637:70 15665:3 15669:1 15697:1 15731:1 15733:1 15734:3 15756:1 15758:1 15759:1 15763:2 15765:1 15766:2 15773:3 15774:4 15776:1 15780:2 15783:1 15784:2 15791:1 15797:1 15810:1 15812:1 15815:1 15822:1 15831:1 15832:1 15833:1 15855:1 15857:1 15869:1 15876:1 15896:1 15902:5 15919:1 15934:2 15938:3 15953:1 15961:2 15969:2 15974:1 15988:1 16026:1 16035:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16107:2 16108:1 16116:1 16130:1 16133:1 16137:1 16146:3 16151:4 16153:1 16156:1 16165:1 16167:2 16168:3 16176:1 16187:3 16190:1 16199:3 16210:1 16215:1 16217:3 16219:1 16220:2 16222:1 16228:1 16230:1 16237:1 16249:3 16254:1 16255:13 16262:1 16264:2 16289:2 16300:2 16310:1 16311:2 16338:1 16343:1 16348:2 16365:1 16366:2 16369:3 16373:1 16375:3 16378:1 16380:2 16390:1 16395:1 16407:1 16416:1 16419:1 16421:1 16426:2 16427:2 16446:2 16450:2 16453:1 16455:1 16459:1 16472:1 16486:1 16491:1 16492:3 16500:1 16501:1 16517:1 16540:1 16558:1 16562:1 16569:2 16571:1 16582:1 16587:1 16588:2 16589:1 16590:1 16601:1 16608:1 16609:1 16617:2 16623:3 16630:2 16644:1 16646:1 16649:1 16652:1 16654:3 16658:1 16666:1 16674:1 16676:1 16683:3 16690:1 16704:2 16705:1 16718:1 16721:1 16726:1 16744:2 16765:1 16766:2 16771:1 16777:1 16780:1 16796:4 16845:2 16847:1 16851:1 16860:1 16866:1 16876:1 16877:1 16879:1 16896:5 16899:1 16902:1 16904:1 16911:1 16915:2 16916:2 16920:2 16921:1 16934:1 16936:2 16940:2 16949:1 16953:1 16954:1 16964:2 16982:1 16987:1 16988:1 16990:1 16993:1 17001:1 17010:1 17018:2 17019:2 17055:1 17058:2 17061:1 17077:1 17082:1 17098:1 17103:3 17113:2 17117:1 17128:1 17130:1 17142:3 17187:3 17193:1 17194:1 17196:2 17199:2 17201:2 17202:1 17219:1 17220:14 17223:2 17235:1 17244:1 17248:2 17275:1 17285:1 17287:1 17292:1 17294:1 17310:1 17311:2 17317:3 17334:2 17338:2 17341:1 17354:1 17361:1 17363:1 17369:1 17376:1 17392:1 17396:4 17403:2 17404:4 17417:2 17446:1 17448:1 17479:1 17481:1 17501:1 17513:1 17529:3 17531:1 17540:1 17568:1 17571:1 17578:1 17584:1 17587:1 17595:1 17599:3 17609:2 17616:1 17640:1 17641:1 17646:1 17657:1 17661:1 17666:1 17667:4 17673:1 17714:4 17718:1 17723:2 17750:1 17752:1 17754:4 17760:1 17774:4 17779:1 17782:1 17785:3 17805:2 17806:1 17811:1 17821:1 17823:2 17828:1 17850:1 17856:1 17873:1 17874:1 17900:1 17912:13 17916:1 17923:1 17930:1 17946:1 17949:1 17961:1 17968:1 17970:1 17978:1 17979:1 17980:1 17984:2 17986:1 17989:1 17998:1 18003:1 18010:1 18013:2 18027:1 18031:5 18035:1 18037:2 18038:1 18052:4 18057:2 18065:2 18066:1 18095:1 18101:3734 18105:1 18118:4 18123:2 18149:1 18157:1 18163:2 18171:1 18178:3 18179:1 18188:1 18214:1 18215:3 18226:1 18234:2 18245:2 18262:1 18267:1 18271:5 18272:2 18298:3 18306:1 18309:1 18311:3 18314:1 18315:1 18331:1 18333:1 18346:1 18361:1 18362:1 18366:1 18381:1 18408:1 18410:5 18415:1 18429:1 18434:1 18439:1 18444:1 18462:3 18472:1 18481:2 18491:1 18493:1 18505:1 18512:1 18514:1 18515:1 18557:1 18567:1 18569:2 18572:1 18584:4 18599:2 18601:1 18607:1 18618:1 18623:1 18631:1 18667:4 18669:1 18677:1 18679:3 18725:1 18731:1 18761:1 18780:1 18786:2 18796:1 18799:2 18801:1 18804:2 18813:4 18825:2 18829:1 18830:4 18834:1 18847:5 18859:16 18877:1 18878:1 18880:3 18881:1 18883:23 18892:2 18910:1 18911:6 18912:1 18914:1 18931:1 18936:2 18947:1 18950:5 18968:1 18972:2 18976:1 18978:6 18980:2 18983:1 18987:1 18997:2 18998:1 19000:1 19005:1 19028:1 19034:3 19039:1 19055:1 19067:3 19099:1 19103:1 19106:1 19108:1 19148:1 19153:1 19176:1 19179:1 19187:1 19206:1 19209:13 19212:1 19220:1 19231:3 19253:1 19254:1 19256:1 19279:1 19291:1 19299:1 19305:1 19307:7 19326:1 19329:1 19347:2 19357:1 19359:1 19360:1 19378:1 19383:1 19390:1 19391:1 19394:2 19399:1 19401:2 19402:1 19409:2 19430:1 19436:1 19459:4 19464:1 19470:1 19472:1 19488:3 19489:1 19514:3 19523:1 19525:1 19539:1 19543:2 19545:5 19565:2 19569:1 19574:2 19582:2 19584:1 19586:1 19591:7 19612:1 19638:1 19644:1 19663:15 19669:1 19677:2 19679:3 19694:1 19695:1 19706:1 19707:13 19724:1 19747:1 19756:1 19774:1 19786:2 19813:1 19818:1 19822:1 19833:2 19853:4 19854:1 19856:2 19865:1 19870:1 19900:2 19910:1 19918:1 19945:5 19955:1 19957:3 19968:1 19979:1 19986:1 19998:1 20006:1 20022:1 20024:1 20044:2 20078:2 20086:1 20095:1 20099:1 20109:1 20117:1 20119:1 20120:2 20129:1 20131:1 20143:1 20145:1 20148:2 20169:1 20171:1 20177:1 20193:1 20210:3 20217:1 20224:1 20227:2 20230:1 20231:1 20232:1 20235:1 20236:1 20240:1 20245:13 20248:1 20252:2 20257:3 20258:1 20260:5 20261:1 20279:3 20285:2 20289:5 20299:1 20322:4 20325:1 20327:1 20335:1 20336:1 20352:1 20364:2 20365:1 20366:1 20375:2 20378:1 20396:2 20401:1 20402:1 20413:1 20422:8 20429:1 20432:2 20438:1 20448:1 20453:1 20467:1 20490:1 20496:1 20502:1 20505:1 20507:1 20524:3 20528:1 20531:1 20533:1 20538:1 20546:3 20559:1 20561:1 20567:2 20569:1 20572:1 20579:1 20583:1 20585:1 20620:1 20628:3 20647:1 20672:1 20678:1 20679:1 20684:1 20708:1 20712:1 20716:1 20718:4 20720:2 20723:3 20733:4 20741:1 20743:1 20745:1 20773:1 20777:1 20782:1 20786:1 20787:1 20798:1 20804:1 20808:1 20809:1 20810:1 20814:1 20815:2 20822:1 20827:1 20828:1 20838:2 20840:6 20843:3 20856:2 20860:1 20861:1 20863:1 20870:1 20874:1 20880:1 20888:1 20921:1 20924:2 20926:1 20927:2 20934:2 20941:2 20951:1 20952:1 20953:1 20971:1 20973:4 20976:18 20978:1 20992:1 20998:2 20999:2 21003:1 21010:1 21014:1 21019:1 21024:1 21026:2 21037:5 21049:1 21053:1 21080:2 21084:3 21086:1 21090:1 21096:4 21108:1 21120:1 21125:1 21140:1 21141:1 21142:4 21150:2 21156:3 21161:1 21209:1 21231:4 21237:2 21238:1 21239:12 21241:3 21245:2 21252:2 21254:1 21255:1 21266:3 21267:3 21269:1 21272:1 21279:2 21282:2 21283:1 21291:1 21292:1 21293:1 21297:1 21302:1 21306:2 21309:2 21314:1 21334:2 21369:1 21379:5 21380:1 21403:1 21407:1 21412:1 21413:2 21423:2 21425:1 21428:1 21435:1 21439:1 21444:1 21446:4 21457:1 21464:1 21467:1 21474:1 21515:24 21516:2 21518:1 21537:1 21548:1 21556:2 21569:1 21575:1 21583:1 21594:4 21609:1 21611:1 21613:2 21620:1 21621:1 21623:1 21628:2 21637:1 21642:2 21644:1 21645:1 21648:8 21654:1 21664:2 21668:4 21679:2 21704:1 21706:2 21712:1 21715:1 21718:2 21732:1 21735:1 21738:1 21741:1 21743:1 21745:2 21753:1 21754:1 21766:2 21769:1 21781:10 21794:4 21802:1 21807:4 21819:1 21828:2 21840:1 21860:2 21873:1 21874:1 21895:1 21914:1 21929:1 21935:1 21941:3 21946:1 21949:1 21959:1 21967:1 21972:1 21985:1 21989:1 22001:1 22015:1 22021:1 22032:1 22038:1 22040:1 22041:2 22042:2 22049:15 22051:2 22078:1 22082:2 22090:1 22099:1 22120:1 22130:3 22132:1 22133:2 22136:1 22139:1 22154:1 22165:3 22180:1 22185:1 22188:5 22192:1 22223:1 22225:1 22241:1 22246:1 22248:1 22264:2 22279:1 22283:1 22284:1 22290:1 22295:2 22310:1 22322:1 22329:1 22333:1 22344:1 22346:1 22348:2 22355:2 22361:1 22374:1 22414:1 22423:1 22424:1 22425:5 22431:1 22432:1 22436:1 22448:1 22452:1 22453:1 22463:2 22466:1 22471:1 22478:1 22481:2 22496:1 22506:1 22530:1 22534:2 22548:1 22551:2 22556:1 22564:2 22568:4 22571:1 22572:1 22587:1 22593:1 22607:2 22619:1 22627:3 22628:5 22633:1 22634:1 22646:6 22654:1 22657:1 22665:1 22667:1 22670:1 22672:3 22677:2 22681:1 22683:1 22699:2 22706:1 22707:2 22708:1 22720:1 22748:5 22755:1 22757:29 22759:1 22837:2 22844:1 22846:2 22847:1 22849:1 22856:1 22872:1 22889:1 22916:3 22922:1 22924:2 22925:1 22937:1 22949:1 22951:1 22957:1 22965:2 22983:1 22986:1 23000:1 23008:1 23019:1 23022:1 23024:2 23028:1 23059:1 23062:2 23076:1 23077:2 23089:1 23104:4 23109:1 23112:1 23117:1 23122:1 23126:1 23152:1 23159:1 23175:1 23177:1 23192:2 23207:3 23215:2 23222:1 23224:2 23227:1 23228:1 23229:2 23246:1 23266:1 23278:1 23284:1 23300:1 23306:1 23313:1 23321:1 23328:1 23334:2 23360:1 23362:1 23389:1 23391:1 23396:1 23397:8 23405:1 23412:1 23413:1 23417:1 23421:3 23434:2 23449:1 23470:1 23492:1 23494:1 23502:1 23510:3 23520:1 23521:1 23558:1 23568:5 23595:1 23602:1 23633:2 23643:1 23646:1 23655:1 23656:1 23665:1 23666:2 23667:5 23668:1 23689:1 23697:1 23704:2 23707:2 23712:1 23716:3 23722:2 23726:1 23752:2 23753:2 23766:3 23780:1 23788:1 23791:2 23802:2 23808:1 23820:1 23841:1 23844:1 23860:1 23867:4 23870:1 23871:1 23879:3 23883:1 23885:1 23890:1 23899:1 23900:1 23908:1 23916:1 23921:1 23933:1 23934:1 23937:1 23944:1 23954:1 23960:1 23971:1 23980:1 23982:2 23998:1 24003:1 24006:3 24011:1 24013:1 24020:1 24027:1 24036:1 24040:1 24050:1 24052:1 24057:1 24059:1 24081:1 24083:1 24086:1 24099:1 24106:2 24144:3 24155:5 24179:1 24191:1 24208:1 24214:1 24224:1 24230:2 24231:1 24234:1 24241:1 24242:5 24252:1 24269:2 24274:1 24275:1 24290:1 24306:2 24325:1 24331:1 24339:4 24359:1 24360:1 24363:1 24367:1 24396:1 24404:2 24406:4 24412:2 24417:1 24420:1 24434:8 24436:1 24457:1 24473:2 24476:5 24478:1 24484:1 24486:1 24488:4 24491:1 24492:1 24533:1 24534:1 24540:1 24567:1 24572:1 24600:1 24614:1 24620:1 24634:1 24636:1 24637:2 24640:1 24641:2 24644:8 24647:3 24653:1 24665:1 24678:1 24692:3 24694:1 24697:2 24702:1 24718:1 24728:1 24730:6 24731:1 24740:2 24742:1 24751:4 24760:6 24761:2 24772:2 24782:1 24784:1 24789:1 24797:1 24817:2 24823:1 24838:1 24841:6 24843:1 24847:1 24854:1 24855:1 24873:2 24883:1 24897:2 24915:3 24928:1 24942:5 24946:1 24967:3 24969:4 24973:1 24990:2 24999:1 25018:1 25051:1 25053:1 25056:1 25061:1 25071:1 25081:1 25085:1 25092:4 25109:1 25117:1 25121:1 25131:1 25135:1 25138:2 25140:1 25143:1 25153:1 25157:2 25160:3 25173:1 25175:1 25179:2 25191:1 25194:1 25200:1 25217:2 25219:1 25228:1 25230:2 25235:1 25242:1 25256:6 25261:1 25262:1 25265:1 25268:2 25277:1 25283:1 25286:1 25289:2 25323:2 25326:1 25332:2 25348:1 25358:1 25360:1 25379:1 25385:1 25387:3 25402:1 25410:13 25414:1 25451:1 25455:1 25478:1 25486:1 25494:1 25514:1 25525:1 25530:1 25537:1 25549:3 25555:1 25560:1 25569:1 25571:2 25586:1 25641:2 25660:3 25681:5 25683:2 25684:1 25688:1 25695:1 25696:2 25698:1 25699:4 25700:9 25703:1 25705:1 25722:1 25735:1 25742:2 25751:3 25773:1 25782:1 25787:1 25793:4 25801:1 25805:1 25819:1 25826:3 25844:1 25852:1 25856:1 25861:2 25866:1 25867:1 25879:1 25901:2 25905:1 25910:1 25916:1 25944:1 25955:1 25957:1 25967:1 25975:1 26008:1 26023:1 26032:1 26042:1 26051:1 26067:1 26069:2 26075:1 26104:2 26110:2 26120:2 26137:1 26151:1 26158:1 26189:1 26196:1 26201:1 26216:2 26218:2 26228:2 26254:1 26272:2 26281:1 26285:2 26289:5 26299:1 26301:1 26303:9 26314:1 26331:2 26332:1 26361:1 26383:1 26389:1 26397:29 26398:1 26400:3 26401:1 26410:1 26420:1 26430:5 26450:1 26452:1 26454:1 26495:1 26503:2 26505:3 26509:4 26510:2 26514:1 26519:1 26544:2 26546:1 26548:1 26549:1 26555:2 26557:2 26559:2 26562:2 26563:1 26569:1 26570:1 26571:1 26576:3 26581:1 26588:3 26590:1 26612:2 26624:1 26638:1 26641:2 26651:1 26664:2 26666:1 26686:1 26689:1 26690:1 26711:1 26715:3 26716:2 26725:1 26765:1 26766:1 26784:2 26789:2 26792:1 26794:1 26797:1 26799:1 26807:3 26808:1 26810:2 26829:2 26840:1 26843:1 26869:11 26874:1 26879:1 26889:1 26894:1 26909:1 26919:1 26954:3 26963:3 26977:1 26986:2 26989:1 26993:1 27017:1 27025:1 27035:1 27038:3 27044:1 27071:2 27074:1 27075:1 27080:1 27083:1 27108:5 27111:4 27134:1 27135:1 27143:3 27145:1 27157:1 27162:1 27171:1 27177:1 27213:1 27216:1 27217:1 27228:4 27231:1 27239:1 27248:1 27256:3 27259:1 27271:1 27279:2 27280:28 27281:2 27283:3 27287:4 27289:1 27290:1 27300:1 27315:1 27316:13 27326:1 27329:1 27337:1 27364:1 27368:2 27372:1 27373:2 27381:1 27383:2 27394:1 27401:1 27405:6 27414:4 27419:2 27447:3 27448:1 27450:1 27452:2 27458:1 27462:1 27465:1 27477:1 27492:1 27495:1 27496:1 27519:1 27526:1 27549:1 27550:1 27558:2 27561:1 27562:1 27590:1 27591:1 27594:1 27611:1 27619:1 27620:1 27627:1 27629:1 27633:2 27636:1 27638:4 27641:2 27644:1 27658:1 27661:2 27666:1 27676:1 27692:8 27695:1 27697:1 27705:4 27708:1 27743:1 27745:1 27749:1 27772:3 27773:8 27775:1 27776:1 27780:1 27783:1 27799:2 27804:2 27805:2 27814:1 27818:1 27828:1 27834:2 27835:1 27842:1 27864:3 27879:1 27895:1 27914:3 27920:1 27922:2 27926:2 27927:1 27951:2 27961:2 27963:5 27968:1 27971:1 27977:5 27984:1 27994:2 28018:1 28026:1 28046:1 28053:1 28067:1 28081:1 28106:3 28108:2 28122:1 28138:4 28169:2 28172:1 28176:1 28185:1 28210:1 28217:2 28222:1 28229:3 28237:1 28265:1 28283:1 28292:3 28295:1 28297:1 28300:1 28301:1 28314:1 28326:2 28336:1 28340:1 28341:1 28343:6 28344:1 28352:1 28364:2 28370:1 28378:1 28380:2 28391:1 28395:3 28397:1 28420:1 28430:5 28437:2 28442:1 28496:1 28499:1 28503:1 28504:1 28507:1 28509:1 28511:5 28516:1 28523:1 28530:1 28554:1 28560:2 28566:1 28569:1 28574:1 28575:1 28576:1 28579:1 28587:2 28618:1 28627:1 28629:1 16 6:1 10:1 26:1 27:2 29:1 44:1 58:1 69:1 74:1 78:1 82:1 83:5 100:1 106:1 137:1 147:1 153:1 162:1 165:3 172:1 175:2 176:1 201:1 206:1 211:2 213:1 230:1 235:4 239:1 254:2 283:1 286:1 296:4 300:1 318:1 327:1 336:2 337:3 338:1 364:1 372:1 375:1 382:1 399:1 407:2 418:1 442:3 445:2 449:2 460:1 471:1 478:1 489:2 504:1 507:1 509:1 514:1 523:2 526:2 552:1 553:1 567:5 603:1 614:1 617:3 621:1 627:3 634:1 648:3 654:1 661:4 665:1 671:1 676:1 684:1 685:1 688:1 699:1 707:1 713:1 724:1 735:1 747:2 757:2 768:1 772:1 787:1 803:1 805:1 809:1 813:1 824:1 826:1 828:1 843:3 852:1 856:2 861:2 872:2 902:2 907:1 910:2 913:1 915:1 924:2 933:2 934:2 939:3 940:1 941:3 942:6 943:2 944:2 947:2 963:1 966:2 978:1 982:1 983:1 985:6 987:2 1010:1 1015:2 1020:2 1052:1 1059:2 1062:1 1081:1 1086:1 1089:1 1108:2 1116:1 1125:2 1143:1 1150:1 1170:1 1171:3 1174:1 1175:1 1184:2 1187:1 1192:2 1200:1 1201:4 1217:2 1222:1 1224:1 1227:1 1237:2 1239:3 1259:1 1263:1 1267:1 1269:2 1275:4 1278:1 1279:1 1289:6 1290:2 1292:1 1302:3 1306:1 1316:1 1319:1 1321:1 1331:1 1333:1 1335:3 1346:2 1356:1 1375:2 1379:1 1390:1 1391:1 1404:1 1410:1 1413:2 1415:2 1438:3 1440:1 1446:1 1448:1 1451:1 1453:2 1464:1 1475:1 1484:6 1493:1 1497:1 1501:6 1513:2 1521:2 1522:1 1525:4 1531:1 1535:1 1540:1 1541:1 1544:4 1560:1 1569:1 1571:1 1572:8 1583:1 1587:3 1589:1 1590:1 1591:2 1594:1 1596:1 1601:2 1603:1 1621:2 1628:1 1632:4 1637:4 1640:2 1641:1 1653:1 1654:1 1657:1 1672:5 1675:3 1678:1 1683:1 1684:1 1692:1 1698:2 1702:1 1706:1 1722:1 1731:1 1733:1 1743:2 1745:1 1746:1 1747:1 1751:1 1758:4 1766:4 1779:1 1784:1 1789:1 1790:1 1809:1 1810:1 1816:1 1820:1 1824:1 1825:1 1831:1 1836:2 1837:2 1844:1 1849:1 1853:1 1860:1 1861:1 1865:1 1868:1 1877:3 1882:1 1883:1 1884:1 1889:1 1895:1 1901:1 1903:2 1904:4 1908:1 1910:1 1912:1 1914:1 1921:1 1929:1 1930:3 1931:1 1933:1 1950:1 1953:1 1958:1 1978:1 1986:1 2001:1 2006:1 2015:2 2017:2 2019:1 2020:2 2022:1 2023:3 2044:1 2049:1 2054:2 2072:1 2074:3 2075:1 2076:2 2077:1 2078:1 2101:1 2108:4 2126:2 2133:1 2156:1 2158:1 2164:1 2170:1 2172:1 2174:3 2188:1 2191:1 2192:1 2204:1 2227:2 2228:1 2229:1 2230:2 2232:4 2236:2 2237:1 2238:6 2240:1 2241:1 2244:5 2245:1 2246:4 2248:1 2251:1 2253:1 2256:6 2259:3 2260:7 2265:1 2267:1 2272:1 2273:2 2277:1 2279:1 2283:1 2290:1 2303:1 2308:1 2321:1 2327:2 2331:1 2334:1 2336:3 2340:1 2346:1 2354:1 2359:2 2361:1 2374:1 2391:1 2413:5 2423:1 2437:1 2443:2 2448:3 2474:1 2483:1 2486:1 2488:1 2495:1 2526:2 2531:1 2556:1 2582:2 2587:1 2595:4 2596:1 2602:1 2607:4 2615:1 2622:2 2623:1 2630:1 2633:1 2635:3 2637:12 2651:1 2653:1 2659:1 2662:2 2668:1 2670:1 2674:1 2675:1 2677:1 2684:4 2689:1 2690:1 2695:1 2713:2 2721:2 2731:2 2738:1 2739:1 2741:5 2747:4 2755:1 2792:4 2795:1 2798:1 2799:1 2804:1 2806:1 2818:14 2828:7 2837:1 2848:1 2857:2 2869:1 2875:1 2885:32 2899:2 2903:1 2907:1 2918:1 2919:1 2920:1 2936:1 2948:1 2956:1 2962:2 2970:1 2981:1 2986:2 2987:1 2988:1 2989:2 3028:1 3037:3 3041:1 3053:3 3059:1 3062:2 3070:1 3085:1 3105:1 3106:1 3107:1 3115:1 3116:1 3117:1 3122:1 3129:2 3133:4 3141:1 3151:13 3153:2 3166:1 3168:1 3173:1 3181:1 3191:2 3208:1 3218:1 3219:7 3238:1 3254:1 3281:1 3283:1 3293:1 3301:1 3303:2 3319:3 3327:1 3330:1 3340:1 3348:1 3357:2 3361:3 3369:2 3373:1 3377:1 3388:4 3417:1 3423:1 3426:1 3427:3 3430:1 3439:1 3441:1 3442:1 3453:3 3491:1 3502:1 3505:1 3511:1 3512:4 3513:2 3519:2 3521:1 3522:1 3535:2 3543:1 3550:1 3569:1 3588:1 3598:1 3603:2 3606:4 3608:1 3625:1 3643:1 3651:4 3652:44 3659:1 3677:2 3678:1 3679:9 3681:1 3686:1 3687:2 3688:27 3689:2 3691:6 3694:1 3697:2 3706:3 3709:1 3718:3 3721:4 3724:2 3725:3 3740:2 3742:1 3743:2 3755:1 3769:2 3776:1 3777:3 3781:1 3783:1 3788:1 3805:1 3808:1 3811:2 3813:1 3815:1 3816:3 3826:2 3838:2 3840:1 3844:1 3853:1 3861:1 3863:1 3866:2 3873:1 3889:1 3891:1 3900:1 3901:2 3904:1 3905:1 3911:1 3915:2 3918:1 3920:1 3925:4 3939:4 3953:1 3985:1 3993:1 3995:1 4013:1 4031:1 4036:1 4052:1 4056:3 4062:1 4086:1 4090:1 4101:2 4106:2 4107:2 4109:1 4110:1 4137:1 4143:2 4153:1 4156:1 4169:3 4184:1 4199:1 4209:2 4221:1 4234:14 4250:1 4269:1 4277:1 4302:2 4306:1 4313:5 4322:1 4325:2 4335:2 4347:7 4351:1 4362:1 4372:1 4380:1 4383:1 4386:1 4393:1 4435:1 4448:1 4449:2 4470:1 4474:1 4484:1 4489:2 4499:2 4515:2 4519:1 4522:2 4533:1 4543:4 4554:1 4557:1 4563:4 4582:1 4584:2 4585:1 4586:1 4594:1 4609:1 4653:1 4654:1 4659:1 4660:2 4671:1 4685:1 4689:1 4693:2 4701:2 4742:1 4754:2 4779:1 4782:1 4785:1 4792:17 4793:2 4804:1 4824:2 4848:1 4850:2 4860:1 4865:1 4870:1 4893:3 4896:1 4902:3 4903:1 4905:4 4925:2 4926:4 4927:8 4928:1 4929:1 4930:1 4932:1 4933:3 4935:1 4939:1 4940:24 4941:1 4943:1 4948:2 4949:3 4956:2 4957:1 4972:1 4975:3 4979:1 4995:2 5031:2 5045:1 5053:1 5058:1 5064:1 5120:1 5144:3 5145:3 5152:5 5158:1 5181:1 5190:1 5195:1 5209:1 5213:2 5214:24 5227:1 5242:1 5249:1 5250:3 5252:1 5280:3 5315:1 5317:1 5319:1 5330:1 5343:1 5355:1 5359:1 5361:2 5370:1 5375:1 5379:1 5386:1 5388:1 5390:2 5392:1 5395:1 5431:1 5433:1 5437:1 5446:1 5447:1 5448:2 5454:1 5465:4 5474:1 5479:1 5489:2 5494:1 5497:1 5502:1 5503:2 5509:1 5521:1 5523:2 5525:1 5549:1 5561:1 5562:1 5565:5 5588:2 5595:1 5604:1 5614:1 5618:1 5620:1 5624:1 5631:1 5635:1 5643:1 5646:1 5653:1 5654:1 5656:1 5659:2 5660:1 5662:1 5674:1 5675:1 5679:1 5683:1 5697:1 5701:1 5702:1 5703:1 5707:1 5720:1 5731:1 5745:1 5766:3 5791:1 5794:5 5796:1 5800:1 5803:1 5808:1 5817:2 5828:1 5846:1 5858:1 5860:2 5894:1 5903:1 5924:1 5931:4 5932:9 5941:1 5945:2 5966:1 5971:2 5976:1 5977:1 5980:1 6003:1 6020:1 6024:1 6026:1 6034:2 6038:1 6042:2 6043:1 6046:1 6047:1 6057:1 6073:1 6079:4 6086:1 6087:2 6088:2 6115:1 6126:1 6127:3 6129:1 6136:1 6151:5 6153:1 6157:1 6165:1 6166:1 6168:1 6177:1 6181:1 6184:1 6194:1 6239:6 6242:2 6243:1 6244:1 6247:1 6248:1 6250:2 6251:2 6254:2 6255:3 6256:5 6262:3 6264:8 6265:1 6266:1 6267:3 6275:1 6288:1 6289:1 6298:1 6317:1 6325:3 6329:1 6341:1 6356:2 6357:1 6358:1 6392:1 6394:1 6398:1 6404:1 6410:2 6413:1 6424:1 6446:1 6450:1 6454:1 6463:1 6494:1 6507:3 6508:1 6513:2 6523:1 6533:5 6535:2 6539:3 6547:1 6550:1 6557:1 6558:1 6566:2 6580:1 6582:3 6585:1 6586:2 6598:2 6603:1 6604:1 6606:1 6615:1 6639:1 6657:1 6661:1 6665:1 6670:1 6677:2 6679:3 6684:3 6685:2 6687:1 6695:3 6699:2 6704:4 6711:3 6718:1 6731:1 6736:1 6739:3 6745:1 6767:1 6780:1 6783:2 6789:1 6791:1 6795:1 6799:2 6803:1 6819:3 6828:1 6835:1 6857:2 6860:1 6876:2 6893:1 6896:2 6907:1 6909:1 6930:1 6954:2 6970:1 6973:2 6974:1 6982:2 6996:1 7000:5 7003:1 7008:1 7010:3 7012:1 7015:1 7016:1 7027:1 7036:1 7049:1 7080:1 7126:1 7134:1 7145:1 7153:1 7180:1 7196:1 7204:1 7213:1 7221:5 7267:1 7269:1 7275:3 7290:2 7297:1 7307:5 7343:2 7352:1 7360:2 7377:1 7378:1 7387:2 7406:1 7411:1 7419:1 7420:2 7430:1 7433:1 7437:4 7446:1 7466:1 7471:1 7477:4 7478:5 7479:3 7496:1 7499:2 7500:1 7502:2 7505:1 7512:1 7530:1 7531:2 7544:1 7547:1 7548:47 7549:1 7550:1 7555:2 7567:14 7568:28 7578:1 7579:1 7582:1 7586:1 7588:1 7590:1 7595:1 7615:1 7616:6 7638:1 7653:1 7668:1 7672:2 7689:3 7705:1 7742:4 7746:7 7750:1 7780:1 7786:1 7788:5 7802:1 7805:1 7806:1 7826:1 7837:1 7851:1 7858:1 7862:1 7910:3 7920:2 7921:1 7925:1 7926:1 7928:7 7936:2 7942:1 7951:1 7960:2 7973:1 7977:2 7983:1 7998:1 7999:1 8006:23 8018:1 8026:1 8031:2 8037:2 8039:1 8049:1 8063:2 8092:1 8098:1 8107:2 8116:1 8127:2 8139:1 8140:1 8154:1 8167:1 8170:3 8176:4 8181:3 8194:2 8196:2 8199:4 8213:2 8214:1 8215:2 8220:1 8231:1 8233:2 8241:2 8251:1 8260:2 8263:2 8269:1 8270:1 8274:1 8276:1 8277:1 8294:2 8295:1 8308:1 8319:3 8327:1 8336:1 8342:1 8345:1 8349:1 8354:1 8357:2 8358:1 8359:3 8360:2 8361:2 8362:5 8365:1 8366:1 8370:2 8373:2 8375:2 8381:3 8396:1 8402:3 8412:2 8420:1 8421:1 8427:1 8428:1 8440:1 8450:2 8455:2 8462:1 8469:2 8475:3 8492:1 8496:5 8517:5 8526:1 8528:1 8531:2 8550:1 8556:1 8583:2 8595:1 8596:1 8603:1 8609:3 8616:3 8617:1 8621:1 8637:1 8640:2 8667:5 8668:2 8675:4 8676:1 8677:1 8678:4 8680:3 8687:2 8688:2 8706:3 8707:1 8709:2 8711:4 8725:1 8727:1 8743:2 8748:1 8763:1 8798:1 8813:1 8827:2 8835:1 8838:1 8853:2 8854:2 8863:1 8868:1 8880:1 8882:1 8895:1 8903:1 8918:1 8919:1 8926:3 8935:1 8957:1 8962:4 8974:1 8978:1 8991:2 8994:1 8995:4 9006:1 9008:1 9015:7 9035:2 9039:3 9042:1 9049:1 9055:1 9071:1 9078:1 9088:3 9091:1 9110:1 9111:1 9124:2 9125:1 9156:1 9160:1 9201:1 9219:1 9220:1 9236:1 9240:1 9243:1 9246:3 9252:2 9253:1 9263:1 9264:2 9278:1 9292:2 9294:1 9298:2 9310:1 9322:1 9325:3 9328:1 9337:1 9350:1 9375:24 9383:1 9399:1 9408:2 9420:6 9428:2 9434:1 9437:1 9448:1 9455:1 9456:1 9459:1 9466:1 9467:2 9484:2 9492:1 9494:1 9511:14 9526:2 9529:1 9535:2 9550:1 9569:5 9575:1 9580:1 9586:3 9587:1 9590:1 9603:1 9614:1 9620:1 9622:1 9637:1 9651:2 9655:3 9656:1 9666:1 9690:8 9696:2 9697:4 9698:2 9706:3 9707:1 9717:1 9726:2 9730:3 9733:1 9734:1 9739:2 9744:2 9748:4 9751:5 9753:1 9754:1 9761:1 9770:1 9774:1 9780:3 9785:4 9795:1 9797:2 9809:1 9817:2 9830:1 9848:1 9853:3 9855:1 9873:12 9875:1 9876:6 9883:1 9885:1 9888:1 9909:1 9967:1 9971:2 9976:1 9986:1 9998:2 10018:4 10023:1 10035:4 10050:1 10055:1 10081:1 10084:1 10103:1 10121:1 10137:2 10149:5 10155:1 10159:1 10163:1 10173:2 10181:1 10191:1 10209:3 10215:7 10226:1 10227:1 10230:1 10251:1 10258:2 10276:3 10278:2 10281:2 10288:1 10297:6 10298:1 10304:1 10311:2 10312:4 10313:1 10314:4 10320:1 10328:1 10330:3 10334:1 10355:1 10356:3 10369:1 10371:1 10374:1 10383:4 10394:1 10396:2 10401:1 10405:2 10413:7 10417:1 10463:1 10464:1 10470:1 10475:1 10480:1 10495:2 10498:1 10499:2 10503:1 10509:1 10510:1 10524:2 10531:2 10534:1 10545:1 10549:1 10588:2 10591:1 10595:1 10604:1 10620:3 10621:1 10634:1 10635:7 10649:4 10650:7 10663:3 10666:1 10670:1 10672:1 10679:1 10684:2 10692:1 10699:4 10702:1 10727:2 10729:1 10730:1 10740:1 10742:2 10747:5 10759:1 10767:4 10774:1 10779:3 10795:1 10810:1 10811:1 10814:1 10838:1 10839:1 10841:1 10843:2 10844:1 10846:1 10860:1 10876:1 10892:1 10894:1 10899:1 10900:1 10901:1 10904:1 10905:4 10906:1 10907:1 10926:1 10931:1 10941:1 10945:2 10959:1 10961:1 10965:1 10970:1 10971:1 10996:2 11019:1 11021:4 11029:2 11032:1 11039:2 11047:1 11054:1 11073:1 11080:1 11081:4 11112:1 11116:3 11118:6 11120:1 11122:2 11147:1 11169:1 11172:1 11180:1 11186:2 11198:1 11218:3 11232:1 11238:1 11242:1 11245:1 11248:5 11259:1 11261:3 11263:1 11277:2 11278:3 11280:2 11286:1 11296:1 11299:1 11315:3 11322:1 11328:3 11335:2 11336:9 11337:1 11348:1 11349:1 11354:1 11355:1 11358:1 11359:1 11367:1 11368:3 11370:1 11371:1 11372:7 11373:1 11374:1 11381:1 11383:7 11392:1 11394:1 11399:1 11401:1 11406:10 11422:2 11431:5 11435:2 11441:2 11446:1 11455:1 11475:1 11476:1 11486:4 11492:1 11496:1 11498:1 11499:2 11530:1 11534:1 11544:3 11557:1 11563:1 11566:2 11575:1 11598:1 11615:2 11616:2 11633:2 11649:2 11651:1 11683:1 11691:5 11734:2 11737:2 11749:1 11754:1 11759:1 11761:1 11764:1 11765:1 11766:1 11768:1 11786:4 11787:4 11788:24 11793:1 11797:7 11806:1 11812:1 11813:2 11814:1 11823:3 11837:2 11859:1 11879:2 11900:1 11904:1 11930:3 11938:9 11939:2 11955:1 11958:4 11959:1 11963:2 11968:1 11984:1 12005:1 12016:3 12019:1 12040:1 12047:1 12054:2 12058:1 12064:1 12069:1 12081:2 12115:2 12134:4 12148:1 12155:1 12187:1 12189:3 12196:1 12198:1 12202:1 12203:1 12218:1 12236:1 12257:1 12258:1 12264:1 12266:1 12275:1 12290:1 12323:6 12336:1 12339:1 12341:1 12345:1 12348:1 12357:1 12369:2 12370:4 12391:1 12394:3 12420:1 12451:1 12456:2 12485:1 12505:1 12510:2 12516:1 12524:1 12525:3 12550:1 12566:2 12599:1 12600:1 12651:1 12652:1 12653:1 12671:5 12673:1 12684:1 12691:1 12692:3 12698:1 12702:1 12710:2 12712:1 12715:1 12719:1 12722:1 12733:1 12741:1 12744:2 12748:1 12756:2 12765:1 12768:1 12769:1 12771:2 12776:1 12792:1 12798:1 12799:2 12829:1 12834:1 12835:2 12837:1 12870:2 12872:3 12874:1 12875:1 12881:1 12882:2 12883:1 12884:7 12886:1 12889:4 12891:1 12892:1 12900:2 12904:3 12915:3 12919:1 12924:2 12928:3 12934:1 12954:7 12956:1 12960:1 12964:1 12966:1 12968:1 12970:3 12979:1 12980:2 12997:2 13012:1 13019:2 13033:3 13034:1 13048:1 13049:5 13052:1 13053:1 13062:1 13065:1 13071:1 13084:2 13095:3 13114:1 13117:1 13119:2 13122:7 13131:1 13136:1 13148:2 13149:2 13150:2 13151:1 13152:1 13160:4 13174:2 13177:1 13178:2 13190:1 13201:2 13221:1 13237:2 13238:1 13243:1 13249:1 13250:2 13251:2 13252:2 13254:2 13257:1 13270:1 13277:1 13278:1 13281:1 13282:1 13283:1 13296:1 13301:2 13302:1 13310:1 13313:1 13314:1 13318:3 13319:1 13330:2 13334:1 13335:1 13352:1 13365:8 13370:2 13371:1 13377:1 13380:1 13411:1 13416:1 13418:1 13434:2 13435:1 13436:2 13439:2 13457:1 13458:2 13461:2 13462:1 13467:5 13493:1 13510:1 13515:1 13518:1 13529:2 13530:3 13535:3 13536:7 13543:2 13560:2 13565:3 13578:1 13589:2 13604:1 13610:2 13612:1 13615:2 13616:1 13620:1 13628:1 13629:2 13633:2 13636:1 13656:1 13666:1 13679:1 13722:1 13723:1 13728:1 13730:1 13735:2 13750:1 13769:1 13782:1 13795:1 13829:1 13854:1 13855:1 13864:1 13880:1 13881:1 13894:1 13898:3 13907:2 13908:1 13917:1 13920:1 13924:5 13926:1 13927:1 13935:1 13937:1 13951:2 13952:1 13956:1 13970:1 13971:1 13972:1 13985:1 13989:1 14009:2 14013:1 14035:2 14051:1 14065:1 14070:2 14076:1 14087:1 14091:2 14093:2 14099:1 14106:5 14126:2 14135:1 14142:1 14145:1 14154:2 14158:1 14183:1 14197:1 14225:1 14227:4 14238:1 14255:1 14271:1 14303:1 14304:1 14368:1 14370:1 14378:1 14385:1 14401:2 14437:4 14443:3 14445:2 14447:1 14450:1 14451:1 14470:2 14475:1 14496:2 14505:1 14516:1 14522:1 14541:1 14545:2 14546:1 14551:3 14566:1 14577:1 14588:1 14592:2 14596:1 14599:1 14601:1 14624:1 14633:2 14662:1 14665:2 14667:1 14670:1 14671:1 14678:1 14709:1 14710:1 14747:1 14756:2 14760:3 14761:4 14766:1 14792:5 14793:1 14796:1 14811:1 14826:5 14828:2 14832:1 14835:1 14840:1 14855:1 14867:1 14870:1 14877:1 14879:1 14887:4 14894:3 14898:2 14906:2 14909:1 14942:1 14951:2 14968:1 14970:1 14978:1 14992:1 15006:1 15007:1 15009:1 15011:1 15020:1 15021:1 15033:3 15036:1 15058:10 15063:8 15067:1 15073:1 15099:2 15112:1 15113:2 15118:2 15131:3 15134:1 15154:1 15158:1 15165:1 15171:1 15190:3 15193:1 15194:1 15201:7 15210:3 15211:1 15221:1 15222:1 15224:2 15230:1 15232:3 15234:1 15236:1 15238:1 15239:5 15243:2 15244:7 15245:1 15250:2 15254:2 15255:1 15263:1 15264:6 15269:4 15300:1 15302:1 15337:1 15345:1 15347:2 15349:1 15355:1 15356:2 15361:2 15366:6 15375:1 15388:2 15401:1 15403:2 15421:2 15425:3 15442:1 15446:2 15461:1 15465:1 15472:1 15478:1 15488:1 15496:3 15500:1 15502:8 15513:2 15529:3 15538:1 15540:4 15554:1 15557:1 15566:24 15570:1 15587:1 15596:6 15597:1 15599:1 15620:2 15637:70 15665:3 15669:1 15697:1 15708:1 15731:1 15733:1 15734:3 15756:1 15758:1 15759:1 15761:1 15763:2 15765:1 15766:2 15773:3 15774:4 15776:1 15780:3 15783:1 15784:2 15791:1 15797:1 15810:1 15812:1 15815:2 15822:1 15831:1 15832:1 15833:1 15855:1 15857:1 15869:1 15876:1 15896:1 15902:5 15919:1 15934:2 15938:3 15953:1 15961:2 15969:2 15974:1 15979:1 15988:1 16026:1 16035:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16093:1 16103:1 16107:2 16108:1 16116:1 16130:1 16133:1 16137:1 16146:3 16151:4 16153:1 16156:1 16165:1 16167:2 16168:3 16176:1 16187:3 16190:1 16199:3 16210:1 16215:1 16217:3 16219:1 16220:2 16222:1 16228:1 16230:1 16237:1 16249:3 16254:1 16255:13 16262:1 16264:2 16289:2 16300:2 16310:1 16311:3 16338:1 16343:1 16348:2 16365:1 16366:2 16369:5 16373:1 16375:3 16378:1 16380:2 16390:1 16395:1 16407:1 16416:1 16419:1 16421:1 16426:2 16427:2 16446:2 16450:2 16453:1 16455:1 16459:1 16472:1 16486:1 16491:1 16492:3 16500:1 16501:1 16517:1 16540:1 16558:1 16562:1 16569:2 16571:1 16582:1 16587:1 16588:2 16589:1 16590:1 16601:1 16608:1 16609:1 16617:2 16623:3 16630:2 16644:1 16646:1 16649:1 16652:1 16654:3 16658:1 16666:1 16674:1 16676:1 16683:3 16690:1 16704:2 16705:1 16718:1 16721:1 16726:1 16744:2 16765:1 16766:2 16771:1 16777:1 16780:1 16796:4 16845:2 16847:1 16851:1 16860:1 16866:1 16876:1 16877:1 16879:1 16896:6 16899:2 16902:1 16904:1 16911:1 16915:2 16916:2 16920:2 16921:1 16934:1 16936:2 16940:2 16949:1 16953:1 16954:1 16964:2 16982:1 16987:1 16988:1 16990:1 16993:1 17001:1 17010:1 17018:2 17019:2 17055:1 17058:2 17061:1 17077:1 17082:1 17098:1 17102:2 17103:3 17113:2 17117:1 17128:1 17130:1 17142:3 17187:3 17193:1 17194:1 17196:2 17199:2 17201:2 17202:1 17219:1 17220:14 17223:2 17235:1 17244:1 17248:2 17275:1 17285:1 17287:1 17292:1 17294:1 17310:1 17311:2 17317:3 17334:2 17338:2 17341:1 17354:1 17361:1 17363:1 17369:1 17376:1 17392:1 17396:4 17403:2 17404:4 17417:2 17446:2 17448:1 17479:1 17481:1 17501:1 17513:1 17529:3 17531:1 17540:1 17568:1 17571:1 17578:1 17584:1 17587:1 17595:1 17599:3 17609:2 17616:1 17640:1 17641:1 17646:1 17657:1 17661:1 17666:1 17667:4 17673:1 17685:1 17714:4 17718:1 17723:2 17750:1 17752:1 17754:4 17760:1 17774:4 17779:1 17782:1 17785:3 17787:1 17805:2 17806:1 17811:1 17821:1 17823:2 17828:1 17850:1 17856:1 17873:1 17874:1 17900:1 17912:14 17916:1 17923:1 17930:1 17946:1 17949:1 17961:1 17968:1 17969:1 17970:1 17978:1 17979:1 17980:1 17984:2 17986:1 17989:1 17998:1 18003:1 18010:1 18013:2 18027:1 18031:6 18035:1 18037:2 18038:1 18052:4 18057:2 18065:2 18066:1 18095:1 18101:3834 18105:1 18118:5 18123:2 18149:1 18157:1 18163:2 18171:1 18178:3 18179:1 18188:1 18214:1 18215:3 18226:1 18234:2 18245:2 18262:1 18267:1 18271:5 18272:2 18298:3 18306:1 18309:1 18311:3 18314:1 18315:1 18331:1 18333:1 18346:1 18361:1 18362:1 18366:1 18381:1 18408:1 18410:5 18415:1 18423:1 18429:1 18434:1 18439:1 18444:1 18462:3 18472:1 18481:2 18491:1 18493:1 18505:1 18512:1 18514:1 18515:1 18557:1 18567:1 18569:2 18572:1 18575:1 18584:4 18599:2 18601:1 18607:1 18618:1 18623:1 18631:1 18667:4 18669:1 18677:1 18679:3 18725:1 18731:1 18761:1 18780:1 18786:2 18796:1 18799:2 18801:1 18804:2 18813:4 18825:2 18829:1 18830:4 18834:1 18847:5 18859:16 18877:1 18878:1 18880:3 18881:1 18883:23 18892:2 18910:1 18911:6 18912:1 18914:1 18931:1 18936:2 18947:1 18950:5 18968:1 18972:2 18976:1 18978:6 18980:2 18983:1 18987:1 18997:2 18998:1 19000:1 19005:1 19028:1 19034:3 19039:1 19055:1 19067:3 19099:1 19103:1 19106:1 19108:1 19148:1 19153:1 19176:1 19179:1 19187:1 19206:1 19209:13 19212:1 19220:1 19231:3 19253:1 19254:1 19256:1 19279:1 19291:1 19299:1 19305:1 19307:7 19326:1 19329:1 19347:2 19357:1 19359:1 19360:1 19378:1 19383:1 19390:1 19391:1 19394:2 19399:1 19401:2 19402:1 19409:2 19430:1 19436:1 19459:4 19464:1 19470:1 19472:1 19488:3 19489:1 19514:3 19523:1 19525:1 19539:1 19543:2 19545:5 19565:2 19569:1 19574:2 19582:2 19584:1 19586:1 19591:7 19612:1 19638:1 19644:1 19663:15 19669:1 19677:2 19679:3 19694:1 19695:1 19706:1 19707:15 19724:1 19737:1 19747:1 19756:1 19774:1 19786:2 19813:1 19818:1 19821:1 19822:1 19833:2 19853:4 19854:1 19856:2 19865:1 19870:1 19900:2 19910:1 19918:1 19945:5 19955:1 19957:3 19968:1 19979:1 19986:1 19998:1 20006:1 20022:1 20024:1 20044:2 20078:2 20086:1 20095:1 20099:1 20109:1 20117:1 20119:1 20120:2 20129:1 20131:1 20143:1 20145:1 20148:2 20169:1 20171:1 20177:1 20193:1 20210:3 20217:1 20224:1 20227:2 20230:1 20231:1 20232:1 20235:1 20236:1 20240:1 20245:14 20248:1 20252:2 20257:3 20258:1 20260:5 20261:1 20279:3 20285:2 20289:5 20299:1 20322:4 20325:1 20327:1 20335:1 20336:1 20337:1 20352:1 20364:2 20365:1 20366:1 20375:2 20378:1 20396:2 20401:1 20402:1 20413:1 20422:8 20429:1 20432:2 20438:1 20448:1 20453:1 20467:1 20490:1 20496:1 20502:1 20505:1 20507:1 20524:3 20528:1 20531:1 20533:1 20538:1 20546:3 20559:1 20561:1 20567:2 20569:1 20571:1 20572:1 20579:1 20583:1 20585:1 20620:1 20628:3 20647:1 20672:1 20678:1 20679:1 20684:1 20708:1 20712:1 20716:1 20718:4 20720:2 20723:3 20733:4 20741:1 20743:1 20745:1 20773:1 20777:1 20782:1 20786:1 20787:1 20798:1 20804:1 20808:1 20809:1 20810:1 20812:1 20814:1 20815:2 20822:1 20827:1 20828:1 20838:2 20840:6 20843:3 20856:2 20860:1 20861:1 20863:1 20870:1 20874:1 20880:1 20888:1 20921:1 20924:2 20926:1 20927:2 20934:3 20941:2 20951:1 20952:1 20953:1 20971:1 20973:4 20976:18 20978:1 20992:1 20998:2 20999:2 21003:1 21010:1 21014:1 21019:1 21024:1 21026:2 21037:5 21049:1 21053:1 21080:3 21082:1 21084:3 21086:1 21090:1 21096:5 21108:1 21120:1 21125:1 21140:1 21141:1 21142:4 21150:2 21156:3 21161:1 21209:1 21231:4 21237:2 21238:1 21239:12 21241:3 21245:2 21252:2 21254:1 21255:1 21266:3 21267:3 21269:1 21271:1 21272:1 21276:1 21279:2 21282:2 21283:1 21291:1 21292:1 21293:1 21297:1 21302:1 21306:2 21309:2 21314:1 21318:1 21334:2 21369:1 21379:5 21380:1 21403:1 21407:1 21412:1 21413:2 21423:2 21425:1 21428:1 21435:1 21439:1 21444:1 21446:4 21457:1 21464:1 21467:1 21474:1 21515:24 21516:2 21518:1 21537:1 21548:1 21556:2 21569:1 21575:1 21583:1 21594:4 21596:1 21609:1 21611:1 21613:2 21620:1 21621:1 21623:1 21628:2 21637:1 21642:2 21644:1 21645:1 21648:9 21654:1 21664:2 21668:4 21679:2 21704:1 21706:2 21712:1 21715:1 21718:2 21732:1 21735:1 21738:1 21741:1 21743:1 21745:2 21753:1 21754:1 21766:2 21769:1 21781:10 21794:4 21802:1 21807:4 21819:1 21828:2 21840:1 21850:1 21860:2 21873:1 21874:1 21895:1 21914:1 21929:1 21935:1 21941:3 21946:1 21949:1 21959:1 21967:1 21972:1 21985:1 21989:1 22001:1 22012:1 22015:1 22021:1 22032:1 22038:1 22040:1 22041:2 22042:2 22049:15 22051:2 22078:1 22082:2 22090:1 22099:1 22120:1 22130:3 22132:1 22133:2 22136:1 22139:1 22154:1 22165:3 22180:1 22185:1 22188:5 22192:1 22222:1 22223:1 22225:1 22241:1 22246:1 22248:1 22264:2 22270:1 22279:1 22283:1 22284:1 22290:1 22295:2 22310:1 22322:1 22329:1 22333:1 22344:1 22346:1 22348:2 22355:2 22361:1 22374:1 22414:1 22423:1 22424:1 22425:6 22431:1 22432:1 22436:1 22448:1 22452:1 22453:1 22463:2 22466:1 22471:1 22478:1 22481:2 22496:1 22506:1 22530:1 22534:3 22538:1 22548:1 22551:2 22556:1 22564:2 22568:4 22571:1 22572:1 22587:1 22593:1 22607:2 22619:1 22627:3 22628:5 22633:1 22634:1 22646:6 22654:1 22657:1 22665:1 22667:1 22670:1 22672:3 22677:2 22681:1 22683:1 22699:2 22706:1 22707:2 22708:1 22720:1 22748:5 22755:1 22757:29 22759:1 22837:2 22844:1 22846:2 22847:1 22849:1 22856:1 22872:1 22889:1 22916:3 22922:1 22924:2 22925:1 22937:1 22949:1 22951:1 22957:1 22965:2 22983:1 22986:1 22999:1 23000:1 23008:1 23019:1 23022:1 23024:2 23028:1 23059:1 23062:2 23076:1 23077:2 23089:1 23104:4 23109:1 23112:1 23117:1 23122:1 23126:1 23152:1 23159:1 23175:1 23177:1 23192:2 23207:3 23215:2 23222:1 23224:2 23227:1 23228:1 23229:2 23246:1 23266:1 23278:1 23284:1 23300:1 23306:1 23313:1 23321:1 23328:1 23334:2 23345:1 23360:1 23362:1 23381:1 23389:1 23391:1 23396:1 23397:8 23405:1 23412:1 23413:1 23417:1 23421:3 23434:2 23445:1 23449:1 23470:1 23492:1 23494:1 23502:1 23510:3 23520:1 23521:1 23558:1 23568:5 23595:1 23602:1 23633:2 23643:1 23646:1 23655:1 23656:1 23662:1 23665:1 23666:3 23667:5 23668:1 23689:1 23697:1 23704:2 23707:3 23712:1 23716:3 23722:2 23726:1 23752:2 23753:2 23766:3 23780:1 23788:1 23791:2 23802:2 23808:1 23820:1 23841:1 23844:1 23860:1 23867:4 23870:1 23871:1 23879:3 23883:1 23885:1 23890:1 23899:1 23900:1 23908:1 23916:1 23921:1 23933:1 23934:1 23937:1 23939:1 23944:1 23954:1 23960:1 23971:1 23980:1 23982:2 23998:1 24003:1 24006:3 24011:1 24013:1 24020:1 24027:1 24036:1 24040:1 24050:1 24052:1 24057:1 24059:1 24081:1 24083:1 24086:1 24099:1 24106:2 24144:3 24155:5 24179:1 24191:1 24208:1 24214:1 24224:1 24230:2 24231:1 24234:1 24241:1 24242:6 24252:1 24269:3 24274:1 24275:1 24290:1 24306:2 24325:1 24331:1 24339:4 24359:1 24360:1 24363:1 24367:1 24396:1 24404:2 24406:4 24412:2 24417:1 24420:1 24434:8 24436:1 24457:1 24473:2 24476:6 24478:1 24484:1 24486:1 24488:4 24491:1 24492:1 24533:1 24534:1 24540:1 24567:1 24572:1 24600:1 24614:1 24620:1 24634:1 24636:1 24637:3 24640:1 24641:2 24644:8 24647:3 24653:1 24659:1 24665:1 24678:1 24692:3 24694:1 24697:2 24702:1 24718:1 24728:1 24730:6 24731:1 24740:2 24742:1 24751:4 24760:6 24761:2 24772:2 24782:1 24784:1 24789:1 24797:1 24817:2 24823:1 24838:1 24841:6 24843:1 24847:1 24854:1 24855:1 24873:2 24883:1 24897:2 24915:3 24928:1 24942:5 24946:1 24967:4 24969:4 24973:1 24990:2 24999:1 25018:1 25051:1 25053:1 25056:1 25061:1 25071:1 25081:1 25085:1 25092:4 25109:1 25117:1 25121:1 25131:1 25135:1 25138:2 25140:1 25143:1 25153:1 25157:2 25160:3 25173:1 25175:1 25179:2 25191:1 25194:1 25200:1 25217:2 25219:1 25228:1 25230:2 25235:1 25242:1 25256:6 25261:1 25262:1 25264:1 25265:1 25268:2 25277:1 25283:1 25286:1 25289:3 25323:2 25326:1 25332:2 25348:1 25358:1 25360:1 25379:1 25385:1 25387:3 25402:1 25410:15 25414:1 25451:1 25455:1 25478:1 25486:1 25494:1 25514:1 25525:1 25530:1 25537:1 25549:3 25555:1 25560:1 25569:1 25571:2 25586:1 25641:2 25660:3 25681:5 25683:2 25684:1 25688:1 25695:1 25696:2 25698:1 25699:4 25700:9 25703:1 25705:1 25722:1 25735:1 25742:2 25751:3 25773:1 25782:1 25787:1 25793:4 25801:1 25805:1 25819:1 25826:3 25844:1 25852:1 25856:1 25861:2 25866:1 25867:1 25879:1 25901:2 25905:1 25910:2 25916:1 25944:1 25955:1 25957:1 25967:1 25975:1 26008:1 26023:1 26032:1 26042:1 26051:1 26067:1 26069:2 26075:1 26104:3 26110:2 26120:2 26137:1 26151:1 26158:1 26189:1 26196:1 26201:1 26216:2 26218:2 26228:2 26254:1 26269:1 26272:2 26281:1 26285:2 26288:1 26289:5 26299:1 26301:1 26303:9 26314:1 26319:1 26331:2 26332:1 26361:1 26383:1 26389:1 26397:29 26398:1 26400:3 26401:1 26410:1 26420:1 26430:5 26447:1 26450:1 26452:1 26454:1 26495:1 26503:3 26505:3 26509:4 26510:2 26514:1 26519:1 26544:2 26546:1 26548:1 26549:1 26555:2 26557:2 26559:2 26562:2 26563:1 26569:1 26570:1 26571:1 26573:1 26576:3 26581:1 26588:3 26590:1 26612:2 26624:1 26638:1 26641:2 26651:1 26664:2 26666:1 26686:1 26689:1 26690:1 26705:1 26711:1 26715:3 26716:2 26725:1 26765:2 26766:1 26784:2 26785:2 26789:2 26792:1 26794:1 26797:1 26799:1 26807:3 26808:1 26810:2 26829:2 26840:1 26843:1 26869:12 26874:1 26879:1 26889:1 26894:1 26909:1 26919:1 26954:3 26963:3 26977:1 26986:2 26989:1 26993:1 27017:1 27025:1 27035:1 27038:4 27044:1 27071:2 27074:1 27075:1 27080:1 27083:1 27108:5 27111:5 27134:1 27135:1 27143:3 27145:1 27157:1 27162:1 27171:1 27177:1 27213:1 27216:1 27217:1 27228:4 27231:1 27239:1 27248:1 27256:3 27259:1 27271:1 27279:2 27280:28 27281:2 27283:3 27287:4 27289:1 27290:1 27300:1 27315:1 27316:13 27326:1 27329:1 27337:1 27364:1 27368:2 27372:1 27373:2 27381:1 27383:2 27394:1 27401:1 27405:6 27414:5 27419:2 27447:3 27448:1 27450:1 27452:2 27458:1 27462:1 27465:1 27477:1 27492:1 27495:1 27496:1 27519:1 27526:1 27549:1 27550:1 27558:2 27561:1 27562:1 27590:2 27591:2 27594:1 27611:1 27619:1 27620:1 27627:1 27629:1 27633:2 27636:1 27638:4 27641:2 27644:1 27658:1 27661:2 27666:1 27676:1 27692:8 27695:1 27697:1 27705:4 27708:1 27743:1 27745:1 27749:1 27772:3 27773:8 27775:1 27776:1 27780:1 27783:1 27799:2 27804:2 27805:2 27814:1 27818:1 27828:2 27834:2 27835:1 27842:1 27864:3 27879:1 27895:1 27914:3 27920:1 27922:2 27926:2 27927:1 27951:2 27961:2 27963:5 27968:1 27971:1 27977:5 27984:1 27994:2 28018:1 28026:1 28046:2 28053:1 28067:1 28081:1 28106:3 28108:2 28122:1 28138:4 28154:1 28169:2 28172:1 28176:1 28185:1 28210:1 28217:2 28222:1 28229:3 28237:1 28265:1 28283:1 28292:3 28295:1 28297:1 28300:1 28301:1 28314:1 28326:2 28336:1 28340:1 28341:1 28343:6 28344:1 28352:2 28364:2 28370:1 28378:1 28380:2 28391:1 28395:3 28397:1 28420:1 28430:5 28437:2 28442:1 28496:1 28499:1 28503:1 28504:1 28507:1 28509:1 28511:5 28516:1 28523:1 28530:1 28554:1 28560:2 28566:1 28569:1 28574:1 28575:1 28576:1 28579:1 28587:2 28618:1 28627:1 28629:1 16 6:1 10:1 26:1 27:2 29:1 44:1 58:1 69:1 74:1 78:1 82:1 83:5 100:1 106:1 137:1 147:1 153:1 162:1 165:4 172:1 175:2 176:1 201:1 206:1 211:3 213:1 230:1 235:4 239:1 254:2 283:1 286:1 296:4 300:1 318:1 327:1 336:2 337:3 338:1 364:1 372:1 375:1 382:1 399:1 407:2 418:1 442:3 445:2 449:2 460:1 471:1 478:1 489:2 504:1 507:1 509:1 514:1 523:2 526:2 552:1 553:1 567:5 603:1 614:1 617:3 621:1 627:3 634:1 648:3 654:1 661:4 665:1 671:1 676:1 684:1 685:1 688:1 699:1 707:1 713:1 724:1 735:1 747:2 757:2 768:1 772:1 787:1 803:1 805:1 809:1 813:1 824:1 826:1 828:1 843:4 852:1 856:3 861:2 872:2 902:2 907:1 910:2 913:1 915:1 924:2 933:2 934:2 939:3 940:1 941:3 942:6 943:2 944:2 947:2 963:1 966:2 978:1 982:1 983:1 985:6 987:2 1010:1 1015:2 1020:2 1052:1 1059:2 1062:1 1081:1 1086:1 1089:1 1108:2 1116:1 1125:2 1143:1 1150:2 1170:1 1171:3 1174:1 1175:1 1184:2 1187:1 1192:2 1200:1 1201:4 1217:2 1222:1 1224:2 1227:1 1237:2 1239:3 1259:1 1263:1 1267:1 1269:2 1275:5 1278:1 1279:1 1289:7 1290:2 1292:1 1302:3 1306:1 1316:1 1319:1 1321:1 1331:1 1333:1 1335:3 1346:2 1356:1 1375:2 1379:1 1390:1 1391:1 1404:1 1410:1 1413:2 1415:2 1438:3 1440:1 1446:1 1448:1 1451:1 1453:2 1464:1 1475:1 1484:6 1493:1 1497:1 1501:7 1513:2 1521:2 1522:1 1525:4 1531:1 1535:1 1540:1 1541:1 1544:5 1560:1 1569:1 1571:1 1572:9 1583:1 1587:3 1589:2 1590:2 1591:2 1594:1 1596:1 1601:2 1603:1 1621:2 1628:1 1632:5 1637:5 1640:2 1641:1 1653:1 1654:1 1657:1 1672:5 1675:3 1678:1 1683:1 1684:1 1692:1 1698:2 1702:1 1706:1 1722:1 1731:1 1733:1 1743:2 1745:1 1746:1 1747:1 1751:1 1758:4 1766:5 1779:1 1784:1 1789:1 1790:1 1809:1 1810:1 1816:1 1820:1 1824:1 1825:1 1831:1 1836:2 1837:2 1844:1 1849:1 1853:1 1860:1 1861:1 1865:1 1868:1 1877:4 1882:1 1883:1 1884:1 1889:2 1895:1 1901:1 1903:2 1904:4 1908:1 1910:1 1912:1 1914:1 1921:1 1929:1 1930:4 1931:1 1933:1 1950:1 1953:1 1958:1 1978:1 1986:1 2001:1 2006:1 2015:2 2017:2 2019:2 2020:2 2022:1 2023:3 2044:1 2049:1 2054:2 2072:1 2074:4 2075:1 2076:2 2077:1 2078:1 2101:1 2108:4 2126:2 2133:1 2156:1 2158:1 2164:1 2170:1 2172:1 2174:3 2188:1 2191:1 2192:1 2204:1 2209:1 2227:2 2228:1 2229:1 2230:2 2232:5 2236:3 2237:1 2238:6 2240:1 2241:1 2244:6 2245:1 2246:4 2248:2 2251:1 2253:1 2256:6 2259:3 2260:7 2265:1 2267:1 2272:1 2273:2 2277:1 2279:2 2283:1 2290:1 2303:1 2308:1 2321:1 2327:2 2331:1 2334:1 2336:3 2340:1 2346:1 2354:1 2359:2 2361:1 2374:1 2391:1 2413:5 2423:1 2437:1 2443:2 2448:4 2474:1 2483:1 2486:1 2488:1 2495:1 2526:2 2531:1 2556:1 2582:2 2587:1 2595:4 2596:1 2602:1 2607:4 2615:1 2622:2 2623:1 2630:1 2633:1 2635:3 2637:12 2651:1 2653:1 2659:1 2662:2 2668:1 2670:1 2674:1 2675:1 2677:1 2684:4 2689:1 2690:1 2695:1 2713:2 2721:2 2731:2 2738:1 2739:1 2741:5 2747:4 2755:1 2792:4 2795:1 2798:1 2799:1 2804:2 2806:1 2818:16 2828:7 2837:1 2848:1 2857:2 2869:1 2875:1 2885:32 2899:2 2903:1 2907:1 2918:1 2919:1 2920:1 2936:1 2948:1 2956:1 2962:2 2970:1 2981:1 2986:2 2987:1 2988:1 2989:2 3028:1 3037:3 3041:1 3053:3 3059:1 3062:2 3070:1 3085:1 3105:1 3106:1 3107:1 3115:2 3116:1 3117:1 3122:1 3129:2 3133:4 3141:2 3151:13 3153:2 3166:1 3168:1 3173:1 3181:1 3191:2 3208:1 3218:1 3219:7 3238:1 3254:1 3281:1 3283:1 3293:1 3301:1 3303:2 3319:3 3327:1 3330:1 3340:1 3348:1 3357:3 3361:3 3369:2 3373:1 3377:1 3388:5 3417:1 3423:1 3426:1 3427:3 3430:1 3439:1 3441:1 3442:1 3453:3 3491:1 3502:1 3505:1 3511:1 3512:5 3513:2 3519:2 3521:1 3522:2 3535:2 3543:1 3550:1 3569:1 3588:1 3598:1 3603:2 3606:4 3608:1 3625:1 3643:1 3651:4 3652:44 3659:1 3677:2 3678:1 3679:9 3681:1 3686:1 3687:2 3688:27 3689:2 3691:6 3694:1 3697:2 3706:3 3709:1 3718:3 3721:4 3724:3 3725:4 3740:2 3742:1 3743:2 3755:1 3769:2 3776:1 3777:3 3781:1 3783:1 3788:1 3805:1 3808:1 3811:2 3813:1 3815:1 3816:3 3824:1 3826:2 3838:2 3840:1 3844:1 3853:1 3861:1 3863:1 3866:2 3873:1 3889:1 3891:1 3900:1 3901:2 3904:1 3905:1 3911:1 3915:2 3918:1 3920:1 3925:5 3939:5 3953:1 3985:1 3993:1 3995:1 4013:1 4031:1 4036:1 4052:1 4056:3 4062:1 4086:1 4090:1 4101:2 4106:2 4107:2 4109:1 4110:1 4137:1 4143:2 4152:1 4153:1 4156:1 4169:3 4184:1 4199:1 4209:2 4221:1 4234:14 4250:1 4269:1 4277:1 4302:2 4306:1 4313:5 4322:1 4325:2 4335:2 4347:7 4351:1 4362:1 4372:1 4380:1 4383:1 4386:1 4393:1 4435:1 4448:1 4449:2 4470:1 4474:1 4484:1 4489:2 4499:2 4515:2 4519:1 4522:2 4533:1 4543:4 4554:1 4557:1 4563:4 4582:1 4584:2 4585:1 4586:1 4594:1 4609:1 4653:1 4654:1 4659:1 4660:2 4671:1 4685:1 4689:1 4693:2 4701:2 4742:1 4754:2 4779:1 4782:1 4785:1 4792:17 4793:2 4804:1 4824:2 4848:1 4850:2 4860:1 4865:1 4870:1 4893:4 4896:1 4902:3 4903:1 4905:4 4925:2 4926:4 4927:8 4928:1 4929:1 4930:2 4932:1 4933:3 4935:1 4939:1 4940:24 4941:1 4943:1 4948:2 4949:3 4956:2 4957:1 4972:2 4975:3 4979:1 4995:2 5031:2 5045:1 5053:1 5058:1 5064:2 5120:1 5144:3 5145:3 5152:5 5158:1 5181:1 5190:1 5195:1 5209:1 5213:2 5214:24 5227:1 5242:1 5249:1 5250:3 5252:1 5280:3 5315:1 5317:1 5319:1 5330:1 5343:1 5355:1 5359:1 5361:2 5370:1 5375:1 5379:1 5386:1 5388:1 5390:2 5392:1 5395:1 5431:1 5433:1 5437:1 5446:1 5447:1 5448:2 5454:1 5465:4 5474:1 5479:1 5489:2 5494:1 5497:1 5502:1 5503:2 5509:1 5521:1 5523:2 5525:1 5549:1 5561:1 5562:1 5565:5 5588:2 5595:1 5604:1 5612:1 5614:1 5618:1 5620:1 5624:1 5631:1 5635:1 5643:1 5646:1 5653:1 5654:1 5656:1 5659:2 5660:1 5662:1 5674:1 5675:1 5679:1 5683:1 5697:1 5701:1 5702:1 5703:1 5707:1 5720:1 5731:1 5745:1 5766:3 5791:1 5794:5 5796:1 5800:1 5803:1 5808:1 5817:2 5828:1 5846:1 5858:1 5860:2 5894:1 5903:1 5924:1 5931:4 5932:9 5941:1 5945:2 5966:1 5971:2 5976:1 5977:1 5980:1 6003:1 6020:1 6024:1 6026:1 6034:2 6038:1 6042:2 6043:1 6046:1 6047:1 6057:1 6073:2 6079:5 6086:1 6087:2 6088:2 6115:1 6126:1 6127:3 6129:1 6136:2 6151:5 6153:1 6157:1 6165:1 6166:1 6168:1 6177:1 6181:1 6184:1 6194:1 6239:6 6242:2 6243:2 6244:1 6247:1 6248:1 6250:2 6251:2 6254:2 6255:3 6256:5 6262:3 6264:8 6265:1 6266:1 6267:4 6275:1 6288:2 6289:1 6298:1 6317:1 6325:3 6329:1 6341:1 6356:2 6357:1 6358:1 6392:1 6394:1 6398:1 6404:1 6410:2 6413:1 6424:1 6446:1 6450:1 6454:1 6463:1 6494:1 6507:4 6508:1 6513:2 6523:1 6533:5 6535:2 6539:3 6547:1 6550:1 6557:1 6558:1 6566:2 6580:1 6582:3 6585:1 6586:2 6598:2 6603:1 6604:1 6606:1 6615:1 6639:1 6657:1 6661:1 6665:1 6670:1 6677:2 6679:3 6684:3 6685:2 6687:1 6695:3 6699:2 6704:5 6711:3 6718:1 6731:1 6736:1 6739:3 6745:1 6767:1 6780:1 6783:2 6789:1 6791:1 6795:1 6799:2 6803:1 6819:3 6828:1 6835:1 6857:2 6860:1 6876:3 6893:1 6896:2 6907:1 6909:1 6930:1 6954:2 6970:1 6973:2 6974:1 6982:2 6996:1 7000:5 7003:1 7008:1 7010:3 7012:1 7015:1 7016:1 7027:1 7036:1 7049:1 7080:2 7126:1 7134:1 7145:1 7153:1 7180:1 7196:2 7204:1 7213:1 7221:5 7267:1 7269:1 7275:4 7290:2 7297:1 7307:5 7343:2 7352:2 7360:2 7377:1 7378:2 7387:2 7406:1 7411:1 7415:1 7419:1 7420:2 7430:1 7433:1 7437:5 7446:1 7466:1 7471:1 7477:4 7478:5 7479:3 7496:1 7499:2 7500:1 7502:2 7505:1 7512:1 7530:1 7531:2 7544:1 7547:1 7548:50 7549:1 7550:1 7555:2 7567:16 7568:28 7578:1 7579:1 7582:1 7586:1 7588:1 7590:1 7595:1 7615:1 7616:6 7638:1 7653:1 7668:1 7672:2 7689:4 7705:1 7742:4 7746:7 7750:1 7780:1 7786:1 7788:5 7802:1 7805:1 7806:1 7826:1 7837:1 7851:1 7858:1 7862:1 7910:4 7914:1 7920:2 7921:1 7925:1 7926:1 7928:8 7936:2 7942:1 7951:1 7960:2 7973:1 7977:2 7983:1 7998:1 7999:1 8006:25 8013:1 8018:1 8026:1 8031:2 8037:2 8039:1 8049:1 8063:2 8092:1 8098:1 8107:2 8116:1 8127:2 8139:1 8140:1 8154:1 8167:1 8170:3 8176:5 8181:3 8194:2 8196:2 8199:4 8213:2 8214:1 8215:2 8220:1 8231:1 8233:2 8241:2 8251:1 8260:2 8263:2 8269:1 8270:1 8274:1 8276:1 8277:1 8294:2 8295:1 8308:1 8319:3 8327:1 8336:1 8342:1 8345:1 8349:1 8354:1 8357:2 8358:1 8359:3 8360:2 8361:2 8362:5 8365:1 8366:1 8370:2 8373:2 8375:2 8381:3 8396:1 8402:3 8412:2 8420:1 8421:1 8427:1 8428:1 8440:1 8450:3 8455:2 8462:1 8469:2 8475:3 8492:1 8496:5 8517:5 8526:1 8528:1 8531:2 8550:1 8556:1 8583:2 8595:1 8596:1 8603:1 8609:3 8616:3 8617:1 8621:1 8624:1 8637:1 8640:2 8667:6 8668:2 8675:5 8676:1 8677:1 8678:4 8680:3 8687:2 8688:2 8706:3 8707:1 8709:2 8711:5 8725:1 8727:1 8743:3 8748:1 8763:1 8798:1 8813:1 8827:3 8835:1 8838:1 8853:2 8854:2 8863:1 8868:1 8880:1 8882:1 8895:1 8903:1 8918:1 8919:1 8926:3 8935:1 8957:1 8962:4 8974:1 8978:1 8991:2 8994:1 8995:5 9006:1 9008:1 9015:8 9035:2 9039:3 9042:1 9049:1 9055:1 9071:1 9078:1 9088:3 9091:1 9110:1 9111:1 9124:2 9125:1 9156:1 9160:1 9201:1 9219:1 9220:1 9236:1 9240:1 9243:1 9246:3 9252:2 9253:1 9263:1 9264:2 9278:1 9292:2 9294:1 9298:2 9310:1 9322:1 9325:3 9328:1 9337:1 9350:1 9375:24 9383:1 9399:1 9408:2 9420:6 9428:2 9434:1 9437:1 9448:1 9455:1 9456:2 9459:1 9466:1 9467:2 9484:2 9492:1 9494:1 9511:14 9522:1 9526:2 9529:1 9535:2 9550:1 9569:5 9575:1 9580:1 9586:3 9587:1 9590:1 9603:1 9614:1 9620:1 9622:1 9637:3 9651:2 9655:3 9656:1 9666:1 9690:8 9696:2 9697:4 9698:2 9706:3 9707:1 9717:1 9726:3 9730:3 9733:1 9734:1 9739:2 9744:2 9748:4 9751:5 9753:1 9754:1 9761:1 9770:1 9774:1 9780:3 9785:4 9795:1 9797:2 9809:1 9817:2 9830:1 9848:1 9853:3 9855:1 9873:12 9875:1 9876:6 9883:1 9885:1 9888:1 9909:1 9915:1 9967:1 9971:2 9976:1 9986:1 9998:2 10018:4 10023:1 10035:4 10050:2 10055:1 10081:1 10084:1 10103:1 10121:1 10137:2 10149:6 10155:1 10159:1 10163:1 10173:2 10181:1 10191:1 10209:3 10215:7 10226:1 10227:1 10230:1 10251:1 10258:2 10276:3 10278:2 10281:2 10288:1 10297:6 10298:2 10304:1 10311:2 10312:4 10313:1 10314:6 10320:1 10328:1 10330:4 10334:1 10355:1 10356:3 10369:1 10371:1 10374:1 10383:4 10394:1 10396:3 10401:1 10405:2 10412:1 10413:8 10417:1 10463:1 10464:1 10470:1 10475:1 10480:1 10495:2 10498:1 10499:2 10503:1 10509:1 10510:1 10524:2 10531:2 10534:1 10545:1 10549:1 10588:2 10591:1 10595:1 10604:1 10620:3 10621:1 10634:1 10635:8 10649:4 10650:7 10663:3 10666:1 10670:1 10672:1 10679:1 10684:2 10692:1 10699:4 10702:1 10727:2 10729:1 10730:1 10740:1 10742:2 10747:5 10759:2 10767:4 10774:1 10779:3 10795:1 10810:1 10811:1 10814:1 10838:1 10839:1 10841:1 10843:2 10844:1 10846:1 10860:1 10876:1 10892:1 10894:1 10899:1 10900:1 10901:1 10904:1 10905:5 10906:1 10907:1 10926:1 10931:1 10941:1 10945:2 10959:2 10961:1 10965:1 10970:1 10971:1 10996:2 11019:1 11021:4 11029:2 11032:1 11039:2 11047:1 11054:1 11073:1 11080:1 11081:5 11112:1 11116:3 11118:6 11120:1 11122:2 11134:1 11147:1 11169:1 11172:1 11180:1 11186:2 11198:1 11218:3 11232:1 11238:1 11242:1 11245:1 11248:5 11259:1 11261:3 11263:1 11277:2 11278:3 11280:2 11286:1 11296:1 11297:1 11299:1 11315:3 11322:1 11328:4 11335:2 11336:10 11337:1 11348:1 11349:1 11354:1 11355:1 11358:1 11359:1 11367:1 11368:3 11370:1 11371:1 11372:7 11373:1 11374:1 11381:1 11383:7 11392:1 11394:1 11399:1 11401:1 11406:11 11422:2 11431:5 11435:2 11441:2 11446:1 11455:1 11475:1 11476:1 11486:4 11492:1 11496:1 11498:1 11499:2 11529:1 11530:1 11534:1 11544:3 11557:1 11563:1 11566:2 11575:1 11598:1 11615:2 11616:2 11633:2 11649:2 11651:1 11658:1 11683:1 11691:5 11734:2 11737:2 11749:1 11754:1 11759:1 11761:1 11764:1 11765:1 11766:1 11768:1 11786:4 11787:4 11788:24 11793:1 11797:7 11806:1 11812:1 11813:2 11814:1 11823:3 11837:2 11859:1 11879:2 11900:1 11904:1 11930:3 11938:9 11939:2 11955:1 11958:4 11959:1 11963:2 11968:2 11984:1 12005:1 12016:4 12019:1 12040:1 12047:1 12054:2 12058:1 12064:1 12069:1 12081:2 12115:2 12134:5 12148:1 12155:2 12187:1 12189:3 12196:1 12198:1 12202:1 12203:1 12218:1 12236:2 12257:1 12258:1 12264:1 12266:1 12275:1 12290:1 12323:6 12336:1 12339:1 12341:1 12345:1 12348:1 12357:1 12369:2 12370:4 12391:2 12394:3 12420:1 12451:1 12456:2 12485:1 12505:1 12510:2 12516:1 12524:1 12525:3 12550:1 12566:2 12599:1 12600:2 12651:1 12652:1 12653:1 12671:5 12673:1 12684:1 12691:1 12692:3 12698:1 12702:1 12710:2 12712:1 12715:1 12719:1 12722:1 12733:2 12741:1 12744:3 12748:1 12756:2 12765:1 12768:1 12769:1 12771:2 12776:1 12792:1 12798:1 12799:2 12829:1 12834:1 12835:2 12837:1 12870:2 12872:3 12874:1 12875:1 12881:1 12882:2 12883:1 12884:8 12886:2 12889:4 12891:1 12892:1 12900:2 12904:3 12915:3 12919:1 12924:2 12928:3 12934:1 12954:7 12956:1 12960:1 12964:1 12966:1 12968:1 12970:3 12979:1 12980:2 12997:2 13012:1 13019:2 13023:1 13033:3 13034:1 13048:1 13049:6 13052:1 13053:1 13062:1 13065:1 13071:1 13084:2 13095:3 13114:1 13117:1 13119:2 13122:7 13131:1 13136:1 13148:2 13149:3 13150:2 13151:1 13152:1 13160:4 13174:2 13177:1 13178:2 13190:1 13201:2 13221:1 13237:2 13238:1 13243:1 13249:1 13250:2 13251:2 13252:2 13254:2 13257:1 13270:1 13277:1 13278:1 13281:1 13282:1 13283:1 13296:1 13301:2 13302:1 13310:1 13313:1 13314:2 13318:3 13319:1 13330:2 13334:1 13335:1 13352:1 13365:8 13370:2 13371:1 13377:1 13380:1 13411:1 13416:1 13418:1 13434:2 13435:1 13436:2 13439:2 13457:1 13458:2 13461:2 13462:1 13467:5 13493:1 13510:1 13515:1 13518:1 13529:2 13530:3 13535:3 13536:7 13543:2 13560:2 13565:3 13578:1 13589:2 13604:1 13610:2 13612:1 13615:2 13616:1 13620:1 13628:1 13629:2 13633:2 13636:1 13656:1 13666:1 13679:1 13722:1 13723:2 13728:1 13730:1 13735:2 13750:1 13769:1 13782:1 13795:1 13829:1 13854:1 13855:1 13864:2 13880:1 13881:1 13894:1 13898:3 13907:2 13908:1 13917:1 13920:1 13924:5 13926:1 13927:1 13935:1 13937:1 13951:2 13952:1 13956:1 13970:1 13971:1 13972:1 13985:1 13989:1 14009:2 14013:1 14035:2 14051:1 14065:1 14070:2 14076:1 14087:1 14091:2 14093:2 14099:1 14106:5 14126:2 14135:1 14142:1 14145:1 14154:2 14158:1 14183:1 14197:1 14225:1 14227:4 14238:1 14255:1 14271:1 14303:1 14304:1 14368:1 14370:1 14378:1 14385:1 14401:2 14437:4 14443:3 14445:2 14447:1 14450:1 14451:1 14470:2 14475:1 14496:3 14505:1 14516:1 14522:1 14541:1 14545:2 14546:1 14551:4 14566:1 14577:1 14588:1 14592:2 14596:1 14599:1 14601:1 14624:1 14633:2 14662:1 14665:3 14667:1 14670:1 14671:1 14678:1 14709:1 14710:1 14747:1 14756:2 14760:3 14761:4 14766:1 14792:5 14793:1 14796:1 14811:1 14826:6 14828:2 14832:1 14835:1 14840:1 14855:1 14867:1 14870:1 14877:1 14879:1 14887:4 14894:3 14898:2 14906:2 14909:1 14942:1 14951:2 14968:1 14970:1 14978:1 14992:1 15006:1 15007:1 15009:1 15011:1 15020:1 15021:1 15033:3 15036:1 15058:11 15063:8 15067:1 15073:1 15099:2 15112:1 15113:2 15118:2 15131:4 15134:1 15154:1 15158:1 15165:1 15171:1 15190:3 15193:1 15194:1 15201:8 15210:3 15211:1 15221:1 15222:1 15224:2 15230:1 15232:4 15234:1 15236:1 15238:1 15239:6 15243:2 15244:7 15245:1 15250:2 15254:2 15255:1 15263:1 15264:6 15269:4 15300:1 15302:1 15337:1 15345:1 15347:2 15349:2 15355:1 15356:2 15361:2 15366:6 15375:1 15388:2 15401:1 15403:2 15421:2 15425:3 15442:1 15446:2 15461:1 15465:1 15472:1 15478:1 15488:1 15496:3 15500:1 15502:8 15513:2 15529:3 15538:1 15540:4 15554:1 15557:1 15566:24 15570:1 15587:1 15596:6 15597:1 15599:1 15620:2 15637:70 15665:3 15669:1 15697:1 15708:1 15731:1 15733:1 15734:3 15756:1 15758:1 15759:1 15761:1 15763:2 15765:1 15766:2 15773:3 15774:6 15776:1 15780:3 15783:1 15784:2 15791:2 15797:1 15810:1 15812:1 15815:2 15822:1 15831:1 15832:1 15833:1 15855:1 15857:1 15869:1 15876:1 15896:1 15902:5 15919:1 15934:2 15938:4 15953:1 15961:2 15969:2 15974:1 15979:1 15988:1 16026:1 16035:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16093:1 16103:1 16107:2 16108:1 16116:1 16130:1 16133:1 16137:2 16146:3 16151:5 16153:1 16156:1 16165:1 16167:2 16168:3 16176:1 16187:3 16190:1 16199:3 16210:1 16215:1 16217:3 16219:1 16220:2 16222:1 16228:1 16230:1 16237:1 16249:3 16254:1 16255:13 16262:1 16264:2 16289:2 16300:2 16310:1 16311:3 16338:1 16343:1 16348:2 16365:1 16366:2 16369:5 16373:1 16375:3 16378:1 16380:2 16390:1 16395:1 16407:1 16416:1 16419:1 16421:1 16426:2 16427:2 16446:2 16450:2 16453:1 16455:2 16459:1 16472:1 16486:1 16491:1 16492:3 16500:1 16501:1 16517:1 16540:1 16558:1 16562:1 16569:2 16571:1 16582:1 16587:1 16588:2 16589:1 16590:1 16601:1 16608:1 16609:1 16617:2 16623:3 16630:2 16644:1 16646:1 16649:1 16652:1 16654:3 16658:1 16666:1 16674:1 16676:1 16683:3 16690:1 16704:2 16705:1 16718:1 16721:1 16726:1 16744:2 16765:1 16766:3 16771:1 16777:1 16780:1 16796:4 16845:2 16847:1 16851:1 16860:1 16866:1 16876:1 16877:1 16879:1 16896:6 16899:2 16902:2 16904:1 16911:1 16915:2 16916:3 16920:3 16921:1 16934:1 16936:2 16940:2 16949:1 16953:1 16954:1 16964:2 16982:1 16987:1 16988:1 16990:1 16993:1 17001:1 17010:1 17018:2 17019:3 17055:1 17058:2 17061:1 17077:1 17082:1 17098:1 17102:2 17103:3 17113:2 17117:1 17128:1 17130:1 17142:3 17187:3 17193:1 17194:1 17196:2 17199:2 17201:2 17202:1 17213:1 17219:1 17220:14 17223:2 17235:1 17244:1 17248:2 17275:1 17285:2 17287:1 17292:1 17294:1 17310:1 17311:2 17317:3 17334:2 17338:2 17341:1 17354:1 17361:1 17363:1 17369:1 17376:1 17392:1 17396:4 17403:2 17404:4 17417:2 17446:2 17448:1 17479:1 17481:1 17501:1 17513:1 17529:3 17531:1 17540:1 17568:1 17571:1 17578:1 17584:1 17587:1 17595:1 17599:3 17609:2 17616:1 17640:1 17641:1 17646:2 17657:1 17661:1 17666:1 17667:4 17673:1 17685:1 17714:4 17718:1 17723:2 17750:1 17752:1 17754:4 17760:1 17774:5 17779:1 17782:1 17785:3 17787:1 17805:2 17806:1 17811:1 17821:1 17823:2 17828:1 17850:1 17856:1 17873:1 17874:1 17900:2 17912:17 17916:1 17923:1 17930:1 17946:1 17949:1 17961:1 17968:1 17969:1 17970:1 17978:1 17979:2 17980:1 17984:2 17986:1 17989:2 17998:1 18003:1 18010:1 18013:2 18027:1 18031:6 18035:1 18037:2 18038:1 18052:4 18057:2 18065:2 18066:1 18095:1 18101:3919 18105:1 18118:5 18123:2 18149:1 18157:1 18163:2 18171:1 18178:3 18179:2 18188:2 18214:1 18215:3 18226:1 18234:2 18245:2 18262:1 18267:1 18271:6 18272:2 18298:3 18306:1 18309:1 18311:3 18314:1 18315:1 18331:1 18333:1 18346:1 18361:1 18362:1 18366:1 18381:1 18408:1 18410:5 18415:1 18423:2 18429:1 18434:1 18439:1 18444:1 18462:3 18472:1 18481:2 18491:1 18493:1 18505:1 18512:1 18514:1 18515:1 18524:1 18557:1 18567:1 18569:2 18572:1 18575:1 18584:4 18599:2 18601:1 18607:1 18618:1 18623:2 18631:1 18667:4 18669:1 18677:1 18679:3 18725:1 18731:1 18761:1 18780:1 18786:2 18796:1 18799:2 18801:1 18804:2 18813:4 18825:2 18829:1 18830:4 18834:1 18845:1 18847:5 18859:18 18877:1 18878:1 18880:3 18881:1 18883:24 18892:2 18910:1 18911:6 18912:1 18914:1 18931:1 18936:2 18947:1 18950:6 18968:1 18972:2 18976:1 18978:6 18980:2 18983:1 18987:1 18997:2 18998:1 19000:1 19005:1 19028:1 19034:3 19039:1 19055:1 19067:3 19099:1 19103:1 19106:1 19108:2 19148:1 19153:1 19176:1 19179:1 19187:1 19206:1 19209:13 19212:1 19220:1 19231:3 19253:1 19254:2 19256:1 19279:1 19291:1 19299:1 19305:1 19307:7 19326:1 19329:1 19347:2 19357:1 19359:1 19360:1 19378:1 19383:1 19390:1 19391:1 19394:2 19399:1 19401:2 19402:1 19409:2 19430:1 19436:1 19459:4 19464:1 19470:1 19472:1 19488:3 19489:1 19514:3 19523:1 19525:1 19538:1 19539:1 19543:2 19545:5 19565:2 19569:1 19574:2 19582:2 19584:1 19586:1 19591:8 19612:1 19638:1 19644:1 19663:15 19669:2 19677:2 19679:3 19694:1 19695:1 19706:1 19707:15 19724:1 19737:1 19747:1 19756:1 19774:1 19786:2 19813:1 19818:1 19821:1 19822:1 19833:2 19853:5 19854:1 19856:2 19865:1 19870:1 19900:2 19910:1 19918:1 19945:5 19955:1 19957:3 19968:1 19979:1 19986:1 19998:1 20006:1 20022:1 20024:1 20044:2 20078:3 20086:1 20095:1 20099:1 20109:1 20117:1 20119:1 20120:2 20129:1 20131:1 20143:1 20145:1 20148:2 20169:1 20171:1 20177:1 20193:1 20210:3 20217:1 20224:1 20227:2 20230:1 20231:1 20232:1 20235:1 20236:1 20240:1 20245:14 20248:1 20252:2 20253:1 20257:3 20258:1 20260:5 20261:1 20279:3 20285:2 20289:5 20299:1 20322:5 20325:1 20327:1 20335:1 20336:1 20337:1 20352:1 20364:2 20365:1 20366:1 20375:2 20378:1 20396:2 20401:1 20402:1 20413:1 20422:8 20429:1 20432:2 20438:1 20448:1 20453:2 20467:1 20490:1 20496:1 20502:1 20505:1 20507:1 20524:3 20528:1 20531:1 20533:1 20538:1 20546:4 20559:1 20561:1 20563:1 20567:2 20569:1 20571:1 20572:1 20579:1 20583:1 20585:1 20620:1 20628:3 20647:1 20672:1 20678:1 20679:1 20684:2 20708:1 20712:1 20716:1 20718:4 20720:2 20723:3 20733:5 20741:1 20743:1 20745:1 20773:1 20777:1 20782:1 20786:2 20787:1 20798:1 20804:1 20808:1 20809:1 20810:1 20812:1 20814:2 20815:2 20822:1 20827:1 20828:1 20838:2 20840:7 20843:3 20856:2 20860:1 20861:1 20863:1 20870:1 20874:1 20880:1 20888:1 20921:1 20924:2 20926:1 20927:2 20934:3 20941:2 20951:1 20952:1 20953:1 20971:1 20973:4 20976:18 20978:1 20990:1 20992:1 20998:3 20999:2 21003:1 21010:1 21014:1 21019:1 21024:1 21026:3 21037:5 21049:1 21053:1 21080:3 21082:1 21084:3 21086:1 21090:1 21096:5 21108:1 21120:1 21125:1 21140:1 21141:1 21142:4 21150:2 21156:3 21161:1 21209:1 21231:4 21237:2 21238:1 21239:12 21241:3 21245:2 21252:2 21254:1 21255:1 21266:4 21267:3 21269:2 21271:1 21272:1 21276:1 21279:2 21282:2 21283:1 21291:1 21292:1 21293:1 21297:1 21302:1 21306:2 21309:2 21314:1 21318:1 21334:2 21369:1 21379:5 21380:1 21403:1 21407:1 21412:1 21413:2 21423:2 21425:1 21428:1 21435:1 21439:1 21444:1 21446:4 21457:1 21464:1 21467:1 21474:1 21515:24 21516:2 21518:1 21537:1 21548:1 21556:2 21569:1 21575:1 21583:1 21594:4 21596:1 21609:1 21611:1 21613:2 21620:1 21621:1 21623:1 21628:2 21637:1 21642:2 21644:1 21645:1 21648:9 21654:1 21664:2 21668:4 21679:2 21697:1 21704:1 21706:2 21712:1 21715:1 21718:2 21732:1 21735:1 21738:1 21741:2 21743:1 21745:2 21753:1 21754:1 21766:2 21769:1 21781:10 21794:4 21802:1 21807:4 21814:1 21819:1 21828:2 21840:1 21850:1 21860:2 21873:1 21874:1 21895:1 21914:1 21929:1 21935:1 21941:3 21946:1 21949:1 21959:1 21967:1 21972:2 21985:1 21989:1 22001:1 22012:1 22015:1 22021:1 22032:1 22038:1 22040:1 22041:2 22042:2 22049:15 22051:2 22078:2 22082:2 22090:1 22099:1 22115:1 22120:1 22130:3 22132:1 22133:2 22136:1 22139:1 22154:1 22165:3 22180:1 22185:1 22188:5 22192:1 22222:1 22223:1 22225:1 22241:1 22246:1 22248:1 22264:2 22270:1 22279:1 22283:1 22284:1 22290:1 22295:2 22310:1 22322:1 22329:1 22333:1 22344:1 22346:1 22348:2 22355:2 22361:1 22374:1 22414:1 22423:1 22424:1 22425:6 22431:1 22432:1 22436:1 22448:1 22452:1 22453:1 22463:2 22466:1 22471:1 22478:1 22481:2 22496:1 22506:1 22530:2 22534:3 22538:1 22548:1 22551:2 22556:1 22564:2 22568:4 22571:1 22572:1 22587:1 22593:1 22607:2 22619:1 22627:4 22628:5 22633:1 22634:1 22646:6 22654:1 22657:1 22665:1 22667:1 22670:1 22672:4 22677:3 22681:1 22683:1 22699:2 22706:1 22707:2 22708:1 22720:1 22748:5 22755:1 22757:29 22759:1 22837:2 22844:1 22846:2 22847:1 22849:1 22856:1 22872:1 22889:1 22916:3 22922:1 22924:2 22925:1 22937:1 22949:1 22951:1 22957:1 22965:2 22983:1 22986:1 22999:1 23000:1 23008:1 23019:1 23022:1 23024:2 23028:1 23059:1 23062:2 23076:1 23077:2 23079:1 23089:1 23104:6 23109:1 23112:2 23117:1 23122:1 23126:1 23152:1 23159:1 23175:1 23177:1 23192:2 23207:3 23215:2 23222:1 23224:2 23227:1 23228:1 23229:2 23246:1 23266:1 23278:1 23284:1 23300:1 23306:1 23313:1 23321:1 23328:1 23334:2 23345:1 23360:1 23362:1 23381:1 23389:1 23391:1 23396:1 23397:9 23405:1 23412:1 23413:1 23417:1 23421:3 23434:2 23445:1 23449:1 23470:1 23492:1 23494:1 23502:1 23510:4 23520:1 23521:1 23558:1 23568:5 23595:1 23602:1 23633:2 23643:1 23646:1 23655:1 23656:1 23662:1 23665:1 23666:3 23667:5 23668:1 23689:1 23697:1 23704:2 23707:3 23712:1 23716:4 23722:2 23726:1 23752:2 23753:2 23766:3 23780:1 23788:1 23791:2 23802:2 23808:1 23820:1 23841:1 23844:1 23860:1 23867:4 23870:1 23871:1 23879:3 23883:1 23885:1 23890:1 23899:1 23900:1 23908:1 23916:1 23921:1 23933:1 23934:1 23937:1 23939:1 23944:1 23954:1 23960:1 23971:1 23980:1 23982:2 23998:1 24003:1 24006:3 24011:1 24013:1 24020:1 24027:1 24036:1 24040:1 24050:1 24052:1 24057:1 24059:1 24081:1 24083:1 24086:1 24099:1 24106:2 24144:3 24155:5 24173:1 24179:1 24191:1 24208:1 24214:1 24224:1 24230:2 24231:1 24234:1 24236:1 24241:1 24242:6 24252:1 24269:3 24274:1 24275:1 24290:1 24306:2 24325:1 24331:1 24339:4 24359:1 24360:1 24363:1 24367:1 24396:1 24404:2 24406:4 24412:2 24417:1 24420:1 24434:8 24436:1 24457:1 24468:1 24473:2 24476:6 24478:1 24484:1 24486:1 24488:5 24491:1 24492:1 24533:1 24534:1 24540:1 24567:1 24572:1 24600:1 24614:1 24620:1 24634:1 24636:1 24637:4 24640:1 24641:2 24644:8 24647:3 24653:1 24659:1 24665:2 24678:1 24692:3 24694:1 24697:2 24702:1 24718:1 24728:1 24730:6 24731:1 24740:2 24742:1 24751:4 24760:7 24761:2 24772:2 24782:1 24784:1 24789:1 24797:1 24817:2 24823:2 24838:1 24841:6 24843:1 24847:1 24854:1 24855:1 24873:2 24883:1 24897:2 24915:3 24928:1 24942:5 24946:1 24967:4 24969:4 24973:1 24990:2 24999:1 25018:1 25051:1 25053:1 25056:1 25061:1 25071:1 25081:1 25085:1 25092:4 25109:1 25117:1 25121:1 25131:1 25135:1 25138:2 25140:1 25143:1 25153:1 25157:2 25160:3 25173:1 25175:1 25179:2 25191:1 25194:1 25200:1 25217:2 25219:1 25228:1 25230:2 25235:1 25242:1 25256:6 25261:1 25262:1 25264:1 25265:1 25268:2 25277:1 25283:1 25286:1 25289:3 25323:2 25326:1 25332:2 25348:2 25358:1 25360:1 25379:1 25385:2 25387:4 25402:1 25410:18 25414:1 25451:1 25455:1 25478:1 25486:1 25494:1 25514:1 25525:1 25530:1 25537:1 25549:3 25555:1 25560:1 25569:1 25571:2 25586:1 25641:2 25660:3 25681:5 25683:2 25684:1 25688:1 25695:1 25696:2 25698:1 25699:4 25700:10 25703:2 25705:1 25722:1 25735:1 25742:2 25751:3 25773:1 25782:1 25787:1 25793:4 25801:1 25805:1 25819:1 25826:3 25844:1 25852:1 25856:1 25861:2 25866:1 25867:1 25879:1 25901:3 25905:1 25910:2 25916:1 25944:2 25955:1 25957:1 25967:1 25975:2 26008:1 26023:1 26032:1 26042:1 26051:1 26067:1 26069:2 26075:1 26104:3 26110:2 26120:2 26137:1 26151:1 26158:1 26189:1 26196:1 26201:1 26216:2 26218:2 26228:2 26254:1 26269:1 26272:2 26281:1 26285:2 26288:1 26289:6 26299:1 26301:1 26303:10 26314:1 26319:1 26331:2 26332:1 26361:1 26383:1 26389:1 26397:29 26398:1 26400:3 26401:1 26410:1 26420:1 26430:5 26447:2 26450:1 26452:1 26454:1 26495:1 26503:3 26505:3 26509:4 26510:2 26514:1 26519:1 26544:2 26546:1 26548:1 26549:1 26555:2 26557:2 26559:2 26562:2 26563:1 26569:1 26570:1 26571:1 26573:1 26576:3 26581:1 26588:3 26590:1 26612:2 26624:1 26638:1 26641:2 26651:1 26664:2 26666:1 26686:2 26689:1 26690:1 26705:1 26711:1 26715:3 26716:2 26725:1 26765:2 26766:1 26784:3 26785:2 26789:2 26792:1 26794:1 26797:1 26799:1 26807:4 26808:1 26810:2 26829:2 26840:1 26843:1 26863:1 26869:14 26874:1 26879:1 26889:1 26894:1 26909:1 26919:1 26954:4 26963:4 26977:1 26986:2 26989:1 26993:1 27017:1 27025:1 27035:1 27038:4 27044:1 27071:2 27074:1 27075:1 27080:1 27083:1 27108:5 27111:5 27134:1 27135:1 27143:3 27145:1 27157:1 27162:1 27171:1 27177:1 27213:1 27216:1 27217:1 27228:4 27231:1 27239:1 27248:1 27256:3 27259:1 27271:1 27279:2 27280:28 27281:2 27283:3 27287:4 27289:1 27290:1 27300:1 27315:1 27316:13 27326:1 27329:1 27337:2 27364:1 27368:2 27372:1 27373:2 27381:1 27383:2 27394:1 27401:1 27405:7 27414:5 27419:2 27447:3 27448:1 27450:1 27452:2 27458:1 27462:1 27465:1 27477:1 27492:1 27495:1 27496:1 27519:1 27526:1 27549:1 27550:1 27558:2 27561:1 27562:1 27590:2 27591:2 27594:1 27611:1 27619:1 27620:1 27627:1 27629:1 27633:2 27636:1 27638:4 27641:2 27644:1 27658:1 27661:2 27666:1 27676:1 27692:10 27695:1 27697:1 27705:4 27708:1 27743:1 27745:1 27749:1 27772:3 27773:9 27775:2 27776:1 27780:1 27783:1 27799:2 27804:2 27805:3 27814:1 27818:1 27828:2 27834:2 27835:1 27842:1 27864:3 27879:1 27895:1 27914:3 27920:1 27922:2 27926:2 27927:1 27951:2 27961:2 27963:5 27968:1 27971:1 27977:5 27984:1 27994:2 28018:1 28026:1 28046:2 28053:1 28067:1 28081:1 28106:3 28108:2 28122:1 28138:4 28154:1 28169:2 28172:1 28176:1 28185:1 28210:1 28217:2 28222:1 28229:3 28237:1 28265:1 28283:1 28292:3 28295:1 28297:1 28300:1 28301:1 28314:1 28326:2 28336:1 28340:1 28341:1 28343:8 28344:1 28352:2 28364:2 28370:1 28378:1 28380:2 28391:1 28395:3 28397:1 28420:1 28430:5 28437:2 28442:1 28496:1 28499:1 28503:1 28504:1 28507:1 28509:1 28511:5 28516:1 28523:1 28530:1 28554:1 28560:2 28566:1 28569:1 28574:1 28575:1 28576:1 28579:1 28587:2 28618:1 28627:1 28629:1 16 6:1 10:1 26:1 27:2 29:1 44:1 58:1 69:1 74:1 78:1 82:1 83:5 100:1 106:1 137:1 147:1 153:1 162:1 165:4 172:1 175:2 176:1 201:1 206:2 211:3 213:1 230:1 235:4 239:1 254:2 283:1 286:1 296:4 300:1 318:1 327:1 336:3 337:3 338:1 364:2 372:1 375:1 382:1 399:1 407:2 418:1 442:3 445:2 449:2 460:1 471:1 478:1 489:2 504:1 507:1 509:1 514:1 523:2 526:2 552:1 553:1 567:5 603:1 614:1 617:3 621:1 627:4 634:1 648:3 654:2 661:4 665:1 671:1 676:1 684:1 685:1 688:1 699:1 707:1 713:1 724:1 735:1 747:2 757:2 768:1 772:2 787:1 803:1 805:1 809:1 813:1 824:1 826:1 828:2 843:4 852:1 854:1 856:3 861:2 872:2 902:2 907:1 910:2 913:1 915:1 924:2 933:2 934:2 939:3 940:1 941:3 942:6 943:2 944:2 947:2 963:1 966:2 978:1 980:1 982:1 983:1 985:6 987:2 1007:1 1010:1 1015:2 1020:2 1052:1 1059:2 1062:1 1081:1 1086:1 1089:1 1108:2 1116:1 1125:2 1143:1 1150:2 1169:1 1170:1 1171:3 1174:1 1175:1 1184:2 1187:1 1192:2 1200:1 1201:4 1217:2 1222:2 1224:2 1227:1 1237:2 1239:3 1259:1 1263:1 1267:1 1269:2 1275:5 1278:1 1279:1 1289:7 1290:2 1292:1 1302:3 1306:1 1316:1 1319:1 1321:1 1331:2 1333:1 1335:4 1346:2 1356:1 1375:2 1379:1 1390:1 1391:1 1404:1 1410:1 1413:2 1415:2 1438:3 1440:1 1446:1 1448:1 1451:1 1453:2 1464:1 1475:1 1484:6 1493:1 1497:1 1501:8 1513:2 1521:2 1522:1 1525:4 1531:1 1535:1 1540:1 1541:1 1544:5 1560:1 1569:1 1571:1 1572:10 1583:1 1587:3 1589:2 1590:2 1591:2 1594:1 1595:1 1596:1 1601:2 1603:1 1616:1 1621:3 1628:1 1632:5 1637:5 1640:2 1641:1 1653:1 1654:2 1657:1 1672:5 1675:3 1678:1 1683:1 1684:1 1692:1 1698:2 1702:1 1706:1 1722:1 1731:1 1733:1 1743:2 1745:1 1746:1 1747:1 1751:1 1758:4 1763:1 1766:5 1779:1 1784:1 1789:1 1790:1 1809:1 1810:1 1816:1 1820:1 1824:1 1825:1 1831:1 1836:2 1837:2 1844:1 1849:1 1853:1 1860:1 1861:1 1865:1 1868:1 1877:4 1882:1 1883:1 1884:1 1889:2 1895:1 1901:1 1903:2 1904:4 1908:1 1910:1 1912:1 1914:1 1921:1 1929:1 1930:4 1931:1 1933:1 1950:1 1953:1 1958:1 1978:1 1986:1 2001:1 2006:1 2015:2 2017:2 2019:2 2020:2 2022:1 2023:3 2035:1 2044:1 2049:1 2054:2 2072:1 2074:4 2075:1 2076:2 2077:1 2078:1 2101:1 2108:4 2126:2 2133:1 2156:1 2158:1 2164:1 2170:1 2172:1 2174:3 2188:1 2191:1 2192:1 2204:1 2209:1 2227:2 2228:1 2229:1 2230:2 2232:5 2236:3 2237:1 2238:6 2240:1 2241:1 2244:6 2245:1 2246:4 2248:2 2251:1 2253:1 2256:6 2259:3 2260:8 2265:1 2267:1 2272:1 2273:2 2277:1 2279:2 2283:1 2290:1 2303:1 2308:1 2312:1 2321:1 2325:1 2327:2 2331:1 2334:1 2335:1 2336:3 2340:1 2346:1 2354:1 2359:2 2361:1 2374:1 2391:1 2413:6 2423:1 2437:1 2443:2 2448:4 2474:1 2483:1 2486:1 2488:1 2495:1 2526:2 2531:1 2556:1 2582:2 2587:1 2595:4 2596:1 2602:1 2607:5 2615:1 2622:2 2623:1 2630:1 2633:1 2635:3 2637:12 2651:1 2653:1 2659:1 2662:3 2668:1 2670:1 2674:1 2675:1 2677:1 2684:4 2689:1 2690:1 2695:1 2713:2 2714:1 2721:2 2731:2 2738:1 2739:1 2741:5 2747:4 2755:1 2792:4 2795:1 2798:1 2799:1 2804:2 2806:1 2818:16 2827:1 2828:7 2837:1 2848:1 2857:2 2869:1 2875:1 2885:32 2894:1 2899:2 2903:1 2907:1 2918:1 2919:1 2920:1 2936:1 2948:1 2956:1 2962:2 2970:1 2981:1 2986:2 2987:1 2988:1 2989:2 3006:1 3028:1 3037:3 3041:1 3053:3 3059:1 3062:2 3070:1 3085:1 3105:1 3106:1 3107:1 3115:2 3116:1 3117:1 3122:1 3129:2 3133:4 3141:2 3151:13 3153:3 3166:1 3168:1 3173:1 3181:1 3191:2 3199:1 3208:1 3218:1 3219:7 3238:1 3254:1 3271:1 3281:1 3283:1 3293:1 3301:1 3303:2 3319:3 3327:1 3330:1 3340:1 3348:1 3357:3 3361:3 3369:2 3373:1 3377:1 3388:5 3417:1 3423:1 3426:1 3427:3 3430:1 3439:1 3441:1 3442:1 3453:3 3462:1 3491:1 3502:1 3505:1 3511:1 3512:5 3513:2 3519:2 3521:1 3522:2 3535:2 3543:1 3550:1 3569:1 3588:1 3598:1 3603:2 3606:4 3608:1 3625:1 3642:1 3643:1 3651:4 3652:44 3659:1 3667:1 3674:1 3677:2 3678:1 3679:9 3681:1 3686:1 3687:2 3688:27 3689:2 3691:6 3694:1 3697:2 3706:4 3709:1 3718:3 3721:4 3724:3 3725:4 3740:2 3742:1 3743:2 3755:1 3769:2 3776:1 3777:3 3781:1 3783:1 3788:1 3805:1 3808:1 3811:2 3813:1 3815:1 3816:3 3824:1 3826:3 3838:2 3840:1 3844:1 3853:1 3861:1 3863:1 3866:2 3873:1 3889:1 3891:1 3900:1 3901:2 3904:1 3905:1 3911:2 3915:2 3918:1 3920:1 3925:5 3939:5 3953:1 3985:1 3993:1 3995:1 4013:1 4031:1 4036:1 4052:1 4056:3 4062:1 4086:1 4090:1 4101:2 4106:2 4107:2 4109:1 4110:1 4113:1 4137:1 4143:2 4152:1 4153:1 4156:1 4169:3 4184:1 4199:1 4209:2 4221:1 4234:14 4250:1 4269:1 4277:1 4302:3 4306:1 4313:5 4322:1 4325:2 4335:2 4347:7 4351:1 4362:1 4372:1 4380:1 4383:1 4386:1 4391:1 4393:1 4435:1 4448:1 4449:2 4470:1 4474:1 4484:1 4489:2 4499:3 4513:1 4514:1 4515:2 4519:1 4522:2 4533:1 4543:4 4554:1 4557:1 4563:4 4582:1 4584:2 4585:1 4586:1 4594:1 4609:1 4653:1 4654:1 4659:1 4660:2 4671:1 4685:1 4689:1 4693:2 4701:2 4742:1 4754:2 4761:1 4779:1 4782:1 4785:1 4792:17 4793:3 4804:1 4824:2 4848:1 4850:2 4860:1 4865:1 4870:1 4893:4 4896:1 4902:4 4903:1 4905:5 4925:2 4926:4 4927:8 4928:1 4929:1 4930:2 4932:1 4933:3 4935:1 4939:1 4940:24 4941:1 4943:1 4948:2 4949:3 4956:2 4957:1 4963:1 4972:2 4975:3 4979:1 4995:2 5021:1 5031:2 5045:1 5053:1 5058:1 5064:2 5120:1 5144:3 5145:3 5151:1 5152:5 5158:1 5181:1 5190:1 5195:1 5209:1 5213:2 5214:24 5227:1 5242:1 5249:1 5250:3 5252:1 5280:3 5315:1 5317:1 5319:1 5330:1 5343:1 5355:1 5359:1 5361:2 5370:1 5375:1 5379:1 5386:1 5388:1 5390:2 5392:1 5395:1 5431:1 5433:1 5437:1 5446:1 5447:1 5448:2 5454:1 5465:4 5474:1 5479:1 5489:2 5494:1 5497:1 5502:1 5503:2 5509:1 5521:1 5523:2 5525:1 5549:1 5561:1 5562:1 5565:5 5588:2 5595:2 5604:2 5612:1 5614:1 5618:1 5620:1 5624:1 5631:1 5635:1 5643:1 5646:2 5653:1 5654:1 5656:1 5659:2 5660:1 5662:1 5674:2 5675:1 5679:1 5683:1 5697:1 5701:1 5702:1 5703:1 5707:1 5720:1 5731:1 5745:1 5766:3 5791:1 5794:5 5796:1 5800:1 5803:1 5808:1 5817:2 5828:1 5846:1 5858:1 5860:2 5894:1 5903:1 5905:1 5924:1 5931:5 5932:10 5941:1 5945:2 5966:1 5971:2 5976:1 5977:1 5980:1 6003:1 6020:1 6024:1 6026:1 6034:2 6038:1 6042:2 6043:1 6046:1 6047:1 6057:1 6073:2 6079:5 6086:1 6087:2 6088:2 6115:1 6126:1 6127:3 6129:1 6136:2 6151:6 6153:1 6157:1 6162:2 6165:1 6166:1 6168:1 6177:1 6181:1 6184:1 6194:1 6239:7 6242:2 6243:2 6244:1 6247:1 6248:1 6250:3 6251:2 6254:2 6255:3 6256:5 6262:3 6264:8 6265:1 6266:1 6267:4 6275:1 6288:2 6289:1 6298:1 6317:1 6325:3 6329:1 6341:1 6356:2 6357:1 6358:1 6385:1 6392:1 6394:1 6398:1 6404:1 6410:2 6413:1 6424:1 6446:1 6450:1 6454:1 6463:1 6494:1 6507:4 6508:1 6513:2 6523:1 6533:5 6535:2 6539:3 6547:1 6550:1 6557:1 6558:1 6566:2 6576:1 6580:1 6582:3 6585:1 6586:2 6598:2 6603:1 6604:1 6606:1 6615:1 6639:1 6657:1 6661:1 6665:1 6670:1 6677:2 6679:3 6684:3 6685:2 6687:1 6695:3 6699:2 6704:5 6711:3 6718:1 6731:1 6736:1 6739:3 6745:1 6767:1 6780:1 6783:2 6789:1 6791:1 6795:1 6799:2 6803:1 6819:3 6828:1 6831:1 6835:1 6857:2 6860:1 6876:3 6893:1 6896:2 6907:1 6909:1 6930:1 6954:2 6970:1 6973:2 6974:1 6981:1 6982:2 6996:1 7000:5 7003:1 7008:1 7010:3 7012:1 7015:1 7016:1 7022:1 7026:1 7027:1 7036:1 7049:1 7080:2 7126:1 7134:1 7143:1 7145:1 7151:1 7153:1 7180:1 7196:2 7204:1 7213:1 7221:5 7267:1 7269:1 7275:4 7290:2 7297:1 7307:5 7313:1 7337:1 7343:2 7352:2 7360:2 7377:1 7378:2 7387:2 7406:1 7411:1 7415:1 7419:1 7420:2 7430:1 7433:1 7437:5 7446:1 7466:1 7471:1 7477:4 7478:6 7479:3 7496:1 7499:2 7500:1 7502:2 7505:1 7512:1 7530:1 7531:2 7544:1 7547:1 7548:51 7549:1 7550:1 7555:2 7567:16 7568:28 7576:1 7578:1 7579:1 7582:1 7586:1 7588:1 7590:1 7595:1 7615:1 7616:7 7638:1 7639:1 7647:1 7648:1 7653:1 7668:1 7672:2 7689:4 7705:1 7742:4 7746:7 7750:1 7762:1 7780:1 7786:1 7788:5 7796:1 7802:1 7805:1 7806:1 7826:1 7837:1 7851:1 7858:1 7862:1 7910:4 7914:1 7920:2 7921:1 7925:1 7926:1 7928:8 7936:3 7942:1 7951:1 7960:2 7973:1 7977:2 7983:1 7998:1 7999:1 8006:25 8013:1 8018:1 8026:1 8031:2 8037:2 8039:1 8043:1 8049:1 8063:2 8092:1 8098:1 8107:2 8108:1 8116:1 8127:2 8139:1 8140:1 8154:1 8167:1 8170:3 8176:5 8181:3 8194:2 8196:2 8199:4 8213:2 8214:1 8215:2 8220:1 8231:1 8233:2 8241:2 8251:1 8260:2 8263:2 8269:1 8270:1 8274:1 8276:1 8277:1 8294:2 8295:1 8308:1 8319:3 8327:1 8336:1 8342:1 8345:1 8349:1 8354:1 8357:2 8358:1 8359:3 8360:2 8361:2 8362:5 8365:2 8366:1 8370:2 8373:2 8375:2 8381:3 8396:1 8402:3 8412:2 8420:1 8421:1 8427:1 8428:1 8440:1 8450:5 8455:2 8462:1 8465:1 8469:2 8475:3 8492:1 8496:5 8517:6 8526:1 8528:1 8531:2 8550:1 8556:1 8583:2 8595:1 8596:1 8603:1 8609:3 8616:3 8617:1 8621:1 8624:1 8637:1 8640:2 8667:6 8668:2 8675:5 8676:1 8677:1 8678:4 8680:3 8687:2 8688:2 8706:3 8707:1 8709:2 8711:5 8725:1 8727:1 8743:3 8748:1 8763:1 8798:1 8813:1 8827:3 8835:1 8838:1 8853:2 8854:2 8863:1 8868:1 8880:1 8882:1 8895:1 8903:1 8906:1 8918:1 8919:1 8926:3 8935:1 8957:1 8962:4 8974:1 8978:1 8991:2 8994:1 8995:5 9006:1 9008:1 9015:8 9019:1 9035:2 9039:3 9042:1 9049:1 9055:1 9071:1 9078:1 9088:3 9091:1 9110:1 9111:1 9124:2 9125:1 9156:1 9160:1 9201:1 9219:1 9220:1 9236:1 9240:1 9243:1 9246:3 9252:2 9253:1 9263:1 9264:2 9278:1 9292:2 9294:1 9298:2 9310:1 9322:1 9325:3 9328:1 9337:1 9350:1 9368:1 9375:24 9383:1 9399:1 9408:2 9420:6 9428:2 9434:1 9437:1 9448:1 9455:1 9456:2 9459:1 9462:1 9466:1 9467:2 9484:2 9492:1 9494:1 9511:14 9522:1 9526:2 9529:1 9535:2 9550:1 9569:5 9575:1 9580:1 9586:3 9587:1 9590:1 9603:1 9614:1 9620:1 9622:1 9625:1 9637:3 9651:2 9655:3 9656:1 9666:1 9690:8 9696:2 9697:4 9698:2 9706:3 9707:1 9717:1 9726:3 9730:3 9733:1 9734:1 9739:2 9744:2 9748:4 9751:5 9753:1 9754:1 9761:1 9770:1 9774:1 9780:3 9785:4 9795:1 9797:2 9809:1 9817:2 9830:1 9848:1 9853:3 9855:1 9873:12 9875:1 9876:6 9883:1 9885:1 9888:1 9909:1 9915:1 9967:1 9971:2 9976:1 9986:1 9998:2 10018:4 10023:1 10024:1 10035:4 10050:2 10055:1 10081:1 10084:1 10103:2 10121:1 10137:2 10149:6 10155:1 10159:1 10163:1 10173:2 10181:1 10191:1 10209:3 10215:7 10226:1 10227:1 10230:1 10251:1 10258:2 10276:3 10278:2 10281:2 10288:1 10297:6 10298:2 10304:1 10311:2 10312:4 10313:1 10314:6 10320:1 10328:1 10330:4 10334:1 10355:1 10356:3 10369:1 10371:1 10374:1 10383:4 10394:1 10396:3 10401:1 10405:2 10412:1 10413:8 10417:1 10463:1 10464:1 10470:1 10475:1 10480:1 10495:2 10498:1 10499:2 10503:1 10509:1 10510:1 10524:2 10531:2 10534:1 10545:1 10549:1 10588:2 10591:1 10595:1 10604:1 10620:3 10621:1 10634:2 10635:8 10649:4 10650:7 10663:4 10666:1 10670:1 10672:1 10679:1 10684:2 10692:1 10699:4 10702:1 10727:2 10729:1 10730:1 10740:1 10742:2 10747:5 10759:2 10767:4 10774:1 10779:3 10795:1 10810:1 10811:1 10814:1 10833:1 10838:1 10839:1 10841:1 10843:2 10844:1 10846:1 10860:2 10876:1 10892:1 10894:1 10899:1 10900:1 10901:1 10904:1 10905:5 10906:1 10907:1 10926:1 10931:1 10941:1 10945:2 10959:2 10961:1 10965:1 10970:1 10971:1 10975:1 10996:2 11019:1 11021:4 11029:2 11032:1 11039:2 11047:1 11054:1 11073:1 11080:1 11081:5 11112:1 11116:3 11118:6 11120:1 11122:3 11134:1 11147:1 11169:1 11172:1 11180:1 11186:2 11198:1 11200:1 11218:3 11232:1 11238:1 11242:1 11245:1 11248:5 11259:1 11261:4 11263:1 11277:2 11278:3 11280:2 11286:1 11296:1 11297:1 11299:1 11315:3 11322:1 11328:4 11335:2 11336:10 11337:1 11348:1 11349:1 11354:1 11355:1 11358:1 11359:1 11367:1 11368:3 11370:1 11371:1 11372:7 11373:1 11374:1 11381:1 11383:7 11392:1 11394:1 11399:1 11401:1 11406:11 11409:1 11422:2 11431:5 11435:2 11441:2 11446:1 11455:1 11475:1 11476:1 11486:4 11492:1 11496:1 11498:1 11499:3 11529:1 11530:1 11534:1 11544:3 11557:1 11563:1 11566:3 11575:1 11598:1 11615:2 11616:2 11633:2 11649:3 11651:1 11658:1 11683:1 11691:5 11734:3 11737:2 11749:1 11754:1 11759:1 11761:1 11764:1 11765:1 11766:1 11768:1 11786:4 11787:4 11788:24 11793:1 11797:8 11806:1 11812:1 11813:2 11814:1 11823:3 11837:3 11839:1 11859:1 11879:2 11900:1 11904:1 11930:3 11938:9 11939:2 11955:1 11958:4 11959:1 11963:2 11968:2 11984:1 12005:1 12016:4 12019:1 12033:1 12040:1 12047:1 12054:2 12058:1 12064:1 12069:1 12081:2 12115:2 12134:5 12148:1 12155:2 12187:1 12189:3 12196:1 12198:1 12202:1 12203:1 12218:1 12236:2 12257:1 12258:1 12264:1 12266:1 12275:1 12290:1 12323:6 12336:1 12339:1 12341:1 12345:1 12348:1 12357:1 12369:2 12370:4 12391:2 12394:3 12415:1 12420:1 12451:1 12456:2 12472:1 12485:1 12505:1 12510:2 12516:1 12524:1 12525:3 12550:1 12566:2 12599:1 12600:2 12651:1 12652:1 12653:1 12671:5 12673:1 12684:1 12691:1 12692:3 12698:1 12702:1 12710:2 12712:1 12715:1 12719:1 12722:1 12733:2 12741:1 12744:3 12748:1 12756:2 12765:1 12768:1 12769:2 12771:2 12776:1 12792:1 12798:1 12799:2 12829:1 12834:1 12835:2 12837:1 12870:3 12872:3 12874:1 12875:1 12881:1 12882:2 12883:1 12884:9 12886:2 12889:4 12891:1 12892:1 12896:1 12900:2 12904:3 12915:3 12919:1 12924:2 12928:4 12934:1 12954:7 12956:1 12960:1 12964:1 12966:1 12968:1 12970:3 12979:1 12980:2 12997:2 13012:1 13019:2 13023:1 13033:3 13034:1 13048:1 13049:6 13052:1 13053:2 13062:1 13065:1 13071:1 13084:2 13095:3 13114:1 13117:1 13119:2 13122:7 13131:1 13136:1 13148:2 13149:3 13150:2 13151:1 13152:1 13160:4 13174:3 13177:1 13178:2 13190:1 13201:2 13221:1 13237:2 13238:1 13243:1 13249:1 13250:2 13251:2 13252:2 13254:2 13257:1 13270:1 13277:1 13278:1 13281:1 13282:1 13283:2 13296:1 13301:2 13302:1 13307:1 13310:1 13313:1 13314:2 13318:3 13319:1 13330:2 13334:1 13335:1 13352:1 13365:9 13370:2 13371:1 13377:1 13380:1 13411:1 13416:1 13418:1 13434:2 13435:1 13436:2 13439:2 13457:1 13458:2 13461:2 13462:1 13467:5 13493:1 13510:1 13515:1 13518:1 13529:2 13530:4 13535:3 13536:8 13543:2 13560:2 13565:3 13578:1 13589:2 13604:1 13610:2 13612:1 13615:2 13616:1 13620:1 13628:1 13629:2 13633:2 13636:1 13656:1 13666:1 13679:1 13722:1 13723:2 13728:1 13730:1 13735:2 13750:2 13769:1 13782:1 13795:1 13829:1 13842:1 13854:1 13855:1 13864:2 13880:1 13881:1 13894:1 13898:3 13907:2 13908:1 13917:1 13920:1 13924:5 13926:1 13927:1 13935:1 13937:1 13951:2 13952:1 13956:1 13970:1 13971:1 13972:1 13985:1 13989:1 14009:2 14013:1 14035:2 14051:1 14065:1 14070:2 14076:1 14087:1 14091:2 14093:2 14099:1 14106:5 14126:2 14135:1 14142:1 14145:1 14154:2 14158:1 14183:1 14197:1 14225:1 14227:4 14238:1 14249:1 14250:1 14255:1 14271:1 14303:1 14304:1 14368:1 14370:1 14378:1 14385:1 14401:2 14434:1 14437:4 14443:4 14445:2 14447:1 14450:1 14451:1 14470:2 14475:1 14496:3 14505:1 14516:1 14522:1 14541:1 14545:2 14546:1 14551:4 14566:1 14577:1 14588:1 14592:2 14596:1 14599:1 14601:1 14624:1 14633:2 14656:1 14662:1 14665:3 14667:1 14670:1 14671:1 14678:1 14709:1 14710:1 14747:1 14756:2 14760:3 14761:4 14765:1 14766:1 14792:5 14793:1 14796:1 14811:1 14826:6 14828:2 14832:1 14835:1 14840:1 14855:1 14867:1 14870:1 14877:1 14879:1 14887:4 14894:3 14898:2 14906:2 14909:1 14942:1 14951:2 14968:1 14970:1 14978:1 14992:1 15006:1 15007:1 15009:1 15011:1 15020:1 15021:1 15023:1 15033:4 15036:1 15058:11 15063:8 15067:1 15073:1 15099:2 15112:1 15113:2 15118:2 15131:4 15134:1 15154:1 15158:1 15164:1 15165:1 15171:1 15183:1 15190:3 15193:1 15194:1 15201:8 15210:3 15211:1 15221:1 15222:1 15224:2 15230:1 15232:4 15234:1 15236:1 15238:1 15239:6 15243:2 15244:8 15245:1 15250:2 15254:2 15255:1 15263:1 15264:6 15269:4 15300:1 15302:1 15337:1 15345:1 15347:2 15349:2 15355:1 15356:2 15361:2 15366:6 15375:1 15388:2 15401:1 15403:2 15421:2 15425:3 15442:1 15446:2 15461:1 15465:1 15472:1 15478:1 15488:1 15496:3 15500:1 15502:8 15513:2 15529:3 15538:1 15540:4 15554:1 15557:2 15566:24 15570:1 15587:1 15596:6 15597:1 15599:2 15620:2 15637:70 15665:3 15669:1 15697:1 15708:1 15731:1 15733:1 15734:3 15756:1 15758:1 15759:1 15761:1 15763:2 15765:1 15766:2 15773:3 15774:6 15776:1 15780:3 15783:1 15784:2 15791:2 15797:1 15810:1 15812:1 15815:2 15822:1 15831:1 15832:1 15833:1 15855:1 15857:1 15869:1 15876:1 15896:1 15902:5 15919:1 15934:2 15938:4 15953:1 15961:2 15969:2 15974:1 15979:1 15988:1 16004:1 16026:1 16035:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16086:1 16093:1 16103:1 16107:2 16108:1 16116:1 16130:1 16133:1 16137:2 16146:3 16151:5 16153:1 16156:1 16165:2 16167:2 16168:3 16176:1 16187:3 16190:1 16199:3 16210:1 16215:1 16217:3 16219:1 16220:2 16222:1 16228:1 16230:1 16237:1 16249:3 16254:1 16255:13 16262:1 16264:2 16289:2 16300:2 16310:1 16311:3 16338:1 16343:1 16348:2 16365:1 16366:3 16369:5 16373:1 16375:3 16378:1 16380:2 16390:1 16395:1 16407:1 16416:1 16419:1 16421:1 16426:2 16427:2 16446:2 16450:2 16453:1 16455:2 16459:1 16472:1 16486:1 16491:1 16492:3 16500:1 16501:1 16517:1 16533:1 16540:1 16558:1 16562:1 16569:2 16571:1 16582:1 16587:1 16588:2 16589:1 16590:1 16601:1 16608:1 16609:1 16617:2 16623:3 16630:2 16644:1 16646:1 16649:1 16652:1 16654:3 16658:1 16666:1 16674:1 16676:1 16683:3 16690:1 16704:2 16705:1 16718:1 16721:1 16726:1 16744:2 16765:1 16766:3 16771:2 16777:1 16780:1 16796:4 16845:2 16847:1 16851:1 16860:1 16866:1 16876:1 16877:1 16879:1 16896:7 16899:2 16900:1 16902:2 16904:1 16905:1 16911:1 16915:2 16916:3 16920:3 16921:1 16934:1 16936:2 16940:2 16949:1 16953:1 16954:1 16964:2 16982:1 16987:1 16988:1 16990:1 16993:1 17001:1 17010:1 17018:2 17019:3 17055:1 17058:2 17061:1 17077:1 17082:1 17098:1 17102:2 17103:3 17113:2 17116:1 17117:1 17128:1 17130:1 17142:3 17187:3 17193:1 17194:1 17196:2 17199:2 17201:2 17202:1 17213:1 17219:1 17220:14 17223:2 17234:1 17235:1 17244:1 17248:2 17275:1 17285:2 17287:1 17292:2 17294:1 17310:1 17311:2 17317:3 17320:1 17334:2 17338:2 17341:1 17354:1 17361:1 17363:1 17369:1 17376:1 17392:1 17396:4 17403:2 17404:4 17417:2 17446:2 17448:1 17479:1 17481:1 17501:1 17513:1 17529:3 17531:2 17540:1 17568:1 17571:1 17578:1 17584:1 17587:1 17595:1 17599:3 17609:2 17616:1 17640:1 17641:1 17646:2 17657:1 17661:1 17666:1 17667:4 17673:1 17685:1 17714:4 17718:1 17723:2 17750:1 17752:1 17754:4 17760:1 17774:5 17779:1 17782:1 17785:3 17787:1 17805:2 17806:1 17811:1 17821:1 17823:2 17828:1 17850:1 17856:1 17873:1 17874:1 17900:2 17912:18 17916:1 17923:3 17930:1 17946:1 17949:1 17961:1 17968:1 17969:1 17970:1 17978:1 17979:2 17980:1 17984:2 17986:1 17989:2 17998:1 18003:1 18010:1 18013:2 18022:1 18027:1 18031:7 18035:1 18037:2 18038:1 18052:4 18057:2 18065:2 18066:1 18071:2 18095:1 18101:4056 18105:1 18118:5 18123:2 18149:1 18157:1 18163:2 18171:1 18178:3 18179:2 18188:2 18214:1 18215:3 18216:1 18226:1 18234:2 18245:2 18262:1 18267:1 18271:6 18272:2 18298:3 18306:1 18309:1 18311:3 18314:1 18315:1 18331:1 18333:1 18346:1 18361:1 18362:1 18366:1 18381:1 18408:1 18410:5 18415:1 18423:2 18429:1 18434:1 18439:1 18444:1 18458:1 18462:3 18472:1 18481:2 18491:1 18493:1 18505:1 18512:1 18514:1 18515:1 18524:1 18557:1 18567:1 18569:2 18572:1 18575:1 18584:4 18599:2 18601:1 18607:1 18618:1 18623:2 18631:1 18667:5 18669:1 18677:1 18679:4 18725:1 18731:1 18761:1 18780:1 18786:2 18796:1 18799:2 18801:1 18804:2 18813:4 18825:2 18829:1 18830:4 18834:1 18845:1 18847:5 18859:19 18876:1 18877:1 18878:1 18880:3 18881:1 18883:25 18892:2 18910:1 18911:6 18912:1 18914:1 18931:1 18936:2 18947:1 18950:6 18968:1 18972:3 18976:1 18978:6 18980:2 18983:1 18987:1 18997:2 18998:1 19000:1 19005:1 19028:2 19034:3 19039:1 19055:1 19067:3 19099:1 19103:1 19106:1 19108:2 19134:1 19148:1 19153:1 19172:1 19176:1 19179:1 19187:1 19206:1 19209:13 19212:1 19220:1 19231:3 19253:2 19254:2 19256:1 19279:1 19291:1 19299:1 19305:1 19307:8 19326:1 19329:1 19347:2 19357:1 19359:1 19360:1 19378:1 19383:1 19390:1 19391:1 19394:2 19399:1 19401:2 19402:1 19409:2 19430:1 19436:1 19459:4 19464:1 19470:1 19472:1 19488:3 19489:1 19514:3 19523:1 19525:1 19538:1 19539:1 19543:2 19545:5 19565:2 19569:1 19574:2 19582:2 19584:1 19586:1 19590:1 19591:8 19612:1 19638:1 19644:1 19663:15 19669:2 19677:2 19679:3 19694:1 19695:1 19706:1 19707:15 19724:1 19737:1 19747:1 19756:1 19774:1 19786:2 19791:1 19813:1 19818:1 19821:1 19822:1 19833:2 19853:5 19854:1 19856:2 19865:1 19870:1 19900:2 19910:1 19918:1 19945:5 19955:1 19957:3 19968:1 19979:1 19986:1 19998:1 20006:1 20022:1 20024:2 20044:2 20078:3 20086:1 20095:1 20099:1 20109:1 20117:1 20119:1 20120:2 20129:1 20131:1 20143:1 20145:1 20148:2 20151:1 20169:1 20171:1 20177:1 20193:1 20210:4 20217:1 20224:1 20227:2 20230:1 20231:1 20232:1 20235:2 20236:1 20240:1 20245:14 20248:1 20252:2 20253:1 20257:3 20258:1 20260:5 20261:1 20279:3 20285:3 20289:5 20299:1 20322:5 20325:1 20327:1 20335:1 20336:1 20337:1 20339:1 20352:1 20364:2 20365:1 20366:1 20375:2 20378:1 20396:2 20401:1 20402:1 20413:2 20418:1 20422:10 20429:1 20432:2 20438:1 20439:1 20448:1 20453:2 20467:1 20490:1 20496:1 20499:1 20502:1 20505:1 20507:1 20518:1 20524:3 20528:1 20529:1 20531:1 20533:1 20538:1 20546:4 20559:1 20561:1 20563:1 20567:2 20569:1 20571:1 20572:1 20579:1 20583:1 20585:1 20620:1 20628:3 20647:1 20672:1 20678:1 20679:1 20684:2 20708:1 20712:1 20716:1 20718:4 20720:2 20723:4 20733:5 20741:1 20743:1 20745:1 20773:1 20777:1 20782:1 20786:2 20787:1 20798:1 20804:1 20808:1 20809:1 20810:1 20812:1 20814:2 20815:2 20822:1 20827:1 20828:1 20838:2 20839:1 20840:8 20843:3 20856:2 20860:1 20861:1 20863:1 20870:1 20874:1 20880:1 20888:1 20921:1 20924:2 20926:1 20927:2 20934:3 20941:2 20951:1 20952:1 20953:1 20971:1 20973:4 20976:19 20978:1 20990:1 20992:1 20998:3 20999:2 21003:1 21010:1 21014:1 21019:1 21024:1 21026:3 21037:5 21049:1 21053:1 21080:3 21082:1 21084:3 21086:1 21090:1 21096:5 21108:1 21120:1 21125:1 21140:1 21141:1 21142:4 21150:2 21156:3 21161:1 21209:1 21214:1 21231:4 21237:2 21238:1 21239:12 21241:3 21245:2 21252:2 21254:1 21255:1 21266:4 21267:3 21269:2 21271:1 21272:1 21276:1 21279:2 21282:2 21283:1 21291:1 21292:1 21293:1 21297:1 21302:1 21306:2 21309:2 21314:1 21318:1 21334:2 21369:1 21379:5 21380:1 21403:1 21407:1 21412:1 21413:2 21423:2 21425:1 21428:1 21435:1 21439:1 21444:1 21446:4 21457:1 21464:1 21467:1 21474:1 21515:24 21516:2 21518:1 21528:1 21537:1 21548:1 21556:2 21569:1 21575:1 21583:1 21594:4 21596:1 21609:1 21611:1 21613:2 21620:1 21621:1 21623:1 21628:2 21637:1 21642:2 21644:1 21645:1 21648:9 21654:1 21664:3 21668:4 21679:2 21697:1 21704:1 21706:2 21712:1 21715:1 21718:2 21732:1 21735:1 21738:1 21741:2 21743:2 21745:2 21753:1 21754:1 21766:2 21768:1 21769:1 21781:12 21794:4 21802:1 21807:4 21814:1 21819:1 21828:2 21840:1 21850:1 21856:1 21860:2 21873:1 21874:1 21895:1 21914:1 21929:1 21935:1 21941:3 21946:1 21949:1 21959:1 21967:1 21972:2 21985:1 21989:1 22001:1 22012:1 22015:1 22021:1 22032:1 22038:1 22040:1 22041:2 22042:2 22049:15 22051:2 22078:2 22082:2 22090:1 22099:1 22115:1 22120:1 22130:3 22132:1 22133:2 22136:1 22139:1 22154:1 22165:3 22180:1 22185:1 22188:5 22192:1 22222:1 22223:1 22225:1 22240:1 22241:1 22246:1 22248:1 22264:2 22270:1 22279:1 22283:1 22284:1 22290:1 22295:2 22300:1 22310:1 22315:1 22322:1 22329:1 22333:1 22344:1 22346:1 22348:2 22355:2 22361:1 22374:1 22414:1 22423:1 22424:1 22425:7 22431:1 22432:1 22436:1 22448:1 22452:1 22453:1 22463:2 22466:1 22471:1 22478:1 22481:2 22496:1 22506:1 22508:1 22530:2 22534:3 22538:1 22548:1 22551:2 22556:1 22564:2 22566:1 22568:4 22571:1 22572:1 22587:1 22593:1 22607:2 22619:1 22627:4 22628:5 22633:1 22634:1 22646:6 22654:1 22657:1 22665:1 22667:1 22670:1 22672:4 22677:3 22681:1 22683:1 22699:2 22706:1 22707:3 22708:1 22720:1 22739:1 22748:6 22755:1 22757:29 22759:1 22808:1 22837:2 22844:1 22846:2 22847:1 22849:1 22856:1 22872:1 22889:1 22899:1 22904:1 22916:3 22922:1 22924:2 22925:1 22937:1 22949:1 22951:1 22957:1 22961:1 22965:2 22983:1 22986:1 22999:1 23000:1 23008:2 23019:1 23022:1 23024:2 23028:1 23059:1 23062:2 23076:1 23077:2 23079:1 23089:1 23104:6 23109:1 23112:2 23117:1 23122:1 23126:1 23152:1 23159:1 23175:1 23177:1 23192:3 23207:3 23215:2 23222:1 23224:2 23227:1 23228:1 23229:2 23246:1 23266:1 23278:1 23284:1 23300:1 23306:1 23313:1 23321:1 23328:1 23334:2 23345:1 23360:1 23362:1 23381:1 23389:1 23391:1 23396:1 23397:10 23405:1 23412:1 23413:1 23417:1 23421:3 23434:2 23445:1 23449:1 23470:1 23492:1 23494:1 23502:1 23510:4 23520:1 23521:1 23558:1 23568:5 23595:1 23602:1 23633:2 23643:1 23646:1 23655:1 23656:1 23662:1 23665:1 23666:3 23667:5 23668:1 23689:1 23697:1 23704:2 23707:3 23712:1 23716:4 23722:2 23726:1 23752:2 23753:2 23766:3 23780:1 23788:1 23791:2 23802:2 23808:1 23820:1 23841:1 23844:1 23860:1 23867:4 23870:1 23871:1 23879:3 23883:1 23885:1 23890:1 23899:1 23900:1 23908:1 23916:1 23921:1 23933:1 23934:1 23937:1 23939:1 23944:1 23945:1 23954:1 23960:1 23971:1 23980:1 23982:2 23998:1 24003:2 24006:3 24011:1 24013:1 24020:1 24027:1 24036:1 24040:1 24050:1 24052:1 24057:1 24059:1 24081:1 24083:1 24086:1 24099:1 24106:2 24144:3 24155:5 24173:1 24179:1 24191:1 24208:1 24214:1 24224:1 24230:2 24231:1 24234:1 24236:1 24241:1 24242:7 24252:1 24269:3 24274:1 24275:1 24290:1 24306:2 24325:1 24331:1 24339:5 24359:1 24360:1 24363:1 24367:1 24396:1 24404:2 24406:4 24412:2 24417:1 24420:1 24434:9 24436:1 24457:1 24466:1 24468:1 24473:3 24476:7 24478:1 24483:1 24484:1 24486:1 24488:5 24491:1 24492:1 24506:1 24527:1 24533:1 24534:1 24540:1 24567:1 24572:1 24600:1 24611:1 24614:1 24620:1 24634:1 24636:1 24637:4 24640:1 24641:3 24644:8 24647:3 24653:1 24659:1 24665:2 24678:1 24692:4 24694:1 24697:2 24702:1 24718:2 24728:1 24730:6 24731:1 24740:2 24742:2 24751:4 24760:7 24761:2 24772:2 24782:1 24784:1 24788:1 24789:1 24797:1 24817:2 24823:2 24838:1 24841:6 24843:1 24847:1 24854:1 24855:2 24873:2 24883:1 24897:2 24904:1 24915:4 24928:1 24942:5 24946:1 24967:4 24969:4 24973:1 24979:1 24990:2 24999:1 25018:1 25051:1 25053:1 25056:1 25061:1 25064:1 25071:1 25081:1 25085:1 25092:4 25109:1 25117:1 25121:1 25131:1 25135:1 25138:2 25140:1 25143:1 25153:1 25157:2 25160:3 25173:1 25175:1 25179:3 25191:1 25194:1 25200:1 25217:2 25219:1 25228:1 25230:2 25235:1 25242:1 25256:6 25261:1 25262:1 25264:1 25265:1 25268:2 25272:1 25276:1 25277:1 25283:1 25286:1 25289:3 25323:2 25326:1 25332:2 25342:1 25348:2 25358:1 25360:1 25379:1 25385:2 25387:4 25402:1 25410:19 25414:1 25450:1 25451:1 25455:1 25478:1 25486:1 25494:1 25514:1 25525:1 25530:1 25537:1 25549:5 25555:1 25560:1 25569:1 25571:2 25586:1 25641:2 25660:3 25681:5 25683:2 25684:1 25685:1 25688:1 25695:1 25696:2 25698:1 25699:4 25700:10 25703:2 25705:1 25722:1 25735:1 25742:2 25751:3 25773:1 25779:1 25782:1 25787:1 25793:4 25801:1 25805:1 25819:1 25826:4 25843:1 25844:1 25852:1 25856:1 25861:2 25866:1 25867:1 25879:1 25901:3 25905:1 25910:2 25916:1 25944:2 25955:1 25957:1 25967:1 25975:2 26008:1 26023:1 26032:1 26042:1 26051:1 26067:1 26069:2 26075:1 26104:3 26107:1 26110:2 26120:2 26137:1 26151:1 26158:1 26189:1 26196:1 26198:1 26201:1 26216:2 26218:2 26228:4 26254:1 26269:1 26272:2 26281:1 26285:2 26288:1 26289:6 26299:1 26301:1 26303:10 26314:1 26319:1 26331:2 26332:1 26361:1 26383:1 26389:1 26397:29 26398:1 26400:3 26401:1 26410:1 26420:1 26430:5 26447:2 26450:1 26452:1 26453:1 26454:1 26495:1 26503:3 26505:3 26509:4 26510:2 26514:1 26519:1 26544:2 26546:1 26548:1 26549:1 26555:2 26557:3 26559:2 26562:2 26563:1 26569:1 26570:1 26571:1 26573:1 26576:3 26581:1 26588:3 26590:1 26592:1 26612:2 26624:1 26638:1 26641:2 26651:1 26664:2 26666:1 26686:2 26689:1 26690:1 26705:1 26711:1 26715:3 26716:2 26725:1 26765:2 26766:1 26784:3 26785:2 26789:2 26792:1 26794:1 26797:1 26799:1 26807:4 26808:1 26810:2 26829:2 26840:1 26843:1 26863:1 26869:15 26874:1 26879:1 26889:1 26894:1 26909:1 26919:1 26951:1 26954:4 26963:4 26977:1 26986:2 26989:1 26993:1 27017:1 27025:1 27035:1 27038:4 27044:1 27058:1 27071:2 27074:1 27075:2 27080:1 27083:1 27108:5 27111:5 27134:1 27135:1 27143:3 27145:1 27157:1 27162:1 27171:1 27177:1 27213:1 27216:1 27217:1 27228:4 27231:1 27236:1 27239:1 27248:1 27256:3 27259:1 27271:1 27279:2 27280:29 27281:2 27282:1 27283:3 27287:4 27289:1 27290:1 27300:1 27315:1 27316:13 27326:1 27329:1 27337:2 27364:1 27368:2 27372:1 27373:2 27381:1 27383:2 27394:1 27401:1 27405:7 27414:5 27419:2 27447:4 27448:1 27450:1 27452:2 27458:1 27462:1 27465:1 27477:1 27492:1 27495:1 27496:1 27517:1 27519:1 27526:1 27549:1 27550:1 27558:2 27561:1 27562:1 27590:2 27591:2 27594:1 27611:1 27619:1 27620:1 27627:1 27629:1 27633:2 27636:1 27638:4 27641:3 27644:1 27658:1 27661:2 27666:1 27676:1 27692:10 27695:1 27697:1 27705:4 27708:1 27743:1 27745:1 27749:1 27768:1 27772:4 27773:9 27775:2 27776:1 27780:1 27783:1 27799:2 27804:2 27805:3 27814:1 27818:1 27828:2 27834:2 27835:1 27842:1 27864:3 27879:1 27895:1 27914:3 27920:1 27922:2 27926:3 27927:1 27944:1 27951:2 27961:2 27963:5 27968:1 27971:1 27977:5 27984:1 27994:2 28018:1 28026:1 28046:2 28053:1 28067:1 28081:1 28106:3 28108:2 28122:1 28138:4 28154:1 28169:2 28172:1 28176:1 28185:1 28210:1 28217:2 28222:1 28229:3 28237:1 28265:1 28283:1 28292:3 28295:1 28297:1 28300:1 28301:1 28314:1 28326:2 28336:1 28340:1 28341:1 28343:8 28344:1 28352:2 28364:2 28370:1 28378:1 28380:2 28391:1 28395:3 28397:2 28412:1 28420:1 28430:5 28437:2 28442:1 28496:1 28499:1 28503:1 28504:1 28507:1 28509:1 28511:5 28516:1 28523:1 28530:1 28554:1 28560:2 28566:1 28569:1 28574:1 28575:1 28576:2 28579:1 28587:2 28618:1 28624:1 28627:1 28629:1 16 6:1 10:1 26:1 27:2 29:1 44:1 58:1 69:1 74:1 78:1 82:1 83:5 100:1 106:1 119:1 123:1 137:1 147:1 153:1 162:1 165:5 172:1 175:2 176:1 201:1 206:2 211:4 213:1 230:1 235:4 239:1 254:2 283:1 286:1 296:4 300:1 318:1 327:1 336:3 337:3 338:1 364:2 372:1 375:1 382:1 399:1 407:2 418:1 442:3 445:2 449:2 460:1 471:1 478:1 489:2 504:1 507:1 509:1 514:1 523:2 526:2 552:1 553:1 567:5 603:1 614:1 617:4 621:1 627:4 634:1 648:3 654:2 661:4 665:1 671:1 676:1 684:1 685:1 688:1 699:1 707:1 713:1 724:1 735:1 747:2 757:2 768:1 772:2 787:1 803:1 805:1 809:1 813:1 824:1 826:1 828:2 843:5 852:1 854:1 856:3 861:2 865:1 872:2 893:1 902:2 907:1 910:3 913:1 915:1 924:2 933:2 934:2 939:3 940:1 941:3 942:6 943:2 944:2 947:2 952:1 963:1 966:2 978:1 980:1 982:1 983:1 985:6 987:2 1007:1 1010:1 1015:2 1020:2 1052:1 1059:2 1062:1 1081:1 1086:1 1089:1 1108:2 1116:1 1125:2 1143:1 1150:2 1169:1 1170:1 1171:3 1174:1 1175:2 1184:2 1187:1 1192:2 1200:1 1201:4 1217:2 1222:2 1224:2 1227:1 1237:2 1239:3 1259:1 1263:1 1267:1 1269:2 1275:5 1278:1 1279:1 1289:7 1290:2 1292:1 1293:1 1302:3 1306:1 1316:1 1319:1 1321:1 1331:2 1333:1 1335:4 1346:2 1356:1 1375:2 1379:1 1390:1 1391:1 1404:1 1407:1 1410:1 1413:2 1415:2 1438:3 1440:1 1446:1 1448:1 1451:1 1453:2 1464:1 1465:1 1475:1 1484:7 1493:1 1497:1 1501:8 1513:3 1521:2 1522:1 1525:4 1531:1 1535:1 1540:1 1541:1 1542:1 1544:5 1560:1 1569:1 1571:1 1572:10 1583:1 1587:3 1589:2 1590:2 1591:2 1594:1 1595:1 1596:1 1601:2 1603:1 1616:1 1621:3 1628:1 1632:5 1637:5 1640:2 1641:1 1653:1 1654:2 1657:2 1672:5 1675:3 1678:1 1683:1 1684:1 1692:1 1698:2 1702:1 1706:1 1722:1 1731:1 1733:1 1743:2 1745:1 1746:1 1747:1 1751:1 1758:4 1763:1 1766:6 1779:1 1784:2 1789:1 1790:1 1809:1 1810:1 1816:1 1820:1 1824:1 1825:1 1831:1 1836:2 1837:2 1844:1 1849:1 1853:1 1860:1 1861:1 1865:1 1868:1 1877:4 1882:1 1883:1 1884:1 1889:2 1895:1 1901:1 1903:2 1904:5 1908:1 1910:1 1912:1 1914:1 1921:1 1929:1 1930:4 1931:1 1933:1 1950:1 1953:1 1958:1 1978:1 1986:1 2001:1 2006:1 2015:2 2017:2 2019:2 2020:2 2022:1 2023:3 2035:1 2044:1 2049:1 2054:2 2072:1 2074:4 2075:1 2076:2 2077:1 2078:1 2092:1 2101:1 2108:4 2126:2 2133:1 2140:1 2156:1 2158:1 2164:1 2170:1 2172:1 2174:3 2188:1 2191:1 2192:1 2204:1 2209:1 2227:2 2228:1 2229:1 2230:2 2232:5 2236:3 2237:1 2238:6 2240:1 2241:1 2244:6 2245:1 2246:4 2248:2 2251:1 2253:1 2256:7 2259:3 2260:8 2265:1 2267:1 2272:1 2273:2 2277:1 2279:2 2283:1 2286:1 2290:1 2303:1 2308:1 2312:1 2321:1 2325:1 2327:2 2331:1 2334:1 2335:1 2336:3 2340:1 2346:1 2354:1 2359:2 2361:1 2374:1 2379:1 2391:1 2413:6 2423:1 2437:1 2443:2 2448:4 2474:1 2483:1 2486:1 2488:1 2495:1 2524:1 2526:2 2531:1 2556:1 2582:2 2587:1 2595:5 2596:1 2602:1 2607:5 2615:1 2622:2 2623:1 2630:1 2633:1 2635:3 2637:12 2651:1 2653:1 2659:2 2662:3 2668:1 2670:1 2674:1 2675:1 2677:1 2684:4 2689:1 2690:1 2695:1 2713:2 2714:1 2721:2 2731:2 2738:2 2739:1 2741:5 2747:4 2755:1 2792:5 2795:1 2798:1 2799:1 2804:2 2806:1 2818:16 2827:1 2828:7 2837:1 2848:1 2857:2 2869:1 2875:1 2885:32 2894:1 2899:2 2903:1 2907:1 2918:1 2919:1 2920:1 2936:1 2948:1 2956:1 2962:2 2970:1 2981:1 2986:2 2987:1 2988:1 2989:2 3006:1 3028:1 3037:3 3041:1 3053:3 3059:1 3062:2 3070:1 3085:1 3105:1 3106:1 3107:1 3115:2 3116:1 3117:1 3122:1 3129:2 3133:4 3141:2 3151:13 3153:3 3166:1 3168:1 3173:1 3181:1 3191:2 3199:1 3208:1 3218:1 3219:7 3238:1 3254:1 3271:1 3281:1 3283:1 3293:1 3301:1 3303:2 3319:4 3327:1 3330:1 3340:1 3348:1 3357:4 3361:3 3369:2 3373:1 3376:1 3377:1 3388:5 3417:1 3423:1 3426:1 3427:3 3430:1 3439:1 3441:1 3442:1 3453:3 3462:1 3491:1 3502:1 3505:1 3511:1 3512:5 3513:2 3519:3 3521:1 3522:2 3535:2 3543:1 3550:1 3569:1 3588:1 3598:1 3603:2 3606:4 3608:1 3625:1 3642:1 3643:1 3651:4 3652:47 3659:1 3667:1 3674:1 3677:2 3678:1 3679:9 3681:1 3686:1 3687:2 3688:30 3689:2 3691:7 3694:1 3697:2 3706:4 3709:1 3718:3 3721:4 3724:3 3725:4 3740:2 3742:1 3743:2 3755:1 3769:2 3776:1 3777:3 3781:1 3783:1 3788:1 3805:1 3808:1 3811:2 3813:1 3815:1 3816:3 3824:1 3826:3 3838:2 3840:1 3844:1 3853:1 3861:1 3863:1 3866:2 3873:1 3889:1 3891:1 3900:1 3901:2 3904:1 3905:1 3911:2 3915:2 3918:1 3920:1 3925:5 3939:5 3953:1 3985:1 3993:1 3995:1 4013:1 4022:1 4031:1 4036:1 4052:1 4056:3 4062:1 4086:1 4090:1 4101:2 4106:2 4107:2 4109:1 4110:1 4113:1 4137:1 4143:2 4152:1 4153:1 4156:1 4169:3 4184:1 4199:1 4209:2 4221:1 4234:15 4250:1 4251:1 4269:1 4277:1 4302:3 4306:1 4313:5 4322:1 4325:2 4335:2 4347:7 4351:1 4362:1 4372:1 4380:2 4383:1 4386:1 4391:1 4393:1 4435:1 4448:1 4449:2 4470:1 4474:1 4484:1 4489:2 4499:3 4513:1 4514:1 4515:2 4519:1 4522:2 4533:1 4543:4 4554:1 4557:1 4563:4 4582:1 4584:2 4585:1 4586:1 4594:1 4609:1 4653:1 4654:1 4659:1 4660:2 4671:1 4685:1 4689:1 4693:2 4701:2 4742:1 4754:2 4761:1 4779:1 4782:1 4785:1 4792:17 4793:3 4804:1 4824:3 4848:1 4850:2 4860:1 4865:1 4870:1 4893:4 4896:1 4902:5 4903:1 4905:5 4925:2 4926:4 4927:8 4928:1 4929:1 4930:2 4932:1 4933:3 4935:1 4939:1 4940:25 4941:1 4943:1 4948:2 4949:3 4956:2 4957:1 4963:1 4972:2 4975:3 4979:1 4995:2 5021:1 5031:2 5045:1 5053:1 5058:1 5064:2 5120:1 5144:3 5145:3 5151:1 5152:5 5158:1 5179:1 5181:1 5190:1 5195:1 5209:1 5213:2 5214:25 5227:1 5242:1 5249:1 5250:3 5252:1 5280:4 5315:1 5317:1 5319:1 5330:1 5343:1 5355:1 5359:1 5361:2 5370:1 5375:1 5379:1 5386:1 5388:1 5390:2 5392:1 5395:1 5431:1 5433:1 5437:1 5446:1 5447:1 5448:2 5454:1 5465:4 5474:1 5479:1 5489:2 5494:1 5497:1 5502:1 5503:2 5509:1 5521:1 5523:2 5525:1 5549:1 5561:1 5562:1 5565:5 5588:2 5595:2 5604:2 5612:1 5614:1 5618:1 5620:1 5624:1 5631:1 5635:1 5643:1 5646:2 5653:1 5654:1 5656:1 5659:2 5660:1 5662:1 5674:2 5675:1 5679:1 5683:1 5697:1 5701:1 5702:1 5703:1 5707:1 5720:1 5731:1 5745:1 5766:3 5791:1 5794:5 5796:1 5800:1 5803:1 5808:1 5817:2 5828:1 5846:1 5858:1 5860:2 5894:1 5903:1 5905:1 5924:1 5931:5 5932:11 5941:1 5945:2 5966:1 5971:2 5976:1 5977:1 5980:1 6003:1 6020:1 6024:1 6026:1 6034:2 6038:1 6042:2 6043:1 6046:1 6047:1 6057:1 6073:2 6079:5 6086:1 6087:2 6088:2 6115:1 6126:1 6127:3 6129:1 6136:2 6151:6 6153:1 6157:1 6162:2 6165:1 6166:1 6168:1 6177:1 6181:1 6184:1 6194:1 6239:7 6242:2 6243:2 6244:1 6247:1 6248:1 6250:3 6251:2 6254:2 6255:3 6256:5 6262:3 6264:8 6265:1 6266:2 6267:5 6275:1 6288:3 6289:1 6298:1 6317:1 6325:3 6329:1 6341:1 6356:2 6357:1 6358:1 6385:1 6392:1 6394:1 6398:1 6404:1 6410:2 6413:1 6424:1 6446:1 6450:1 6454:1 6463:1 6494:1 6507:4 6508:1 6513:2 6523:1 6533:5 6535:2 6539:3 6547:1 6550:1 6557:1 6558:1 6566:2 6576:1 6580:1 6582:3 6585:1 6586:2 6598:2 6603:1 6604:1 6606:1 6615:1 6639:1 6647:1 6657:1 6661:1 6665:1 6670:1 6677:2 6679:3 6684:3 6685:2 6687:1 6695:3 6699:2 6704:6 6711:3 6718:2 6731:1 6736:1 6739:3 6745:1 6767:1 6780:1 6783:2 6789:1 6791:1 6795:1 6799:2 6803:1 6819:3 6828:1 6831:1 6835:1 6857:2 6860:1 6876:3 6893:1 6896:2 6907:1 6909:1 6930:1 6954:2 6970:1 6973:2 6974:1 6981:1 6982:2 6996:1 7000:5 7003:2 7008:1 7010:3 7012:1 7015:1 7016:1 7022:1 7026:1 7027:1 7036:1 7049:1 7080:2 7126:1 7134:1 7143:1 7145:1 7151:1 7153:1 7180:1 7196:2 7204:1 7213:1 7221:5 7267:1 7269:1 7275:4 7290:2 7297:1 7307:5 7313:1 7337:1 7340:1 7343:2 7352:2 7360:2 7377:1 7378:2 7387:2 7406:1 7411:1 7415:1 7419:1 7420:2 7430:1 7433:1 7437:5 7446:1 7466:1 7471:1 7477:4 7478:6 7479:3 7496:1 7499:2 7500:1 7502:2 7505:1 7512:1 7530:1 7531:2 7544:1 7547:1 7548:52 7549:1 7550:1 7555:2 7567:16 7568:28 7576:1 7578:1 7579:1 7582:1 7586:1 7588:1 7590:1 7595:1 7615:1 7616:7 7638:1 7639:1 7647:1 7648:1 7653:1 7668:1 7672:2 7689:4 7705:1 7742:4 7746:7 7750:1 7762:1 7780:1 7786:1 7788:5 7796:1 7802:1 7805:1 7806:1 7826:1 7837:1 7851:1 7858:1 7862:1 7910:4 7914:1 7920:2 7921:1 7925:1 7926:1 7928:8 7936:3 7942:1 7951:1 7960:2 7973:1 7977:2 7983:1 7998:1 7999:1 8006:27 8013:1 8018:1 8026:1 8031:2 8037:2 8039:1 8043:1 8049:1 8063:2 8092:1 8098:1 8107:2 8108:1 8116:1 8127:2 8139:1 8140:1 8154:1 8167:1 8170:3 8176:5 8181:3 8194:2 8196:2 8199:4 8213:2 8214:1 8215:2 8220:1 8231:1 8233:2 8241:2 8251:1 8260:2 8263:2 8268:1 8269:1 8270:1 8274:1 8276:1 8277:1 8294:2 8295:1 8308:1 8319:3 8327:1 8336:1 8342:1 8345:1 8349:1 8354:1 8357:2 8358:1 8359:3 8360:2 8361:2 8362:5 8365:2 8366:1 8370:2 8373:2 8375:2 8381:3 8396:1 8402:3 8412:2 8420:1 8421:1 8427:1 8428:1 8440:1 8450:6 8455:2 8462:1 8465:1 8469:2 8475:3 8492:1 8496:5 8517:6 8526:1 8528:1 8531:2 8550:1 8556:1 8583:2 8595:1 8596:2 8603:1 8609:3 8616:3 8617:1 8621:1 8623:1 8624:1 8637:1 8640:2 8667:6 8668:2 8675:5 8676:1 8677:1 8678:4 8680:3 8687:3 8688:2 8706:3 8707:1 8709:2 8711:5 8725:1 8727:1 8743:3 8748:1 8763:1 8798:1 8813:1 8827:3 8835:1 8838:1 8853:2 8854:2 8863:1 8868:1 8880:1 8882:1 8895:1 8903:1 8906:1 8918:1 8919:1 8926:3 8935:1 8957:1 8962:4 8974:1 8978:1 8991:2 8994:1 8995:5 9006:2 9008:1 9015:8 9019:1 9035:2 9039:3 9042:1 9049:1 9055:1 9071:1 9078:1 9088:3 9091:1 9110:1 9111:2 9124:2 9125:1 9156:2 9160:1 9201:1 9219:1 9220:1 9236:1 9240:1 9243:1 9246:3 9252:2 9253:1 9263:1 9264:2 9268:1 9278:1 9292:2 9294:1 9298:2 9310:1 9322:1 9325:3 9328:1 9337:1 9350:1 9368:1 9375:25 9383:1 9399:1 9408:2 9420:7 9428:2 9434:1 9437:1 9448:1 9455:1 9456:2 9459:1 9462:1 9466:1 9467:2 9484:2 9492:1 9494:1 9511:14 9522:1 9526:2 9529:1 9535:3 9550:1 9569:5 9575:1 9580:1 9586:3 9587:1 9590:1 9603:1 9614:1 9620:1 9622:1 9625:1 9637:3 9651:2 9655:3 9656:1 9666:1 9690:8 9696:3 9697:4 9698:2 9706:3 9707:1 9712:1 9717:1 9726:3 9730:3 9733:1 9734:1 9739:2 9744:2 9748:4 9751:5 9753:1 9754:1 9761:1 9770:1 9774:1 9780:3 9785:4 9795:1 9797:2 9809:1 9817:2 9830:1 9848:1 9853:3 9855:1 9873:13 9875:1 9876:6 9883:1 9885:1 9888:1 9909:1 9915:1 9967:1 9971:2 9976:1 9982:1 9986:1 9998:2 10018:4 10023:1 10024:1 10035:4 10050:2 10055:1 10081:1 10084:1 10103:2 10121:1 10137:2 10149:6 10155:1 10159:1 10163:1 10173:2 10181:2 10191:1 10206:1 10209:3 10215:7 10226:1 10227:1 10230:1 10251:1 10258:2 10276:3 10278:2 10281:2 10288:1 10297:6 10298:2 10304:1 10311:2 10312:4 10313:1 10314:7 10320:1 10328:1 10330:4 10334:1 10355:1 10356:3 10369:1 10371:1 10374:1 10383:4 10394:2 10396:3 10401:1 10405:2 10412:1 10413:8 10417:1 10430:1 10434:1 10463:1 10464:1 10470:1 10475:1 10480:1 10495:2 10498:1 10499:2 10503:1 10509:1 10510:1 10524:2 10531:2 10534:1 10545:1 10549:1 10588:2 10591:1 10595:1 10604:1 10620:3 10621:1 10625:1 10634:2 10635:8 10649:4 10650:7 10663:4 10666:1 10670:1 10672:1 10679:1 10684:2 10692:1 10699:4 10702:1 10727:2 10729:1 10730:1 10740:1 10742:2 10747:5 10759:2 10767:4 10774:1 10779:3 10795:1 10810:2 10811:1 10814:1 10833:1 10838:1 10839:1 10841:1 10843:2 10844:1 10846:1 10860:2 10876:1 10892:1 10894:1 10899:1 10900:1 10901:1 10904:1 10905:5 10906:1 10907:1 10926:1 10931:1 10941:1 10945:2 10959:2 10961:1 10965:1 10970:1 10971:1 10975:1 10996:2 11019:1 11021:4 11029:2 11032:1 11039:2 11047:1 11054:2 11073:1 11080:1 11081:5 11112:1 11116:3 11118:7 11120:1 11122:3 11134:1 11147:1 11169:1 11172:1 11180:1 11186:2 11198:1 11200:1 11218:3 11232:1 11238:1 11242:1 11245:1 11248:5 11259:1 11261:5 11263:1 11277:2 11278:3 11280:2 11286:1 11296:1 11297:1 11299:1 11315:3 11322:1 11328:4 11335:2 11336:10 11337:1 11348:1 11349:1 11354:1 11355:1 11358:1 11359:1 11367:1 11368:3 11370:1 11371:1 11372:7 11373:1 11374:1 11381:1 11383:7 11392:2 11394:1 11399:2 11401:1 11406:11 11409:1 11422:2 11431:5 11435:2 11441:2 11446:1 11455:1 11475:1 11476:1 11486:4 11492:1 11496:1 11498:1 11499:3 11508:1 11529:1 11530:1 11534:1 11544:3 11557:1 11563:1 11566:3 11575:1 11598:1 11615:2 11616:2 11617:1 11633:2 11649:3 11651:1 11658:1 11683:1 11691:5 11734:3 11737:2 11749:1 11754:1 11759:1 11761:1 11764:1 11765:1 11766:1 11768:1 11786:4 11787:4 11788:25 11793:1 11797:8 11798:1 11806:1 11812:1 11813:2 11814:1 11823:3 11837:3 11839:1 11859:1 11879:2 11900:1 11904:1 11930:3 11938:9 11939:2 11955:1 11958:4 11959:1 11963:3 11968:2 11984:2 12005:1 12016:4 12019:1 12033:1 12040:1 12047:1 12054:2 12058:1 12064:1 12069:1 12081:2 12115:2 12134:5 12148:1 12155:2 12187:1 12189:3 12196:1 12198:1 12202:1 12203:1 12218:1 12236:2 12257:1 12258:1 12264:1 12266:1 12275:1 12290:1 12323:6 12336:1 12339:1 12341:1 12345:1 12348:1 12357:1 12369:2 12370:4 12391:2 12394:3 12415:1 12420:1 12451:1 12456:2 12472:1 12485:1 12505:1 12510:2 12516:1 12524:1 12525:3 12550:1 12566:2 12599:1 12600:2 12651:1 12652:1 12653:1 12671:5 12673:1 12680:1 12684:1 12691:1 12692:3 12698:1 12702:1 12707:1 12710:2 12712:1 12715:1 12719:1 12722:1 12733:2 12741:1 12744:3 12748:1 12756:2 12765:1 12768:1 12769:2 12771:2 12776:1 12792:1 12798:1 12799:2 12829:1 12834:1 12835:2 12837:1 12870:3 12872:3 12874:1 12875:1 12881:1 12882:2 12883:1 12884:9 12886:2 12889:4 12891:1 12892:1 12896:1 12900:2 12904:3 12915:3 12919:1 12924:2 12928:5 12934:1 12954:8 12956:1 12960:1 12964:1 12966:1 12968:1 12970:3 12979:1 12980:2 12997:2 13012:1 13019:2 13023:1 13030:1 13033:3 13034:1 13048:1 13049:6 13052:1 13053:2 13062:1 13065:1 13071:1 13084:2 13095:3 13114:1 13117:1 13119:2 13122:7 13131:1 13136:1 13148:2 13149:3 13150:2 13151:1 13152:1 13160:4 13174:3 13177:1 13178:2 13190:1 13201:2 13221:1 13237:2 13238:1 13243:1 13249:1 13250:2 13251:2 13252:2 13254:2 13257:1 13270:1 13273:1 13277:1 13278:1 13281:1 13282:1 13283:2 13296:1 13301:2 13302:1 13307:1 13310:1 13313:1 13314:2 13318:3 13319:1 13330:2 13334:1 13335:1 13352:1 13365:9 13370:2 13371:1 13377:1 13380:1 13411:1 13416:1 13418:1 13434:2 13435:1 13436:2 13439:2 13457:1 13458:2 13461:2 13462:1 13467:5 13493:1 13510:1 13515:1 13518:1 13529:2 13530:5 13535:3 13536:8 13543:2 13560:2 13565:3 13578:1 13589:2 13604:1 13610:2 13612:1 13615:2 13616:1 13620:1 13628:1 13629:2 13633:2 13636:1 13656:1 13666:1 13679:1 13722:1 13723:2 13727:1 13728:1 13730:1 13735:2 13750:2 13769:1 13782:1 13795:1 13829:1 13842:1 13854:1 13855:1 13864:2 13880:1 13881:1 13894:1 13898:3 13907:2 13908:1 13917:1 13920:1 13924:5 13926:1 13927:1 13935:1 13937:1 13951:2 13952:1 13956:1 13970:1 13971:1 13972:1 13985:1 13989:1 14009:2 14013:1 14035:2 14051:1 14065:1 14070:2 14076:2 14087:2 14091:2 14093:2 14099:1 14106:5 14126:2 14135:1 14142:1 14145:1 14154:2 14158:1 14183:1 14197:1 14225:1 14227:4 14238:1 14249:1 14250:1 14255:1 14271:1 14276:1 14303:1 14304:1 14368:1 14370:1 14378:1 14385:1 14401:2 14434:1 14437:4 14443:4 14445:2 14447:1 14450:1 14451:1 14470:2 14475:1 14496:3 14505:1 14516:1 14520:1 14522:1 14541:1 14545:2 14546:1 14551:4 14566:1 14577:1 14588:1 14592:2 14596:1 14599:1 14601:1 14613:1 14624:1 14633:2 14656:1 14662:1 14665:3 14667:1 14670:1 14671:1 14678:1 14709:1 14710:1 14747:1 14756:2 14760:3 14761:4 14765:1 14766:1 14792:5 14793:1 14796:1 14811:1 14826:6 14828:2 14832:1 14835:1 14840:1 14855:1 14867:1 14870:1 14877:1 14879:1 14887:4 14894:3 14895:1 14898:2 14906:2 14909:1 14942:1 14951:2 14968:1 14970:1 14978:1 14992:1 14999:1 15006:1 15007:1 15009:1 15011:1 15020:1 15021:1 15023:1 15033:4 15036:1 15058:11 15063:8 15067:1 15073:1 15099:2 15112:1 15113:2 15118:2 15131:4 15134:1 15154:1 15158:1 15164:1 15165:1 15171:1 15183:1 15190:3 15193:1 15194:1 15201:8 15210:3 15211:1 15221:1 15222:1 15224:2 15230:1 15232:4 15234:1 15236:1 15238:1 15239:6 15243:3 15244:9 15245:1 15250:2 15254:2 15255:1 15260:1 15263:1 15264:6 15269:4 15300:1 15302:1 15337:1 15345:2 15347:2 15349:2 15355:1 15356:2 15361:2 15366:6 15375:2 15388:2 15401:1 15403:2 15421:2 15425:3 15442:1 15446:2 15460:1 15461:1 15465:1 15472:1 15478:1 15488:1 15496:3 15500:1 15502:9 15513:2 15529:4 15538:1 15540:4 15554:1 15557:2 15566:25 15570:1 15587:1 15596:6 15597:1 15599:2 15620:2 15637:74 15665:3 15669:1 15697:1 15708:1 15731:1 15733:1 15734:3 15756:1 15757:1 15758:1 15759:1 15761:1 15763:2 15765:1 15766:2 15773:3 15774:6 15776:1 15779:1 15780:4 15783:1 15784:2 15791:2 15797:1 15810:1 15812:1 15815:2 15822:1 15831:1 15832:1 15833:1 15855:1 15857:1 15869:1 15876:1 15890:1 15896:1 15902:5 15919:1 15934:2 15938:5 15953:1 15961:2 15969:2 15974:1 15979:1 15988:1 16004:1 16026:1 16035:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16086:1 16087:1 16093:1 16103:1 16107:2 16108:1 16116:1 16130:1 16133:1 16137:2 16146:4 16151:5 16153:1 16156:1 16165:3 16167:2 16168:3 16176:1 16187:3 16190:1 16199:3 16210:1 16215:1 16217:3 16219:1 16220:2 16222:1 16228:1 16230:1 16237:1 16249:3 16254:1 16255:13 16262:1 16264:2 16289:2 16300:2 16310:1 16311:3 16335:1 16338:1 16343:1 16348:2 16365:1 16366:3 16369:5 16373:1 16375:3 16378:1 16379:1 16380:2 16390:1 16395:1 16407:1 16416:1 16419:1 16421:1 16426:2 16427:2 16446:2 16450:2 16453:1 16455:2 16459:1 16472:1 16486:1 16491:1 16492:3 16500:1 16501:1 16517:1 16533:1 16540:1 16558:1 16562:2 16569:2 16571:1 16582:1 16587:1 16588:2 16589:1 16590:1 16601:1 16608:1 16609:1 16617:2 16623:3 16630:2 16644:1 16646:1 16649:1 16652:1 16654:3 16658:1 16666:1 16674:1 16676:1 16683:3 16690:1 16704:2 16705:1 16718:1 16720:1 16721:1 16726:1 16744:2 16765:1 16766:3 16771:2 16777:1 16780:1 16796:4 16845:2 16847:1 16851:1 16860:1 16866:1 16876:1 16877:1 16879:1 16896:7 16899:3 16900:1 16902:2 16904:1 16905:1 16911:1 16915:2 16916:4 16920:3 16921:1 16932:1 16934:2 16936:3 16940:2 16949:1 16953:1 16954:1 16964:2 16982:1 16987:1 16988:1 16990:1 16993:1 17001:1 17010:1 17018:2 17019:3 17055:1 17058:2 17061:1 17077:1 17082:1 17085:1 17098:1 17102:2 17103:3 17113:2 17116:1 17117:1 17128:1 17130:1 17135:1 17142:3 17161:1 17187:3 17193:1 17194:1 17196:2 17199:2 17201:2 17202:1 17213:1 17219:1 17220:15 17223:2 17234:1 17235:1 17244:1 17248:2 17275:1 17285:2 17287:1 17292:2 17294:1 17310:1 17311:2 17317:3 17320:1 17334:2 17338:2 17341:1 17354:1 17361:1 17363:1 17369:1 17376:1 17392:1 17396:4 17403:2 17404:4 17417:2 17446:2 17448:1 17479:1 17481:1 17501:1 17513:1 17529:3 17531:2 17540:1 17568:1 17571:1 17578:1 17584:1 17587:1 17595:2 17599:3 17609:2 17616:1 17640:1 17641:1 17646:2 17657:1 17661:1 17666:1 17667:4 17673:1 17685:1 17714:4 17718:1 17723:2 17750:1 17752:2 17754:4 17760:1 17774:5 17779:1 17782:1 17785:3 17787:1 17805:2 17806:1 17811:1 17821:1 17823:2 17828:1 17850:1 17856:1 17873:1 17874:1 17900:2 17912:22 17916:1 17920:1 17923:3 17930:1 17946:1 17949:1 17961:1 17968:1 17969:1 17970:1 17978:1 17979:2 17980:1 17984:2 17986:1 17989:2 17998:1 18003:1 18009:1 18010:1 18013:2 18022:1 18027:1 18031:7 18035:1 18037:2 18038:1 18052:4 18057:2 18065:2 18066:1 18071:2 18095:1 18101:4152 18105:1 18118:5 18123:2 18149:1 18157:1 18163:2 18171:1 18177:1 18178:3 18179:2 18188:2 18214:1 18215:3 18216:1 18226:1 18234:2 18245:2 18262:1 18267:1 18271:6 18272:2 18298:3 18306:1 18309:1 18311:3 18314:1 18315:1 18331:1 18333:1 18346:1 18361:1 18362:1 18366:1 18381:1 18408:1 18410:5 18415:1 18423:2 18429:1 18434:1 18439:1 18444:1 18458:1 18462:3 18472:1 18481:2 18491:1 18493:1 18505:1 18512:1 18514:1 18515:1 18524:1 18557:1 18567:1 18569:2 18572:1 18575:1 18584:5 18599:2 18601:1 18607:1 18618:1 18623:2 18631:1 18667:5 18669:2 18677:1 18679:5 18711:1 18725:1 18731:1 18761:1 18780:1 18786:2 18796:1 18799:2 18801:1 18804:2 18813:4 18825:2 18829:1 18830:4 18834:1 18845:1 18847:5 18859:19 18861:1 18871:1 18876:1 18877:1 18878:1 18880:3 18881:1 18883:26 18892:2 18904:1 18910:1 18911:6 18912:1 18914:1 18931:1 18936:2 18947:1 18950:6 18968:1 18972:3 18976:1 18977:1 18978:6 18980:2 18983:1 18987:1 18997:2 18998:1 19000:1 19005:1 19028:2 19034:3 19039:1 19055:1 19067:3 19099:1 19103:1 19106:1 19108:2 19112:1 19134:1 19148:1 19153:1 19172:1 19176:1 19179:1 19187:1 19206:1 19209:13 19212:1 19220:1 19231:3 19253:2 19254:2 19256:1 19279:1 19291:1 19292:1 19299:2 19305:1 19307:8 19326:1 19329:1 19347:2 19357:1 19359:1 19360:1 19378:1 19383:1 19390:1 19391:1 19394:2 19399:1 19401:2 19402:1 19409:2 19430:1 19436:1 19452:1 19459:4 19464:1 19470:1 19472:1 19488:3 19489:1 19514:3 19523:1 19525:1 19538:2 19539:1 19543:3 19545:5 19565:2 19569:1 19574:2 19582:2 19584:1 19586:1 19590:1 19591:8 19594:1 19612:1 19638:1 19644:1 19663:15 19669:2 19677:2 19679:3 19694:1 19695:1 19706:1 19707:15 19724:1 19737:1 19747:1 19756:1 19759:1 19774:1 19786:2 19791:1 19813:1 19818:1 19821:1 19822:1 19833:2 19853:5 19854:1 19856:2 19865:1 19870:1 19900:2 19910:1 19918:1 19945:5 19955:1 19957:3 19968:1 19979:1 19986:1 19998:1 20006:1 20022:1 20024:2 20044:3 20074:1 20078:3 20086:1 20095:1 20099:1 20109:1 20117:1 20119:1 20120:3 20129:1 20131:1 20143:1 20145:1 20148:2 20150:1 20151:1 20169:1 20171:1 20177:1 20193:1 20210:4 20217:1 20224:1 20227:2 20230:1 20231:1 20232:1 20235:2 20236:1 20240:1 20245:14 20248:1 20252:2 20253:1 20257:3 20258:1 20260:5 20261:1 20279:3 20285:3 20289:5 20299:1 20322:5 20325:1 20327:1 20335:1 20336:1 20337:1 20339:1 20352:1 20364:2 20365:1 20366:1 20375:2 20378:1 20396:2 20401:1 20402:1 20413:2 20418:1 20422:10 20429:1 20432:2 20438:1 20439:1 20446:1 20448:1 20453:2 20467:1 20484:1 20490:1 20496:1 20499:1 20502:1 20505:1 20507:1 20518:1 20524:3 20528:1 20529:1 20531:1 20533:1 20538:1 20546:4 20559:1 20561:1 20563:1 20567:2 20569:1 20571:1 20572:1 20579:1 20583:1 20585:1 20620:1 20628:3 20647:1 20672:1 20678:1 20679:1 20684:2 20708:2 20712:1 20716:2 20718:4 20720:2 20723:4 20733:5 20741:1 20743:1 20745:1 20773:1 20777:1 20782:1 20786:2 20787:1 20798:1 20804:1 20808:1 20809:1 20810:1 20812:1 20814:2 20815:2 20822:1 20827:1 20828:1 20838:2 20839:1 20840:8 20843:3 20856:2 20860:1 20861:1 20863:1 20870:1 20874:1 20880:1 20888:1 20921:1 20924:2 20926:1 20927:2 20928:1 20934:3 20941:2 20951:1 20952:1 20953:1 20971:1 20973:4 20976:20 20978:1 20990:1 20992:1 20998:3 20999:2 21003:1 21010:1 21014:1 21019:1 21024:1 21026:4 21037:5 21049:1 21053:1 21080:3 21082:1 21084:3 21086:1 21090:1 21096:5 21108:1 21113:1 21120:1 21125:1 21140:1 21141:1 21142:4 21150:2 21156:3 21161:1 21209:1 21214:1 21231:4 21237:2 21238:1 21239:13 21241:3 21245:2 21252:3 21254:1 21255:1 21266:4 21267:3 21269:2 21271:1 21272:1 21276:1 21279:2 21282:2 21283:1 21291:1 21292:2 21293:1 21297:1 21302:1 21306:2 21309:2 21314:1 21318:1 21334:2 21369:1 21379:5 21380:1 21403:1 21407:1 21412:1 21413:2 21423:2 21425:1 21428:1 21435:1 21439:1 21444:1 21446:5 21457:1 21464:1 21467:1 21474:1 21515:25 21516:2 21518:1 21528:1 21537:1 21548:1 21556:2 21569:1 21575:1 21583:1 21594:5 21596:1 21609:1 21611:1 21613:2 21620:1 21621:1 21623:1 21628:2 21637:1 21642:2 21644:1 21645:1 21648:9 21654:1 21657:1 21664:3 21668:4 21679:2 21697:1 21704:1 21706:2 21712:1 21715:1 21718:2 21732:1 21735:1 21738:1 21741:3 21743:2 21745:2 21753:1 21754:1 21766:2 21768:1 21769:1 21781:12 21794:4 21802:1 21807:4 21814:1 21819:1 21828:2 21840:1 21850:1 21856:1 21860:2 21873:1 21874:1 21895:1 21914:1 21929:1 21935:1 21941:3 21946:1 21949:1 21959:1 21967:1 21972:2 21985:1 21989:1 22001:1 22012:1 22015:1 22021:1 22032:1 22038:1 22040:1 22041:2 22042:2 22049:15 22051:2 22078:2 22082:2 22090:1 22099:1 22115:1 22120:1 22130:4 22132:1 22133:2 22136:1 22139:1 22154:1 22165:3 22180:1 22185:1 22188:5 22192:1 22209:1 22222:1 22223:1 22225:1 22240:1 22241:1 22246:1 22248:1 22264:2 22270:1 22279:1 22283:1 22284:1 22290:1 22295:2 22296:1 22300:1 22310:1 22315:1 22322:1 22329:1 22333:1 22344:1 22346:1 22348:2 22355:2 22361:1 22374:1 22414:1 22423:1 22424:1 22425:7 22431:1 22432:1 22436:1 22448:1 22452:1 22453:1 22463:2 22466:1 22471:1 22478:1 22481:2 22496:1 22506:1 22508:1 22528:1 22530:2 22534:3 22536:1 22538:1 22548:1 22551:2 22556:1 22564:2 22566:1 22568:4 22571:1 22572:1 22587:1 22593:1 22607:2 22619:1 22627:4 22628:5 22633:2 22634:1 22646:6 22654:1 22657:1 22665:2 22667:1 22670:1 22672:4 22677:3 22681:1 22683:1 22699:2 22706:1 22707:3 22708:1 22720:1 22739:1 22748:6 22755:1 22757:32 22759:1 22808:1 22837:2 22844:1 22846:2 22847:1 22849:1 22856:1 22872:1 22889:1 22899:1 22904:1 22916:3 22922:1 22924:2 22925:1 22937:1 22949:1 22951:1 22957:1 22961:1 22965:2 22983:1 22986:1 22999:1 23000:1 23008:2 23019:1 23022:1 23024:2 23028:1 23033:1 23059:1 23062:2 23076:1 23077:2 23079:1 23089:1 23104:6 23109:1 23112:2 23117:1 23122:1 23126:1 23152:1 23159:1 23175:1 23177:1 23192:3 23207:3 23214:1 23215:2 23222:1 23224:2 23227:1 23228:1 23229:2 23246:1 23266:2 23278:1 23284:1 23300:1 23306:1 23313:1 23321:1 23328:1 23334:2 23345:1 23360:1 23362:1 23381:1 23389:1 23391:1 23396:1 23397:10 23405:1 23412:1 23413:1 23417:2 23421:3 23434:2 23445:1 23449:1 23470:1 23492:1 23494:1 23502:1 23510:4 23520:1 23521:1 23541:1 23558:1 23568:5 23595:1 23602:1 23633:2 23643:1 23646:1 23655:1 23656:1 23662:1 23665:1 23666:3 23667:5 23668:1 23675:1 23689:1 23697:1 23704:2 23707:3 23712:1 23716:4 23722:2 23726:1 23752:2 23753:2 23766:4 23780:1 23788:1 23791:2 23802:2 23808:1 23820:1 23841:1 23844:1 23860:1 23867:4 23870:1 23871:1 23879:3 23883:1 23885:1 23890:1 23899:1 23900:1 23908:1 23916:1 23921:1 23926:1 23933:1 23934:1 23937:1 23939:1 23944:1 23945:1 23954:1 23960:1 23971:1 23980:1 23982:2 23998:2 24003:2 24006:4 24011:1 24013:1 24020:1 24027:1 24036:1 24040:1 24050:1 24052:1 24057:1 24059:1 24081:1 24083:1 24086:1 24099:1 24102:1 24106:2 24144:3 24155:5 24173:1 24179:1 24189:1 24191:1 24208:1 24214:1 24224:1 24230:2 24231:1 24234:1 24236:1 24241:1 24242:7 24252:1 24269:3 24274:1 24275:1 24281:1 24290:1 24306:2 24325:1 24331:1 24339:6 24359:1 24360:1 24363:1 24367:1 24375:1 24396:1 24404:2 24406:4 24412:2 24417:1 24420:1 24434:9 24436:1 24457:1 24466:1 24468:1 24473:3 24476:7 24478:1 24483:1 24484:1 24486:1 24488:5 24491:1 24492:1 24506:1 24527:1 24533:1 24534:1 24540:1 24567:1 24568:1 24572:1 24600:1 24611:1 24614:1 24620:1 24634:1 24635:1 24636:1 24637:4 24640:1 24641:3 24644:8 24647:3 24653:1 24659:1 24665:2 24678:1 24692:5 24694:1 24697:2 24702:1 24718:2 24727:1 24728:1 24730:6 24731:2 24740:2 24742:2 24751:4 24760:7 24761:2 24772:3 24782:1 24784:1 24788:1 24789:1 24794:1 24797:1 24817:2 24823:3 24838:1 24841:6 24843:1 24847:1 24854:1 24855:2 24873:2 24883:1 24897:2 24904:1 24915:4 24928:1 24942:5 24946:1 24967:4 24969:5 24973:1 24979:1 24990:2 24999:1 25018:1 25051:1 25053:1 25056:1 25061:1 25064:1 25071:1 25081:1 25085:1 25092:4 25109:1 25117:1 25121:1 25131:1 25135:1 25138:2 25140:1 25143:1 25153:1 25157:2 25160:3 25173:1 25175:1 25179:3 25191:1 25194:1 25200:1 25217:2 25219:1 25228:1 25230:2 25235:1 25242:1 25256:6 25261:1 25262:1 25264:1 25265:1 25268:2 25272:1 25276:1 25277:1 25283:1 25286:1 25289:3 25323:2 25326:1 25332:2 25342:1 25348:2 25358:1 25360:1 25379:1 25385:2 25387:4 25402:1 25410:23 25414:1 25450:1 25451:1 25455:1 25478:1 25486:1 25494:1 25514:1 25525:1 25530:1 25537:1 25549:5 25555:1 25560:1 25569:1 25571:2 25586:1 25641:2 25660:3 25681:5 25683:2 25684:1 25685:1 25688:1 25695:1 25696:2 25698:1 25699:4 25700:10 25703:2 25705:1 25722:1 25735:1 25742:2 25751:3 25773:1 25779:1 25782:1 25787:1 25793:4 25801:1 25805:1 25819:1 25826:4 25833:1 25843:1 25844:1 25852:1 25856:1 25861:2 25866:1 25867:1 25879:1 25901:4 25905:1 25910:2 25916:1 25944:2 25955:1 25957:1 25967:1 25975:3 26008:1 26023:1 26032:1 26042:1 26051:1 26067:1 26069:2 26075:1 26104:3 26107:1 26110:2 26120:2 26137:1 26151:1 26158:1 26189:1 26196:1 26198:1 26201:1 26216:2 26218:2 26228:4 26254:1 26269:1 26272:2 26281:1 26285:2 26288:1 26289:6 26299:1 26301:1 26303:10 26314:1 26319:1 26331:2 26332:1 26345:1 26361:1 26383:1 26389:1 26397:32 26398:1 26400:3 26401:1 26410:1 26420:1 26430:6 26447:2 26450:1 26452:1 26453:1 26454:1 26473:1 26495:1 26503:3 26505:3 26509:4 26510:2 26514:1 26519:1 26544:2 26546:1 26548:1 26549:1 26555:2 26557:3 26559:2 26562:2 26563:1 26569:1 26570:1 26571:1 26573:1 26576:3 26581:1 26588:3 26590:1 26592:1 26612:2 26624:1 26638:1 26641:2 26651:1 26664:2 26666:1 26686:2 26689:1 26690:1 26705:1 26711:1 26715:3 26716:2 26725:1 26765:2 26766:1 26784:3 26785:2 26789:2 26792:1 26794:1 26797:1 26799:1 26807:4 26808:1 26810:2 26829:2 26840:1 26843:1 26854:1 26863:1 26869:16 26874:1 26875:1 26879:1 26889:1 26894:1 26909:1 26919:1 26951:1 26954:4 26963:4 26977:1 26986:2 26989:1 26993:1 27017:1 27025:1 27035:1 27038:4 27044:1 27058:1 27071:2 27074:1 27075:2 27080:1 27083:2 27108:5 27111:5 27134:1 27135:1 27143:3 27145:1 27157:1 27162:1 27171:1 27177:1 27180:1 27213:1 27216:1 27217:1 27228:4 27231:1 27236:1 27239:1 27248:1 27256:3 27259:2 27271:1 27279:2 27280:29 27281:2 27282:1 27283:3 27287:4 27289:1 27290:1 27300:1 27315:1 27316:13 27326:1 27329:1 27337:2 27364:1 27368:2 27372:1 27373:2 27381:1 27383:3 27394:1 27401:1 27405:7 27414:5 27419:2 27447:4 27448:1 27450:1 27452:2 27458:1 27462:1 27465:1 27477:2 27491:1 27492:1 27495:1 27496:1 27517:1 27519:1 27526:1 27549:1 27550:1 27558:2 27561:1 27562:1 27590:2 27591:2 27594:1 27611:1 27619:1 27620:1 27627:1 27629:1 27633:2 27636:1 27638:4 27641:3 27644:1 27658:1 27661:2 27666:1 27676:1 27692:11 27695:1 27697:1 27705:4 27708:1 27743:1 27745:1 27749:1 27768:1 27772:4 27773:9 27775:2 27776:1 27780:1 27783:1 27799:2 27804:2 27805:3 27814:1 27816:1 27818:1 27828:2 27834:2 27835:1 27842:1 27864:3 27879:1 27895:1 27914:3 27920:1 27922:2 27926:3 27927:1 27944:1 27951:2 27961:2 27963:5 27968:1 27969:1 27971:1 27977:5 27984:1 27994:2 28018:1 28026:1 28046:2 28050:1 28053:1 28067:1 28081:1 28106:3 28108:2 28122:1 28138:4 28154:1 28169:2 28172:1 28176:1 28185:1 28210:1 28217:3 28222:1 28229:3 28237:1 28265:1 28283:1 28292:3 28295:1 28297:1 28300:1 28301:1 28314:1 28326:2 28336:1 28340:1 28341:1 28343:8 28344:1 28352:2 28364:2 28370:1 28378:1 28380:2 28391:1 28395:3 28397:2 28412:1 28420:1 28430:5 28437:2 28442:1 28496:2 28499:1 28503:1 28504:1 28507:1 28509:1 28511:5 28516:1 28523:1 28530:1 28554:1 28560:2 28566:1 28569:1 28574:1 28575:1 28576:2 28579:1 28587:2 28618:1 28624:1 28627:1 28629:1 16 6:2 10:1 26:1 27:2 29:1 44:1 58:1 69:1 74:1 78:1 82:1 83:5 100:1 106:1 119:1 123:1 137:1 147:1 153:1 162:1 165:5 171:1 172:1 175:2 176:1 201:1 206:2 211:4 213:1 230:1 235:4 239:1 254:2 283:1 286:1 296:4 300:1 318:1 327:1 336:3 337:3 338:1 364:2 372:1 375:1 382:1 399:1 407:2 418:1 430:1 442:3 445:2 449:2 460:1 471:2 478:2 489:2 504:1 507:1 509:1 514:1 523:2 526:2 552:1 553:1 567:5 586:1 603:1 614:1 617:4 621:1 627:4 634:1 648:3 654:2 661:4 665:1 671:1 676:1 684:1 685:1 688:1 699:1 707:1 713:1 724:1 735:1 747:2 757:2 768:1 772:2 787:1 803:1 805:1 809:1 813:1 824:1 826:1 828:2 843:5 852:1 854:1 856:3 861:2 865:1 872:2 893:1 902:2 907:1 910:3 913:1 915:1 924:2 933:2 934:2 939:3 940:1 941:3 942:6 943:2 944:2 947:2 952:1 963:1 966:2 978:1 980:1 982:1 983:1 985:6 987:2 996:1 1007:1 1010:1 1015:2 1020:2 1049:1 1052:1 1059:2 1062:1 1081:1 1086:1 1089:1 1108:2 1116:1 1125:2 1143:1 1150:2 1169:1 1170:1 1171:3 1174:1 1175:2 1184:2 1187:1 1192:2 1200:1 1201:4 1217:2 1222:2 1224:2 1227:1 1237:3 1239:3 1259:1 1263:1 1267:1 1269:2 1275:6 1278:1 1279:1 1289:8 1290:2 1292:1 1293:1 1302:3 1306:1 1316:1 1319:1 1321:1 1331:2 1333:1 1335:4 1336:1 1346:2 1356:1 1375:2 1379:1 1390:1 1391:1 1404:1 1407:1 1410:1 1413:2 1415:2 1438:3 1440:1 1446:1 1448:1 1451:1 1453:2 1464:1 1465:1 1475:1 1484:7 1493:1 1497:1 1501:9 1513:3 1521:2 1522:1 1525:4 1531:1 1535:1 1540:1 1541:1 1542:1 1544:6 1560:1 1569:1 1571:1 1572:10 1583:1 1587:3 1589:2 1590:2 1591:2 1594:1 1595:1 1596:1 1601:2 1603:1 1616:1 1621:3 1625:1 1628:1 1632:6 1637:6 1640:2 1641:1 1653:1 1654:2 1657:2 1672:5 1675:3 1678:1 1683:1 1684:1 1692:1 1698:2 1702:1 1706:1 1722:1 1731:1 1733:1 1743:2 1745:1 1746:1 1747:1 1751:1 1758:4 1763:1 1766:6 1779:1 1784:2 1789:1 1790:1 1809:1 1810:1 1816:1 1820:1 1824:1 1825:1 1831:1 1836:2 1837:2 1844:1 1849:1 1853:1 1860:1 1861:1 1865:1 1868:1 1877:4 1882:1 1883:1 1884:1 1889:2 1895:1 1901:1 1903:2 1904:5 1908:1 1910:1 1912:1 1914:1 1921:1 1929:1 1930:5 1931:1 1933:1 1950:1 1953:1 1958:1 1978:1 1986:1 2001:1 2006:1 2015:2 2017:2 2019:2 2020:2 2022:1 2023:3 2031:1 2035:1 2044:1 2049:1 2054:2 2072:1 2074:4 2075:1 2076:2 2077:1 2078:1 2092:1 2101:1 2108:4 2126:2 2133:1 2140:1 2156:1 2158:1 2164:1 2170:1 2172:1 2174:3 2188:1 2191:1 2192:1 2204:2 2208:1 2209:1 2227:2 2228:1 2229:1 2230:2 2232:6 2236:3 2237:1 2238:6 2240:2 2241:1 2244:6 2245:1 2246:5 2248:2 2251:1 2253:1 2256:7 2259:3 2260:8 2265:1 2267:1 2272:1 2273:2 2277:1 2279:2 2283:1 2286:1 2290:1 2303:1 2308:1 2312:1 2321:1 2325:1 2327:2 2331:1 2334:1 2335:1 2336:3 2340:1 2346:1 2354:1 2359:2 2361:1 2374:1 2379:1 2391:1 2402:1 2413:6 2423:1 2437:1 2443:2 2448:4 2474:1 2483:1 2486:1 2488:1 2495:1 2524:1 2526:2 2531:1 2537:1 2556:1 2582:2 2587:1 2595:5 2596:1 2602:1 2607:5 2615:1 2622:2 2623:1 2630:1 2633:1 2635:3 2637:12 2651:1 2653:1 2659:2 2662:3 2668:2 2670:1 2674:1 2675:1 2677:1 2684:4 2689:1 2690:1 2695:1 2713:2 2714:1 2721:2 2731:2 2738:2 2739:1 2741:5 2747:4 2755:1 2792:5 2795:1 2798:1 2799:1 2804:2 2806:1 2818:16 2827:1 2828:7 2837:1 2848:1 2857:2 2869:1 2875:1 2885:32 2894:1 2899:2 2903:1 2907:1 2918:1 2919:1 2920:1 2936:1 2948:1 2956:1 2962:2 2970:1 2981:1 2986:2 2987:1 2988:1 2989:2 3006:1 3028:1 3037:3 3041:1 3053:3 3059:1 3062:2 3070:1 3085:1 3105:1 3106:1 3107:1 3115:2 3116:1 3117:1 3122:1 3129:2 3133:4 3141:2 3151:13 3153:3 3166:1 3168:1 3173:1 3181:1 3190:1 3191:2 3199:1 3208:1 3218:1 3219:7 3238:1 3254:1 3271:1 3281:1 3283:1 3293:1 3301:1 3303:2 3319:4 3327:1 3330:1 3340:1 3348:1 3357:4 3361:3 3369:2 3373:1 3376:1 3377:1 3388:6 3417:1 3423:1 3426:1 3427:3 3430:1 3439:1 3441:1 3442:1 3453:3 3462:1 3491:1 3502:1 3505:1 3511:1 3512:5 3513:2 3519:3 3521:1 3522:2 3535:2 3540:1 3543:1 3550:1 3569:1 3588:1 3598:1 3603:2 3606:4 3608:1 3625:1 3642:1 3643:1 3651:4 3652:48 3659:1 3667:1 3674:1 3677:2 3678:1 3679:9 3681:1 3686:1 3687:2 3688:30 3689:2 3691:7 3694:1 3697:2 3706:4 3709:1 3718:3 3721:4 3724:3 3725:4 3740:2 3742:1 3743:2 3755:1 3769:2 3776:1 3777:3 3781:1 3783:1 3788:1 3805:1 3808:1 3811:2 3813:1 3815:1 3816:3 3824:1 3826:3 3838:2 3840:1 3844:1 3853:1 3861:1 3863:1 3866:3 3873:1 3889:1 3891:1 3900:1 3901:2 3904:1 3905:1 3911:2 3915:2 3918:1 3920:1 3925:6 3939:6 3953:1 3985:1 3993:1 3995:1 4013:1 4022:1 4031:1 4036:1 4052:1 4056:3 4062:1 4086:1 4090:1 4101:2 4106:2 4107:2 4109:1 4110:1 4113:1 4137:1 4143:2 4152:1 4153:1 4156:1 4169:3 4184:1 4199:1 4209:2 4221:1 4234:15 4245:1 4250:1 4251:1 4269:1 4277:1 4302:3 4306:1 4313:5 4322:1 4325:2 4335:2 4347:7 4351:1 4362:1 4372:1 4380:2 4383:1 4386:1 4391:1 4393:1 4402:1 4435:1 4448:1 4449:2 4470:1 4474:1 4484:1 4489:2 4499:3 4513:1 4514:1 4515:2 4519:1 4522:2 4533:1 4543:5 4554:1 4557:1 4563:4 4582:1 4584:3 4585:1 4586:1 4594:1 4609:1 4653:1 4654:1 4659:1 4660:2 4671:1 4685:1 4689:1 4693:2 4701:2 4742:1 4754:2 4761:1 4779:1 4782:1 4785:1 4792:19 4793:3 4804:1 4824:3 4848:1 4850:2 4860:1 4865:1 4870:1 4893:4 4896:1 4902:6 4903:1 4905:5 4907:1 4925:2 4926:4 4927:8 4928:1 4929:1 4930:2 4932:1 4933:3 4935:1 4939:1 4940:25 4941:1 4943:1 4948:2 4949:3 4956:2 4957:1 4963:1 4972:2 4975:3 4977:1 4979:1 4995:2 5011:1 5021:1 5031:2 5045:2 5053:1 5058:1 5064:2 5120:1 5144:3 5145:3 5151:1 5152:5 5158:1 5179:1 5181:1 5190:1 5195:1 5209:1 5213:2 5214:25 5227:1 5242:1 5249:1 5250:3 5252:1 5280:4 5315:1 5317:1 5319:1 5327:1 5330:1 5343:1 5355:1 5359:1 5361:2 5370:1 5375:1 5379:1 5386:1 5388:1 5390:2 5392:1 5395:1 5431:1 5433:1 5437:1 5446:1 5447:1 5448:2 5454:1 5465:4 5474:1 5479:1 5489:2 5494:1 5497:1 5502:1 5503:2 5509:1 5521:1 5523:2 5525:1 5549:1 5561:1 5562:1 5565:5 5588:2 5595:2 5604:2 5612:1 5614:1 5618:1 5620:1 5624:1 5631:1 5635:1 5643:1 5646:2 5653:1 5654:1 5656:1 5659:2 5660:1 5662:1 5674:2 5675:1 5679:1 5683:1 5697:1 5701:1 5702:1 5703:1 5707:1 5720:1 5731:1 5745:1 5766:3 5791:1 5793:1 5794:5 5796:1 5800:1 5803:1 5808:1 5817:2 5828:1 5846:1 5858:1 5860:2 5894:1 5903:1 5905:1 5924:1 5931:5 5932:11 5941:1 5945:2 5966:1 5971:2 5976:1 5977:1 5980:1 6003:1 6020:1 6024:1 6026:1 6034:2 6038:1 6042:2 6043:1 6046:1 6047:1 6057:1 6073:2 6079:6 6086:1 6087:2 6088:2 6115:1 6126:1 6127:3 6129:1 6136:2 6151:6 6153:1 6157:1 6162:2 6165:1 6166:1 6168:1 6177:1 6181:1 6184:1 6194:1 6239:7 6242:2 6243:2 6244:1 6247:1 6248:2 6250:3 6251:2 6254:2 6255:3 6256:5 6262:4 6264:8 6265:1 6266:2 6267:5 6275:1 6288:3 6289:1 6298:1 6317:1 6325:3 6329:1 6341:1 6356:2 6357:1 6358:1 6385:1 6392:1 6394:1 6398:1 6404:1 6410:2 6413:1 6424:1 6446:1 6450:1 6454:1 6463:1 6494:1 6498:1 6507:4 6508:1 6513:2 6523:1 6533:5 6535:2 6539:3 6547:1 6550:1 6557:1 6558:1 6566:2 6576:1 6580:1 6582:3 6585:1 6586:2 6598:2 6603:1 6604:1 6606:1 6615:1 6639:1 6647:1 6657:1 6661:1 6665:1 6670:1 6677:2 6679:3 6684:3 6685:2 6687:1 6695:3 6699:2 6704:7 6705:1 6711:3 6718:2 6731:1 6736:1 6739:3 6745:1 6767:1 6780:1 6783:2 6789:1 6791:1 6795:1 6799:2 6803:1 6819:3 6828:1 6831:1 6835:1 6857:2 6860:1 6876:3 6883:1 6893:1 6896:2 6907:1 6909:1 6930:2 6954:2 6970:1 6973:2 6974:1 6981:1 6982:2 6996:1 7000:6 7003:2 7008:1 7010:3 7012:1 7015:1 7016:1 7022:1 7026:1 7027:1 7036:1 7049:1 7080:2 7126:1 7134:1 7143:1 7145:1 7151:1 7153:1 7180:1 7196:2 7204:1 7213:1 7221:5 7267:1 7269:1 7275:4 7290:2 7297:1 7307:5 7313:1 7337:1 7340:2 7343:2 7352:2 7360:2 7377:1 7378:2 7387:2 7406:1 7411:1 7415:1 7419:1 7420:3 7430:1 7433:1 7437:6 7446:1 7466:1 7471:1 7477:4 7478:6 7479:3 7496:1 7499:2 7500:1 7502:2 7505:1 7512:1 7530:1 7531:2 7544:1 7547:1 7548:56 7549:1 7550:1 7555:2 7567:16 7568:28 7576:1 7578:1 7579:1 7582:1 7586:1 7588:1 7590:1 7595:1 7615:1 7616:7 7638:1 7639:1 7647:1 7648:1 7653:1 7668:1 7672:2 7689:4 7705:1 7723:1 7742:4 7746:8 7750:2 7762:1 7780:1 7786:1 7788:5 7796:1 7802:1 7805:1 7806:1 7826:1 7837:1 7851:1 7858:1 7862:1 7910:4 7914:1 7920:2 7921:1 7925:1 7926:1 7928:9 7936:3 7942:1 7951:1 7960:2 7973:1 7977:2 7983:1 7998:1 7999:1 8006:28 8013:1 8018:1 8026:1 8031:2 8037:2 8039:1 8043:1 8049:1 8063:2 8092:1 8098:1 8107:2 8108:1 8116:1 8127:2 8139:1 8140:1 8154:1 8167:1 8170:3 8176:6 8181:3 8194:2 8196:2 8199:4 8213:2 8214:1 8215:2 8220:1 8231:1 8233:2 8241:2 8251:1 8260:2 8263:2 8268:1 8269:1 8270:1 8274:1 8276:1 8277:1 8294:2 8295:1 8304:1 8308:1 8319:3 8327:1 8336:1 8342:1 8345:1 8349:2 8354:2 8357:2 8358:1 8359:3 8360:2 8361:2 8362:5 8365:2 8366:1 8370:2 8373:2 8375:2 8381:3 8396:1 8402:3 8412:2 8420:1 8421:1 8427:1 8428:1 8440:1 8450:6 8455:2 8462:1 8465:1 8469:2 8475:3 8486:1 8492:1 8496:5 8517:6 8526:1 8528:1 8531:2 8550:1 8556:1 8583:2 8595:1 8596:2 8603:1 8609:3 8616:3 8617:1 8621:1 8623:1 8624:1 8637:1 8640:2 8662:1 8667:7 8668:2 8675:6 8676:1 8677:1 8678:4 8680:3 8687:3 8688:2 8706:3 8707:1 8709:2 8711:5 8725:1 8727:1 8743:3 8748:1 8763:1 8798:1 8807:1 8813:1 8827:3 8835:1 8838:1 8853:2 8854:2 8863:1 8868:1 8880:1 8882:1 8895:1 8903:1 8906:1 8918:1 8919:1 8926:3 8935:1 8957:1 8962:4 8974:1 8978:1 8991:2 8994:1 8995:5 9006:2 9008:1 9015:9 9019:1 9035:2 9039:3 9042:1 9049:1 9055:3 9063:1 9071:1 9078:1 9088:3 9091:1 9110:1 9111:2 9124:2 9125:1 9156:2 9160:1 9201:1 9219:1 9220:1 9236:1 9240:1 9243:1 9246:3 9252:2 9253:1 9263:1 9264:2 9268:1 9278:1 9292:2 9294:1 9298:2 9310:1 9322:1 9325:3 9328:1 9337:1 9350:1 9368:1 9375:25 9383:1 9399:2 9408:2 9420:7 9428:2 9434:1 9437:1 9447:1 9448:1 9455:1 9456:2 9459:1 9462:1 9466:1 9467:2 9484:2 9492:1 9494:1 9511:14 9522:1 9526:2 9529:1 9535:3 9550:1 9558:1 9569:5 9575:1 9580:1 9586:3 9587:1 9590:1 9603:1 9614:1 9620:1 9622:1 9625:1 9637:3 9651:2 9655:3 9656:1 9666:1 9690:8 9696:3 9697:4 9698:2 9706:3 9707:1 9712:1 9717:1 9726:3 9730:3 9733:1 9734:1 9739:2 9744:2 9748:4 9749:1 9751:5 9753:1 9754:1 9761:1 9770:1 9774:1 9780:3 9785:4 9795:1 9797:2 9809:1 9817:2 9830:1 9848:1 9853:4 9855:1 9873:13 9875:1 9876:6 9883:1 9885:1 9888:1 9909:1 9915:1 9967:1 9971:2 9976:1 9982:1 9986:1 9994:1 9998:2 10003:1 10018:4 10023:1 10024:1 10035:4 10050:2 10055:1 10081:1 10084:1 10103:2 10121:1 10137:2 10149:6 10155:1 10159:1 10163:3 10173:2 10181:2 10191:1 10206:1 10209:3 10215:7 10226:1 10227:1 10230:1 10251:1 10258:2 10276:3 10278:2 10281:2 10288:1 10297:6 10298:2 10304:1 10311:2 10312:4 10313:1 10314:8 10320:1 10328:1 10330:4 10334:1 10355:1 10356:3 10369:1 10371:1 10374:1 10383:4 10394:2 10396:3 10401:1 10405:2 10412:1 10413:9 10417:1 10430:2 10434:1 10463:1 10464:1 10470:1 10475:1 10480:1 10495:2 10498:1 10499:2 10503:1 10509:1 10510:1 10524:2 10528:1 10531:2 10534:1 10545:1 10549:1 10588:2 10591:1 10595:1 10604:1 10620:3 10621:1 10625:1 10634:2 10635:9 10649:4 10650:7 10663:4 10666:1 10670:1 10672:1 10679:1 10684:2 10692:1 10699:4 10702:1 10727:2 10729:1 10730:1 10732:1 10740:1 10742:2 10747:5 10759:2 10767:4 10774:1 10779:3 10795:1 10810:2 10811:1 10814:1 10833:1 10838:1 10839:1 10841:1 10843:2 10844:1 10846:1 10860:2 10876:1 10892:1 10894:1 10899:1 10900:1 10901:1 10904:1 10905:6 10906:1 10907:1 10926:1 10931:1 10941:1 10945:2 10959:2 10961:1 10965:1 10970:1 10971:1 10975:1 10996:2 11019:1 11021:4 11029:2 11032:1 11034:1 11039:2 11047:1 11054:2 11055:1 11073:1 11080:1 11081:5 11112:1 11116:3 11118:7 11120:1 11122:3 11134:1 11147:1 11169:1 11172:1 11180:1 11186:2 11198:1 11200:1 11218:3 11232:1 11238:1 11242:1 11245:1 11248:5 11259:2 11261:6 11263:1 11277:2 11278:3 11280:2 11286:1 11296:1 11297:1 11299:1 11315:3 11322:1 11328:4 11335:2 11336:11 11337:1 11348:2 11349:1 11354:1 11355:1 11358:1 11359:1 11367:1 11368:3 11370:1 11371:1 11372:8 11373:1 11374:1 11381:1 11383:8 11392:2 11394:1 11399:2 11401:1 11406:12 11409:1 11422:2 11431:5 11435:2 11441:2 11446:1 11455:1 11475:1 11476:1 11486:4 11492:1 11496:1 11498:2 11499:3 11508:1 11529:1 11530:1 11534:1 11544:3 11557:1 11563:1 11566:3 11575:1 11598:2 11610:1 11615:2 11616:2 11617:1 11633:2 11649:3 11651:1 11658:1 11683:1 11691:5 11734:3 11737:2 11749:1 11754:1 11759:1 11761:1 11764:1 11765:1 11766:1 11768:1 11786:4 11787:4 11788:25 11793:1 11797:8 11798:1 11806:1 11812:1 11813:2 11814:1 11823:3 11837:3 11839:1 11859:1 11879:2 11900:1 11904:1 11930:3 11938:9 11939:2 11940:1 11955:1 11958:4 11959:1 11963:3 11968:2 11984:2 12005:1 12016:4 12019:1 12033:1 12040:1 12047:1 12054:2 12058:1 12064:1 12069:1 12081:2 12115:2 12134:5 12148:1 12155:2 12187:1 12189:3 12196:1 12198:1 12202:1 12203:1 12218:1 12236:2 12257:1 12258:1 12264:1 12266:1 12275:1 12290:1 12323:6 12336:1 12339:1 12341:1 12345:1 12348:1 12357:1 12369:2 12370:4 12391:2 12394:3 12415:1 12420:1 12451:1 12456:2 12472:1 12485:1 12505:1 12510:2 12516:1 12524:1 12525:3 12540:1 12550:1 12566:2 12599:1 12600:2 12651:1 12652:1 12653:1 12671:5 12673:1 12680:1 12684:1 12691:1 12692:3 12698:1 12702:1 12707:1 12710:2 12712:1 12715:1 12719:1 12722:1 12733:2 12741:1 12744:3 12748:2 12756:2 12765:1 12768:1 12769:2 12771:2 12776:1 12792:1 12798:1 12799:3 12829:3 12834:1 12835:2 12837:1 12870:3 12872:3 12874:1 12875:1 12881:1 12882:2 12883:1 12884:9 12886:2 12889:5 12891:1 12892:1 12896:1 12900:2 12904:3 12915:4 12919:1 12924:2 12928:5 12934:1 12937:1 12954:8 12956:1 12960:1 12964:1 12966:1 12968:1 12970:3 12979:1 12980:2 12997:2 13012:1 13019:2 13023:1 13030:1 13033:3 13034:1 13048:1 13049:7 13052:1 13053:2 13062:1 13065:1 13071:1 13075:1 13084:2 13095:3 13114:1 13117:1 13119:2 13122:7 13131:1 13132:1 13136:1 13148:2 13149:4 13150:2 13151:1 13152:1 13160:4 13174:3 13177:1 13178:2 13190:1 13201:2 13221:1 13237:2 13238:1 13243:1 13248:1 13249:1 13250:2 13251:2 13252:2 13254:2 13257:1 13270:1 13273:1 13277:1 13278:1 13281:1 13282:1 13283:2 13296:1 13301:2 13302:1 13307:1 13310:1 13313:1 13314:2 13318:3 13319:1 13330:2 13334:1 13335:1 13352:1 13365:9 13370:2 13371:1 13377:1 13380:1 13411:1 13416:2 13418:1 13434:2 13435:1 13436:2 13439:2 13445:1 13457:1 13458:2 13461:2 13462:1 13467:5 13493:1 13510:1 13515:1 13518:1 13529:2 13530:6 13535:3 13536:8 13543:2 13560:2 13565:3 13578:1 13589:2 13604:1 13610:2 13612:1 13615:2 13616:1 13620:1 13628:1 13629:2 13633:2 13636:1 13656:1 13666:1 13679:1 13722:1 13723:2 13727:1 13728:1 13730:1 13735:2 13750:2 13769:1 13782:1 13795:1 13829:1 13842:1 13854:1 13855:1 13864:2 13880:1 13881:1 13888:1 13894:1 13898:3 13907:2 13908:1 13917:1 13920:1 13924:5 13926:1 13927:1 13935:1 13937:1 13951:2 13952:1 13956:1 13970:1 13971:1 13972:1 13985:1 13989:1 14009:2 14013:1 14035:2 14051:1 14065:1 14070:2 14076:2 14087:2 14091:2 14093:2 14099:1 14106:5 14126:2 14135:1 14142:1 14145:1 14154:2 14158:1 14183:1 14197:1 14225:1 14227:4 14238:1 14249:1 14250:1 14255:1 14271:1 14276:1 14295:1 14303:1 14304:1 14368:1 14370:1 14378:1 14385:1 14401:2 14434:1 14437:4 14443:4 14445:2 14447:1 14450:1 14451:1 14470:2 14475:1 14496:3 14505:1 14516:1 14520:1 14522:1 14541:1 14545:2 14546:1 14551:4 14566:1 14577:1 14584:1 14588:1 14592:2 14596:1 14599:1 14601:1 14613:1 14624:1 14633:2 14656:1 14662:1 14665:3 14667:1 14670:1 14671:1 14678:1 14709:1 14710:1 14747:1 14756:2 14760:3 14761:4 14765:1 14766:1 14792:5 14793:1 14796:1 14811:1 14826:7 14828:2 14832:1 14835:1 14840:1 14855:1 14867:1 14870:1 14877:1 14879:1 14887:4 14894:3 14895:1 14898:2 14906:2 14909:1 14942:1 14951:2 14968:1 14970:1 14978:1 14992:1 14999:1 15006:1 15007:1 15009:1 15011:1 15020:1 15021:1 15023:1 15033:4 15036:2 15058:12 15063:8 15067:1 15073:1 15099:2 15112:1 15113:2 15118:2 15131:4 15134:1 15154:1 15158:1 15164:1 15165:1 15171:1 15183:1 15190:3 15193:1 15194:1 15201:8 15210:3 15211:1 15221:1 15222:1 15224:2 15229:1 15230:1 15232:4 15234:1 15236:1 15238:1 15239:7 15243:3 15244:9 15245:1 15250:2 15254:2 15255:1 15260:1 15263:1 15264:6 15269:4 15300:1 15302:1 15337:1 15345:2 15347:2 15349:2 15355:1 15356:2 15361:2 15366:6 15375:2 15388:2 15401:1 15403:2 15421:2 15425:3 15442:1 15446:2 15460:1 15461:1 15465:2 15472:1 15478:1 15488:1 15496:3 15500:1 15502:9 15513:2 15529:4 15538:1 15540:4 15554:1 15557:2 15566:25 15570:1 15587:1 15596:6 15597:1 15599:2 15620:2 15637:74 15665:3 15669:1 15687:1 15697:1 15708:1 15731:1 15733:1 15734:3 15756:1 15757:1 15758:1 15759:1 15761:1 15762:1 15763:2 15765:1 15766:2 15773:3 15774:7 15776:1 15779:1 15780:4 15783:1 15784:2 15791:2 15797:1 15810:1 15812:1 15815:2 15822:1 15824:1 15831:1 15832:1 15833:1 15855:1 15857:1 15869:1 15876:1 15890:2 15896:1 15902:5 15919:1 15934:2 15938:5 15953:1 15961:2 15969:2 15974:1 15979:1 15988:1 16004:1 16022:1 16026:1 16035:1 16053:1 16054:1 16064:1 16068:1 16078:2 16082:1 16086:1 16087:1 16093:1 16103:1 16107:2 16108:1 16116:1 16130:1 16133:1 16137:2 16146:4 16151:6 16153:1 16156:1 16165:3 16167:2 16168:3 16176:1 16187:3 16190:1 16192:1 16199:3 16210:1 16215:1 16217:3 16219:1 16220:2 16222:1 16228:1 16230:1 16237:1 16249:3 16254:1 16255:13 16262:1 16264:2 16289:2 16300:2 16310:1 16311:3 16335:1 16338:1 16343:1 16348:2 16365:1 16366:3 16369:5 16373:1 16375:3 16378:1 16379:1 16380:2 16390:1 16395:1 16407:1 16416:1 16419:1 16421:1 16426:2 16427:2 16446:2 16450:2 16453:1 16455:2 16459:1 16472:1 16486:1 16491:1 16492:3 16500:1 16501:1 16503:1 16517:1 16533:1 16540:1 16558:1 16562:2 16569:2 16571:1 16582:1 16587:1 16588:2 16589:1 16590:1 16601:1 16608:1 16609:1 16617:2 16623:3 16630:2 16644:1 16646:1 16649:1 16652:1 16654:3 16658:1 16664:1 16666:1 16667:1 16674:1 16676:1 16683:3 16690:1 16704:2 16705:1 16706:1 16718:1 16720:1 16721:1 16726:1 16744:2 16765:1 16766:3 16771:2 16777:1 16780:1 16796:4 16845:2 16847:1 16851:1 16860:1 16866:1 16876:1 16877:1 16879:1 16896:7 16899:3 16900:1 16902:2 16904:1 16905:1 16911:1 16915:2 16916:4 16920:3 16921:1 16932:1 16934:2 16936:3 16940:2 16949:1 16953:1 16954:1 16964:2 16982:1 16987:1 16988:1 16990:1 16993:1 16996:1 17001:1 17004:1 17010:1 17018:2 17019:4 17055:1 17058:2 17061:1 17077:1 17082:1 17085:1 17098:1 17102:2 17103:3 17113:2 17116:1 17117:1 17128:1 17130:1 17135:1 17142:3 17153:1 17161:1 17187:4 17193:1 17194:1 17196:2 17199:2 17201:2 17202:1 17213:1 17219:1 17220:15 17223:2 17234:1 17235:1 17244:1 17248:2 17275:1 17285:2 17287:1 17290:1 17292:2 17294:1 17310:1 17311:2 17317:4 17320:1 17334:2 17338:2 17341:1 17354:1 17361:1 17363:1 17369:1 17376:1 17392:1 17396:4 17403:2 17404:4 17417:2 17446:2 17448:1 17479:1 17481:1 17492:1 17501:1 17513:1 17529:3 17531:2 17540:1 17568:1 17571:1 17578:1 17584:1 17587:1 17595:2 17599:3 17609:2 17616:1 17640:1 17641:1 17646:2 17657:1 17661:1 17666:1 17667:4 17673:1 17685:1 17714:4 17718:1 17723:2 17750:1 17752:2 17754:4 17760:1 17774:6 17779:1 17782:1 17785:3 17787:1 17805:3 17806:1 17811:1 17821:1 17823:2 17828:1 17850:1 17856:1 17873:1 17874:1 17900:2 17912:23 17916:1 17920:1 17923:3 17930:1 17946:1 17949:1 17961:1 17968:1 17969:1 17970:1 17978:1 17979:2 17980:1 17984:2 17986:1 17989:2 17998:1 18003:1 18009:1 18010:1 18013:2 18022:1 18027:1 18031:7 18035:1 18037:2 18038:1 18052:4 18057:2 18065:2 18066:1 18071:2 18095:1 18101:4265 18105:1 18106:1 18118:5 18123:2 18149:1 18157:1 18163:2 18171:1 18177:1 18178:3 18179:2 18188:2 18214:1 18215:3 18216:1 18226:1 18234:2 18245:2 18262:1 18267:1 18271:7 18272:2 18298:3 18306:1 18309:1 18311:3 18314:1 18315:1 18331:1 18333:1 18346:1 18361:1 18362:1 18366:1 18381:1 18408:1 18410:5 18415:1 18423:2 18429:1 18434:1 18439:1 18444:1 18458:1 18462:3 18472:1 18481:2 18491:1 18493:1 18505:1 18512:1 18514:1 18515:1 18524:1 18552:1 18553:1 18557:1 18567:1 18569:2 18572:1 18575:1 18584:5 18599:2 18601:1 18607:1 18618:1 18623:2 18631:1 18667:5 18669:2 18677:1 18679:6 18711:1 18725:1 18731:1 18759:1 18761:1 18780:1 18786:2 18796:1 18799:2 18801:1 18804:2 18813:4 18825:2 18829:1 18830:4 18834:1 18845:1 18847:5 18859:20 18861:1 18871:1 18873:1 18876:1 18877:1 18878:1 18880:3 18881:1 18883:27 18892:2 18904:1 18910:1 18911:6 18912:1 18914:1 18931:1 18936:2 18947:1 18950:7 18968:1 18972:3 18976:1 18977:1 18978:6 18980:2 18983:1 18987:1 18997:2 18998:1 19000:1 19005:1 19028:2 19034:3 19039:1 19055:1 19067:3 19095:1 19099:1 19103:1 19106:1 19108:2 19112:1 19134:1 19148:1 19153:1 19172:1 19176:1 19179:1 19187:1 19206:1 19209:13 19212:1 19220:1 19231:3 19253:2 19254:2 19256:1 19279:1 19291:1 19292:1 19299:2 19305:1 19307:8 19326:1 19329:1 19347:2 19357:1 19359:1 19360:1 19378:1 19383:1 19390:1 19391:1 19394:2 19399:1 19401:2 19402:1 19409:3 19430:1 19436:1 19452:1 19459:4 19464:1 19470:1 19472:1 19488:3 19489:1 19514:3 19516:1 19523:1 19525:1 19538:2 19539:1 19543:3 19545:5 19565:2 19569:1 19574:2 19582:2 19584:1 19586:1 19590:1 19591:8 19594:1 19604:1 19612:1 19630:1 19638:1 19644:1 19663:15 19669:2 19677:2 19679:3 19694:1 19695:1 19706:1 19707:15 19724:1 19737:1 19747:1 19756:1 19759:1 19774:1 19786:2 19791:1 19813:1 19818:1 19821:1 19822:1 19833:2 19853:5 19854:1 19856:2 19865:1 19870:1 19900:2 19910:1 19918:1 19945:6 19955:1 19957:4 19968:1 19979:1 19986:1 19998:1 20006:1 20022:1 20024:2 20044:3 20074:1 20078:3 20086:1 20095:1 20099:1 20109:1 20111:1 20117:1 20119:1 20120:3 20129:1 20131:1 20143:1 20145:1 20148:2 20150:1 20151:1 20169:1 20171:1 20177:1 20193:1 20210:4 20217:1 20224:1 20227:2 20230:1 20231:1 20232:1 20235:2 20236:1 20240:1 20245:14 20248:1 20252:2 20253:1 20257:3 20258:1 20260:5 20261:1 20279:3 20285:3 20289:5 20299:1 20322:6 20325:1 20327:1 20335:1 20336:1 20337:1 20339:1 20352:1 20364:2 20365:1 20366:1 20375:2 20378:1 20396:2 20401:1 20402:1 20413:2 20418:1 20422:10 20428:1 20429:1 20432:2 20438:1 20439:1 20446:1 20448:1 20453:2 20467:1 20484:1 20490:1 20496:1 20499:1 20502:1 20505:1 20507:1 20518:1 20524:3 20528:1 20529:1 20531:1 20533:1 20538:1 20546:4 20559:1 20561:1 20563:1 20567:2 20569:1 20571:1 20572:1 20577:1 20579:1 20583:1 20585:1 20620:1 20628:3 20647:1 20672:1 20678:1 20679:1 20684:2 20703:1 20708:2 20712:1 20716:2 20718:4 20720:2 20723:4 20733:6 20741:1 20743:1 20745:1 20773:1 20777:1 20782:1 20786:2 20787:1 20798:1 20804:1 20808:1 20809:1 20810:1 20812:1 20814:2 20815:2 20822:1 20827:1 20828:1 20836:1 20838:2 20839:1 20840:9 20843:3 20856:2 20860:1 20861:1 20863:1 20870:1 20874:1 20880:1 20888:1 20921:1 20924:2 20926:1 20927:2 20928:1 20934:3 20941:2 20951:1 20952:1 20953:1 20971:1 20973:5 20976:20 20978:1 20990:1 20992:1 20998:3 20999:2 21003:1 21010:1 21014:1 21019:1 21024:1 21026:4 21037:5 21049:1 21053:1 21076:1 21080:3 21082:1 21084:3 21086:1 21090:1 21096:5 21108:1 21113:1 21120:1 21125:1 21140:1 21141:1 21142:4 21150:2 21156:3 21161:1 21180:1 21209:1 21214:1 21223:1 21231:4 21237:2 21238:1 21239:13 21241:3 21245:2 21252:3 21254:1 21255:1 21266:4 21267:3 21269:2 21271:1 21272:1 21276:1 21279:2 21282:2 21283:1 21291:1 21292:2 21293:1 21297:1 21302:1 21306:2 21309:2 21314:1 21318:1 21334:2 21369:1 21379:5 21380:1 21403:1 21407:1 21412:1 21413:2 21423:2 21425:1 21428:1 21435:1 21439:1 21444:1 21446:6 21457:1 21464:1 21467:1 21474:1 21515:25 21516:2 21518:1 21528:1 21537:1 21548:1 21556:2 21569:1 21575:1 21583:1 21594:6 21596:1 21609:1 21611:1 21613:2 21620:1 21621:1 21623:1 21628:2 21637:1 21642:2 21644:1 21645:1 21648:9 21654:1 21657:1 21664:3 21668:4 21679:2 21697:1 21704:1 21706:2 21712:1 21715:1 21718:2 21732:1 21735:1 21738:1 21741:3 21743:2 21745:2 21753:1 21754:1 21766:2 21768:1 21769:1 21781:13 21794:4 21802:2 21807:4 21814:1 21819:1 21828:2 21840:1 21850:1 21856:1 21860:2 21873:1 21874:1 21895:1 21914:1 21929:1 21935:1 21941:3 21946:1 21949:1 21959:1 21967:1 21972:2 21985:1 21989:1 22001:1 22012:1 22015:1 22021:1 22032:1 22038:1 22040:1 22041:2 22042:2 22049:15 22051:2 22077:1 22078:2 22082:2 22090:1 22099:1 22115:1 22120:1 22130:4 22132:1 22133:2 22136:1 22139:1 22154:1 22165:4 22180:1 22185:1 22188:5 22192:1 22209:1 22222:1 22223:1 22225:1 22240:1 22241:1 22246:1 22248:1 22264:2 22270:1 22279:1 22283:1 22284:1 22290:1 22295:2 22296:1 22300:1 22310:1 22315:1 22322:1 22329:1 22333:1 22344:1 22346:1 22348:2 22355:2 22361:1 22374:1 22414:1 22423:1 22424:1 22425:7 22431:1 22432:1 22436:1 22448:1 22452:1 22453:1 22463:2 22466:1 22471:1 22478:1 22481:2 22496:1 22506:1 22508:1 22528:1 22530:2 22534:3 22536:1 22538:1 22548:1 22551:2 22556:1 22558:1 22564:2 22566:1 22568:4 22571:1 22572:1 22587:1 22593:1 22605:1 22607:2 22619:1 22627:4 22628:5 22633:2 22634:1 22646:6 22654:1 22657:1 22665:2 22667:1 22670:1 22672:5 22677:3 22681:1 22683:1 22699:2 22706:1 22707:3 22708:1 22717:1 22720:1 22739:1 22748:6 22755:1 22757:32 22759:1 22808:1 22837:2 22844:1 22846:2 22847:1 22849:1 22856:1 22872:1 22889:1 22899:1 22904:1 22916:3 22922:1 22924:2 22925:1 22937:1 22949:1 22951:1 22957:1 22961:1 22965:2 22983:1 22986:1 22999:1 23000:1 23008:2 23019:1 23022:1 23024:2 23028:1 23033:1 23059:1 23062:2 23076:1 23077:2 23079:1 23089:1 23092:1 23104:6 23109:1 23112:2 23117:1 23122:1 23126:1 23152:1 23159:1 23175:1 23177:1 23192:3 23207:3 23214:1 23215:2 23222:1 23224:2 23227:1 23228:1 23229:2 23246:1 23266:2 23278:1 23284:1 23300:1 23306:1 23313:1 23321:1 23328:1 23334:2 23345:1 23360:1 23362:1 23381:1 23389:1 23391:1 23396:1 23397:10 23398:1 23405:1 23412:1 23413:1 23417:2 23421:3 23434:2 23445:1 23449:1 23470:1 23492:1 23494:1 23502:1 23510:4 23520:1 23521:1 23541:1 23558:1 23568:5 23595:1 23602:1 23633:2 23643:1 23646:1 23655:1 23656:1 23662:1 23665:1 23666:3 23667:5 23668:1 23675:1 23689:1 23697:1 23704:2 23707:3 23712:1 23716:5 23722:2 23726:1 23752:2 23753:2 23766:4 23780:1 23788:1 23791:2 23802:2 23808:1 23820:1 23835:1 23841:1 23844:1 23860:1 23867:4 23870:1 23871:1 23879:3 23883:1 23885:1 23890:1 23899:1 23900:1 23908:1 23916:1 23921:1 23926:1 23933:1 23934:1 23937:1 23939:1 23944:1 23945:1 23954:1 23960:1 23971:1 23980:1 23982:2 23998:2 24003:2 24006:4 24011:1 24013:1 24020:1 24027:1 24036:1 24040:1 24050:1 24052:1 24057:1 24059:1 24081:1 24083:1 24086:1 24099:1 24102:1 24106:2 24144:3 24155:5 24173:1 24179:1 24189:1 24191:1 24208:1 24214:1 24224:1 24230:2 24231:1 24234:1 24236:1 24241:1 24242:7 24252:1 24269:3 24274:2 24275:1 24281:1 24290:1 24306:2 24325:1 24331:1 24339:7 24359:1 24360:1 24363:1 24367:1 24375:1 24382:1 24396:1 24404:2 24406:4 24412:2 24417:1 24420:1 24434:11 24436:1 24457:1 24466:1 24468:1 24473:3 24476:7 24478:1 24483:1 24484:1 24486:1 24488:6 24491:1 24492:1 24506:1 24527:1 24533:1 24534:1 24540:2 24567:1 24568:1 24572:1 24600:1 24611:1 24614:1 24620:1 24634:1 24635:1 24636:1 24637:4 24640:1 24641:3 24644:8 24647:3 24653:1 24659:1 24665:2 24678:1 24692:5 24694:1 24697:2 24702:1 24718:2 24727:1 24728:1 24730:6 24731:2 24740:2 24742:2 24751:4 24760:7 24761:2 24772:3 24782:1 24784:1 24788:1 24789:1 24794:1 24797:1 24817:2 24823:3 24838:1 24841:6 24843:1 24847:1 24854:1 24855:2 24873:2 24883:1 24897:2 24904:1 24915:4 24928:1 24932:1 24942:5 24946:1 24967:4 24969:6 24973:1 24979:1 24990:2 24999:1 25018:1 25051:1 25053:1 25056:1 25061:1 25064:1 25071:1 25081:1 25085:1 25092:4 25109:1 25117:1 25121:1 25131:1 25135:1 25138:2 25140:1 25143:1 25153:1 25157:2 25160:3 25173:1 25175:1 25179:3 25191:1 25194:1 25200:1 25217:2 25218:1 25219:1 25228:1 25230:2 25235:1 25242:1 25256:6 25261:1 25262:1 25264:1 25265:1 25268:2 25272:1 25276:1 25277:1 25283:1 25286:1 25289:3 25323:2 25326:1 25332:2 25342:1 25348:2 25358:1 25360:1 25379:1 25385:2 25387:4 25402:1 25410:24 25414:1 25450:1 25451:1 25455:1 25478:1 25486:1 25494:1 25514:1 25525:1 25530:1 25537:1 25549:5 25555:1 25560:1 25569:1 25571:2 25586:1 25641:2 25660:3 25681:5 25683:2 25684:1 25685:1 25688:1 25695:1 25696:2 25698:1 25699:4 25700:11 25703:2 25705:1 25722:1 25735:1 25742:2 25751:3 25773:1 25779:1 25782:1 25787:1 25793:4 25801:1 25805:1 25819:1 25826:4 25832:1 25833:3 25843:1 25844:1 25852:1 25856:1 25861:2 25866:1 25867:1 25879:1 25901:4 25905:1 25910:2 25916:1 25944:2 25955:1 25957:1 25967:1 25975:3 26008:1 26023:1 26032:1 26042:1 26051:1 26067:1 26069:2 26075:1 26104:3 26107:1 26110:2 26120:2 26137:1 26151:1 26158:1 26189:1 26196:1 26198:1 26201:1 26216:2 26218:2 26228:4 26254:1 26269:1 26272:2 26281:1 26285:2 26288:1 26289:7 26299:1 26301:1 26303:12 26308:1 26314:1 26319:1 26331:2 26332:1 26345:1 26361:1 26383:1 26389:1 26397:32 26398:1 26400:3 26401:1 26410:1 26420:1 26430:6 26447:2 26450:1 26452:1 26453:1 26454:1 26473:1 26495:1 26503:3 26505:3 26509:4 26510:2 26514:1 26519:1 26523:1 26544:2 26546:1 26548:1 26549:1 26555:2 26557:3 26559:2 26562:2 26563:1 26569:1 26570:1 26571:1 26573:1 26576:3 26581:1 26588:3 26590:1 26592:1 26612:2 26624:1 26638:1 26641:2 26651:1 26664:2 26666:1 26686:2 26689:1 26690:1 26705:1 26711:1 26715:3 26716:2 26725:1 26765:2 26766:1 26784:3 26785:2 26789:2 26792:1 26794:1 26797:1 26799:1 26807:4 26808:1 26810:2 26829:2 26840:1 26843:1 26854:1 26863:1 26869:16 26874:1 26875:1 26879:1 26889:1 26894:1 26909:1 26919:1 26951:1 26954:4 26963:4 26977:1 26986:2 26989:1 26993:1 27017:1 27025:1 27035:1 27038:4 27044:1 27058:1 27071:2 27074:1 27075:2 27080:1 27083:2 27108:5 27111:5 27134:1 27135:1 27143:3 27145:1 27157:1 27162:1 27171:1 27177:1 27180:1 27213:1 27216:1 27217:1 27228:4 27231:1 27236:1 27239:1 27248:1 27256:3 27259:2 27271:1 27279:2 27280:31 27281:2 27282:1 27283:3 27287:4 27289:1 27290:1 27300:1 27315:1 27316:13 27326:1 27329:1 27337:2 27364:1 27368:2 27372:1 27373:2 27381:1 27383:3 27394:1 27401:1 27405:7 27414:5 27419:2 27447:4 27448:1 27450:1 27452:2 27458:1 27462:1 27465:1 27477:2 27491:1 27492:1 27495:1 27496:1 27517:1 27519:1 27526:1 27549:1 27550:1 27558:2 27561:1 27562:1 27590:2 27591:2 27594:1 27599:1 27611:1 27619:1 27620:1 27627:1 27629:1 27633:2 27636:1 27638:4 27641:3 27644:1 27658:1 27661:2 27666:1 27676:1 27692:12 27695:1 27697:1 27698:1 27705:4 27708:1 27743:1 27745:1 27749:1 27768:1 27772:4 27773:10 27775:2 27776:1 27780:1 27783:1 27799:2 27804:2 27805:3 27814:1 27816:1 27818:1 27828:2 27834:2 27835:1 27842:1 27864:3 27879:1 27895:1 27914:3 27920:1 27922:2 27926:3 27927:1 27944:1 27951:2 27955:1 27961:2 27963:5 27968:1 27969:1 27971:1 27973:1 27977:5 27984:1 27994:2 28018:1 28026:1 28046:2 28050:1 28053:1 28067:1 28081:1 28106:3 28108:2 28122:1 28138:4 28154:1 28169:2 28172:1 28176:1 28185:1 28210:1 28217:3 28222:1 28229:3 28237:1 28265:1 28283:1 28292:3 28295:1 28297:1 28300:1 28301:1 28314:1 28326:2 28336:1 28340:1 28341:1 28343:8 28344:1 28352:2 28364:2 28370:1 28378:1 28380:2 28391:1 28395:3 28397:2 28412:1 28420:1 28430:5 28437:2 28438:1 28442:1 28496:2 28499:1 28501:1 28503:1 28504:1 28507:1 28509:1 28511:6 28516:1 28523:1 28530:1 28554:1 28560:2 28566:1 28569:1 28574:1 28575:1 28576:2 28579:1 28587:2 28618:1 28624:1 28627:1 28629:1
356f0a4bfe2989322ab890b0b8c42a8ad33ed963
e9affefd4e89b3c7e2064fee8833d7838c0e0abc
/aws-java-sdk-core/src/test/resources/resources/profileconfig/MultipleProfilesWithCsmProperties.tst
74b30414882b0172ee0c6b9fc8ea4f9dea498e50
[ "Apache-2.0" ]
permissive
aws/aws-sdk-java
2c6199b12b47345b5d3c50e425dabba56e279190
bab987ab604575f41a76864f755f49386e3264b4
refs/heads/master
2023-08-29T10:49:07.379135
2023-08-28T21:05:55
2023-08-28T21:05:55
574,877
3,695
3,092
Apache-2.0
2023-09-13T23:35:28
2010-03-22T23:34:58
null
UTF-8
Scilab
false
false
168
tst
MultipleProfilesWithCsmProperties.tst
[aws_csm_1] csm_enabled = true csm_host = bar1 csm_port = 1234 csm_client_id = foo [aws_csm_2] csm_enabled = false csm_host = bar2 csm_port = 5678 csm_client_id = bar
6c5cead49e5a02f4dcfc20f142721427baf05726
fdc5047b7bf8122bad1e621df236b0481226c36e
/virtualHartSci/macros/hrtTypeHex2UInt.sci
98150716fcbb1ed748c109fde517ac00b6603bfe
[]
no_license
jpbevila/virtualHartSci
aea3c6ba23d054670eb193f441ea7de982b531cc
a3f5be6041d230bd9f0fd67e5d7efa71f41cfca5
refs/heads/main
2023-07-26T23:05:28.044194
2021-09-09T11:50:59
2021-09-09T11:50:59
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
138
sci
hrtTypeHex2UInt.sci
function result=hrtTypeHex2UInt(strUInt) number = hex2dec(tokens(strUInt,' ')); result = number(1)*256+number(2); endfunction
f1227d770fe525cd838fbf2b2d719164121e3965
449d555969bfd7befe906877abab098c6e63a0e8
/2231/CH4/EX4.5/Ex_4_5.sce
ab45198f42505c1c2b79a901a108a4a87a34a836
[]
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
283
sce
Ex_4_5.sce
//Example 4_5 clc; clear;close; //Given data: V=400;//V R=0;//ohm L=0.05;//H alfa=0.25;//duty cycle delta_i=10;//A //Solution : Vav=alfa*V;//V delta_T=L*delta_i/(V-Vav);//s Ton=delta_T;///s T=Ton/alfa;//s f=1/T;//pulses/s disp(f,"Chopping frequency(pulses/s)");
67aca4ff70120de74458d357d021791257eaf3fd
449d555969bfd7befe906877abab098c6e63a0e8
/3506/CH4/EX4.2/Ex_4_2.sce
4a9498c978ffb70ec2128cc8c752a27acd26086c
[]
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,360
sce
Ex_4_2.sce
//Optical Fiber communication by A selvarajan //example 4.2 //OS=Windows XP sp3 //Scilab version 5.5.1 clc; clear all; //given lambda=1.3//wavelength of laser in um w=5//active layer width in um d=2//active layer thickness in um n1=3.5//refractive index of core n2=3.49//refractive index of cladding //to find k0=2*%pi/lambda//propagation constant row=0.3//confinement factor neff=sqrt(n2^2+row)//effective refractive index D=k0*d*(sqrt(n1^2-n2^2))//normalized thickness W=k0*w*(sqrt(neff^2-n2^2))//normalized width// the answer given in textbook is wrong Wlat=w*(sqrt(2*log(2)))*(0.32+2.1*(W^-1.5))//Full width lateral at half maximum in um/ the answer given in textbook is wrong Wtra=d*(sqrt(2*log(2)))*(0.32+2.1*(D^-1.5))//Full width transverse at half maximum in um/ the answer given in textbook is wrong mprintf("Normalized thickness=%f",D)//The answers vary due to round off error mprintf("\n Normalized width =%f",W)//multiplication by 1e9 to convert unit from s to ns/// the answer given in textbook is wrong mprintf("\nFull width lateral at half maximum =%f um",Wlat)//multiplication by 1e-6 to convert unit from Hz to MHz//// the answer given in textbook is wrong mprintf("\nFull width transverse at half maximum =%f um",Wtra)//multiplication by 1e-6 to convert unit from Hz to MHz//// the answer given in textbook is wrong
9acf2aeb81a760578e81696f7b96d5b2cb936b0c
449d555969bfd7befe906877abab098c6e63a0e8
/3506/CH2/EX2.8/EXP_2_8.sce
581314c60cd5e43871b1797ab07d50b1854df24a
[]
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
507
sce
EXP_2_8.sce
//Optical Fiber communication by A selvarajan //example 2.8 //OS=Windows XP sp3 //Scilab version 5.5.1 clc; clear all; //given M=1000;//modes supported lambda=1.3;//operating wavelength in um n1=1.5;//refractive index of core n2=1.48;//refractive index of cladding //to find V=sqrt(2*M)// normalised frequency V no. NA=sqrt(n1^2-n2^2)//numerical apperture R=lambda*V/(2*%pi*NA)//radius of fiber in um //display mprintf("Core Radius=%fum",R)//The answer provided in the textbook is wrong
247acdf664c7a9269512734fec0d8712b83258dd
01ecab2f6eeeff384acae2c4861aa9ad1b3f6861
/sci2blif/guicode_v6.sce
d2d5a9751321cb7dbc15e851810a43f88cc0cd69
[]
no_license
jhasler/rasp30
9a7c2431d56c879a18b50c2d43e487d413ceccb0
3612de44eaa10babd7298d2e0a7cddf4a4b761f6
refs/heads/master
2023-05-25T08:21:31.003675
2023-05-11T16:19:59
2023-05-11T16:19:59
62,917,238
3
3
null
null
null
null
UTF-8
Scilab
false
false
54,535
sce
guicode_v6.sce
//Turn off the warning messages in the console previousprot = funcprot(1) //integer with possible values 0, 1, 2 returns previous value funcprot(0) //allows the user to specify what scilab do when such variables are redefined. 0=nothing, 1=warning, 2=error gui=figure('figure_position',[750,200],'figure_size',[300,560],'auto_resize','on','background',[14],'figure_name','Rasp Design'); gui.color_map = wintercolormap(32); delmenu(gui.figure_id,gettext('File')); delmenu(gui.figure_id,gettext('?')); delmenu(gui.figure_id,gettext('Tools')); delmenu(gui.figure_id,gettext('Edit')); toolbar(gui.figure_id,'off'); handles.dummy = 0; handles.email_box=uicontrol(gui,'unit','normalized','BackgroundColor',[0.9,0.9,0.9],'Enable','on','FontAngle','normal','FontName','mukti narrow','FontSize',[13],'FontUnits','points','FontWeight','normal','ForegroundColor',[0,0,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.065,0.937,0.875,0.045],'Relief','sunken','SliderStep',[0.01,0.1],'String','Enter your email ID','Style','edit','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','email_box','Callback','email_box_callback(handles)'); handles.text_box=uicontrol(gui,'unit','normalized','BackgroundColor',[0.9,0.9,0.9],'Enable','on','FontAngle','normal','FontName','mukti narrow','FontSize',[12.5],'FontUnits','points','FontWeight','normal','ForegroundColor',[0,0,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.065,0.873,0.875,0.045],'Relief','flat','SliderStep',[0.01,0.1],'String','No File Selected','Style','text','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','text_box','Callback','text_box_callback(handles)'); handles.Choose_Board=uicontrol(gui,'unit','normalized','BackgroundColor',[1,1,1],'Enable','on','FontAngle','normal','FontName','mukti narrow','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[0,0,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.065,0.795,0.4,0.055],'Relief','flat','SliderStep',[0.01,0.1],'String','Choose Board|3.0|3.0 A|3.0 N|3.0 H','Style','popupmenu','Value',[1 2 3 4 5],'VerticalAlignment','middle','Visible','on','Tag','Choose_Board','Callback','Choose_Board_callback(handles)'); handles.Choose_Chip=uicontrol(gui,'unit','normalized','BackgroundColor',[1,1,1],'Enable','on','FontAngle','normal','FontName','mukti narrow','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[0,0,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.54,0.795,0.4,0.055],'Relief','sunken','SliderStep',[0.01,0.1],'String','Enter Chip Number','Style','edit','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','Choose_Chip','Callback','Choose_Chip_callback(handles)'); handles.New_Design=uicontrol(gui,'unit','normalized','BackgroundColor',[0.8,0.8,0.8],'Enable','on','FontAngle','normal','FontName','mukti narrow','FontSize',[12],'FontUnits','points','FontWeight','bold','ForegroundColor',[0,0,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.065,0.695,0.4,0.08],'Relief','raised','SliderStep',[0.01,0.1],'String','New Design','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','New_Design','Callback','New_Design_callback(handles)'); handles.Choose_Design=uicontrol(gui,'unit','normalized','BackgroundColor',[0.8,0.8,0.8],'Enable','on','FontAngle','normal','FontName','mukti narrow','FontSize',[12],'FontUnits','points','FontWeight','bold','ForegroundColor',[0,0,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.065,0.592,0.4,0.08],'Relief','raised','SliderStep',[0.01,0.1],'String','Choose Design ','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','Choose_Design','Callback','Choose_Design_callback(handles)'); handles.Open_Design=uicontrol(gui,'unit','normalized','BackgroundColor',[0.8,0.8,0.8],'Enable','on','FontAngle','normal','FontName','mukti narrow','FontSize',[12],'FontUnits','points','FontWeight','bold','ForegroundColor',[0,0,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.065,0.489,0.4,0.08],'Relief','raised','SliderStep',[0.01,0.1],'String','Open Design','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','Open_Design','Callback','Open_Design_callback(handles)'); handles.Compile_Design=uicontrol(gui,'unit','normalized','BackgroundColor',[0.8,0.8,0.8],'Enable','on','FontAngle','normal','FontName','mukti narrow','FontSize',[12],'FontUnits','points','FontWeight','bold','ForegroundColor',[0,0,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.065,0.386,0.4,0.08],'Relief','raised','SliderStep',[0.01,0.1],'String','Compile Design','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','Compile_Design','Callback','Compile_Design_callback(handles)'); handles.Program_Design=uicontrol(gui,'unit','normalized','BackgroundColor',[0.8,0.8,0.8],'Enable','on','FontAngle','normal','FontName','mukti narrow','FontSize',[12],'FontUnits','points','FontWeight','bold','ForegroundColor',[0,0,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.065,0.283,0.4,0.08],'Relief','raised','SliderStep',[0.01,0.1],'String','Program Design','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','Program_Design','Callback','Program_Design_callback()'); handles.View_Routing=uicontrol(gui,'unit','normalized','BackgroundColor',[0.8,0.8,0.8],'Enable','on','FontAngle','normal','FontName','mukti narrow','FontSize',[12],'FontUnits','points','FontWeight','bold','ForegroundColor',[0,0,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.065,0.18,0.4,0.08],'Relief','raised','SliderStep',[0.01,0.1],'String','View Routing','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','View_Routing','Callback','View_Routing_callback(handles)'); handles.Reset_Com=uicontrol(gui,'unit','normalized','BackgroundColor',[0.8,0.8,0.8],'Enable','on','FontAngle','normal','FontName','mukti narrow','FontSize',[12],'FontUnits','points','FontWeight','bold','ForegroundColor',[0,0,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.065,0.0787,0.4,0.08],'Relief','raised','SliderStep',[0.01,0.1],'String','Reset Com','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','Reset_Com','Callback','Reset_Com_callback(handles)'); handles.Take_Data=uicontrol(gui,'unit','normalized','BackgroundColor',[0.8,0.8,0.8],'Enable','on','FontAngle','normal','FontName','mukti narrow','FontSize',[12],'FontUnits','points','FontWeight','bold','ForegroundColor',[0,0,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.54,0.695,0.4,0.08],'Relief','raised','SliderStep',[0.01,0.1],'String','Take Data','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','Take_Data','Callback','Take_Data_callback(handles)'); handles.Send_Email=uicontrol(gui,'unit','normalized','BackgroundColor',[0.8,0.8,0.8],'Enable','on','FontAngle','normal','FontName','mukti narrow','FontSize',[12],'FontUnits','points','FontWeight','bold','ForegroundColor',[0,0,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.54,0.592,0.4,0.08],'Relief','raised','SliderStep',[0.01,0.1],'String','Send Email','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','Send_Email','Callback','Send_Email_callback(handles)'); handles.Load_Data=uicontrol(gui,'unit','normalized','BackgroundColor',[0.8,0.8,0.8],'Enable','on','FontAngle','normal','FontName','mukti narrow','FontSize',[12],'FontUnits','points','FontWeight','bold','ForegroundColor',[0,0,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.54,0.489,0.4,0.08],'Relief','raised','SliderStep',[0.01,0.1],'String','Load Remote Data','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','Load_Data','Callback','Load_Data_callback(handles)'); handles.Choose_Netlist=uicontrol(gui,'unit','normalized','BackgroundColor',[0.8,0.8,0.8],'Enable','on','FontAngle','normal','FontName','mukti narrow','FontSize',[12],'FontUnits','points','FontWeight','bold','ForegroundColor',[0,0,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.54,0.386,0.4,0.08],'Relief','raised','SliderStep',[0.01,0.1],'String','Choose Netlist','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','Choose_Netlist','Callback','Choose_Netlist_callback(handles)'); handles.Program_Netlist=uicontrol(gui,'unit','normalized','BackgroundColor',[0.8,0.8,0.8],'Enable','on','FontAngle','normal','FontName','mukti narrow','FontSize',[12],'FontUnits','points','FontWeight','bold','ForegroundColor',[0,0,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.54,0.283,0.4,0.08],'Relief','raised','SliderStep',[0.01,0.1],'String','Program Netlist','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','Program_Netlist','Callback','Program_Netlist_callback(handles)'); handles.Choose_Swc_List=uicontrol(gui,'unit','normalized','BackgroundColor',[0.8,0.8,0.8],'Enable','on','FontAngle','normal','FontName','mukti narrow','FontSize',[12],'FontUnits','points','FontWeight','bold','ForegroundColor',[0,0,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.54,0.18,0.4,0.08],'Relief','raised','SliderStep',[0.01,0.1],'String','Choose Switches','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','Choose_Swc_List','Callback','Choose_Swc_List_callback(handles)'); handles.Program_SwcList=uicontrol(gui,'unit','normalized','BackgroundColor',[0.8,0.8,0.8],'Enable','on','FontAngle','normal','FontName','mukti narrow','FontSize',[12],'FontUnits','points','FontWeight','bold','ForegroundColor',[0,0,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.54,0.0787,0.4,0.08],'Relief','raised','SliderStep',[0.01,0.1],'String','Program Switches','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','Program_SwcList','Callback','Program_SwcList_callback(handles)'); exec('/home/ubuntu/rasp30/sci2blif/fpaacal_fcn.sce',-1); exec('/home/ubuntu/rasp30/sci2blif/macroblif_gen_fcn.sce',-1); exec('/home/ubuntu/rasp30/sci2blif/macrocab_gen_fcn.sce',-1); exec('/home/ubuntu/rasp30/sci2blif/level1_sim_gen_fcn.sce',-1); exec('/home/ubuntu/rasp30/sci2blif/block_doc_gen_fcn.sce',-1); exec('/home/ubuntu/rasp30/sci2blif/send_email_ip_pw_fcn.sce',-1); exec('/home/ubuntu/rasp30/sci2blif/dsgnmtrcs_fcn.sce',-1); //exec("/home/ubuntu/rasp30/sci2blif/dsgnmtrcs.sce",-1); exec('/home/ubuntu/rasp30/sci2blif/bcd_fcn.sce',-1); exec("/home/ubuntu/rasp30/sci2blif/demo_examples/example_inputs.sce"); exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/sftreg_miteADC.sce', -1); //Add custom menus file_menu = uimenu("Parent", gui, "Label", gettext("Examples"),'ForegroundColor',[1,1,1]); file19_menu = uimenu("Parent", file_menu, "Label", gettext("On chip")); file23_menu = uimenu("Parent", file_menu, "Label", gettext("IO Pins")); file1_menu = uimenu("Parent", file_menu, "Label", gettext("L1 Simulation")); file31_menu = uimenu("Parent", file_menu, "Label", gettext("L2 Simulations")); // demo_fname,com_prep_index,arb_msg_index file20_menu = uimenu("Parent", file19_menu, "Label", gettext("DAC to ADC"), "callback", "demo_example_callback(""dac_adc_onchip"",""on"",""on"")"); file21_menu = uimenu("Parent", file19_menu, "Label", gettext("LPF"), "callback", "demo_example_callback(""lpf_onchip"",""on"",""on"")"); file22_menu = uimenu("Parent", file19_menu, "Label", gettext("C4"), "callback", "demo_example_callback(""c4_onchip"",""on"",""on"")"); file35_menu = uimenu("Parent", file19_menu, "Label", gettext("C4 with Min-Max detector"), "callback", "demo_example_callback(""c4_minmax_onchip"",""on"",""on"")"); file36_menu = uimenu("Parent", file19_menu, "Label", gettext("WTA"), "callback", "demo_example_callback(""wta_onchip"",""on"",""on"")"); file49_menu = uimenu("Parent", file19_menu, "Label", gettext("Passive Channel"), "callback", "demo_example_callback(""pc_1"",""on"",""on"")"); file39_menu = uimenu("Parent", file19_menu, "Label", gettext("HHneuron"), "callback", "demo_example_callback(""hhn_onchip"",""on"",""on"")"); file40_menu = uimenu("Parent", file19_menu, "Label", gettext("Follower"), "callback", "demo_example_callback(""Follower"",""on"",""on"")"); file41_menu = uimenu("Parent", file19_menu, "Label", gettext("Ax=b"), "callback", "demo_example_callback(""matmul_sft"",""on"",""onsp"")"); file24_menu = uimenu("Parent", file23_menu, "Label", gettext("LPF"), "callback", "demo_example_callback(""lpf_offchip"",""on"",""off"")"); file25_menu = uimenu("Parent", file23_menu, "Label", gettext("Digital"), "callback", "demo_example_callback(""digital_offchip"",""on"",""off"")"); file26_menu = uimenu("Parent", file23_menu, "Label", gettext("C4"), "callback", "demo_example_callback(""c4_offchip"",""on"",""off"")"); file27_menu = uimenu("Parent", file23_menu, "Label", gettext("HHneuron"), "callback", "demo_example_callback(""hhn_offchip"",""on"",""off"")"); file28_menu = uimenu("Parent", file23_menu, "Label", gettext("Synfire"), "callback", "demo_example_callback(""sch"",""on"",""off"")"); file29_menu = uimenu("Parent", file23_menu, "Label", gettext("Mead SOS"), "callback", "demo_example_callback(""MSOS02_test01"",""on"",""off"")"); file4_menu = uimenu("Parent", file1_menu, "Label", gettext("LPF"), "callback", "demo_example_callback(""lpf_l1_sim"",""off"",""on"")"); file5_menu = uimenu("Parent", file1_menu, "Label", gettext("C4"), "callback", "demo_example_callback(""c4_l1_sim"",""off"",""on"")"); file32_menu = uimenu("Parent", file31_menu, "Label", gettext("nFET"), "callback", "demo_example_callback(""nmos_l2_sim"",""off"",""off"")"); file33_menu = uimenu("Parent", file31_menu, "Label", gettext("pFET"), "callback", "demo_example_callback(""pmos_l2_sim"",""off"",""off"")"); file34_menu = uimenu("Parent", file31_menu, "Label", gettext("OTA"), "callback", "demo_example_callback(""ota_l2_sim"",""off"",""off"")"); file37_menu = uimenu("Parent", file31_menu, "Label", gettext("C4"), "callback", "demo_example_callback(""c4_l2_sim"",""off"",""off"")"); file38_menu = uimenu("Parent", file31_menu, "Label", gettext("Bias generator"), "callback", "demo_example_callback(""biasgen_l2_sim"",""off"",""off"")"); update_menu = uimenu("Parent", gui, "Label", gettext("Update"),'ForegroundColor',[1,1,1]); update1_menu = uimenu("Parent", update_menu, "Label", gettext("Update RASP Tools"), "callback", "up1_callback()"); update2_menu = uimenu("Parent", update_menu, "Label", gettext("Reset RASP Tools"), "callback", "up2_callback()"); doc_menu = uimenu("Parent", gui, "Label", gettext("Docs"), 'ForegroundColor',[1,1,1]); doc_block_menu = uimenu("Parent", doc_menu, "Label", gettext("Open block documentation"), "callback", "doc_block_callback()"); doc_full_menu = uimenu("Parent", doc_menu, "Label", gettext("Open full documentation"), "callback", "doc_full_callback()"); doc1_menu = uimenu("Parent", doc_menu, "Label", gettext("RASP 3.0 Board"), "callback", "open_document(""30board.pdf"")"); doc2_menu = uimenu("Parent", doc_menu, "Label", gettext("RASP 3.0a Board"), "callback", "open_document(""30aboard.pdf"")"); doc3_menu = uimenu("Parent", doc_menu, "Label", gettext("VM Setup && Remote System Guide"), "callback", "open_document(""VM_FPAA_setup.pdf"")"); doc4_menu = uimenu("Parent", doc_menu, "Label", gettext("Design Simulation && Programming FPAA Guide"), "callback", "open_document(""demo_block_discussion.pdf"")"); doc5_menu = uimenu("Parent", doc_menu, "Label", gettext("Useful Websites for Blocks"), "callback", "open_document(""blockappearance.pdf"")"); doc7_menu = uimenu("Parent", doc_menu, "Label", gettext("Block Library Information"), "callback", "open_document(""./blocks_latex/block_doc.pdf"")"); doc6_menu = uimenu("Parent", doc_menu, "Label", gettext("Install Adobe Reader"), "callback", "doc6_callback()"); etc_menu = uimenu("Parent", gui, "Label", gettext("Utilities"), 'ForegroundColor',[1,1,1]); etc7_menu = uimenu("Parent", etc_menu, "Label", gettext("Initialize Ammeter"), "callback", "etc7_callback()"); etc8_menu = uimenu("Parent", etc_menu, "Label", gettext("Create/Load CSV File")); etc10_menu = uimenu("Parent", etc8_menu, "Label", gettext("Create .csv File"), "callback", "etc10_callback()"); etc9_menu = uimenu("Parent", etc8_menu, "Label", gettext("Load .csv File"), "callback", "etc9_callback()"); etc4_menu = uimenu("Parent", etc_menu, "Label", gettext("On/Off Programming Graphs")); etc3_menu = uimenu("Parent", etc_menu, "Label", gettext("Close Programming Graphs"), "callback", "etc3_callback()"); etc2_menu = uimenu("Parent", etc_menu, "Label", gettext("Fine Tune Switches"), "callback", "etc2_callback()"); etc5_menu = uimenu("Parent", etc4_menu, "Label", gettext("Programming Graphs On"), "callback", "etc5_callback()"); etc6_menu = uimenu("Parent", etc4_menu, "Label", gettext("Programming Graphs Off"), "callback", "etc6_callback()"); etc1_menu = uimenu("Parent", etc_menu, "Label", gettext("Delete Hidden Folder"), "callback", "etc1_callback()"); etc11_menu = uimenu("Parent", etc_menu, "Label", gettext("On/Off Design Metrics")); etc12_menu = uimenu("Parent", etc11_menu, "Label", gettext("Design Metrics On"), "callback", "etc12_callback()"); etc13_menu = uimenu("Parent", etc11_menu, "Label", gettext("Design Metrics Off"), "callback", "etc13_callback()"); etc14_menu = uimenu("Parent", etc_menu, "Label", gettext("Compilation Check 3.0/3.0a"), "callback", "etc14_callback()"); etc15_menu = uimenu("Parent", etc_menu, "Label", gettext("Convert to Modelica blocks"), "callback", "etc15_callback()"); gui_menu = uimenu("Parent", gui, "Label", gettext("GUIs"), 'ForegroundColor',[1,1,1]); gui1_menu = uimenu("Parent", gui_menu, "Label", gettext("Calibration"), 'ForegroundColor',[0,0,0], "callback", "gui1_callback()"); gui7_menu = uimenu("Parent", gui_menu, "Label", gettext("Generate Macro blocks")); gui4_menu = uimenu("Parent", gui7_menu, "Label", gettext("Generate Macro-BLIF"), 'ForegroundColor',[0,0,0], "callback", "gui4_callback()"); gui6_menu = uimenu("Parent", gui7_menu, "Label", gettext("Generate Macro-CAB"), 'ForegroundColor',[0,0,0], "callback", "gui6_callback()"); gui9_menu = uimenu("Parent", gui_menu, "Label", gettext("Block & Connection Description"), 'ForegroundColor',[0,0,0], "callback", "gui9_callback()"); gui8_menu = uimenu("Parent", gui_menu, "Label", gettext("Generate Level1 Sim."), 'ForegroundColor',[0,0,0], "callback", "gui8_callback()"); gui2_menu = uimenu("Parent", gui_menu, "Label", gettext("Generate Block Document"), 'ForegroundColor',[0,0,0], "callback", "gui2_callback()"); gui5_menu = uimenu("Parent", gui_menu, "Label", gettext("Design Metrics"), 'ForegroundColor',[0,0,0], "callback", "gui5_callback()"); ////////// // Callbacks are defined as below. ////////// clearglobal file_name fname path extension email_name chip_num addvmm rm_results board_num showprog csvdata plcvpr pass_num cap_info show_dsgnmatrics; global file_name fname path extension email_name chip_num addvmm rm_results board_num showprog csvdata plcvpr pass_num cap_info show_dsgnmatrics; global sft_chk ramp_chk; global Ut_sim Kappa_sim Sigma_sim; Ut_sim=0.0256; Kappa_sim=0.7; Sigma_sim=0.001; sft_chk=0;ramp_chk=0; showprog = 0; show_dsgnmatrics=0; function email_box_callback(handles) global email_name; email_name = handles.email_box.string; endfunction function text_box_callback(handles) global file_name path fname extension; handles.text_box.string=basename(file_name)+extension; endfunction function Choose_Chip_callback(handles) global chip_num; chip_num = handles.Choose_Chip.string; endfunction function Choose_Board_callback(handles) global board_num brdtype; if (handles.Choose_Board.value == 1) then board_num=1; elseif (handles.Choose_Board.value == 2) then board_num=2; brdtype = ''; disp('You are now using the settings for the 3.0 Board'); elseif (handles.Choose_Board.value == 3) then board_num=3; brdtype = '_30a'; disp('You are now using the settings for the 3.0 A Board'); elseif (handles.Choose_Board.value == 4) then board_num=4; brdtype = '_30n'; disp('You are now using the settings for the 3.0 N Board'); elseif (handles.Choose_Board.value == 5) then board_num=5; brdtype = '_30h'; disp('You are now using the settings for the 3.0 H Board'); else end endfunction function New_Design_callback(handles) xcos; endfunction function Choose_Design_callback(handles) clc; global file_name path fname extension dirpwd; file_name2 = file_name; path = pwd(); dirpwd = pwd()+'/'; file_name = uigetfile(["*.xcos*"],path, "Choose the Design to be Compiled"); [path,fname,extension]=fileparts(file_name); if(path ~= "") then if(path ~= dirpwd) then cd(path); filebrowser(); end clear scs_m blk_objs blk; global scs_m; text_box_callback(handles) else if handles.text_box.string ~= 'No File Selected' then [path,fname,extension]=fileparts(file_name2); file_name=file_name2; end end endfunction function Open_Design_callback(handles) global file_name path fname extension; if(fname ~= "") then if(extension == '.xcos') then xcos(file_name); else messagebox(["You have not selected a Design (.xcos)" "Please choose one to open."], "No Design Selected", "warning"); end else messagebox(["You have not selected a Design (.xcos)" "Please choose one to open."], "No Design Selected", "warning"); end endfunction function Compile_Design_callback(handles) global file_name path fname extension; if(extension == '.xcos') then importXcosDiagram(file_name); clc; if show_dsgnmatrics == 0 then pass_num=1; cap_info = tlist('capinfo'); exec('/home/ubuntu/rasp30/sci2blif/sci2blif.sce', -1); end if show_dsgnmatrics == 1 then exec("/home/ubuntu/rasp30/sci2blif/dsgnmtrcs.sce",-1); pass_num=1; cap_info = tlist('capinfo'); exec('/home/ubuntu/rasp30/sci2blif/sci2blif.sce', -1); pass_num=2; exec('/home/ubuntu/rasp30/sci2blif/sci2blif.sce', -1); Board_settings(); Design_Metrics(); end filebrowser(); else messagebox(["You have not selected a Design (.xcos)" "Please choose one to compile."], "No File Selected", "warning"); end endfunction function Program_Design_callback(handles) global file_name path fname extension; clc; x = fileinfo(fname + '.swcs') if(x ~= []) then //mm=waitbar("Program Status"); disp('Programming...'); [amm_opt, amm_con1] = unix_g('sudo chmod 777 /dev/rasp30'); if amm_con1 then messagebox(["FPAA Board is not connected under the VM Devices tab." "Please select the board and initiate again."],"FPAA Board is not Connected via USB Devices" , "info", "modal"); //close(mm) disp('Programming has stopped.'); else // Count # of switches and target_fgs. swc_fg_list = fscanfMat(path+fname+'.swcs'); temp_size= size(swc_fg_list); n=temp_size(1,1); No_swcs=0; No_swcs_sr=0; No_target_fgs=0; tar_prog_offset1=0; tar_prog_offset2=0; tar_prog_offset3=0; tar_prog_offset4=0; tar_prog_offset6=0; for i=1:n if swc_fg_list(i,4) == 0 & swc_fg_list(i,3) == 0 then No_swcs=No_swcs+1; end if swc_fg_list(i,4) == 0 & swc_fg_list(i,3) == 1 then No_swcs_sr=No_swcs_sr+1; end if swc_fg_list(i,4) == 1 then No_target_fgs=No_target_fgs+1; tar_prog_offset1=20; end if swc_fg_list(i,4) == 2 then No_target_fgs=No_target_fgs+1; tar_prog_offset2=20; end if swc_fg_list(i,4) == 3 then No_target_fgs=No_target_fgs+1; tar_prog_offset3=20; end if swc_fg_list(i,4) == 4 then No_target_fgs=No_target_fgs+1; tar_prog_offset4=20; end if swc_fg_list(i,4) == 6 then No_target_fgs=No_target_fgs+1; tar_prog_offset6=20; end end tun_revtun_time=7; // Tunnel and Reverse tunnel time (s) (a value measured in scilab execution) swc_prog_unit=0.3; swc_prog_offset=9; // Switch program unit time (s) (a value measured in scilab execution) swc_prog_time=swc_prog_offset+swc_prog_unit*(No_swcs+10*No_swcs_sr); tar_prog_unit=20; // Target program unit time (s) (a value measured in scilab execution) tar_prog_time=tar_prog_offset1+tar_prog_offset2+tar_prog_offset3+tar_prog_offset4+tar_prog_offset6+tar_prog_unit*No_target_fgs dc_time=5 // DC setup time (s) (a value measured in scilab execution) string_tun_revtun='Tunnel & Rev. tunnel (../'+string(tun_revtun_time)+'s)'; string_prog_swc='Program Switches (../'+string(swc_prog_time)+'s)'; string_prog_tar='Program Target FGs (../'+string(tar_prog_time)+'s)'; string_dc_setup='DC setup (../'+string(dc_time)+'s)'; winH=progressionbar(['-> '+string_tun_revtun string_prog_swc string_prog_tar string_dc_setup]); tic(); realtimeinit(1); realtime(0); realtime(2); exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/tunnel_revtun_ver00_gui.sce', -1); time1=toc(); string_tun_revtun='Tunnel & Rev. tunnel ('+string(time1)+'/'+string(tun_revtun_time)+'s)'; disp('tunnel, reverse tunnel done'); progressionbar(winH,[string_tun_revtun '-> '+string_prog_swc string_prog_tar string_dc_setup]); tic(); realtimeinit(1); realtime(0); realtime(2); exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/switch_program_ver05_gui.sce', -1); time1=toc(); string_prog_swc='Program Switches ('+string(time1)+'/'+string(swc_prog_time)+'s)'; disp('switch_program done'); progressionbar(winH,[string_tun_revtun string_prog_swc '-> '+string_prog_tar string_dc_setup]); tic(); realtimeinit(1); realtime(0); realtime(2); exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/target_program_ver02_gui.sce', -1); time1=toc(); string_prog_tar='Program Target FGs ('+string(time1)+'/'+string(tar_prog_time)+'s)'; disp('target_program done'); b1=unix("ls "+hid_dir+"/switch_list_ble"); if (b1==0) then progressionbar(winH,[string_tun_revtun string_prog_swc string_prog_tar '-> Program ble switches' string_dc_setup]); exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/tunnel_clb_ver00_gui.sce', -1); disp('tunnel , reverse tunnel for clb done'); exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/switch_program_ble_ver00_gui.sce', -1); disp('switch_program for ble done'); end progressionbar(winH,[string_tun_revtun string_prog_swc string_prog_tar '-> '+string_dc_setup]); tic(); realtimeinit(1); realtime(0); realtime(2); // exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/dc_setup_gui.sce', -1); time1=toc(); string_dc_setup='DC setup ('+string(time1)+'/'+string(dc_time)+'s)'; disp('DC setup done'); disp("Programming Completed...Ready to Take Data"); close(winH); filebrowser(); //Play a sound to indicate programming is finished //Sound is housed in a .wav file, can be changed by user if desired //Defaults is Mario coin sound unix_w('aplay /home/ubuntu/rasp30/sci2blif/Sound.wav'); end else messagebox(["You do not have a ' + fname+ '.swcs file in the current directory." "Please create one by compiling a design or netlist."], "No Switch List Detected", "warning"); end endfunction function vprinfo() global board_num brdtype; select board_num case 2 then arch = 'rasp3'; brdtype = ''; loc_num=1; case 3 then arch = 'rasp3a'; brdtype = ' -'+arch; loc_num=2; case 4 then arch = 'rasp3n'; brdtype = ' -'+arch; loc_num=3; case 5 arch = 'rasp3h'; brdtype = ' -'+arch; loc_num=4; else messagebox('Please select the FPAA board that you are using.', "No Selected FPAA Board", "error"); abort; end endfunction function View_Routing_callback(handles) global file_name path fname extension addvmm plcvpr; x = fileinfo(fname + '.blif'); if(x ~= []) then hid_dir=path+'.'+fname; unix_s('mkdir -p '+hid_dir); x = fileinfo(hid_dir+'/' +fname' + '.pads'); if(x ~= []) then //pads file is in hidden dir vprinfo(); unix_s('mv ' + hid_dir+'/' +fname' + '.pads '+ hid_dir+'/' +fname' + '.place '+ hid_dir+'/' +fname' + '.net '+ hid_dir+'/' +fname' + '.route '+ path); //if plcvpr & addvmm then unix_s('python /home/ubuntu/rasp30/vpr2swcs/genswcs.py -c ' + path + fname + ' -d '+ path + ' -vmm -route' + brdtype +' -v'); if plcvpr & addvmm then unix_s('python /home/ubuntu/rasp30/vpr2swcs/genswcs.py -c ' + path + fname + ' -d '+ path + ' -route' + brdtype +' -v'); elseif plcvpr then unix_s('python /home/ubuntu/rasp30/vpr2swcs/genswcs.py -c ' + path + fname + ' -d '+ path+ ' -route' + brdtype+' -v'); //elseif addvmm then unix_s('python /home/ubuntu/rasp30/vpr2swcs/genswcs.py -c ' + path + fname + ' -d '+ path + ' -vmm' + brdtype+' -v'); elseif addvmm then unix_s('python /home/ubuntu/rasp30/vpr2swcs/genswcs.py -c ' + path + fname + ' -d '+ path + brdtype+' -v'); else unix_s('python /home/ubuntu/rasp30/vpr2swcs/genswcs.py -c ' + path + fname + ' -d '+ path + brdtype+' -v'); end unix_s('mv ' + fname' + '.pads ' + fname + '.place ' + fname + '.net ' + fname + '.route ' +hid_dir); filebrowser(); else //pads not in hidden dir x = fileinfo(fname' + '.pads'); if(x ~= []) then //pads file in current dir vprinfo(); //if plcvpr & addvmm then unix_s('python /home/ubuntu/rasp30/vpr2swcs/genswcs.py -c ' + path + fname + ' -d '+ path + ' -vmm -route' + brdtype +' -v'); if plcvpr & addvmm then unix_s('python /home/ubuntu/rasp30/vpr2swcs/genswcs.py -c ' + path + fname + ' -d '+ path + ' -route' + brdtype +' -v'); elseif plcvpr then unix_s('python /home/ubuntu/rasp30/vpr2swcs/genswcs.py -c ' + path + fname + ' -d '+ path+ ' -route' + brdtype+' -v'); //elseif addvmm then unix_s('python /home/ubuntu/rasp30/vpr2swcs/genswcs.py -c ' + path + fname + ' -d '+ path + ' -vmm' + brdtype+' -v'); elseif addvmm then unix_s('python /home/ubuntu/rasp30/vpr2swcs/genswcs.py -c ' + path + fname + ' -d '+ path + brdtype+' -v'); else unix_s('python /home/ubuntu/rasp30/vpr2swcs/genswcs.py -c ' + path + fname + ' -d '+ path + brdtype+' -v'); end unix_s('mv ' + fname' + '.pads ' + fname + '.place ' + fname + '.net ' + fname + '.route ' +hid_dir); filebrowser(); else messagebox(["You do not have a ' + fname+ '.pads file in the current directory." "Please create one by compiling your design or by hand."], "Missing File", "warning"); end end else messagebox(["You do not have a ' + fname+ '.blif file in the current directory." "Please create one by compiling your design or by hand."], "Missing File", "warning"); end endfunction function Take_Data_callback(handles) disp('Taking Data...'); //exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/dc_setup_gui.sce', -1); //disp('DC setup done'); global RAMP_ADC_check sftreg_check Signal_DAC_check GPIO_IN_check MITE_ADC_check ONchip_ADC; //global RAMP_ADC_check;//had to add this for ramp if (Signal_DAC_check==1) & (GPIO_IN_check==0) & (RAMP_ADC_check==1) then noDAC=1; exec("~/rasp30/prog_assembly/libs/scilab_code/Ramp_ADC_voltage.sce",-1); elseif (Signal_DAC_check==1) & (GPIO_IN_check==0) & (ONchip_ADC==1) then exec("~/rasp30/prog_assembly/libs/scilab_code/ADC_onchip.sce",-1); [Out,out_volt] = ADC(1); else exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/voltage_measurement_gui.sce', -1); end disp("Data Collected "); filebrowser(); endfunction function Send_Email_callback(handles) global email_name fname; if (email_name == []) then messagebox(["Please provide your email address in the designated location."], "No Netlist Selected", "warning"); else exec('/home/ubuntu/rasp30/sci2blif/send_email_ip_pw.sce',-1); end endfunction function Load_Data_callback(handles) global path fname rm_results; disp("Loading Data..."); unix_s('python /home/ubuntu/rasp30/sci2blif/rmunzip.py ' + path) exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/outhexfile2voltfile_gui.sce', -1); rm_results=fscanfMat(path + fname +'.data') figure();plot(rm_results) disp("Your data is loaded and saved in the variable rm_results. It can also be located in the Variable Browser."); endfunction function Choose_Netlist_callback(handles) clc; global file_name path fname extension; path = pwd(); dirpwd = pwd()+'/'; file_name=uigetfile(["*.blif*"],path, "Choose the Netlist to be Compiled"); [path,fname,extension]=fileparts(file_name); if(path ~= "") then if(path ~= dirpwd) then cd(path); filebrowser(); end text_box_callback(handles) end endfunction function Program_Netlist_callback(handles) global file_name path fname extension; clc; [amm_opt, amm_con1] = unix_g('sudo chmod 777 /dev/rasp30'); if amm_con1 then messagebox(["FPAA Board is not connected under the VM Devices tab." "Please select the board and program again."],"FPAA Board is not Connected via USB Devices" , "info", "modal"); else hid_dir=path+'.'+fname; if(extension == '.blif') then unix_s('mkdir -p '+hid_dir); x = fileinfo(hid_dir+'/' +fname + '.pads') if(x ~= []) then //pads file is in hidden dir unix_s('mv ' + hid_dir+'/' +fname' + '.pads '+ path); disp("Determining the Switch List..."); unix_s('python /home/ubuntu/rasp30/vpr2swcs/genswcs.py -c ' + path + fname + ' -d '+ path); unix_s('mv ' + fname' + '.pads ' + fname + '.place ' + fname + '.net ' + fname + '.route ' +hid_dir); disp("Switch List Created."); filebrowser(); disp('Programming...') exec("~/rasp30/prog_assembly/libs/scilab_code/MakeProgramlilst_CompileAssembly.sce",-1); exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/tunnel_revtun_ver00_gui.sce', -1); disp('tunnel , reverse tunnel done'); exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/switch_program_ver05_gui.sce', -1); disp('switch_program done'); exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/target_program_ver02_gui.sce', -1); disp('target_program done'); disp("Programming Completed...Ready to Take Data"); else //pads not in hidden dir x = fileinfo(fname + '.pads') if(x ~= []) then //pads file in current dir disp("Determining the Switch List..."); unix_s('python /home/ubuntu/rasp30/vpr2swcs/genswcs.py -c ' + path + fname + ' -d '+ path); unix_s('mv ' + fname' + '.pads ' + fname + '.place ' + fname + '.net ' + fname + '.route ' +hid_dir); disp("Switch List Created."); filebrowser(); disp('Programming...') exec("~/rasp30/prog_assembly/libs/scilab_code/MakeProgramlilst_CompileAssembly.sce",-1); exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/tunnel_revtun_ver00_gui.sce', -1); disp('tunnel , reverse tunnel done'); exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/switch_program_ver05_gui.sce', -1); disp('switch_program done'); exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/target_program_ver02_gui.sce', -1); disp('target_program done'); disp("Programming Completed...Ready to Take Data"); else messagebox(["You do not have a ' + fname+ '.pads file in the current directory." "Please create one by compiling a design or doing by hand."], "Missing File", "warning"); end end else messagebox(["You have not selected a Netlist (.blif)" "Please choose one to compile."], "No Netlist Selected", "warning"); end end endfunction function Choose_Swc_List_callback(handles) clc; global file_name path fname extension; path = pwd(); dirpwd = pwd()+'/'; file_name=uigetfile(["*.swcs*"],path, "Choose the Switch List to be Compiled"); [path,fname,extension]=fileparts(file_name); if(path ~= "") then if(path ~= dirpwd) then cd(path); filebrowser(); end text_box_callback(handles) end endfunction function Program_SwcList_callback(handles) global file_name path fname extension; clc; if(extension == '.swcs') then unix_g('>./input_vector'); y_input=mopen('./input_vector','wb'); mputl('0x0001 0x000c 0x03e8 0xb238 0xFFFF',y_input); mclose(y_input); disp('Programming...'); errcatch(-1,"pause"); hid_dir=path+'.'+fname; unix_s('mkdir -p '+hid_dir); x = fileinfo('input_vector') if(x == []) then fd = mopen('input_vector','wt'); mputl('0x0000 0x0000 0x03e8 0xFFFF', fd); mclose(fd); // making fake input_vector end exec("~/rasp30/prog_assembly/libs/scilab_code/MakeProgramlilst_CompileAssembly.sce",-1); // Count # of switches and target_fgs. swc_fg_list = fscanfMat(path+fname+'.swcs'); temp_size= size(swc_fg_list); n=temp_size(1,1); No_swcs=0; No_swcs_sr=0; No_target_fgs=0; tar_prog_offset1=0; tar_prog_offset2=0; tar_prog_offset3=0; tar_prog_offset4=0; tar_prog_offset6=0; for i=1:n if swc_fg_list(i,4) == 0 & swc_fg_list(i,3) == 0 then No_swcs=No_swcs+1; end if swc_fg_list(i,4) == 0 & swc_fg_list(i,3) == 1 then No_swcs_sr=No_swcs_sr+1; end if swc_fg_list(i,4) == 1 then No_target_fgs=No_target_fgs+1; tar_prog_offset1=20; end if swc_fg_list(i,4) == 2 then No_target_fgs=No_target_fgs+1; tar_prog_offset2=20; end if swc_fg_list(i,4) == 3 then No_target_fgs=No_target_fgs+1; tar_prog_offset3=20; end if swc_fg_list(i,4) == 4 then No_target_fgs=No_target_fgs+1; tar_prog_offset4=20; end if swc_fg_list(i,4) == 6 then No_target_fgs=No_target_fgs+1; tar_prog_offset6=20; end end tun_revtun_time=7; // Tunnel and Reverse tunnel time (s) (a value measured in scilab execution) swc_prog_unit=0.3; swc_prog_offset=9; // Switch program unit time (s) (a value measured in scilab execution) swc_prog_time=swc_prog_offset+swc_prog_unit*(No_swcs+10*No_swcs_sr); tar_prog_unit=20; // Target program unit time (s) (a value measured in scilab execution) tar_prog_time=tar_prog_offset1+tar_prog_offset2+tar_prog_offset3+tar_prog_offset4+tar_prog_offset6+tar_prog_unit*No_target_fgs dc_time=5 // DC setup time (s) (a value measured in scilab execution) string_tun_revtun='Tunnel & Rev. tunnel (../'+string(tun_revtun_time)+'s)'; string_prog_swc='Program Switches (../'+string(swc_prog_time)+'s)'; string_prog_tar='Program Target FGs (../'+string(tar_prog_time)+'s)'; string_dc_setup='DC setup (../'+string(dc_time)+'s)'; winH=progressionbar(['-> '+string_tun_revtun string_prog_swc string_prog_tar string_dc_setup]); tic(); realtimeinit(1); realtime(0); realtime(2); //exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/tunnel_revtun_ver00_gui.sce', -1); time1=toc(); string_tun_revtun='Tunnel & Rev. tunnel ('+string(time1)+'/'+string(tun_revtun_time)+'s)'; disp('tunnel, reverse tunnel done'); progressionbar(winH,[string_tun_revtun '-> '+string_prog_swc string_prog_tar string_dc_setup]); tic(); realtimeinit(1); realtime(0); realtime(2); exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/switch_program_ver05_gui.sce', -1); time1=toc(); string_prog_swc='Program Switches ('+string(time1)+'/'+string(swc_prog_time)+'s)'; disp('switch_program done'); progressionbar(winH,[string_tun_revtun string_prog_swc '-> '+string_prog_tar string_dc_setup]); tic(); realtimeinit(1); realtime(0); realtime(2); exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/target_program_ver02_gui.sce', -1); time1=toc(); string_prog_tar='Program Target FGs ('+string(time1)+'/'+string(tar_prog_time)+'s)'; disp('target_program done'); b1=unix("ls "+hid_dir+"/switch_list_ble"); if (b1==0) then progressionbar(winH,[string_tun_revtun string_prog_swc string_prog_tar '-> Program ble switches' string_dc_setup]); //exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/tunnel_clb_ver00_gui.sce', -1); disp('tunnel , reverse tunnel for clb done'); exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/switch_program_ble_ver00_gui.sce', -1); disp('switch_program for ble done'); end progressionbar(winH,[string_tun_revtun string_prog_swc string_prog_tar '-> '+string_dc_setup]); tic(); realtimeinit(1); realtime(0); realtime(2); exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/dc_setup_gui.sce', -1); time1=toc(); string_dc_setup='DC setup ('+string(time1)+'/'+string(dc_time)+'s)'; disp('DC setup done'); disp("Programming Completed...Ready to Take Data"); close(winH); filebrowser(); else messagebox(["You have not selected a Switch List (.swcs)" "Please choose one to compile."], "No Switch List Selected", "warning"); end endfunction function Reset_Com_callback(handles) disp('Resetting USB connections...'); unix_s('/home/ubuntu/rasp30/sci2blif/usbreset'); disp('Done!'); endfunction function demo_example_callback(demo_fname,com_prep_index,arb_msg_index) global file_name path fname extension; unix_g("mkdir /home/ubuntu/RASP_Workspace/demo_examples/"); unix_g("mkdir /home/ubuntu/RASP_Workspace/demo_examples/"+demo_fname); unix_s("cp /home/ubuntu/rasp30/sci2blif/demo_examples/"+demo_fname+".xcos /home/ubuntu/RASP_Workspace/demo_examples/"+demo_fname+"/"); file_name= '/home/ubuntu/RASP_Workspace/demo_examples/"+demo_fname+"/"+demo_fname+".xcos'; disp(demo_fname); disp(file_name); [path,fname,extension]=fileparts(file_name); cd(path); filebrowser(); if com_prep_index == "on" then com_prep(); end xcos(file_name); if arb_msg_index == "on" then arb_msg(); end if arb_msg_index == "onsp" then arb_msgsp(); end endfunction function up1_callback() global path; messagebox(["Once you press OK, RASP Tools will update." "Please wait for the update confirmation message to appear."],"Update to Begin" , "info", "modal"); if(path ~= "") then unix_s('cd; sudo chown ubuntu:ubuntu rasp30/ -R'); unix_s('cd; svn update rasp30; cd '+path); else unix_s('cd; sudo chown ubuntu:ubuntu rasp30/ -R'); unix_s('cd; svn update rasp30'); end messagebox(["RASP Tools is updated." "Scilab will now close for the changes to take effect in RASP Tools." "Please restart RASP Tools."],"Update Complete!" , "info", "modal"); sleep(1000); quit; endfunction function up2_callback() global path; messagebox(["Once you press OK, RASP Tools will reset itself." "Please wait for the reset confirmation message to appear."],"Reset to Begin" , "info", "modal"); if(path ~= "") then unix_s('cd; sudo chown ubuntu:ubuntu rasp30/ -R'); unix_s('cd; rm ~/rasp30 -rf; svn co https://github.com/jhasler/rasp30/trunk ~/rasp30/; cd '+path); else unix_s('cd; sudo chown ubuntu:ubuntu rasp30/ -R'); unix_s('cd; rm ~/rasp30 -rf; svn co https://github.com/jhasler/rasp30/trunk ~/rasp30/'); end messagebox(["RASP Tools has been reset." "Scilab will now close for the changes to take effect in RASP Tools." "Please restart RASP Tools."],"Reset Complete!" , "info", "modal"); sleep(1000); quit; endfunction function open_document(doc_name) [a,b]=unix_g("acroread /home/ubuntu/rasp30/sci2blif/documentation/"+doc_name+" &"); if b == 1 then messagebox("Install Adobe Reader via the Documents menu. ", "Adode Reader not installed yet!", "scilab"); end endfunction function doc6_callback() global path; disp('Initiating Install...'); unix_g('sudo apt-get update'); disp('Step 1 of 3'); unix_g('sudo apt-get -y install gdebi'); unix_g('sudo apt-get -y install libgnome2-0'); disp('Step 2 of 3'); unix_g('cd /home/ubuntu/rasp30/sci2blif/documentation && sudo gdebi -n AdbeRdr9.5.5-1_i386linux_enu.deb'); disp('Step 3 of 3'); unix_s('cd '+path); messagebox(['When you select a document to view, please wait for the End User Agreement window to appear and Press OK.'],'Adobe Reader is now installed!', "info"); endfunction function gui1_callback() exec('/home/ubuntu/rasp30/sci2blif/fpaacal.sce',-1); endfunction function gui4_callback() exec("/home/ubuntu/rasp30/sci2blif/macroblif_gen_gui.sce"); endfunction function gui6_callback() exec("/home/ubuntu/rasp30/sci2blif/macrocab_gen_gui.sce"); endfunction function gui9_callback() exec("/home/ubuntu/rasp30/sci2blif/bcd_gui.sce"); endfunction function gui8_callback() exec("/home/ubuntu/rasp30/sci2blif/level1_sim_gen_gui.sce"); endfunction function gui2_callback() exec("/home/ubuntu/rasp30/sci2blif/block_doc_gen_gui.sce"); endfunction function gui5_callback() exec("/home/ubuntu/rasp30/sci2blif/dsgnmtrcs.sce",-1); endfunction function etc1_callback(handles) global file_name path fname extension hid_dir=path+'.'+fname; if isdir(hid_dir) then unix_s('mv ' + hid_dir+'/' +fname + '.pads '+ path); unix_s('rm -rf ' + hid_dir); disp('Misc. files have been deleted from your current directory.'); else disp('There is no hidden folder in your current directory to delete.'); end endfunction function etc2_callback(handles) global file_name path fname extension clc disp('Programming...'); hid_dir=path+'.'+fname; unix_s('cp ' + hid_dir+'/input_vector '+ path); exec("~/rasp30/prog_assembly/libs/scilab_code/MakeProgramlilst_CompileAssembly.sce",-1); exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/finetune_program_ver00_gui.sce', -1); exec('/home/ubuntu/rasp30/prog_assembly/libs/scilab_code/dc_setup_gui.sce', -1); disp('DC setup done'); //unix_s('rm ' + path +'input_vector'); disp("Programming Completed...Ready to Take Data"); endfunction function etc3_callback(handles) fignums = [3 10:18 20:28 30:38 40:48 50:58 60:68 70:78 101 2 4:9] delfig = intersect(winsid(),fignums) if delfig ~= [] then for i = 1:length(delfig) xdel(delfig(i)); end disp('All programming graphs are now closed.'); else disp('There are no programming graphs to close.'); end endfunction function etc5_callback(handles) global showprog; showprog = 1; endfunction function etc6_callback(handles) global showprog; showprog = 0; endfunction function etc7_callback(handles) [amm_opt, amm_con] = unix_g('sudo chmod 777 /dev/prologix'); if amm_con then messagebox(["Prologix GPIB-USB Controller is not connected under the VM Devices tab." "Please select Prologix and initiate again."],"Ammeter is not Connected via USB Devices" , "info", "modal"); else disp("Ammeter has been initiated.") end endfunction csvpath="/home/ubuntu/RASP_Workspace"; function etc9_callback(handles) global csvdata [filename, pathname] = uigetfile(["*.csv*"], csvpath, "Choose the CSV to Load"); if(filename ~= "") then csvdata = csvRead(pathname+'/'+filename); csvpath = pathname; disp("Data has been stored in variable: csvdata") end csvpath=resume(csvpath) endfunction function etc10_callback(handles) csvdir=uigetdir("/home/ubuntu/RASP_Workspace", "Choose a directory.") if ~(isempty(csvdir)) then csvf = x_mdialog("CSV File Setup",['Name of variable';'Name for CSV file'],['';'']); if ~(isempty(csvf(1))) & ~(isempty(csvf(2))) then csvWrite(evstr(csvf(1)),csvdir+"/"+csvf(2)+'.csv') disp(csvf(2)+'.csv has been created in your chosen directory.') end end endfunction function etc14_callback(handles) global file_name path fname extension board_num chip_num; path="/home/ubuntu/RASP_Workspace/compilation_check/"; mkdir(path); cd(path); file_name=path+"compile_check.xcos"; [path,fname,extension]=fileparts(file_name); extension=".xcos"; // 3.0 unix_w("rm -rf *.blif *.net *.place *.route ."+fname); board_num=2; chip_num="13"; unix_w("cp /home/ubuntu/rasp30/sci2blif/xcos_ref/compilation_check/compile_check_30.xcos "++fname+extension); pass_num=1; cap_info = tlist('capinfo'); exec('/home/ubuntu/rasp30/sci2blif/sci2blif.sce', -1); disp("3.0 example are compiled successfully!"); // 3.0 vmm unix_w("rm -rf *.blif *.net *.place *.route ."+fname); board_num=2; chip_num="13"; clk_sr=[0.2 0.2]; data_sr=[0.2 0.2]; input_vmmwta=[0.2 0.2; 0.2 0.2; 0.2 0.2; 0.2 0.2;]; unix_w("cp /home/ubuntu/rasp30/sci2blif/xcos_ref/compilation_check/compile_check_30_vmm.xcos "++fname+extension); pass_num=1; cap_info = tlist('capinfo'); exec('/home/ubuntu/rasp30/sci2blif/sci2blif.sce', -1); disp("3.0 VMM example are compiled successfully!"); // 3.0a unix_w("rm -rf *.blif *.net *.place *.route ."+fname); board_num=3; chip_num="13"; unix_w("cp /home/ubuntu/rasp30/sci2blif/xcos_ref/compilation_check/compile_check_30.xcos "++fname+extension); pass_num=1; cap_info = tlist('capinfo'); exec('/home/ubuntu/rasp30/sci2blif/sci2blif.sce', -1); disp("3.0a example are compiled successfully!"); // 3.0a vmm unix_w("rm -rf *.blif *.net *.place *.route ."+fname); board_num=3; chip_num="13"; clk_sr=[0.2 0.2]; data_sr=[0.2 0.2]; input_vmmwta=[0.2 0.2; 0.2 0.2; 0.2 0.2; 0.2 0.2;]; unix_w("cp /home/ubuntu/rasp30/sci2blif/xcos_ref/compilation_check/compile_check_30_vmm.xcos "++fname+extension); pass_num=1; cap_info = tlist('capinfo'); exec('/home/ubuntu/rasp30/sci2blif/sci2blif.sce', -1); disp("3.0a VMM example are compiled successfully!"); endfunction function etc15_callback(handles) global file_name path fname extension board_num chip_num; clc exec("/home/ubuntu/rasp30/sci2blif/convert2modelica.sce",-1); xcos() endfunction function arb_msg() usevar=messagebox(["This design contains an Arbitrary Waveform Generator Block."... "It requires a variable that contains the input signal(s)."... "You have the option to use a pre-defined variable or create your own."... "Will you create your own variable via the Scilab Console?"], "modal", "info", ["Yes" "No"]); if usevar == 1 then usevar=messagebox(["Do not forget to type your variable name in the Arbitrary Waveform Generator Block."],"info"); end endfunction function arb_msg2() messagebox(["The AWG block requires a variable that contains the input signal(s)."... "You need to create your own variable via the Scilab Console."... "Do not forget to type your variable name in the Arbitrary Waveform Generator Block."], "Arbitrary Waveform Generator (AWG) Block","modal"); endfunction function arb_msgsp() messagebox("After the take data step, run sftreg_miteADC(output_number) to view the corresponding output 1-4"); endfunction function com_prep() clear scs_m; clear blk_objs; clear blk; global scs_m; text_box_callback(handles) endfunction function etc12_callback(handles) global show_dsgnmatrics; show_dsgnmatrics = 1; endfunction function etc13_callback(handles) global show_dsgnmatrics; show_dsgnmatrics = 0; endfunction function doc_block_callback() global fname; [a,b]=unix_g('firefox /home/ubuntu/rasp30/sci2blif/documentation/block_docs/build/html/'+fname+'.html'); if b == 1 then messagebox("Error opening documentation. ", "Unable to open firefox! ", "scilab") end endfunction function doc_full_callback() [a,b]=unix_g('firefox /home/ubuntu/rasp30/sci2blif/documentation/block_docs/build/html/index.html'); if b == 1 then messagebox("Error opening documentation. ", "Unable to open firefox! ", "scilab") end endfunction
748e209a4204643d040f8826e90e2da11986585f
a8592d34f144b71794ebf30f1c2a1b5faf0b053c
/TugasBesar2018/ode_euler_PC.sce
9ff1600864912937766a13860966ee20b7c4a134
[]
no_license
f-fathurrahman/ffr-MetodeNumerik
ee9a6a7153b174b1ba3d714fe61ccbd1cb1dd327
e3a9da224c0fd5b32e671708e890018a3c4104c4
refs/heads/master
2023-07-19T22:29:38.810143
2023-07-07T10:02:34
2023-07-07T10:02:34
107,272,110
2
2
null
null
null
null
UTF-8
Scilab
false
false
541
sce
ode_euler_PC.sce
function [t,y] = ode_euler_PC(f,tspan,y0,N) if (~exists("N", "local")) | (N <= 0) N = 100 end if ~exists("tspan","local") y0 = 0 end h = (tspan(2) - tspan(1))/N t = tspan(1) + [0:N]'*h // check y0, transpose if needed if size(y0,1) ~= 1 if size(y0,2) > 1 y0 = y0' end end Ndim = size(y0,2) y = zeros(N+1,Ndim) // initial value y(1,:) = y0 for k = 1:N yk1 = y(k,:) + h*f( t(k), y(k,:) ) y(k+1,:) = y(k,:) + 0.5*h*( f(t(k),y(k,:)) + f(t(k)+h,yk1) ) end endfunction
9e6dc98da81e84f062f786b86eee84a04c9d9f0d
449d555969bfd7befe906877abab098c6e63a0e8
/1922/CH7/EX7.2/7_2.sce
e6f086b6401506f1f5ac742e169121c9b1f60c58
[]
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
560
sce
7_2.sce
clc clear //Initialization of variables T=154.5 //C P=8620*10^3 //Pa Tc=135 //C T0=273.1 //C Pc=3648*10^3 //Pa w=0.1756 V=0.154 R=8.3143*10^3 //calculations Tr=(T+T0)/(T0+Tc) Pr= P/Pc Z=P*V/(R*(T+T0)) a= 0.42747*R^2 *(Tc+T0)^2 /Pc *(1+ (0.48508 + 1.55171*w - 0.15613*w^2)*(1-sqrt(Tr)))^2 b=0.08664*R*(Tc+T0)/Pc A= a*P/(R^2 *(T+T0)^2) B=b*P/(R*(T+T0)) lnphi= (Z-1) - log(Z-B) - A/B *log((Z+B)/Z) phi=exp(lnphi) f=phi*P //results printf("fugacity = %d kPa",f/10^3) //The answer is a bit different due to rounding off error in textbook
a654bab6622b6db26e7c20ce7939a89c8449ec5b
b24d354cfcd174c92760535d8b71e22ced005d81
/DSP functions/zpklp2xn/test_5.sce
9f3e343009e7ce2035a08877915725c9b528d9b5
[]
no_license
shreniknambiar/FOSSEE-Signal-Processing-Toolbox
57ad8e2a71d64f95c4ccfd131e00095cf2b9c6f8
143cf61eff31240870dc0c4f61e32818a4482365
refs/heads/master
2021-01-01T18:25:34.435606
2017-07-25T18:23:47
2017-07-25T18:23:47
98,334,322
0
0
null
2017-07-25T17:48:00
2017-07-25T17:47:59
null
UTF-8
Scilab
false
false
317
sce
test_5.sce
// Test # 5 : When either Input Argument #4 or Input Argument #5 is of complex type exec('./zpklp2xn.sci',-1); [z,p,k,n,d]=zpklp2xn(2,3,1,8.22*%i,[0.05 0.2]); //!--error 10000 //Wo must be real ,numeric and scalar //at line 49 of function zpklp2xn called by : //[z,p,k,n,d]=zpklp2xn(2,3,1,8.22*%i,[0.05 0.2]);
46d7d114f095096021b1faa1e3a79dbd6438b89d
d7087cf730b37f76170323e080c090f8094979ac
/test/exec/command_list_1.tst
c5ef64f46c65c1e77b770b83e03283929d1ecf75
[]
no_license
VladimirMeshcheriakov/42sh
025dffe358b86f48eaf7751a5cb08d4d5d5366c4
52d782255592526d0838bc40269f6e71f6a51017
refs/heads/master
2023-03-15T17:26:20.575439
2015-06-26T12:44:05
2015-06-26T12:44:05
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
95
tst
command_list_1.tst
<cmd> ../build/42sh</cmd> <ref> bash</ref> <stdin> echo toto; echo tata; echo titi; </stdin>
890f37532c9762e1dfb32b771836cb9450825dcb
1b969fbb81566edd3ef2887c98b61d98b380afd4
/Rez/bivariate-lcmsr-post_mi/bfas_nv_aspfin_d/~BivLCM-SR-bfas_nv_aspfin_d-PLin-VLin.tst
e7d728707fbee47cd2fab5df13d7ef7ce73a8e63
[]
no_license
psdlab/life-in-time-values-and-personality
35fbf5bbe4edd54b429a934caf289fbb0edfefee
7f6f8e9a6c24f29faa02ee9baffbe8ae556e227e
refs/heads/master
2020-03-24T22:08:27.964205
2019-03-04T17:03:26
2019-03-04T17:03:26
143,070,821
1
0
null
null
null
null
UTF-8
Scilab
false
false
11,974
tst
~BivLCM-SR-bfas_nv_aspfin_d-PLin-VLin.tst
THE OPTIMIZATION ALGORITHM HAS CHANGED TO THE EM ALGORITHM. ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 1 2 3 4 5 ________ ________ ________ ________ ________ 1 0.484986D+00 2 -0.671157D-02 0.400832D-02 3 0.246994D-01 -0.170120D-03 0.599329D+00 4 -0.661124D-03 0.177576D-03 -0.892853D-02 0.458939D-02 5 -0.170382D-02 0.119364D-03 -0.314959D-02 0.256751D-03 0.257917D-02 6 -0.453324D-03 0.252133D-04 -0.150126D-03 0.311605D-04 -0.139566D-03 7 -0.263947D-02 0.122686D-03 0.578410D-03 -0.119418D-03 0.195776D-03 8 -0.391180D-03 -0.627473D-04 -0.351876D-02 0.106799D-03 0.146457D-03 9 -0.323248D+00 0.637880D-02 0.389383D+00 0.170760D-01 0.108072D+00 10 0.104599D+00 0.507533D-02 0.752492D-01 0.263944D-01 0.140140D+00 11 -0.717340D-01 0.240938D-01 0.290383D+00 -0.171646D-01 0.253403D-01 12 0.214390D+00 0.754319D-02 0.137074D+01 -0.194795D-01 -0.720981D-01 13 -0.161709D+00 0.552896D-02 -0.204278D+00 -0.431852D-03 0.153893D-01 14 -0.315903D+00 0.119612D-02 0.221103D+00 -0.155378D-01 0.207303D-01 15 0.105366D+01 -0.214261D-01 -0.816354D+00 -0.731361D-01 -0.212179D+00 16 0.413924D-01 0.574310D-02 0.186605D-01 -0.284806D-02 -0.298910D-02 17 0.266343D-02 0.112858D-02 0.192263D-02 0.761088D-03 0.319489D-03 18 -0.855520D+00 0.692516D-02 0.568707D-01 0.527133D-01 -0.607295D-01 19 0.198805D+00 0.381938D-02 0.107312D+00 0.124271D-01 0.932468D-02 20 0.158869D+00 0.871291D-01 0.537230D+01 -0.991134D-02 -0.789701D-01 21 -0.167387D+00 -0.763216D-02 -0.561299D-01 -0.791324D-02 -0.918553D-02 22 0.191667D-02 0.402813D-03 0.157733D-02 -0.217354D-03 -0.135355D-03 23 0.189524D-01 0.472905D-02 0.582851D-01 0.149659D-01 -0.317665D-02 24 0.567566D-03 -0.470253D-03 -0.111852D-01 0.745213D-03 0.720966D-03 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 6 7 8 9 10 ________ ________ ________ ________ ________ 6 0.978577D-03 7 0.794184D-03 0.264298D-02 8 0.292414D-03 0.445669D-05 0.300992D-02 9 0.261392D-01 0.942409D-01 -0.353731D-01 0.152067D+03 10 0.189894D-01 0.302179D-01 0.305711D-02 0.773995D+01 0.313649D+02 11 0.249528D-01 0.206735D-01 0.752078D-01 0.776863D+01 -0.389355D+00 12 0.457794D-01 0.140557D+00 0.111053D-01 0.124325D+02 0.497199D+01 13 0.691471D-01 0.129152D+00 0.264816D-01 0.239993D+01 0.708309D+01 14 0.324042D-01 -0.673461D-02 0.258653D+00 0.282925D+01 0.211504D+01 15 -0.515030D-01 -0.135938D+00 -0.698460D-01 -0.261468D+02 -0.289049D+02 16 -0.335759D-03 0.229949D-03 -0.174361D-02 0.224895D+01 -0.557887D+00 17 0.831456D-05 0.456223D-03 0.513352D-04 -0.366003D+00 0.620235D-01 18 -0.869538D-01 -0.101533D+00 -0.339824D-01 -0.748230D+01 -0.126977D+02 19 -0.911275D-02 0.869257D-02 0.603272D-02 0.264083D+01 0.285105D+00 20 0.604015D-02 0.356528D-01 -0.330920D+00 0.189463D+02 0.859819D+01 21 0.760353D-02 -0.784685D-02 -0.120766D-01 -0.219453D+01 -0.652925D+00 22 -0.183551D-04 -0.497011D-03 0.231123D-03 0.473624D-01 0.135286D-01 23 -0.955110D-03 -0.341799D-03 0.297697D-03 0.982141D+00 0.112087D+00 24 -0.374088D-03 -0.555509D-03 0.452266D-03 -0.162751D+00 0.261524D-02 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 11 12 13 14 15 ________ ________ ________ ________ ________ 11 0.779477D+02 12 0.135321D+02 0.149005D+03 13 -0.226722D+01 0.792162D+01 0.228944D+02 14 0.165915D+01 -0.452294D+01 0.101248D+02 0.104968D+03 15 -0.129930D+02 0.495082D+01 -0.502901D+01 -0.653229D+01 0.590964D+03 16 0.330288D-01 0.802545D+00 -0.252904D+00 -0.540589D+00 0.525951D+01 17 0.626977D-01 -0.329422D-01 0.210922D-01 0.121538D-01 -0.281893D+01 18 -0.185436D+01 -0.153882D+02 -0.119441D+02 -0.134627D+02 -0.122826D+02 19 0.578887D+01 0.650842D+00 0.151641D+00 -0.112152D+00 0.831275D+00 20 0.924101D+01 -0.150656D+02 -0.926863D+01 -0.755291D+02 -0.215512D+02 21 -0.339395D+01 -0.607717D+00 -0.475143D+00 -0.143218D+01 -0.107596D+01 22 -0.173838D+00 0.497587D-01 -0.145248D-01 0.558299D-01 0.163344D+00 23 0.672926D+00 0.176310D+01 -0.702772D-01 -0.416538D-01 0.364442D+00 24 -0.111430D+00 -0.364984D+00 -0.247930D-01 0.695143D-01 0.293784D-01 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 16 17 18 19 20 ________ ________ ________ ________ ________ 16 0.778308D+00 17 -0.670811D-01 0.281354D-01 18 -0.204848D-01 0.740767D-01 0.412253D+03 19 -0.151164D+00 -0.139144D-01 0.114292D+01 0.112388D+02 20 0.639811D+00 0.137810D+00 0.516850D+02 -0.514519D+01 0.834284D+03 21 0.130326D+00 0.264318D-01 0.584065D+01 -0.967929D+01 0.906988D+01 22 0.833903D-02 -0.845615D-03 -0.192557D+01 -0.557844D-01 0.376276D-01 23 -0.859010D-02 0.647381D-02 0.123654D+01 0.503455D+00 0.682182D+01 24 0.182316D-02 -0.429105D-03 0.469839D-01 0.262596D-01 -0.379871D+01 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 21 22 23 24 ________ ________ ________ ________ 21 0.110338D+02 22 -0.608143D-01 0.221818D-01 23 -0.168301D+00 -0.107041D-01 0.139923D+01 24 -0.564022D-01 -0.126288D-02 -0.111163D+00 0.430316D-01 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 1 2 3 4 5 ________ ________ ________ ________ ________ 1 1.000 2 -0.152 1.000 3 0.046 -0.003 1.000 4 -0.014 0.041 -0.170 1.000 5 -0.048 0.037 -0.080 0.075 1.000 6 -0.021 0.013 -0.006 0.015 -0.088 7 -0.074 0.038 0.015 -0.034 0.075 8 -0.010 -0.018 -0.083 0.029 0.053 9 -0.038 0.008 0.041 0.020 0.173 10 0.027 0.014 0.017 0.070 0.493 11 -0.012 0.043 0.042 -0.029 0.057 12 0.025 0.010 0.145 -0.024 -0.116 13 -0.049 0.018 -0.055 -0.001 0.063 14 -0.044 0.002 0.028 -0.022 0.040 15 0.062 -0.014 -0.043 -0.044 -0.172 16 0.067 0.103 0.027 -0.048 -0.067 17 0.023 0.106 0.015 0.067 0.038 18 -0.061 0.005 0.004 0.038 -0.059 19 0.085 0.018 0.041 0.055 0.055 20 0.008 0.048 0.240 -0.005 -0.054 21 -0.072 -0.036 -0.022 -0.035 -0.054 22 0.018 0.043 0.014 -0.022 -0.018 23 0.023 0.063 0.064 0.187 -0.053 24 0.004 -0.036 -0.070 0.053 0.068 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 6 7 8 9 10 ________ ________ ________ ________ ________ 6 1.000 7 0.494 1.000 8 0.170 0.002 1.000 9 0.068 0.149 -0.052 1.000 10 0.108 0.105 0.010 0.112 1.000 11 0.090 0.046 0.155 0.071 -0.008 12 0.120 0.224 0.017 0.083 0.073 13 0.462 0.525 0.101 0.041 0.264 14 0.101 -0.013 0.460 0.022 0.037 15 -0.068 -0.109 -0.052 -0.087 -0.212 16 -0.012 0.005 -0.036 0.207 -0.113 17 0.002 0.053 0.006 -0.177 0.066 18 -0.137 -0.097 -0.031 -0.030 -0.112 19 -0.087 0.050 0.033 0.064 0.015 20 0.007 0.024 -0.209 0.053 0.053 21 0.073 -0.046 -0.066 -0.054 -0.035 22 -0.004 -0.065 0.028 0.026 0.016 23 -0.026 -0.006 0.005 0.067 0.017 24 -0.058 -0.052 0.040 -0.064 0.002 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 11 12 13 14 15 ________ ________ ________ ________ ________ 11 1.000 12 0.126 1.000 13 -0.054 0.136 1.000 14 0.018 -0.036 0.207 1.000 15 -0.061 0.017 -0.043 -0.026 1.000 16 0.004 0.075 -0.060 -0.060 0.245 17 0.042 -0.016 0.026 0.007 -0.691 18 -0.010 -0.062 -0.123 -0.065 -0.025 19 0.196 0.016 0.009 -0.003 0.010 20 0.036 -0.043 -0.067 -0.255 -0.031 21 -0.116 -0.015 -0.030 -0.042 -0.013 22 -0.132 0.027 -0.020 0.037 0.045 23 0.064 0.122 -0.012 -0.003 0.013 24 -0.061 -0.144 -0.025 0.033 0.006 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 16 17 18 19 20 ________ ________ ________ ________ ________ 16 1.000 17 -0.453 1.000 18 -0.001 0.022 1.000 19 -0.051 -0.025 0.017 1.000 20 0.025 0.028 0.088 -0.053 1.000 21 0.044 0.047 0.087 -0.869 0.095 22 0.063 -0.034 -0.637 -0.112 0.009 23 -0.008 0.033 0.051 0.127 0.200 24 0.010 -0.012 0.011 0.038 -0.634 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 21 22 23 24 ________ ________ ________ ________ 21 1.000 22 -0.123 1.000 23 -0.043 -0.061 1.000 24 -0.082 -0.041 -0.453 1.000
6b3c7bae6ca41e4042eb407e3aa33b0877907789
1485852dd59aafc286600126cf832a32e10f117f
/tests/localMaximaFinder/test4.sce
e2f42d6805d06558eb7240aa8e03f7f1b5e10f2b
[]
no_license
rg77/Scilab-Image-Processing-And-Computer-Vision-Toolbox
dec9fbbce32cfd1eab3c45ccb29c89aaa1384758
8adb116da3a9c29a32e5e0727105aff571e5b374
refs/heads/master
2020-12-02T16:14:45.282650
2017-07-07T10:12:04
2017-07-07T10:12:04
96,524,257
0
0
null
2017-07-07T09:43:50
2017-07-07T09:43:50
null
UTF-8
Scilab
false
false
118
sce
test4.sce
src= imread("../images/image_0197.jpg"); //another image gray = rgb2gray(src); loc=localMaximaFinder(gray,[1 3],4,1);
b428359545012617958bcf935b323ff8b6241838
449d555969bfd7befe906877abab098c6e63a0e8
/162/CH1/EX1.19.a/example119a.sce
18189d5f9947ed01d1f662123bd932e9bccd40a7
[]
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
168
sce
example119a.sce
//Example 1.19a //Check whether the given signal is periodic or not clc; n=-50:50; y=sin(n/5); plot2d3(n,y); disp('Plot shows that the given signal is periodic');
ebe51f15d67d2587518b8f58818c38de8588b99a
449d555969bfd7befe906877abab098c6e63a0e8
/728/CH4/EX4.17/Ex4_17.txt
3169154d78bb53677b21a57a5895986e7edb07fe
[]
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
314
txt
Ex4_17.txt
//Caption:Determine the diameter of waveguide & guide wavelength //Exa:4.17 clc; clear; close; c=3*10^10;//in cm/s f=6*10^9;//in Hz f_c=0.8*f; wl_c=c/f_c; D=1.841*wl_c/%pi; wl_o=c/f; wl_g=wl_o/sqrt(1-(wl_o/wl_c)^2); disp(D,'Diameter of waveguide (in cm) ='); disp(wl_g,'Guide wavelength (in cm) =');
c0b461edfc10e01857f16e98da9de51ba6d4a062
c90039f74887835096a93884110d643c4823e530
/doc/oficial/dados para treinamento RNA/RNA_ANALISE_TECNICA/Indicador/Sinal/MACD/RNA_MACD.sce
0107fc4c0b679cca092eca6bbe1d83f016e7c15b
[]
no_license
igorlima/CellInvest
da991366b329b5d8021e9b949d7b726023489ec8
c5411247e504b8a8d0ad77d32d41bbd2aee39930
refs/heads/master
2020-04-06T03:40:05.614164
2012-10-23T12:58:20
2012-10-23T12:58:20
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
344
sce
RNA_MACD.sce
path_rna_MACD = get_absolute_file_path('RNA_MACD.sce'); N_MACD = getN( path_rna_MACD + "\N_MACD.txt" ); W_MACD = getW( path_rna_MACD, "MACD" ); function saida_da_rna = rna_MACD( macdLine, macdSinal, alphaMacdLine, alphaMacdSinal ) saida_da_rna = ann_FF_run( [macdLine;macdSinal;alphaMacdLine;alphaMacdSinal], N_MACD, W_MACD ); endfunction
c669c489fdb576ac30403ddbd45e5787b894f6e8
449d555969bfd7befe906877abab098c6e63a0e8
/1736/CH3/EX3.4/Ch03Ex4.sce
fc7363a7c8dcbe0f80dc91c885037940fd8f3b4e
[]
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
543
sce
Ch03Ex4.sce
// Scilab Code Ex3.4: Page-89 (2006) clc; clear; N = 6.02e+23; // Avogadro's number, per mole k = 1.38e-023; // Boltzmann constant, J/K R = N*k; // Molar gas constant, J/mol/K theta_D = 2230; // Debye temperature for diamond, K T = 300; // Room temperature, K C_v = 12/5*(%pi^4*R)*(T/theta_D)^3; // Specific heat capacity per unit volume of diamond, J/mol-K printf("\nThe heat capacity per unit volume of diamond = %4.2f J/mol-K", C_v); // Result // The heat capacity per unit volume of diamond = 4.73 J/mol-K
251e65f2833f6540d70b8bc8e9dba090b1c4b38d
efe59cd4cca137aba9af447e8040b1eac3738006
/examples/plot/plot.sce
d6be6daa5fe6880a96b4a032c2cff3827d570a9e
[]
no_license
thejefecomp/scilab-codes
fd13f6aa666135c0fb08989e25b0ca1354c58b51
6eefce6eed8af0b54f2d6172f6e2b05513327184
refs/heads/master
2023-07-31T13:23:50.467306
2021-09-23T09:00:49
2021-09-23T12:04:06
287,115,880
0
0
null
null
null
null
UTF-8
Scilab
false
false
112
sce
plot.sce
function y=f(x) y = x^2 + 1 endfunction x=-1:0.05:1 //Limpa Janela gráfica clf() plot(x,f(x))
66916fd95ce45271a6cb26cf96e888215e4cb5ee
4533c11d75f955d8350d45606af92ca064d2e319
/differentialEvolution/scilab-scripts/EstimationMultiParetoAFDCa,p+Kir+K+Lparallele.sce
385a085061cc963ce533a12fbfd5801164ce7da3
[]
no_license
lois76/ParamEstimationDE
0066c5a18042637b97bf989e77f2ce04ba283b12
ab3911174450a4ec9976a108885cf8e7afc62b3d
refs/heads/master
2022-05-21T04:49:51.662762
2022-03-21T13:15:38
2022-03-21T13:15:38
167,556,538
0
1
null
null
null
null
UTF-8
Scilab
false
false
5,247
sce
EstimationMultiParetoAFDCa,p+Kir+K+Lparallele.sce
////////////////////////////////////////////////////////// /////////////// Experimental data /////////////// ////////////////////////////////////////////////////////// a = read("/home/naudin/Documents/Fig1A_AFDCurrentClampTrace.txt",-1,12); //a = read("/scilab-scripts/Fig 1A_AFD Current-Clamp Trace.txt",-1,12); A=a(2489:14988,2:$)*1000; t=linspace(0,50,12500); t0=0; stim=[-15:5:35]; //Steady-state current vecV=[-110:10:50] Inf=[-68.6 -49.5 -18.2 -5.06 2.19 3.37 2.52 2.68 5.97 14.6 33.4 60.2 85 114 152 208 254] ////////////////////////////////////////////////// /////////////// Cost function ////////////// ////////////////////////////////////////////////// //Boltzmann function function y=xinf(VH,V12,k) y=1 ./(1+exp((V12-VH) ./k)); endfunction //Ca,p+Kir+K,t+L-model function [Hdot]=HH(t,x,pa) Hdot=zeros(4,1); Hdot(1)=(1/pa(22))*(-pa(1)*x(2)*(x(1)-pa(5)) - pa(2)*xinf(x(1),pa(9),pa(13))*(x(1)-pa(6)) - pa(3)*x(3)*x(4)*(x(1)-pa(6)) - pa(4)*(x(1)-pa(7)) + I) Hdot(2)=(xinf(x(1),pa(8),pa(12))-x(2))/pa(16) Hdot(3)=(xinf(x(1),pa(10),pa(14))-x(3))/pa(17) Hdot(4)=(xinf(x(1),pa(11),pa(15))-x(4))/pa(18) endfunction //Cost function voltage function y=fct11(pa) c=0; condini = [-78; pa(19); pa(20); pa(21)] for i=1:11 I=stim(i); x=ode(condini,t0,t,HH); V=x(1,:); for k=1:length(t) c=c+(V(k)-A(k,i))*(V(k)-A(k,i)) end end y=c/length(t); endfunction //Cost function steady-state current function y=W(pa) e=0; for i=1:length(vecV) e=e+(Inf(i)-(pa(1).*xinf(vecV(i),pa(8),pa(12)).*(vecV(i)-pa(5)) + pa(2).*xinf(vecV(i),pa(9),pa(13)).*(vecV(i)-pa(6)) + pa(3).*xinf(vecV(i),pa(10),pa(14)).*xinf(vecV(i),pa(11),pa(15)).*(vecV(i)-pa(6)) + pa(4).*(vecV(i)-pa(7))))^2 end y=e/length(vecV) endfunction ////////////////////////////////////////////// ///////// Parameter estimation ///////// ////////////////////////////////////////////// function [val, popFinal]=simulation(NP,itermax,F,CR) D=22; pop=zeros(D,NP); /////////////////////////////////////////////////////// //// Vecteurs de contraintes borne minimum/maximum //// /////////////////////////////////////////////////////// Xmin=[0.1 0.1 0.1 0.1 20 -100 -90 -90 -90 -90 -90 1 -30 1 -30 0.0001 0.0001 0.0001 0.001 0.001 0.001 0.001]; Xmax=[50 50 50 50 150 -2 30 -2 -2 -2 -2 30 -1 30 -1 15 15 15 0.999 0.999 0.999 10]; //////////////////////////////////// //// Population initialization //// //////////////////////////////////// for j=1:NP for i=1:D pop(i,j)=Xmin(i)+(Xmax(i)-Xmin(i))*rand(); end end /////////////////////////////////////// //// Initial population evaluation //// /////////////////////////////////////// val=zeros(NP,2); // tableau avec le coût de chacun des individus. 1ère colonne = cout voltage. 2ème colonne = cout SS. for j=1:NP val(j,1)=fct11(pop(:,j)) val(j,2)=W(pop(:,j)) end disp(val); //////////////////////// //// Étape suivante //// //////////////////////// iter=1; // nombre d'itération U=zeros(D,NP); // Vecteur intermédiaire perturbé (mutation + crossover) tempval=0; while iter<itermax for j=1:NP // ======= Construction de la matrice U = variation différentielle + crossover ======= // ========= Tirage aléatoire de 3 entiers distincts r1, r2 et r3 et différents de j ======== r1=j; r2=j; r3=j; while (r1==r2 | r1==r3 | r2==r3 | r1==j | r2==j | r3==j) r1=floor(1+NP*rand()); r2=floor(1+NP*rand()); r3=floor(1+NP*rand()); end // ======== Variation différentielle ======= V=pop(:,r1) + F*(pop(:,r2)-pop(:,r3)); // ======== Contraintes ======== for i=1:length(Xmin) if V(i)<=Xmin(i) then V(i)=Xmin(i); elseif V(i)>Xmax(i) then V(i)=Xmax(i); end end // ======== Crossover ======== for i=1:D if rand()<CR then U(i,j)=V(i); else U(i,j)=pop(i,j); end end end // fin for j=1:NP // ======== Sélection ======== for j=1:NP tempvalSS = W(U(:,j)); if tempvalSS<=val(j,2) then tempvalVol = fct11(U(:,j)); if tempvalVol<val(j,1) then pop(:,j) = U(:,j); val(j,1) = tempvalVol; val(j,2) = tempvalSS; end end end disp(iter) iter = iter + 1; end //fin de la boucle while // Détermination de l'indice du meilleur individu // bestIndex=1; // for b=2:NP // if val(b)<val(bestIndex) then bestIndex=b; end // end // valBest=val(bestIndex); // Sauvegarde du meilleur individu // bM = []; // bM = pop(:,bestIndex); popFinal=pop; disp(val); endfunction [val, popFinal]=simulation(8,5,0.5,0.3)
9bbb0a341a1ff2209fe312a11998d75753a688f2
449d555969bfd7befe906877abab098c6e63a0e8
/3769/CH3/EX3.25/Ex3_25.sce
995f82922e0163b6a3894cb41f71e39567dea3af
[]
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
251
sce
Ex3_25.sce
clear //Given a=0.1 //m A=800 e=8.854*10**-12 //Calculation b=A*a**2.5*(sqrt(2)-1) q=e*b //Result printf("\n (a) The flux through the cube is %0.2f Nm**2C-1",b) printf("\n The charge within the cube is %0.2f *10**-12 C",q*10**12)
16b3f330edba9441aa2dc8dd74cacf2e2ba4a774
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.4.1/macros/m2sci/sci_fwrite.sci
1acc7453cecb4c25a9f38ec30dcaf9f6277d631c
[ "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
168
sci
sci_fwrite.sci
function [stk,txt,top]=sci_fwrite() // Copyright INRIA txt=[] RHS=[] for k=1:rhs RHS=[RHS,stk(top-rhs+k)(1)] end stk=list('mtlb_fwrite'+rhsargs(RHS),'0','1','1','1')
f21f88046b118eda92f605fd499cc40599eaf0cd
449d555969bfd7befe906877abab098c6e63a0e8
/50/CH3/EX3.14/ex_3_14.sce
3590d9c2986329f3b16f229c8ed44ff85a1895b5
[]
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
213
sce
ex_3_14.sce
//example no. 3.14 //solve system by cholesky method A=[1 2 3;2 8 22;3 22 82] b=[5;6;-10] L=cholesky (A,3) //call cholesky function to evaluate the root of the system n=3; Z=fore(L,b); X=back(L',Z)
9e796e7023a7330c180c45062e33969aa661f3a8
449d555969bfd7befe906877abab098c6e63a0e8
/2192/CH10/EX10.6/10_6.sce
02d33d9407023692af93db484887d4aa06e2ab28
[]
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
447
sce
10_6.sce
clc,clear printf('Example 10.6\n\n') Area=30*10 //length*breadth E=250 //illumination wattage = 300 UF=0.4 //utilisation factor DF=0.9// depreciation factor efficiency=14 //luminous efficiency lumen_output = E*Area/(UF*DF)//gross lumen output requiredd from source flux = wattage * efficiency //flux emitted by each lamp lamps= lumen_output/flux //total no of lamps required printf('No. of lamps required = %d lamps',ceil(lamps))
776b3d94bb398a54fc3ab7add5306b3c993ba70a
449d555969bfd7befe906877abab098c6e63a0e8
/1460/CH4/EX4.1/4_1.sce
65bbb6b35dfb067f7645ecd69a2bf3005d14333e
[]
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
472
sce
4_1.sce
clc //Initialization of variables m=0.5 //lbm/sec Pi=14 //lb/in^2 SVi=13 //ft^3/lbm Vi=100 //ft/sec P=75.5 //hp Hr=8.65 //zB/sec Pd=150 //lb/in^2 SVd=2.1 //ft^3/lb Vd=200 //ft/sec z1=3 //ft z2=10 //ft //calculations WbyJ=P*550/(m*778) Q=Hr/m Wi=144*Pi*SVi/(778) Wo=144*Pd*SVd/(778) PEi=z1/778 PEf=z2/778 KEi=Vi^2 /(2*32.2*778) KEf=Vd^2 /(2*32.2*778) du=-Q+WbyJ+PEi-PEf+KEi-KEf+Wi-Wo //results printf("Increase in internal energy = %.1f B/lbm",du)
3261cecbc23eaa82ffc7bf94f1e260b9fb3d2eda
449d555969bfd7befe906877abab098c6e63a0e8
/2915/CH4/EX4.12/Ex4_12.sce
dd879f272bce88d789925f31eabee75b61a93f9b
[]
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
357
sce
Ex4_12.sce
clc,clear //Example 4.12 //To determine area of segment formed by a chord in circle radius = 2 chord = 3 //Use law of cosines cos_theta = (radius^2+radius^2-chord^2)/(2*radius*radius) theta=acos(cos_theta) //subtended central angle in radians area_K=radius^2* (theta-sin(theta))/2 printf('Required area of segment = %.3f square units',area_K)
a6a38f7314c38e42f458dd9b87273568ba718978
449d555969bfd7befe906877abab098c6e63a0e8
/1397/CH4/EX4.6/4_6.sce
0638fa15f3a16282362dce8ce4c3ec9c809f4536
[]
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
335
sce
4_6.sce
//clc(); clear; //To determine magnetic force and relative permeability of material I=3000; //magnetisation in amp/m B=0.005; //flux density in weber/m^2 mew0=(4*%pi*10^-7); //mew0 in H/m H=(B/mew0)-I; mewr=(I/H)+1; printf("magnetizing force is %f amp/m",H); printf("relative permeability is %f",mewr);
b80f303f401d66a2058a8c8f2c8bda3a198cde2b
449d555969bfd7befe906877abab098c6e63a0e8
/3547/CH7/EX7.1/EX7_1.sce
bcb4a1c213b12307bbeb332d4693cc9227f1003f
[]
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
807
sce
EX7_1.sce
// Example 7.1 // Compuatation of the lower limit on the transmitter power // // Page no. 305 clc; clear; close; //Given data q=1.6*10^-19; R=1; B=7*10^9; c=3*10^8; // Velocity of light h=6.62*10^-34; // Planck constant Q=6; k=1.38*10^-23; // Boltzman constant T=298; Rl=50; alpha=0.046; // Fiber loss coefficient L=130; // Length // The lower limit on the transmitter power a=2*q*R*B; b=(4*k*T*B)/Rl; p=(2*sqrt(b)/R*Q)+((a*Q^2)/R^2); Pi=p*exp(alpha*L); //Displaying the result in command window printf("\n The lower limit on the transmitter power = %0.2f mW",Pi*10^3); printf("\n The lower limit on the transmitter peak power is 7.23mW. If the transmitter peak power < 7.23mW, Q < 6."); // The answer vary due to round off error
8f8346850619fa65dfd27402afc986a1e30183cd
449d555969bfd7befe906877abab098c6e63a0e8
/2090/CH4/EX4.5/Chapter4_Example5.sce
d5f31ce97921ab2ce9c30dd1717d40da600143c6
[]
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,601
sce
Chapter4_Example5.sce
clc clear //Input data r=16;//The compression ratio l=6;//The cut-off of the stroke in percent p3=70;//The maximum pressure obtained in bar p1=1;//The pressure at the beginning of compression in bar T1=(100+273);//The temperature at the beginning of compression in K R=0.287;//Gas constant in kJ/kgK g=1.4;//Assume the isentropic index //Calculations T2=T1*(r)^(g-1);//The temperature at point 2 in K function y=f1(x),y=(0.716+(125*10^-6)*x),endfunction I=intg(373,1131,list(f1));//Integrating the above function abs(I) Cv=(1/(1131-373))*I;//The specific heat at constant volume for the temp range T2 and T3 in kJ/kgK Cp=Cv+R;//The specific heat at constant pressure in kJ/kgK g1=Cp/Cv;//The ratio of specific heats T21=T1*(r)^(g1-1);//The temperature at point 2 in K function y=f1(x),y=(0.716+(125*10^-6)*x),endfunction I1=intg(373,995,list(f1));//Integrating the above function abs(I1) Cv1=(1/(995-373))*I1;//The specific heat at constant volume for the temp range T2 and T3 in kJ/kgK Cp1=Cv1+R;//The specific heat at constant pressure in kJ/kgK g2=Cp1/Cv1;//The ratio of specific heats T22=T1*(r)^(g2-1);//The temperature at point 2 in K p2=(T22/T1)*r*p1;//The pressure at point 2 in bar T3=(p3/p2)*T22;//The temperature at point 3 in K V=[(l/100)*(r-1)]+1;//The ratio of volumes at 3-4 points T4=(V)*T3;//The temperature at point 4 in K p4=p3;//The pressure at point 4 in bar g3=1.3;//Assume isentropic index V5=r/V;//The ratio of volumes at 4-5 process T5=T4*(1/V5)^(g3-1);//The temperature at point 5 in K Cv2=[[0.716*(T5-T4)]+[62.5*10^-6*(T5^2-T4^2)]]/(T5-T4);//The specific heat at constant volume for the temp range T5 and T4 in kJ/kgK Cp2=Cv2+R;//The specific heat at constant pressure in kJ/kgK g4=Cp2/Cv2;//The ratio of specific heats T51=T4*(1/V5)^(g4-1);//The temperature at point 5 in K Cv3=[[0.716*(T51-T4)]+[62.5*10^-6*(T51^2-T4^2)]]/(T51-T4);//The specific heat at constant volume for the temp range T5 and T4 in kJ/kgK Cp3=Cv3+R;//The specific heat at constant pressure in kJ/kgK g5=Cp3/Cv3;//The isentropic index T52=T4*(1/V5)^(g5-1);//The temperature at point 5 in K p5=(T52/T1)*p1;//The pressure at point 5 in bar //Output printf('The pressure and temperature at all points of the cycle \n at point 2 , Temperature T2 = %3.0f K and Pressure P2 = %3.2f bar \n at point 3 , Temperature T3 = %3.0f K and Pressure P3 = %3.0f bar \n at point 4 , Temperature T4 = %3.0f K and Pressure P4 = %3.0f bar \n at point 5 ,Temperature T5 = %3.0f K and Pressure P5 = %3.2f bar ',T22,p2,T3,p3,T4,p4,T52,p5)
807b9968d0c94b299cac58ea2acfd5890329b363
1bb72df9a084fe4f8c0ec39f778282eb52750801
/test/H03.prev.tst
f058cfcfbe34e83f67425ac1c6dce731ce36daec
[ "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
17,976
tst
H03.prev.tst
norm: (2*x*y + y^2)^2 + (2*x^2 + 2*x*y)^2 - ( - 2*x^2 - 2*x*y - y^2)^2 = 0 test: 0 norm: (2*x*y + y^2)^2 + (2*x^2 + 2*x*y)^2 - (2*x^2 + 2*x*y + y^2)^2 = 0 test: 0 norm: ( - 2*x*y + y^2)^2 + (2*x^2 - 2*x*y)^2 - ( - 2*x^2 + 2*x*y - y^2)^2 = 0 test: 0 norm: ( - 2*x*y + y^2)^2 + (2*x^2 - 2*x*y)^2 - (2*x^2 - 2*x*y + y^2)^2 = 0 test: 0 norm: ( - 2*x*y - y^2)^2 + (2*x^2 + 2*x*y)^2 - ( - 2*x^2 - 2*x*y - y^2)^2 = 0 test: 0 norm: ( - 2*x*y - y^2)^2 + (2*x^2 + 2*x*y)^2 - (2*x^2 + 2*x*y + y^2)^2 = 0 test: 0 norm: (2*x*y - y^2)^2 + (2*x^2 - 2*x*y)^2 - ( - 2*x^2 + 2*x*y - y^2)^2 = 0 test: 0 norm: (2*x*y - y^2)^2 + (2*x^2 - 2*x*y)^2 - (2*x^2 - 2*x*y + y^2)^2 = 0 test: 0 norm: (2*x*y + 2*y^2)^2 + (x^2 + 2*x*y)^2 - ( - x^2 - 2*x*y - 2*y^2)^2 = 0 test: 0 norm: (2*x*y + 2*y^2)^2 + (x^2 + 2*x*y)^2 - (x^2 + 2*x*y + 2*y^2)^2 = 0 test: 0 norm: ( - 2*x*y + 2*y^2)^2 + (x^2 - 2*x*y)^2 - ( - x^2 + 2*x*y - 2*y^2)^2 = 0 test: 0 norm: ( - 2*x*y + 2*y^2)^2 + (x^2 - 2*x*y)^2 - (x^2 - 2*x*y + 2*y^2)^2 = 0 test: 0 norm: ( - 2*x*y - 2*y^2)^2 + (x^2 + 2*x*y)^2 - ( - x^2 - 2*x*y - 2*y^2)^2 = 0 test: 0 norm: ( - 2*x*y - 2*y^2)^2 + (x^2 + 2*x*y)^2 - (x^2 + 2*x*y + 2*y^2)^2 = 0 test: 0 norm: (2*x*y - 2*y^2)^2 + (x^2 - 2*x*y)^2 - ( - x^2 + 2*x*y - 2*y^2)^2 = 0 test: 0 norm: (2*x*y - 2*y^2)^2 + (x^2 - 2*x*y)^2 - (x^2 - 2*x*y + 2*y^2)^2 = 0 test: 0 norm: (2*x*y)^2 + (x^2 - y^2)^2 - ( - x^2 - y^2)^2 = 0 test: 0 norm: (2*x*y)^2 + (x^2 - y^2)^2 - ( - x^2 - y^2)^2 = 0 test: 0 norm: (2*x*y)^2 + (x^2 - y^2)^2 - (x^2 + y^2)^2 = 0 test: 0 norm: (2*x*y)^2 + (x^2 - y^2)^2 - (x^2 + y^2)^2 = 0 test: 0 norm: ( - 2*x*y)^2 + (x^2 - y^2)^2 - ( - x^2 - y^2)^2 = 0 test: 0 norm: ( - 2*x*y)^2 + (x^2 - y^2)^2 - ( - x^2 - y^2)^2 = 0 test: 0 norm: ( - 2*x*y)^2 + (x^2 - y^2)^2 - (x^2 + y^2)^2 = 0 test: 0 norm: ( - 2*x*y)^2 + (x^2 - y^2)^2 - (x^2 + y^2)^2 = 0 test: 0 norm: (3*x^2)^2 + (4*x^2)^2 - ( - 5*x^2)^2 = 0 test: 0 norm: (3*x^2)^2 + (4*x^2)^2 - ( - 5*x^2)^2 = 0 test: 0 norm: (3*x^2)^2 + (4*x^2)^2 - ( - 5*x^2)^2 = 0 test: 0 norm: (3*x^2)^2 + (4*x^2)^2 - ( - 5*x^2)^2 = 0 test: 0 norm: (3*x^2)^2 + (4*x^2)^2 - (5*x^2)^2 = 0 test: 0 norm: (3*x^2)^2 + (4*x^2)^2 - (5*x^2)^2 = 0 test: 0 norm: (3*x^2)^2 + (4*x^2)^2 - (5*x^2)^2 = 0 test: 0 norm: (3*x^2)^2 + (4*x^2)^2 - (5*x^2)^2 = 0 test: 0 norm: ( - 3*x^2)^2 + ( - 4*x^2)^2 - ( - 5*x^2)^2 = 0 test: 0 norm: ( - 3*x^2)^2 + ( - 4*x^2)^2 - ( - 5*x^2)^2 = 0 test: 0 norm: ( - 3*x^2)^2 + ( - 4*x^2)^2 - ( - 5*x^2)^2 = 0 test: 0 norm: ( - 3*x^2)^2 + ( - 4*x^2)^2 - ( - 5*x^2)^2 = 0 test: 0 norm: ( - 3*x^2)^2 + ( - 4*x^2)^2 - (5*x^2)^2 = 0 test: 0 norm: ( - 3*x^2)^2 + ( - 4*x^2)^2 - (5*x^2)^2 = 0 test: 0 norm: ( - 3*x^2)^2 + ( - 4*x^2)^2 - (5*x^2)^2 = 0 test: 0 norm: ( - 3*x^2)^2 + ( - 4*x^2)^2 - (5*x^2)^2 = 0 test: 0 norm: (3*x^2 + 3*x*y)^2 + (4*x^2 + 4*x*y)^2 - ( - 5*x^2 - 5*x*y)^2 = 0 test: 0 norm: (3*x^2 + 3*x*y)^2 + (4*x^2 + 4*x*y)^2 - ( - 5*x^2 - 5*x*y)^2 = 0 test: 0 norm: (3*x^2 + 3*x*y)^2 + (4*x^2 + 4*x*y)^2 - (5*x^2 + 5*x*y)^2 = 0 test: 0 norm: (3*x^2 + 3*x*y)^2 + (4*x^2 + 4*x*y)^2 - (5*x^2 + 5*x*y)^2 = 0 test: 0 norm: ( - 3*x^2 + 3*x*y)^2 + ( - 4*x^2 + 4*x*y)^2 - ( - 5*x^2 + 5*x*y)^2 = 0 test: 0 norm: ( - 3*x^2 + 3*x*y)^2 + ( - 4*x^2 + 4*x*y)^2 - ( - 5*x^2 + 5*x*y)^2 = 0 test: 0 norm: ( - 3*x^2 + 3*x*y)^2 + ( - 4*x^2 + 4*x*y)^2 - (5*x^2 - 5*x*y)^2 = 0 test: 0 norm: ( - 3*x^2 + 3*x*y)^2 + ( - 4*x^2 + 4*x*y)^2 - (5*x^2 - 5*x*y)^2 = 0 test: 0 norm: (3*x^2 - 3*x*y)^2 + (4*x^2 - 4*x*y)^2 - ( - 5*x^2 + 5*x*y)^2 = 0 test: 0 norm: (3*x^2 - 3*x*y)^2 + (4*x^2 - 4*x*y)^2 - ( - 5*x^2 + 5*x*y)^2 = 0 test: 0 norm: (3*x^2 - 3*x*y)^2 + (4*x^2 - 4*x*y)^2 - (5*x^2 - 5*x*y)^2 = 0 test: 0 norm: (3*x^2 - 3*x*y)^2 + (4*x^2 - 4*x*y)^2 - (5*x^2 - 5*x*y)^2 = 0 test: 0 norm: ( - 3*x^2 - 3*x*y)^2 + ( - 4*x^2 - 4*x*y)^2 - ( - 5*x^2 - 5*x*y)^2 = 0 test: 0 norm: ( - 3*x^2 - 3*x*y)^2 + ( - 4*x^2 - 4*x*y)^2 - ( - 5*x^2 - 5*x*y)^2 = 0 test: 0 norm: ( - 3*x^2 - 3*x*y)^2 + ( - 4*x^2 - 4*x*y)^2 - (5*x^2 + 5*x*y)^2 = 0 test: 0 norm: ( - 3*x^2 - 3*x*y)^2 + ( - 4*x^2 - 4*x*y)^2 - (5*x^2 + 5*x*y)^2 = 0 test: 0 norm: (3*x^2 + 4*x*y + y^2)^2 + (4*x^2 + 2*x*y)^2 - ( - 5*x^2 - 4*x*y - y^2)^2 = 0 test: 0 norm: (3*x^2 + 4*x*y + y^2)^2 + (4*x^2 + 2*x*y)^2 - (5*x^2 + 4*x*y + y^2)^2 = 0 test: 0 norm: (3*x^2 - 4*x*y + y^2)^2 + (4*x^2 - 2*x*y)^2 - ( - 5*x^2 + 4*x*y - y^2)^2 = 0 test: 0 norm: (3*x^2 - 4*x*y + y^2)^2 + (4*x^2 - 2*x*y)^2 - (5*x^2 - 4*x*y + y^2)^2 = 0 test: 0 norm: ( - 3*x^2 + 4*x*y - y^2)^2 + ( - 4*x^2 + 2*x*y)^2 - ( - 5*x^2 + 4*x*y - y^2)^2 = 0 test: 0 norm: ( - 3*x^2 + 4*x*y - y^2)^2 + ( - 4*x^2 + 2*x*y)^2 - (5*x^2 - 4*x*y + y^2)^2 = 0 test: 0 norm: ( - 3*x^2 - 4*x*y - y^2)^2 + ( - 4*x^2 - 2*x*y)^2 - ( - 5*x^2 - 4*x*y - y^2)^2 = 0 test: 0 norm: ( - 3*x^2 - 4*x*y - y^2)^2 + ( - 4*x^2 - 2*x*y)^2 - (5*x^2 + 4*x*y + y^2)^2 = 0 test: 0 norm: ( - 3*x^2 - 2*x*y + y^2)^2 + ( - 4*x^2 + 4*x*y)^2 - ( - 5*x^2 + 2*x*y - y^2)^2 = 0 test: 0 norm: ( - 3*x^2 - 2*x*y + y^2)^2 + ( - 4*x^2 + 4*x*y)^2 - (5*x^2 - 2*x*y + y^2)^2 = 0 test: 0 norm: ( - 3*x^2 + 2*x*y + y^2)^2 + ( - 4*x^2 - 4*x*y)^2 - ( - 5*x^2 - 2*x*y - y^2)^2 = 0 test: 0 norm: ( - 3*x^2 + 2*x*y + y^2)^2 + ( - 4*x^2 - 4*x*y)^2 - (5*x^2 + 2*x*y + y^2)^2 = 0 test: 0 norm: (3*x^2 - 2*x*y - y^2)^2 + (4*x^2 + 4*x*y)^2 - ( - 5*x^2 - 2*x*y - y^2)^2 = 0 test: 0 norm: (3*x^2 - 2*x*y - y^2)^2 + (4*x^2 + 4*x*y)^2 - (5*x^2 + 2*x*y + y^2)^2 = 0 test: 0 norm: (3*x^2 + 2*x*y - y^2)^2 + (4*x^2 - 4*x*y)^2 - ( - 5*x^2 + 2*x*y - y^2)^2 = 0 test: 0 norm: (3*x^2 + 2*x*y - y^2)^2 + (4*x^2 - 4*x*y)^2 - (5*x^2 - 2*x*y + y^2)^2 = 0 test: 0 norm: (4*x*y + 2*y^2)^2 + (4*x^2 + 4*x*y)^2 - ( - 4*x^2 - 4*x*y - 2*y^2)^2 = 0 test: 0 norm: (4*x*y + 2*y^2)^2 + (4*x^2 + 4*x*y)^2 - (4*x^2 + 4*x*y + 2*y^2)^2 = 0 test: 0 norm: ( - 4*x*y + 2*y^2)^2 + (4*x^2 - 4*x*y)^2 - ( - 4*x^2 + 4*x*y - 2*y^2)^2 = 0 test: 0 norm: ( - 4*x*y + 2*y^2)^2 + (4*x^2 - 4*x*y)^2 - (4*x^2 - 4*x*y + 2*y^2)^2 = 0 test: 0 norm: ( - 4*x*y - 2*y^2)^2 + (4*x^2 + 4*x*y)^2 - ( - 4*x^2 - 4*x*y - 2*y^2)^2 = 0 test: 0 norm: ( - 4*x*y - 2*y^2)^2 + (4*x^2 + 4*x*y)^2 - (4*x^2 + 4*x*y + 2*y^2)^2 = 0 test: 0 norm: (4*x*y - 2*y^2)^2 + (4*x^2 - 4*x*y)^2 - ( - 4*x^2 + 4*x*y - 2*y^2)^2 = 0 test: 0 norm: (4*x*y - 2*y^2)^2 + (4*x^2 - 4*x*y)^2 - (4*x^2 - 4*x*y + 2*y^2)^2 = 0 test: 0 norm: (4*x*y + 4*y^2)^2 + (2*x^2 + 4*x*y)^2 - ( - 2*x^2 - 4*x*y - 4*y^2)^2 = 0 test: 0 norm: (4*x*y + 4*y^2)^2 + (2*x^2 + 4*x*y)^2 - (2*x^2 + 4*x*y + 4*y^2)^2 = 0 test: 0 norm: ( - 4*x*y + 4*y^2)^2 + (2*x^2 - 4*x*y)^2 - ( - 2*x^2 + 4*x*y - 4*y^2)^2 = 0 test: 0 norm: ( - 4*x*y + 4*y^2)^2 + (2*x^2 - 4*x*y)^2 - (2*x^2 - 4*x*y + 4*y^2)^2 = 0 test: 0 norm: ( - 4*x*y - 4*y^2)^2 + (2*x^2 + 4*x*y)^2 - ( - 2*x^2 - 4*x*y - 4*y^2)^2 = 0 test: 0 norm: ( - 4*x*y - 4*y^2)^2 + (2*x^2 + 4*x*y)^2 - (2*x^2 + 4*x*y + 4*y^2)^2 = 0 test: 0 norm: (4*x*y - 4*y^2)^2 + (2*x^2 - 4*x*y)^2 - ( - 2*x^2 + 4*x*y - 4*y^2)^2 = 0 test: 0 norm: (4*x*y - 4*y^2)^2 + (2*x^2 - 4*x*y)^2 - (2*x^2 - 4*x*y + 4*y^2)^2 = 0 test: 0 norm: (4*x*y)^2 + (4*x^2 - y^2)^2 - ( - 4*x^2 - y^2)^2 = 0 test: 0 norm: (4*x*y)^2 + (4*x^2 - y^2)^2 - ( - 4*x^2 - y^2)^2 = 0 test: 0 norm: (4*x*y)^2 + (4*x^2 - y^2)^2 - (4*x^2 + y^2)^2 = 0 test: 0 norm: (4*x*y)^2 + (4*x^2 - y^2)^2 - (4*x^2 + y^2)^2 = 0 test: 0 norm: ( - 4*x*y)^2 + (4*x^2 - y^2)^2 - ( - 4*x^2 - y^2)^2 = 0 test: 0 norm: ( - 4*x*y)^2 + (4*x^2 - y^2)^2 - ( - 4*x^2 - y^2)^2 = 0 test: 0 norm: ( - 4*x*y)^2 + (4*x^2 - y^2)^2 - (4*x^2 + y^2)^2 = 0 test: 0 norm: ( - 4*x*y)^2 + (4*x^2 - y^2)^2 - (4*x^2 + y^2)^2 = 0 test: 0 norm: (4*x*y)^2 + (2*x^2 - 2*y^2)^2 - ( - 2*x^2 - 2*y^2)^2 = 0 test: 0 norm: (4*x*y)^2 + (2*x^2 - 2*y^2)^2 - ( - 2*x^2 - 2*y^2)^2 = 0 test: 0 norm: (4*x*y)^2 + (2*x^2 - 2*y^2)^2 - (2*x^2 + 2*y^2)^2 = 0 test: 0 norm: (4*x*y)^2 + (2*x^2 - 2*y^2)^2 - (2*x^2 + 2*y^2)^2 = 0 test: 0 norm: ( - 4*x*y)^2 + (2*x^2 - 2*y^2)^2 - ( - 2*x^2 - 2*y^2)^2 = 0 test: 0 norm: ( - 4*x*y)^2 + (2*x^2 - 2*y^2)^2 - ( - 2*x^2 - 2*y^2)^2 = 0 test: 0 norm: ( - 4*x*y)^2 + (2*x^2 - 2*y^2)^2 - (2*x^2 + 2*y^2)^2 = 0 test: 0 norm: ( - 4*x*y)^2 + (2*x^2 - 2*y^2)^2 - (2*x^2 + 2*y^2)^2 = 0 test: 0 norm: (4*x*y + 4*y^2)^2 + (x^2 + 2*x*y - 3*y^2)^2 - ( - x^2 - 2*x*y - 5*y^2)^2 = 0 test: 0 norm: (4*x*y + 4*y^2)^2 + (x^2 + 2*x*y - 3*y^2)^2 - (x^2 + 2*x*y + 5*y^2)^2 = 0 test: 0 norm: ( - 4*x*y + 4*y^2)^2 + (x^2 - 2*x*y - 3*y^2)^2 - ( - x^2 + 2*x*y - 5*y^2)^2 = 0 test: 0 norm: ( - 4*x*y + 4*y^2)^2 + (x^2 - 2*x*y - 3*y^2)^2 - (x^2 - 2*x*y + 5*y^2)^2 = 0 test: 0 norm: ( - 4*x*y - 4*y^2)^2 + (x^2 + 2*x*y - 3*y^2)^2 - ( - x^2 - 2*x*y - 5*y^2)^2 = 0 test: 0 norm: ( - 4*x*y - 4*y^2)^2 + (x^2 + 2*x*y - 3*y^2)^2 - (x^2 + 2*x*y + 5*y^2)^2 = 0 test: 0 norm: (4*x*y - 4*y^2)^2 + (x^2 - 2*x*y - 3*y^2)^2 - ( - x^2 + 2*x*y - 5*y^2)^2 = 0 test: 0 norm: (4*x*y - 4*y^2)^2 + (x^2 - 2*x*y - 3*y^2)^2 - (x^2 - 2*x*y + 5*y^2)^2 = 0 test: 0 norm: (2*x*y + 4*y^2)^2 + (x^2 + 4*x*y + 3*y^2)^2 - ( - x^2 - 4*x*y - 5*y^2)^2 = 0 test: 0 norm: (2*x*y + 4*y^2)^2 + (x^2 + 4*x*y + 3*y^2)^2 - (x^2 + 4*x*y + 5*y^2)^2 = 0 test: 0 norm: ( - 2*x*y + 4*y^2)^2 + (x^2 - 4*x*y + 3*y^2)^2 - ( - x^2 + 4*x*y - 5*y^2)^2 = 0 test: 0 norm: ( - 2*x*y + 4*y^2)^2 + (x^2 - 4*x*y + 3*y^2)^2 - (x^2 - 4*x*y + 5*y^2)^2 = 0 test: 0 norm: ( - 2*x*y - 4*y^2)^2 + (x^2 + 4*x*y + 3*y^2)^2 - ( - x^2 - 4*x*y - 5*y^2)^2 = 0 test: 0 norm: ( - 2*x*y - 4*y^2)^2 + (x^2 + 4*x*y + 3*y^2)^2 - (x^2 + 4*x*y + 5*y^2)^2 = 0 test: 0 norm: (2*x*y - 4*y^2)^2 + (x^2 - 4*x*y + 3*y^2)^2 - ( - x^2 + 4*x*y - 5*y^2)^2 = 0 test: 0 norm: (2*x*y - 4*y^2)^2 + (x^2 - 4*x*y + 3*y^2)^2 - (x^2 - 4*x*y + 5*y^2)^2 = 0 test: 0 norm: (4*x*y)^2 + (x^2 - 4*y^2)^2 - ( - x^2 - 4*y^2)^2 = 0 test: 0 norm: (4*x*y)^2 + (x^2 - 4*y^2)^2 - ( - x^2 - 4*y^2)^2 = 0 test: 0 norm: (4*x*y)^2 + (x^2 - 4*y^2)^2 - (x^2 + 4*y^2)^2 = 0 test: 0 norm: (4*x*y)^2 + (x^2 - 4*y^2)^2 - (x^2 + 4*y^2)^2 = 0 test: 0 norm: ( - 4*x*y)^2 + (x^2 - 4*y^2)^2 - ( - x^2 - 4*y^2)^2 = 0 test: 0 norm: ( - 4*x*y)^2 + (x^2 - 4*y^2)^2 - ( - x^2 - 4*y^2)^2 = 0 test: 0 norm: ( - 4*x*y)^2 + (x^2 - 4*y^2)^2 - (x^2 + 4*y^2)^2 = 0 test: 0 norm: ( - 4*x*y)^2 + (x^2 - 4*y^2)^2 - (x^2 + 4*y^2)^2 = 0 test: 0 norm: (3*x^2 + 3*y^2)^2 + (4*x^2 + 4*y^2)^2 - ( - 5*x^2 - 5*y^2)^2 = 0 test: 0 norm: (3*x^2 + 3*y^2)^2 + (4*x^2 + 4*y^2)^2 - ( - 5*x^2 - 5*y^2)^2 = 0 test: 0 norm: (3*x^2 + 3*y^2)^2 + (4*x^2 + 4*y^2)^2 - (5*x^2 + 5*y^2)^2 = 0 test: 0 norm: (3*x^2 + 3*y^2)^2 + (4*x^2 + 4*y^2)^2 - (5*x^2 + 5*y^2)^2 = 0 test: 0 norm: ( - 3*x^2 + 3*y^2)^2 + ( - 4*x^2 + 4*y^2)^2 - ( - 5*x^2 + 5*y^2)^2 = 0 test: 0 norm: ( - 3*x^2 + 3*y^2)^2 + ( - 4*x^2 + 4*y^2)^2 - ( - 5*x^2 + 5*y^2)^2 = 0 test: 0 norm: ( - 3*x^2 + 3*y^2)^2 + ( - 4*x^2 + 4*y^2)^2 - (5*x^2 - 5*y^2)^2 = 0 test: 0 norm: ( - 3*x^2 + 3*y^2)^2 + ( - 4*x^2 + 4*y^2)^2 - (5*x^2 - 5*y^2)^2 = 0 test: 0 norm: (3*x^2 - 3*y^2)^2 + (4*x^2 - 4*y^2)^2 - ( - 5*x^2 + 5*y^2)^2 = 0 test: 0 norm: (3*x^2 - 3*y^2)^2 + (4*x^2 - 4*y^2)^2 - ( - 5*x^2 + 5*y^2)^2 = 0 test: 0 norm: (3*x^2 - 3*y^2)^2 + (4*x^2 - 4*y^2)^2 - (5*x^2 - 5*y^2)^2 = 0 test: 0 norm: (3*x^2 - 3*y^2)^2 + (4*x^2 - 4*y^2)^2 - (5*x^2 - 5*y^2)^2 = 0 test: 0 norm: ( - 3*x^2 - 3*y^2)^2 + ( - 4*x^2 - 4*y^2)^2 - ( - 5*x^2 - 5*y^2)^2 = 0 test: 0 norm: ( - 3*x^2 - 3*y^2)^2 + ( - 4*x^2 - 4*y^2)^2 - ( - 5*x^2 - 5*y^2)^2 = 0 test: 0 norm: ( - 3*x^2 - 3*y^2)^2 + ( - 4*x^2 - 4*y^2)^2 - (5*x^2 + 5*y^2)^2 = 0 test: 0 norm: ( - 3*x^2 - 3*y^2)^2 + ( - 4*x^2 - 4*y^2)^2 - (5*x^2 + 5*y^2)^2 = 0 test: 0 norm: (3*x^2 + 3*x*y + 3*y^2)^2 + (4*x^2 + 4*x*y + 4*y^2)^2 - ( - 5*x^2 - 5*x*y - 5*y^2)^2 = 0 test: 0 norm: (3*x^2 + 3*x*y + 3*y^2)^2 + (4*x^2 + 4*x*y + 4*y^2)^2 - (5*x^2 + 5*x*y + 5*y^2)^2 = 0 test: 0 norm: ( - 3*x^2 + 3*x*y + 3*y^2)^2 + ( - 4*x^2 + 4*x*y + 4*y^2)^2 - ( - 5*x^2 + 5*x*y + 5*y^2)^2 = 0 test: 0 norm: ( - 3*x^2 + 3*x*y + 3*y^2)^2 + ( - 4*x^2 + 4*x*y + 4*y^2)^2 - (5*x^2 - 5*x*y - 5*y^2)^2 = 0 test: 0 norm: (3*x^2 - 3*x*y + 3*y^2)^2 + (4*x^2 - 4*x*y + 4*y^2)^2 - ( - 5*x^2 + 5*x*y - 5*y^2)^2 = 0 test: 0 norm: (3*x^2 - 3*x*y + 3*y^2)^2 + (4*x^2 - 4*x*y + 4*y^2)^2 - (5*x^2 - 5*x*y + 5*y^2)^2 = 0 test: 0 norm: ( - 3*x^2 - 3*x*y + 3*y^2)^2 + ( - 4*x^2 - 4*x*y + 4*y^2)^2 - ( - 5*x^2 - 5*x*y + 5*y^2)^2 = 0 test: 0 norm: ( - 3*x^2 - 3*x*y + 3*y^2)^2 + ( - 4*x^2 - 4*x*y + 4*y^2)^2 - (5*x^2 + 5*x*y - 5*y^2)^2 = 0 test: 0 norm: (3*x^2 + 3*x*y - 3*y^2)^2 + (4*x^2 + 4*x*y - 4*y^2)^2 - ( - 5*x^2 - 5*x*y + 5*y^2)^2 = 0 test: 0 norm: (3*x^2 + 3*x*y - 3*y^2)^2 + (4*x^2 + 4*x*y - 4*y^2)^2 - (5*x^2 + 5*x*y - 5*y^2)^2 = 0 test: 0 norm: ( - 3*x^2 + 3*x*y - 3*y^2)^2 + ( - 4*x^2 + 4*x*y - 4*y^2)^2 - ( - 5*x^2 + 5*x*y - 5*y^2)^2 = 0 test: 0 norm: ( - 3*x^2 + 3*x*y - 3*y^2)^2 + ( - 4*x^2 + 4*x*y - 4*y^2)^2 - (5*x^2 - 5*x*y + 5*y^2)^2 = 0 test: 0 norm: (3*x^2 - 3*x*y - 3*y^2)^2 + (4*x^2 - 4*x*y - 4*y^2)^2 - ( - 5*x^2 + 5*x*y + 5*y^2)^2 = 0 test: 0 norm: (3*x^2 - 3*x*y - 3*y^2)^2 + (4*x^2 - 4*x*y - 4*y^2)^2 - (5*x^2 - 5*x*y - 5*y^2)^2 = 0 test: 0 norm: ( - 3*x^2 - 3*x*y - 3*y^2)^2 + ( - 4*x^2 - 4*x*y - 4*y^2)^2 - ( - 5*x^2 - 5*x*y - 5*y^2)^2 = 0 test: 0 norm: ( - 3*x^2 - 3*x*y - 3*y^2)^2 + ( - 4*x^2 - 4*x*y - 4*y^2)^2 - (5*x^2 + 5*x*y + 5*y^2)^2 = 0 test: 0 norm: (6*x*y + 3*y^2)^2 + (6*x^2 + 6*x*y)^2 - ( - 6*x^2 - 6*x*y - 3*y^2)^2 = 0 test: 0 norm: (6*x*y + 3*y^2)^2 + (6*x^2 + 6*x*y)^2 - (6*x^2 + 6*x*y + 3*y^2)^2 = 0 test: 0 norm: ( - 6*x*y + 3*y^2)^2 + (6*x^2 - 6*x*y)^2 - ( - 6*x^2 + 6*x*y - 3*y^2)^2 = 0 test: 0 norm: ( - 6*x*y + 3*y^2)^2 + (6*x^2 - 6*x*y)^2 - (6*x^2 - 6*x*y + 3*y^2)^2 = 0 test: 0 norm: ( - 6*x*y - 3*y^2)^2 + (6*x^2 + 6*x*y)^2 - ( - 6*x^2 - 6*x*y - 3*y^2)^2 = 0 test: 0 norm: ( - 6*x*y - 3*y^2)^2 + (6*x^2 + 6*x*y)^2 - (6*x^2 + 6*x*y + 3*y^2)^2 = 0 test: 0 norm: (6*x*y - 3*y^2)^2 + (6*x^2 - 6*x*y)^2 - ( - 6*x^2 + 6*x*y - 3*y^2)^2 = 0 test: 0 norm: (6*x*y - 3*y^2)^2 + (6*x^2 - 6*x*y)^2 - (6*x^2 - 6*x*y + 3*y^2)^2 = 0 test: 0 norm: (6*x*y + 6*y^2)^2 + (3*x^2 + 6*x*y)^2 - ( - 3*x^2 - 6*x*y - 6*y^2)^2 = 0 test: 0 norm: (6*x*y + 6*y^2)^2 + (3*x^2 + 6*x*y)^2 - (3*x^2 + 6*x*y + 6*y^2)^2 = 0 test: 0 norm: ( - 6*x*y + 6*y^2)^2 + (3*x^2 - 6*x*y)^2 - ( - 3*x^2 + 6*x*y - 6*y^2)^2 = 0 test: 0 norm: ( - 6*x*y + 6*y^2)^2 + (3*x^2 - 6*x*y)^2 - (3*x^2 - 6*x*y + 6*y^2)^2 = 0 test: 0 norm: ( - 6*x*y - 6*y^2)^2 + (3*x^2 + 6*x*y)^2 - ( - 3*x^2 - 6*x*y - 6*y^2)^2 = 0 test: 0 norm: ( - 6*x*y - 6*y^2)^2 + (3*x^2 + 6*x*y)^2 - (3*x^2 + 6*x*y + 6*y^2)^2 = 0 test: 0 norm: (6*x*y - 6*y^2)^2 + (3*x^2 - 6*x*y)^2 - ( - 3*x^2 + 6*x*y - 6*y^2)^2 = 0 test: 0 norm: (6*x*y - 6*y^2)^2 + (3*x^2 - 6*x*y)^2 - (3*x^2 - 6*x*y + 6*y^2)^2 = 0 test: 0 norm: ( - 3*x^2 - 6*x*y)^2 + ( - 4*x^2 + 2*x*y + 2*y^2)^2 - ( - 5*x^2 - 2*x*y - 2*y^2)^2 = 0 test: 0 norm: ( - 3*x^2 - 6*x*y)^2 + ( - 4*x^2 + 2*x*y + 2*y^2)^2 - (5*x^2 + 2*x*y + 2*y^2)^2 = 0 test: 0 norm: ( - 3*x^2 + 6*x*y)^2 + ( - 4*x^2 - 2*x*y + 2*y^2)^2 - ( - 5*x^2 + 2*x*y - 2*y^2)^2 = 0 test: 0 norm: ( - 3*x^2 + 6*x*y)^2 + ( - 4*x^2 - 2*x*y + 2*y^2)^2 - (5*x^2 - 2*x*y + 2*y^2)^2 = 0 test: 0 norm: (3*x^2 - 6*x*y)^2 + (4*x^2 + 2*x*y - 2*y^2)^2 - ( - 5*x^2 + 2*x*y - 2*y^2)^2 = 0 test: 0 norm: (3*x^2 - 6*x*y)^2 + (4*x^2 + 2*x*y - 2*y^2)^2 - (5*x^2 - 2*x*y + 2*y^2)^2 = 0 test: 0 norm: (3*x^2 + 6*x*y)^2 + (4*x^2 - 2*x*y - 2*y^2)^2 - ( - 5*x^2 - 2*x*y - 2*y^2)^2 = 0 test: 0 norm: (3*x^2 + 6*x*y)^2 + (4*x^2 - 2*x*y - 2*y^2)^2 - (5*x^2 + 2*x*y + 2*y^2)^2 = 0 test: 0 norm: (3*x^2 + 2*x*y)^2 + (4*x^2 + 6*x*y + 2*y^2)^2 - ( - 5*x^2 - 6*x*y - 2*y^2)^2 = 0 test: 0 norm: (3*x^2 + 2*x*y)^2 + (4*x^2 + 6*x*y + 2*y^2)^2 - (5*x^2 + 6*x*y + 2*y^2)^2 = 0 test: 0 norm: (3*x^2 - 2*x*y)^2 + (4*x^2 - 6*x*y + 2*y^2)^2 - ( - 5*x^2 + 6*x*y - 2*y^2)^2 = 0 test: 0 norm: (3*x^2 - 2*x*y)^2 + (4*x^2 - 6*x*y + 2*y^2)^2 - (5*x^2 - 6*x*y + 2*y^2)^2 = 0 test: 0 norm: ( - 3*x^2 + 2*x*y)^2 + ( - 4*x^2 + 6*x*y - 2*y^2)^2 - ( - 5*x^2 + 6*x*y - 2*y^2)^2 = 0 test: 0 norm: ( - 3*x^2 + 2*x*y)^2 + ( - 4*x^2 + 6*x*y - 2*y^2)^2 - (5*x^2 - 6*x*y + 2*y^2)^2 = 0 test: 0 norm: ( - 3*x^2 - 2*x*y)^2 + ( - 4*x^2 - 6*x*y - 2*y^2)^2 - ( - 5*x^2 - 6*x*y - 2*y^2)^2 = 0 test: 0 norm: ( - 3*x^2 - 2*x*y)^2 + ( - 4*x^2 - 6*x*y - 2*y^2)^2 - (5*x^2 + 6*x*y + 2*y^2)^2 = 0 test: 0 norm: (6*x*y)^2 + (3*x^2 - 3*y^2)^2 - ( - 3*x^2 - 3*y^2)^2 = 0 test: 0 norm: (6*x*y)^2 + (3*x^2 - 3*y^2)^2 - ( - 3*x^2 - 3*y^2)^2 = 0 test: 0 norm: (6*x*y)^2 + (3*x^2 - 3*y^2)^2 - (3*x^2 + 3*y^2)^2 = 0 test: 0 norm: (6*x*y)^2 + (3*x^2 - 3*y^2)^2 - (3*x^2 + 3*y^2)^2 = 0 test: 0 norm: ( - 6*x*y)^2 + (3*x^2 - 3*y^2)^2 - ( - 3*x^2 - 3*y^2)^2 = 0 test: 0 norm: ( - 6*x*y)^2 + (3*x^2 - 3*y^2)^2 - ( - 3*x^2 - 3*y^2)^2 = 0 test: 0 norm: ( - 6*x*y)^2 + (3*x^2 - 3*y^2)^2 - (3*x^2 + 3*y^2)^2 = 0 test: 0 norm: ( - 6*x*y)^2 + (3*x^2 - 3*y^2)^2 - (3*x^2 + 3*y^2)^2 = 0 test: 0 norm: (6*x*y + 3*y^2)^2 + (2*x^2 + 2*x*y - 4*y^2)^2 - ( - 2*x^2 - 2*x*y - 5*y^2)^2 = 0 test: 0 norm: (6*x*y + 3*y^2)^2 + (2*x^2 + 2*x*y - 4*y^2)^2 - (2*x^2 + 2*x*y + 5*y^2)^2 = 0 test: 0 norm: ( - 6*x*y + 3*y^2)^2 + (2*x^2 - 2*x*y - 4*y^2)^2 - ( - 2*x^2 + 2*x*y - 5*y^2)^2 = 0 test: 0 norm: ( - 6*x*y + 3*y^2)^2 + (2*x^2 - 2*x*y - 4*y^2)^2 - (2*x^2 - 2*x*y + 5*y^2)^2 = 0 test: 0 norm: ( - 6*x*y - 3*y^2)^2 + (2*x^2 + 2*x*y - 4*y^2)^2 - ( - 2*x^2 - 2*x*y - 5*y^2)^2 = 0 test: 0 norm: ( - 6*x*y - 3*y^2)^2 + (2*x^2 + 2*x*y - 4*y^2)^2 - (2*x^2 + 2*x*y + 5*y^2)^2 = 0 test: 0 norm: (6*x*y - 3*y^2)^2 + (2*x^2 - 2*x*y - 4*y^2)^2 - ( - 2*x^2 + 2*x*y - 5*y^2)^2 = 0 test: 0 norm: (6*x*y - 3*y^2)^2 + (2*x^2 - 2*x*y - 4*y^2)^2 - (2*x^2 - 2*x*y + 5*y^2)^2 = 0 test: 0 norm: (2*x*y + 3*y^2)^2 + (2*x^2 + 6*x*y + 4*y^2)^2 - ( - 2*x^2 - 6*x*y - 5*y^2)^2 = 0 test: 0 norm: (2*x*y + 3*y^2)^2 + (2*x^2 + 6*x*y + 4*y^2)^2 - (2*x^2 + 6*x*y + 5*y^2)^2 = 0 test: 0 norm: ( - 2*x*y + 3*y^2)^2 + (2*x^2 - 6*x*y + 4*y^2)^2 - ( - 2*x^2 + 6*x*y - 5*y^2)^2 = 0 test: 0 norm: ( - 2*x*y + 3*y^2)^2 + (2*x^2 - 6*x*y + 4*y^2)^2 - (2*x^2 - 6*x*y + 5*y^2)^2 = 0 test: 0 norm: ( - 2*x*y - 3*y^2)^2 + (2*x^2 + 6*x*y + 4*y^2)^2 - ( - 2*x^2 - 6*x*y - 5*y^2)^2 = 0 test: 0 norm: ( - 2*x*y - 3*y^2)^2 + (2*x^2 + 6*x*y + 4*y^2)^2 - (2*x^2 + 6*x*y + 5*y^2)^2 = 0 test: 0 norm: (2*x*y - 3*y^2)^2 + (2*x^2 - 6*x*y + 4*y^2)^2 - ( - 2*x^2 + 6*x*y - 5*y^2)^2 = 0 test: 0 norm: (2*x*y - 3*y^2)^2 + (2*x^2 - 6*x*y + 4*y^2)^2 - (2*x^2 - 6*x*y + 5*y^2)^2 = 0 test: 0
71e79cc24b7d5c9c09931301f3bfea092dd9fff7
36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd
/ET.sce
4f887a5934e7388aa63e1dd964978ad5a799236f
[]
no_license
Ahmad6543/Scenarios
cef76bf19d46e86249a6099c01928e4e33db5f20
6a4563d241e61a62020f76796762df5ae8817cc8
refs/heads/master
2023-03-18T23:30:49.653812
2020-09-23T06:26:05
2020-09-23T06:26:05
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
15,199
sce
ET.sce
Name=ET PlayerCharacters=Quaker BotCharacters=Medic.bot IsChallenge=false Timelimit=60.0 PlayerProfile=Quaker AddedBots=Quaker Bot Long Strafes.bot PlayerMaxLives=0 BotMaxLives=0 PlayerTeam=2 BotTeams=1 MapName=cataicfps.map MapScale=3.8125 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=true InvincibleBots=false Timescale=1.0 BlockHealthbars=false TimeRefilledByKill=0.0 ScoreToWin=1000.0 ScorePerDamage=3.0 ScorePerKill=0.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=0.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=false ScoreMultDamageEfficiency=true ScoreMultKillEfficiency=false GameTag=Enemy Territory 1v1 WeaponHeroTag=Thompson mp40 DifficultyTag=2 AuthorsTag=lepip BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=true BlockFCT=false Description=mxt0r simulator GameVersion=2.0.0.1 ScorePerDistance=0.0 MBSEnable=false MBSTime1=0.25 MBSTime2=0.5 MBSTime3=0.75 MBSTime1Mult=1.0 MBSTime2Mult=2.0 MBSTime3Mult=3.0 MBSFBInstead=false MBSRequireEnemyAlive=false [Aim Profile] Name=Gamer Aim MinReactionTime=0.19 MaxReactionTime=0.23 MinSelfMovementCorrectionTime=0.003 MaxSelfMovementCorrectionTime=0.04 FlickFOV=19.0 FlickSpeed=3.0 FlickError=9.0 TrackSpeed=2.0 TrackError=6.0 MaxTurnAngleFromPadCenter=140.0 MinRecenterTime=0.2 MaxRecenterTime=0.23 OptimalAimFOV=12.0 OuterAimPenalty=1.0 MaxError=35.0 ShootFOV=7.0 VerticalAimOffset=-0.02 MaxTolerableSpread=3.0 MinTolerableSpread=3.0 TolerableSpreadDist=4000.0 MaxSpreadDistFactor=3.0 AimingStyle=Original ScanSpeedMultiplier=1.0 MaxSeekPitch=30.0 MaxSeekYaw=30.0 AimingSpeed=5.0 MinShootDelay=0.3 MaxShootDelay=0.6 [Aim Profile] Name=Default MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 AimingStyle=Original ScanSpeedMultiplier=1.0 MaxSeekPitch=30.0 MaxSeekYaw=30.0 AimingSpeed=5.0 MinShootDelay=0.3 MaxShootDelay=0.6 [Bot Profile] Name=Medic DodgeProfileNames=Short Strafes;Long Strafes;MidStrafes DodgeProfileWeights=1.0;1.0;1.0 DodgeProfileMaxChangeTime=2.5 DodgeProfileMinChangeTime=1.5 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Gamer Aim;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=GamerBot SeeThroughWalls=true NoDodging=false NoAiming=false AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=1.0 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Character Profile] Name=Quaker MaxHealth=156.0 WeaponProfileNames=Thompson;;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=false DamageKnockbackFactor=2.1 MovementType=Base MaxSpeed=1150.0 MaxCrouchSpeed=450.0 Acceleration=9000.0 AirAcceleration=16000.0 Friction=4.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.0 AirControl=0.25 CanCrouch=true CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=320.0 MainBBRadius=58.0 MainBBHasHead=false MainBBHeadRadius=45.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=Run.abilsprint;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=GamerBot MaxHealth=156.0 WeaponProfileNames=Thompson;;;;;;; MinRespawnDelay=0.6 MaxRespawnDelay=1.1 StepUpHeight=70.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=2.1 MovementType=Base MaxSpeed=900.0 MaxCrouchSpeed=450.0 Acceleration=8500.0 AirAcceleration=16000.0 Friction=6.0 BrakingFrictionFactor=1.0 JumpVelocity=0.0 Gravity=3.0 AirControl=0.25 CanCrouch=true CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.050 Y=0.065 Z=0.604 EnemyHeadColor=X=0.000 Y=0.894 Z=0.012 TeamBodyColor=X=0.000 Y=0.000 Z=255.000 TeamHeadColor=X=255.000 Y=255.000 Z=255.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Cuboid MainBBHeight=225.0 MainBBRadius=50.0 MainBBHasHead=true MainBBHeadRadius=40.0 MainBBHeadOffset=-10.0 MainBBHide=false ProjBBType=Cuboid ProjBBHeight=225.0 ProjBBRadius=50.0 ProjBBHasHead=true ProjBBHeadRadius=40.0 ProjBBHeadOffset=-10.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=Run.abilsprint;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.1 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.25 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Dodge Profile] Name=Short Strafes MaxTargetDistance=2500.0 MinTargetDistance=750.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.2 MaxLRTimeChange=0.5 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=50.0 DamageReactionResetTimer=0.5 JumpFrequency=0.2 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.3 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.6 MaxCrouchTime=1.0 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 [Dodge Profile] Name=Long Strafes MaxTargetDistance=2500.0 MinTargetDistance=750.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.5 MaxLRTimeChange=1.5 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=true DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=50.0 DamageReactionResetTimer=0.5 JumpFrequency=0.2 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.3 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.6 MaxCrouchTime=1.0 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 [Dodge Profile] Name=MidStrafes MaxTargetDistance=2500.0 MinTargetDistance=750.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.32 MaxLRTimeChange=0.35 MinFBTimeChange=0.25 MaxFBTimeChange=0.6 DamageReactionChangesDirection=true DamageReactionChanceToIgnore=0.2 DamageReactionMinimumDelay=0.13 DamageReactionMaximumDelay=0.16 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.2 JumpFrequency=0.0 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Oppose TargetStrafeMinDelay=0.13 TargetStrafeMaxDelay=0.18 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.1 MaxCrouchTime=0.1 MinJumpTime=0.0 MaxJumpTime=0.0 LeftStrafeTimeMult=0.9 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 [Weapon Profile] Name=Thompson Type=Hitscan ShotsPerClick=1 DamagePerShot=18.0 KnockbackFactor=8.0 TimeBetweenShots=0.123 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.3 MagazineMax=30 AmmoPerShot=1 ReloadTimeFromEmpty=0.65 ReloadTimeFromPartial=0.65 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=30.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.05 BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=8.0 RecoilNegatable=false DecalType=1 DecalSize=8.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=false SpreadStationaryVelocity=1000000.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.3 HitscanVisualRadius=0.3 TaggingDuration=0.0 TaggingMaxFactor=0.9 TaggingHitFactor=0.9 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=2.5 AimPunchResetTime=0.1 AimPunchCooldown=0.01 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.01 AmmoReloadedOnKill=5 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=103.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=false IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 WeaponModel=Heavy Surge Rifle WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Pistol 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=Gunshot ParticleBodyImpact=Blood ParticleProjectileTrail=None ParticleHitscanTrace=Bullet ParticleMuzzleFlashScale=0.5 ParticleWallImpactScale=0.2 ParticleBodyImpactScale=1.2 ParticleProjectileTrailScale=1.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,5.0 SpreadSCA=1.0,1.0,-1.0,5.0 SpreadMSA=1.0,1.0,-1.0,5.0 SpreadMCA=1.0,1.0,-1.0,5.0 SpreadSSH=1.0,1.0,0.1,0.1 SpreadSCH=1.0,1.0,0.1,0.1 SpreadMSH=1.0,1.0,2.0,2.0 SpreadMCH=1.0,1.0,2.0,2.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Sprint Ability Profile] Name=Run MaxCharges=1.0 ChargeTimer=0.0001 ChargesRefundedOnKill=0.0 DelayAfterUse=0.0 FullyAuto=false AbilityDuration=0.0 BlockAttackWhileSprinting=false AbilityBlockedWhenAttacking=false SpeedModifier=1.33 45DegreeSprint=true 90DegreeSprint=true 135DegreeSprint=true 180DegreeSprint=true TapToSprint=false Block45DegreesWhenSprinting=false AIUseInCombat=true AIUseOutOfCombat=true AIUseOnGround=true AIUseInAir=true AIReuseTimer=1.0 AIMinSelfHealth=0.0 AIMaxSelfHealth=100.0 AIMinTargHealth=0.0 AIMaxTargHealth=100.0 AIMinTargDist=0.0 AIMaxTargDist=2000.0 AIMaxTargFOV=15.0 AIDamageReaction=true AIDamageReactionIgnoreChance=0.75 AIDamageReactionMinDelay=0.125 AIDamageReactionMaxDelay=0.25 AIDamageReactionCooldown=0.5 AIDamageReactionThreshold=0.0 AIDamageReactionResetTimer=0.1 [Map Data]
d2ea29cb2c44bc74e27e5f562038d535cc32f0da
449d555969bfd7befe906877abab098c6e63a0e8
/1019/CH7/EX7.16/Example_7_16.sce
907cdd22773e0aefc56823e201b40e12518825fb
[]
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
465
sce
Example_7_16.sce
//Example 7.16 clear; clc; //Given R=8.314;//gas constant in J K^-1 mol^-1 delTf=10;//Freezing temperature depression in K Kf=1.86;//molal freezing point depression constant of water K mol^-1 kg M2=32;//molecular mass of methyl alcohol in g w1=100;//mass of water in g //To determine the mass of methyl alcohol required w2=(delTf*M2*w1)/(Kf*1000);//mass of methyl alcohol required in g mprintf('The mass of methyl alcohol required = %f g',w2); //end
b64d648732c04b6e3c3ece43bec5d01f07759440
449d555969bfd7befe906877abab098c6e63a0e8
/3281/CH9/EX9.12/ex9_12.sce
f0dcad31758206574a8327f63bb1998949163548
[]
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
144
sce
ex9_12.sce
//Page Number: 487 //Example 9.12 clc; //Given G=15.85; Rn=75; //ohm Rl=Rn-(Rn/G); C=Rl+(10*%i); disp('ohms',C,'Cavity impedance:');
425818a81a909630a5e9f1cf7b434f2ad3719002
449d555969bfd7befe906877abab098c6e63a0e8
/2084/CH3/EX3.3/3_3.sce
259bd47d60b657fb9a3f5fef1577bd2c7bed3416
[]
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
472
sce
3_3.sce
//developed in windows XP operating system 32bit //platform Scilab 5.4.1 clc;clear; //example 3.3 //calculation of distance from speed versus time graph //given data base=3; //time(in s) representing the base of graph(triangle) height=6; //speed(in m/s) representing the height of the graph(triangle) //calculation dist=(1/2)*base*height; //distance travelled is the area of the graph(triangle) disp(dist,'the distance(in m) travelled by the particle is');
9082ed4730cbec1c6dd2a1421caffcc2b6c1c5a3
b26cbe6bc3e201f030705aaf9eb82da94def231f
/tests/define_cavities-003.tst
ec4b25b18519f91c6107677efa0c6fd31acecf07
[]
no_license
RP-pbm/Recurrence-plot
f86c5cd85460661b01a609f8f4281d2cda6b4e07
b5da95f9b30c1a924a002102219bf0a2ad47df2c
refs/heads/master
2022-07-24T12:11:34.163543
2022-07-09T19:32:43
2022-07-09T19:32:43
92,934,698
0
0
null
null
null
null
UTF-8
Scilab
false
false
10
tst
define_cavities-003.tst
,a,1w,,5,
04e04d023f3b62a6392058b7675536a86df75e34
449d555969bfd7befe906877abab098c6e63a0e8
/3751/CH6/EX6.9/Ex6_9.sce
874c56af33485785fb5b1c7b944632c9146400b1
[]
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,754
sce
Ex6_9.sce
//Fluid System By Shiv Kumar //Chapter 6 - Kaplan and Propeller Turbines //Example 6.9 //To Determine Runner Vane Angles at the hub and at the Outer Periphery clc clear //Given: P=22500; //Power Available at Shaft, KW H=20; //Head, m N=150; //Rotational Speed, rpm eta_H=95/100; //Hydraulic Efficiency eta_0=88/100; //Overall Efficiency D=4.5; //Outer Diameter of Runner, m d=2; //Diameter of Hub, m Vw=0; //As there is no exit whirl //Data Required: rho=1000; //Density of Water, Kg/m^3 g=9.81; //Acceleration due to gravity, m/s^2 //Computations //Runner Vane Angles at Hub uo=%pi*d*N/60; //m/s ui=uo; Q=P*10^3/(rho*g*H*eta_0); //Discharge, m^3/s Vwi=eta_H*g*H/ui; //m/s Vfi=Q/((%pi/4)*(D^2-d^2)) // m/s Vfo=Vfi; Beta_i=180-atand(Vfi/(ui-Vwi)); //Degrees Beta_o=atand(Vfo/uo); //Degrees //Result1 printf("Runner Vane Angles at the Hub \n\t") printf("Beta_i=%.2f Degrees\n\t",Beta_i) //The answer vary due to round off error printf("Beta_o=%.2f Degrees\n\n",Beta_o) //The answer vary due to round off error // Runner Vane Angles at outer periphery uo=%pi*D*N/60; //m/s ui=uo; Vwi=eta_H*g*H/ui; //m/s Beta_i=180-atand(Vfi/(ui-Vwi)); //Degrees Beta_o=atand(Vfo/uo); //Degrees //Result2 printf("Runner Vane Angles at the Outer periphery \n\t") printf("Beta_i=%.2f Degrees\n\t",Beta_i) //The answer vary due to round off error printf("Beta_o=%.2f Degrees\n\n",Beta_o) //The answer vary due to round off error
d01508a7ffe96f5483c0c57da1c6f53535b45978
1897ae5489b64fae9aa083d62f51254cfe52d26f
/III semester/numerical-algorithms/labovi/LV1/vjezba1.sce
d0ea129fd06b438ceae9f68353d2362e6e2a86b0
[ "Unlicense", "LicenseRef-scancode-proprietary-license" ]
permissive
MasovicHaris/etf-alles
f1bfe40cab2de06a26ceb46bdb5c47de2e6db73e
0ab1ad83d00fafc69b38266edd875bce08c1fc9e
refs/heads/main
2022-01-01T18:22:54.072030
2021-12-22T09:05:05
2021-12-22T09:05:05
138,169,714
9
15
Unlicense
2020-03-29T23:36:50
2018-06-21T12:50:51
C++
UTF-8
Scilab
false
false
1,564
sce
vjezba1.sce
clc mode(1) pause //Zadatak 1 //a 3*456/23+31.54+2^6 //b sqrt(2)*log(10) //c cos(%pi/3)+sin(%pi/2)*exp(3) //d atan(5)+log10(20) pause //Zadatak 2 //a zeros(5,9) //b ones(7,2) //c eye(5,5) //d A=[1, -4*%i, sqrt(2); log(-1), sin(%pi/2), cos(%pi/3);asin(0.5), acos(0.8),exp(0.8)] pause //Zadatak 3 //a A.' //b A' //c A-A.' //d A*A.' A.'*A //e det(A) sum(A) sum(A,1) sum(A,2) pause //Zadatak 4 //a A(2,:) //b A(:,3) //c A(2,3) //d B=A(1:2,2:3) pause //Zadatak 5 a=[ones(1,3);3*ones(1,3);2*ones(1,3)] b=[9:-1:7;6:-1:4;3:-1:1] //a c=cos(b) //b c=sin(b).*cos(a) //c c=b^(1/5) //d c=a.^(1/3) pause //Zadatak 6 //a a=1:50 //b b=49:-1:0 //c c=0:5:45 pause //Zadatak 7 //a x=-%pi:%pi/50:%pi; y=cos(x); plot(x,y) pause clf //b x=linspace(1,7,100); y=sin(1 ./ x); plot(x,y,'k') pause //c y= sin(2*x); plot(x,y,'bo') pause clf //Zadatak 8 x=linspace(-8,8,100); y=linspace(-8,8,100); [X,Y]=meshgrid(x,y); Z=X.^2+Y.^2; surf(X,Y,Z); pause //Zadatak 9 //a function [zbir,razlika] = Rezultat(x,y) zbir=x+y; razlika=x-y; endfunction //Primjer [z,r]=Rezultat(5,3) pause //b function [s] = Suma (A) s=0; for i=1:size(A,'r') for j=1:size(A,'c') s=s+A(i,j); end; end; endfunction //Primjer Suma(A) pause //Zadatak 10 //a function [] = z10a(s) x=linspace(-2,2,100); y=evstr(s); subplot(1,2,1); plot(x,y,'b'); subplot(1,2,2); plot(x,y,'k+'); endfunction z10a('x^2') pause clf //b function [] = z10b(s) X=linspace(-4,4,100); Y=linspace(-4,4,100); [x,y]=meshgrid(X,Y); z=evstr(s) surf(x,y,z); endfunction z10b('x.^2+y.^2')
6a871e12cff3251b8e7613771122fde5d5cef36a
449d555969bfd7befe906877abab098c6e63a0e8
/1382/CH2/EX2.30/EX_2_30.SCE
aca273ac64375593dae863d17e2ef40fbd93a9d8
[]
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
392
sce
EX_2_30.SCE
// Example 2.30:Voltage across Re clc; clear; close; Vcc=10;//in volts Rb=200;//Base resistance in killo ohms Vbe=0.8;// Base to emitter voltage in volts Beta=100; Vce=0.2;// Collector to emitter voltage in volts Ib=5/Rb;// Base current in milli ampere Ic=Beta*Ib;// Collector current in milli ampere Rc= (Vcc-Vce)/Ic;// Resistance disp(Rc,"Collector resistance in killo ohms")
3ed59d3425a11ba9715310b82e9bf6356e579eb6
449d555969bfd7befe906877abab098c6e63a0e8
/1388/CH5/EX5.4/5_4.sce
40a9f448d3b2ec75dc3088ce447e4a2f21ddfd98
[]
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
5_4.sce
clc //initialisation of variables P= 408 //mm of Hg P1= 141 // mm of Hg p= 60 //CALCULATIONS P2= P*(100-p)/100 P3= P1*p/100 N= P2/(P2+P3) P4= P2+P3 //RESULTS printf (' mole fraction = %.3f ',N) printf (' \n total pressure = %.f mm of Hg',P4)
a27be7dce3f3575bfdee94e675f6083e1effacfb
449d555969bfd7befe906877abab098c6e63a0e8
/1026/CH10/EX10.9/Example10_9.sce
e2e98fa264fc1e84ae41813c73ae5e9ce3f570a4
[]
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
Example10_9.sce
//chapter10,Example10_9,pg 274 V1=200 //electrostatic focusing condition //(sini/sinr)=(v2/v1)=sqrt(V2/V1) //0.5mv2=eV i=60*(%pi/180)//converting into radian r=45*(%pi/180)//converting into radian V2=200*((sin(i)/sin(r))^2) pd=V2-V1//potential difference printf("potential difference between two region\n") printf("\npd=%.2f Volts",pd)
ae71f64d07f6e2e1645683fe92b3e7992ec8ded0
449d555969bfd7befe906877abab098c6e63a0e8
/3020/CH2/EX2.1/ex2_1.sce
04e5004a212d839c655a7aaeac71bc17f16604a6
[]
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
641
sce
ex2_1.sce
clc; clear all; n = 8.9e-4; // Co-efficient of viscosity of water in newton second per square meter a = 0.054e-2; // Radius of capillary tube in meters l = 56e-2; // Length of the capillary tube in meters h = 34e-2; // Height of pressure head in meters t = 300; // Time of flow in seconds g = 9.8; // Gravity Constant rho = 1e3; // Density of water in Kg per meter cube V = (%pi*h*g*rho*t*(a^4)/(8*n*l)); mass = V*rho;//mass mass1=mass*1e3;//conversion to gm from Kg disp('g',mass1,'The mass of water flowing in 5 minutes') //there is variation in the answer than book.. there is mistake in book.. checked in calculator also..
11a720ce2a7693e0538d925cba34a7eca723cff1
591ada900c0ab2243572a29888d3681faf6fff43
/AWGN.sci
e51ae2e7ac7fb6688981be19bf09cababdf1f8d0
[]
no_license
gabrielmcoelho/AWGN-Channel
0ce7cdc42e1ad75356fca647b6a85bbe35b0496d
878028a589ca0dcae2ca58a878c817a61662bf60
refs/heads/master
2021-07-17T18:42:24.030527
2017-10-24T05:32:33
2017-10-24T05:32:33
108,081,206
0
0
null
null
null
null
UTF-8
Scilab
false
false
5,465
sci
AWGN.sci
function cicloSTD(num) // 2-PAM // Gerando uma fonte de informação com igual probabilidade de 0 e 1 g = round(rand(1,num)); // Modulação em banda-base (0->-1 ; 1->+1) for i=1:num if g(i) == 1 then x1(i) = 1; else x1(i) = -1; end end x1 = x1'; // Gerando um vetor de amostras de um processo ruidoso gaussiano branco t = 1:num; noise1 = rand(t, "normal"); // calculando a Energia do sinal por número de símbolos Es_Ns = sum(x1.^2)/num; // calculando o vetor de amostras do sinal ruidoso, y, e o vetor xHat SNR1 = [-3:10]; for i=1:14 erros = 0; var = sqrt(0.5 *(10^(-SNR1(i)/10))*Es_Ns); y = x1 + var.*noise1; for j=1:num if y(j)<0 then x1Hat(j) = -1 else x1Hat(j) = 1; end if x1Hat(j) ~= x1(j) then erros = erros + 1; end end Pe1(i) = erros/num; end // Plotagem dos gráficos xtitle( '', 'Es/N0[dB]', 'SER', '' ) ; // teórico Es_N0_dB = [-3:10]; SER_teorica_PAM = (0.5)*erfc(sqrt(10.^(Es_N0_dB/10))); //plot2d(Es_N0_dB, SER_teorica_PAM, logflag = 'nl', style=1); // computacional plot2d(SNR1, Pe1, 2, logflag = 'nl'); // 4-PAM // Modulação em banda-base (00->-3 ; 01->-1 ; 11->+1; 10->+3) aux = 1; for i=1:2:num-1 if g(i) == 0 & g(i+1) == 0 then x2(aux) = -3; elseif g(i) == 0 & g(i+1) == 1 then x2(aux) = -1; elseif g(i) == 1 & g(i+1) == 1 then x2(aux) = 1; else x2(aux) = 3; end aux = aux+1; end x2 = x2'; // Gerando um vetor de amostras de um processo ruidoso gaussiano branco t = 1:num/2; noise2 = rand(t, "normal"); // calculando a Energia do sinal por número de símbolos Es_Ns = sum(x2.^2)/(num/2); // calculando o vetor de amostras do sinal ruidoso, y, e o vetor xHat SNR2 = [-3:17]; for i=1:21 erros = 0; var = sqrt(0.5 *(10^(-SNR2(i)/10))*Es_Ns); y2 = x2 + var.*noise2; for j=1:num/2 if y2(j)<-2 then x2Hat(j) = -3; elseif y2(j)<0 then x2Hat(j) = -1; elseif y2(j)<2 then x2Hat(j) = 1; else x2Hat(j) = 3; end if x2Hat(j) ~= x2(j) then erros = erros + 1; end end Pe2(i) = erros/(num/2); end // Plotagem dos gráficos // teórico M = 4; Es_N0_dB = [-3:17]; Es_N0 = 10.^(Es_N0_dB/10) Ps = 2*((M-1)/M)*0.5 *erfc(sqrt((6/(M^2-1))*Es_N0) / sqrt(2)); //plot2d(Es_N0_dB,Ps,logflag='nl',style=1); // computacional plot2d(SNR2,Pe2,21,logflag='nl'); // 8-PAM // Modulação em banda-base (000->-7 ; 001->-5 ; 010->-3; 011->-1 ; 100->+1 ; 101->+3 ; 110->+5 ; 111->+7) aux = 1; for i=1:3:num-2 if g(i) == 0 & g(i+1) == 0 & g(i+2) == 0 then x3(aux) = -7; elseif g(i) == 0 & g(i+1) == 0 & g(i+2) == 1 then x3(aux) = -5; elseif g(i) == 0 & g(i+1) == 1 & g(i+2) == 0 then x3(aux) = -3; elseif g(i) == 0 & g(i+1) == 1 & g(i+2) == 1 then x3(aux) = -1; elseif g(i) == 1 & g(i+1) == 0 & g(i+2) == 0 then x3(aux) = 1; elseif g(i) == 1 & g(i+1) == 0 & g(i+2) == 1 then x3(aux) = 3; elseif g(i) == 1 & g(i+1) == 1 & g(i+2) == 0 then x3(aux) = 5; else x3(aux) = 7; end aux = aux + 1; end x3 = x3'; // Gerando um vetor de amostras de um processo ruidoso gaussiano branco t = 1:num/3; noise3 = rand(t, "normal"); // calculando a Energia do sinal por número de símbolos Es_Ns = sum(x3.^2)/(num/3); // calculando o vetor de amostras do sinal ruidoso, y, e o vetor xHat SNR3 = [-3:20]; for i=1:24 erros = 0; var = sqrt(0.5 *(10^(-SNR3(i)/10))*Es_Ns); y3 = x3 + var.*noise3; for j=1:num/3 if y3(j)<-6 then x3Hat(j) = -7; elseif y3(j)<-4 then x3Hat(j) = -5; elseif y3(j)<-2 then x3Hat(j) = -3; elseif y3(j)<0 then x3Hat(j) = -1; elseif y3(j)<2 then x3Hat(j) = 1; elseif y3(j)<4 then x3Hat(j) = 3; elseif y3(j)<6 then x3Hat(j) = 5; else x3Hat(j) = 7 end if x3Hat(j) ~= x3(j) then erros = erros + 1; end end Pe3(i) = erros/(num/3); end // Plotagem dos gráficos // teórico M = 8; Es_N0_dB = [-3:20]; Es_N0 = 10.^(Es_N0_dB/10) Ps = 2*((M-1)/M)*0.5 *erfc(sqrt((6/(M^2-1))*Es_N0) / sqrt(2)); //plot2d(Es_N0_dB,Ps,logflag='nl',style=1); // computacional plot2d(SNR3,Pe3,7,logflag='nl'); hl=legend(['2-PAM';'4-PAM';'8-PAM'], pos=3); endfunction
a37fac407fd18ffa9d52c42c0af98cecc4d92109
449d555969bfd7befe906877abab098c6e63a0e8
/876/CH3/EX3.7/Ex3_7t.txt
582ef780bb2e093e0c3f09a9066fad19a1089a38
[]
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
313
txt
Ex3_7t.txt
//caption:Find value of capacitance after application of pressure //Ex3.7 clc clear close A=600*10^-6//area of plates(in meter square) D=2.5*10^-3//sepration of distance(in meter) C=400*10^-12//capacitance(in F) Do=0.5*10^-3//deflection(in mm) e=(C*D)/A d=D-Do Co=(e*A)/d disp(Co,'capacitance(in F)=')
159112fa35a27f8cdff557a3879788f5b3a4dd75
c6f8bc8a96cc612d33dfd5a50cc7ab6ddb4442c5
/resultados/CurrentAlgorithms/Scilab/get_max_values.sci
d0f620d303ca1e3529df5a8fe9cb0ef70c9ce423
[]
no_license
gabiapple/TCC
5a0b28e7d0460e18ec152cac98e2edff7709ab83
ab518fb4711402dadfb2f6d76753d964b560ae89
refs/heads/master
2020-03-29T15:11:21.985800
2019-11-21T11:07:20
2019-11-21T11:09:15
150,049,256
0
0
null
null
null
null
UTF-8
Scilab
false
false
326
sci
get_max_values.sci
function maximus = get_max_values(data, step, fstart, N) j=1; for i=fstart:step:N [maximum, index] = max(data(i:i+step-1)); disp(index + i -1); disp(maximum); disp('-----------------------'); maximus(j) = index + i - 1; j = j + 1; end maximus = maximus; endfunction
750b1b9b0674ad348ed5a2c7840dab20336194ef
700114885d9b5ad6afda2952f0f0a5f94c3cc1b3
/lattice_builder.sce
75bffd7907e1ed33ac56430319302bc344a4b3c3
[]
no_license
mrclient/state_lattice_primitives
2a96622dc775f95ca87b9ba7878d5b79349cb022
dfb4243e258e5aedfd31c11341c890f6b74b9e73
refs/heads/master
2020-03-17T07:57:51.889753
2018-05-28T22:31:01
2018-05-28T22:31:01
133,419,169
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,803
sce
lattice_builder.sce
// Abbreviations used: // res = result clear ; path = get_absolute_file_path('lattice_builder.sce'); exec(path + 'utils.sci'); // INPUT DATA N = 7; step = 0.25; k = [0, -4, 4]; // to make an array of all needed angle i = 0; for x = 0:floor(N/2) for y = 0:floor(N/2) if x == 0 & y == 0 then continue; end new_angle = atan(y, x); if i==0 | find(theta_des==new_angle) == [] then i = i + 1; theta_des(:,i) = new_angle; if new_angle >= %pi/4 & new_angle < %pi/2 then i = i + 1; theta_des(:,i) = %pi - new_angle; end if new_angle <= %pi/4 & new_angle > 0 then i = i + 1; theta_des(:,i) = -new_angle; end end end end theta_des = gsort(theta_des, 'c', 'i'); theta_num = ceil(i/2); total = 1; success = 1; kolor = 1; v_file = mopen(path + "vertices.txt", "wt"); p_file = mopen(path + "points.txt", "wt"); for i = 1:theta_num theta_0 = theta_des(i + floor(theta_num/2)); for k0 = k for yf = 0:floor(N/2) for xf = 0:floor(N/2) if xf == 0 & yf == 0 then continue; end new_xy = rotate([xf*step;yf*step], -theta_0); new_xf = new_xy(1); new_yf = new_xy(2); // NoT = number of theta NoT = find(theta_des==atan(yf, xf)); NoT = NoT - floor(theta_num/2); inf = NoT; sup = NoT + theta_num - 1; if NoT == 1 then sup = sup - floor(theta_num/2); elseif NoT == theta_num inf = inf + floor(theta_num/2); end for j = inf:sup theta_f = theta_des(j); // the ban of S-shaped turns if clean([cos(theta_0), sin(theta_0)] * [-yf;xf] * [cos(theta_f), sin(theta_f)] * [-yf;xf]) > 0 then continue; end theta_f = theta_f - theta_0; for kf = k // the ban of S-shaped turns. part 2 "The curvature time" if k0*kf < 0 then continue; end total = total + 1; [a, b, c, d, sf, status] = find_curve(k0, new_xf, new_yf, theta_f, kf); // checking for results; saving; plotting if status == 1 then [x, y, theta] = poses(a, b, c, d, sf); xy = rotate([x;y], theta_0) theta = theta + theta_0; write_vertices(v_file, theta_0, k0, theta_f+theta_0, kf, xf*step, yf*step, sf, success); write_points(p_file, success, xy, theta) plot2d(xy(1,:), xy(2,:), kolor); success = success + 1; else printf("Bad status for kolor = %d\n", kolor); printf("Bad status = %d for kolor = %d\n", status, kolor); printf("theta0 = %f, k0 = %f, xf = %f, yf = %f, theta_f = %f, kf = %f\n", theta_0, k0, xf, yf, theta_f+theta_0, kf); printf("----------------\n"); end end end end end kolor = kolor + 1; if kolor == 8 then kolor = kolor + 1 end end end mclose(p_file); mclose(v_file); printf("total = %d\nsuccess = %d\npercentage = %.2f\n", total, success, 100*success/total);
e147570bbeb3096fd243164051bbc847e91b33e5
a4633944be5b5077362ba6447966bb694c6647ee
/kadai3-1-3.sci
d773ece14aa5e0037f7b3a7376b189947e87b471
[]
no_license
zeno0119/37-communication
79e47660c2ef7cfe08f25457ea577be3f850d000
b879c29b9b21bf226be24749d95e06fc875e02f5
refs/heads/master
2022-12-18T02:53:01.006966
2020-09-11T05:45:14
2020-09-11T05:45:14
293,683,600
0
0
null
null
null
null
UTF-8
Scilab
false
false
708
sci
kadai3-1-3.sci
clear clc exec('C:\Users\ishma\Documents\知的工学システム応用実験\GenerateFunction.sci', -1) fs = 24e3; //fs: サンプリング周波数(24 kHz) t = (0:fs-1)/fs; //時間軸の設定(0秒から,1/fs秒ごとに,1秒まで) sig = cos(2*%pi*20*t + 2 / fs); //20 Hzの正弦波 sigf = dft(sig, 100) freq_search = 1:100; //周波数の探索範囲 for k = freq_search sigmtx(:,k) = sin(2*%pi*k*t); //変数kを1から100まで増加させながら, //各列に周波数 k (Hz)の正弦波を格納 sigmtxf(:, k) = dft(sigmtx(:,k).', 100) end plot(freq_search,sigf.'*sigmtxf) //sigと,sigmtxの各列の内積を計算し,表示 xlabel('Frequency (Hz)') ylabel('Inner product value')
427a6aa893d73e61cd0e84dc1c3239b50aed5494
f04d3d47f893de08cd99a31b4870112915b80d5b
/Datasets/vehicle/data7.tst
57dd2a581a8637e053559d0259dd239cb7f33800
[]
no_license
MesumRaza/MyWorkInPython
f5364b8514943e44c7200123653da9f4551251b1
bd8c9b3ca2fb02ae6d2b626054fa3cd32c28b330
refs/heads/master
2021-08-19T21:46:41.412995
2017-11-27T13:37:52
2017-11-27T13:37:52
111,728,604
0
0
null
null
null
null
UTF-8
Scilab
false
false
15,227
tst
data7.tst
0.543478 0.0769231 0.416667 0.340611 0.230769 0.0566038 0.281046 0.428571 0.166667 0.0857143 0.284211 0.224221 0.0503145 0.157895 0.136364 0.536585 0.866667 0.8 class2 0.608696 0.576923 0.625 0.379913 0.142857 0.169811 0.411765 0.342857 0.333333 0.5 0.326316 0.328537 0.490566 0.0394737 0.227273 0.536585 0.7 0.966667 class1 0.76087 0.807692 0.875 0.471616 0.197802 0.169811 0.627451 0.171429 0.583333 0.628571 0.515789 0.556355 0.823899 0.157895 0.409091 0 0.433333 0.533333 class1 0.391304 0.269231 0.597222 0.270742 0.142857 0.113208 0.313725 0.428571 0.25 0.214286 0.310526 0.238609 0.289308 0.171053 0.227273 0.170732 0.333333 0.333333 class1 0.282609 0.384615 0.402778 0.0829694 0.0769231 0.0754717 0.248366 0.571429 0.166667 0.371429 0.231579 0.169065 0.427673 0.368421 0.136364 0.170732 0.133333 0.0333333 class2 0.521739 0.0769231 0.361111 0.20524 0.186813 0.113208 0.104575 0.742857 0.0833333 0.157143 0.0947368 0.0743405 0.0188679 0.0921053 0.272727 0.0487805 0.633333 0.633333 class0 0.695652 0.769231 0.944444 0.445415 0.175824 0.188679 0.718954 0.142857 0.666667 0.714286 0.505263 0.633094 0.578616 0.157895 0.681818 0.853659 0.433333 0.733333 class1 0.456522 0.384615 0.402778 0.248908 0.131868 0.0943396 0.261438 0.485714 0.166667 0.357143 0.236842 0.197842 0.490566 0.105263 0.545455 0.268293 0.566667 0.566667 class1 0.5 0.461538 0.652778 0.283843 0.21978 0.150943 0.27451 0.514286 0.166667 0.442857 0.194737 0.20024 0.408805 0.105263 0.409091 0.195122 0.533333 0.666667 class0 0.347826 0.538462 0.555556 0.117904 0.0769231 0.169811 0.313725 0.485714 0.25 0.642857 0.236842 0.221823 0.408805 0.236842 0.0454545 0.170732 0.2 0.4 class0 0.673913 0.846154 0.902778 0.489083 0.230769 0.169811 0.607843 0.171429 0.5 0.728571 0.478947 0.526379 0.672956 0.157895 0.409091 0.439024 0.433333 0.5 class3 0.782609 0.807692 0.875 0.50655 0.208791 0.169811 0.666667 0.142857 0.583333 0.7 0.521053 0.591127 0.647799 0.144737 0.0454545 0.560976 0.4 0.666667 class1 0.782609 0.769231 0.875 0.462882 0.175824 0.169811 0.699346 0.114286 0.666667 0.771429 0.521053 0.627098 0.647799 0.157895 0.272727 0.0731707 0.4 0.6 class1 0.565217 0.807692 0.833333 0.414847 0.164835 0.132075 0.575163 0.2 0.5 0.685714 0.484211 0.498801 0.830189 0.144737 0.0909091 0.170732 0.433333 0.566667 class3 0.413043 0.5 0.583333 0.28821 0.120879 0.113208 0.346405 0.4 0.25 0.442857 0.268421 0.269784 0.345912 0.0263158 0.363636 0.268293 0.8 0.9 class3 0.23913 0.192308 0.361111 0.148472 0.164835 0.0754717 0.0915033 0.8 0.0833333 0.2 0.0736842 0.057554 0.188679 0.144737 0.181818 0.170732 0.3 0.3 class3 0.26087 0.346154 0.361111 0.069869 0.0659341 0.0943396 0.24183 0.542857 0.166667 0.385714 0.226316 0.169065 0.339623 0.342105 0.227273 0.097561 0.133333 0.0333333 class2 0.347826 0.115385 0.388889 0.161572 0.131868 0.113208 0.176471 0.6 0.0833333 0.171429 0.189474 0.128297 0.113208 0.184211 0.318182 0.0243902 0.433333 0.5 class0 0.76087 0.769231 0.888889 0.336245 0.0989011 0.169811 0.705882 0.142857 0.666667 0.7 0.505263 0.633094 0.660377 0.171053 0.681818 0.439024 0.433333 0.6 class1 0.673913 0.807692 0.847222 0.406114 0.186813 0.169811 0.660131 0.142857 0.583333 0.771429 0.463158 0.581535 0.710692 0.197368 0.636364 0.097561 0.366667 0.5 class1 0.586957 0.692308 0.680556 0.414847 0.197802 0.0754717 0.581699 0.171429 0.5 0.585714 0.468421 0.52518 0.603774 0.197368 0.272727 0.170732 0.566667 0.4 class2 0.26087 0.0769231 0.333333 0.10917 0.10989 0.0754717 0.0261438 0.885714 0 0.1 0.0421053 0.0191847 0.0880503 0.0789474 0.0454545 0.560976 0.666667 0.733333 class0 0.543478 0.846154 0.944444 0.279476 0.0659341 0.169811 0.732026 0.114286 0.666667 0.857143 0.531579 0.66307 0.679245 0.184211 0.363636 0.731707 0.366667 0.566667 class3 0.23913 0.192308 0.472222 0.148472 0.10989 0.113208 0.176471 0.657143 0.0833333 0.128571 0.157895 0.117506 0.113208 0.171053 0.409091 0.487805 0.233333 0.333333 class3 0.347826 0.192308 0.527778 0.213974 0.153846 0.0943396 0.222222 0.571429 0.166667 0.128571 0.189474 0.155875 0.207547 0.131579 0 0.219512 0.366667 0.433333 class3 0.673913 0.846154 0.902778 0.519651 0.252747 0.150943 0.72549 0.114286 0.666667 0.842857 0.563158 0.66307 0.685535 0.210526 0.636364 0.268293 0.4 0.5 class3 0.23913 0.423077 0.347222 0.104803 0.0879121 0.113208 0.248366 0.571429 0.166667 0.428571 0.205263 0.169065 0.421384 0.302632 0.0454545 0.268293 0.1 0.0666667 class2 0.152174 0.115385 0.402778 0.100437 0.0989011 0.0943396 0.104575 0.771429 0.0833333 0.0857143 0.0894737 0.0671463 0.150943 0.144737 0.0909091 0.512195 0.233333 0.333333 class3 0.130435 0.384615 0.444444 0.161572 0.164835 0.113208 0.267974 0.514286 0.166667 0.371429 0.236842 0.191847 0.408805 0.25 0 0.195122 0.2 0.233333 class2 0.347826 0.384615 0.513889 0.187773 0.0769231 0.113208 0.20915 0.571429 0.166667 0.4 0.173684 0.148681 0.408805 0.0657895 0.590909 0.121951 0.6 0.666667 class1 0.217391 0.269231 0.263889 0.0524017 0.0659341 0.0943396 0.130719 0.742857 0.0833333 0.271429 0.0789474 0.0791367 0.301887 0.328947 0.545455 0.146341 0.0333333 0.0666667 class0 0.347826 0.653846 0.597222 0.39738 0.197802 0.0754717 0.431373 0.314286 0.333333 0.542857 0.405263 0.356115 0.63522 0.157895 0.0454545 0.146341 0.433333 0.433333 class3 0.369565 0.269231 0.597222 0.323144 0.153846 0.113208 0.431373 0.314286 0.333333 0.2 0.363158 0.345324 0.301887 0.157895 0.0454545 0.341463 0.366667 0.4 class3 0.326087 0.346154 0.361111 0.126638 0.10989 0.0754717 0.0718954 0.8 0 0.371429 0.0894737 0.0515588 0.320755 0.0921053 0.363636 0.097561 0.566667 0.566667 class0 0.5 0.384615 0.583333 0.248908 0.0879121 0.0566038 0.48366 0.228571 0.416667 0.328571 0.447368 0.419664 0.333333 0.210526 0 0.146341 0.633333 0.5 class2 0.434783 0.230769 0.319444 0.183406 0.120879 0.0943396 0.104575 0.742857 0.0833333 0.228571 0.1 0.0743405 0.308176 0.0526316 0.409091 0.170732 0.733333 0.766667 class1 0.543478 0.5 0.513889 0.414847 0.263736 0.0943396 0.352941 0.371429 0.25 0.457143 0.284211 0.285372 0.446541 0.131579 0.590909 0.219512 0.8 0.733333 class2 0.434783 0.230769 0.527778 0.262009 0.208791 0.113208 0.176471 0.628571 0.0833333 0.314286 0.142105 0.127098 0.106918 0.0657895 0.181818 0.170732 0.833333 0.9 class0 0.586957 0.692308 0.958333 0.554585 0.252747 0.169811 0.705882 0.114286 0.666667 0.642857 0.568421 0.645084 0.610063 0.184211 0.5 0.463415 0.433333 0.566667 class3 0.369565 0.115385 0.625 0.349345 0.186813 0.0754717 0.313725 0.428571 0.25 0.1 0.3 0.241007 0.188679 0.0921053 0.409091 0.756098 0.633333 0.733333 class1 0.326087 0.269231 0.541667 0.344978 0.164835 0.0943396 0.418301 0.342857 0.333333 0.285714 0.368421 0.333333 0.257862 0.0921053 0 0.707317 0.433333 0.6 class3 0.521739 0.769231 0.902778 0.528384 0.263736 0.188679 0.712418 0.114286 0.666667 0.7 0.505263 0.634293 0.584906 0.144737 0.136364 0.487805 0.333333 0.633333 class1 0.23913 0.153846 0.416667 0.200873 0.153846 0.0943396 0.163399 0.657143 0.0833333 0.314286 0.136842 0.11271 0.0754717 0.0657895 0 0.560976 0.666667 0.8 class0 0.282609 0.230769 0.305556 0.10917 0.131868 0.0754717 0.0261438 0.885714 0 0.242857 0.0368421 0.0227818 0.226415 0.0657895 0.318182 0.219512 0.766667 0.766667 class0 0.26087 0.192308 0.444444 0.113537 0.0659341 0.132075 0.143791 0.714286 0.0833333 0.2 0.0789474 0.0923261 0.0880503 0.0789474 0.0454545 0.585366 0.4 0.566667 class3 0.304348 0.346154 0.277778 0.0524017 0.043956 0.0754717 0.248366 0.571429 0.166667 0.328571 0.205263 0.167866 0.389937 0.342105 0.0909091 0.341463 0.0666667 0.0333333 class2 0.652174 0.884615 0.902778 0.344978 0.131868 0.150943 0.640523 0.171429 0.583333 0.785714 0.457895 0.556355 0.685535 0.171053 0.590909 0.536585 0.4 0.5 class3 0.369565 0.615385 0.625 0.161572 0.10989 0.169811 0.30719 0.485714 0.25 0.7 0.226316 0.217026 0.484277 0.210526 0.0454545 0.268293 0.2 0.366667 class0 0.152174 0.0384615 0.0277778 0.0262009 0.10989 0.0188679 0.0130719 0.942857 0 0.0142857 0.00526316 0.00839329 0.0754717 0.368421 0.181818 0.170732 0.1 0.0666667 class3 0.413043 0.153846 0.486111 0.379913 0.263736 0.0754717 0.320261 0.4 0.25 0.142857 0.263158 0.2506 0.163522 0.131579 0.0454545 0.341463 0.633333 0.7 class2 0.26087 0 0.138889 0 0.0659341 0.0377358 0.0196078 0.942857 0 0 0.0315789 0.0107914 0.113208 0.315789 0.0454545 0.731707 0.1 0.133333 class1 0.326087 0.0384615 0.402778 0.209607 0.10989 0.0566038 0.169935 0.628571 0.0833333 0.0571429 0.147368 0.119904 0.0691824 0.0394737 0.409091 0.707317 0.933333 0.966667 class3 0.413043 0.346154 0.402778 0.213974 0.120879 0.113208 0.183007 0.628571 0.0833333 0.285714 0.184211 0.127098 0.264151 0.0657895 0.454545 0.512195 0.766667 0.833333 class3 0.217391 0.153846 0.125 0.0349345 0.0879121 0.0566038 0.0653595 0.828571 0 0.142857 0.0736842 0.0419664 0.232704 0.342105 0.363636 0.390244 0.133333 0.1 class0 0.543478 0.230769 0.388889 0.139738 0.0989011 0.113208 0.124183 0.742857 0.0833333 0.371429 0.152632 0.0803357 0.157233 0.171053 0.181818 0.243902 0.333333 0.2 class0 0.521739 0.846154 0.777778 0.28821 0.0769231 0.150943 0.679739 0.142857 0.583333 0.785714 0.468421 0.600719 0.685535 0.210526 0 0.097561 0.266667 0.4 class3 0.76087 0.884615 0.875 0.567686 0.285714 0.150943 0.712418 0.114286 0.666667 0.8 0.536842 0.640288 0.660377 0.184211 0.363636 0.0731707 0.366667 0.533333 class1 0.369565 0.576923 0.569444 0.174672 0.142857 0.132075 0.248366 0.514286 0.166667 0.542857 0.226316 0.178657 0.572327 0.210526 0.0909091 0 0.3 0.466667 class0 0.5 0.269231 0.833333 0.323144 0.120879 0.113208 0.45098 0.314286 0.333333 0.228571 0.394737 0.36211 0.320755 0.118421 0.227273 0.829268 0.533333 0.7 class1 0.717391 0.730769 0.944444 0.449782 0.186813 0.188679 0.712418 0.142857 0.666667 0.714286 0.521053 0.629496 0.572327 0.184211 1 0.926829 0.466667 0.8 class1 0.23913 0.115385 0.486111 0.139738 0.0879121 0.0754717 0.183007 0.628571 0.0833333 0.1 0.189474 0.127098 0.18239 0.157895 0.181818 0.878049 0.433333 0.466667 class1 0.673913 0.769231 0.847222 0.375546 0.175824 0.150943 0.660131 0.171429 0.583333 0.685714 0.463158 0.57554 0.584906 0.197368 0.590909 0.512195 0.4 0.566667 class1 0.217391 0.423077 0.416667 0.270742 0.241758 0.0566038 0.202614 0.571429 0.0833333 0.357143 0.189474 0.146283 0.383648 0.131579 0.318182 0.146341 0.4 0.4 class2 0.326087 0.423077 0.430556 0.266376 0.252747 0.0943396 0.20915 0.571429 0.166667 0.328571 0.194737 0.153477 0.396226 0.157895 0.181818 0.097561 0.4 0.4 class2 0.543478 0.692308 0.611111 0.449782 0.274725 0.0943396 0.470588 0.257143 0.333333 0.614286 0.363158 0.402878 0.559748 0.171053 0.409091 0.268293 0.666667 0.6 class2 0.369565 0.346154 0.319444 0.174672 0.131868 0.0943396 0.124183 0.685714 0.0833333 0.342857 0.126316 0.0899281 0.333333 0.0789474 0.681818 0.0731707 0.7 0.766667 class0 0.282609 0.269231 0.319444 0.135371 0.0989011 0.0566038 0.137255 0.685714 0.0833333 0.242857 0.115789 0.0935252 0.358491 0.144737 0.409091 0.0487805 0.366667 0.333333 class1 0.652174 0.615385 0.930556 0.327511 0.0769231 0.188679 0.627451 0.171429 0.583333 0.585714 0.442105 0.551559 0.465409 0.0921053 0.0454545 0.292683 0.5 0.633333 class3 0.282609 0.423077 0.416667 0.157205 0.186813 0.0754717 0.235294 0.542857 0.166667 0.385714 0.210526 0.165468 0.477987 0.302632 0.454545 0.0243902 0.166667 0.0666667 class2 0.630435 0.730769 0.847222 0.475983 0.186813 0.150943 0.594771 0.2 0.5 0.557143 0.442105 0.517986 0.484277 0.0789474 0 0.463415 0.566667 0.733333 class3 0.173913 0.192308 0.180556 0.0829694 0.120879 0.0754717 0.143791 0.714286 0.0833333 0.142857 0.0894737 0.0899281 0.245283 0.315789 0.454545 0.146341 0.0333333 0.1 class3 0.521739 0.307692 0.305556 0.126638 0.0989011 0.0943396 0.117647 0.742857 0.0833333 0.357143 0.147368 0.0755396 0.301887 0.25 0.227273 0.170732 0.266667 0.166667 class0 0.5 0.307692 0.402778 0.213974 0.0989011 0.0943396 0.189542 0.6 0.0833333 0.328571 0.168421 0.135492 0.377358 0.0263158 0.5 0.195122 0.866667 0.933333 class1 0.282609 0.423077 0.347222 0.10917 0.0989011 0.0754717 0.261438 0.542857 0.166667 0.457143 0.2 0.176259 0.427673 0.315789 0.181818 0.317073 0.0666667 0.0666667 class2 0.521739 0.615385 0.5 0.432314 0.285714 0.0943396 0.431373 0.285714 0.333333 0.557143 0.336842 0.363309 0.484277 0.171053 0 0.170732 0.7 0.633333 class2 0.76087 0.846154 0.902778 0.550218 0.230769 0.169811 0.69281 0.114286 0.583333 0.757143 0.515789 0.629496 0.63522 0.131579 0.636364 0.097561 0.466667 0.533333 class3 0.391304 0.730769 0.805556 0.401747 0.164835 0.132075 0.529412 0.228571 0.416667 0.614286 0.452632 0.453237 0.849057 0.131579 0.136364 0.0243902 0.466667 0.6 class3 0.23913 0.384615 0.5 0.331878 0.307692 0.0943396 0.281046 0.485714 0.166667 0.357143 0.263158 0.209832 0.402516 0.236842 0.227273 0.292683 0.3 0.3 class2 0.478261 0.5 0.888889 0.454148 0.208791 0.132075 0.51634 0.257143 0.416667 0.428571 0.421053 0.430456 0.377358 0.118421 0 0.682927 0.466667 0.633333 class1 0.478261 0.384615 0.597222 0.41048 0.241758 0.0754717 0.424837 0.285714 0.333333 0.3 0.310526 0.359712 0.339623 0.118421 0.272727 0.097561 0.666667 0.566667 class2 0.5 0.5 0.666667 0.244541 0.186813 0.132075 0.254902 0.514286 0.166667 0.428571 0.226316 0.185851 0.459119 0.144737 0.681818 0.268293 0.533333 0.6 class0 0.282609 0.423077 0.513889 0.222707 0.142857 0.0943396 0.261438 0.514286 0.166667 0.328571 0.231579 0.193046 0.327044 0.171053 0.409091 0 0.366667 0.366667 class3 0.369565 0.192308 0.541667 0.353712 0.241758 0.0754717 0.313725 0.4 0.25 0.171429 0.252632 0.2506 0.150943 0.0921053 0.0909091 0.341463 0.733333 0.8 class2 0.26087 0.192308 0.486111 0.122271 0.0769231 0.0943396 0.228758 0.571429 0.166667 0.185714 0.215789 0.160671 0.226415 0.210526 0.318182 0.609756 0.233333 0.233333 class1 0.695652 0.769231 0.902778 0.349345 0.10989 0.169811 0.647059 0.142857 0.583333 0.714286 0.494737 0.571942 0.685535 0.157895 0 0.365854 0.333333 0.533333 class1 0.347826 0.192308 0.513889 0.248908 0.164835 0.0943396 0.24183 0.542857 0.166667 0.157143 0.231579 0.171463 0.27673 0.157895 0.272727 0.512195 0.4 0.4 class1 0.543478 0.846154 0.888889 0.475983 0.21978 0.132075 0.614379 0.171429 0.5 0.7 0.489474 0.533573 0.698113 0.171053 0.227273 0.463415 0.366667 0.5 class1 0.26087 0.269231 0.361111 0.139738 0.120879 0.0754717 0.196078 0.628571 0.166667 0.271429 0.178947 0.133094 0.345912 0.236842 0.0909091 0.536585 0.2 0.166667 class1 0.521739 0.153846 0.527778 0.336245 0.164835 0.113208 0.320261 0.428571 0.25 0.185714 0.273684 0.245803 0.0503145 0.0394737 0.0909091 0.682927 0.9 1 class3 0.521739 0.307692 0.722222 0.406114 0.175824 0.150943 0.437908 0.314286 0.333333 0.314286 0.352632 0.356115 0.169811 0.0526316 0.181818 0.0731707 0.7 0.766667 class3 0.586957 0.538462 0.666667 0.375546 0.142857 0.150943 0.385621 0.342857 0.333333 0.528571 0.294737 0.306954 0.377358 0 0.681818 0.439024 0.833333 0.966667 class1 0.282609 0.0769231 0.0555556 0.0262009 0.0769231 0 0.0457516 0.885714 0 0.0428571 0.0473684 0.028777 0.176101 0.407895 0.272727 0.0243902 0.133333 0.0666667 class0 0.23913 0.346154 0.5 0.227074 0.186813 0.0943396 0.254902 0.514286 0.166667 0.357143 0.257895 0.185851 0.301887 0.210526 0 0.487805 0.366667 0.4 class2 0.347826 0.461538 0.625 0.196507 0.131868 0.169811 0.300654 0.485714 0.25 0.571429 0.247368 0.213429 0.402516 0.210526 0.545455 0.390244 0.233333 0.4 class0
0b3a755c91a9d232e24f7b653c89f77fa3a67045
449d555969bfd7befe906877abab098c6e63a0e8
/2144/CH3/EX3.18/ex3_18.sce
c2d6c72d0224b294ee7f197cb51490de098182f1
[]
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
492
sce
ex3_18.sce
// Exa 3.18 clc; clear; close; // Given data C_P = 1.005;// in kJ/kg-K C_V = 0.718;// in kJ/kg-K R = C_P - C_V;// in kJ/kg-K R= R*10^3;//in J/kg-K P1 = 3*10^5;//in N/m^2 V1 = 1.5;// m^3 T1 = 15;// in degree C T1 = T1 +273;// in K m1 = (P1*V1)/(R* T1);// in kg m2 = m1+2;//final mass of air in kg P2 = P1 * (m2/m1);// in kN/m^2 T1 = T1 - 273;// in degree C T2 = 0;// in degree C m = 1;// in kg del_U = m * C_P * (T1-T2);// kJ disp(del_U,"Total enthapy of air in kJ is");
670347adb7c06930e703613c76ede90a487aefae
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.3.1/macros/scicos_blocks/REGISTER_f.sci
862d16678e244afd7f6cbfe841fd54709d9c27b0
[ "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-public-domain", "MIT" ]
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
1,073
sci
REGISTER_f.sci
function [x,y,typ]=REGISTER_f(job,arg1,arg2) x=[];y=[];typ=[] select job case 'plot' then standard_draw(arg1) case 'getinputs' then [x,y,typ]=standard_inputs(arg1) case 'getoutputs' then [x,y,typ]=standard_outputs(arg1) case 'getorigin' then [x,y]=standard_origin(arg1) case 'set' then x=arg1; graphics=arg1(2);label=graphics(4) model=arg1(3); while %t do [ok,z0,label]=getvalue('Set delay parameters',.. 'Register initial condition',list('vec',-1),label) if ~ok then break,end if prod(size(z0))<2 then message('Register length must be at least 2') ok=%f end if ok then graphics(4)=label; model(7)=z0 x(2)=graphics;x(3)=model break end end x(3)(11)=[] //compatibility case 'define' then z0=zeros(10,1) model=list('delay',1,1,1,[],[],z0,[],[],'d',-1,[%f %f],' ',list()) label=strcat(string(z0),';') gr_i=['dly=model(8);'; 'txt=[''Shift'';''Register'';string(dly)];'; 'xstringb(orig(1),orig(2),txt,sz(1),sz(2),''fill'')'] x=standard_define([2.5 2.5],model,label,gr_i) end
c68d2c71bbacf128abeafa39b930d495ab4e3fa3
717ddeb7e700373742c617a95e25a2376565112c
/587/CH7/EX7.2/example7_2.sce
780a500181d528f2f6f39dad0ffed0b36b4b7e87
[]
no_license
appucrossroads/Scilab-TBC-Uploads
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
refs/heads/master
2021-01-22T04:15:15.512674
2017-09-19T11:51:56
2017-09-19T11:51:56
92,444,732
0
0
null
2017-05-25T21:09:20
2017-05-25T21:09:19
null
UTF-8
Scilab
false
false
1,516
sce
example7_2.sce
clear; clc; //Example7.2[Cooling of a Hot Block by Forced Air at High Elevation] //Given:- ReC=5*10^5;//critical Reynolds number v=8;//Velocity of air[m/s] T_air=20;//Initial Temperature of air[degree Celcius] T_plate=140;//Temperature of flat plate[degree Celcius] T_film=(T_air+T_plate)/2;//Film Temperature of air[degree Celcius] //Properties of air at film temperature[degree Celcius] k=0.02953;//[W/m.degree Celcius] Pr=0.7154;//Prandtl Number nu=2.097*10^(-5);//Kinematic Viscosity at 1 atm Pressure [m^2/s] nu_ac=nu/0.823;//Kinematic viscosity at pressure 0.823 atm[m^2/s] //Solution(a) L1=6;//Characteristic length of plate along the flow of air[m] w1=1.5;//width[m] ReL1=(v*L1)/nu_ac;//Reynolds number if(ReL1>ReC) then, disp("Flow is not laminar") //We have average Nusselt Number Nu1=((0.037*(ReL1^(0.8)))-871)*(Pr^(1/3)); disp(ceil(Nu1),"Nusselt Number is") h1=k*Nu1/L1;//[W/m^2.degree Celcius] As1=w1*L1;//Flow Area of plate[m^2] Q1=h1*As1*(T_plate-T_air); disp("W",Q1,"Heat Flow Rate is") else, disp("Flow is laminar") end //Solution(b) L2=1.5;//Characteristic length of plate along flow of air[m] ReL2=v*L2/nu_ac;//Reynolds Number if(ReL2<Rec) then, disp("Flow is laminar") Nu2=0.664*(ReL2^(0.5))*(Pr^(1/3)); disp(ceil(Nu2),"Nusselt Number is") h2=k*Nu2/L2;//[W/m^2.degree Celcius] Q2=h2*As1*(T_plate-T_air); disp("W",ceil(Q2),"The heat transfer rate is") else, disp("Flow is turbulent") end
a0f060e740d94ece008ef6f888939a9a6a5368c8
01ecab2f6eeeff384acae2c4861aa9ad1b3f6861
/prog_assembly/libs/scilab_code/characterization/Recover_Injection_for_Scurve.sce
9fdc6a8252bcf47a5cd3778a1d21cb8eb7bebe81
[]
no_license
jhasler/rasp30
9a7c2431d56c879a18b50c2d43e487d413ceccb0
3612de44eaa10babd7298d2e0a7cddf4a4b761f6
refs/heads/master
2023-05-25T08:21:31.003675
2023-05-11T16:19:59
2023-05-11T16:19:59
62,917,238
3
3
null
null
null
null
UTF-8
Scilab
false
false
21,710
sce
Recover_Injection_for_Scurve.sce
exec('~/rasp30/prog_assembly/libs/scilab_code/read_tar_pgm_result.sce',-1); time_scale=1e-5; // Time unit : 10us // Tunnel & Reverse Tunnel while 1==1, [a1,b1]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/program.tcl -speed 115200 "+hid_dir+"/tunnel_revtun_SWC_CAB.elf"); if (b1==0) then break end // 0 if no error occurred, 1 if error. disp("connection issue -> it is trying again"); unix_w('/home/ubuntu/rasp30/sci2blif/usbreset'); sleep(2000); end // Recover Injection if n_target_aboveVt_swc ~= 0 then disp("target_aboveVt_swc"); while 1==1, [a1,b1]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/write_mem2_NoRelease.tcl -start_address 0x7000 -input_file_name "+hid_dir+"/target_info_aboveVt_swc"); if (b1==0) then [a3,b3]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/program.tcl -speed 115200 "+hid_dir+"/recover_inject_aboveVt_SWC.elf"); [a4,b4]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/read_mem2_NoRelease.tcl -start_address 0x5000 -length 7000 -output_file_name data_aboveVt_swc_2.hex"); end if (b1==0) & (b3==0) & (b4==0) then break end // 0 if no error occurred, 1 if error. if (b1==1) | (b3==1) | (b4==1) then disp("connection issue -> it is trying again"); unix_w('/home/ubuntu/rasp30/sci2blif/usbreset'); sleep(2000); end end disp("recover inj"); target_l_aboveVt_swc=fscanfMat(hid_dir+'/target_list_aboveVt_swc'); info_name = "_aboveVt_swc_"; n_graph=n_target_aboveVt_swc; m_graph=n_graph+2; clear target_list; target_list = target_l_aboveVt_swc;kapa_constant_or_not=1; clear data_01; data_01=read_tar_pgm_result('data'+info_name+'2.hex',m_graph,time_scale); for i=3:m_graph data_01(:,i)=diodeADC_v2i(diodeADC_h2v(data_01(:,i),chip_num,brdtype),chip_num,brdtype)/kapa_constant_or_not; end clear legend_target_list; legend_target_list = ('a'); scf(11);clf(11); j=1; for i=3:m_graph temp=modulo(i,7)+1; plot2d("nl", data_01(:,2), data_01(:,i), style=temp); p = get("hdl"); p.children.mark_mode = "on"; p.children.mark_style = 9; p.children.thickness = 3; p.children.mark_foreground = temp; legend_target_list(j,1)='Row. ' + string(target_list(j,1)) + ', Col. ' + string(target_list(j,2)); j=j+1; end legend(legend_target_list(:,1),"in_lower_right"); // "in_upper_left" "in_lower_right" xtitle("","time [s]", "Id [A]"); a=gca();a.data_bounds(1,1)=0;a.data_bounds(1,2)=1D-12;a.data_bounds(2,1)=a.data_bounds(2,1)*2;a.data_bounds(2,2)=1D-03; end if n_target_aboveVt_ota ~= 0 then disp("target_aboveVt_ota"); while 1==1, [a1,b1]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/write_mem2_NoRelease.tcl -start_address 0x7000 -input_file_name "+hid_dir+"/target_info_aboveVt_ota"); if (b1==0) then [a3,b3]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/program.tcl -speed 115200 "+hid_dir+"/recover_inject_aboveVt_CAB_ota.elf"); [a4,b4]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/read_mem2_NoRelease.tcl -start_address 0x5000 -length 7000 -output_file_name data_aboveVt_ota_2.hex"); end if (b1==0) & (b3==0) & (b4==0) then break end // 0 if no error occurred, 1 if error. if (b1==1) | (b3==1) | (b4==1) then disp("connection issue -> it is trying again"); unix_w('/home/ubuntu/rasp30/sci2blif/usbreset'); sleep(2000); end end disp("recover inj"); target_l_aboveVt_ota=fscanfMat(hid_dir+'/target_list_aboveVt_ota'); info_name = "_aboveVt_ota_"; n_graph=n_target_aboveVt_ota; m_graph=n_graph+2; clear target_list; target_list = target_l_aboveVt_ota;kapa_constant_or_not=1; clear data_02; data_02=read_tar_pgm_result('data'+info_name+'2.hex',m_graph,time_scale); for i=3:m_graph data_02(:,i)=diodeADC_v2i(diodeADC_h2v(data_02(:,i),chip_num,brdtype),chip_num,brdtype)/kapa_constant_or_not; end clear legend_target_list; legend_target_list = ('a'); scf(12);clf(12); j=1; for i=3:m_graph temp=modulo(i,7)+1; plot2d("nl", data_02(:,2), data_02(:,i), style=temp); p = get("hdl"); p.children.mark_mode = "on"; p.children.mark_style = 9; p.children.thickness = 3; p.children.mark_foreground = temp; legend_target_list(j,1)='Row. ' + string(target_list(j,1)) + ', Col. ' + string(target_list(j,2)); j=j+1; end legend(legend_target_list(:,1),"in_lower_right"); // "in_upper_left" "in_lower_right" xtitle("","time [s]", "Id [A]"); a=gca();a.data_bounds(1,1)=0;a.data_bounds(1,2)=1D-12;a.data_bounds(2,1)=a.data_bounds(2,1)*2;a.data_bounds(2,2)=1D-03; end if n_target_aboveVt_otaref ~= 0 then disp("target_aboveVt_otaref"); while 1==1, [a1,b1]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/write_mem2_NoRelease.tcl -start_address 0x7000 -input_file_name "+hid_dir+"/target_info_aboveVt_otaref"); if (b1==0) then [a3,b3]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/program.tcl -speed 115200 "+hid_dir+"/recover_inject_aboveVt_CAB_ota_ref.elf"); [a4,b4]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/read_mem2_NoRelease.tcl -start_address 0x5000 -length 7000 -output_file_name data_aboveVt_otaref_2.hex"); end if (b1==0) & (b3==0) & (b4==0) then break end // 0 if no error occurred, 1 if error. if (b1==1) | (b3==1) | (b4==1) then disp("connection issue -> it is trying again"); unix_w('/home/ubuntu/rasp30/sci2blif/usbreset'); sleep(2000); end end disp("recover inj"); target_l_aboveVt_otaref=fscanfMat(hid_dir+'/target_list_aboveVt_otaref'); info_name = "_aboveVt_otaref_"; n_graph=n_target_aboveVt_otaref; m_graph=n_graph+2; clear target_list; target_list = target_l_aboveVt_otaref;kapa_constant_or_not=1; clear data_03; data_03=read_tar_pgm_result('data'+info_name+'2.hex',m_graph,time_scale); for i=3:m_graph data_03(:,i)=diodeADC_v2i(diodeADC_h2v(data_03(:,i),chip_num,brdtype),chip_num,brdtype)/kapa_constant_or_not; end clear legend_target_list; legend_target_list = ('a'); scf(13);clf(13); j=1; for i=3:m_graph temp=modulo(i,7)+1; plot2d("nl", data_03(:,2), data_03(:,i), style=temp); p = get("hdl"); p.children.mark_mode = "on"; p.children.mark_style = 9; p.children.thickness = 3; p.children.mark_foreground = temp; legend_target_list(j,1)='Row. ' + string(target_list(j,1)) + ', Col. ' + string(target_list(j,2)); j=j+1; end legend(legend_target_list(:,1),"in_lower_right"); // "in_upper_left" "in_lower_right" xtitle("","time [s]", "Id [A]"); a=gca();a.data_bounds(1,1)=0;a.data_bounds(1,2)=1D-12;a.data_bounds(2,1)=a.data_bounds(2,1)*2;a.data_bounds(2,2)=1D-03; end if n_target_aboveVt_mite ~= 0 then disp("target_aboveVt_mite"); while 1==1, [a1,b1]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/write_mem2_NoRelease.tcl -start_address 0x7000 -input_file_name "+hid_dir+"/target_info_aboveVt_mite"); if (b1==0) then [a3,b3]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/program.tcl -speed 115200 "+hid_dir+"/recover_inject_aboveVt_CAB_mite.elf"); [a4,b4]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/read_mem2_NoRelease.tcl -start_address 0x5000 -length 7000 -output_file_name data_aboveVt_mite_2.hex"); end if (b1==0) & (b3==0) & (b4==0) then break end // 0 if no error occurred, 1 if error. if (b1==1) | (b3==1) | (b4==1) then disp("connection issue -> it is trying again"); unix_w('/home/ubuntu/rasp30/sci2blif/usbreset'); sleep(2000); end end disp("recover inj"); target_l_aboveVt_mite=fscanfMat(hid_dir+'/target_list_aboveVt_mite'); info_name = "_aboveVt_mite_"; n_graph=n_target_aboveVt_mite; m_graph=n_graph+2; clear target_list; target_list = target_l_aboveVt_mite;kapa_constant_or_not=1; clear data_04; data_04=read_tar_pgm_result('data'+info_name+'2.hex',m_graph,time_scale); for i=3:m_graph data_04(:,i)=diodeADC_v2i(diodeADC_h2v(data_04(:,i),chip_num,brdtype),chip_num,brdtype)/kapa_constant_or_not; end clear legend_target_list; legend_target_list = ('a'); scf(14);clf(14); j=1; for i=3:m_graph temp=modulo(i,7)+1; plot2d("nl", data_04(:,2), data_04(:,i), style=temp); p = get("hdl"); p.children.mark_mode = "on"; p.children.mark_style = 9; p.children.thickness = 3; p.children.mark_foreground = temp; legend_target_list(j,1)='Row. ' + string(target_list(j,1)) + ', Col. ' + string(target_list(j,2)); j=j+1; end legend(legend_target_list(:,1),"in_lower_right"); // "in_upper_left" "in_lower_right" xtitle("","time [s]", "Id [A]"); a=gca();a.data_bounds(1,1)=0;a.data_bounds(1,2)=1D-12;a.data_bounds(2,1)=a.data_bounds(2,1)*2;a.data_bounds(2,2)=1D-03; end if n_target_aboveVt_dirswc ~= 0 then disp("target_aboveVt_dirswc"); while 1==1, [a1,b1]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/write_mem2_NoRelease.tcl -start_address 0x7000 -input_file_name "+hid_dir+"/target_info_aboveVt_dirswc"); if (b1==0) then [a3,b3]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/program.tcl -speed 115200 "+hid_dir+"/recover_inject_aboveVt_DIRSWC.elf"); [a4,b4]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/read_mem2_NoRelease.tcl -start_address 0x5000 -length 7000 -output_file_name data_aboveVt_dirswc_2.hex"); end if (b1==0) & (b3==0) & (b4==0) then break end // 0 if no error occurred, 1 if error. if (b1==1) | (b3==1) | (b4==1) then disp("connection issue -> it is trying again"); unix_w('/home/ubuntu/rasp30/sci2blif/usbreset'); sleep(2000); end end disp("recover inj"); target_l_aboveVt_dirswc=fscanfMat(hid_dir+'/target_list_aboveVt_dirswc'); info_name = "_aboveVt_dirswc_"; n_graph=n_target_aboveVt_dirswc; m_graph=n_graph+2; clear target_list; target_list = target_l_aboveVt_dirswc;kapa_constant_or_not=1; clear data_05; data_05=read_tar_pgm_result('data'+info_name+'2.hex',m_graph,time_scale); for i=3:m_graph data_05(:,i)=diodeADC_v2i(diodeADC_h2v(data_05(:,i),chip_num,brdtype),chip_num,brdtype)/kapa_constant_or_not; end clear legend_target_list; legend_target_list = ('a'); scf(15);clf(15); j=1; for i=3:m_graph temp=modulo(i,7)+1; plot2d("nl", data_05(:,2), data_05(:,i), style=temp); p = get("hdl"); p.children.mark_mode = "on"; p.children.mark_style = 9; p.children.thickness = 3; p.children.mark_foreground = temp; legend_target_list(j,1)='Row. ' + string(target_list(j,1)) + ', Col. ' + string(target_list(j,2)); j=j+1; end legend(legend_target_list(:,1),"in_lower_right"); // "in_upper_left" "in_lower_right" xtitle("","time [s]", "Id [A]"); a=gca();a.data_bounds(1,1)=0;a.data_bounds(1,2)=1D-12;a.data_bounds(2,1)=a.data_bounds(2,1)*2;a.data_bounds(2,2)=1D-03; end if n_target_lowsubVt_swc ~= 0 then disp("target_lowsubVt_swc"); while 1==1, [a1,b1]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/write_mem2_NoRelease.tcl -start_address 0x7000 -input_file_name "+hid_dir+"/target_info_lowsubVt_swc"); if (b1==0) then [a3,b3]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/program.tcl -speed 115200 "+hid_dir+"/recover_inject_lowsubVt_SWC.elf"); [a4,b4]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/read_mem2_NoRelease.tcl -start_address 0x5000 -length 7000 -output_file_name data_lowsubVt_swc_2.hex"); end if (b1==0) & (b3==0) & (b4==0) then break end // 0 if no error occurred, 1 if error. if (b1==1) | (b3==1) | (b4==1) then disp("connection issue -> it is trying again"); unix_w('/home/ubuntu/rasp30/sci2blif/usbreset'); sleep(2000); end end disp("recover inj"); target_l_lowsubVt_swc=fscanfMat(hid_dir+'/target_list_lowsubVt_swc'); info_name = "_lowsubVt_swc_"; n_graph=n_target_lowsubVt_swc; m_graph=n_graph+2; clear target_list; target_list = target_l_lowsubVt_swc;kapa_constant_or_not=1; clear data_01; data_01=read_tar_pgm_result('data'+info_name+'2.hex',m_graph,time_scale); for i=3:m_graph data_01(:,i)=diodeADC_v2i(diodeADC_h2v(data_01(:,i),chip_num,brdtype),chip_num,brdtype)/kapa_constant_or_not; end clear legend_target_list; legend_target_list = ('a'); scf(16);clf(16); j=1; for i=3:m_graph temp=modulo(i,7)+1; plot2d("nl", data_01(:,2), data_01(:,i), style=temp); p = get("hdl"); p.children.mark_mode = "on"; p.children.mark_style = 9; p.children.thickness = 3; p.children.mark_foreground = temp; legend_target_list(j,1)='Row. ' + string(target_list(j,1)) + ', Col. ' + string(target_list(j,2)); j=j+1; end legend(legend_target_list(:,1),"in_lower_right"); // "in_upper_left" "in_lower_right" xtitle("","time [s]", "Id [A]"); a=gca();a.data_bounds(1,1)=0;a.data_bounds(1,2)=1D-12;a.data_bounds(2,1)=a.data_bounds(2,1)*2;a.data_bounds(2,2)=1D-03; end if n_target_lowsubVt_ota ~= 0 then disp("target_lowsubVt_ota"); while 1==1, [a1,b1]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/write_mem2_NoRelease.tcl -start_address 0x7000 -input_file_name "+hid_dir+"/target_info_lowsubVt_ota"); if (b1==0) then [a3,b3]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/program.tcl -speed 115200 "+hid_dir+"/recover_inject_lowsubVt_CAB_ota.elf"); [a4,b4]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/read_mem2_NoRelease.tcl -start_address 0x5000 -length 7000 -output_file_name data_lowsubVt_ota_2.hex"); end if (b1==0) & (b3==0) & (b4==0) then break end // 0 if no error occurred, 1 if error. if (b1==1) | (b3==1) | (b4==1) then disp("connection issue -> it is trying again"); unix_w('/home/ubuntu/rasp30/sci2blif/usbreset'); sleep(2000); end end disp("recover inj"); target_l_lowsubVt_ota=fscanfMat(hid_dir+'/target_list_lowsubVt_ota'); info_name = "_lowsubVt_ota_"; n_graph=n_target_lowsubVt_ota; m_graph=n_graph+2; clear target_list; target_list = target_l_lowsubVt_ota;kapa_constant_or_not=1; clear data_02; data_02=read_tar_pgm_result('data'+info_name+'2.hex',m_graph,time_scale); for i=3:m_graph data_02(:,i)=diodeADC_v2i(diodeADC_h2v(data_02(:,i),chip_num,brdtype),chip_num,brdtype)/kapa_constant_or_not; end clear legend_target_list; legend_target_list = ('a'); scf(17);clf(17); j=1; for i=3:m_graph temp=modulo(i,7)+1; plot2d("nl", data_02(:,2), data_02(:,i), style=temp); p = get("hdl"); p.children.mark_mode = "on"; p.children.mark_style = 9; p.children.thickness = 3; p.children.mark_foreground = temp; legend_target_list(j,1)='Row. ' + string(target_list(j,1)) + ', Col. ' + string(target_list(j,2)); j=j+1; end legend(legend_target_list(:,1),"in_lower_right"); // "in_upper_left" "in_lower_right" xtitle("","time [s]", "Id [A]"); a=gca();a.data_bounds(1,1)=0;a.data_bounds(1,2)=1D-12;a.data_bounds(2,1)=a.data_bounds(2,1)*2;a.data_bounds(2,2)=1D-03; end if n_target_lowsubVt_otaref ~= 0 then disp("target_lowsubVt_otaref"); while 1==1, [a1,b1]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/write_mem2_NoRelease.tcl -start_address 0x7000 -input_file_name "+hid_dir+"/target_info_lowsubVt_otaref"); if (b1==0) then [a3,b3]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/program.tcl -speed 115200 "+hid_dir+"/recover_inject_lowsubVt_CAB_ota_ref.elf"); [a4,b4]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/read_mem2_NoRelease.tcl -start_address 0x5000 -length 7000 -output_file_name data_lowsubVt_otaref_2.hex"); end if (b1==0) & (b3==0) & (b4==0) then break end // 0 if no error occurred, 1 if error. if (b1==1) | (b3==1) | (b4==1) then disp("connection issue -> it is trying again"); unix_w('/home/ubuntu/rasp30/sci2blif/usbreset'); sleep(2000); end end disp("recover inj"); target_l_lowsubVt_otaref=fscanfMat(hid_dir+'/target_list_lowsubVt_otaref'); info_name = "_lowsubVt_otaref_"; n_graph=n_target_lowsubVt_otaref; m_graph=n_graph+2; clear target_list; target_list = target_l_lowsubVt_otaref;kapa_constant_or_not=1; clear data_03; data_03=read_tar_pgm_result('data'+info_name+'2.hex',m_graph,time_scale); for i=3:m_graph data_03(:,i)=diodeADC_v2i(diodeADC_h2v(data_03(:,i),chip_num,brdtype),chip_num,brdtype)/kapa_constant_or_not; end clear legend_target_list; legend_target_list = ('a'); scf(18);clf(18); j=1; for i=3:m_graph temp=modulo(i,7)+1; plot2d("nl", data_03(:,2), data_03(:,i), style=temp); p = get("hdl"); p.children.mark_mode = "on"; p.children.mark_style = 9; p.children.thickness = 3; p.children.mark_foreground = temp; legend_target_list(j,1)='Row. ' + string(target_list(j,1)) + ', Col. ' + string(target_list(j,2)); j=j+1; end legend(legend_target_list(:,1),"in_lower_right"); // "in_upper_left" "in_lower_right" xtitle("","time [s]", "Id [A]"); a=gca();a.data_bounds(1,1)=0;a.data_bounds(1,2)=1D-12;a.data_bounds(2,1)=a.data_bounds(2,1)*2;a.data_bounds(2,2)=1D-03; end if n_target_lowsubVt_mite ~= 0 then disp("target_lowsubVt_mite"); while 1==1, [a1,b1]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/write_mem2_NoRelease.tcl -start_address 0x7000 -input_file_name "+hid_dir+"/target_info_lowsubVt_mite"); if (b1==0) then [a3,b3]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/program.tcl -speed 115200 "+hid_dir+"/recover_inject_lowsubVt_CAB_mite.elf"); [a4,b4]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/read_mem2_NoRelease.tcl -start_address 0x5000 -length 7000 -output_file_name data_lowsubVt_mite_2.hex"); end if (b1==0) & (b3==0) & (b4==0) then break end // 0 if no error occurred, 1 if error. if (b1==1) | (b3==1) | (b4==1) then disp("connection issue -> it is trying again"); unix_w('/home/ubuntu/rasp30/sci2blif/usbreset'); sleep(2000); end end disp("recover inj"); target_l_lowsubVt_mite=fscanfMat(hid_dir+'/target_list_lowsubVt_mite'); info_name = "_lowsubVt_mite_"; n_graph=n_target_lowsubVt_mite; m_graph=n_graph+2; clear target_list; target_list = target_l_lowsubVt_mite;kapa_constant_or_not=1; clear data_04; data_04=read_tar_pgm_result('data'+info_name+'2.hex',m_graph,time_scale); for i=3:m_graph data_04(:,i)=diodeADC_v2i(diodeADC_h2v(data_04(:,i),chip_num,brdtype),chip_num,brdtype)/kapa_constant_or_not; end clear legend_target_list; legend_target_list = ('a'); scf(19);clf(19); j=1; for i=3:m_graph temp=modulo(i,7)+1; plot2d("nl", data_04(:,2), data_04(:,i), style=temp); p = get("hdl"); p.children.mark_mode = "on"; p.children.mark_style = 9; p.children.thickness = 3; p.children.mark_foreground = temp; legend_target_list(j,1)='Row. ' + string(target_list(j,1)) + ', Col. ' + string(target_list(j,2)); j=j+1; end legend(legend_target_list(:,1),"in_lower_right"); // "in_upper_left" "in_lower_right" xtitle("","time [s]", "Id [A]"); a=gca();a.data_bounds(1,1)=0;a.data_bounds(1,2)=1D-12;a.data_bounds(2,1)=a.data_bounds(2,1)*2;a.data_bounds(2,2)=1D-03; end if n_target_lowsubVt_dirswc ~= 0 then disp("target_lowsubVt_dirswc"); while 1==1, [a1,b1]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/write_mem2_NoRelease.tcl -start_address 0x7000 -input_file_name "+hid_dir+"/target_info_lowsubVt_dirswc"); if (b1==0) then [a3,b3]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/program.tcl -speed 115200 "+hid_dir+"/recover_inject_lowsubVt_DIRSWC.elf"); [a4,b4]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/read_mem2_NoRelease.tcl -start_address 0x5000 -length 7000 -output_file_name data_lowsubVt_dirswc_2.hex"); end if (b1==0) & (b3==0) & (b4==0) then break end // 0 if no error occurred, 1 if error. if (b1==1) | (b3==1) | (b4==1) then disp("connection issue -> it is trying again"); unix_w('/home/ubuntu/rasp30/sci2blif/usbreset'); sleep(2000); end end disp("recover inj"); target_l_lowsubVt_dirswc=fscanfMat(hid_dir+'/target_list_lowsubVt_dirswc'); info_name = "_lowsubVt_dirswc_"; n_graph=n_target_lowsubVt_dirswc; m_graph=n_graph+2; clear target_list; target_list = target_l_lowsubVt_dirswc;kapa_constant_or_not=1; clear data_05; data_05=read_tar_pgm_result('data'+info_name+'2.hex',m_graph,time_scale); for i=3:m_graph data_05(:,i)=diodeADC_v2i(diodeADC_h2v(data_05(:,i),chip_num,brdtype),chip_num,brdtype)/kapa_constant_or_not; end clear legend_target_list; legend_target_list = ('a'); scf(20);clf(20); j=1; for i=3:m_graph temp=modulo(i,7)+1; plot2d("nl", data_05(:,2), data_05(:,i), style=temp); p = get("hdl"); p.children.mark_mode = "on"; p.children.mark_style = 9; p.children.thickness = 3; p.children.mark_foreground = temp; legend_target_list(j,1)='Row. ' + string(target_list(j,1)) + ', Col. ' + string(target_list(j,2)); j=j+1; end legend(legend_target_list(:,1),"in_lower_right"); // "in_upper_left" "in_lower_right" xtitle("","time [s]", "Id [A]"); a=gca();a.data_bounds(1,1)=0;a.data_bounds(1,2)=1D-12;a.data_bounds(2,1)=a.data_bounds(2,1)*2;a.data_bounds(2,2)=1D-03; end
8c16996fe50eea85d12145afc19a8cc4d02133f1
449d555969bfd7befe906877abab098c6e63a0e8
/1529/CH21/EX21.1/21_01.sce
b4012bd79c650de46e9712b223b5774bf5ca4f1c
[]
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
243
sce
21_01.sce
//Chapter 21, Problem 1 clc; n1=500; //primary turns n2=3000; //secondary turns v1=240; //primary voltage v2=(v1*n2)/n1; //secondary voltage printf("Secondary voltage = %f V",v2);
0660bf5b8c17f60e119b70bac832e95024b69b8f
68f6f3335d41b95146619ddf406414da5c1bc975
/metodos-numericos/parcial-practico-2/ej2_noentregado.sci
c58c856080a86c9157c56af086b82e1c2e643edf
[]
no_license
nachocattoni/Ita
be52ab7f80cb0dd7d0a0ef470c72a7f997f2e75b
f7e102a2917ebe59358dbd9d5f7af81703c16fde
refs/heads/master
2021-05-02T08:09:23.784800
2018-02-08T02:50:30
2018-02-08T02:50:30
120,845,736
0
0
null
2018-02-09T02:29:22
2018-02-09T02:29:21
null
UTF-8
Scilab
false
false
1,028
sci
ej2_noentregado.sci
clear clc format(15) function [cota_inf, cota_sup] = Gershgorin(A) // Devuelve la cota inferior y la cota superior de los autovalores // Tambien hace un plot, que da mas informacion... cota_inf = 0; cota_sup = 0; n = size(A, 1); for i=1:n centro(i) = A(i, i); radio(i) = sum(abs(A(i,:))) - A(i, i); cota_inf = min(cota_inf, centro(i) - radio(i)); cota_sup = max(cota_sup, centro(i) + radio(i)); end x = [cota_inf:1e-2:cota_sup]; for i=1:n plot(x, sqrt( radio(i)^2 - (x - centro(i)).*(x - centro(i)) )); plot(x, -sqrt( radio(i)^2 - (x - centro(i)).*(x - centro(i)) )); end endfunction+ function r = RadioEspectral(A) r = max(abs(real(spec(A)))) endfunction a = 1/2 // algún valor en [0, 1/2] A = [0 1/4 1/6; 5/9 0 a; 1/3 1/5 0] B = A; B(2, 3) = 0 x0 = [1531353155 2135000 313513500]' while %T x1 = B*x0 if norm(x0 - x1) < 1e-10 then break end x0 = x1 end mprintf("Papi, papi, converjo!") Gershgorin(A)
f905ad218b68d68c7b12132d413e59d7cec4d58a
449d555969bfd7befe906877abab098c6e63a0e8
/710/CH2/EX2.5/2_5.sci
4bdb4ec36f1483659a8c4f77cba7faa85e6ccff2
[]
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
358
sci
2_5.sci
clc(); clear; //To determine spacing of (111) planes in a monoatomic fcc structure h=1; k=1; l=1; //d(hkl)=a/sqrt(h^2+k^2+l^2)where "a" is the lattice parameter r=0.18; //atomic radius in nm d(111)=(2*sqrt(2)*r)/sqrt((h^2)+(k^2)+(l^2)) printf("The spacing of (111) planes in a monoatomic structure with atomic radius 0.18 nm is %f nm",d(111));
dd49ea7ea01da0470f03b167de2e028ff7863206
6e257f133dd8984b578f3c9fd3f269eabc0750be
/ScilabFromTheoryToPractice/Computing/testmatrix.sce
0db7293618b533667fb238fad3faac4bd94b9c67
[]
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
239
sce
testmatrix.sce
A=[1 2 3; 4 5 6; 7 8 9] // matrix 3 lines and 3 columns typeof(A) // same type as real numbers size(A) // size of A B=[10,11,12;15 14 13] // matrix with 2 rows and 3 columns size(B) // size of B // enter over multiple lines [1 2 3; 3 4 5]
1301122635c529307a0c9cb0a274515c2c297b5b
449d555969bfd7befe906877abab098c6e63a0e8
/1658/CH24/EX24.8/Ex24_8.sce
ebed8ea7c96307ed1aa5b52e139271280453c084
[]
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
202
sce
Ex24_8.sce
clc; R=5*10**3; C=0.1*10**-6; f1=1/(2*%pi*R*C); disp('HZ',f1*1,"f1="); i=-21:3:0; plot2d(i); a=gca() //get the current axes a.box="off"; a.x_location="top"; xlabel("f (log scale)"); ylabel( "Av(dB)");
db7ea452ea9554d61465ac147378edd67d9e1a00
449d555969bfd7befe906877abab098c6e63a0e8
/2885/CH10/EX10.9/ex10_9.sce
28765e41de3d07d2804ae6d5d81ed2495a6497c6
[]
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
378
sce
ex10_9.sce
//Determine the input resistance of feedback amplifier clear; clc; //soltion //given A=250; //internal gain B=0.1;//feedback factor Ri=1.1*10^3;//ohm //input resistance Rif=Ri*(1+A*B); printf("The input resistance of feedback amplifier %.1f kΩ",Rif/1000); //The ans in book is incorrect due to use of (2+A*B) instead of (1+A*B) the ans in book is 29.7 kΩ
a162ab7435d2a95a216a18b8c4e37d416d30da12
449d555969bfd7befe906877abab098c6e63a0e8
/593/CH6/EX6.2/ex6_2.sce
3f1f999fc92588535b10b407ca4ce792ce968a65
[]
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
899
sce
ex6_2.sce
clear; //clc(); // Example 6.2 // Page: 109 printf("Example-6.2 Page no.-109\n\n"); //***Data***// n_eth = 1;//[mol] W_water = 1;//[kg] Temp = 20;//[C] // For pure ethanol at 20C v_ethanol = 58.4;//[cm^(3)/mol] v_ethanol = v_ethanol/1000;//[L/mol] v_water = 1.0019;//[L/1000g] // Molality of ethanol in water is m = n_eth/W_water;//[molal] // We have the equation used in the previous example as V_final_mix = 1.0019+0.054668*m-0.000418*m^(2); // Where 'V' is( solution volume, liters per 1000g of water ) and 'm' is the molality of ethanol in water // V is the final volume of the solution // The volume expansion on moxing is V_exp = V_final_mix-v_ethanol-v_water;//[L] V_exp = V_exp*1000;//[cm^(3)] printf("Volume change on mixing etanol and water is %0.3f cubic cm",V_exp); // We see that there is a net contraction on mixing of the volume of the ethanol added.
9ec784df29b5be9490c400591524aa301509b047
449d555969bfd7befe906877abab098c6e63a0e8
/3456/CH19/EX19.1/Ex19_1.sce
7f03128baf5d0ed8faf5e12bade018870f9f9545
[]
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
Ex19_1.sce
//Example 19.1 //Analysis of Wiredrawing //Page No. 640 clc;clear;close; Ab=10; //in mm r=0.2; //in % alpha=12; //in degrees mu=0.09; //no unit n=0.3; //no unit K=1300; //in MPa v=3; //in m/s B=mu*cotd(alpha/2); e1=log(1/(1-r)); sigma=K*e1^0.3/(n+1); Aa=Ab*(1-r); sigma_xa=sigma*((1+B)/B)*[1-(Aa/Ab)^B]; Aa=%pi*Aa^2/4; Pd=sigma_xa*Aa; Pd=Pd/1000; //conversion to kilo units P=Pd*v; H=P/0.746; printf('\nDrawing Stress = %g MPa\nDrawing Force = %g kN\nPower = %g kW\nHorsepower = %g hp',sigma_xa,Pd,P,H);
c3ff0e35ca5744bc1fba09d64eca9490fcecddac
449d555969bfd7befe906877abab098c6e63a0e8
/3750/CH1/EX1.8/Ex1_8.sce
a16e227b9fdd1bad85f40c2ec1f0c96ea88721e3
[]
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
583
sce
Ex1_8.sce
//Strength Of Material By G.H.Ryder //Chapter 1 //Example 8 // To Find the Maximum Stress l=1; //lenght of steel rod, Unit in m N=1000; //rpm of rod, Unit in rmp rho=7.8; //density of the material, Unit in g/cm^3 Omega=%pi*2*N/60; //Angular Velocity, Unit in rad/sec //sigma a=-rhox^2*Omega*2/2+c, formula obtain from integration //At x=l, sigma=0, c=rho*l^2*Omega*2/2 x=0; //x is distance from axis of rod //Maximum Stress occur at axis, so sigma=((rho*(Omega^2))/2)*((l^2)-(x^2)); //Stress in bar, Unit in N/mm^2 printf("The maximum Stress %f N/mm^2",sigma)
10dafc99e850161ed1830a488703a514f05717a7
449d555969bfd7befe906877abab098c6e63a0e8
/2252/CH7/EX7.11/Ex7_11.sce
9d695a3646a950f9209c3a936d7f2a8bd61e3b41
[]
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
Ex7_11.sce
C=35D-6//capacitance f=50//frequency Xc=1/(2*%pi*f*C) Z=2*Xc//voltage applied across the capacitance is equal to half of total voltage applied R=sqrt(Z^2-Xc^2) mprintf("Resistance of variable resistor, R=%f ohm",R)
af310476d879e6892b8896446353c96f1a04b42b
449d555969bfd7befe906877abab098c6e63a0e8
/2201/CH8/EX8.7/ex8_7.sce
cda45102b5e84ff52ace27bcb55953eddbd91ec5
[]
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
262
sce
ex8_7.sce
// Exa 8.7 clc; clear; close; // Given data V_GS = -2;// in V V_P = -5;// in V V_DS = V_GS-V_P;// in V I_DSS = 8;// in mA disp(V_DS,"The minimum value of V_DS in V is"); I_D = I_DSS*((1-(V_GS/V_P))^2);// in mA disp(I_D,"The drain current in mA is");
9cc3d49244accc80c7bb274f0687dc6c6fc4d979
ff1325c4f8bc7aae332f9dfbae7b15e8243c7d51
/exo3.sce
2ab12eba2c7b873226c3d5352a0ee9805d3c58d9
[]
no_license
jperret21/calcul_numerique
c17d274a1d9a4ec42c510fbfb7a29cbe5e985572
1379d876b42849664bde200b5a1fde0221715b06
refs/heads/main
2023-01-14T16:22:24.308899
2020-11-26T13:36:57
2020-11-26T13:36:57
314,207,969
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,081
sce
exo3.sce
s=10 rand("seed",s) n=5 A=rand(n,n) B=rand(n,n) tic(); result_3b=matmat3b(A,B) t1=toc(); disp(t1) disp(result_3b) tic(); result_2b=mathmath2b(A,B) t2=toc(); disp( t2) disp(result_2b) tic(); result_1b=mathmath1b(A,B) t3=toc(); disp(t3) disp(result_1b) // Mesure du temps en focntion de la taille size_tab=[2:1:41] //math3B tab_res_1=[] for i= 2:1:40 tmp=0 for j=1:1:10 A=rand(i,i) B=rand(i,i) tic(); matmat3b(A,B); t=toc(); tmp=tmp+t end tab_res_1(i)=tmp/10 end //math2B tab_res_2=[] for i= 2:1:40 tmp=0 for j=1:1:10 A=rand(i,i) B=rand(i,i) tic(); mathmath2b(A,B); t=toc(); tmp=tmp+t end tab_res_2(i)=tmp/10 end //math1B tab_res_3=[] for i= 2:1:40 tmp=0 for j=1:1:10 A=rand(i,i) B=rand(i,i) tic(); mathmath1b(A,B); t=toc(); tmp=tmp+t end tab_res_3(i)=tmp/10 end plot(size_tab,tab_res_3,size_tab,tab_res_2,size_tab,tab_res_1) hl=legend(['1 boucle';'2 boucle';'3 boucle';])
45ca160d2feb41d4ee786ab5b4c3948e941f14f3
449d555969bfd7befe906877abab098c6e63a0e8
/1301/CH10/EX10.11/ex10_11.sce
7fafaf7f2b0cc171256d57cd0ab9e9e1a50a6445
[]
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
333
sce
ex10_11.sce
clc; d1=1.293; //density in kg/m cube t1=273; //temperature in Kelvin p2=2; //pressure in atm t2=373; //temperature in Kelvin p1=1; //pressure in atm d2=(d1*t1*p2)/(t2*p1); //calculating density using ideal gas law in kg/m cube disp(d2,"Density in kg/m cube = "); //displaying result
e1e3ddd80e9b060c0bd1729f5245977d1f0d1760
449d555969bfd7befe906877abab098c6e63a0e8
/2045/CH1/EX1.3/Ex1_3.sce
8bbb0d2ae132b939b75c5f28d0950d150229852b
[]
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
636
sce
Ex1_3.sce
//pagenumber 26 example 3 clear ni=2.5*10^13;//per square centimetre moe=3800//square centimetre/velocity second mo1=1800;//square centimetre/velocity second num=4.51*10^22;//number of atoms q=1.6*10^-19; conduc=ni*q*(moe+mo1); num=num/10^7; impura=(ni^2)/num; ni=5*10^14; condu1=ni*q*moe; disp("conductivity = "+string((conduc))+"second per centimetre"); disp("conductivity at extent of 1 impurity = "+string((condu1))+"second per centimetre");//there is mistake in book as 3.04s/cm conduc=num*q*mo1; disp("conductivity acceptor to extent of 1 impurity = "+string((conduc))+"second per centimetre");
b19eaf3b34dab7bcf9c641cfa44b21faecf26c89
449d555969bfd7befe906877abab098c6e63a0e8
/1586/CH4/EX4.8/EXP4_8.sce
3eeac93e6b002c609f9f82bc0950938a0cd22b57
[]
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
959
sce
EXP4_8.sce
clc;funcprot(0);//EXAMPLE 4.8 // Initialisation of Variables U=[0 0 1];.......//Tensile stree direction in [001] plane V1=[0 -1 1];......//Tensile stree direction of slip direction in [0-11] plane V2=[1 1 1];......//Tensile stree direction of slip plane normal to[011] plane rho1=3000;.......//Tensile stress of crystal in psi lam=acos((U*V1')/(norm(U)*norm(V1)));.......//The angle between the tensile stress direction [001] and the slip direction [0-11] from the dot product phy=acos((U*V2')/(norm(U)*norm(V2)));......//The angle between the tensile stress direction [001] and normal to the slip plane [111] rho=rho1*(cos(lam)*cos(phy));....//The resolved Shear stess in psi disp(lam*(180/%pi),"The angle between the tensile stress direction [001] and the slip direction [0-11]:") disp(phy*(180/%pi),"The angle between the tensile stress direction [001] and normal to the slip plane [111]:") disp(rho,"The resolved Shear stess in psi:")
bacc35cbc64f2a35cbfa2adfc7bb0e60eae82020
7ade43db106eee8cea7004cef1fa4d23473a4fa0
/nuvemDeParticulas/nuvemDeParticulas.sce
aa5e6b196be3a342b81cd78807f9f0fd6df775c9
[]
no_license
samuel-cavalcanti/DCA0115--OTIMIZACAO-DE-SISTEMAS
834b29a4e9fecfce35570c31a597c2b7067ebc9a
8d020ff214a24b8300db1b8e64ae4c47b160461c
refs/heads/master
2020-05-30T18:31:06.261975
2019-06-03T03:31:35
2019-06-03T03:31:35
189,898,949
1
0
null
null
null
null
UTF-8
Scilab
false
false
4,538
sce
nuvemDeParticulas.sce
clear clc function pg_best= particle_swarm(problem_size,population_size,epochs) population = list() pg_best = new_particle(random_velocity(problem_size),random_position(problem_size)) for i=1:population_size p_velocity = random_velocity(problem_size) p_position = random_position(problem_size) particle = new_particle(p_position,p_velocity) if particle.cost <= pg_best.cost pg_best = particle end population($+1) = particle end for epoch=1:epochs for i=1:length(population) population(i) = update_particle(population(i),pg_best,problem_size) if population(i).cost <= pg_best.cost pg_best = population(i) end end // print_population(population) end endfunction function particle = new_particle(velocity,position) particle = tlist(["T_particle","velocity","position","best_pos","cost"]) particle.velocity = velocity particle.position = position particle.best_pos = position particle.cost = evalute_position(position(1),position(2)) endfunction function value = evalute_position(x,y) z =-x*sin(sqrt(abs(x)))-y*sin(sqrt(abs(y))) // r: Rosenbrock's function r1=(y-x^2)^2+(1-x)^2; value= z*exp(sin(r1)); endfunction function particle =update_particle(old_particle,best_particle,problem_size) velocity = update_speed(old_particle,best_particle,problem_size) position = update_position(old_particle.position,velocity,problem_size) particle = new_particle(velocity,position) old_best_cost = evalute_position(old_particle.best_pos(1),old_particle.best_pos(2)) if particle.cost > old_best_cost then particle.best_pos = old_particle.best_pos end endfunction function new_velocity = update_speed(old_particle,best_particle,problem_size) w = 0.5 c_1 = 1.8 // 1.2 1.4 1.8 c_2 = 2 // 1.4 1.8 2.0 reduce = 0.01 limit = problem_size cognitive_speed =[] social_speed =[] inertia = w * old_particle.velocity for i=1:length(old_particle.position) r_1 = rand() r_2 = rand() cognitive_speed(i) = c_1*r_1*( old_particle.best_pos(i) - old_particle.position(i)) social_speed(i) = c_2*r_2*(best_particle.position(i) - old_particle.position(i) ) end new_velocity = inertia + cognitive_speed + social_speed for i=1:length(new_velocity) if new_velocity(i) > limit(1) new_velocity(i) = limit(1) end if new_velocity(i) < limit(2) new_velocity(i) = limit(2) end end endfunction function position= update_position(old_position,velocity,problem_size) position = velocity +old_position for i=1:length(position) if position(i) > problem_size(1) position(i) = problem_size(1) end if position(i) < problem_size(2) position(i) = problem_size(2) end end endfunction function velocity = random_velocity(problem_size) reduce = 0.01 max_value = problem_size(1) * reduce min_value = problem_size(2) * reduce velocity = rand(2,1,"uniform")*(max_value - min_value) + min_value endfunction function position = random_position(problem_size) position = rand(2,1,"uniform")*(problem_size(1)-problem_size(2)) + problem_size(2) endfunction function print_population(population, epoch) disp("epoch: " + string(epoch)) for individual=population disp("cost: "+ string(individual.cost)) end disp(" ") endfunction function test_PSO(population_size,file_name) problem_size = [500,-500] epochs = 3000 solutions = list() csv_matrix = [] for i=1:100 solutions($+1) = particle_swarm(problem_size,population_size,epochs) csv_matrix($+1) = solutions($).cost end csvWrite(csv_matrix,file_name) disp(file_name + "savend !!") endfunction population_size_list = list(4,8,16) for population_size=population_size_list file_name = "PSO" + string(population_size) + ".csv" test_PSO(population_size,file_name) end
b181575ee8aa593c834b17c105cd884bc7960a9f
5a546c6ca54da199fa9941e0b7fc3a35b1833ed8
/intro/IntroductionToScilab.sce
03f0eabfa3e838f0c917d4e857f3333f752b32d8
[]
no_license
lejarx/PDEandFiniteDifference
3185fddc1fa935b622dc27cfc264d29ce9f81494
297e41e168be7aa8eb0fcce7b0b8facad5542f00
refs/heads/master
2021-05-26T16:44:32.954468
2014-03-06T23:07:07
2014-03-06T23:07:07
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,923
sce
IntroductionToScilab.sce
// row vector z = [2, 4, 6, 8] // row vector z = [2 4 6 8] // column vector z = [2; 4; 6; 8] // create a vector of values running from 0 to 10 x = 1:10 // create vector from 0 to 10 with step 2 y = 0:2:10 // extract the third element from the vector x x(3) // transform a row vector to a column vector x' // square the elements of vector x**2 // the norm of a vector x*x' // entering a matrix a = [1,2,3,4; 5,6,7,8; 9,10,11,12] // second column of a matrix a(:,2) // first row of a matrix a(1,:) // zero matrix zeros(3,4) // one matrix ones(3,4) // identity matrix eye(4,4) //applying a function on a matrix, f(matrix) // the function will be applied on each terms sqrt(a) // sum the columns sum(a,1) // sum the rows sum(a,2) // mean the columns mean(a, 1) // mean the rows mean(a, 2) // accumulation by sum of the elements by columns cumsum(a, 1) // accumulation by sum of the elements by rows cumsum(a, 2) // accumulation by sum of all the elements through columns cumsum(a) // take the rows, starting from the second row till the end. a(2:$,:) // concatenation // append a row of four columns filled with zero // to the matrix a b = [zeros(1:4); a] // create a matrix filled with random numbers a = rand(2,2) // display a matrix disp(a) // 2D plot // plot x = -1:0.01:2; plot(x,x**2) // parametric plot t = 0:0.01 :1; plot(cos(2*%pi*t), sin(2*%pi*t)) // multiple curves directly x = 0:0.01 : 10; plot(x,exp(-x),x, sin(x)) // 3D plotting a = [1,2,3,8,8; 4,7,5,5,5; 3,4,9,6,6] // trasparent mesh surface mesh(a) // shaded and opaque mesh surface surf(a) // surf on coordinates x and y x = 0:0.5:2 y = 0:0.5:1 surf(x,y,a) // grid of points in a rectangular region // with a specified spacing [a,b] = meshgrid(-2: 0.6 : 1.8, -2:0.4:1.6) disp(a); size(a) disp(b); size(a) z = a.^2 - b.^2; mesh(a, b, z); surf(a, b, z) a(:,2) plot(y,a(:,2)) plot(x,a(1,:)) plot(x,a(3,:))
f8b5524b9b351646d23ef671f30024a086935278
449d555969bfd7befe906877abab098c6e63a0e8
/278/CH29/EX29.2/ex_29_2.sce
c09a286a0182589171453113c4513519fe23d962
[]
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
712
sce
ex_29_2.sce
//find clc //solution //given a=(%pi/180)*30 P=35000//W N=1500//rpm Tg=24 q=(%pi/180)*20 fo=56 //b=3*pn...pn=pc*cos(a)...pc=%pi*m..put in eq2 T=P*60/(2*%pi*N)//N-mm Te=T/(cos(a))^3//N yb=0.154-(0.912/Te) //Wt=T/(Dg/2)=(2T/m/Tg)....Dg=m*Tg //Wt=18600/m....eq1 //v=%pi*N*Dg/60=%pi*m*Tg*N/60 //v=1.885 m//m/s //Cv=15/(1+v)=15/(15+1.885m) //Wt=fo*Cv*b*%pi*m*yp//N...eq2 //Wt=(fo*Cv)*3*%pi*m*cos(a)*%pi*m*yb //Wt=2780m^2/(15+1.885*m)....eq3 //using hit an trial and eq 1 and 3,we get m=5.5,say 6 m=6 Dg=m*Tg printf("module and pitch dia of gear is,%f mm\n,%f mm\n",m,Dg) b=3*%pi*m*cos(a) printf("face width is,%f mm\n",b) Wt=18600/m Wa=Wt*tan(a)//N printf("axial tooth is,%f N\n",Wa)
8463f87749fcf71bd7a45f463ed1a94b0d5e0c6d
e82d1909ffc4f200b5f6d16cffb9868f3b695f2a
/Lista 7/MPotencia.sci
3d2307e4e86901feef887334d2c3175cce449123
[]
no_license
AugustoCam95/Computational-Linear-Algebra
eb14307dd3b45ccc79617efe74d1faca639c36c5
99b1a1f9499fbc4343bd5c878444e9e281952774
refs/heads/master
2020-03-30T22:26:23.790763
2018-10-05T03:34:06
2018-10-05T03:34:06
151,666,289
0
0
null
null
null
null
UTF-8
Scilab
false
false
468
sci
MPotencia.sci
// sempre eh bom colocar função na extensão .sci // vou colocar as variáveis iguais ao do caderno...se tu não gostar, pode mudar. Eh so pra me nao se perder. function [y, x]= MPotencia(A) [l,c] = size(A); y = ones(l,1); err = 1; while (err > 1E-4) z = A*y ; maximo = max(y); yk = 1/c * z; err = abs(norm(x) - norm(y./y_i))/abs(norm(x)); x=y./y_i; end endfunction