blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 115 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 21 values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 141k 586M ⌀ | star_events_count int64 0 30.4k | fork_events_count int64 0 9.67k | gha_license_id stringclasses 8 values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 50 values | src_encoding stringclasses 23 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 29 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4759355dc862fbb42f13371d8d10d0a2a21385d5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2465/CH8/EX8.6/Example_6.sce | 984f0c31f9e2afe16ac7b0a49079d1fe15680841 | [] | 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 | 247 | sce | Example_6.sce | //Chapter-8,Example 6,Page 196
clc();
close();
pH= 7.4 //of blood
H= 10^(-pH)
//assume ratio of HCO3- and H2CO3 is r
Ka= 4.5*10^-7
// Ka = [H+]*[HCO3-]/[H2CO3]
r=Ka/H
printf('the ratio of HCO3- and H2CO3 is %.f',r)
|
f437d5ea78439fee2ba82fedaf45594b911869fc | 449d555969bfd7befe906877abab098c6e63a0e8 | /1733/CH8/EX8.4/8_4.sce | 807a5baaef94290347559f4676e4cc609d5267db | [] | 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 | 318 | sce | 8_4.sce | //8.4
clc;
open_loop_gain=15000;
FF=0.01;
Closed_loop_gain=open_loop_gain/(1+open_loop_gain*FF);
printf("Closed loop gain=%.3f",Closed_loop_gain)
Vi=2*10^-3;
output=Vi*Closed_loop_gain;
printf("\nOutput=%.4f V",output)
Error_voltage=output/open_loop_gain*10^6;
printf("\nError voltage=%.3f uV",Error_voltage) |
07f3ca54ce6884eceffe041d51e2d9b5cb031393 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2078/CH3/EX3.7/Example3_7.sce | 2521dcf6254df234048d1494d689eb3821a96062 | [] | 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 | 934 | sce | Example3_7.sce | //Exa 3.7
clc;
clear;
close;
//Given data :
P1=1000;//kW
pf1=0.8;//
t1=10;//hours
P2=500;//kW
pf2=0.9;//
t2=8;//hours
P3=100;//kW
pf3=1;//
t3=6;//hours
a=poly(0,'a');//cross section area
I=poly(0,'I');//Current
L=poly(0,'L');//length in km
CcBYL=(8000*a+1500)//Rs/km(variable cost)
i=10;//%(depreciation)
E_lost_cost=80/100;//Rs/kWh
rho=1.72*10^-6;//ohm-cm
Cc_varBYL=8000*a*i/100//Rs/km(variable cost)
I1=P1*1000/sqrt(3)/10000/pf1;//A
I2=P2*1000/sqrt(3)/10000/pf2;//A
I3=P3*1000/sqrt(3)/10000/pf3;//A
R_into_a_BY_L=rho*1000*100;//ohm
W_into_A_BY_Isqr=R_into_a_BY_L;//W
E_loss_into_A_BY_L=3*R_into_a_BY_L*[I1^2*t1+I2^2*t2+I3^2*t3]*365/1000;//kWh
E_loss_cost_into_A_BY_L=E_loss_into_A_BY_L*E_lost_cost;//Rs
//Cc_var=E_loss_cost;//For most economical cross section
a=sqrt(coeff((numer(E_loss_cost_into_A_BY_L))/coeff(numer(Cc_varBYL/a))));//cm^2
disp(a,"Most economical cross sectional area in cm^2 : ");
|
c4d92151faa94569bbcc541a4f438589548b9874 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2681/CH5/EX5.4/Ex5_4.sce | daa5f1231edf650a717a6dea80395e21670528be | [] | 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 | 289 | sce | Ex5_4.sce | //frequency of air dielectric and highest frequency
//given
clc
n=1//lowest mode
d=2.6//mm
D=0.8//mm
V0=3d+11//mm/s//ERROR
lem_c=(%pi/(2*n))*(d+D)
fc=V0/lem_c//hertz//ERROR
disp(fc,'the frequency is as follows:')//Hz
//ERROR in the calculation in the book as value of V0=3d+10
|
eb1ccf9bb575d7209f6b34b2af5d5e5005a6d76a | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/1.1/macros/metanet/g_ynode.sci | bb0d11ad24bf36132b84695579b5c3cfbc93b144 | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference"
] | 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 | 76 | sci | g_ynode.sci | function y=g_ynode(g)
[lhs,rhs]=argn(0), if rhs=0 then g=the_g, end
y=g(17)
|
5a0abdd211b493b0b0e1a42afd727318216fa915 | 449d555969bfd7befe906877abab098c6e63a0e8 | /154/DEPENDENCIES/ch7_26.sce | 8b763778c51a7f5e1a027272a73af83a50245709 | [] | 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 | 491 | sce | ch7_26.sce | clc
disp("Example 7.26")
printf("\n")
printf("Given")
disp("Period =10s")
disp("Interval is 1ms")
disp("Voltage of binary signal is either 0.5 or -0.5")
T=10;
//During 10s period there are 10000 intervals of 1ms each
//For calculating average equal number of intervals are considered at 0.5V and -0.5V
vavg=(0.5*5000-0.5*5000)/10000
//The effective value of v(t) is
//Let V=V^2eff
V=(0.5^2*5000+(-0.5)^2*5000)/10000
Veff=sqrt(V)
printf("vavg=%dV\nVeff=%3.2fV\n",vavg,Veff)
|
af2d63148b9b34346dd1bf8d5f557707a3295cf6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /659/CH7/EX2.cs/Casestudy7_2.sce | 15d41a2fefe090e096d4359c92214b2d8f2fbddf | [] | 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 | 706 | sce | Casestudy7_2.sce | // Case Study: Chapter-7
// 2.Calculation of standard deviation
MAXSIZE=100;
sum1=0;n=0;sumsqr=0;
disp("Input values:input -1 to end");
for i=1:MAXSIZE
value(i)=scanf("%f"); //Entering values in the array named value
if(value(i)==-1)
break;
end
sum1=sum1+value(i);
n=n+1;
end
mean1=sum1/n; //Computes mean
for i=1:n
deviation=value(i)-mean1;
sumsqr=sumsqr+deviation^2;
end
variance1=sumsqr/n;
stddeviation=sqrt(variance1); //Computes standard deviation
//Printing items,Mean and Standard deviation
printf("Number of items: %d\n",n);
printf("Mean: %f\n",mean1);
printf("Standard deviation: %f\n",stddeviation); |
c19761d3c4a74142eb4e543bf4757a15bb4ac079 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3513/CH6/EX6.8/ch6_8.sce | 35fc08ec3293ba089d70e754182686ba63aaf3b6 | [] | 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,277 | sce | ch6_8.sce | //Determine the control limits for X -R chart.
//page no 119
clear
clc;
USL = 175;
LSL = 135;
n = 5;
K = 50;
X1 = 7660;
R1=880;
X2=X1/K;
R2=R1/K;
A2 = 0.58;
d2 = 2.326;
D3 = 0.0;
D4 = 2.11;
//Control limits for R-chart
UCL = D4*R2;
mprintf("\UCL = %.2f \n",UCL);
LCL = D3*R2;
mprintf("\LCL = %.2f \n",LCL);
CL = R1;
mprintf("\CL = %.2f \n",CL);
//Control limits for X -chart
UCL = X2+A2*R1;
mprintf("\UCL = %.2f \n",UCL);
LCL = X2-A2*R1;
mprintf("\LCL = %.2f \n",LCL);
CL = X2;
mprintf("\CL = %.2f \n",CL);
X2 = 153.2;
sd=R2/d2;
UNTL = X2+3*sd;
LNTL = X2-3*sd;
mprintf("\UNTL = %.2f \n",UNTL);
mprintf("\LNTL = %.2f \n",LNTL);
USL = 175;
LSL = 135;
Z=(LSL-CL)/sd;
pr1 = 0.81; //probability
mprintf("\n Hence probability = %.2f \n",pr1);
Z=(USL-CL)/sd;
pr2 = 99.8; //probability
mprintf("\n Hence probability = %.2f \n",pr2);
R=100-pr2;
R2=pr1+R;
mprintf("\n Total portion of the product which does not confirm with the specifications = %.2f \n",R2);
//(c)
Cl=155;
Z=(LSL-CL)/sd;
pr1 = 0.41; //probability
mprintf("\n Hence probability = %.2f \n",pr1);
Z=(USL-CL)/sd;
pr2 = 99.59; //probability
mprintf("\n Hence probability = %.2f \n",pr2);
R=100-pr2;
R2=pr1+R;
mprintf("\n The total rejections will be = %.2f \n",R2);
|
c6b2ec453812177db0ac490c22ebf3ba09034612 | 449d555969bfd7befe906877abab098c6e63a0e8 | /611/CH9/EX9.9/Chap9_Ex9_R1.sce | ddd86b713d884426c9edb398ffd572f1432dd75f | [] | 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 | 4,094 | sce | Chap9_Ex9_R1.sce | // Y.V.C.Rao ,1997.Chemical Engineering Thermodynamics.Universities Press,Hyderabad,India.
//Chapter-9,Example 9,Page 333
//Title: Molar volume of an equimolar mixture
//================================================================================================================
clear
clc
//INPUT
T=600;//temperature of the equimolar n-butane and n-octane mixture in K
P=16;//pressure of the equimolar n-butane and n-octane mixture in bar
Tc=[425.2;569.4];//critical temperature of n-butane and n-octane in K
Pc=[37.97;24.97];//critical pressure of n-butane and n-octane in bar
R=8.314;//universal gas constant in J/molK
//CALCULATION
//Calculation by Amagat's law of additive volumes
//For convenience, n-butane is taken as 1 and n-octane as 2
y1=0.5;//mole fraction of n-butane in the equimolar mixture
y2=0.5;//mole fraction of n-octane in the equimolar mixture
Tr1=T/Tc(1,:);//calculation of reduced temperature of n-butane (no unit)
Pr1=P/Pc(1,:);//calculation of reduced pressure of n-butane (no unit)
Z1_0=0.95;//value of Z1_0 taken from the generalized compressibility chart, Figure(3.11) corresponding to Tr1 and Pr1 (no unit)
Tr2=T/Tc(2,:);//calculation of reduced temperature of n-octane (no unit)
Pr2=P/Pc(2,:);//calculation of reduced pressure of n-octane (no unit)
Z2_0=0.785;//value of Z2_0 taken from the generalized compressibility chart, Figure(3.11) corresponding to Tr2 and Pr2 (no unit)
//Part a: Using the Amagat's law of additive volumes
Zm=(y1*Z1_0)+(y2*Z2_0);//calculation of the compressibility of the mixture using Eq.(9.96) (no unit)
vm=(Zm*R*T)/(P*10^5);//calculation of the molar volume of the equimolar mixture in m^3/mol
//Calculation by Dalton's law of additive pressures
//The compressibility factors for the pure components are to be evaluated at the mixture temperature and pure component pressure in Dalton's law of additive pressures. As the pure component pressures are not known, they are assumed to be equal to the partial pressure
P1=y1*P;//pure component pressure in bar
P2=y2*P;//pure component pressure in bar
Pr1=P1/Pc(1,:);//calculation of reduced pressure of n-butane (no unit)
Pr2=P2/Pc(2,:);//calculation of reduced pressure of n-octane (no unit)
Z1_0=0.97;//value of Z1_0 taken from the generalized compressibility chart, Figure(3.11) corresponding to Tr1 and Pr1 (no unit)
Z2_0=0.91;//value of Z2_0 taken from the generalized compressibility chart, Figure(3.11) corresponding to Tr2 and Pr2 (no unit)
Zm=(y1*Z1_0)+(y2*Z2_0);//calculation of the compressibility of the mixture using Eq.(9.96) (no unit)
vm_dalton=(Zm*R*T)/(P*10^5);//calculation of the molar volume of the equimolar mixture in m^3/mol
//Recalculation of P1 and P2 to verify the initial assumption
P1=((Z1_0*y1*R*T)/(vm_dalton))*10^-2;//P1 recalculated in bar
P2=((Z2_0*y2*R*T)/(vm_dalton))*10^-2;//P2 recalculated in bar
Pr1=P1/Pc(1,:);//recalculation of reduced pressure of n-butane (no unit)
Pr2=P2/Pc(2,:);//recalculation of reduced pressure of n-octane (no unit)
Z1_0_new=0.97;//value of Z1_0_new taken from the generalized compressibility chart, Figure(3.11) corresponding to Tr1 and Pr1 (no unit)
Z2_0_new=0.91;//value of Z2_0_new taken from the generalized compressibility chart, Figure(3.11) corresponding to Tr2 and Pr2 (no unit)
if Z1_0_new==Z1_0 & Z2_0_new==Z2_0 then
vm_new=vm_dalton;//molar volume of the equimolar mixture in m^3/mol
else
Zm=(y1*Z1_0_new)+(y2*Z2_0_new);//calculation of the compressibility of the mixture using Eq.(9.96) (no unit)
vm_new=(Zm*R*T)/(P*10^5);//calculation of the molar volume of the equimolar mixture in m^3/mol
end
//OUTPUT
mprintf("\n The molar volume of an equimolar mixture of n-butane and n-octane found using the Amagats law of additive volumes = %0.4e m^3/mol\n",vm);
mprintf("\n The molar volume of an equimolar mixture of n-butane and n-octane found using the Daltons law of additive pressures = %0.2e m^3/mol\n",vm_new);
//===============================================END OF PROGRAM===================================================
|
f5613504dc71b5dbf5edb44c5dc42ed2338d0f4c | 5887829f5a0a005033807cf7dc4fb7231eb280ec | /Listing/Chapter 2/listing261.sce | 230a93c5513c957b328b767f50fefd0454742f94 | [] | no_license | joaolrneto/learning_scilab | 78ecc0019f167b57bc35647c4ac785ece01e443e | 9624c9a6736860a8a836b0f801256b6224756585 | refs/heads/main | 2023-03-17T22:17:51.853368 | 2021-03-15T20:58:34 | 2021-03-15T20:58:34 | 344,478,059 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 38 | sce | listing261.sce | clc
clear
x=10
y=20
z = x + y
disp(z)
|
69c89fbe20bc61153e5458313449697cfa8f37cc | 449d555969bfd7befe906877abab098c6e63a0e8 | /1955/CH1/EX1.11/example11.sce | 172c2eebff1548a88a8fdedce36db5b291718ecd | [] | 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 | 960 | sce | example11.sce | clc
clear
//input data
N=4//Number of stages in compressor
m=45//mass flow rate of air delivered by compressor in kg/s
P1=1.2//Pressure ratio at first stage
ns=0.65//Stage efficiency of first stage
r=1.4//ratio of specific heats for air
Cp=1.005//specific at heat at constant pressure in kJ/kg.K
T1=293//Temperature of air at inlet in K
//calculations
P=(P1)^N//Overall pressure in all 4 stages
np=((r-1)/r)*((log10(P1))/(log10((((P1^((r-1)/r))-1)/ns)+1)))//Polytropic efficiency of the cycle
nc=(((P1^(N*((r-1)/r)))-1)/((P1^(N*((r-1)/(r*np))))-1))//Overall efficiency of the cycle
TN1=T1*((P1^(N))^((r-1)/(r*np)))//Final temperature at the exit of the compressor at final stage in K
W=m*Cp*(TN1-T1)//Power required to drive the compressor in kW
//output
printf('(a)The overall pressure ratio of the process is %3.1f\n(b)The overall efficiency of the process is %3.4f\n(c)The power required to drive the compressor is %3.2f kW',P,nc,W)
|
a97346f10fc3a9aff78ba8ebec54d47785e01ba8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /548/CH5/EX5.08/5_08.sce | d67f76e2de9c10bc01927700b9f65b3b5cecafa2 | [] | 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 | 291 | sce | 5_08.sce | pathname=get_absolute_file_path('5_08.sce')
filename=pathname+filesep()+'5_08data.sci'
exec(filename)
Cn=integrate('1-0.95*y','y',0,1.0)-integrate('1-300*y^2 ','y',0,0.1)-integrate('-2.2277+2.2277*y','y',0.1,1.0)
printf("\Answer:\n")
printf("\n\Normal force coefficient : %f \n\n",Cn)
|
5570eb5bd49d1a9dbdc14f5d75fc9d4180c47c85 | a3f79e93d5c39f8f45521c8afcbdc29b0ba4159b | /ProjetMap431/codes/question3.sce | 86308cab6d8ea26b721d325497ec28a82a6b1a85 | [] | no_license | maroxe/SchoolProjects | e3a086461966f022356d952a4e4ee140c915a818 | 152a4a86ec7e04d713723607a2ec010008d7cbcf | refs/heads/master | 2021-01-21T02:35:44.285549 | 2015-07-10T12:09:01 | 2015-07-10T12:09:01 | 19,363,283 | 0 | 0 | null | 2014-11-25T12:34:41 | 2014-05-02T01:47:56 | TeX | UTF-8 | Scilab | false | false | 369 | sce | question3.sce | exec('calcul.sce',-1)
xset("color",6)
for i=omega_2'
rect = [i(1) 0.03 (i(2)-i(1)) 0.06]
xrect(rect)
end
xset("color",1)
mu = [0.01, 0.1, 1]
colors = ['r', 'g', 'b']
solutions = zeros(N, 3)
for i=1:3
A = calc_A(mu(i))
B = calc_B()
solutions(:, i) = inv(A) * B
end
plot2d(mailles, solutions, 1:3)
legend(["$\mu=0.01$";"$\mu=0.1$";"$\mu=1$"]);
|
153a9717f2961d16a682611979f2dfe0cd8043a4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /243/CH6/EX6.02/6_02.sce | 569f1b9be205f18989c229b789cac0effbcfcf75 | [] | 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 | 101 | sce | 6_02.sce | //Example No. 6_02
//Pg No. 128
disp('Theoritical Problem')
disp('For Details go to page no. 128') |
6564788a24817bec6cb18c0ae4fb376ea2c22a83 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1319/CH6/EX6.10/6_10.sce | 9f5a1982db080fcb143b74ed8df32bda65988cde | [] | 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 | 389 | sce | 6_10.sce | //Number of conductors of compensating winding
clc;
clear;
P=8; // No of Poles
Z=960; // No of conductors
ep=70/100; // Effective pole pitch
Zp=Z/P; // No os conductors per pole
AZp= ep*Zp; // No of actice armature conductors
Zpc=ceil(AZp/P); // Conductors in compensating winding
printf('The number of conductors of compensating winding = %g conductor/pole \n',Zpc)
|
ce10d3cb7667c2502d37d4bf9fab8a4b6744196e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1964/CH4/EX4.4/ex4_4.sce | 4a41254bfa8b4a10addcfbdfd18e5d6967489d99 | [] | 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 | 307 | sce | ex4_4.sce | //Chapter-4, Example 4.4, Page 133
//=============================================================================
clc
clear
//CALCULATIONS
f=60;
Im=120;
i=96;
t=asin(i/Im)/(2*%pi*60);
mprintf("time is %1.5f sec",t)
//=================================END OF PROGRAM==============================
|
2a7f4e78b320c188c8ffeb1092aba6c6c4ccf535 | 0812f3bb6f3cc038b570df68ccee4275da04b11f | /models/complexity_1000/Applied_Thermodynamics_and_Engineering/CH1/EX1.6/1_6.sce | 43118dd0c211a9170b646f78d02edf89b8e17fe8 | [] | no_license | apelttom/20-semester_PhD_thesis | edc0b55580bae9d364599932cd73cf32509f4b7a | ff28b115fcf5e121525e08021fa0c02b54a8e143 | refs/heads/master | 2018-12-26T22:03:38.510422 | 2018-12-14T20:04:11 | 2018-12-14T20:04:11 | 106,552,276 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 273 | sce | 1_6.sce | clc;
c1=60;//m/s
W=-14000;//kW
m=17;//kg/s
h1=1200;//kJ/kg
h2=360;//kJ/kg
KE_I=c1^2/2000;//kJ/kg
KE_O=(2.5^2)*KE_I;
//c2=2.5*c1;
Q=m*{[h2+(KE_I/1000)]-[h1+(KE_O/1000)]}-W;
disp("Heat rejected:");
disp("kW",-Q);
v=0.5;//m^2
A=m*v/c1;
disp("inlet area is");
disp("m^2",A)
|
40370e5d5fd3fad8aa84a199c9ff3dbef1061736 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2021/CH21/EX21.13/EX21_13.sce | 5228cdc2695816f9c69914079d9026a57f411861 | [] | 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 | 289 | sce | EX21_13.sce | //Finding of Power delivered
//Given
L=(588600-(588600*4)/100);
d=35;
l=5;
q=0.008;
t1=2.5*60;
rho=1000;
g=9.81;
//To Find
A=(%pi/4)*d^2;
P=L/A;
P1=P*10^4;
H=P1/(rho*g);
W1=q*1000*g*H;
W2=L*l/t1;
W3=W1+W2;
W4=W3/1000;
disp("Power Delivered ="+string(W4)+" Kilo Watts");
|
b4cfed510ba4fb271865a4dd74bd74e678fa35e5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1322/CH14/EX14.2/100ex2.sce | acfae217a0f7bd9d5c5071b0932b144b6d0933ae | [] | 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 | 162 | sce | 100ex2.sce |
//5*x^2*y^2-10*x^2*y+20*y^2
clear;
clc;
close;
mprintf("\n the highest common factor to each term is 5 and other factor is y \n")
disp('5y(x^2y-2x^2+4y)')
|
ab217981260287c68e8c225f969374f87e0ca3a5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2252/CH23/EX23.11/Ex23_11.sce | 44787744a42024578ea08e12a485f1fea7172088 | [] | 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 | 847 | sce | Ex23_11.sce |
//calculating rotor copper losses
s=.04//slip of the motor
Pout=14.92D+3//output of the motor
Pfw=200//friction and windage losses
Prcu=s*(Pout+Pfw)/(1-s)
mprintf("Rotor copper losses=%d W\n",round(Prcu))
//calculating efficiency at full load
P=Pout+Pfw+Prcu+1620//stator input
e=Pout/P*100
mprintf("Efficiency at full load=%f percent\n",e)
//calculating line current
pf=.86//power factor of load
Vl=500//line voltage
Il=P/(sqrt(3)*Vl*pf)
mprintf("Line current=%f A\n",Il)
//calculating no of complete cycles of the rotor electromotive force per minute
f=50//supply frequency
f_r=s*f//frequency of rotor emf
n=f_r*60
mprintf("No of complete cycles of the rotor electromotive force per minute=%d\n",n)
//answer vary from the textbook due to round off error, also there is an error in value of stator input given in textbook
|
af8330b624d803b32b58fa12768ba90a35b15abf | d9e20e3e491ed05049f4f1a44021e96499a581ba | /src/estimadorpolinomialq4.sce | 0d13b1a9b7f12ed997457966402eb062b6803db0 | [] | no_license | josenalde/applied-math | 1e13000bec5e92fa828bee3193607cf8a200a604 | 76a9aab93d69e4be6b564cae72c441bc648444d4 | refs/heads/master | 2021-01-10T09:21:01.369665 | 2020-09-21T22:56:42 | 2020-09-21T22:56:42 | 46,852,259 | 3 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 1,532 | sce | estimadorpolinomialq4.sce | // questao 4, lista 5
// Prof. Josenalde Oliveira - TADS MA II - Out/2015
clear all;
x = [0 4 8 12 16 20 24 28];
fx = [0.5 0.564 0.756 1.076 1.524 2.1 2.804 3.636];
for i = 1:length(x)-1
dx(i) = (fx(i+1) - fx(i)) / (x(i+1) - x(i));
end
printf("Primeira Diferença:\n")
disp(x')
disp(dx)
for i = 1:length(dx)-1
d2x(i) = (dx(i+1) - dx(i)) / (x(i+1) - x(i));
end
printf("Segunda Diferença:\n")
disp(x')
disp(d2x)
// Como a segunda diferenca finita é constante: 0.008 , o coeficiente a do polinomio fica:
// a = d2x / 2
a = d2x(1) / 2;
// como o polinomio é quadratico, tomar dois pares aleatórios dos conjuntos x e fx para montar a matriz A e o vetor f, de modo a resolver o sistema Az = f e encontrar o vetor z = [ b c] com os coeficientes
// tomando o segundo e o quarto par
f = [fx(2) - a*x(2)^2; fx(4) - a*x(4)^2];
A = [x(2) 1; x(4) 1];
z = inv(A)*f;
b = z(1); c = z(2);
printf("a = %.3f, b = %.3f, c = %.3f\n", a, b, c)
printf("f(x) aproximada pelos pontos experimentais: %.3fx2 + %.3fx - %.3f\n", a, b, c)
p = poly(0, 'p');
derivada1 = derivat(a*p^2 + b*p + c);
t = roots(derivada1); // encontrar pontos críticos - raízes da primeira derivada
printf("Pontos Críticos:\n %.3f - Coordenada x Ponto de Mínimo\n", t(1));
// coordenada y do ponto t(1)
yt1 = a*t(1)^2 + b*t(1) + c;
// plotar grafico
fxplot = a.*x.^2 + b.*x + c;
plot(x, fxplot, t(1), yt1, 'r*'); xgrid; xtitle("Polinomio aproximado para f(x) - q4 Lista 5 - Prof. Josenalde Oliveira MA II TADS");
xlabel('x'); ylabel('f(x)');
|
6c4b3c26ccd37b3f00ee735e96127a9282790e6c | f23e565144f1b0f63c7b613c0f549944d425a073 | /Cours/TP_INFO/TP_noteD3/TD-4-Delacour-Anthony-Math.sce | 52dd4654a13921954b2a5f701502e1d8235393d6 | [] | no_license | Antoine-Gerard/Valar-Morghulis | c45766f03898241bd9c424256744b5ffa16dd82c | 796363bfbc6f2e3249c90f1762e041ff5a4e705a | refs/heads/master | 2021-08-31T06:06:55.296982 | 2017-12-20T13:54:33 | 2017-12-20T13:54:33 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,205 | sce | TD-4-Delacour-Anthony-Math.sce | // Delacour Anthony
// Td noté de Math
clear()
//A
v0 = zeros (1, 50)
v1 = ones (1, 50) * 10
v2 = 0:0.3:10
v5 = linspace(-3, 7, 50)
v6 = (2).^(1:25)
//B
//1
function r = F(x);
r = (1+x).*sin(%pi*x);
endfunction
x = linspace(-2, 2, 100)
y = F(x)
fenetre = figure("Figure_name", "Equations", "position", [100 50 1000 600]);fenetre.background = color("white");
set("current_figure", fenetre);
subplot(2, 2, 1);
plot2d(x, y, style=[color("black")]);
//2
function r = P1(x)
r = %pi*x;
endfunction
x = linspace(-2, 2, 100)
y = P1(x)
plot2d(x, y, style=[color("blue")]);
function r = P2(x)
r = %pi*x+%pi*x^2;
endfunction
x = linspace(-2, 2, 100)
y = P2(x)
plot2d(x, y, style=[color("red")]);
//C
//1
function r = G(t, y)
r = y/t+t*log(t)
endfunction
t = linspace(1, 4, 100)
u = 1
a = 1
y = ode("rk", u, a, t, G)
fenetre2 = figure("Figure_name", "Equations", "position", [100 50 1000 600]);fenetre2.background = color("white");
set("current_figure", fenetre2);
subplot(2, 2, 1);
plot2d(t', y', style=[color("black")]);
//2
u= -2
a = 1
y = ode("rk", u, a, t, G)
plot2d(t', y', style=[color("red")]);
u = 2
a = 1
y = ode("rk", u, a, t, G)
plot2d(t', y', style=[color("blue")]);
|
8cffb5ca91fc30b2ca736e0c861e4e8c380c91b8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3769/CH17/EX17.28/Ex17_28.sce | b325a6e1d3b6a507bb3110e0651017cc31f1bc0f | [] | 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 | 220 | sce | Ex17_28.sce | clear
//Given
v=-20.0 //cm
u=-60.0 //cm
//Calculation
f=1/((1/v)-(1/u))
//Result
printf("\n Focal length of the lens is %0.3f cm", f)
printf("\n The lens is diverging")
|
90340cc95fc448fb700c2a4ad58edc866c868bbc | 449d555969bfd7befe906877abab098c6e63a0e8 | /593/CH13/EX13.4/ex13_4.sce | 06019fc80975ca817b1a5b5814c707ee54c05625 | [] | 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,073 | sce | ex13_4.sce | clear;
//clc();
// Example 13.4
// Page: 354
printf("Example-13.4 Page no.-354\n\n");
//***Data***//
T = 273.15+25;//[K] Temperature
R = 8.314;//[J/(mol*K)] universal gas constant
// Solubility of AgCl in water follows
// AgCl = Ag+ + Cl-
// From the Table A.8, free energy of above species are
g_0_Ag = 77.12*1000;//[J/mol]
g_0_Cl = -131.26*1000;//[J/mol]
g_0_AgCl = -109.8*1000;//[J/mol]
// Free energy change of the reacton is given by
delta_g_0 = g_0_Ag + g_0_Cl - g_0_AgCl;//[J/mol]
// Now equilbrium constant of the reaction is given by
K = exp((-delta_g_0)/(R*T));
// In terms of activity of the components, equilibrium constant is
// K = [[Ag+]/(1 molal)*[Cl-]/(1 molal)]/[a_AgCl]
// For solids f_i_0 is normaly taken as the fugacity of the pure crystalline solid,and the activity of the pure crystalline solid is = 1.00, so
a_AgCl = 1.00;
// hence
// [[Ag+]/(1 molal)*[Cl-]/(1 molal)]= K = K_sp , solubility product
printf("The amount of solid dissolved in terms of solubility product is %0.2e",K);
|
61eb6b12724ace77965c8c4510d4d0739ab6f04f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2873/CH9/EX9.11/Ex9_11.sce | ef19b6b2a05caa0a1991c24283622cea3a4c03c3 | [] | 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,706 | sce | Ex9_11.sce | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Engineering Thermodynamics by Onkar Singh Chapter 9 Example 11")
P1=1*10^5;//initial pressure in Pa
T1=(27+273);//initial temperature in K
T3=T1;
r=10;//pressure ratio
T5=1000;//maximum temperature in cycle in K
P6=3*10^5;//first stage expansion pressure in Pa
T7=995;//first stage reheated temperature in K
C=42000;//calorific value of fuel in KJ/kg
Cp=1.0032;//specific heat at constant pressure in KJ/kg K
m=30;//air flow rate in kg/s
nc=0.85;//isentropic efficiency of compression
ne=0.9;//isentropic efficiency of expansion
y=1.4;//expansion constant
disp("for perfect intercooling the pressure ratio of each compression stage(k)")
disp("k=sqrt(r)")
k=sqrt(r)
k=3.16;//approx.
disp("for process 1-2_a,T2_a/T1=(P2/P1)^((y-1)/y)")
disp("so T2_a=T1*(k)^((y-1)/y)in K")
T2_a=T1*(k)^((y-1)/y)
disp("considering isentropic efficiency of compression,")
disp("nc=(T2_a-T1)/(T2-T1)")
disp("so T2=T1+((T2_a-T1)/nc)in K")
T2=T1+((T2_a-T1)/nc)
disp("for process 3-4,")
disp("T4_a/T3=(P4/P3)^((y-1)/y)")
disp("so T4_a=T3*(P4/P3)^((y-1)/y) in K")
T4_a=T3*(k)^((y-1)/y)
disp("again due to compression efficiency,nc=(T4_a-T3)/(T4-T3)")
disp("so T4=T3+((T4_a-T3)/nc)in K")
T4=T3+((T4_a-T3)/nc)
disp("total compressor work,Wc=2*Cp*(T4-T3) in KJ/kg")
Wc=2*Cp*(T4-T3)
disp("for expansion process 5-6_a,")
disp("T6_a/T5=(P6/P5)^((y-1)/y)")
disp("so T6_a=T5*(P6/P5)^((y-1)/y) in K")
P5=10*10^5;//pressure in Pa
T6_a=T5*(P6/P5)^((y-1)/y)
disp("considering expansion efficiency,ne=(T5-T6)/(T5-T6_a)")
disp("T6=T5-(ne*(T5-T6_a)) in K")
T6=T5-(ne*(T5-T6_a))
disp("for expansion in 7-8_a")
disp("T8_a/T7=(P8/P7)^((y-1)/y)")
disp("so T8_a=T7*(P8/P7)^((y-1)/y) in K")
P8=P1;//constant pressure process
P7=P6;//constant pressure process
T8_a=T7*(P8/P7)^((y-1)/y)
disp("considering expansion efficiency,ne=(T7-T8)/(T7-T8_a)")
disp("so T8=T7-(ne*(T7-T8_a))in K")
T8=T7-(ne*(T7-T8_a))
disp("expansion work output per kg of air(Wt)=Cp*(T5-T6)+Cp*(T7-T8) in KJ/kg")
Wt=Cp*(T5-T6)+Cp*(T7-T8)
disp("heat added per kg air(q_add)=Cp*(T5-T4)+Cp*(T7-T6) in KJ/kg")
q_add=Cp*(T5-T4)+Cp*(T7-T6)
disp("fuel required per kg of air,mf=q_add/C")
mf=q_add/C
disp("air-fuel ratio=1/mf")
1/mf
disp("net output(W)=Wt-Wc in KJ/kg")
W=Wt-Wc
disp("output for air flowing at 30 kg/s,=W*m in KW")
W*m
disp("thermal efficiency=W/q_add")
W/q_add
disp("in percentage")
W*100/q_add
disp("so thermal efficiency=27.87%,net output=6876.05 KW,A/F ratio=51.07")
disp("NOTE=>In this question,expansion work is calculated wrong in book,so it is corrected above and answers vary accordingly.")
|
e8e48e1cee1708228600369976ab2b0902e68e41 | 449d555969bfd7befe906877abab098c6e63a0e8 | /293/CH7/EX7.6/eg7_6.sce | 52b0b90dd95e824c91a02b72f6344ba66d14d427 | [] | 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 | 183 | sce | eg7_6.sce | //find V*Z1/Z2
V = complex(45*sqrt(3), -45);
Z1 = complex(2.5*sqrt(2), 2.5*sqrt(2));
Z2 = complex(7.5, 7.5*sqrt(3));
// we have to find V*Z1/Z2
Z = V*Z1/Z2;
disp(Z,"V*Z1/Z2 = ") |
39bde45dee2dffcbaa3092ab9edf8b61598edb23 | 449d555969bfd7befe906877abab098c6e63a0e8 | /824/CH8/EX8.10/8_10.sce | 2be7eaad936b13bee9094aa5806a734318ccbb74 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 908 | sce | 8_10.sce | //clear//
clc
clear
//eY(2)ec("8.6data.sci");
W = 0:1:28.58;
W0=0;
function w=f(W,Y)
w =zeros(3,1);
fao=.188
visc=.090
Ta=1264.67
deltah=-42471-1.563*(Y(3)-1260)+.00136*(Y(3)**2-1260**2)-(2.459*10**(-7))*(Y(3)**3-1260**3);
summ= 57.23+.014 * Y(3)-1.94 *10**(-6.)*Y(3)**2
dcp=-1.5625+2.72*10**(-3)*Y(3)-7.38*10**(-7)*Y(3)**2
k=360D*exp(-176008/Y(3)-(110.1*log(Y(3)))+912.8)
thetaso=0;
Po=2
Pao=.22
thetao=.91
eps=-.055
R=1.987;
Kp=exp(42311/R/Y(3)-11.24);
if(Y(2)< =.05)
ra=(-k*(.848-.012/(Kp**2)));
else
ra=(-k*(1-Y(2))/(thetaso+Y(2)))**.5*(Y(1)/Po*Pao*((thetao-.5*Y(2))/((1+eps*Y(2)))-((thetaso+Y(2))/(1-Y(2)))**2/(Kp**2)));
end
w(1)=(-1.12*10**(-8)*(1-.055*Y(2))*Y(3))*(5500*visc+2288)/Y(1) ;
w(2)=-(ra)/fao ;
w(3)=(5.11*(Ta-Y(3))+(-ra)*(-deltah) )/(fao*(summ+Y(2)*dcp))
endfunction
X=ode([2;0;1400],W0,W,f);
plot2d(W,X(1,:));
plot2d(W,X(3,:));
|
e1836f1d95015e969543e25e3a3349cf1d69ebfe | 48161b2eed48e5d258b0c2ad93d5f2f1d80fac75 | /plot_simulation_data.sci | a3999752988fdb2123292380ad63243481a3916b | [] | no_license | sp513902/Open-source-SAR-simulator | fa143b3c2ea20f35b786936297a77d75c9e6ae9d | cabe01678457cfacdbb7641d3f6e636e4c74668d | refs/heads/master | 2021-01-18T03:50:00.583874 | 2012-10-06T21:46:51 | 2012-10-06T21:46:51 | 85,785,883 | 1 | 0 | null | 2017-03-22T04:45:05 | 2017-03-22T04:45:05 | null | UTF-8 | Scilab | false | false | 8,299 | sci | plot_simulation_data.sci | function [processed_chirp_data, processed_matched_chirp, processed_pulse_compressed, processed_scene_data, processed_undistorted_image_data, processed_unfiltered_image_data, processed_image_data, processed_compressed_data, processed_sar_data, processed_sar_fft] = plot_simulation_data()
stacksize('max');
data_type = input("Is the data real or complex valued (r/c)? ", "string");
dimensions = read("dimensions.dat", 4, 1);
chirp_length = dimensions(1);
radar_rows = dimensions(2);
radar_cols = dimensions(3);
signal_distance = dimensions(4);
distance_step = signal_distance/chirp_length;
end_row_distance = distance_step*radar_rows;
end_col_distance = distance_step*radar_cols;
printf("Chirp length: %i\n", chirp_length);
printf("Radar Rows: %i Cols: %i\n", radar_rows, radar_cols);
if data_type == "c"
chirp_data = read("chirp.dat", chirp_length, 2);
matched_chirp_data = read("matched.dat", chirp_length, 2);
pulse_compressed_data = read("compressed.dat", chirp_length, 2);
scene_with_waveform_data = read("scene_with_waveform.dat", radar_cols, 2*radar_rows);
undistorted_radar_image_data = read("undistorted_radar_image.dat", radar_cols, 2*radar_rows);
unfiltered_radar_image_data = read("unfiltered_radar_image.dat", radar_cols, 2*radar_rows);
radar_image_data = read("radar_image.dat", radar_cols, 2*radar_rows);
compressed_image_data = read("pulse_compressed_image.dat", radar_cols, 2*radar_rows);
sar_image_data = read("sar_image.dat", radar_cols, 2*radar_rows);
sar_fft_data = read("sar_fft.dat", radar_cols, 2*radar_rows);
chirp_fft = read("chirpfft.dat", chirp_length, 2);
matched_fft = read("matchedfft.dat", chirp_length, 2);
processed_chirp_data = chirp_data(:,1)+%i*chirp_data(:,2);
processed_matched_chirp = matched_chirp_data(:,1)+%i*matched_chirp_data(:,2);
processed_pulse_compressed = pulse_compressed_data(:,1)+%i*pulse_compressed_data(:,2);
processed_scene_data = zeros(radar_rows, radar_cols);
processed_undistorted_image_data = zeros(radar_rows, radar_cols);
processed_unfiltered_image_data = zeros(radar_rows, radar_cols);
processed_image_data = zeros(radar_rows, radar_cols);
processed_compressed_data = zeros(radar_rows, radar_cols);
processed_sar_data = zeros(radar_rows, radar_cols);
processed_sar_fft = zeros(radar_rows, radar_cols);
complex_chirp_fft = chirp_fft(:,1)+%i*chirp_fft(:,2);
complex_matched_fft = matched_fft(:,1)+%i*matched_fft(:,2);
for col = [1:radar_cols]
for row = [1:radar_rows]
processed_scene_data(row,col) = scene_with_waveform_data(col, 2*row-1) + %i*scene_with_waveform_data(col, 2*row);
processed_undistorted_image_data(row,col) = undistorted_radar_image_data(col,2*row-1) + %i*undistorted_radar_image_data(col, 2*row);
processed_unfiltered_image_data(row,col) = unfiltered_radar_image_data(col,2*row-1) + %i*unfiltered_radar_image_data(col, 2*row);
processed_image_data(row,col) = radar_image_data(col,2*row-1) + %i*radar_image_data(col, 2*row);
processed_compressed_data(row,col) = compressed_image_data(col, 2*row-1) + %i*compressed_image_data(col, 2*row);
processed_sar_data(row,col) = sar_image_data(col,2*row-1) + %i*radar_image_data(col, 2*row);
processed_sar_fft(row,col) = sar_fft_data(col, 2*row-1) + %i*sar_fft_data(col, 2*row);
end
end
elseif data_type == "r"
processed_chirp_data = read("chirp.dat", chirp_length, 1);
processed_matched_chirp = read("matched.dat", chirp_length, 1);
processed_pulse_compressed = read("compressed.dat", chirp_length, 1);
processed_scene_data = read("scene_with_waveform.dat", radar_cols, radar_rows);
processed_undistorted_image_data = read("undistorted_radar_image.dat", radar_cols, radar_rows);
processed_unfiltered_image_data = read("unfiltered_radar_image.dat", radar_cols, radar_rows);
processed_image_data = read("radar_image.dat", radar_cols, radar_rows);
processed_compressed_data = read("pulse_compressed_image.dat", radar_cols, radar_rows);
processed_sar_data = read("sar_image.dat", radar_cols, radar_rows);
processed_sar_fft = read("sar_fft.dat", radar_cols, radar_rows);
complex_chirp_fft = read("chirpfft.dat", chirp_length,1);
complex_matched_fft = read("matchedfft.dat", chirp_length, 1);
else
printf("Invalid data type.");
return
end
da = gda();
da.x_label.text = "Time";
da.y_label.text = "Amplitude";
figure("Figure_name", "Chirp signal");
plot(processed_chirp_data);
da = gda();
da.x_label.text = "Frequency";
da.y_label.text = "Amplitude";
figure("Figure_name", "Chirp FFT");
plot(abs(complex_chirp_fft));
da = gda();
da.x_label.text = "Time";
da.y_label.text = "Amplitude";
figure("Figure_name", "Matched Chirp signal");
plot(processed_matched_chirp);
da = gda();
da.x_label.text = "Frequency";
da.y_label.text = "Amplitude";
figure("Figure_name", "Matched Chirp FFT");
plot(abs(complex_matched_fft));
da = gda();
da.x_label.text = "Time";
da.y_label.text = "Amplitude";
figure("Figure_name", "Pulse-compressed signal");
plot(abs(processed_pulse_compressed));
[x,y] = meshgrid([0:distance_step:end_row_distance-distance_step], [0:distance_step:end_col_distance-distance_step]);
da = gda();
da.y_label.text = "Range (m)";
da.x_label.text = "Crossrange (m)";
figure("Figure_name", "Scene with waveform");
//plot3d([0:distance_step:end_row_distance-distance_step], [0:distance_step:end_col_distance-distance_step], 10000*abs(processed_scene_data));
mesh(x,y,10000*abs(processed_scene_data));
// contour([0:distance_step:end_row_distance-distance_step],[0:distance_step:end_col_distance-distance_step],abs(processed_scene_data),10);
da = gda();
da.y_label.text = "Range (m)";
da.x_label.text = "Crossrange (m)";
figure("Figure_name", "Undistorted radar image");
//plot3d([0:distance_step:end_row_distance-distance_step], [0:distance_step:end_col_distance-distance_step], 10000*abs(processed_image_data));
mesh(x,y,10000*abs(processed_undistorted_image_data));
// contour([0:distance_step:end_row_distance-distance_step],[0:distance_step:end_col_distance-distance_step],abs(processed_undistorted_image_data),10);
da = gda();
da.y_label.text = "Range (m)";
da.x_label.text = "Crossrange (m)";
figure("Figure_name", "Unfiltered radar image");
//plot3d([0:distance_step:end_row_distance-distance_step], [0:distance_step:end_col_distance-distance_step], 10000*abs(processed_image_data));
mesh(x,y,10000*abs(processed_unfiltered_image_data));
da = gda();
da.y_label.text = "Range (m)";
da.x_label.text = "Crossrange (m)";
figure("Figure_name", "Radar image");
//plot3d([0:distance_step:end_row_distance-distance_step], [0:distance_step:end_col_distance-distance_step], 10000*abs(processed_image_data));
mesh(x,y,10000*abs(processed_image_data));
da = gda();
da.y_label.text = "Range (m)";
da.x_label.text = "Crossrange (m)";
figure("Figure_name", "Pulse-compressed Radar image");
//plot3d([0:distance_step:end_row_distance-distance_step], [0:distance_step:end_col_distance-distance_step], 10000*abs(processed_compressed_data));
mesh(x,y,10000*abs(processed_compressed_data));
da = gda();
da.y_label.text = "Range (m)";
da.x_label.text = "Crossrange (m)";
figure("Figure_name", "SAR image");
//plot3d([0:distance_step:end_row_distance-distance_step], [0:distance_step:end_col_distance-distance_step], 10000*abs(processed_sar_data));
mesh(x,y,10000*abs(processed_sar_data));
da = gda();
da.y_label.text = "Range frequency";
da.x_label.text = "Crossrange frequency";
figure("Figure_name", "SAR image FFT");
mesh(abs(processed_sar_fft'));
endfunction
|
104b9c368e6a494d0f208a556d4f9c4f352034d8 | 5f48beee3dc825617c83ba20a7c82c544061af65 | /tests/s/104.tst | 2e4eb89acd9a42b31e110b1d21209d3051bdb4ef | [] | 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 | 28 | tst | 104.tst | int main(void)
{
--(4);
}
|
713264efb67ba0175addb948b4bd2706c7d1e9c6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1967/CH12/EX12.3/12_3.sce | 89cbccf0fb6bed83f981e549ad7f4f8198c1241a | [] | 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 | 228 | sce | 12_3.sce | clc
//initialisation of variables
clear
p= 3.66 //atm
v= 6.01 //litre mole^-1
T= 0 //C
R= 0.082 //lit-atm mole^-1 K^-1
//CALCULATIONS
f= p^2*v/(R*(273+T))
//RESULTS
printf ('fugacity of liquid chlorine = %.2f atm',f)
|
3ce9428de609fc15f1ff7d79e008bdf9e3706003 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2495/CH1/EX1.5.9/Ex1_5_9.sce | 4f99fcbc204b5281238425ed6550921512ed294f | [] | 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 | 643 | sce | Ex1_5_9.sce | clear
clc
K1=5.36;//
K2=4.95;//
T1=-2875;//in K
T2=-2740;//in K
R=8.314;//in J/Kmol
T=(T2-T1)/(K1-K2);//triple point temperature in K
printf('T=%.1f K',T)
P=(10^((T1/T)+K1));//triple point pressure in atm
printf('\nP=%.7f K atm',P)
DelHm_s=2.303*R*(-T1);//molar enthalpy of sublimation in J/mol
DelHm_v=2.303*R*(-T2);//molar enthalpy of vapourization in J/mol
DelHm_f=DelHm_s-DelHm_v;//molar enthalpy of fusion in J/mol
printf('\nDelHm_f=%.1d J/mol',DelHm_f)
DelSm_f=DelHm_f/T;//molar entropy of fusion in J/Kmol
printf('\nDelSm_f=%.2f J/Kmol',DelSm_f)
//There are some errors in the solution given in textbook
//page 20
|
21e63799218f2cb1ea0912d92de220ae2323b36d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1580/CH9/EX9.10/Ch09Ex10.sce | 95a1ded87d78d5dff64decf163a5e21ced5f47ab | [] | 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,297 | sce | Ch09Ex10.sce | // Scilab Code Ex9.10: Page-9.31 ; (2004)
clc;clear;
ni = 1.5e+16; // Intrinsic Carrier concentration at room temperature
mu_e = 0.135; // Mobility of electron; m^2V^-1s^-1
e = 1.6e-19; // Electronic charge, C
Nd = 1e+23; // Impurity atoms , per metrecube
T = 300; // Temperature, Kelvin
k = 1.38e-23; // Boltzman constant,joule per kelvin
mu_h = 0.048; // Mobility of holes, m^2V^-1s^-1
sigma = ni*e*(mu_e+mu_h); // Conductivity, mho per meter
p = ni^2/Nd; // Hole concentration, per metrecube
sigma_ex = Nd*e*mu_e; // Conductivity with donor type impurities, mho per meter
E_F =(3/(4*e))*k*T*(log(0.135/0.048)); // Position of fermi level above the intrinsic level, eV
// mu is inversely propotional to mass
printf("\nConductivity of silicon = %3.2e mho per meter", sigma);
printf("\nHole concentration = %4.2e per metrecube", p);
printf("\nConductivity with donor type impurities = %4.2e mho per meter", sigma_ex);
printf("\nPosition of fermi level above the intrinsic level = %4.2f eV", E_F);
//Results
// Conductivity of silicon = 4.39e-04 mho per meter
// Hole concentration = 2.25e+09 per metrecube
// Conductivity with donor type impurities = 2.16e+03 mho per meter
// Position of fermi level above the intrinsic level = 0.02 eV
|
8ac9f9e5d980daddfc59ce1ce69ca65833d2df7b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1919/CH11/EX11.8/Ex11_8.sce | 2a8ec117d310bc64b464db97024fc15fec7d7bce | [] | 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 | 424 | sce | Ex11_8.sce |
// Theory and Problems of Thermodynamics
// Chapter 11
// Kinetic Theory of Gases
// Example 8
clear ;clc;
//Given data
R = 8.314 // Gas constant
// u = 5*(0.5*R*T) // Energy of molecule
// h = u+Pv = 5/2*R*T + RT = 7/2*R*T
Cv = 5/2*R
Cp = 7/2*R
gam = Cp/Cv
// output results
mprintf('The ratio of the molar heat capacity of CO2 = %1.1f', gam)
|
845ea649bd02b79b78b31ddd65404e4ffaac9498 | 449d555969bfd7befe906877abab098c6e63a0e8 | /503/CH8/EX8.20/ch8_20.sci | 86ce55d25a2c28cfa82d391de0111344fbadbfb5 | [] | 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 | 535 | sci | ch8_20.sci | //to determine the magnitude of Eg,Em and min value of Em to remain m/c in synchronism
clc;
j=sqrt(-1);
V_base=400;
kva_base=10;
MW_base=10;
Pm=8/10;
Vt=1;
pf=.8;
Ia=Pm/(Vt*pf);
Ia=Ia*complex(pf,sind(acosd(pf)));
Em=Vt-j*Ia*pf;
Emm=abs(Em)*V_base;
dl_m=atand(imag(Em)/real(Em));disp(dl_m,'dl_m(deg)');
Eg=Vt+j*Ia*(pf+.2);
Egg=abs(Eg)*V_base;
dl_g=atand(imag(Eg)/real(Eg));disp(dl_g,'dl_g(deg)');
dl_gm=dl_g-dl_m;disp(dl_gm,'relative angle(deg)');
dl_m=90;
Emmin=.8*.8/1;
disp(Emmin*V_base,'min value of Em(V)'); |
44d0fda5b80f36508ea5f9c356dbcc5a7c33068c | 2306fe37806fcf2e0b7509d8c35d5b5761d87624 | /cube.sce | 760026014d34062e3681998aa0f3cb399f461c2d | [
"MIT"
] | permissive | thbt/PlanetarySystem | 60532b0a9e0e59a8ee2089eb721b68ff9c518335 | a8a514c583e59cebacaa3ad32cf5c2ac923d7e60 | refs/heads/master | 2021-01-01T16:40:28.843162 | 2015-07-30T09:30:03 | 2015-07-30T09:30:03 | 39,942,394 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,185 | sce | cube.sce | // cube.sce
// Longueur des côtés
cLx = 1;
cLy = 1;
cLz = 1;
// Les vertex du cube
sCube = [cLx*ones(8,1),cLy*ones(8,1),cLz*ones(8,1)] .* ...
[0,0,0; // 1
1,0,0; // 2
0,1,0; // 3
0,0,1; // 4
1,1,0; // 5
0,1,1; // 6
1,0,1; // 7
1,1,1]; // 8
// Cette ligne sert juste à nous simplifier les calculs et a éviter de devoir transposer à chaque fois.
sCube = sCube';
// On met le cube à l'origine.
vect = getOrigin(sCube);
sCube = translation(sCube, -vect);
// Les faces du cube (les numéros sont les id des vertex)
fCube = [1,2,5,3; // A
1,3,6,4; // B
1,4,7,2; // C
2,5,8,7; // D
4,7,8,6; // E
3,6,8,5]; // F
// L'axe de rotation du cube
axeRotCube = [%pi / 7, 0, 0];
function updateCube(elapsedTime)
tempCube = sCube;
// On fait tourner le cube sur lui-même en tennant compte de son axe de rotation. On fait donc tourner le cube normalement puis on rajoute l'axe de rotation
tempCube = rotationLocale(tempCube, 0, 0, (i * %pi / 10));
tempCube = rotationLocaleVect(tempCube, axeRotCube);
// On affiche le cube
dessinerForme(tempCube, fCube);
endfunction
|
2517b900da9a0d4c0821ce656e7a9f163af58fd8 | 352a2b6c7e8e0fbc76f9dacb222075df0cc1bbc6 | /TP3/forwardBackward.sci | 445ab7fcab4a1c0ecda3b323b4337ea99113f88e | [] | no_license | BenFradet/RO05 | 443dd2807b521eefdd65ff901d25b46bce8a0838 | 0aa5855de282bfccacae999536f1424a303ca72e | refs/heads/master | 2020-06-06T17:45:47.138916 | 2014-12-18T15:32:12 | 2014-12-18T15:32:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 483 | sci | forwardBackward.sci | function[posteriors] = forwardBackward(sequence, initialProbs, ...
transitionMatrix, emissionMatrix)
// Author: Benjamin Fradet
exec('forward.sci', -1);
exec('backward.sci', -1);
alph = forward(sequence, initialProbs, transitionMatrix, emissionMatrix);
bet = backward(sequence, transitionMatrix, emissionMatrix);
alphaBeta = alph .* bet;
posteriors = alphaBeta ./ repmat(sum(alphaBeta, 2), 1, size(alphaBeta, 2));
endfunction
|
8160dde1f1321bb7784fce7bd0a563718eddfdea | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH10/EX10.10/Example10_10.sce | fce81b1c6f699faf74fef7c539bbbaa9b686cec2 | [] | 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,387 | sce | Example10_10.sce | // A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART II : TRANSMISSION AND DISTRIBUTION
// CHAPTER 3: STEADY STATE CHARACTERISTICS AND PERFORMANCE OF TRANSMISSION LINES
// EXAMPLE : 3.10 :
// Page number 135
clear ; clc ; close ; // Clear the work space and console
// Given data
f = 50.0 // Frequency(Hz)
l = 125.0 // Line length(km)
P_r = 40.0*10**6 // Load at receiving end(VA)
V_r = 110.0*10**3 // Line voltage at receiving end(V)
PF_r = 0.8 // Lagging load power factor
R = 11.0 // Resistance(ohm/phase)
X = 38.0 // Inductive reactance(ohm/phase)
Y = 3.0*10**-4 // Capacitive susceptance(S)
// Calculations
// Case(i)
E_r = V_r/3**0.5 // Receiving end phase voltage(V)
Z = complex(R,X) // Total impedance(ohm/phase)
I_c1 = E_r*(Y/2)*exp(%i*90.0*%pi/180) // Current through shunt admittance at receiving end(A)
I_r = P_r/(3**0.5*V_r)*exp(%i*-acos(PF_r)) // Load current(A)
I = I_r+I_c1 // Current through series impedance(A)
E_s = I*Z+E_r // Voltage across shunt admittance at sending end(V)
E_s_ll = 3**0.5*E_s/1000.0 // Line to line voltage at sending end(kV)
I_c2 = E_s*(Y/2)*exp(%i*90.0*%pi/180) // Current through shunt admittance at sending end(A)
// Case(ii)
I_s = I_c2+I_r // Sending end current(A)
angle_Er_Es = phasemag(E_s) // Angle between E_r and E_s(°)
angle_Er_Is = phasemag(I_s) // Angle between E_r and I_s(°)
angle_Es_Is = angle_Er_Es-angle_Er_Is // Angle between E_s and I_s(°)
PF_s = cosd(angle_Es_Is) // Sending end power factor
// Results
disp("PART II - EXAMPLE : 3.10 : SOLUTION :-")
printf("\nCase(i) : Line to line voltage at sending end, E_s = %.f kV", abs(E_s_ll))
printf("\nCase(ii): Sending end power factor = %.3f \n", PF_s)
printf("\nNOTE: Answers in the textbook are incomplete")
|
f6774f8dd2bd29a94723109d71af175f24b321bf | 449d555969bfd7befe906877abab098c6e63a0e8 | /1670/CH5/EX5.21/5_21.sce | 56aab357f2e6fe2c9a9b9d2f4cef567dbb66c7bb | [] | 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,032 | sce | 5_21.sce | //Example 5.21
//Newton's Forward Difference Formula
//Page no. 145
clc;close;clear;
printf(' x\t f(x)\t\t 1st\t\t 2nd\t\t 3rd\t\t\n\t\t\tdifference\tdifference\tdifference\t')
printf('\n---------------------------------------------------------------------------------------------------')
h=1;
z=[0,-4;1,-1;2,2;3,11;4,32;5,71]
deff('y=f1(x,p)','y=z(x,2)+p*z(x,3)+p*(p-1)*z(x,4)/2+p*(p-1)*(p-2)*z(x,5)/6')
x01=0;x11=6;
x02=2;x12=2.5
for i=3:7
for j=1:8-i
z(j,i)=z(j+1,i-1)-z(j,i-1)
end
end
printf('\n')
for i=1:6
for j=1:5
if z(i,j)==0 & i~=1 then
printf(' \t')
else
if j==1 then
printf(' %.1f\t',z(i,j))
else
printf('%.7f\t',z(i,j))
end
end
end
printf('\n')
end
x=poly(0,'x')
l=z(1,2)+x*z(1,3)+x*(x-1)*z(1,4)/2+x*(x-1)*(x-2)*z(1,5)/6
disp(l,"The required equation is :")
p=(x11-x01)/h;
disp(f1(1,p),"fp (6) =");
p=(x12-x02)/h;
disp(f1(3,p),"fp (2.5) =");
|
d03904b264d36a6a48ff6b0e164e0ddff5be58bf | 449d555969bfd7befe906877abab098c6e63a0e8 | /1499/CH5/EX5.42/s42.sce | 11cd3e7c1ebb016a23b1afe542a46657a814dd3e | [] | 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 | s42.sce | s=%s;
H=syslin('c',10/(s*(s+1)*(0.05*s+1)))
nyquist(H)
show_margins(H,'nyquist')
mtlb_axis([-50 50 -50 50])
gm=g_margin(H) // gain margin
pm=p_margin(H) // phase margin
|
080ac8b7556087f26a082807648bdbcb195ecd38 | 449d555969bfd7befe906877abab098c6e63a0e8 | /69/CH8/EX8.16/8_16.sce | 42c217f0518033011a0ba42c834cf49c00238515 | [] | 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 | 565 | sce | 8_16.sce | clear; clc; close;
yos = 20*10^(-6);
Idss = 10*10^(-3);
Idq = 2.8*10^(-3);
Vp = -4;
Vgsq = -1.9;
Vi = 20*10^(-3);
Rd = 2.4*10^(3);
Rg = 3.3*10^(6);
Rl = 10*10^(3);
gmo = 2*Idss/abs(Vp);
gm = gmo*(1-(Vgsq/Vp));
Av2 = -gm*Rd;
Av1 = -gm*(Rd*Rg/(Rd+Rg));
Av = Av1*Av2;
Vo = Av*Vi;
Zi = Rg;
Zo = Rd;
Vl = (Rl/(Zo+Rl))*Vo;
disp(gm,'gm(S) = ');
disp(Av2,'voltage gain = ');
disp(Vo,'output voltage(Volts) = ');
disp(Zi,'input impedance(ohms) = ');
disp(Zo,'output impedance(ohms) = ');
disp(Vl,'output voltage across the load(Volts) = ');
|
98b1289aa415000bae3f3bc055c469be224d0e24 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2354/CH18/EX18.8/18_8.sce | 7b2221c45417475069b557df6212f18a4361a091 | [] | 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 | 315 | sce | 18_8.sce | //example 18.8
clc; funcprot(0);
// Initialization of Variable
pi=3.14;
sigma=5.67e-8;
T1=1623//K
T2=1923;//K
T3=300;//K
F23=0.06;
A2=pi*0.075^2/4;
A1=pi*0.075*0.15;
F21=1-F23;
F12=A2/A1*F21;
Pe=A1*0.118*sigma*(T1^4-T3^4)+A2*F23*sigma*(T2^4-T3^4);
disp(Pe,"Electrical power required in W");
clear()
|
2978256f5150384eb5f24a39fc1f5a7891ae3eb6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2267/CH12/EX4.4/Ex12_4.sce | 6925f013fc952e719e059e3385918069eb1b484d | [] | 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 | 515 | sce | Ex12_4.sce | //Part B Chapter 4 Example 4
clc;
clear;
close;
D=50;//mm
l=3;//m
P=60;//hp
N=250;//rpm
G=90;//GN/m^2
Pl=20;//hp(assumed)
Tl=Pl*746/2/%pi/N;//Nm
Pr=Pl*2;//hp(Pr:Pl=1:2)
Tr=Pr*746/2/%pi/N;//Nm
tau_max=Tr*(D/2)*10^-3*32/(%pi*(D/1000)^4);//MN/m^2
disp("Maximum shear stress is "+string(tau_max/10^6)+" MN/m^2.");
theta_l=Tl*1.5*32/(G*10^9*%pi*(D/1000)^4);//radian
theta_r=Tr*1.5*32/(G*10^9*%pi*(D/1000)^4);//radian
theta=theta_r-theta_l;//radian
disp("Angle of twist is "+string(theta)+" radian.");
|
8fa979c3101cc81a17331104b569dd51f9c2a5ea | 449d555969bfd7befe906877abab098c6e63a0e8 | /2780/CH10/EX10.1/Ex10_1.sce | 937c30874e14dd30ea48b14b96135ed51d19e787 | [] | 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 | 436 | sce | Ex10_1.sce | clc
//to calculate permeability and susceptibility of the bar
phi=2.4*10^-5 //magnetic flux in weber
A=0.2*10^-4 //cross sectional area in m^2
B=phi/A //magnetic induction in N/Am
H=1200 //magnetising field in A/m
mu=B/H
disp("permeability is mu="+string(mu)+"N/A^2")
muo=4*%pi*10^-7
chim=(mu/muo)-1
disp("susceptibility is chim="+string(chim)+"unitless")
//the answer is given wrong in the book (round off error) chim=737
|
2ff8f686dd3c9e518e7c0ef8c5c60fe2e2646a5b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1184/CH3/EX3.7/Ex3_7.sce | 72c936840176162089557d147b786229901cde49 | [] | 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 | 165 | sce | Ex3_7.sce | //Example 3-7,Page No- 113
clear
clc
Vpp = 178
R = 75
Vp =Vpp/2
Vrms = 0.707*Vp
PEP =(Vrms^2/R)
printf('The peak envelop power is %0.1f watt', PEP)
|
d529cb098a1fb98dfeeed93b314b94d46167ebe9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1784/CH43/EX43.2/example_2.sce | 8858a15f56509e86e940545d4e382f36c0b12f13 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 157 | sce | example_2.sce | //Example 2
//chapter 43
delta=546*10^-9//in meter
D=20*10^-2//in meter
d=0.10*10^-3///in meter
delta_y=(delta*D)/d
disp(delta_y,"Linear distence in meter=") |
358d806d3b4dabe6635cb5807cbf05a45242bed9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /443/CH1/EX1.10/1_10.sce | fc759ad631f5c6ca64568906e143d9c7ae327b88 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 539 | sce | 1_10.sce | pathname=get_absolute_file_path('1_10.sce')
filename=pathname+filesep()+'1_10_data.sci'
exec(filename)
//brake thermal efficiency
nbth=nith*nm
//rate of energy input from fuel
Ef=mf/3600*CV
//brake power
bp=nbth*Ef
//for square engine d=L
L^3=(bp*60000/0.25*%pi*k*pbm*n)
//specific speed of the engine
L=((sp*60)/(2*N))
//stroke of the engine
L=sqrt((L^3*n)/(L*N))
//crank radius
r=L/2
//speed
N=360/L
printf("\n\nRESULTS\n\n")
printf("\nstroke length:%f\n",L)
printf("\ncrank radius:%f\n",r)
printf("\nspeed:%f\n",N) |
2d0c0e164c1bb36cb6cd43dcc01c4442f5bb8def | 449d555969bfd7befe906877abab098c6e63a0e8 | /659/CH4/EX4.4/exm4_4.sce | e06536a2d1f17f5657e8b84b25310f8b54787af5 | [] | 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 | 611 | sce | exm4_4.sce | // Example 4.4
// The program illustrates the various options for reading
//integers are experimented in this program
printf("Enter three integer numbers\n");
[n,a,b,c]=mscanf("%d %*d %d");
disp(c,b,a);
printf("Enter two 4-digit numbers\n");
[n,x,y]=mscanf("%2d %4d");
printf('%d %d\n',x,y);
printf("Enter two integers\n");
[n,a,x]=mscanf("%d %d");
printf('%d %d\n',a,x);
printf("Enter a nine digit number\n");
[n,p,q,r]=mscanf("%3d %4d %3d");
printf('%d %d %d\n',p,q,r);
printf("Enter two three digit numbers\n");
[n,x,y]=mscanf("%d %d");
printf('%d %d \n',x,y);
|
4d71636eb45296c336c69a7dcb5e2a3e44371452 | b45c63b6a8062e3a8b11a3e1b678fdfba51f7181 | /chipsSequenciais/CHIPSIPO16.tst | fa9e768a49171d2361b90a588b2307856887bf58 | [] | no_license | lpsoares/Elementos-de-Sistemas-2016 | 96a14ce596eacf7bef58a714f495fffaba16d6d7 | 28861e56b893966bc59c184b5a5947910dce7739 | refs/heads/master | 2021-01-21T14:17:22.774044 | 2016-06-21T20:31:26 | 2016-06-21T20:31:26 | 49,151,636 | 0 | 0 | null | 2016-06-21T20:31:26 | 2016-01-06T17:51:38 | Assembly | UTF-8 | Scilab | false | false | 1,006 | tst | CHIPSIPO16.tst | // This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: projects/03/a/Register.tst
load CHIPSIPO16.hdl,
output-file CHIPSIPO16.out,
compare-to CHIPSIPO16.cmp,
output-list time%S1.4.1 in%D2.1.2 load%B2.1.2 out%B1.16.1;
set in 1,
set load 0,
tick,
tock,
set in 1,
set load 0,
tick,
tock,
set in 0,
set load 0,
tick,
tock,
set in 1,
set load 0,
tick,
tock,
set in 0,
set load 0,
tick,
tock,
set in 1,
set load 0,
tick,
tock,
set in 0,
set load 0,
tick,
tock,
set in 0,
set load 0,
tick,
tock,
set in 0,
set load 0,
tick,
tock,
set in 0,
set load 0,
tick,
tock,
set in 0,
set load 0,
tick,
tock,
set in 0,
set load 0,
tick,
tock,
set in 0,
set load 0,
tick,
tock,
set in 0,
set load 0,
tick,
tock,
set in 1,
set load 0,
tick,
tock,
set in 1,
set load 0,
tick,
tock,
set in 1,
set load 1,
tick,
tock,
output; |
2a0aa8632e9e251e524868ce0362aaf7e7677e65 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4/examples/addinter-examples/ex3f.sce | 643c7e8b41ad674bf574dc19b1457d9ced9f6544 | [
"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 | 643 | sce | ex3f.sce | // Copyright INRIA
scifuncs=['funcf1','funcf2','funcf3','funcf4']; //Scilab functions
files=G_make(['/tmp/ex3fi.o','/tmp/ex3f.o'],'ex3f.dll');
addinter(strcat(files,' '),'testfentry3',scifuncs);
//matrix (double) created by C function
x1=funcf1();
if norm(x1-matrix((1:5*3),3,5)) > %eps then pause,end
//matrix (int) created by C function
x2=funcf2();
if norm(x2-matrix((1:5*3),3,5)) > %eps then pause,end
//Character string created by C function
x3=funcf3();
if x3<>"Scilab is ..." then pause,end
// all together
[y1,y2,y3]=funcf4();
if y1<>x3 then pause,end
if norm(y2-x2) > %eps then pause,end
if norm(y3-x1) > %eps then pause,end
|
9296a40bb5954c0dd3282f2569cbf3094e1afe6d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1991/CH2/EX2.21/21.sce | c1c63565ef883fc25007d27bcd5d9d381205e3a5 | [] | 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 | 194 | sce | 21.sce | clc
clear
//input
v=0.6//speed
m=0.3//mass
//calculation
e=0.75*m*v*v//total kinetic energy is kinetic energy+moment of inertia
//output
printf("the total kinetic energy is %3.3f J",e)
|
3588e2576ebde31a99b7919add14397e67c71dc8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /260/CH14/EX14.8/14_8.sce | db54e53227333171b2d6beb2de4c800bff6427d6 | [] | 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 | 323 | sce | 14_8.sce | //Eg-14.8
//pg-596
clear
clc
close()
printf('The general solution is of the form \n y(x) = A*sin(ax)+B*cos(ax)\n\nUsing the BC : at x = 0, y = 0 ; we get B = 0.\nUsing the other BC : at x = 1 y = 0 \n => sin(ax) = 0 which is valid for a = n*pie for n = 1,2,3,..\nThe eigen values are n*pie for n = 1,2,3,...\n') |
4614588f5be1f78d58e6ed3a7343e811f93432bb | 449d555969bfd7befe906877abab098c6e63a0e8 | /2384/CH1/EX1.2/ex1_2.sce | 3aabf89ec97efceab2903b659c617ee18e84a833 | [] | 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 | ex1_2.sce | // Exa 1.2
clc;
clear;
close;
format('v',5)
// Given data
V = 100;// in V
I3= 10;// in A
R1 = 10;// in ohm
R2 = 5;// in ohm
// I1 = (V - V_A)/R1
// I2 = (V_A-0)/R2
// Using KCL at note A, I1-I2+I3=0 or
V_A= (R1*R2)/(R1+R2)*(I3+V/R1);// in V
I1 = (V - V_A)/R1;// in A
I2 = (V_A-0)/R2;// in A
disp(I1,"The current through 10 ohm resistor in A is");
disp(I2,"The current through 5 ohm resistor in A is");
disp(I3,"The current through 20 ohm resistor in A is");
|
0f6eea71030bd186b47a8f9af54f5c4ef4a0b5ad | 449d555969bfd7befe906877abab098c6e63a0e8 | /2126/CH8/EX8.1.39/8_1_39.sce | 5eaf14eadfc326ea4630c6d762107f11f8b35075 | [] | 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 | 324 | sce | 8_1_39.sce | clc
clear
//Input data
v1=8 //Intial volume in litres
P1=0.7 //Intial pressure in MPa
v2=7.8 //Final volume in litres
P2=2.7 //Final pressure in MPa
//Calculation
k=(P2-P1)/(log(v1/v2)) //Bulk modulus of elasticity of a liquid in MPa
//Output
printf('Bulk modulus of elasticity of a liquid is %3.3f MPa',k)
|
b6f4a4b5fe275e0a60fe232cd1feac11be21d3ea | 449d555969bfd7befe906877abab098c6e63a0e8 | /1238/CH2/EX2.31.b/31_b.sce | 4ae6ccf26e4bcd9349534469c67e8c46f73ae50c | [] | 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 | 439 | sce | 31_b.sce | //conversion to canonical POS//
//example 31.b//
clc
//clears the command window//
clear
//clears//
//conversion to canonical POS//
disp('given Y=AB+A''B''+AC+A''C''')
disp('we use the complement of the previous example')
disp('the entries will be at 3,4 i.e. 011,100 positions')
disp('Y=A''BC+AB''C''')
disp('Y=(A''BC.AB''C'')''')
//de morgan's theorem//
disp('Y=(A+B''+C'').(A''+B+C)')
disp('the required POS expression')
|
07a7fcbdd27099ae63647777bffd3c8e4bb74912 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.20_6.tst | e4c27bc3b77546d3a651dad49691cb011efedf88 | [] | 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 | 513,244 | tst | 5.20_6.tst | 20 18:1 290:1 1226:1 1402:1 1407:1 1420:1 1563:1 1608:1 1973:1 2163:1 2285:1 2296:1 2533:1 2767:1 3214:1 4211:1 4958:1 5332:2 5444:1 5492:1 5619:1 5720:1 5745:2 5800:1 5864:2 6089:1 6379:1 6772:2 6949:1 6977:1 7097:1 7307:1 8128:1 8457:1 8490:1 8502:1 8554:1 8721:1 9019:1 9102:1 9258:1 9285:1 9408:1 9698:1 9763:1 9798:1 9931:1 9960:1 10215:1 10222:1 10474:1 11218:1 11548:2 11606:1 12103:1 12124:1 12192:1 12445:2 12545:2 12739:1 12753:1 12769:1 13042:1 13121:2 13216:1 13247:1 13251:1 14280:1 14714:1 14897:1 14996:1 15117:1 15561:1 15910:1 15961:1 16298:1 16549:1 17046:1 17184:1 17473:1 17549:1 17562:1 17641:1 18225:1 18537:1 18913:1 19068:1 19212:1 19292:1 19443:1 19774:1 19981:1 20196:53 20347:1 20832:1 20955:1 21434:1 21827:1 21894:1 21937:1 22194:1 22564:1 22590:1 22643:1 22803:1 23219:1 23274:1 24161:1 24357:1 24375:1 24610:1 24616:1 24672:1 25298:2 25346:1 25359:1 25372:1 25469:1 25817:1 26071:1 26160:1 26398:1 26470:1 26487:1 26535:1 26607:1 26631:1 28154:1 28308:1 28511:1 28644:1 28867:1 29509:1 29706:1 29718:1 30419:1 30459:1 30479:1 30764:1 30996:1 31890:1
20 18:1 30:1 78:1 253:1 290:1 489:1 596:1 704:1 1226:1 1402:1 1407:1 1420:1 1563:1 1576:1 1608:1 1651:2 1668:1 1678:1 1725:1 1729:1 1741:1 1877:1 1968:1 1973:1 2127:1 2163:1 2245:1 2285:1 2296:1 2514:1 2533:1 2535:1 2542:1 2546:1 2554:1 2767:1 2970:1 3012:1 3128:1 3204:1 3214:2 3422:2 3598:1 3660:1 3970:1 4009:1 4207:1 4211:1 4791:1 4958:1 5332:3 5444:1 5492:1 5619:1 5706:1 5720:1 5745:2 5800:2 5864:2 6057:1 6089:1 6379:1 6476:1 6631:1 6772:2 6949:1 6966:1 6977:1 7097:1 7307:1 7333:1 7713:1 7826:1 7951:1 8013:1 8128:1 8276:1 8457:6 8487:1 8490:2 8502:1 8554:1 8721:1 8765:1 8787:1 8907:1 9019:2 9102:1 9258:1 9285:1 9408:1 9590:1 9698:1 9751:1 9763:1 9772:1 9798:1 9876:1 9931:1 9936:1 9960:1 9974:1 10190:1 10193:1 10215:1 10222:1 10474:1 10568:1 10775:1 11218:1 11548:2 11606:1 11625:1 11744:1 11746:1 11849:1 11877:1 11961:1 12103:1 12124:1 12160:1 12192:1 12221:1 12268:1 12445:4 12545:2 12640:1 12721:1 12739:1 12753:1 12769:2 12917:1 13025:1 13042:2 13121:2 13143:1 13216:1 13247:1 13251:1 13260:1 13281:1 13364:1 13455:1 13858:1 14280:2 14307:1 14345:1 14714:1 14897:1 14996:1 15091:1 15117:1 15308:1 15561:1 15623:1 15821:2 15872:1 15910:1 15961:1 16298:1 16358:1 16515:1 16545:2 16549:1 16822:1 17030:1 17046:1 17184:1 17421:1 17473:1 17549:1 17562:1 17593:1 17602:1 17641:1 17646:1 18107:1 18115:1 18202:1 18225:1 18228:1 18243:1 18430:1 18492:1 18537:1 18566:1 18709:1 18913:1 18918:1 19043:1 19068:2 19212:1 19249:1 19292:1 19357:1 19443:1 19463:1 19549:1 19601:1 19711:1 19774:1 19787:1 19852:1 19981:2 20196:134 20218:2 20347:2 20832:1 20897:1 20955:1 21429:1 21434:1 21491:1 21634:1 21742:1 21814:1 21819:1 21827:1 21831:2 21856:1 21894:1 21937:2 22109:1 22194:1 22225:1 22242:1 22319:1 22550:1 22564:1 22590:1 22614:1 22626:1 22643:1 22803:2 22888:1 23092:1 23146:1 23219:1 23234:1 23258:1 23274:1 23342:1 23377:1 23396:1 23558:1 23796:1 24095:1 24161:1 24357:2 24375:1 24452:1 24539:1 24563:1 24610:1 24616:1 24672:1 24969:1 25274:1 25298:2 25346:1 25359:1 25372:1 25417:1 25438:1 25469:1 25817:1 26071:1 26136:1 26160:1 26172:1 26398:1 26399:1 26405:1 26470:1 26487:1 26496:1 26535:2 26607:1 26631:2 26870:1 26991:1 27043:1 27305:1 27999:1 28076:1 28154:1 28235:1 28308:2 28391:1 28511:1 28644:1 28703:1 28867:1 29509:1 29576:1 29706:1 29718:1 29789:1 30045:1 30240:2 30319:2 30419:1 30459:1 30479:1 30675:2 30747:1 30764:2 30996:1 31043:1 31268:1 31342:1 31496:1 31801:1 31890:1 31977:1
20 18:1 30:1 78:1 158:1 253:1 274:2 278:1 290:1 355:1 404:1 489:1 596:1 704:1 770:1 1034:1 1064:1 1067:1 1135:1 1136:1 1226:1 1255:1 1402:1 1407:1 1420:1 1491:1 1563:1 1576:1 1608:1 1651:2 1662:1 1668:1 1678:1 1725:2 1729:1 1741:1 1877:1 1968:1 1973:1 2116:1 2127:1 2163:1 2245:2 2285:2 2296:1 2450:1 2451:1 2475:1 2514:2 2533:1 2535:1 2542:1 2546:1 2554:1 2767:1 2875:1 2898:1 2970:1 3012:1 3128:1 3169:1 3184:1 3204:1 3214:3 3347:2 3422:2 3598:1 3607:1 3660:2 3901:1 3966:1 3970:1 4009:1 4207:1 4211:1 4346:1 4392:1 4791:1 4872:1 4958:1 5055:1 5078:1 5136:2 5245:1 5247:1 5332:4 5444:1 5492:1 5619:1 5706:1 5720:1 5745:2 5800:2 5864:2 5962:1 6039:2 6057:1 6089:1 6117:1 6158:1 6351:1 6379:1 6476:1 6631:1 6675:1 6772:2 6949:1 6966:1 6977:1 6982:1 7034:1 7097:1 7307:1 7333:1 7399:1 7615:1 7634:1 7657:1 7713:1 7799:1 7826:1 7937:1 7951:1 8013:1 8051:1 8128:2 8207:1 8276:1 8391:1 8410:1 8457:7 8487:1 8490:3 8502:1 8554:1 8721:1 8765:1 8787:2 8797:1 8907:1 9019:2 9102:1 9205:1 9258:1 9285:2 9399:2 9401:1 9408:1 9590:1 9698:1 9751:1 9763:1 9772:1 9798:1 9876:1 9931:1 9936:1 9960:1 9974:1 10190:1 10193:1 10215:1 10222:1 10461:2 10474:1 10568:1 10700:1 10732:1 10775:1 10856:1 10962:1 10978:1 11124:1 11218:1 11425:1 11536:1 11548:2 11587:1 11606:1 11625:1 11642:1 11744:2 11746:1 11849:1 11877:1 11958:2 11961:1 12094:1 12103:1 12124:1 12160:1 12192:1 12221:1 12268:1 12445:4 12545:2 12640:1 12721:1 12739:1 12753:1 12758:1 12769:2 12823:1 12917:1 12920:2 12999:1 13025:1 13042:2 13093:1 13121:2 13143:1 13216:1 13247:1 13251:1 13260:1 13281:1 13364:1 13455:1 13539:1 13858:1 13899:1 13984:1 14178:1 14257:1 14280:2 14307:1 14345:1 14399:1 14468:1 14567:1 14590:1 14709:1 14714:1 14897:1 14996:1 15037:1 15067:2 15091:1 15117:1 15308:1 15446:1 15552:1 15561:1 15615:1 15623:1 15821:2 15835:1 15872:1 15910:1 15926:2 15961:1 16151:1 16193:1 16298:1 16358:2 16515:1 16545:2 16547:1 16549:1 16771:2 16822:1 17030:1 17046:1 17071:1 17184:1 17215:1 17321:1 17360:1 17382:1 17421:1 17473:1 17549:1 17562:1 17593:1 17602:1 17632:1 17641:1 17646:1 17695:1 18107:1 18115:1 18130:1 18202:1 18225:2 18228:1 18243:1 18347:1 18430:1 18492:1 18537:1 18566:1 18594:1 18694:1 18709:1 18913:1 18918:1 19043:1 19068:2 19212:1 19249:1 19292:1 19351:2 19357:1 19443:1 19450:1 19463:1 19549:1 19595:1 19601:1 19711:1 19774:1 19787:1 19852:1 19981:2 20067:1 20196:252 20218:2 20339:1 20347:2 20757:1 20832:1 20897:1 20955:2 20978:1 21229:1 21429:1 21434:2 21491:1 21548:1 21560:1 21634:1 21742:1 21814:1 21819:1 21827:1 21831:2 21852:1 21856:1 21894:1 21937:3 22109:1 22112:1 22194:1 22225:1 22242:1 22319:1 22485:1 22550:1 22554:1 22564:1 22590:1 22614:1 22626:1 22643:1 22803:2 22822:1 22877:1 22888:1 22892:1 23092:1 23146:1 23219:1 23234:1 23258:1 23274:1 23342:1 23377:1 23396:1 23436:1 23558:1 23617:1 23796:1 23916:1 24068:1 24095:1 24161:1 24311:1 24357:2 24375:1 24452:1 24534:1 24539:1 24563:1 24594:1 24610:2 24616:1 24619:1 24672:1 24819:1 24969:1 25005:1 25274:1 25298:2 25346:1 25359:1 25372:1 25417:1 25438:1 25469:1 25559:1 25817:1 26071:1 26136:1 26142:1 26151:1 26160:1 26172:2 26398:1 26399:1 26405:1 26470:1 26487:1 26496:1 26535:2 26607:1 26631:2 26645:1 26861:1 26870:1 26916:1 26991:1 27043:1 27044:1 27242:1 27290:1 27305:1 27507:1 27999:1 28076:1 28105:1 28154:1 28180:1 28235:1 28308:2 28326:1 28391:1 28429:1 28511:1 28602:1 28644:1 28703:1 28867:1 29315:1 29390:1 29411:2 29509:1 29576:1 29706:1 29718:1 29789:1 30045:1 30240:2 30319:2 30419:1 30450:1 30459:1 30479:4 30537:1 30675:2 30711:1 30747:1 30764:2 30805:1 30933:1 30996:1 31041:1 31043:1 31268:1 31272:2 31342:1 31496:1 31801:1 31873:1 31890:1 31934:1 31962:1 31977:1
20 18:1 30:1 78:1 158:1 253:1 274:2 278:1 290:1 355:1 404:1 489:1 596:1 623:1 704:1 770:1 1034:2 1064:1 1067:1 1135:1 1136:1 1226:1 1255:1 1305:1 1402:1 1407:1 1420:1 1491:1 1533:1 1563:1 1576:1 1608:1 1651:2 1662:1 1668:1 1678:1 1691:2 1725:3 1729:1 1741:1 1811:2 1877:1 1968:1 1973:1 2116:2 2127:1 2145:1 2163:1 2245:2 2285:2 2296:1 2354:1 2435:1 2450:1 2451:1 2475:1 2514:2 2533:1 2535:1 2542:2 2546:1 2549:1 2554:1 2645:1 2723:1 2767:1 2801:1 2875:1 2898:1 2914:1 2948:1 2970:1 3012:1 3128:1 3159:1 3168:1 3169:1 3184:1 3204:1 3214:3 3347:2 3422:2 3598:1 3607:1 3660:2 3901:1 3966:1 3970:1 4009:1 4207:1 4211:1 4346:1 4391:1 4392:1 4791:1 4794:1 4872:1 4958:1 5055:1 5078:1 5136:2 5196:1 5245:1 5247:1 5332:4 5444:1 5466:1 5492:1 5619:1 5706:1 5720:1 5745:2 5800:2 5864:2 5962:1 6039:2 6057:1 6089:1 6101:1 6117:1 6158:1 6351:1 6379:1 6476:1 6631:1 6675:1 6772:2 6949:1 6966:1 6977:1 6982:1 7034:1 7097:1 7307:1 7333:1 7399:1 7433:1 7615:1 7634:1 7657:1 7713:1 7799:1 7826:1 7937:1 7940:1 7941:1 7951:1 8013:1 8019:1 8051:1 8128:2 8207:1 8276:1 8391:2 8410:1 8457:9 8487:2 8490:3 8502:1 8541:1 8554:1 8721:1 8765:1 8787:2 8797:1 8803:1 8907:1 8940:2 9019:4 9075:1 9102:1 9205:1 9258:2 9285:2 9399:2 9401:1 9408:1 9590:1 9682:1 9698:1 9751:1 9763:1 9772:1 9798:1 9876:1 9931:2 9936:1 9944:1 9960:1 9974:1 10114:1 10190:1 10193:1 10215:1 10222:1 10431:1 10461:2 10474:1 10568:1 10700:1 10732:1 10743:1 10775:1 10856:1 10962:1 10978:1 11124:1 11218:1 11425:1 11536:1 11548:2 11587:1 11606:1 11625:1 11642:1 11714:1 11738:1 11744:2 11746:1 11818:1 11849:1 11877:1 11958:2 11961:1 12094:1 12103:1 12124:1 12160:1 12192:1 12221:1 12268:1 12445:4 12545:2 12640:1 12721:1 12739:1 12753:1 12758:1 12769:2 12823:1 12917:1 12920:4 12999:1 13025:1 13042:2 13093:1 13121:2 13143:1 13216:1 13247:1 13251:1 13260:1 13281:1 13364:1 13455:1 13539:2 13813:1 13858:1 13899:2 13984:1 14178:1 14257:1 14280:2 14303:2 14307:1 14345:1 14399:1 14446:1 14468:2 14567:1 14590:1 14709:1 14714:1 14871:1 14897:1 14983:1 14995:1 14996:1 15037:1 15067:2 15091:1 15117:1 15171:1 15308:1 15387:1 15446:1 15455:1 15552:1 15561:1 15615:1 15623:1 15647:1 15821:2 15835:1 15872:1 15892:1 15910:1 15926:2 15961:1 16048:1 16151:2 16193:1 16298:1 16358:2 16515:1 16545:2 16547:1 16549:1 16621:1 16771:3 16811:1 16822:1 17030:1 17046:1 17071:1 17079:1 17127:1 17184:1 17215:1 17321:1 17360:1 17382:1 17421:1 17473:1 17549:1 17562:1 17593:1 17602:1 17632:1 17633:1 17641:1 17646:1 17662:1 17695:1 17731:1 17932:1 17987:1 18068:1 18107:1 18115:1 18130:1 18202:1 18225:2 18228:1 18243:1 18260:1 18347:1 18352:2 18430:1 18492:1 18537:1 18566:1 18594:1 18694:1 18709:1 18913:1 18918:1 19043:1 19068:2 19122:1 19212:1 19249:1 19292:1 19351:2 19357:1 19443:1 19450:1 19463:1 19518:1 19530:1 19549:1 19595:1 19601:1 19711:1 19774:1 19787:1 19852:1 19981:2 19992:1 20067:1 20196:320 20200:1 20218:2 20339:1 20347:2 20444:1 20696:1 20757:1 20832:1 20858:1 20897:1 20955:2 20978:1 21056:1 21167:1 21229:1 21429:1 21434:2 21475:1 21491:1 21500:1 21548:1 21560:1 21634:1 21742:1 21814:1 21819:1 21827:1 21831:2 21852:1 21856:2 21894:1 21937:3 22056:1 22098:1 22109:1 22112:1 22162:1 22194:1 22225:1 22242:1 22319:1 22353:1 22485:1 22550:1 22554:1 22564:1 22590:1 22614:1 22626:1 22643:1 22796:1 22803:2 22822:1 22877:1 22888:1 22891:1 22892:1 22972:1 23092:1 23136:1 23146:1 23219:1 23234:1 23258:1 23274:1 23342:1 23360:1 23377:1 23396:1 23436:1 23558:1 23617:1 23676:1 23687:1 23796:1 23916:1 24068:1 24095:1 24157:1 24161:1 24311:1 24357:2 24375:1 24414:1 24452:1 24534:1 24539:1 24563:1 24594:1 24610:2 24612:1 24616:1 24619:1 24640:1 24672:1 24819:1 24913:1 24969:1 25005:1 25274:1 25298:2 25346:1 25359:1 25372:1 25417:1 25431:1 25438:1 25469:1 25534:1 25559:1 25606:1 25817:1 25910:1 25996:1 26071:1 26136:1 26142:1 26151:1 26160:1 26170:1 26172:3 26197:1 26236:1 26398:1 26399:1 26405:1 26470:1 26483:1 26487:1 26496:1 26510:1 26518:1 26535:2 26607:1 26631:2 26645:1 26861:1 26870:1 26916:1 26991:1 27000:1 27043:1 27044:1 27242:1 27290:1 27305:1 27507:1 27999:1 28076:1 28105:1 28154:1 28159:1 28180:1 28235:1 28308:2 28326:1 28391:1 28429:1 28511:1 28602:1 28644:1 28680:1 28703:1 28867:1 29315:1 29390:1 29411:2 29509:1 29576:1 29596:1 29658:1 29706:1 29718:1 29789:1 29816:1 30045:1 30240:2 30319:2 30419:1 30445:1 30450:1 30459:1 30479:4 30537:1 30623:1 30675:2 30711:2 30747:1 30764:2 30805:1 30933:1 30996:1 31041:1 31043:1 31268:1 31272:3 31342:1 31495:1 31496:1 31506:1 31781:1 31801:1 31815:1 31873:1 31890:1 31934:1 31962:1 31977:1
20 18:1 30:1 78:1 158:1 253:1 261:1 274:2 278:1 290:1 355:1 404:1 489:1 596:1 623:1 704:1 770:1 1034:2 1064:1 1067:1 1135:1 1136:1 1226:1 1255:1 1305:1 1402:1 1407:1 1420:1 1491:1 1533:1 1563:1 1576:1 1608:1 1651:2 1662:1 1668:1 1678:1 1691:2 1725:3 1729:1 1741:1 1811:3 1877:1 1967:1 1968:2 1973:1 2116:2 2127:1 2145:1 2163:1 2245:3 2285:2 2296:1 2354:1 2435:2 2450:1 2451:1 2475:1 2514:3 2533:1 2535:1 2542:2 2546:1 2549:1 2554:1 2645:1 2723:1 2767:1 2801:1 2875:1 2898:1 2914:1 2948:1 2970:1 3012:1 3128:1 3159:1 3168:2 3169:1 3184:1 3204:1 3214:3 3347:2 3422:2 3598:1 3607:1 3660:2 3901:1 3966:1 3970:1 4009:1 4207:1 4211:1 4346:1 4391:1 4392:1 4791:1 4794:1 4872:1 4958:1 5055:1 5078:1 5136:2 5196:1 5245:1 5247:1 5332:4 5444:1 5466:2 5492:1 5619:1 5706:1 5720:1 5745:2 5800:2 5864:2 5962:1 6039:2 6057:1 6089:1 6101:1 6117:1 6158:1 6351:1 6379:1 6476:1 6631:1 6675:1 6772:2 6874:1 6949:1 6966:1 6977:1 6982:1 7034:1 7097:1 7307:1 7333:1 7345:1 7399:1 7406:1 7433:1 7615:1 7634:1 7657:1 7713:1 7799:2 7813:1 7826:1 7937:1 7940:1 7941:1 7951:1 8013:1 8019:1 8051:1 8128:2 8207:1 8276:1 8391:2 8410:1 8457:10 8487:2 8490:3 8502:1 8541:1 8554:1 8721:1 8765:1 8787:2 8797:1 8803:1 8907:1 8940:3 9019:4 9075:1 9102:1 9205:1 9258:2 9285:2 9399:2 9401:1 9408:1 9590:1 9682:1 9698:1 9751:1 9763:1 9772:1 9798:1 9876:1 9931:2 9936:3 9944:1 9960:1 9974:1 10061:1 10114:1 10190:1 10193:1 10215:1 10222:1 10431:1 10461:2 10474:1 10568:3 10700:1 10732:1 10743:1 10775:1 10856:1 10962:1 10978:1 11116:1 11124:1 11218:1 11425:1 11493:1 11536:1 11548:2 11587:1 11599:1 11606:1 11615:1 11625:1 11642:1 11714:1 11738:1 11744:2 11746:1 11818:1 11829:1 11849:1 11877:1 11958:2 11961:1 12094:1 12103:1 12124:1 12160:3 12192:1 12221:1 12268:1 12445:4 12545:2 12640:1 12721:1 12739:1 12753:1 12758:1 12769:2 12823:1 12917:1 12920:5 12999:1 13025:1 13042:2 13093:1 13121:2 13143:1 13216:1 13247:1 13251:1 13260:1 13281:1 13364:1 13455:1 13539:2 13813:2 13858:1 13899:3 13984:1 14178:1 14257:1 14280:2 14303:3 14307:1 14345:1 14399:1 14446:2 14468:3 14567:1 14590:1 14709:1 14714:1 14871:1 14897:1 14983:2 14995:1 14996:1 15037:1 15067:2 15091:1 15117:1 15171:1 15308:1 15387:1 15446:1 15455:1 15552:1 15561:1 15615:1 15623:1 15647:1 15821:2 15835:1 15872:1 15892:1 15910:1 15926:2 15961:1 16048:1 16151:2 16193:1 16298:1 16358:2 16515:1 16545:2 16547:1 16549:1 16621:1 16771:4 16811:1 16822:1 17030:1 17041:1 17046:1 17071:1 17079:1 17127:1 17184:1 17215:1 17321:1 17360:1 17382:1 17421:1 17473:1 17549:1 17562:1 17593:1 17602:1 17632:1 17633:1 17641:1 17646:1 17662:1 17695:1 17731:1 17932:1 17987:1 18068:1 18107:1 18115:1 18130:1 18202:1 18225:2 18228:1 18243:1 18260:1 18347:1 18352:3 18430:1 18492:1 18537:1 18566:1 18594:1 18597:1 18694:1 18709:1 18727:1 18913:1 18918:1 19043:1 19068:2 19122:1 19212:1 19249:3 19292:1 19351:2 19357:1 19443:2 19450:1 19463:1 19518:2 19530:1 19549:1 19595:1 19601:1 19711:1 19774:1 19787:1 19852:1 19981:2 19992:1 20067:1 20196:335 20200:1 20218:2 20339:1 20347:2 20436:1 20444:1 20449:1 20696:1 20757:1 20832:1 20858:1 20897:1 20955:2 20978:1 21056:1 21130:1 21167:2 21229:1 21429:1 21434:2 21475:1 21491:1 21500:1 21548:1 21560:1 21634:1 21742:1 21755:1 21814:1 21819:1 21827:1 21831:2 21852:1 21856:2 21894:1 21937:3 22056:1 22098:1 22109:1 22112:1 22162:1 22194:1 22225:1 22242:1 22319:1 22353:1 22485:1 22550:1 22554:1 22564:1 22590:1 22614:1 22626:1 22643:1 22666:1 22734:1 22796:2 22803:2 22822:1 22877:1 22888:1 22891:1 22892:1 22972:1 23092:1 23136:1 23146:1 23219:1 23234:1 23258:1 23274:1 23342:1 23360:1 23377:1 23396:1 23436:1 23558:1 23617:1 23676:1 23687:2 23796:1 23916:1 24053:1 24068:1 24095:1 24157:1 24161:1 24244:1 24311:1 24357:2 24375:1 24414:1 24452:1 24534:1 24539:1 24563:1 24594:1 24610:2 24612:1 24616:1 24619:1 24640:1 24672:1 24819:1 24913:1 24969:1 25005:1 25274:1 25276:1 25298:2 25346:1 25359:1 25372:1 25417:1 25431:1 25438:1 25469:1 25534:1 25559:1 25606:1 25817:1 25910:2 25996:1 26071:1 26136:1 26142:1 26151:1 26160:1 26170:1 26172:3 26197:1 26236:1 26398:1 26399:1 26405:1 26409:1 26470:1 26483:1 26487:1 26496:1 26510:1 26518:1 26535:2 26607:1 26631:2 26645:1 26861:1 26870:1 26916:1 26991:3 27000:1 27043:1 27044:1 27242:1 27290:1 27305:2 27507:1 27999:1 28076:1 28105:1 28131:1 28154:1 28159:1 28180:1 28222:1 28235:1 28308:2 28326:1 28391:1 28429:1 28511:1 28602:1 28644:1 28680:1 28703:1 28867:1 29315:1 29390:1 29411:2 29509:1 29576:1 29596:1 29658:1 29684:1 29706:1 29718:1 29789:1 29816:1 30045:3 30240:2 30319:2 30419:1 30445:1 30450:1 30459:1 30479:4 30480:1 30537:1 30623:1 30675:2 30711:2 30747:1 30764:2 30805:1 30933:1 30996:1 31041:1 31043:1 31268:1 31272:4 31342:1 31495:1 31496:1 31506:1 31781:1 31801:1 31815:1 31873:1 31890:1 31896:1 31934:1 31962:1 31977:1
20 18:1 30:1 78:1 158:1 253:1 261:1 274:2 278:1 290:1 355:1 404:1 489:1 536:1 596:1 623:1 704:1 770:1 1025:1 1034:2 1064:1 1067:1 1135:1 1136:1 1226:1 1255:1 1305:1 1402:1 1407:1 1420:1 1491:1 1533:1 1563:1 1576:1 1608:1 1651:2 1662:1 1668:1 1678:1 1691:2 1725:3 1729:1 1741:1 1811:3 1877:1 1967:1 1968:3 1973:1 2116:2 2127:1 2145:1 2163:1 2245:3 2284:1 2285:2 2296:1 2354:1 2433:1 2435:2 2450:1 2451:1 2475:1 2514:3 2533:1 2535:1 2542:2 2546:1 2549:1 2554:1 2629:1 2645:1 2723:1 2767:1 2801:1 2875:1 2898:1 2914:1 2948:1 2970:1 3012:1 3128:1 3159:1 3168:2 3169:1 3184:1 3204:1 3214:4 3347:2 3422:2 3598:1 3607:1 3660:2 3901:1 3966:1 3970:1 4009:1 4059:1 4126:1 4175:1 4207:1 4211:1 4346:1 4391:1 4392:1 4791:1 4794:1 4872:1 4958:1 5055:1 5078:1 5136:2 5196:1 5245:1 5247:1 5332:4 5444:1 5466:2 5492:1 5619:1 5706:1 5720:1 5745:2 5800:2 5864:2 5962:1 6039:2 6057:1 6089:1 6101:1 6117:1 6158:1 6351:1 6379:1 6476:1 6631:1 6675:1 6772:2 6783:1 6874:1 6949:1 6966:1 6977:1 6982:1 7034:1 7097:1 7146:1 7307:1 7333:1 7345:1 7399:1 7406:1 7433:1 7615:1 7634:1 7657:1 7713:1 7799:2 7813:1 7826:1 7937:1 7940:1 7941:1 7951:1 8013:1 8019:1 8051:1 8128:2 8207:1 8276:1 8391:2 8410:1 8457:10 8487:2 8490:4 8502:1 8541:1 8554:1 8721:1 8765:1 8787:2 8797:1 8803:1 8907:1 8940:3 9019:4 9075:1 9102:1 9205:1 9258:2 9285:2 9399:2 9401:1 9408:1 9590:1 9682:1 9698:1 9751:1 9763:1 9772:1 9798:1 9876:1 9931:2 9936:4 9944:1 9960:1 9974:1 10061:1 10114:1 10190:1 10193:1 10215:1 10222:1 10431:1 10461:2 10474:1 10568:4 10700:1 10732:1 10743:1 10775:1 10856:1 10925:1 10962:1 10978:1 11116:1 11124:1 11218:1 11425:1 11493:1 11536:1 11548:2 11587:1 11599:1 11606:1 11615:1 11625:1 11642:1 11714:1 11738:1 11744:2 11746:1 11818:1 11829:1 11849:1 11877:1 11958:2 11961:1 12094:1 12103:1 12124:1 12160:4 12192:1 12221:1 12256:1 12268:1 12445:4 12545:2 12640:1 12721:1 12739:1 12753:1 12758:1 12769:2 12823:1 12917:1 12920:5 12999:1 13025:1 13042:2 13093:1 13121:2 13143:1 13216:1 13247:1 13251:1 13260:1 13281:1 13364:1 13455:1 13539:2 13813:2 13858:1 13899:3 13984:1 14178:1 14257:1 14280:2 14303:3 14307:1 14345:1 14399:1 14446:2 14468:3 14567:1 14590:1 14709:1 14714:1 14871:1 14897:1 14983:2 14995:1 14996:1 15037:1 15067:2 15091:1 15117:1 15171:1 15308:1 15387:1 15446:1 15455:1 15552:1 15561:1 15615:1 15623:1 15647:1 15821:2 15835:1 15872:1 15892:1 15910:1 15926:2 15961:1 16048:1 16151:2 16193:1 16239:1 16298:1 16358:2 16515:1 16545:2 16547:1 16549:1 16621:1 16711:1 16771:5 16811:1 16822:1 17030:1 17041:1 17046:1 17071:1 17079:1 17127:1 17184:1 17215:1 17321:1 17360:1 17382:1 17421:1 17473:1 17507:1 17549:1 17562:1 17593:1 17602:1 17632:1 17633:1 17641:1 17646:1 17662:1 17695:1 17731:1 17932:1 17987:1 18068:1 18107:1 18115:1 18130:1 18202:1 18225:2 18228:2 18243:1 18260:1 18343:1 18347:1 18352:3 18430:1 18492:1 18537:1 18566:1 18594:1 18597:1 18694:1 18709:1 18727:1 18913:1 18918:1 19043:1 19068:2 19122:1 19212:1 19249:4 19292:1 19351:2 19357:1 19443:2 19450:1 19463:1 19518:2 19530:1 19549:1 19595:1 19601:1 19711:1 19774:1 19787:1 19852:1 19981:2 19992:1 20067:1 20196:428 20200:1 20218:2 20339:1 20347:2 20436:1 20444:1 20449:1 20696:1 20757:1 20781:1 20832:1 20858:1 20897:1 20955:2 20978:1 21056:1 21130:1 21167:2 21229:1 21429:1 21434:2 21475:1 21491:2 21500:1 21541:1 21548:1 21560:1 21623:1 21634:1 21742:1 21755:1 21814:1 21819:1 21827:1 21831:2 21852:1 21856:2 21894:1 21937:4 22056:1 22098:1 22109:1 22112:1 22162:1 22194:1 22225:1 22242:1 22319:1 22353:1 22485:1 22550:1 22554:1 22564:1 22590:2 22614:1 22626:1 22643:1 22666:1 22734:1 22796:2 22803:2 22822:1 22877:1 22888:1 22891:1 22892:1 22972:1 23092:1 23136:1 23146:1 23219:1 23234:1 23258:1 23274:1 23342:1 23360:1 23377:1 23396:1 23436:1 23558:1 23617:1 23676:1 23687:2 23796:1 23901:1 23916:1 24053:1 24068:1 24095:1 24157:1 24161:1 24244:1 24311:1 24357:2 24375:1 24414:1 24452:1 24534:1 24539:1 24563:1 24594:1 24610:2 24612:1 24616:1 24619:1 24640:1 24652:1 24672:1 24714:1 24819:1 24883:1 24913:1 24969:1 24981:1 25005:1 25021:1 25274:1 25276:1 25298:2 25346:1 25359:1 25372:1 25417:1 25431:1 25438:1 25465:1 25469:1 25534:1 25559:1 25606:1 25817:1 25910:2 25996:1 26071:1 26136:1 26142:1 26151:1 26160:1 26170:1 26172:3 26197:1 26236:1 26398:1 26399:1 26405:1 26409:1 26470:1 26483:1 26487:1 26496:1 26510:1 26518:1 26535:2 26576:1 26607:1 26631:2 26645:1 26861:1 26870:1 26916:1 26991:4 27000:1 27043:1 27044:1 27242:1 27290:1 27305:2 27507:1 27599:1 27600:1 27999:1 28076:1 28091:1 28105:1 28131:1 28154:1 28159:1 28180:1 28222:1 28235:1 28308:2 28326:1 28391:1 28429:1 28511:1 28602:1 28644:1 28680:1 28703:1 28867:1 29315:1 29390:1 29411:2 29482:1 29509:1 29576:1 29596:1 29658:1 29684:1 29706:1 29718:1 29789:1 29816:1 29979:1 30044:1 30045:4 30240:2 30319:2 30419:1 30445:1 30450:1 30459:1 30479:4 30480:1 30537:1 30623:1 30675:2 30711:2 30747:1 30764:2 30805:1 30846:1 30903:1 30933:1 30996:1 31041:1 31043:1 31268:1 31272:4 31306:1 31342:1 31495:1 31496:1 31506:1 31781:1 31801:1 31815:1 31873:1 31890:1 31896:1 31934:1 31962:1 31977:1
20 18:1 30:1 78:1 111:1 158:1 253:1 261:1 274:2 278:1 290:1 355:1 404:1 489:1 536:1 596:1 623:1 704:1 770:1 1025:1 1034:2 1057:1 1064:1 1067:1 1095:1 1135:1 1136:1 1226:1 1255:1 1305:1 1341:1 1402:1 1407:1 1420:1 1491:1 1533:1 1563:1 1576:1 1608:1 1651:2 1662:1 1668:1 1678:1 1691:2 1725:3 1729:1 1741:1 1811:4 1877:1 1967:1 1968:3 1973:1 2116:2 2127:1 2145:1 2163:1 2245:3 2284:1 2285:2 2296:1 2354:1 2403:1 2433:1 2435:3 2450:1 2451:1 2475:1 2514:3 2533:1 2535:1 2542:2 2546:1 2549:1 2554:1 2629:1 2645:1 2723:1 2767:1 2801:1 2839:1 2875:1 2898:1 2914:1 2948:1 2970:1 3012:1 3128:1 3159:1 3168:3 3169:1 3171:1 3184:1 3204:1 3214:4 3347:2 3422:2 3598:1 3607:1 3660:2 3901:1 3966:1 3970:1 4009:1 4059:1 4126:1 4175:1 4207:1 4211:1 4346:1 4391:1 4392:1 4472:1 4791:1 4794:1 4838:1 4872:1 4958:1 5055:1 5078:1 5131:1 5136:2 5186:1 5196:1 5245:1 5247:1 5332:4 5444:1 5448:1 5466:2 5492:1 5607:1 5619:1 5706:1 5720:1 5745:2 5800:2 5864:2 5931:1 5962:1 6039:2 6057:1 6089:1 6101:1 6117:1 6127:1 6158:1 6244:1 6319:1 6351:1 6379:1 6476:1 6477:1 6631:1 6670:1 6675:1 6702:1 6772:2 6783:1 6874:1 6949:2 6966:1 6977:1 6982:1 7034:1 7097:1 7146:1 7307:1 7333:1 7345:1 7399:1 7406:1 7433:1 7615:1 7634:1 7657:1 7713:1 7799:2 7813:1 7826:1 7937:1 7940:1 7941:1 7951:1 8013:1 8019:1 8051:1 8088:1 8124:1 8128:2 8154:1 8207:1 8276:1 8342:1 8391:3 8410:1 8457:10 8487:2 8490:4 8502:1 8541:1 8554:1 8721:1 8765:1 8787:2 8797:1 8803:1 8816:1 8907:1 8940:4 9019:5 9075:1 9102:1 9205:1 9258:2 9285:2 9296:1 9399:2 9401:1 9408:1 9559:1 9590:1 9682:1 9698:1 9707:1 9751:1 9763:1 9772:1 9798:1 9876:1 9931:2 9936:4 9944:1 9960:1 9974:1 10061:1 10114:1 10190:1 10193:1 10215:1 10222:1 10431:1 10461:2 10474:1 10568:4 10583:1 10649:1 10700:1 10732:1 10743:1 10775:1 10781:1 10856:1 10878:1 10925:1 10962:1 10978:1 11116:1 11124:1 11218:1 11425:1 11493:1 11536:1 11548:2 11587:1 11599:1 11606:1 11615:1 11625:1 11642:1 11714:1 11738:1 11744:2 11746:1 11818:1 11829:1 11849:1 11877:1 11926:1 11958:2 11961:1 12094:1 12103:1 12124:1 12160:4 12192:1 12221:1 12256:1 12268:1 12445:4 12545:2 12640:1 12721:1 12739:1 12753:1 12758:1 12769:2 12823:1 12917:1 12920:6 12999:1 13025:1 13042:2 13093:1 13121:2 13143:1 13216:1 13247:1 13251:1 13260:1 13281:1 13304:1 13364:1 13455:1 13539:2 13813:3 13858:1 13899:4 13960:1 13984:1 14178:1 14257:1 14280:2 14303:4 14307:1 14345:1 14399:1 14446:3 14468:5 14567:1 14590:1 14709:1 14714:1 14871:1 14897:1 14983:4 14995:1 14996:1 15037:1 15067:2 15091:1 15117:1 15171:1 15196:1 15308:1 15387:1 15446:1 15455:1 15552:1 15561:1 15615:1 15623:1 15647:1 15654:2 15804:1 15821:2 15835:1 15872:1 15892:1 15910:1 15926:2 15941:1 15954:1 15961:1 16048:1 16151:2 16193:1 16239:1 16298:1 16358:2 16506:2 16515:1 16545:2 16547:1 16549:1 16621:1 16711:1 16768:1 16771:6 16811:1 16822:1 16876:1 17030:1 17041:1 17046:1 17071:1 17079:1 17127:1 17184:1 17215:1 17321:1 17360:1 17382:1 17421:1 17473:1 17507:1 17549:1 17562:1 17593:1 17602:1 17632:1 17633:2 17641:1 17646:1 17662:1 17695:1 17731:1 17932:1 17987:1 18068:1 18107:1 18115:1 18130:1 18202:1 18225:2 18228:2 18243:1 18260:1 18277:1 18343:1 18347:1 18352:4 18430:1 18492:1 18498:1 18537:1 18566:1 18583:1 18594:1 18597:1 18650:1 18694:1 18709:1 18727:1 18913:1 18918:1 19043:1 19068:2 19122:1 19212:1 19249:4 19292:1 19319:1 19351:2 19357:1 19443:2 19450:1 19463:1 19494:1 19518:3 19530:1 19549:1 19595:1 19601:1 19711:1 19774:1 19787:1 19852:1 19946:1 19981:2 19990:1 19992:2 20067:1 20196:500 20200:1 20218:2 20328:1 20339:1 20347:2 20436:1 20444:1 20449:1 20453:1 20696:1 20757:1 20781:1 20832:1 20839:1 20858:1 20897:1 20917:1 20955:2 20978:1 21056:1 21067:1 21130:1 21158:1 21167:3 21229:1 21406:1 21429:1 21434:2 21475:1 21491:2 21500:1 21541:1 21548:1 21560:1 21623:1 21634:1 21742:1 21755:1 21763:1 21814:1 21819:1 21827:1 21831:2 21852:1 21856:2 21894:1 21937:4 22056:1 22098:1 22109:1 22112:1 22162:1 22194:1 22225:1 22242:1 22319:1 22353:1 22485:1 22550:1 22554:1 22564:1 22581:1 22590:2 22614:1 22626:1 22643:1 22666:1 22734:1 22796:4 22803:2 22822:1 22877:1 22888:1 22891:1 22892:1 22960:1 22972:1 23092:1 23136:1 23146:1 23219:1 23234:1 23258:1 23274:1 23342:1 23360:1 23377:1 23396:1 23436:1 23442:1 23558:1 23617:1 23676:1 23687:2 23796:1 23901:1 23905:1 23916:1 24053:1 24068:1 24079:1 24095:1 24126:1 24157:1 24161:1 24182:1 24244:1 24311:1 24357:2 24375:1 24414:1 24452:1 24534:1 24539:1 24563:1 24594:1 24610:2 24612:1 24616:1 24619:1 24640:1 24652:2 24672:1 24714:1 24819:1 24883:1 24913:1 24969:1 24981:1 25005:1 25021:1 25247:1 25274:1 25276:1 25298:2 25346:1 25359:1 25372:1 25417:1 25431:1 25438:1 25465:1 25469:1 25534:1 25559:1 25606:1 25817:1 25910:3 25996:1 26071:1 26136:1 26142:1 26151:1 26160:1 26170:1 26172:3 26197:1 26236:1 26398:1 26399:1 26405:1 26409:1 26470:1 26483:1 26487:1 26496:1 26510:1 26518:1 26535:2 26576:1 26607:1 26631:2 26645:1 26654:1 26754:1 26861:1 26870:1 26916:1 26991:4 27000:1 27043:1 27044:1 27242:1 27290:1 27296:1 27305:2 27384:1 27507:1 27512:1 27599:1 27600:1 27999:1 28076:1 28091:1 28105:1 28131:1 28154:1 28159:1 28180:1 28192:1 28222:1 28235:1 28308:2 28326:1 28391:1 28429:1 28511:1 28602:1 28644:1 28675:1 28680:1 28703:1 28867:1 28916:1 29315:1 29390:1 29411:2 29482:1 29509:1 29576:2 29596:1 29658:1 29684:2 29706:1 29718:1 29789:1 29816:1 29979:1 30044:1 30045:4 30097:1 30240:2 30319:2 30419:1 30445:1 30450:1 30459:1 30479:4 30480:1 30537:1 30623:1 30675:2 30711:3 30747:1 30764:2 30805:1 30846:1 30882:1 30903:1 30933:1 30996:1 31041:1 31043:1 31125:1 31253:1 31268:1 31272:5 31306:1 31342:1 31495:1 31496:1 31506:1 31765:1 31781:1 31801:1 31815:1 31873:1 31890:1 31896:1 31898:1 31934:1 31962:1 31977:1
20 18:1 30:1 78:1 111:1 120:1 158:1 253:1 261:1 274:2 278:1 290:1 355:1 404:1 489:1 536:1 596:1 623:1 704:1 770:1 1025:1 1034:2 1057:1 1064:1 1067:1 1095:1 1135:1 1136:1 1205:1 1226:1 1255:1 1292:1 1305:1 1341:1 1402:1 1407:1 1420:1 1491:1 1533:1 1563:1 1576:1 1608:1 1631:1 1651:3 1662:1 1668:1 1678:1 1691:2 1725:3 1729:1 1741:1 1811:5 1877:1 1967:1 1968:4 1973:1 2064:1 2116:2 2127:1 2145:1 2163:1 2210:1 2245:3 2284:1 2285:2 2296:1 2354:1 2389:1 2403:1 2433:1 2435:4 2438:1 2450:1 2451:1 2475:1 2512:1 2514:3 2533:1 2535:1 2542:2 2546:1 2549:1 2554:1 2629:1 2645:1 2723:1 2767:1 2801:1 2839:1 2875:1 2898:1 2914:1 2948:1 2965:1 2970:1 3012:1 3050:1 3128:1 3159:1 3168:3 3169:1 3171:1 3184:1 3204:1 3214:4 3320:1 3347:2 3422:2 3598:1 3607:1 3660:2 3835:1 3901:1 3966:1 3970:1 4009:1 4059:1 4126:1 4175:1 4207:1 4211:1 4345:1 4346:1 4391:1 4392:1 4472:1 4791:1 4794:1 4838:1 4872:1 4958:1 5055:1 5078:1 5131:1 5136:2 5186:1 5196:1 5227:1 5245:1 5247:1 5306:1 5332:4 5444:1 5448:1 5466:2 5467:1 5492:1 5508:1 5607:1 5619:1 5662:1 5706:1 5720:1 5745:2 5748:1 5800:2 5864:2 5931:1 5962:1 6039:2 6057:1 6089:1 6101:1 6117:1 6127:1 6158:1 6244:1 6319:1 6351:1 6379:1 6476:1 6477:1 6609:1 6631:1 6670:1 6675:1 6702:1 6772:2 6783:1 6874:1 6910:1 6932:1 6949:2 6966:1 6977:1 6979:1 6980:2 6982:1 7034:1 7097:1 7120:1 7146:1 7307:1 7333:1 7344:1 7345:1 7399:1 7406:1 7433:1 7615:1 7634:1 7657:1 7713:1 7799:2 7801:1 7813:1 7826:1 7900:1 7937:1 7940:1 7941:1 7951:1 8013:1 8019:1 8051:1 8088:1 8124:1 8128:2 8154:1 8207:1 8276:1 8285:1 8342:1 8377:1 8391:3 8410:1 8457:11 8487:2 8490:4 8502:1 8541:1 8554:1 8721:1 8765:1 8787:2 8797:1 8803:1 8816:1 8907:1 8940:5 9019:6 9075:1 9102:1 9205:1 9226:1 9258:2 9285:2 9296:1 9399:2 9401:1 9408:1 9559:1 9590:1 9682:1 9698:1 9707:1 9751:1 9763:1 9772:1 9798:1 9876:1 9931:2 9936:5 9944:1 9960:1 9974:1 10037:1 10061:1 10093:1 10114:1 10121:1 10190:1 10193:1 10214:1 10215:1 10222:1 10354:1 10431:1 10461:2 10474:1 10568:5 10583:2 10649:1 10700:1 10714:1 10732:1 10743:1 10775:1 10781:1 10856:1 10878:1 10925:1 10929:1 10962:1 10978:1 11116:1 11124:1 11218:1 11277:1 11425:1 11493:1 11536:1 11548:2 11587:1 11599:1 11606:1 11615:1 11625:1 11629:1 11642:1 11714:1 11738:1 11744:2 11746:1 11818:1 11829:1 11849:1 11877:1 11926:1 11958:2 11961:1 12094:1 12103:1 12124:1 12160:5 12192:1 12221:1 12256:1 12268:1 12377:1 12445:5 12545:2 12640:1 12721:1 12739:1 12753:1 12758:1 12769:2 12823:1 12848:1 12896:1 12917:1 12920:7 12999:1 13025:1 13042:2 13093:1 13121:2 13143:1 13202:1 13216:1 13247:1 13251:1 13260:1 13281:1 13304:1 13364:1 13455:1 13539:2 13693:1 13813:3 13858:1 13879:1 13899:5 13960:1 13984:1 14104:1 14178:1 14257:1 14280:2 14303:5 14307:1 14345:1 14352:1 14399:1 14446:4 14468:6 14567:1 14590:1 14709:1 14714:1 14719:1 14871:1 14879:1 14897:1 14983:5 14995:1 14996:1 15037:1 15067:2 15091:1 15104:1 15117:1 15171:1 15196:1 15308:1 15387:1 15446:1 15455:1 15552:1 15561:1 15615:1 15623:1 15647:1 15654:2 15698:1 15740:1 15804:1 15821:2 15835:1 15872:1 15892:1 15910:1 15926:2 15941:1 15954:1 15961:1 16048:1 16126:1 16151:2 16193:1 16198:1 16239:1 16298:1 16304:1 16358:2 16506:2 16515:1 16545:2 16547:1 16549:1 16621:1 16711:1 16768:1 16771:8 16811:1 16822:1 16876:1 17030:2 17041:1 17046:1 17071:2 17079:1 17127:1 17184:1 17215:1 17321:1 17360:1 17382:1 17421:1 17446:1 17473:1 17507:1 17549:1 17562:1 17593:1 17602:1 17632:1 17633:2 17641:1 17646:1 17656:1 17662:1 17695:1 17731:1 17932:1 17987:1 18068:1 18107:1 18115:1 18122:1 18130:1 18202:1 18225:2 18228:2 18243:1 18260:1 18277:1 18343:2 18347:1 18352:5 18430:1 18454:1 18488:1 18492:1 18498:1 18537:1 18566:1 18574:1 18583:1 18594:1 18597:1 18650:1 18694:1 18709:1 18727:2 18913:1 18918:1 19043:1 19068:2 19122:1 19183:1 19212:1 19249:5 19292:1 19319:1 19351:2 19353:1 19357:1 19437:1 19443:3 19450:1 19463:1 19480:1 19494:1 19518:4 19530:1 19549:1 19595:1 19601:1 19665:1 19711:1 19762:1 19774:1 19787:1 19792:1 19852:1 19946:2 19981:2 19990:1 19992:2 20067:1 20105:1 20196:583 20200:1 20218:2 20328:1 20339:1 20347:2 20436:1 20444:1 20449:1 20453:1 20696:1 20757:1 20781:1 20832:1 20839:1 20858:1 20897:1 20917:1 20955:2 20978:1 21004:1 21056:1 21067:1 21106:1 21130:1 21158:1 21167:4 21229:1 21363:1 21406:1 21429:1 21434:2 21475:1 21491:2 21500:1 21541:1 21542:1 21548:1 21560:1 21623:1 21634:1 21742:1 21755:1 21763:1 21814:1 21815:1 21819:1 21827:1 21831:2 21852:1 21856:2 21894:1 21937:4 22056:1 22098:1 22109:1 22112:1 22162:1 22194:1 22225:1 22230:1 22242:1 22319:1 22353:1 22384:1 22482:1 22485:1 22550:1 22554:1 22564:1 22581:1 22590:2 22614:1 22626:1 22643:1 22666:1 22734:2 22796:5 22803:2 22822:1 22877:1 22888:1 22891:1 22892:1 22960:1 22972:1 23092:2 23131:1 23136:1 23146:2 23219:1 23228:1 23234:1 23258:2 23274:1 23342:1 23360:1 23377:1 23396:1 23436:1 23442:1 23500:1 23558:1 23615:1 23617:1 23676:1 23687:2 23696:1 23796:1 23901:1 23905:1 23916:1 24053:1 24068:1 24079:1 24095:1 24126:1 24157:1 24161:1 24166:1 24182:1 24244:1 24298:1 24311:1 24357:2 24375:1 24414:1 24425:1 24451:1 24452:1 24534:1 24539:1 24563:1 24566:1 24594:1 24599:1 24610:2 24612:1 24616:1 24617:1 24619:1 24640:1 24652:2 24664:1 24672:1 24714:1 24819:1 24883:1 24913:1 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25193:1 25247:1 25274:1 25276:2 25298:2 25346:1 25359:1 25372:1 25417:1 25431:1 25438:1 25465:1 25469:1 25534:1 25559:1 25606:1 25817:1 25910:4 25996:1 26071:1 26136:1 26142:1 26151:1 26160:1 26170:1 26172:3 26197:1 26202:1 26236:1 26397:1 26398:1 26399:1 26405:1 26409:1 26470:1 26483:1 26487:2 26496:1 26497:1 26510:1 26518:1 26535:3 26576:1 26607:1 26631:2 26645:1 26654:1 26754:1 26861:1 26870:1 26916:1 26991:5 27000:1 27019:1 27043:1 27044:1 27242:1 27290:1 27296:1 27305:2 27384:1 27472:1 27507:1 27512:1 27599:1 27600:1 27734:1 27770:1 27801:1 27999:1 28076:1 28091:1 28105:1 28131:2 28154:1 28159:1 28180:1 28192:1 28222:2 28235:1 28308:2 28326:2 28349:1 28391:1 28429:1 28511:1 28602:1 28644:1 28675:1 28680:1 28703:1 28867:1 28916:1 29315:1 29390:1 29411:3 29482:1 29509:1 29576:2 29596:1 29637:1 29658:1 29684:2 29706:1 29718:1 29789:2 29816:1 29848:1 29938:1 29979:1 30044:1 30045:5 30097:1 30240:2 30289:1 30319:2 30419:1 30445:1 30450:1 30459:1 30479:4 30480:1 30537:1 30550:1 30623:1 30655:1 30675:2 30711:3 30747:1 30764:2 30768:1 30805:1 30810:1 30846:1 30882:1 30903:1 30933:1 30996:1 31041:1 31043:1 31118:1 31121:1 31125:1 31253:1 31268:1 31272:6 31306:1 31342:1 31362:1 31369:1 31495:1 31496:1 31506:1 31765:1 31781:1 31801:1 31815:1 31873:1 31890:1 31896:1 31898:1 31914:1 31934:1 31962:1 31977:1
20 18:1 30:1 78:1 95:1 111:1 120:1 158:1 253:1 261:1 274:2 278:1 290:2 355:1 404:1 489:1 536:1 596:1 623:1 696:1 704:1 770:1 990:1 1025:1 1034:2 1057:1 1064:1 1067:1 1095:1 1135:2 1136:2 1200:2 1205:1 1226:1 1255:1 1292:1 1305:1 1341:1 1402:1 1407:1 1420:1 1491:1 1533:1 1563:1 1576:1 1608:1 1631:1 1651:3 1662:1 1668:1 1671:1 1678:1 1691:2 1725:3 1729:1 1741:1 1759:2 1811:6 1877:1 1967:1 1968:4 1973:1 2064:1 2116:2 2127:1 2145:1 2163:1 2210:1 2229:1 2245:3 2284:1 2285:2 2296:1 2354:2 2389:1 2403:1 2433:1 2435:4 2438:1 2450:1 2451:1 2458:1 2475:1 2512:1 2514:3 2533:1 2535:1 2542:2 2546:1 2549:1 2554:2 2629:1 2645:1 2723:1 2741:1 2767:1 2801:1 2839:1 2875:1 2898:1 2914:1 2948:1 2965:1 2970:1 3012:2 3050:1 3128:1 3159:1 3168:4 3169:1 3171:1 3184:1 3204:1 3214:4 3320:1 3347:2 3422:3 3598:1 3607:1 3660:2 3751:1 3825:1 3835:1 3901:1 3966:1 3970:1 4009:1 4042:1 4059:1 4126:1 4175:1 4176:1 4207:1 4211:2 4296:1 4345:1 4346:1 4391:1 4392:1 4414:1 4425:1 4472:1 4730:1 4768:1 4791:1 4794:1 4838:1 4872:1 4958:1 5055:1 5067:1 5078:1 5131:1 5136:2 5186:1 5196:1 5227:1 5245:1 5247:1 5306:1 5332:4 5444:2 5448:1 5466:2 5467:1 5487:1 5488:2 5492:1 5508:1 5607:1 5619:1 5662:1 5706:1 5720:1 5745:2 5748:1 5800:2 5864:2 5931:1 5962:1 6039:2 6057:1 6089:1 6101:1 6117:1 6127:1 6137:2 6158:1 6244:1 6280:1 6319:1 6350:1 6351:1 6379:1 6476:1 6477:1 6609:1 6612:1 6631:1 6670:1 6675:1 6702:1 6709:1 6772:2 6783:1 6874:1 6910:1 6932:1 6949:2 6966:1 6977:1 6979:1 6980:2 6982:1 7034:1 7097:1 7120:1 7146:1 7307:1 7333:1 7344:1 7345:1 7399:1 7406:2 7430:1 7433:1 7615:1 7634:1 7657:1 7713:1 7799:3 7801:1 7813:1 7826:1 7900:1 7937:1 7940:1 7941:1 7951:1 8013:1 8019:1 8051:1 8088:1 8122:2 8124:1 8128:2 8154:1 8207:1 8241:1 8276:1 8285:1 8342:1 8377:1 8391:3 8410:1 8457:12 8487:2 8490:4 8502:1 8541:1 8554:1 8639:1 8721:1 8765:1 8787:2 8797:1 8803:1 8816:1 8907:1 8940:6 9019:7 9075:1 9102:1 9205:1 9226:1 9258:2 9285:2 9296:1 9399:2 9401:1 9408:1 9559:1 9590:1 9682:1 9698:1 9707:1 9751:1 9763:1 9772:1 9798:1 9876:1 9931:2 9936:5 9944:1 9960:2 9974:1 10037:1 10061:1 10093:1 10114:1 10121:1 10190:1 10193:1 10214:1 10215:1 10222:1 10354:1 10431:2 10461:2 10474:1 10563:2 10568:5 10583:3 10649:1 10700:1 10714:1 10732:1 10743:1 10749:1 10775:1 10781:1 10856:1 10878:1 10925:1 10929:1 10962:1 10978:1 11116:1 11124:1 11140:1 11218:1 11277:1 11425:1 11493:1 11536:1 11548:2 11587:1 11599:1 11606:1 11612:1 11615:1 11625:1 11629:1 11641:1 11642:1 11714:2 11738:1 11744:2 11746:1 11818:1 11829:1 11849:2 11877:1 11926:1 11958:2 11961:1 12094:1 12101:1 12103:1 12124:1 12160:5 12192:1 12221:1 12256:1 12268:2 12377:1 12445:5 12542:1 12545:2 12640:1 12682:3 12721:1 12739:1 12753:1 12758:1 12769:2 12823:3 12848:2 12896:1 12917:1 12920:8 12999:1 13025:1 13042:2 13093:1 13121:2 13143:1 13202:1 13216:1 13247:2 13251:1 13260:1 13281:1 13304:1 13364:1 13455:1 13539:2 13693:1 13813:4 13858:1 13879:1 13899:7 13960:1 13984:1 14101:1 14104:1 14178:1 14257:3 14280:2 14303:5 14307:1 14345:1 14352:1 14399:1 14446:5 14468:9 14567:1 14590:1 14709:1 14714:1 14719:1 14871:2 14879:1 14897:1 14983:6 14995:1 14996:1 15037:1 15038:1 15067:2 15091:1 15104:1 15117:1 15171:2 15196:1 15308:1 15387:1 15446:1 15455:1 15552:1 15561:1 15615:1 15623:1 15647:1 15654:2 15698:1 15740:2 15804:1 15821:3 15835:1 15849:1 15872:1 15892:1 15903:1 15910:1 15926:2 15941:1 15954:1 15961:1 16048:1 16126:1 16151:2 16193:1 16198:1 16239:1 16298:2 16304:1 16358:2 16506:2 16515:1 16545:3 16547:1 16549:1 16621:1 16711:1 16768:1 16771:9 16811:1 16822:1 16876:1 17030:2 17041:1 17046:1 17071:2 17079:1 17087:1 17127:1 17184:1 17215:1 17319:1 17321:2 17360:1 17382:1 17421:1 17446:1 17473:1 17507:1 17549:1 17562:1 17593:1 17602:1 17632:1 17633:2 17641:1 17646:1 17656:1 17662:2 17690:1 17695:2 17717:1 17731:1 17932:1 17987:1 18068:1 18107:1 18115:1 18122:1 18130:1 18202:1 18225:2 18228:2 18243:1 18260:1 18277:1 18343:2 18347:1 18352:6 18409:2 18430:1 18454:1 18488:1 18492:1 18494:2 18498:1 18537:1 18566:1 18574:1 18583:1 18594:1 18597:1 18620:1 18650:1 18694:1 18696:1 18709:1 18727:2 18802:1 18913:1 18918:1 19043:1 19068:2 19122:1 19183:1 19212:1 19249:5 19292:1 19319:1 19351:2 19353:1 19357:2 19437:1 19443:3 19450:1 19463:1 19480:1 19494:1 19518:4 19530:1 19549:1 19595:1 19601:1 19665:1 19711:1 19762:1 19774:1 19787:1 19792:1 19852:1 19946:2 19981:2 19990:1 19992:2 20067:1 20105:1 20196:666 20200:1 20218:3 20328:1 20339:1 20347:2 20436:2 20444:1 20449:2 20453:1 20482:1 20696:1 20757:1 20781:1 20832:1 20839:1 20858:1 20897:1 20917:1 20955:2 20978:1 21004:1 21056:1 21067:1 21106:1 21130:1 21158:1 21167:5 21173:1 21229:1 21363:1 21406:1 21429:1 21434:2 21475:1 21491:2 21500:1 21541:1 21542:1 21548:1 21560:1 21623:1 21634:1 21742:1 21755:1 21763:1 21814:1 21815:1 21819:1 21827:1 21831:2 21852:1 21856:2 21894:1 21915:1 21937:4 21944:2 22056:1 22098:1 22109:1 22112:1 22162:1 22194:1 22225:1 22228:1 22230:1 22242:2 22319:1 22353:1 22384:1 22482:1 22485:1 22550:1 22554:1 22564:1 22581:1 22590:2 22614:1 22626:1 22643:1 22666:1 22734:2 22796:6 22803:2 22822:3 22877:1 22888:1 22891:1 22892:1 22918:1 22960:1 22972:1 23092:2 23131:1 23136:1 23146:2 23219:1 23228:1 23234:1 23258:2 23274:1 23342:1 23360:1 23377:1 23396:1 23436:1 23442:1 23500:1 23558:1 23615:1 23617:1 23676:1 23686:1 23687:2 23689:2 23696:1 23775:1 23796:1 23885:1 23901:1 23905:1 23916:1 24053:1 24068:1 24079:1 24095:1 24126:1 24157:1 24161:1 24166:1 24182:1 24244:1 24298:1 24311:1 24357:2 24375:2 24379:1 24414:1 24425:1 24451:1 24452:1 24534:2 24539:1 24563:1 24566:1 24584:1 24594:1 24599:1 24610:2 24612:1 24616:1 24617:1 24619:1 24638:1 24640:1 24652:2 24664:1 24672:2 24714:1 24727:1 24819:1 24883:1 24913:1 24916:1 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25188:1 25193:1 25247:1 25274:1 25276:2 25298:2 25308:1 25346:1 25359:1 25372:1 25417:1 25421:1 25431:1 25438:1 25465:1 25469:1 25534:1 25559:1 25606:1 25817:2 25910:5 25996:1 26071:1 26136:1 26142:1 26151:1 26160:1 26170:1 26172:3 26197:1 26201:1 26202:1 26236:1 26397:1 26398:1 26399:1 26405:1 26409:1 26470:1 26483:1 26487:2 26496:1 26497:1 26510:1 26518:1 26535:3 26576:1 26607:1 26631:2 26645:1 26654:1 26754:1 26861:1 26870:1 26916:1 26986:1 26991:5 27000:1 27002:1 27019:1 27043:1 27044:1 27242:1 27244:3 27276:1 27290:1 27296:1 27305:2 27384:1 27472:1 27507:1 27512:1 27599:1 27600:1 27734:1 27750:1 27770:1 27801:1 27976:1 27999:1 28073:1 28076:1 28091:1 28105:1 28131:2 28154:1 28159:1 28180:1 28192:1 28222:2 28235:1 28245:1 28308:2 28326:2 28349:1 28391:1 28429:1 28511:1 28554:1 28602:1 28644:1 28675:1 28680:1 28703:1 28756:1 28867:1 28916:1 29142:1 29315:1 29390:1 29411:3 29482:1 29509:1 29576:3 29596:1 29637:1 29658:1 29668:1 29684:2 29689:1 29696:1 29706:1 29718:1 29789:2 29816:1 29848:1 29934:1 29938:1 29979:1 30044:1 30045:5 30067:1 30097:1 30240:3 30289:1 30319:3 30336:1 30419:1 30445:1 30450:1 30457:1 30459:1 30479:5 30480:1 30537:1 30550:1 30623:1 30655:1 30675:3 30711:3 30747:1 30764:2 30768:1 30805:1 30810:1 30846:1 30882:1 30903:1 30933:1 30996:1 31041:1 31043:1 31118:1 31121:1 31125:1 31253:1 31268:1 31272:7 31306:1 31342:1 31362:1 31369:1 31495:1 31496:1 31506:1 31514:1 31765:1 31781:1 31801:1 31815:1 31826:1 31873:1 31890:1 31896:1 31898:1 31902:1 31914:1 31934:1 31958:1 31962:1 31977:1
20 18:1 30:1 78:1 95:1 111:1 120:1 158:1 253:1 261:1 274:2 278:1 290:3 331:1 355:1 404:1 489:1 536:1 596:1 623:1 696:1 704:1 770:1 990:1 1025:1 1034:2 1057:1 1064:1 1067:1 1095:1 1135:2 1136:2 1200:2 1205:1 1226:1 1255:1 1292:1 1305:1 1341:1 1402:1 1407:1 1420:1 1491:1 1533:1 1563:1 1576:1 1608:1 1631:1 1651:3 1662:1 1668:1 1671:1 1678:1 1691:2 1725:3 1729:1 1741:1 1759:2 1811:7 1877:1 1967:1 1968:4 1973:1 2064:1 2116:2 2127:1 2145:1 2163:1 2210:1 2229:1 2245:3 2284:1 2285:3 2296:1 2354:2 2389:1 2403:1 2433:1 2435:5 2438:1 2450:1 2451:1 2458:1 2475:1 2512:1 2514:3 2533:1 2535:1 2542:2 2546:1 2549:1 2554:2 2629:1 2645:1 2723:1 2741:1 2767:1 2801:1 2839:1 2875:1 2898:1 2914:1 2948:1 2965:1 2970:1 3012:2 3050:1 3120:1 3128:1 3159:1 3168:5 3169:1 3171:1 3184:2 3204:1 3214:4 3320:1 3347:2 3422:3 3553:1 3598:1 3607:1 3660:2 3751:1 3825:1 3835:1 3901:1 3966:1 3970:1 4009:1 4042:1 4059:1 4126:1 4175:1 4176:1 4207:1 4211:3 4296:1 4345:1 4346:1 4391:1 4392:1 4414:1 4425:1 4472:1 4535:1 4730:1 4768:1 4776:1 4780:1 4791:1 4794:1 4838:1 4872:1 4958:1 5055:1 5067:1 5078:1 5131:1 5136:2 5186:1 5196:1 5227:1 5245:1 5247:1 5306:1 5332:4 5444:3 5448:1 5466:2 5467:1 5487:1 5488:2 5490:1 5492:1 5508:1 5607:1 5619:1 5662:1 5706:1 5720:1 5745:2 5748:1 5800:2 5864:2 5916:1 5931:1 5962:1 6039:2 6057:2 6089:1 6101:1 6117:1 6127:1 6137:2 6158:1 6244:1 6280:1 6319:1 6350:1 6351:1 6379:1 6476:1 6477:1 6571:1 6609:2 6612:1 6631:1 6670:1 6675:1 6702:1 6709:1 6772:2 6783:1 6874:1 6910:1 6932:1 6949:2 6966:1 6977:1 6979:1 6980:2 6982:1 7034:1 7097:1 7120:1 7146:1 7307:1 7333:1 7344:1 7345:1 7396:1 7399:1 7406:2 7430:1 7433:1 7580:1 7615:1 7634:1 7657:1 7713:1 7799:4 7801:1 7813:1 7826:1 7900:1 7937:1 7940:1 7941:1 7951:1 8013:1 8019:1 8051:1 8088:1 8122:2 8124:1 8128:3 8154:1 8207:1 8241:1 8276:1 8285:1 8342:1 8377:1 8391:3 8410:1 8457:12 8487:2 8490:4 8502:1 8541:1 8554:1 8558:1 8639:1 8721:1 8765:1 8787:2 8797:1 8803:1 8816:1 8907:1 8940:7 9019:7 9075:1 9102:1 9205:1 9226:1 9258:2 9285:3 9296:1 9393:1 9399:2 9401:1 9408:1 9559:1 9590:1 9682:1 9698:1 9707:1 9751:1 9763:1 9772:1 9798:1 9876:1 9931:2 9936:5 9944:1 9960:3 9974:1 10037:1 10061:1 10093:1 10114:1 10121:1 10190:1 10193:1 10214:1 10215:1 10222:1 10354:1 10431:2 10461:2 10474:1 10563:3 10568:5 10583:3 10649:1 10700:1 10714:1 10732:1 10743:1 10749:1 10775:1 10781:1 10856:1 10878:1 10925:1 10929:1 10962:1 10978:1 11116:1 11124:1 11140:1 11218:1 11277:1 11425:1 11493:1 11536:1 11548:2 11587:2 11599:1 11606:1 11612:1 11615:1 11625:1 11629:1 11641:1 11642:1 11714:2 11738:1 11744:2 11746:1 11818:1 11829:1 11849:2 11877:1 11926:1 11958:2 11961:1 12094:1 12101:1 12103:1 12124:1 12160:5 12192:1 12221:1 12256:1 12268:2 12377:1 12445:5 12542:1 12545:2 12640:1 12682:3 12721:1 12739:1 12753:1 12758:1 12769:2 12823:3 12848:3 12896:1 12917:1 12920:9 12999:1 13025:1 13042:2 13093:1 13121:2 13143:1 13202:1 13216:1 13247:3 13251:1 13260:1 13281:1 13304:1 13364:2 13455:1 13539:2 13693:1 13813:5 13858:1 13879:1 13899:8 13960:1 13984:1 14101:1 14104:1 14178:1 14257:3 14280:2 14303:6 14307:1 14345:1 14352:1 14399:1 14446:6 14468:10 14567:1 14590:1 14680:1 14709:1 14714:1 14719:1 14871:2 14879:1 14897:1 14913:1 14983:7 14995:1 14996:1 15037:2 15038:1 15067:2 15091:1 15104:1 15117:1 15171:2 15196:1 15308:1 15387:1 15446:2 15455:1 15474:1 15552:1 15561:1 15615:1 15623:1 15647:1 15654:2 15698:1 15740:3 15804:1 15821:3 15835:1 15849:1 15872:1 15892:1 15903:1 15910:1 15926:2 15941:1 15954:1 15961:1 16035:1 16048:1 16126:1 16151:2 16193:1 16198:1 16239:1 16298:2 16304:1 16358:2 16506:2 16515:1 16545:3 16547:1 16549:1 16621:1 16711:1 16762:1 16768:1 16771:10 16811:1 16822:1 16876:1 17030:2 17041:1 17046:1 17071:2 17079:1 17087:1 17125:1 17127:1 17184:1 17215:1 17319:1 17321:2 17360:1 17382:1 17421:1 17446:1 17473:1 17507:1 17549:1 17562:1 17593:1 17602:1 17632:1 17633:2 17641:1 17646:1 17656:1 17662:2 17690:1 17695:2 17717:1 17731:1 17932:1 17987:1 18068:1 18107:1 18115:1 18122:1 18130:1 18202:1 18225:2 18228:2 18243:1 18260:1 18277:1 18343:2 18347:1 18352:7 18409:2 18430:1 18454:1 18488:1 18492:1 18494:2 18498:1 18537:1 18566:1 18574:1 18583:1 18594:1 18597:1 18620:1 18650:1 18694:1 18696:1 18709:1 18727:2 18802:1 18913:1 18918:1 19043:1 19068:2 19122:1 19183:1 19212:1 19249:5 19292:1 19319:1 19351:2 19353:1 19357:2 19437:1 19443:3 19450:1 19463:1 19480:1 19494:1 19518:5 19530:1 19549:1 19595:1 19601:1 19665:1 19711:1 19762:1 19774:1 19781:1 19787:1 19792:1 19852:1 19946:2 19981:2 19990:1 19992:2 20067:1 20105:1 20196:739 20200:1 20218:3 20328:1 20339:1 20347:2 20436:3 20444:1 20449:3 20453:1 20482:1 20696:1 20757:1 20781:1 20832:1 20839:1 20858:1 20897:1 20917:1 20954:1 20955:2 20978:1 21004:2 21056:1 21067:1 21106:1 21130:1 21158:1 21167:6 21173:1 21229:1 21363:1 21406:1 21429:1 21434:2 21475:1 21491:2 21500:1 21541:1 21542:1 21548:1 21560:1 21603:2 21623:1 21634:1 21742:1 21755:1 21763:1 21814:1 21815:1 21819:1 21826:1 21827:1 21831:2 21852:1 21856:2 21894:1 21915:1 21937:4 21944:2 22056:1 22098:1 22109:1 22112:1 22162:1 22194:1 22225:1 22228:1 22230:1 22242:2 22319:1 22353:1 22384:1 22482:1 22485:1 22550:1 22554:1 22564:1 22581:1 22590:2 22614:1 22626:1 22643:1 22666:1 22719:1 22734:2 22796:7 22803:2 22822:3 22877:1 22888:1 22891:1 22892:1 22918:1 22960:1 22972:1 23092:2 23131:1 23136:1 23146:2 23219:1 23228:1 23234:1 23258:2 23274:1 23342:1 23360:1 23377:1 23396:1 23436:1 23442:1 23500:1 23558:1 23615:1 23617:1 23676:1 23686:1 23687:2 23689:2 23696:1 23715:1 23775:1 23796:1 23885:1 23901:1 23905:1 23916:1 24053:1 24068:1 24079:1 24095:1 24126:1 24157:1 24161:1 24166:2 24182:1 24244:1 24298:1 24311:2 24357:2 24375:2 24379:1 24414:1 24425:1 24451:1 24452:1 24534:2 24539:1 24563:1 24566:1 24584:1 24594:1 24599:1 24610:2 24612:1 24616:1 24617:1 24619:1 24638:1 24640:1 24652:2 24664:1 24672:3 24714:1 24718:1 24725:1 24727:1 24819:1 24883:1 24913:1 24916:1 24957:1 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25188:1 25193:1 25247:1 25274:1 25276:3 25298:2 25308:1 25346:1 25359:1 25372:1 25417:1 25421:1 25431:1 25438:1 25465:1 25469:1 25534:1 25559:1 25606:1 25817:3 25910:6 25996:1 26071:1 26136:1 26142:1 26151:1 26160:1 26170:1 26172:3 26197:1 26201:1 26202:1 26236:1 26397:1 26398:1 26399:1 26405:1 26409:1 26470:1 26483:1 26487:2 26496:1 26497:1 26510:1 26518:1 26535:3 26576:1 26607:1 26631:2 26645:1 26654:1 26678:1 26754:1 26861:1 26870:1 26916:1 26986:1 26991:5 27000:1 27002:1 27019:1 27043:1 27044:1 27242:1 27244:3 27276:1 27277:1 27290:1 27296:1 27305:2 27384:1 27472:1 27507:1 27512:1 27599:1 27600:1 27734:1 27750:1 27770:1 27801:1 27869:1 27976:1 27999:1 28073:1 28076:1 28091:1 28105:1 28131:3 28154:1 28159:1 28180:1 28192:1 28222:3 28235:1 28245:1 28308:2 28326:2 28349:1 28391:1 28429:1 28511:1 28554:1 28602:1 28644:1 28675:1 28680:1 28703:1 28756:1 28867:1 28916:1 29142:1 29315:1 29390:1 29411:3 29482:1 29509:1 29576:3 29596:1 29637:1 29658:1 29668:1 29684:2 29689:1 29696:1 29706:1 29718:1 29789:2 29816:1 29848:1 29934:2 29938:1 29979:1 30044:1 30045:5 30067:1 30097:1 30240:3 30289:1 30319:3 30336:1 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30479:6 30480:1 30537:1 30550:1 30623:1 30630:1 30655:1 30675:3 30711:3 30747:1 30764:2 30768:1 30805:2 30810:1 30846:1 30882:1 30903:1 30933:1 30996:1 31041:1 31043:1 31118:1 31121:1 31125:1 31253:1 31268:1 31272:8 31306:1 31342:1 31362:1 31369:1 31495:1 31496:1 31506:1 31514:1 31667:1 31765:1 31781:1 31801:1 31815:1 31826:1 31873:1 31890:1 31896:1 31898:1 31902:1 31914:1 31934:1 31958:1 31962:1 31977:1
20 18:1 26:1 30:1 78:1 95:1 111:1 120:1 158:1 181:1 253:1 261:1 274:2 278:1 290:3 331:1 355:1 404:1 482:1 489:1 536:1 596:1 623:1 696:1 704:1 770:1 990:1 1025:1 1034:2 1057:1 1064:1 1067:1 1069:2 1095:1 1135:2 1136:2 1200:2 1205:1 1226:1 1255:1 1292:1 1305:1 1341:1 1389:1 1402:1 1407:1 1420:1 1491:1 1533:1 1563:1 1576:1 1608:1 1631:1 1651:3 1662:1 1668:1 1670:1 1671:1 1678:1 1691:2 1725:4 1729:1 1741:1 1759:2 1778:1 1799:1 1811:8 1877:1 1967:1 1968:4 1973:1 2064:1 2116:2 2127:1 2145:1 2163:1 2210:1 2229:1 2245:3 2284:1 2285:3 2296:1 2354:3 2389:1 2403:1 2433:1 2435:6 2438:1 2450:1 2451:1 2458:1 2475:1 2512:1 2514:3 2533:1 2535:1 2542:2 2546:1 2549:1 2554:2 2629:1 2645:1 2723:1 2741:1 2767:1 2801:1 2839:1 2870:1 2875:1 2898:1 2914:1 2948:1 2965:1 2970:1 3012:2 3050:1 3084:1 3120:1 3128:1 3159:3 3168:5 3169:2 3171:1 3184:2 3204:1 3214:5 3320:1 3347:2 3422:3 3537:1 3553:1 3598:1 3607:1 3660:2 3695:1 3751:1 3825:1 3835:1 3901:1 3966:1 3970:1 4009:1 4042:1 4059:1 4126:1 4175:1 4176:1 4207:1 4211:3 4279:1 4296:1 4345:1 4346:1 4391:1 4392:1 4414:1 4425:1 4472:1 4535:1 4730:1 4768:1 4776:1 4780:1 4791:1 4794:1 4838:1 4872:1 4958:1 5055:1 5067:1 5078:1 5131:1 5136:2 5186:1 5196:1 5227:1 5245:1 5247:1 5306:1 5332:4 5444:3 5448:2 5466:2 5467:1 5487:1 5488:2 5490:1 5492:2 5508:1 5607:1 5619:1 5662:1 5706:1 5720:1 5745:2 5748:1 5800:2 5825:1 5864:2 5916:1 5931:2 5962:1 6039:2 6057:2 6089:1 6101:1 6117:1 6127:1 6137:2 6158:1 6244:1 6280:1 6319:1 6321:1 6350:1 6351:1 6379:1 6476:1 6477:1 6571:1 6609:2 6612:1 6631:1 6670:1 6675:1 6702:1 6709:1 6772:2 6779:1 6783:1 6874:1 6910:1 6932:1 6949:2 6966:1 6977:1 6979:1 6980:2 6982:2 7034:1 7097:1 7120:1 7146:1 7169:1 7307:1 7333:1 7344:1 7345:1 7396:1 7399:1 7406:2 7430:1 7433:1 7580:1 7615:1 7628:1 7634:1 7657:1 7713:1 7799:4 7801:1 7813:1 7826:1 7900:1 7937:1 7940:1 7941:1 7951:1 8013:1 8019:1 8051:1 8088:1 8122:2 8124:1 8128:3 8154:1 8207:1 8241:1 8276:1 8285:1 8342:1 8377:1 8391:3 8410:1 8414:1 8457:12 8487:4 8490:5 8502:1 8541:1 8554:1 8558:1 8639:1 8721:1 8765:1 8787:2 8797:1 8803:1 8816:1 8907:1 8940:8 9019:9 9072:1 9075:1 9102:1 9205:1 9226:1 9258:2 9285:3 9296:1 9393:1 9399:2 9401:1 9408:1 9559:1 9590:1 9682:1 9698:1 9707:1 9751:1 9763:1 9772:1 9798:1 9851:1 9869:1 9876:1 9885:1 9931:2 9936:5 9944:1 9960:3 9974:1 10037:1 10061:1 10093:1 10114:1 10121:1 10190:1 10193:1 10214:1 10215:1 10222:1 10354:1 10431:2 10461:2 10474:1 10563:3 10568:5 10583:3 10649:1 10700:1 10714:1 10732:1 10743:1 10749:1 10764:1 10775:1 10781:1 10856:1 10878:1 10925:1 10929:1 10962:1 10978:1 11082:1 11116:1 11124:1 11140:1 11218:1 11277:1 11284:1 11425:1 11493:1 11536:1 11548:2 11587:2 11599:1 11606:1 11612:1 11615:1 11625:1 11626:1 11629:1 11630:1 11641:1 11642:1 11714:2 11738:1 11744:2 11746:1 11818:1 11829:1 11849:2 11877:1 11926:1 11958:2 11961:1 12094:1 12101:1 12103:1 12124:1 12160:5 12192:1 12221:1 12256:1 12268:2 12377:1 12422:1 12445:5 12512:1 12542:1 12545:2 12640:1 12682:4 12721:1 12739:1 12753:1 12758:1 12769:2 12823:3 12848:3 12896:1 12917:1 12920:10 12999:1 13025:1 13042:2 13093:1 13121:2 13143:1 13202:1 13216:1 13247:3 13251:1 13260:1 13281:1 13304:1 13364:2 13455:1 13539:2 13656:1 13693:1 13813:6 13858:1 13879:1 13899:10 13960:1 13984:2 14101:1 14104:1 14178:1 14257:4 14280:2 14303:7 14307:1 14345:1 14352:1 14399:1 14445:1 14446:7 14464:1 14468:12 14567:1 14590:1 14680:1 14709:1 14714:1 14719:1 14871:2 14879:1 14897:1 14913:1 14983:8 14995:1 14996:1 15037:2 15038:1 15067:2 15091:1 15104:1 15117:1 15171:2 15196:2 15237:1 15308:1 15344:1 15387:1 15446:2 15455:1 15474:1 15519:1 15552:1 15561:1 15615:1 15623:1 15647:1 15654:2 15698:1 15740:3 15804:1 15821:3 15835:1 15849:1 15872:1 15892:1 15903:1 15910:1 15926:2 15941:1 15954:1 15961:1 16035:1 16048:1 16126:1 16151:2 16193:1 16198:1 16239:1 16298:2 16304:1 16355:1 16358:2 16506:2 16515:1 16545:3 16547:1 16549:1 16553:1 16621:1 16629:1 16711:1 16762:1 16768:1 16771:11 16811:1 16822:1 16876:1 17030:2 17041:1 17046:1 17066:1 17071:2 17079:1 17087:1 17125:1 17127:1 17184:1 17215:1 17319:1 17321:2 17360:1 17382:1 17421:1 17446:1 17473:1 17507:1 17549:1 17559:1 17562:1 17593:1 17602:1 17632:1 17633:2 17641:1 17643:1 17646:1 17651:1 17656:1 17662:2 17690:1 17695:2 17717:1 17731:1 17932:1 17987:1 18068:1 18107:1 18115:1 18122:1 18130:2 18192:1 18202:1 18225:2 18228:3 18243:1 18260:1 18266:1 18277:1 18326:1 18343:2 18347:1 18352:8 18409:2 18430:1 18454:1 18488:1 18492:1 18494:2 18498:1 18537:1 18566:1 18574:1 18583:1 18594:1 18597:1 18608:1 18620:1 18650:1 18694:1 18696:1 18709:1 18727:2 18802:1 18810:1 18906:1 18913:1 18918:1 19043:1 19068:2 19087:1 19122:1 19183:1 19212:1 19249:5 19292:2 19319:1 19351:2 19353:1 19357:2 19437:1 19443:3 19450:1 19463:1 19480:1 19494:1 19518:6 19530:1 19549:1 19595:1 19601:1 19665:1 19711:1 19762:1 19774:1 19781:1 19787:1 19792:1 19852:1 19946:2 19981:3 19990:1 19992:2 20067:1 20105:1 20196:813 20200:2 20218:3 20249:1 20304:1 20328:1 20339:1 20347:2 20353:1 20422:1 20436:3 20444:1 20449:3 20451:1 20453:1 20482:1 20696:2 20757:1 20781:1 20832:1 20839:1 20858:1 20897:1 20917:1 20954:1 20955:2 20978:2 21004:2 21027:1 21056:1 21067:1 21106:1 21130:1 21158:1 21167:7 21173:1 21229:1 21363:1 21406:1 21429:1 21434:2 21465:1 21475:1 21491:2 21492:1 21500:1 21541:1 21542:1 21548:1 21560:1 21603:2 21623:1 21634:1 21742:1 21755:1 21763:1 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:2 21894:1 21915:1 21937:5 21944:3 22056:1 22098:1 22109:1 22112:1 22162:1 22184:1 22194:1 22225:1 22228:1 22230:1 22242:2 22319:1 22348:1 22353:1 22384:1 22482:1 22485:1 22507:1 22550:1 22554:1 22564:1 22581:1 22590:2 22614:1 22626:1 22643:1 22666:1 22719:1 22734:2 22739:1 22796:8 22803:2 22822:4 22868:1 22877:1 22888:1 22891:1 22892:1 22918:1 22960:1 22972:1 23092:2 23131:1 23136:2 23146:2 23219:1 23228:1 23234:1 23258:2 23274:1 23342:1 23360:1 23377:1 23396:1 23436:1 23438:1 23442:2 23500:1 23558:1 23615:1 23617:1 23676:1 23686:2 23687:2 23689:3 23696:1 23700:1 23715:1 23765:1 23775:1 23796:1 23885:1 23901:1 23905:1 23916:1 24053:1 24068:1 24079:1 24095:1 24126:1 24157:1 24161:1 24166:2 24182:1 24244:1 24298:1 24311:2 24357:2 24375:2 24379:1 24414:1 24425:1 24451:1 24452:1 24534:2 24539:1 24563:1 24566:1 24584:1 24594:1 24599:1 24610:2 24612:1 24616:1 24617:1 24619:1 24638:1 24640:1 24652:2 24664:1 24672:3 24714:1 24718:1 24725:1 24727:1 24731:1 24819:1 24883:1 24913:1 24916:1 24957:1 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25188:1 25193:1 25210:1 25247:1 25274:1 25276:3 25298:2 25308:1 25346:1 25359:1 25372:1 25395:1 25417:1 25421:1 25431:1 25438:1 25465:1 25469:1 25490:1 25498:1 25534:2 25559:1 25606:1 25649:1 25817:3 25910:7 25996:1 26071:1 26111:1 26136:1 26142:1 26151:1 26160:1 26170:1 26172:4 26197:1 26201:1 26202:1 26236:1 26397:1 26398:1 26399:1 26405:1 26409:1 26470:1 26483:1 26487:2 26496:1 26497:1 26510:1 26518:1 26535:3 26576:1 26607:1 26631:2 26645:1 26654:1 26678:1 26754:1 26861:1 26870:1 26916:1 26986:1 26991:5 27000:1 27002:1 27019:1 27043:1 27044:1 27242:1 27244:4 27276:1 27277:1 27290:1 27296:1 27305:2 27384:1 27472:1 27507:1 27512:1 27544:1 27599:1 27600:1 27734:1 27750:1 27770:1 27801:1 27802:1 27869:1 27976:1 27999:1 28073:1 28076:1 28091:1 28105:1 28131:3 28154:1 28159:2 28180:1 28192:1 28219:1 28222:3 28235:1 28245:1 28308:3 28326:2 28349:1 28391:1 28405:1 28429:1 28484:1 28511:1 28554:1 28602:1 28644:1 28675:1 28680:1 28687:1 28703:1 28756:1 28867:1 28912:1 28916:1 29142:1 29209:1 29292:1 29315:1 29390:1 29411:3 29482:1 29509:1 29576:3 29596:1 29637:1 29658:1 29668:1 29684:2 29689:1 29696:1 29706:1 29718:1 29789:2 29816:1 29848:1 29934:2 29938:1 29979:1 30044:1 30045:5 30067:1 30097:1 30240:3 30289:1 30319:3 30331:1 30336:1 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30479:6 30480:1 30537:1 30550:1 30581:1 30623:1 30630:1 30655:1 30675:3 30711:3 30747:1 30764:2 30768:1 30805:2 30810:1 30846:1 30882:2 30903:1 30933:1 30996:1 31041:2 31043:1 31118:1 31121:1 31125:1 31253:2 31268:1 31272:9 31306:1 31342:1 31362:1 31369:1 31495:1 31496:1 31506:1 31514:1 31667:1 31718:1 31756:1 31765:1 31781:1 31801:1 31803:1 31815:1 31826:1 31873:1 31890:1 31896:1 31898:1 31902:1 31914:1 31934:1 31958:1 31962:1 31977:1
20 18:1 26:1 30:1 78:1 95:1 111:1 120:1 158:1 181:1 253:1 261:1 274:2 278:1 290:3 331:1 355:1 404:1 482:1 489:1 536:1 596:1 623:1 696:1 704:1 770:1 990:1 1025:1 1034:2 1057:1 1064:1 1067:1 1069:2 1095:1 1135:3 1136:3 1198:1 1200:2 1205:1 1226:1 1255:1 1292:1 1305:1 1341:1 1389:1 1402:1 1407:1 1420:1 1491:1 1533:1 1563:1 1576:1 1608:1 1631:1 1651:3 1662:1 1668:1 1670:1 1671:1 1678:1 1691:2 1725:5 1729:1 1741:1 1759:2 1778:1 1799:1 1811:9 1877:1 1967:1 1968:4 1973:1 2026:1 2035:2 2064:1 2116:2 2127:1 2145:1 2163:1 2210:1 2229:1 2245:3 2284:1 2285:3 2296:1 2354:3 2389:1 2403:1 2433:1 2435:7 2438:1 2450:1 2451:1 2458:1 2475:1 2512:1 2514:3 2531:1 2533:1 2535:1 2542:2 2546:1 2549:1 2554:2 2629:1 2645:1 2723:1 2741:1 2767:1 2801:1 2839:1 2853:1 2870:1 2875:1 2898:1 2914:1 2948:1 2965:1 2970:1 3012:2 3050:1 3084:1 3120:1 3128:1 3159:3 3168:5 3169:2 3171:1 3184:2 3204:1 3214:5 3320:1 3347:2 3422:3 3463:1 3537:1 3553:1 3598:1 3607:1 3660:2 3695:1 3751:1 3825:1 3835:1 3901:1 3966:1 3970:1 4009:1 4042:1 4059:1 4126:1 4175:1 4176:1 4207:1 4211:3 4279:1 4296:1 4306:1 4345:1 4346:1 4391:1 4392:1 4414:1 4425:1 4472:1 4535:1 4587:1 4702:1 4730:1 4768:1 4776:1 4780:1 4791:1 4794:1 4836:1 4838:1 4872:1 4958:1 5055:1 5067:1 5078:1 5131:1 5136:2 5186:1 5196:1 5227:1 5245:1 5247:1 5306:1 5332:4 5444:3 5448:3 5466:2 5467:1 5487:1 5488:2 5490:1 5492:2 5508:1 5607:1 5619:1 5662:1 5706:1 5720:1 5745:2 5748:1 5800:2 5825:1 5864:2 5916:1 5931:2 5962:1 6039:2 6057:2 6089:1 6101:1 6117:1 6127:1 6137:2 6158:1 6244:1 6280:1 6319:1 6321:1 6350:1 6351:1 6379:1 6476:1 6477:1 6571:1 6609:2 6612:1 6631:1 6652:2 6670:2 6675:1 6702:1 6709:1 6772:2 6779:1 6783:1 6874:1 6910:1 6932:1 6949:3 6966:1 6977:1 6979:1 6980:2 6982:3 7034:1 7097:1 7120:1 7146:1 7169:1 7307:1 7333:1 7344:1 7345:1 7396:1 7399:1 7406:2 7430:1 7433:1 7580:1 7615:1 7628:1 7634:1 7657:1 7713:1 7799:4 7801:1 7813:1 7826:1 7900:1 7937:1 7940:1 7941:1 7951:1 8013:1 8019:1 8051:1 8088:1 8122:2 8124:1 8128:3 8154:1 8207:1 8214:1 8241:1 8276:1 8283:1 8285:1 8342:1 8377:1 8391:4 8410:1 8414:1 8457:13 8487:4 8490:5 8502:1 8541:1 8554:1 8558:1 8639:1 8721:1 8765:1 8787:2 8797:1 8803:1 8816:1 8907:1 8940:9 9019:9 9072:1 9075:1 9102:1 9205:1 9226:1 9258:2 9285:3 9296:1 9393:1 9399:2 9401:1 9408:1 9559:1 9590:1 9682:1 9698:1 9707:2 9751:1 9763:1 9772:2 9798:1 9851:1 9869:1 9876:1 9885:1 9931:2 9936:5 9944:1 9960:3 9974:1 10037:1 10061:1 10093:1 10114:1 10121:1 10190:1 10193:1 10214:1 10215:1 10222:1 10354:1 10431:2 10461:2 10474:1 10563:3 10568:5 10583:3 10649:1 10663:1 10700:1 10714:1 10732:1 10743:1 10749:1 10764:1 10775:1 10781:1 10856:1 10871:2 10878:2 10925:1 10929:1 10962:1 10978:1 11082:1 11116:1 11124:1 11140:1 11218:1 11277:1 11284:1 11285:1 11425:1 11493:1 11536:1 11548:2 11587:2 11599:1 11606:1 11608:1 11612:1 11615:1 11625:1 11626:1 11629:1 11630:1 11641:1 11642:1 11714:2 11738:1 11744:2 11746:2 11818:1 11829:1 11849:2 11877:1 11926:1 11958:2 11961:1 12094:1 12101:1 12103:1 12124:1 12160:5 12192:1 12221:1 12256:1 12268:2 12309:1 12377:1 12422:1 12445:5 12512:1 12542:1 12545:2 12640:1 12682:4 12721:1 12739:1 12753:1 12758:1 12769:2 12822:1 12823:3 12848:3 12896:1 12917:1 12920:11 12999:1 13025:1 13042:2 13093:1 13121:2 13143:1 13202:1 13215:1 13216:1 13247:3 13251:1 13260:1 13281:1 13304:1 13364:2 13455:1 13539:2 13656:1 13693:1 13813:6 13858:1 13879:1 13899:11 13960:1 13984:2 14101:1 14104:1 14178:1 14257:4 14280:2 14303:8 14307:1 14345:1 14352:1 14399:1 14445:1 14446:8 14464:1 14468:13 14567:1 14590:1 14680:1 14709:1 14714:1 14719:1 14871:2 14879:1 14897:1 14913:1 14983:9 14995:1 14996:1 15037:2 15038:1 15067:2 15091:1 15092:1 15104:1 15117:1 15171:2 15196:2 15237:1 15308:1 15344:1 15387:1 15446:2 15455:1 15474:1 15519:1 15552:1 15561:1 15600:1 15615:1 15623:1 15647:1 15654:2 15698:1 15740:3 15804:1 15821:3 15835:1 15849:1 15872:1 15892:1 15903:1 15910:1 15926:2 15941:1 15954:1 15961:1 15971:1 16035:1 16048:1 16112:1 16126:1 16151:2 16193:1 16198:1 16239:1 16298:3 16304:1 16355:1 16358:2 16506:2 16515:1 16545:3 16547:1 16549:1 16553:1 16621:1 16629:1 16711:1 16762:1 16768:1 16771:12 16811:1 16822:1 16876:1 17030:2 17036:1 17041:1 17046:1 17059:1 17065:1 17066:1 17071:2 17079:1 17087:1 17125:1 17127:1 17184:1 17215:1 17319:1 17321:2 17360:1 17382:1 17421:1 17446:1 17469:1 17473:2 17507:1 17549:1 17559:1 17562:1 17593:1 17602:1 17632:1 17633:2 17641:1 17643:1 17646:1 17651:1 17656:1 17662:2 17678:1 17690:1 17695:3 17717:1 17731:1 17932:1 17987:1 18068:1 18107:1 18115:1 18122:1 18130:2 18192:1 18202:1 18225:2 18228:3 18243:1 18260:1 18266:1 18277:1 18326:1 18343:2 18347:1 18352:9 18355:1 18409:2 18412:1 18420:2 18430:1 18454:1 18488:1 18492:1 18494:2 18498:1 18537:1 18566:1 18574:1 18583:1 18587:1 18594:1 18597:1 18608:1 18620:1 18650:1 18694:1 18696:1 18709:1 18727:2 18802:1 18810:1 18867:1 18906:1 18913:1 18918:1 19043:1 19068:2 19087:1 19122:1 19133:1 19183:1 19212:1 19249:5 19292:2 19319:1 19351:2 19353:1 19357:2 19391:1 19437:1 19443:3 19450:1 19463:1 19480:1 19494:1 19518:7 19530:1 19549:1 19595:1 19601:1 19665:1 19711:1 19762:1 19774:1 19781:1 19787:1 19792:1 19852:1 19946:2 19981:3 19990:1 19992:2 20067:1 20105:1 20196:863 20200:2 20218:3 20249:1 20304:1 20328:1 20339:1 20347:2 20353:1 20422:1 20436:3 20444:1 20449:3 20451:1 20453:1 20482:1 20696:2 20757:1 20781:1 20832:2 20839:1 20858:1 20897:1 20917:1 20954:1 20955:2 20978:2 21004:2 21027:1 21056:1 21067:1 21106:1 21130:1 21158:1 21167:8 21173:1 21229:1 21363:1 21406:1 21429:1 21434:2 21465:1 21475:1 21491:2 21492:1 21500:1 21541:1 21542:1 21548:1 21560:1 21603:2 21623:1 21634:1 21742:1 21755:1 21763:1 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:3 21867:2 21894:1 21915:1 21937:5 21944:3 22056:1 22098:1 22109:1 22112:1 22162:1 22184:1 22194:1 22225:1 22228:1 22230:1 22242:2 22319:1 22348:1 22353:1 22384:1 22482:1 22485:1 22507:1 22526:1 22550:1 22554:1 22564:1 22581:1 22590:2 22614:1 22626:1 22643:1 22666:1 22719:1 22734:2 22739:1 22796:9 22803:2 22822:4 22868:1 22877:1 22888:1 22891:1 22892:1 22918:1 22960:1 22972:1 23092:2 23131:1 23136:3 23146:2 23219:1 23228:1 23234:1 23258:2 23274:1 23342:1 23360:1 23377:1 23396:1 23436:2 23438:1 23442:2 23500:1 23557:1 23558:1 23615:1 23617:1 23676:1 23686:2 23687:2 23689:3 23696:1 23700:1 23715:1 23765:1 23775:1 23796:1 23885:1 23901:1 23905:2 23916:1 24053:1 24068:1 24079:2 24095:1 24126:1 24157:1 24161:2 24166:2 24182:1 24244:1 24298:1 24311:2 24357:2 24375:2 24379:1 24414:1 24425:1 24451:1 24452:1 24534:3 24539:1 24563:1 24566:1 24584:1 24594:1 24599:1 24610:2 24612:2 24616:1 24617:1 24619:1 24638:1 24640:1 24652:2 24664:1 24672:3 24714:1 24718:2 24725:1 24727:1 24731:1 24819:1 24883:1 24913:2 24916:1 24957:2 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25188:1 25193:1 25210:1 25247:1 25274:1 25276:3 25298:2 25308:1 25346:1 25359:1 25372:1 25395:1 25417:1 25421:1 25431:1 25438:1 25465:1 25469:1 25490:1 25498:1 25534:3 25559:1 25606:1 25649:1 25817:3 25910:8 25996:1 26071:1 26111:1 26136:1 26142:1 26151:1 26160:1 26170:1 26172:5 26197:1 26201:1 26202:1 26236:1 26334:1 26397:1 26398:1 26399:1 26405:1 26408:1 26409:1 26470:1 26483:1 26487:2 26496:1 26497:1 26510:1 26518:1 26535:3 26576:1 26607:1 26631:2 26645:1 26654:1 26678:1 26754:1 26799:2 26861:1 26870:1 26916:1 26986:1 26991:5 27000:1 27002:1 27019:1 27043:1 27044:1 27242:1 27244:4 27276:1 27277:1 27290:1 27296:1 27305:2 27384:1 27472:1 27507:1 27512:1 27534:1 27544:1 27599:1 27600:1 27734:1 27750:1 27770:1 27801:1 27802:1 27814:1 27869:1 27910:1 27976:1 27999:1 28073:1 28076:1 28091:1 28105:1 28131:3 28150:1 28152:1 28154:1 28159:3 28180:1 28192:1 28219:1 28222:3 28235:1 28245:1 28308:3 28326:2 28349:1 28391:2 28405:1 28429:1 28484:1 28511:1 28533:1 28554:1 28602:1 28611:1 28644:2 28675:1 28680:1 28687:1 28703:1 28756:1 28867:1 28912:1 28916:1 29142:1 29209:1 29292:1 29315:1 29372:2 29390:1 29411:3 29482:1 29509:1 29550:1 29576:3 29596:1 29637:1 29658:1 29668:1 29684:2 29689:1 29696:1 29706:1 29718:1 29789:2 29816:1 29848:1 29934:2 29938:1 29979:1 30031:2 30044:1 30045:5 30067:1 30097:1 30240:3 30289:1 30319:3 30331:1 30336:1 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30479:6 30480:1 30537:1 30550:1 30581:1 30623:1 30630:2 30655:1 30675:3 30711:3 30713:1 30747:1 30764:2 30768:1 30805:2 30810:1 30846:1 30882:2 30903:1 30933:1 30996:1 31041:2 31043:2 31115:1 31118:1 31121:1 31125:1 31253:2 31268:1 31272:10 31306:1 31342:1 31362:1 31369:1 31495:1 31496:1 31506:1 31514:1 31667:1 31718:1 31756:1 31765:1 31781:1 31801:1 31803:1 31815:1 31826:1 31852:1 31873:1 31890:1 31896:1 31898:1 31902:1 31914:1 31934:1 31958:1 31962:1 31977:1
20 18:1 26:1 30:1 78:1 95:1 111:1 120:1 158:1 181:1 253:1 261:1 274:2 278:1 290:3 331:1 355:1 404:1 482:1 489:1 536:1 596:1 623:1 696:1 704:1 770:1 990:1 1025:1 1034:2 1057:1 1064:1 1067:1 1069:2 1095:1 1135:3 1136:3 1198:1 1200:2 1205:1 1226:1 1255:1 1292:1 1305:1 1341:1 1389:1 1402:1 1407:1 1420:1 1491:1 1533:1 1563:1 1576:1 1608:1 1631:1 1651:3 1662:1 1668:1 1670:1 1671:1 1678:1 1691:2 1725:6 1729:1 1741:1 1759:2 1778:1 1799:1 1811:9 1877:1 1967:1 1968:4 1973:1 2026:1 2035:2 2064:1 2105:1 2116:2 2127:1 2145:1 2163:1 2210:1 2229:1 2245:4 2284:1 2285:3 2296:1 2354:3 2389:1 2403:1 2433:1 2435:8 2438:1 2450:1 2451:1 2452:1 2458:1 2475:1 2512:1 2514:4 2531:1 2533:1 2535:1 2539:1 2542:2 2546:1 2549:1 2554:2 2629:1 2645:1 2723:1 2741:1 2767:1 2801:1 2839:1 2853:1 2870:1 2875:1 2898:1 2914:1 2948:1 2965:1 2970:1 3012:2 3050:1 3084:1 3120:1 3128:1 3159:3 3168:5 3169:2 3171:1 3184:2 3204:1 3214:6 3320:1 3347:2 3422:3 3463:1 3537:1 3553:1 3598:1 3607:1 3660:2 3695:2 3751:1 3825:1 3835:1 3901:1 3966:1 3970:1 4009:1 4042:1 4059:1 4126:1 4127:1 4175:2 4176:1 4207:1 4211:3 4279:1 4296:1 4306:1 4345:1 4346:1 4391:1 4392:1 4414:1 4425:1 4472:1 4535:1 4587:1 4702:1 4730:1 4768:1 4776:1 4780:1 4791:1 4794:1 4836:1 4838:1 4872:1 4958:1 5012:1 5055:1 5067:1 5078:1 5086:1 5131:1 5136:2 5186:1 5196:1 5227:1 5245:1 5247:1 5306:1 5332:5 5444:3 5448:3 5466:2 5467:1 5487:1 5488:2 5490:1 5492:2 5508:1 5607:1 5619:1 5662:1 5706:1 5720:1 5745:2 5748:1 5800:2 5825:1 5839:1 5864:2 5901:1 5916:1 5931:2 5962:1 5977:1 6039:2 6057:2 6089:1 6101:1 6117:1 6127:1 6137:2 6158:1 6244:1 6280:1 6319:1 6321:1 6350:1 6351:1 6379:1 6476:1 6477:1 6571:1 6609:2 6612:1 6631:1 6652:2 6670:2 6675:1 6702:1 6709:1 6772:2 6779:1 6783:1 6874:1 6910:1 6932:1 6949:3 6966:1 6977:1 6979:1 6980:2 6982:3 7034:1 7097:1 7120:1 7146:1 7169:1 7215:1 7262:1 7307:1 7333:1 7344:1 7345:2 7392:1 7396:1 7399:1 7406:2 7430:1 7433:1 7580:1 7615:1 7628:1 7634:1 7657:1 7713:1 7799:4 7801:1 7813:1 7826:1 7900:1 7937:1 7940:1 7941:1 7951:1 8013:1 8019:1 8025:1 8051:1 8088:1 8122:3 8124:1 8128:3 8154:1 8207:1 8214:1 8241:1 8276:1 8283:1 8285:1 8342:1 8377:1 8391:4 8410:1 8414:1 8457:14 8487:4 8490:6 8502:1 8541:2 8554:1 8558:1 8639:1 8721:1 8765:1 8787:2 8797:1 8803:1 8816:1 8907:1 8940:9 9019:10 9072:1 9075:1 9102:1 9205:1 9226:1 9258:2 9285:3 9296:1 9393:1 9399:2 9401:1 9408:1 9559:1 9590:1 9682:1 9698:1 9707:2 9751:1 9763:1 9772:2 9798:1 9851:1 9869:1 9876:1 9885:1 9931:2 9936:5 9944:1 9960:3 9974:1 10037:1 10061:1 10093:1 10114:1 10121:1 10190:1 10193:1 10214:1 10215:1 10222:1 10313:1 10354:1 10431:2 10457:1 10461:2 10474:1 10559:1 10563:3 10568:5 10583:3 10649:1 10663:1 10700:1 10714:1 10732:1 10743:1 10749:1 10764:1 10775:1 10781:1 10856:1 10871:2 10878:2 10925:1 10929:1 10944:1 10962:1 10978:1 11082:1 11116:1 11124:1 11140:1 11218:1 11277:1 11284:1 11285:1 11335:1 11425:1 11493:1 11536:1 11548:2 11587:2 11599:1 11606:1 11608:1 11612:1 11615:1 11625:1 11626:1 11629:1 11630:1 11641:1 11642:1 11714:2 11738:1 11744:3 11746:2 11818:1 11829:1 11849:3 11877:1 11926:1 11958:2 11961:1 12094:1 12101:1 12103:1 12124:1 12160:5 12192:1 12221:1 12256:1 12268:3 12309:1 12359:1 12377:1 12422:1 12445:5 12512:1 12542:1 12545:2 12640:1 12682:4 12721:1 12727:1 12739:1 12753:1 12758:1 12769:2 12822:1 12823:3 12848:3 12896:1 12917:1 12920:11 12999:1 13025:1 13042:2 13093:1 13121:2 13143:1 13160:1 13202:1 13215:1 13216:1 13247:3 13251:1 13260:1 13281:1 13288:1 13304:1 13364:2 13392:1 13455:1 13539:2 13656:2 13693:1 13813:6 13839:1 13858:1 13879:1 13899:11 13906:1 13926:1 13960:1 13984:2 14101:1 14104:1 14178:1 14257:4 14274:1 14280:2 14303:8 14307:1 14345:1 14352:1 14399:1 14445:1 14446:8 14464:1 14468:14 14567:1 14590:1 14680:1 14709:1 14714:1 14719:1 14871:2 14879:1 14897:1 14913:1 14983:10 14995:1 14996:1 15036:1 15037:2 15038:1 15067:2 15091:1 15092:1 15104:1 15117:1 15171:2 15196:2 15237:1 15305:1 15308:1 15344:1 15387:1 15446:2 15455:1 15474:1 15519:1 15552:1 15561:1 15600:1 15604:1 15615:1 15623:1 15647:1 15654:2 15698:1 15740:3 15762:1 15804:1 15821:3 15835:1 15849:1 15872:1 15892:1 15903:1 15910:1 15926:2 15941:1 15954:1 15961:1 15971:1 16035:1 16048:1 16112:1 16126:1 16151:2 16193:1 16198:1 16239:1 16298:3 16304:1 16355:1 16358:2 16506:2 16515:1 16545:3 16547:1 16549:1 16553:1 16621:1 16629:1 16711:1 16762:1 16768:1 16771:14 16808:1 16811:1 16822:1 16876:1 17030:2 17036:1 17041:1 17046:1 17059:1 17065:1 17066:1 17071:2 17079:1 17087:1 17125:2 17127:1 17184:1 17215:1 17319:1 17321:2 17360:1 17382:1 17421:1 17446:1 17469:1 17473:2 17507:2 17549:1 17557:1 17559:1 17562:1 17593:1 17602:1 17632:1 17633:2 17641:2 17643:1 17646:1 17651:1 17656:1 17662:2 17678:1 17690:1 17695:3 17717:1 17731:1 17932:1 17987:1 18068:1 18107:1 18115:1 18122:1 18130:2 18192:1 18202:1 18225:2 18228:3 18243:1 18260:1 18266:1 18277:2 18326:1 18343:2 18347:1 18352:9 18355:1 18409:2 18412:1 18420:2 18430:1 18454:1 18488:1 18492:1 18494:2 18498:1 18537:1 18566:1 18574:1 18583:1 18587:1 18594:1 18597:1 18608:1 18620:1 18623:1 18650:1 18694:1 18696:1 18709:1 18727:2 18802:1 18810:1 18867:1 18906:1 18913:1 18918:1 19043:1 19068:2 19087:1 19122:1 19133:1 19183:1 19212:1 19249:5 19292:2 19319:1 19351:3 19353:1 19357:2 19391:1 19437:1 19441:1 19443:3 19450:1 19463:1 19480:1 19494:1 19518:8 19530:1 19549:1 19595:1 19601:1 19642:1 19665:1 19711:1 19762:1 19774:1 19781:1 19787:1 19792:1 19827:1 19852:1 19946:2 19981:3 19990:1 19992:2 20067:1 20105:1 20196:1003 20200:2 20218:3 20249:1 20304:1 20328:1 20339:1 20347:2 20353:1 20422:1 20436:3 20444:1 20449:3 20451:1 20453:1 20482:1 20510:1 20530:1 20696:2 20757:1 20781:1 20832:2 20839:1 20858:1 20897:1 20917:1 20954:1 20955:2 20978:2 21004:2 21027:1 21056:1 21067:1 21106:1 21130:1 21158:1 21167:8 21173:1 21229:1 21363:1 21406:1 21429:1 21434:2 21465:1 21475:1 21491:2 21492:1 21500:1 21541:1 21542:1 21548:1 21560:1 21603:2 21623:1 21634:1 21742:1 21755:1 21763:2 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:3 21867:2 21894:1 21915:1 21937:5 21944:3 22002:1 22056:1 22098:1 22109:1 22112:1 22162:1 22184:1 22194:1 22225:1 22228:1 22230:1 22242:2 22319:1 22348:1 22353:1 22384:1 22482:1 22485:1 22507:1 22526:1 22550:1 22554:1 22564:1 22581:1 22590:2 22614:1 22626:1 22643:1 22666:1 22719:1 22734:3 22739:1 22796:10 22803:2 22822:4 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22918:1 22960:2 22972:1 23092:3 23131:1 23136:3 23146:2 23219:1 23228:1 23234:1 23258:2 23274:1 23342:1 23360:1 23377:1 23396:2 23436:2 23438:1 23442:2 23500:1 23557:1 23558:1 23615:1 23617:1 23676:1 23686:2 23687:2 23689:3 23696:1 23700:1 23715:1 23765:1 23775:1 23796:1 23885:1 23901:1 23905:2 23916:1 24053:1 24068:1 24079:2 24095:1 24126:1 24157:1 24161:2 24166:2 24182:1 24218:1 24244:1 24245:1 24298:1 24311:2 24357:2 24361:1 24375:2 24379:1 24414:1 24425:1 24451:1 24452:1 24534:3 24539:1 24563:1 24566:1 24584:1 24594:1 24599:1 24610:2 24612:2 24616:1 24617:1 24619:1 24638:1 24640:1 24652:3 24664:1 24672:3 24714:1 24718:2 24725:1 24727:1 24731:1 24819:1 24883:1 24913:2 24916:1 24957:2 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25188:1 25193:1 25210:1 25247:1 25274:1 25276:3 25298:2 25308:1 25346:1 25359:1 25372:1 25395:1 25417:1 25421:1 25431:1 25438:1 25465:2 25469:1 25490:1 25498:1 25534:3 25559:1 25606:1 25649:1 25779:1 25817:3 25909:1 25910:8 25996:1 26071:1 26111:1 26136:1 26142:1 26151:1 26160:1 26170:1 26172:6 26174:1 26197:1 26201:1 26202:1 26236:1 26334:1 26397:1 26398:1 26399:1 26405:1 26408:1 26409:1 26470:1 26483:1 26487:2 26496:1 26497:1 26510:1 26518:1 26535:3 26576:1 26607:1 26631:2 26645:1 26654:1 26678:1 26754:1 26799:2 26861:1 26870:1 26916:1 26986:1 26991:5 27000:1 27002:1 27019:1 27043:1 27044:1 27242:1 27244:4 27276:1 27277:1 27290:2 27296:1 27305:2 27384:1 27472:1 27507:1 27512:1 27534:1 27544:1 27599:1 27600:1 27734:1 27750:1 27770:1 27801:1 27802:1 27814:1 27869:1 27910:1 27976:1 27999:1 28073:1 28076:1 28091:1 28105:1 28131:3 28150:1 28152:1 28154:1 28159:3 28180:1 28192:1 28219:1 28222:3 28235:1 28245:1 28308:3 28326:2 28349:1 28391:2 28405:1 28429:1 28484:1 28507:1 28511:1 28517:1 28533:1 28554:1 28602:1 28611:1 28644:2 28675:1 28680:1 28687:1 28703:1 28756:1 28867:1 28912:1 28916:1 29142:1 29209:1 29292:1 29315:1 29372:2 29390:1 29411:4 29482:2 29486:1 29509:1 29550:1 29576:4 29596:1 29637:1 29658:1 29668:1 29684:2 29689:1 29696:1 29706:1 29718:1 29789:2 29816:1 29848:1 29934:2 29938:1 29979:1 30031:2 30044:1 30045:5 30067:1 30097:1 30240:3 30289:1 30319:3 30331:1 30336:1 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30479:6 30480:1 30537:1 30550:1 30581:1 30623:1 30630:2 30655:1 30675:3 30711:3 30713:1 30747:1 30764:2 30768:1 30805:2 30810:1 30846:1 30882:2 30903:1 30933:1 30996:1 31041:2 31043:2 31115:1 31118:1 31121:1 31125:1 31253:2 31267:1 31268:1 31272:10 31306:1 31342:1 31362:1 31369:1 31380:1 31495:1 31496:1 31506:1 31514:1 31667:1 31718:1 31756:1 31765:1 31781:1 31801:1 31803:1 31815:1 31826:1 31852:1 31873:1 31890:1 31896:1 31898:1 31902:1 31911:1 31914:1 31934:1 31958:1 31962:1 31977:1
20 18:1 26:1 30:1 78:1 95:1 111:1 120:1 158:1 181:1 253:1 261:1 274:2 278:1 290:3 331:1 355:1 404:1 482:1 489:2 536:1 596:1 623:1 696:1 704:1 770:1 990:1 1011:1 1025:1 1034:2 1057:1 1064:1 1067:1 1069:2 1095:1 1135:3 1136:3 1198:1 1200:2 1205:1 1226:1 1255:1 1292:1 1305:1 1341:1 1389:1 1402:1 1407:1 1420:1 1491:1 1533:1 1563:1 1576:1 1608:1 1631:1 1651:3 1662:1 1668:1 1670:1 1671:1 1678:1 1691:2 1725:6 1729:1 1741:1 1759:2 1778:1 1799:1 1811:9 1877:1 1903:1 1967:1 1968:4 1973:1 1976:1 2026:1 2035:2 2064:1 2105:1 2116:2 2127:1 2145:1 2163:1 2210:1 2229:1 2245:4 2284:1 2285:3 2296:1 2354:3 2389:1 2403:1 2433:1 2435:8 2438:1 2450:1 2451:1 2452:1 2458:1 2475:1 2512:1 2514:4 2520:1 2531:1 2533:1 2535:2 2539:2 2542:2 2546:1 2549:1 2554:2 2629:1 2645:1 2723:1 2741:1 2767:1 2801:1 2839:1 2853:1 2869:1 2870:1 2875:1 2898:1 2914:1 2948:1 2965:1 2970:2 3012:2 3050:1 3084:1 3120:1 3128:1 3159:3 3168:5 3169:2 3171:1 3184:2 3204:1 3214:7 3320:1 3347:2 3422:3 3463:1 3537:1 3553:1 3598:1 3607:1 3660:2 3695:2 3751:1 3780:1 3825:1 3835:1 3901:1 3966:1 3970:1 4009:1 4013:1 4042:1 4059:1 4063:1 4075:1 4126:1 4127:2 4175:3 4176:1 4207:1 4211:3 4279:1 4296:1 4306:1 4345:1 4346:1 4391:1 4392:1 4414:1 4425:1 4472:1 4535:1 4587:1 4702:1 4730:1 4768:1 4776:1 4780:1 4791:1 4794:1 4836:1 4838:1 4872:1 4958:1 5012:1 5055:1 5067:1 5078:1 5086:1 5131:1 5136:2 5186:1 5196:1 5227:1 5245:1 5247:1 5283:1 5306:1 5332:5 5444:3 5448:4 5466:2 5467:1 5487:1 5488:2 5490:1 5492:2 5508:1 5607:1 5619:1 5662:1 5706:1 5720:1 5745:2 5748:1 5800:2 5825:1 5839:1 5864:2 5901:1 5916:1 5931:2 5962:1 5977:1 6039:2 6057:2 6089:1 6101:1 6107:1 6117:1 6127:1 6137:3 6158:1 6225:1 6244:1 6280:1 6319:1 6321:1 6350:1 6351:1 6379:1 6476:1 6477:1 6532:1 6571:1 6609:2 6612:1 6631:1 6652:2 6670:2 6675:1 6702:1 6709:1 6772:2 6779:1 6783:1 6874:1 6910:1 6932:1 6949:3 6966:1 6971:1 6977:1 6979:1 6980:2 6982:3 7034:1 7097:1 7120:1 7146:1 7169:1 7215:1 7262:1 7307:1 7328:1 7333:1 7344:1 7345:2 7392:1 7396:1 7399:1 7401:1 7406:2 7430:1 7433:1 7489:1 7580:1 7615:1 7628:1 7634:1 7657:1 7713:1 7799:4 7801:1 7813:1 7826:1 7900:1 7937:1 7940:1 7941:1 7951:1 8013:1 8019:1 8025:1 8051:1 8069:1 8088:1 8122:3 8124:1 8128:3 8154:1 8207:1 8214:1 8241:1 8276:1 8283:1 8285:1 8342:1 8377:1 8383:1 8391:4 8410:1 8414:1 8417:1 8457:15 8487:4 8490:6 8502:1 8541:2 8554:1 8558:1 8639:1 8721:1 8765:1 8787:2 8797:1 8803:1 8816:1 8907:1 8929:1 8940:9 8983:1 9019:11 9072:1 9075:1 9102:1 9205:1 9226:1 9258:2 9285:3 9296:1 9343:1 9393:1 9399:2 9401:1 9408:1 9495:1 9559:1 9590:1 9682:1 9698:1 9707:2 9751:1 9763:1 9772:2 9798:1 9851:1 9869:1 9876:1 9885:1 9931:2 9936:5 9944:1 9960:3 9974:1 10037:1 10061:1 10093:1 10114:1 10121:1 10190:1 10193:1 10214:1 10215:1 10222:1 10313:1 10354:1 10431:2 10457:1 10461:2 10474:1 10559:1 10563:3 10568:5 10583:3 10649:1 10663:1 10667:1 10700:1 10714:1 10732:1 10743:1 10749:1 10764:1 10775:1 10781:1 10856:1 10871:2 10878:2 10925:1 10929:1 10944:2 10962:1 10978:1 11082:1 11116:1 11124:1 11140:1 11218:1 11277:1 11284:1 11285:1 11335:1 11425:1 11493:1 11536:1 11548:2 11587:2 11599:1 11606:1 11608:1 11612:1 11615:1 11625:1 11626:1 11629:1 11630:1 11641:1 11642:1 11714:2 11723:1 11738:1 11744:3 11746:3 11818:1 11829:1 11849:3 11877:1 11913:1 11926:1 11958:2 11961:1 12024:1 12094:1 12101:1 12103:1 12124:1 12126:1 12160:5 12166:1 12192:1 12221:1 12256:1 12268:3 12309:1 12359:1 12377:1 12422:1 12445:5 12512:1 12542:1 12545:2 12640:1 12682:4 12721:1 12727:1 12739:1 12753:1 12758:1 12769:2 12772:1 12822:1 12823:3 12848:3 12896:1 12917:1 12920:11 12999:1 13025:1 13042:2 13093:1 13121:2 13143:1 13160:1 13202:1 13215:1 13216:1 13226:1 13227:1 13247:3 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13364:2 13392:1 13455:1 13539:2 13656:2 13693:1 13751:1 13813:6 13839:1 13858:1 13879:1 13899:11 13906:1 13926:1 13960:1 13984:2 14024:1 14101:1 14104:1 14178:1 14257:4 14274:1 14280:2 14303:8 14307:1 14345:1 14352:1 14399:1 14445:1 14446:8 14464:1 14468:14 14567:1 14590:1 14680:1 14709:1 14714:1 14719:1 14868:1 14871:2 14879:1 14897:1 14913:1 14931:1 14983:10 14995:1 14996:1 15036:1 15037:2 15038:1 15067:2 15091:1 15092:1 15104:1 15117:1 15171:2 15196:2 15237:1 15297:1 15305:1 15308:1 15344:1 15387:1 15446:2 15455:1 15474:1 15519:1 15552:1 15561:1 15597:1 15600:1 15604:1 15615:1 15623:1 15647:1 15654:2 15698:1 15740:3 15762:1 15804:1 15821:3 15835:1 15849:1 15872:1 15873:1 15892:1 15903:1 15910:1 15926:2 15937:1 15941:1 15954:1 15961:1 15971:1 16035:1 16048:1 16112:1 16126:1 16151:2 16166:1 16193:1 16198:1 16239:1 16298:3 16304:1 16355:1 16358:2 16506:2 16515:1 16545:3 16547:1 16549:1 16553:1 16621:1 16629:1 16711:1 16762:1 16768:1 16771:14 16808:1 16811:1 16822:1 16876:1 16919:1 17030:2 17036:1 17041:1 17046:1 17059:1 17065:1 17066:1 17071:2 17079:1 17087:1 17125:2 17127:1 17184:1 17215:1 17216:1 17319:1 17321:2 17360:1 17382:1 17421:1 17446:1 17469:1 17473:2 17507:3 17549:1 17557:1 17559:1 17562:1 17593:1 17602:1 17632:1 17633:2 17641:2 17643:1 17646:1 17651:1 17656:1 17658:1 17662:2 17678:1 17690:1 17695:3 17717:1 17731:1 17932:1 17987:1 18039:1 18068:1 18102:1 18107:1 18115:1 18122:1 18130:2 18192:1 18202:1 18225:2 18228:3 18243:1 18260:1 18266:1 18277:2 18310:1 18326:1 18343:2 18347:1 18352:9 18355:1 18409:2 18412:1 18420:2 18430:1 18454:1 18488:1 18492:1 18494:2 18498:1 18537:1 18566:1 18574:1 18583:1 18587:1 18594:1 18597:1 18608:1 18620:1 18623:1 18650:1 18694:1 18696:1 18709:1 18727:2 18802:1 18810:1 18867:1 18906:1 18913:1 18918:1 19043:1 19068:2 19087:1 19122:1 19133:1 19183:1 19205:1 19212:1 19222:1 19249:5 19292:2 19319:1 19351:3 19353:1 19357:2 19391:1 19437:1 19441:1 19443:3 19450:1 19463:1 19480:1 19494:1 19518:8 19530:1 19549:1 19595:1 19601:1 19642:1 19665:1 19711:1 19762:1 19774:1 19781:1 19787:1 19792:1 19827:1 19852:1 19862:1 19946:2 19981:3 19990:1 19992:2 20067:1 20105:1 20196:1037 20200:2 20218:3 20249:1 20289:1 20304:1 20328:1 20339:1 20341:1 20347:2 20353:1 20422:1 20436:3 20444:1 20449:3 20451:1 20453:1 20482:1 20510:1 20530:2 20696:2 20757:1 20781:1 20819:1 20832:2 20839:1 20850:1 20858:1 20897:1 20917:1 20954:1 20955:2 20978:2 21004:2 21027:1 21041:1 21056:1 21067:1 21106:1 21130:1 21158:1 21167:8 21173:1 21229:1 21363:1 21406:1 21429:1 21434:2 21465:1 21475:1 21491:2 21492:1 21500:1 21506:1 21541:1 21542:1 21548:1 21560:1 21603:2 21623:1 21634:1 21742:1 21755:1 21763:2 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:3 21867:2 21894:1 21915:1 21937:5 21944:3 21991:1 22002:1 22056:1 22098:1 22109:1 22112:1 22162:1 22184:1 22194:1 22225:1 22228:1 22230:1 22240:1 22242:2 22319:1 22348:1 22353:1 22384:1 22482:1 22485:1 22507:1 22526:1 22550:1 22554:1 22564:1 22581:1 22590:2 22614:1 22626:1 22643:1 22666:1 22719:1 22734:3 22739:1 22796:10 22803:2 22822:4 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22918:1 22960:2 22972:1 23092:3 23131:1 23136:3 23146:2 23219:1 23228:1 23234:1 23258:2 23264:1 23274:1 23275:1 23342:1 23360:1 23377:1 23396:2 23436:2 23438:1 23442:2 23500:1 23557:1 23558:1 23613:1 23615:1 23617:1 23676:1 23686:2 23687:2 23689:3 23696:1 23700:1 23715:1 23765:1 23775:1 23796:1 23885:1 23901:1 23905:2 23916:1 23994:1 24053:1 24068:1 24079:2 24095:1 24126:1 24157:1 24161:2 24166:2 24182:1 24218:1 24244:1 24245:1 24298:1 24311:2 24357:2 24361:1 24375:2 24379:1 24414:1 24425:1 24451:1 24452:1 24488:1 24534:3 24539:1 24563:1 24566:1 24584:1 24594:1 24599:1 24610:2 24612:2 24616:1 24617:1 24619:1 24638:1 24640:1 24652:3 24664:1 24672:3 24714:1 24718:2 24725:1 24727:1 24731:1 24819:1 24883:1 24913:2 24916:1 24957:2 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25166:1 25188:1 25193:1 25210:1 25247:1 25274:1 25276:3 25298:2 25308:1 25346:1 25359:1 25364:1 25372:1 25395:1 25417:1 25421:1 25431:1 25438:1 25465:3 25469:1 25490:1 25498:1 25534:3 25559:1 25560:1 25606:1 25649:1 25779:1 25817:3 25909:1 25910:8 25996:1 26071:1 26111:1 26136:1 26142:1 26151:1 26160:1 26170:1 26172:6 26174:1 26197:1 26201:1 26202:1 26236:1 26334:1 26397:1 26398:1 26399:1 26405:1 26408:1 26409:1 26427:1 26470:1 26483:1 26487:2 26496:1 26497:1 26510:1 26518:1 26535:3 26575:1 26576:1 26607:1 26631:2 26645:1 26654:1 26678:1 26754:1 26799:2 26861:1 26870:1 26916:1 26986:1 26991:5 27000:1 27002:1 27019:1 27043:1 27044:1 27242:1 27244:4 27276:1 27277:1 27290:2 27296:1 27305:2 27384:1 27472:1 27507:1 27512:1 27534:1 27544:1 27599:1 27600:1 27734:1 27750:1 27770:1 27801:1 27802:1 27814:1 27869:1 27910:1 27952:1 27976:1 27999:1 28073:1 28076:1 28091:1 28105:1 28131:3 28150:1 28152:1 28154:1 28159:3 28180:1 28192:1 28215:1 28219:1 28222:3 28235:1 28245:1 28308:3 28326:2 28349:1 28391:3 28405:1 28429:1 28484:1 28507:1 28511:1 28517:1 28533:1 28554:1 28578:1 28602:1 28611:1 28644:2 28675:1 28680:1 28687:1 28703:1 28747:1 28756:1 28867:1 28912:1 28916:1 29142:1 29209:1 29292:1 29315:1 29372:2 29390:1 29403:1 29411:4 29482:3 29486:1 29509:1 29550:1 29576:4 29596:1 29601:1 29637:1 29658:1 29668:1 29684:2 29689:1 29696:1 29706:1 29718:1 29789:2 29816:1 29848:1 29934:2 29938:1 29979:1 30031:2 30044:1 30045:5 30067:1 30097:1 30240:3 30289:1 30319:3 30331:1 30336:1 30372:1 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30479:6 30480:1 30537:1 30550:1 30581:1 30623:1 30630:2 30655:1 30661:1 30675:3 30711:3 30713:1 30747:1 30764:2 30768:1 30805:2 30810:1 30846:1 30882:2 30903:1 30933:1 30996:1 31041:2 31043:3 31115:1 31118:1 31121:1 31125:1 31253:2 31267:1 31268:1 31272:10 31306:1 31342:1 31362:1 31369:1 31380:1 31413:1 31458:1 31495:1 31496:1 31506:1 31514:1 31667:1 31705:1 31718:1 31756:1 31765:1 31781:1 31801:1 31803:1 31815:1 31826:1 31852:1 31873:1 31890:1 31896:1 31898:1 31902:1 31911:1 31914:1 31934:1 31958:1 31962:1 31977:1
20 18:1 23:1 26:1 30:1 78:1 95:1 111:1 120:1 158:1 181:1 253:1 261:1 274:2 278:1 290:3 331:1 355:1 404:1 482:1 489:2 536:1 596:1 623:1 696:1 704:1 770:1 956:1 971:1 990:1 1011:1 1025:1 1034:2 1057:1 1064:1 1067:2 1069:2 1095:1 1135:3 1136:3 1198:1 1200:2 1205:1 1226:1 1255:1 1292:1 1305:1 1341:1 1389:1 1402:1 1407:1 1420:1 1491:1 1533:1 1563:1 1576:1 1594:1 1608:1 1631:1 1651:3 1662:1 1668:1 1670:1 1671:1 1678:1 1691:2 1725:6 1729:1 1737:1 1741:1 1746:1 1756:1 1759:2 1778:1 1799:1 1811:9 1863:1 1877:1 1903:1 1967:1 1968:4 1973:1 1976:1 2026:1 2035:2 2064:1 2105:1 2116:2 2127:1 2145:1 2163:1 2210:1 2229:1 2245:4 2284:1 2285:3 2296:1 2301:1 2354:3 2389:1 2395:1 2403:1 2433:1 2435:8 2438:1 2450:1 2451:1 2452:1 2458:1 2472:1 2475:2 2512:1 2514:4 2517:1 2520:1 2531:2 2533:1 2535:2 2539:2 2542:2 2546:1 2549:1 2554:2 2629:1 2645:1 2723:1 2741:1 2767:1 2801:1 2839:1 2853:1 2869:1 2870:1 2875:1 2898:1 2914:1 2948:1 2965:1 2970:2 3012:2 3050:1 3084:1 3087:1 3120:1 3128:1 3159:3 3168:6 3169:2 3171:1 3184:2 3204:1 3214:7 3320:1 3347:2 3422:3 3463:1 3537:1 3553:1 3598:1 3607:1 3660:2 3695:2 3723:1 3751:1 3780:1 3825:1 3835:1 3901:1 3966:1 3970:1 4009:1 4013:1 4042:1 4059:1 4063:1 4075:1 4118:1 4126:1 4127:2 4175:3 4176:1 4207:1 4211:4 4213:1 4279:1 4296:1 4306:1 4317:1 4345:1 4346:1 4391:1 4392:1 4414:1 4423:1 4425:1 4472:1 4535:1 4587:1 4702:1 4730:1 4768:1 4776:1 4780:1 4791:1 4794:1 4836:1 4838:1 4872:1 4958:1 5012:1 5046:1 5055:1 5067:1 5078:1 5086:1 5131:1 5136:2 5186:1 5196:1 5227:1 5245:1 5247:1 5283:1 5306:1 5332:5 5349:1 5444:3 5448:4 5466:2 5467:1 5487:1 5488:2 5490:1 5492:2 5508:1 5607:1 5619:1 5662:1 5706:1 5715:1 5720:1 5745:2 5748:1 5800:2 5825:1 5839:1 5864:2 5901:1 5916:1 5931:2 5962:1 5977:1 6039:2 6057:2 6089:1 6101:1 6107:1 6117:1 6127:1 6137:3 6158:1 6189:1 6225:1 6244:1 6280:1 6319:1 6321:1 6350:1 6351:1 6379:1 6463:1 6467:1 6476:1 6477:1 6532:1 6571:1 6609:2 6612:1 6631:1 6652:2 6670:2 6675:1 6702:1 6709:1 6721:1 6772:2 6779:1 6783:1 6874:1 6910:1 6932:1 6949:3 6966:1 6971:1 6977:1 6979:1 6980:2 6982:3 7034:1 7097:1 7120:1 7146:1 7169:1 7215:1 7262:1 7307:1 7328:1 7333:1 7344:1 7345:2 7361:1 7392:1 7396:1 7399:1 7401:1 7406:2 7430:1 7433:1 7457:1 7489:1 7580:2 7615:1 7628:1 7634:1 7657:1 7688:1 7713:1 7717:1 7799:4 7801:1 7813:1 7826:1 7900:1 7937:1 7940:1 7941:1 7951:1 8013:1 8019:1 8025:1 8051:1 8069:1 8088:1 8122:3 8124:1 8128:3 8144:1 8154:1 8207:1 8214:1 8241:1 8250:1 8276:1 8283:1 8285:1 8290:1 8342:1 8349:1 8377:1 8383:1 8391:4 8410:1 8414:1 8417:1 8457:17 8487:4 8490:6 8502:1 8541:2 8554:2 8558:1 8639:1 8721:1 8765:1 8787:2 8797:1 8803:1 8816:1 8903:1 8907:1 8929:1 8940:9 8947:1 8983:1 9019:13 9072:1 9075:1 9089:1 9102:1 9205:1 9226:1 9258:2 9276:1 9285:3 9296:1 9343:1 9383:1 9393:2 9399:2 9401:1 9408:1 9413:1 9495:1 9559:1 9590:1 9643:1 9682:1 9698:1 9707:2 9751:1 9763:1 9772:2 9798:1 9851:1 9869:1 9876:1 9885:1 9931:2 9936:5 9940:2 9944:1 9960:3 9974:1 10037:1 10061:1 10086:1 10093:1 10114:1 10121:1 10190:2 10193:1 10214:1 10215:1 10222:1 10313:1 10354:1 10431:2 10457:1 10461:2 10474:1 10559:1 10563:3 10568:5 10583:3 10649:1 10651:1 10663:1 10667:1 10700:1 10714:1 10732:1 10743:1 10749:1 10764:1 10775:1 10781:1 10856:1 10871:2 10878:2 10925:1 10929:1 10944:2 10962:1 10978:1 11082:1 11116:1 11124:1 11140:1 11218:2 11277:1 11284:1 11285:1 11292:1 11335:1 11425:1 11493:1 11536:1 11548:2 11556:1 11587:2 11599:1 11606:1 11608:1 11612:1 11615:1 11620:1 11625:1 11626:1 11629:1 11630:1 11641:1 11642:1 11673:1 11714:2 11723:1 11736:1 11738:1 11744:3 11746:3 11818:1 11829:1 11835:2 11849:3 11877:1 11913:1 11926:1 11958:2 11961:1 12024:1 12094:1 12101:1 12103:1 12124:1 12126:1 12160:5 12166:1 12192:1 12197:1 12221:1 12256:1 12268:3 12273:1 12309:1 12359:1 12377:1 12406:1 12422:1 12441:1 12445:6 12512:1 12542:1 12545:2 12640:1 12682:4 12721:1 12727:1 12739:1 12753:1 12758:1 12769:2 12772:1 12822:1 12823:3 12848:3 12896:1 12917:1 12920:11 12999:1 13025:1 13042:2 13055:1 13093:1 13121:2 13143:1 13160:1 13202:1 13215:1 13216:2 13226:1 13227:1 13247:3 13250:1 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13364:2 13392:1 13455:1 13539:2 13656:2 13693:1 13732:1 13751:1 13813:6 13816:1 13839:1 13858:1 13879:1 13899:11 13906:1 13926:1 13960:1 13984:2 14023:1 14024:1 14101:1 14104:1 14178:1 14257:4 14274:1 14280:2 14303:8 14307:1 14345:1 14352:1 14399:1 14400:1 14445:1 14446:8 14464:1 14468:14 14567:1 14590:1 14618:1 14680:1 14709:1 14714:1 14719:1 14866:1 14868:1 14871:2 14879:1 14897:2 14913:1 14931:1 14983:10 14995:1 14996:1 15036:1 15037:2 15038:1 15067:2 15078:1 15091:1 15092:1 15094:1 15104:1 15117:1 15171:2 15174:1 15196:2 15237:1 15297:1 15305:1 15308:1 15344:1 15387:1 15446:2 15455:1 15464:1 15472:1 15474:1 15519:1 15552:1 15561:1 15597:1 15600:1 15604:1 15615:1 15623:1 15647:1 15654:2 15698:1 15740:3 15762:1 15804:1 15821:3 15835:1 15849:1 15872:1 15873:1 15892:1 15903:1 15910:1 15926:2 15937:1 15941:1 15954:1 15961:1 15971:1 16035:1 16048:1 16112:1 16126:1 16151:2 16166:1 16193:1 16198:1 16239:1 16298:3 16304:1 16355:1 16358:2 16506:2 16515:1 16545:3 16547:1 16549:1 16553:1 16621:1 16629:1 16685:1 16711:1 16762:1 16768:1 16771:15 16808:1 16811:1 16822:1 16870:1 16876:1 16919:1 16950:1 17030:2 17036:1 17039:1 17041:1 17046:1 17059:1 17065:1 17066:1 17071:2 17079:1 17087:1 17125:2 17127:1 17184:1 17215:2 17216:1 17319:1 17321:2 17360:1 17382:1 17421:1 17446:1 17469:1 17473:2 17507:3 17521:1 17549:1 17557:1 17559:1 17562:1 17593:1 17602:1 17625:1 17632:1 17633:2 17639:1 17641:2 17643:1 17646:1 17651:1 17656:1 17658:1 17662:3 17678:1 17690:1 17695:3 17717:1 17731:1 17932:1 17987:1 18039:1 18068:1 18102:1 18107:1 18115:1 18122:1 18130:2 18192:1 18202:1 18225:2 18228:3 18243:1 18260:1 18266:1 18277:2 18310:1 18326:1 18343:2 18347:1 18352:9 18355:1 18409:2 18412:1 18420:2 18429:1 18430:2 18454:1 18465:1 18488:1 18492:1 18494:2 18498:1 18537:1 18566:1 18574:1 18583:1 18587:1 18594:1 18596:1 18597:1 18608:1 18620:1 18623:1 18650:1 18694:1 18696:1 18709:1 18727:2 18802:1 18810:1 18867:1 18906:1 18913:1 18918:1 19043:1 19068:2 19087:1 19122:1 19130:1 19133:1 19183:1 19205:1 19212:1 19222:1 19249:5 19292:2 19319:1 19351:3 19353:1 19357:2 19369:1 19391:1 19429:1 19437:1 19441:1 19443:3 19450:1 19463:1 19480:1 19494:1 19518:8 19530:1 19549:1 19595:1 19601:1 19642:1 19665:1 19711:1 19762:1 19774:1 19781:1 19787:1 19792:1 19827:1 19852:1 19862:1 19946:2 19981:3 19990:1 19992:2 20067:1 20105:1 20196:1104 20200:2 20218:3 20249:1 20289:1 20304:1 20328:1 20339:1 20341:1 20347:2 20353:1 20386:1 20422:1 20436:3 20444:1 20449:3 20451:1 20453:1 20482:1 20510:1 20530:2 20696:2 20757:1 20781:1 20819:1 20832:2 20839:1 20850:1 20858:1 20897:1 20917:1 20954:1 20955:2 20978:2 21004:3 21027:1 21041:2 21056:1 21067:1 21106:1 21130:1 21136:1 21158:1 21167:8 21173:1 21229:1 21363:1 21406:1 21429:1 21434:2 21456:1 21465:1 21475:1 21491:2 21492:1 21500:1 21506:1 21541:1 21542:1 21548:1 21560:1 21603:2 21623:1 21626:1 21634:1 21742:1 21755:1 21763:3 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:3 21867:2 21873:1 21894:1 21915:1 21937:5 21944:3 21991:1 22002:1 22056:1 22068:1 22098:1 22109:1 22112:1 22115:1 22162:1 22184:1 22194:2 22225:1 22228:1 22230:1 22240:1 22242:2 22311:1 22319:1 22348:1 22351:1 22353:1 22384:1 22482:1 22485:1 22507:1 22526:1 22550:1 22554:1 22564:1 22581:1 22590:2 22614:1 22626:1 22643:1 22666:1 22719:1 22734:3 22739:1 22796:10 22803:2 22822:4 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22918:1 22960:2 22972:1 23092:3 23131:1 23136:3 23146:2 23219:1 23228:1 23234:1 23258:2 23264:1 23274:1 23275:1 23322:1 23342:1 23360:1 23377:1 23396:2 23436:2 23438:1 23442:2 23500:1 23557:1 23558:1 23613:1 23615:1 23617:1 23676:1 23686:2 23687:2 23689:3 23696:1 23700:1 23715:1 23732:1 23765:1 23775:1 23796:1 23826:1 23862:1 23885:1 23901:1 23905:2 23916:1 23977:1 23994:1 24053:1 24068:1 24079:2 24095:1 24126:1 24157:1 24161:2 24166:2 24182:1 24218:1 24244:1 24245:1 24298:1 24311:2 24357:2 24361:1 24375:2 24379:1 24414:1 24425:1 24451:1 24452:1 24488:1 24534:3 24539:1 24563:1 24566:1 24584:1 24594:1 24599:1 24610:2 24611:1 24612:2 24616:1 24617:1 24619:1 24638:1 24640:1 24652:3 24664:1 24672:3 24714:1 24718:2 24725:1 24727:1 24731:1 24778:1 24819:1 24865:1 24883:1 24913:2 24916:1 24957:2 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25079:1 25166:1 25188:1 25193:1 25210:1 25247:1 25274:1 25276:3 25280:1 25298:2 25308:1 25346:1 25359:1 25364:1 25372:1 25395:1 25417:1 25421:1 25431:1 25438:1 25465:3 25469:1 25490:1 25498:1 25534:3 25559:1 25560:1 25566:1 25606:1 25649:1 25779:1 25817:3 25909:1 25910:8 25996:1 26071:1 26111:1 26136:1 26142:1 26151:1 26160:1 26170:1 26172:6 26174:1 26177:1 26197:1 26201:1 26202:1 26215:1 26221:1 26236:1 26334:1 26397:1 26398:1 26399:1 26405:1 26408:1 26409:1 26413:1 26427:1 26470:1 26483:1 26487:2 26490:1 26496:1 26497:1 26510:1 26518:1 26535:3 26575:1 26576:1 26607:1 26631:2 26645:1 26654:1 26678:1 26754:1 26799:2 26861:1 26870:1 26916:2 26986:1 26991:5 27000:1 27002:1 27005:1 27019:1 27043:1 27044:1 27242:1 27244:4 27276:1 27277:1 27290:2 27296:1 27305:2 27360:1 27384:1 27472:1 27507:1 27512:1 27518:1 27534:1 27544:1 27599:1 27600:1 27734:1 27750:1 27770:1 27801:1 27802:1 27814:1 27869:1 27910:1 27952:2 27976:1 27999:1 28073:1 28076:1 28091:1 28105:1 28131:3 28150:1 28152:1 28154:1 28159:3 28180:1 28192:1 28215:1 28219:1 28222:3 28235:1 28245:1 28308:3 28309:1 28326:2 28349:1 28391:3 28405:1 28429:2 28484:1 28507:1 28511:1 28517:1 28533:1 28554:1 28578:1 28602:1 28607:1 28611:1 28644:2 28675:1 28680:1 28687:1 28703:1 28747:1 28756:1 28767:1 28782:1 28867:1 28874:1 28912:1 28916:1 29109:1 29142:1 29209:1 29268:1 29292:1 29315:1 29342:1 29372:2 29390:1 29403:1 29411:4 29482:3 29486:1 29509:1 29550:1 29576:4 29596:1 29601:1 29637:1 29658:2 29668:1 29684:2 29689:1 29696:1 29706:1 29718:1 29789:2 29816:1 29848:1 29852:1 29934:2 29938:1 29979:1 29991:1 30031:2 30044:1 30045:5 30067:1 30097:1 30188:1 30240:3 30289:1 30319:3 30331:1 30336:1 30372:1 30390:1 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30479:9 30480:1 30537:1 30550:1 30581:1 30623:1 30630:2 30655:1 30661:1 30675:3 30711:3 30713:1 30747:1 30764:2 30768:1 30805:2 30810:1 30846:1 30882:2 30903:1 30933:1 30996:1 31041:3 31043:3 31115:1 31118:1 31121:1 31125:1 31253:2 31267:1 31268:1 31272:10 31306:1 31342:1 31362:1 31369:1 31380:1 31413:1 31458:1 31495:1 31496:1 31506:1 31514:1 31667:1 31705:1 31718:1 31756:1 31765:1 31781:1 31801:1 31803:1 31815:1 31826:1 31852:1 31866:1 31873:1 31890:1 31896:1 31898:1 31902:1 31905:1 31911:1 31914:1 31934:1 31958:1 31962:1 31965:1 31977:1
20 18:1 21:1 23:1 26:1 30:1 78:1 95:1 111:1 120:1 158:1 181:1 253:1 261:1 274:2 278:1 290:3 331:1 355:1 404:1 482:1 489:2 536:1 596:1 623:1 696:1 704:1 770:1 956:1 971:1 990:1 996:1 1011:1 1025:1 1034:2 1057:1 1064:1 1067:3 1069:2 1095:1 1108:2 1135:3 1136:3 1158:1 1198:1 1200:2 1205:1 1226:1 1255:1 1292:1 1305:1 1341:1 1389:1 1402:1 1406:1 1407:1 1420:1 1491:1 1533:1 1563:1 1576:1 1594:1 1608:1 1630:1 1631:1 1651:3 1662:1 1668:1 1670:1 1671:1 1678:1 1691:3 1719:1 1725:6 1729:1 1737:1 1741:1 1746:1 1756:1 1757:1 1759:2 1778:1 1799:1 1811:9 1840:1 1863:1 1877:1 1903:1 1967:1 1968:4 1973:1 1976:1 1987:1 2026:1 2035:2 2064:1 2070:1 2105:1 2116:2 2127:1 2145:1 2161:1 2163:1 2210:1 2229:1 2245:4 2284:1 2285:3 2296:1 2301:1 2354:3 2389:1 2395:1 2403:1 2433:1 2435:8 2438:1 2450:1 2451:1 2452:2 2458:1 2472:1 2475:2 2512:1 2514:4 2517:1 2520:1 2531:2 2533:1 2535:2 2539:2 2542:2 2546:1 2549:1 2554:2 2629:1 2645:1 2723:1 2741:1 2767:1 2801:1 2839:1 2853:1 2869:1 2870:1 2875:1 2898:1 2914:1 2948:1 2965:1 2970:2 3012:2 3050:1 3063:1 3084:1 3087:1 3120:1 3128:1 3159:3 3168:6 3169:2 3171:1 3184:2 3195:1 3204:1 3214:7 3320:1 3347:2 3422:3 3463:1 3537:1 3553:1 3598:1 3607:1 3660:2 3695:2 3723:1 3751:1 3752:1 3780:1 3825:1 3835:1 3901:1 3966:1 3970:1 4009:1 4013:1 4042:1 4056:1 4059:1 4063:1 4065:1 4075:1 4118:1 4126:1 4127:2 4175:3 4176:1 4202:1 4207:1 4211:4 4213:1 4279:1 4296:1 4306:1 4317:2 4345:1 4346:1 4379:1 4391:1 4392:1 4414:1 4423:1 4425:1 4472:1 4535:1 4562:1 4587:1 4702:1 4730:1 4768:1 4776:1 4780:1 4791:1 4794:1 4836:1 4838:1 4872:1 4958:1 5012:1 5046:1 5055:1 5067:1 5078:1 5086:1 5131:1 5136:2 5186:1 5196:1 5227:1 5245:1 5247:1 5283:1 5306:1 5332:5 5349:1 5444:3 5448:4 5466:2 5467:1 5485:1 5487:1 5488:2 5490:2 5492:2 5508:1 5607:1 5619:1 5662:1 5706:1 5715:1 5720:1 5745:2 5748:1 5800:2 5825:1 5839:1 5864:2 5901:1 5916:1 5931:2 5962:1 5977:1 6039:2 6057:2 6089:1 6101:1 6107:1 6117:1 6127:1 6137:3 6158:1 6189:1 6225:1 6244:1 6280:1 6319:1 6321:1 6350:1 6351:1 6359:1 6379:1 6463:1 6467:1 6476:1 6477:1 6532:1 6571:1 6609:2 6612:1 6631:1 6652:2 6670:2 6675:1 6702:1 6709:1 6711:1 6721:1 6772:2 6779:1 6783:1 6856:1 6874:1 6890:1 6910:1 6932:1 6949:3 6966:1 6971:1 6973:1 6977:1 6979:1 6980:2 6982:3 7034:1 7097:1 7120:1 7146:1 7169:1 7215:1 7262:1 7307:1 7328:1 7333:1 7344:1 7345:2 7353:1 7361:1 7392:1 7396:1 7399:1 7401:1 7406:2 7430:1 7432:1 7433:1 7457:1 7489:1 7580:2 7615:1 7628:1 7634:1 7657:1 7688:1 7713:1 7717:1 7763:1 7799:4 7801:1 7813:1 7826:1 7900:1 7937:1 7940:1 7941:1 7951:1 8013:1 8019:1 8025:1 8051:1 8069:1 8088:1 8122:3 8124:1 8128:3 8142:1 8144:1 8154:1 8207:1 8214:1 8241:1 8250:1 8276:1 8283:1 8285:1 8290:1 8342:1 8349:1 8377:1 8383:1 8391:4 8410:1 8414:1 8416:2 8417:1 8457:17 8487:4 8490:6 8502:1 8541:2 8554:2 8558:1 8639:1 8721:1 8765:1 8787:2 8797:1 8803:1 8816:1 8903:1 8907:1 8929:1 8940:9 8947:1 8983:1 9019:13 9045:1 9072:1 9075:1 9089:1 9102:1 9205:1 9226:1 9249:1 9258:2 9276:1 9285:3 9296:1 9343:1 9348:1 9383:1 9393:2 9399:2 9401:1 9408:1 9413:2 9495:1 9559:1 9590:1 9643:1 9682:1 9698:1 9707:2 9751:1 9763:1 9772:2 9798:1 9851:1 9869:1 9876:1 9885:1 9931:2 9936:5 9940:2 9944:1 9960:3 9974:1 10037:1 10061:1 10086:1 10093:1 10114:1 10121:1 10190:2 10193:1 10214:1 10215:1 10222:1 10313:1 10354:1 10431:2 10457:1 10461:2 10474:1 10559:1 10563:3 10568:5 10583:3 10649:1 10651:1 10663:1 10667:1 10700:2 10714:1 10732:1 10743:1 10749:1 10764:1 10775:1 10781:1 10856:1 10871:2 10878:2 10925:1 10929:1 10944:2 10962:1 10978:1 11080:1 11082:1 11116:1 11124:1 11140:1 11218:2 11277:1 11284:1 11285:1 11292:1 11335:1 11351:1 11425:1 11448:1 11493:2 11523:1 11536:1 11548:2 11556:1 11587:2 11599:1 11606:1 11608:1 11612:1 11615:1 11620:1 11625:1 11626:1 11629:1 11630:1 11641:1 11642:1 11673:1 11714:2 11723:1 11736:1 11738:1 11744:3 11746:3 11785:1 11818:1 11829:1 11835:2 11849:3 11877:1 11913:1 11926:1 11958:2 11961:1 12024:1 12094:1 12101:1 12103:1 12124:1 12126:1 12160:5 12166:1 12192:1 12197:1 12221:1 12256:1 12268:3 12273:1 12309:1 12334:1 12359:1 12377:1 12406:1 12422:1 12441:1 12445:6 12512:1 12542:1 12545:2 12640:1 12675:1 12682:4 12721:1 12727:1 12739:1 12753:1 12758:1 12769:2 12772:1 12822:1 12823:3 12839:1 12848:3 12896:1 12917:1 12920:11 12999:1 13025:1 13042:2 13055:2 13093:1 13121:2 13143:1 13160:1 13202:1 13215:1 13216:2 13226:1 13227:1 13247:3 13250:1 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13364:2 13392:1 13455:1 13470:1 13519:1 13539:2 13620:1 13656:2 13693:1 13732:1 13751:1 13813:6 13816:1 13839:1 13858:1 13879:1 13899:11 13906:1 13926:1 13960:1 13984:2 14023:1 14024:1 14101:1 14104:1 14178:1 14257:4 14269:1 14272:1 14274:1 14280:2 14296:1 14303:8 14307:1 14345:1 14352:1 14371:1 14399:1 14400:1 14445:1 14446:8 14464:1 14468:14 14553:1 14567:1 14590:1 14618:1 14680:1 14709:1 14714:1 14719:1 14866:1 14868:1 14871:2 14879:1 14897:2 14913:1 14931:1 14983:10 14995:1 14996:1 15036:1 15037:2 15038:1 15067:2 15078:1 15091:1 15092:1 15094:1 15104:1 15117:1 15171:3 15174:1 15196:2 15237:1 15297:1 15305:1 15308:1 15322:1 15344:1 15387:1 15446:2 15455:1 15464:1 15472:1 15474:1 15519:1 15552:1 15561:1 15572:1 15593:1 15597:1 15600:1 15604:1 15615:1 15623:1 15647:1 15654:2 15698:1 15740:3 15762:1 15804:1 15821:3 15835:1 15848:2 15849:1 15872:1 15873:1 15892:1 15903:1 15910:1 15926:2 15937:1 15941:1 15954:1 15961:1 15971:1 16035:1 16048:1 16112:1 16126:1 16151:2 16166:1 16193:1 16198:1 16239:1 16298:3 16304:1 16355:1 16358:2 16506:2 16515:1 16545:3 16547:1 16549:1 16553:1 16621:1 16629:1 16685:1 16711:1 16720:1 16762:1 16768:1 16771:16 16808:1 16811:1 16822:1 16870:1 16876:1 16919:1 16950:1 17030:2 17036:1 17039:1 17040:1 17041:1 17046:1 17059:1 17065:1 17066:1 17071:2 17079:1 17087:1 17125:2 17127:1 17184:1 17215:2 17216:1 17236:1 17319:1 17321:2 17360:1 17382:1 17398:1 17421:1 17446:1 17469:1 17473:2 17507:3 17521:1 17549:1 17557:1 17559:1 17562:1 17593:1 17602:1 17625:1 17632:1 17633:2 17639:1 17641:2 17643:1 17646:1 17651:1 17656:1 17658:1 17662:3 17678:1 17690:1 17695:3 17717:1 17731:1 17864:1 17932:1 17987:1 18039:1 18068:1 18102:1 18107:1 18115:1 18122:1 18130:2 18192:1 18202:1 18212:1 18225:2 18228:3 18243:1 18260:1 18266:1 18277:2 18310:1 18326:1 18343:2 18347:1 18352:9 18355:1 18409:2 18412:1 18418:1 18420:2 18429:1 18430:2 18454:1 18465:1 18488:1 18492:1 18494:2 18498:1 18537:1 18566:1 18574:1 18583:1 18587:1 18594:1 18596:1 18597:1 18608:1 18620:1 18623:1 18650:1 18684:1 18694:1 18696:1 18709:1 18727:2 18802:1 18810:1 18867:1 18906:1 18913:1 18918:1 19043:1 19068:2 19087:1 19122:1 19130:1 19133:1 19183:1 19205:1 19212:1 19222:1 19249:5 19292:2 19319:1 19351:3 19353:1 19357:2 19369:1 19391:1 19428:1 19429:1 19437:1 19441:1 19443:3 19449:1 19450:1 19454:1 19463:1 19480:1 19494:1 19518:8 19530:1 19549:1 19595:1 19601:1 19642:1 19665:1 19711:1 19722:1 19762:1 19774:1 19781:1 19787:1 19792:2 19827:1 19852:1 19862:1 19946:2 19981:3 19990:1 19992:2 20067:1 20105:1 20196:1186 20200:2 20218:3 20249:1 20289:1 20304:1 20328:1 20339:1 20341:1 20347:2 20353:1 20386:1 20422:1 20436:3 20444:1 20449:3 20451:1 20453:1 20482:1 20510:1 20524:1 20530:2 20696:3 20757:1 20781:1 20819:1 20832:2 20839:1 20850:1 20858:1 20897:1 20917:1 20954:1 20955:2 20978:2 21004:3 21027:1 21041:2 21056:1 21067:1 21106:1 21130:1 21136:1 21158:1 21167:8 21173:1 21229:1 21363:1 21406:1 21429:1 21434:2 21456:1 21465:1 21475:1 21491:2 21492:1 21500:1 21506:1 21541:1 21542:1 21548:1 21560:1 21603:2 21623:1 21626:1 21634:1 21742:1 21755:1 21763:3 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:3 21867:2 21873:1 21894:1 21915:1 21920:1 21937:5 21944:3 21991:1 22002:1 22056:1 22068:1 22098:1 22109:1 22112:1 22115:1 22162:1 22184:1 22194:2 22204:1 22225:1 22228:1 22230:1 22240:1 22242:2 22311:1 22319:1 22348:1 22351:1 22353:1 22384:1 22482:1 22485:1 22507:1 22526:1 22550:1 22554:1 22564:1 22581:1 22590:2 22614:1 22626:1 22632:1 22643:1 22666:1 22719:1 22734:3 22739:1 22796:10 22803:2 22822:4 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22918:1 22960:2 22972:1 23092:3 23131:1 23136:3 23146:2 23219:1 23228:1 23234:1 23258:2 23264:1 23274:1 23275:1 23322:1 23342:1 23360:1 23377:1 23396:2 23436:2 23438:1 23442:2 23500:1 23557:1 23558:1 23613:1 23615:1 23617:1 23676:1 23686:2 23687:2 23689:3 23696:1 23700:1 23715:1 23718:1 23732:1 23749:1 23765:1 23775:1 23796:1 23826:1 23862:1 23885:1 23901:1 23905:2 23916:1 23977:1 23994:1 24053:1 24068:1 24079:2 24088:1 24095:1 24126:1 24157:1 24161:2 24166:2 24182:1 24218:1 24244:1 24245:1 24272:1 24298:1 24311:2 24357:2 24361:1 24375:2 24379:1 24414:1 24425:1 24451:1 24452:1 24488:1 24534:3 24539:1 24563:1 24566:1 24584:1 24594:1 24599:1 24610:2 24611:1 24612:2 24616:1 24617:1 24619:1 24638:1 24640:1 24652:3 24655:1 24664:1 24672:3 24714:1 24718:2 24725:1 24727:1 24731:1 24778:1 24819:1 24865:1 24883:1 24913:2 24916:1 24957:2 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25079:1 25080:1 25166:1 25188:1 25193:1 25210:1 25247:1 25274:1 25276:3 25280:1 25298:2 25308:1 25346:1 25359:1 25364:1 25372:1 25395:1 25417:1 25421:1 25431:1 25438:1 25465:3 25469:1 25490:1 25498:1 25534:3 25559:1 25560:1 25566:1 25606:1 25649:1 25779:1 25817:3 25909:1 25910:8 25996:1 26016:1 26071:1 26111:1 26136:1 26142:1 26151:1 26160:1 26170:2 26172:6 26174:1 26177:1 26197:1 26201:1 26202:1 26215:1 26221:1 26236:1 26334:1 26397:1 26398:1 26399:1 26405:1 26408:1 26409:1 26413:1 26427:1 26470:1 26483:1 26487:2 26490:1 26496:1 26497:1 26510:1 26518:1 26535:3 26552:1 26575:1 26576:1 26607:1 26631:2 26645:1 26654:1 26657:1 26678:1 26754:1 26799:2 26861:1 26870:1 26916:2 26986:1 26991:5 27000:1 27002:1 27005:1 27019:1 27043:1 27044:1 27242:1 27244:4 27276:1 27277:1 27290:2 27296:1 27305:2 27360:1 27384:1 27472:1 27507:1 27512:1 27518:1 27534:1 27544:1 27599:1 27600:1 27646:1 27734:1 27750:1 27770:1 27801:1 27802:1 27804:1 27814:1 27869:1 27910:1 27952:2 27976:1 27999:1 28073:1 28076:1 28091:1 28105:1 28131:3 28150:1 28152:1 28154:1 28159:3 28180:1 28192:1 28215:1 28219:1 28222:3 28235:1 28245:1 28308:3 28309:1 28326:2 28349:1 28391:3 28405:1 28429:2 28484:1 28507:1 28511:1 28517:1 28533:1 28554:1 28578:1 28602:1 28607:1 28611:1 28623:1 28644:2 28675:1 28680:1 28687:1 28703:1 28747:1 28756:1 28767:1 28782:1 28867:1 28874:1 28912:1 28916:1 29109:1 29117:1 29142:1 29209:1 29243:1 29268:1 29292:1 29315:1 29342:1 29372:2 29390:1 29403:1 29411:4 29482:3 29486:1 29509:1 29550:1 29576:4 29596:1 29601:1 29637:1 29658:2 29668:1 29684:2 29689:1 29696:1 29706:1 29718:1 29789:2 29816:1 29848:1 29852:1 29934:2 29938:1 29979:1 29991:1 30031:2 30044:1 30045:5 30067:1 30097:1 30188:1 30240:3 30289:1 30319:3 30331:1 30336:1 30372:1 30390:1 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30479:10 30480:1 30537:2 30550:1 30581:1 30623:1 30630:2 30655:1 30661:1 30675:3 30711:3 30713:1 30747:1 30764:2 30768:1 30805:2 30810:1 30846:1 30882:2 30903:1 30933:1 30996:1 31026:1 31041:3 31043:3 31115:1 31118:1 31121:1 31125:2 31253:2 31267:1 31268:1 31272:10 31306:1 31342:1 31362:1 31369:1 31380:1 31413:1 31437:1 31458:1 31477:1 31495:1 31496:1 31506:1 31514:1 31667:1 31705:1 31713:1 31718:1 31756:1 31765:1 31781:1 31801:1 31803:1 31815:1 31826:1 31851:1 31852:1 31866:1 31873:1 31890:1 31896:1 31898:1 31902:1 31905:1 31911:1 31914:1 31934:1 31958:1 31962:2 31965:1 31977:1
20 18:1 21:1 23:1 26:1 30:1 78:1 95:1 111:1 120:1 158:1 181:1 253:1 261:1 274:2 278:1 290:3 331:1 355:1 404:1 482:1 489:2 536:1 596:1 623:1 696:1 701:1 704:1 770:1 956:2 971:1 990:1 996:1 1011:1 1025:1 1034:2 1057:1 1064:1 1067:3 1069:2 1095:1 1108:2 1135:3 1136:3 1158:1 1198:1 1200:2 1205:1 1226:1 1255:1 1292:1 1305:1 1341:1 1389:1 1402:1 1406:1 1407:1 1420:1 1491:1 1533:1 1563:1 1576:1 1594:2 1608:1 1630:1 1631:1 1633:2 1651:3 1662:1 1668:1 1670:1 1671:1 1678:1 1691:3 1719:1 1722:2 1725:6 1729:1 1737:1 1741:1 1746:1 1756:1 1757:1 1759:2 1778:1 1799:1 1811:9 1840:1 1863:1 1877:1 1903:1 1967:1 1968:4 1973:1 1976:1 1987:1 2026:1 2035:2 2064:1 2070:1 2105:1 2116:2 2127:1 2145:1 2161:1 2163:1 2210:1 2229:1 2245:4 2260:1 2284:1 2285:3 2296:1 2301:1 2354:3 2389:1 2395:2 2403:1 2433:1 2435:8 2438:1 2450:1 2451:1 2452:2 2458:1 2472:1 2475:2 2512:1 2514:4 2517:1 2520:1 2531:2 2533:1 2535:2 2539:2 2542:2 2546:1 2549:1 2554:2 2629:1 2645:1 2723:1 2741:1 2767:1 2801:1 2839:1 2853:1 2869:1 2870:1 2875:1 2898:1 2914:1 2948:1 2965:1 2970:2 3012:2 3050:1 3063:1 3084:1 3087:1 3120:1 3128:1 3159:3 3168:7 3169:2 3171:1 3184:2 3195:1 3204:1 3214:7 3320:1 3347:2 3422:3 3453:1 3463:1 3537:1 3553:1 3598:1 3607:1 3660:2 3695:2 3723:1 3751:1 3752:1 3780:1 3825:1 3835:1 3901:1 3966:1 3970:1 4009:1 4013:1 4015:1 4042:1 4056:1 4059:1 4063:1 4065:1 4075:1 4118:2 4126:1 4127:2 4175:3 4176:1 4202:1 4207:1 4211:4 4213:1 4279:1 4296:1 4306:1 4317:2 4345:1 4346:1 4379:1 4391:1 4392:1 4414:1 4423:2 4425:1 4472:1 4535:1 4562:1 4587:1 4702:1 4730:1 4768:1 4776:1 4780:1 4791:1 4794:1 4836:1 4838:1 4872:1 4958:1 4993:1 5012:1 5046:1 5055:1 5067:1 5078:1 5086:1 5131:1 5136:2 5186:1 5196:1 5227:1 5245:1 5247:1 5283:1 5306:1 5332:5 5349:1 5444:3 5448:4 5466:2 5467:1 5485:1 5487:1 5488:2 5490:2 5492:2 5508:1 5607:1 5619:1 5662:1 5678:1 5683:1 5706:1 5715:1 5720:1 5745:2 5748:1 5800:2 5825:1 5839:1 5864:2 5901:1 5916:1 5931:2 5962:1 5977:1 6039:2 6057:2 6089:1 6101:1 6107:1 6117:1 6127:1 6137:3 6158:1 6189:1 6225:1 6244:1 6280:1 6319:1 6321:1 6326:2 6350:1 6351:1 6359:1 6379:1 6463:2 6467:2 6476:1 6477:1 6532:1 6542:1 6571:1 6609:2 6612:1 6631:1 6652:2 6670:2 6675:1 6702:1 6709:1 6711:1 6721:1 6772:2 6779:1 6783:1 6830:1 6856:1 6874:1 6890:1 6910:1 6932:1 6933:1 6949:3 6966:1 6971:2 6973:1 6977:2 6979:1 6980:2 6982:3 7034:1 7077:1 7097:1 7105:1 7120:1 7146:1 7169:1 7215:1 7262:1 7307:1 7328:1 7333:1 7344:1 7345:2 7353:1 7361:2 7392:1 7396:1 7399:1 7401:1 7406:2 7430:1 7432:1 7433:1 7457:1 7489:1 7580:3 7615:1 7628:1 7634:1 7657:1 7688:1 7713:1 7717:2 7763:1 7781:1 7799:5 7801:1 7813:1 7826:1 7900:1 7937:1 7940:1 7941:1 7951:1 8013:1 8019:1 8025:1 8051:1 8069:1 8088:1 8122:3 8124:1 8128:3 8142:1 8144:1 8154:1 8207:2 8214:1 8241:1 8250:1 8276:1 8283:1 8285:1 8290:1 8342:1 8349:1 8377:1 8383:1 8391:4 8410:1 8414:1 8416:2 8417:1 8457:17 8487:4 8490:6 8502:1 8537:1 8541:2 8554:2 8558:1 8639:1 8721:1 8765:1 8787:2 8797:1 8803:1 8816:1 8903:1 8907:1 8929:1 8940:9 8947:1 8983:1 9019:14 9045:1 9072:1 9075:1 9089:1 9102:1 9205:1 9226:1 9249:1 9258:2 9276:1 9285:3 9296:1 9343:1 9348:1 9383:2 9393:3 9399:2 9401:1 9408:1 9413:3 9495:1 9559:1 9590:1 9643:1 9682:1 9698:1 9707:2 9751:1 9763:1 9772:2 9798:1 9851:1 9869:1 9876:1 9885:1 9931:2 9936:5 9940:4 9944:1 9960:3 9974:1 10037:1 10061:1 10086:1 10093:1 10114:1 10121:1 10190:2 10193:1 10214:1 10215:1 10222:1 10313:1 10354:1 10405:1 10431:2 10457:1 10461:2 10474:1 10559:1 10563:3 10568:5 10583:3 10649:1 10651:1 10663:1 10667:1 10700:4 10714:1 10732:1 10743:1 10749:1 10764:1 10775:1 10781:1 10856:1 10871:2 10878:2 10925:1 10929:1 10944:2 10962:1 10978:1 11080:1 11082:1 11116:1 11124:1 11140:1 11218:2 11277:1 11284:1 11285:1 11292:2 11335:1 11351:1 11416:1 11425:1 11448:1 11493:2 11523:1 11536:1 11548:2 11556:1 11587:2 11599:1 11606:1 11608:1 11612:1 11615:1 11620:1 11625:1 11626:1 11629:1 11630:1 11641:1 11642:1 11673:1 11714:2 11723:1 11736:1 11738:1 11744:3 11746:3 11785:1 11818:1 11829:1 11835:4 11849:3 11877:1 11913:1 11926:1 11958:2 11961:1 12024:1 12094:1 12101:1 12103:1 12124:1 12126:1 12160:5 12166:1 12192:1 12197:1 12221:1 12256:1 12268:3 12273:2 12309:1 12334:1 12347:1 12359:1 12377:1 12406:1 12422:1 12441:2 12445:6 12512:1 12521:1 12542:1 12545:2 12640:1 12675:1 12682:4 12721:1 12727:1 12739:1 12753:1 12758:1 12769:2 12772:1 12822:1 12823:3 12839:1 12848:4 12896:1 12917:1 12920:11 12999:1 13025:1 13042:2 13055:3 13093:1 13121:2 13143:1 13160:1 13202:1 13215:1 13216:2 13226:1 13227:1 13247:3 13250:1 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13364:2 13392:1 13455:1 13470:1 13519:1 13539:2 13620:1 13656:2 13693:1 13732:1 13751:1 13813:6 13816:1 13839:1 13858:1 13879:1 13899:11 13906:1 13926:1 13933:2 13960:1 13984:2 14023:1 14024:1 14101:1 14104:1 14113:1 14121:1 14178:1 14257:4 14269:1 14272:1 14274:1 14280:2 14296:1 14303:8 14307:1 14345:1 14352:1 14371:1 14399:1 14400:1 14445:1 14446:8 14464:1 14468:14 14553:1 14567:1 14590:1 14618:1 14632:1 14680:1 14709:2 14714:1 14719:1 14866:1 14868:1 14871:2 14879:1 14897:2 14913:1 14931:1 14983:10 14995:1 14996:1 15036:1 15037:2 15038:1 15067:2 15078:1 15091:1 15092:1 15094:1 15104:1 15117:1 15171:3 15174:2 15196:2 15237:1 15297:1 15305:1 15308:1 15322:1 15344:1 15387:1 15446:2 15455:1 15464:1 15472:1 15474:1 15519:1 15552:1 15561:1 15572:1 15593:1 15597:1 15600:1 15604:1 15615:1 15623:1 15647:1 15654:2 15698:1 15702:1 15740:3 15762:1 15804:1 15821:3 15835:1 15848:2 15849:1 15872:1 15873:1 15892:1 15903:1 15910:1 15926:2 15937:1 15941:1 15954:1 15961:1 15971:1 16035:1 16048:1 16112:1 16126:1 16151:2 16166:1 16193:1 16198:1 16239:1 16298:3 16304:1 16355:1 16358:2 16506:2 16515:1 16545:3 16547:1 16549:1 16553:1 16621:1 16629:1 16685:1 16711:1 16720:1 16762:1 16768:1 16771:16 16808:1 16811:1 16822:1 16870:1 16876:1 16919:1 16950:1 17030:2 17036:1 17039:2 17040:1 17041:1 17046:1 17059:1 17065:1 17066:1 17071:2 17079:1 17087:1 17125:2 17127:1 17184:1 17215:3 17216:1 17236:1 17319:1 17321:2 17360:1 17382:1 17398:1 17421:1 17446:1 17469:1 17473:2 17507:3 17521:1 17549:1 17557:1 17559:1 17562:1 17593:1 17602:1 17625:1 17632:1 17633:2 17637:1 17639:1 17641:2 17643:1 17646:1 17651:1 17656:1 17658:1 17662:4 17678:1 17690:1 17695:3 17717:1 17731:1 17864:1 17932:1 17987:1 18039:1 18068:1 18102:1 18107:1 18115:1 18122:1 18123:1 18130:2 18192:1 18202:1 18212:1 18225:2 18228:3 18243:1 18260:1 18266:1 18277:2 18310:1 18326:1 18343:2 18347:1 18352:9 18355:1 18409:2 18412:1 18418:1 18420:2 18429:2 18430:2 18454:1 18465:2 18488:1 18492:1 18494:2 18498:1 18537:1 18566:1 18574:1 18583:1 18587:1 18589:1 18594:1 18596:1 18597:1 18608:1 18620:1 18623:1 18650:1 18684:1 18694:1 18696:1 18709:1 18727:2 18802:1 18810:1 18867:1 18906:1 18913:1 18918:1 19043:1 19068:2 19078:1 19087:1 19122:1 19130:1 19133:1 19183:1 19205:1 19212:1 19222:1 19249:5 19292:2 19319:1 19351:3 19353:1 19357:2 19369:1 19391:1 19428:1 19429:1 19437:1 19441:1 19443:3 19449:1 19450:1 19454:1 19463:1 19480:1 19494:1 19518:8 19530:1 19549:1 19595:1 19601:1 19642:1 19665:1 19711:1 19722:1 19762:1 19774:1 19781:1 19787:1 19792:2 19827:1 19852:1 19862:1 19946:2 19981:3 19990:1 19992:2 20067:1 20105:1 20196:1237 20200:2 20218:3 20249:1 20289:1 20304:1 20328:1 20339:1 20341:1 20347:2 20353:1 20386:1 20422:1 20436:3 20444:1 20449:3 20451:1 20453:1 20482:1 20510:1 20524:1 20530:2 20696:3 20757:1 20781:1 20819:1 20832:2 20839:1 20850:1 20858:1 20897:1 20917:1 20954:1 20955:2 20978:2 21004:4 21027:1 21041:2 21056:1 21067:1 21106:1 21130:1 21136:1 21158:1 21167:8 21173:1 21229:1 21363:1 21406:1 21429:1 21434:2 21456:1 21465:1 21475:1 21491:2 21492:1 21500:1 21506:1 21541:1 21542:1 21548:1 21560:1 21603:2 21623:1 21626:1 21634:1 21742:1 21755:1 21763:3 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:3 21867:2 21873:1 21894:1 21915:1 21920:1 21937:5 21944:3 21991:1 22002:1 22056:1 22068:1 22098:1 22109:1 22112:1 22115:1 22162:1 22184:1 22194:2 22204:1 22225:1 22228:1 22230:1 22240:1 22242:2 22311:1 22319:1 22348:1 22351:1 22353:1 22384:1 22482:1 22485:1 22507:1 22526:1 22550:1 22554:1 22564:1 22581:1 22590:2 22614:1 22626:1 22632:1 22643:1 22657:1 22666:1 22719:1 22734:3 22739:1 22796:10 22803:2 22822:4 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22918:1 22960:2 22972:1 23092:3 23131:1 23136:3 23146:2 23219:1 23228:1 23234:1 23258:3 23260:1 23264:1 23274:1 23275:1 23322:1 23342:1 23360:1 23377:1 23396:2 23436:2 23438:1 23442:2 23491:1 23500:1 23557:1 23558:1 23613:1 23615:1 23617:1 23676:1 23686:2 23687:2 23689:3 23696:1 23700:1 23715:1 23718:1 23732:1 23749:1 23765:1 23775:1 23796:1 23826:2 23862:1 23885:1 23901:1 23905:2 23916:1 23977:1 23994:1 24053:1 24068:1 24079:2 24088:2 24095:1 24126:1 24157:1 24161:2 24166:2 24182:1 24218:1 24244:1 24245:1 24272:1 24298:1 24311:2 24357:2 24361:1 24375:2 24379:1 24414:1 24425:1 24451:1 24452:1 24488:1 24534:3 24539:1 24563:1 24566:1 24584:1 24594:1 24599:1 24610:2 24611:1 24612:2 24616:1 24617:1 24619:1 24638:1 24640:1 24652:3 24655:1 24664:1 24672:3 24714:1 24718:2 24725:1 24727:1 24731:1 24778:1 24819:1 24865:1 24883:1 24913:2 24916:1 24957:2 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25079:1 25080:1 25166:1 25188:1 25193:1 25203:1 25210:1 25247:1 25274:1 25276:3 25280:1 25298:2 25308:1 25346:1 25359:1 25364:1 25372:1 25395:1 25417:1 25421:1 25431:1 25438:1 25465:3 25469:1 25490:1 25498:1 25534:3 25559:1 25560:1 25566:1 25606:1 25649:1 25779:1 25817:3 25865:1 25909:1 25910:8 25996:1 26016:1 26071:1 26111:1 26136:1 26142:1 26151:1 26160:1 26170:2 26172:6 26174:1 26177:1 26197:1 26201:1 26202:1 26215:1 26221:2 26236:1 26334:1 26397:1 26398:1 26399:1 26405:1 26408:1 26409:1 26413:1 26427:1 26470:1 26483:1 26487:2 26490:1 26496:1 26497:1 26510:1 26518:1 26535:3 26552:1 26575:1 26576:1 26607:1 26631:2 26645:1 26654:1 26657:1 26678:1 26754:1 26799:2 26861:1 26870:1 26916:3 26986:1 26991:5 27000:1 27002:1 27005:1 27019:1 27043:1 27044:1 27242:1 27244:4 27276:1 27277:1 27290:2 27296:1 27305:2 27360:1 27384:1 27472:1 27507:1 27512:1 27518:1 27534:1 27544:1 27599:1 27600:1 27646:1 27734:1 27750:1 27770:1 27801:1 27802:1 27804:2 27814:1 27869:1 27910:1 27952:3 27976:1 27999:1 28073:1 28076:1 28091:1 28105:1 28131:3 28150:1 28152:1 28154:1 28159:3 28180:1 28192:1 28215:1 28219:1 28222:3 28235:1 28245:1 28308:3 28309:1 28326:2 28349:1 28391:3 28405:1 28429:2 28484:1 28507:1 28511:1 28517:1 28533:1 28554:1 28578:1 28581:1 28602:1 28607:1 28611:1 28623:2 28644:2 28675:1 28680:1 28687:1 28703:1 28747:1 28756:1 28767:1 28782:1 28867:1 28874:1 28912:1 28916:1 29109:1 29117:1 29142:1 29209:1 29243:1 29268:1 29292:1 29315:1 29340:1 29342:1 29372:2 29390:1 29403:1 29411:4 29482:3 29486:1 29509:1 29550:1 29576:4 29596:1 29601:1 29637:1 29658:2 29668:1 29684:2 29689:1 29696:1 29706:1 29718:1 29789:2 29816:1 29828:1 29848:1 29852:1 29934:2 29938:1 29956:1 29979:1 29991:2 30031:2 30044:1 30045:5 30067:1 30097:1 30188:1 30240:3 30289:1 30319:3 30331:1 30336:1 30372:1 30390:1 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30479:13 30480:1 30537:4 30550:1 30581:1 30623:1 30630:2 30655:1 30661:1 30675:3 30711:3 30713:1 30747:1 30764:2 30768:1 30805:2 30810:1 30846:1 30882:2 30903:1 30933:1 30996:1 31026:1 31041:3 31043:3 31115:1 31118:1 31121:1 31125:2 31253:2 31267:1 31268:1 31272:10 31288:1 31306:1 31310:1 31342:1 31362:1 31369:1 31380:1 31413:1 31437:1 31458:1 31477:1 31495:1 31496:1 31506:1 31514:1 31667:1 31705:1 31713:1 31718:1 31756:1 31765:1 31781:1 31801:1 31802:1 31803:1 31815:1 31826:1 31851:1 31852:1 31866:1 31873:1 31890:1 31896:1 31898:1 31902:1 31905:1 31911:1 31914:1 31934:1 31958:1 31962:2 31965:1 31977:1
20 18:1 21:1 23:1 26:1 30:1 78:1 95:1 111:1 120:1 158:1 169:1 181:1 211:1 253:1 261:1 274:2 278:1 290:3 331:1 355:1 404:1 482:1 489:2 536:1 596:1 623:1 696:1 701:1 704:1 770:1 956:2 971:1 977:1 990:1 996:2 1011:1 1025:1 1034:2 1057:1 1064:1 1067:3 1069:2 1095:1 1108:2 1135:3 1136:3 1143:1 1158:1 1198:1 1200:2 1205:1 1226:1 1255:1 1292:1 1305:1 1341:1 1389:1 1402:1 1406:1 1407:1 1420:1 1446:1 1491:1 1533:1 1563:1 1576:1 1594:2 1608:1 1630:1 1631:1 1633:2 1651:3 1662:1 1668:1 1670:1 1671:1 1678:1 1691:3 1719:2 1722:2 1725:7 1729:1 1737:1 1741:1 1746:1 1756:1 1757:1 1759:2 1778:1 1799:1 1805:1 1811:9 1840:1 1863:1 1877:1 1903:1 1967:1 1968:5 1973:1 1976:1 1987:1 2026:1 2035:2 2064:1 2070:1 2105:1 2116:2 2127:1 2145:1 2161:1 2163:1 2210:1 2229:1 2245:4 2260:1 2284:1 2285:3 2296:1 2301:1 2354:3 2389:1 2395:2 2403:1 2433:1 2435:8 2438:1 2450:1 2451:1 2452:2 2454:1 2458:1 2472:1 2475:2 2500:1 2512:1 2514:4 2517:1 2520:1 2531:2 2533:1 2535:2 2539:2 2542:2 2546:1 2549:1 2554:2 2629:1 2645:1 2723:1 2741:1 2767:1 2795:1 2801:1 2831:1 2839:1 2853:1 2869:1 2870:1 2875:1 2898:1 2914:1 2948:1 2965:1 2970:2 3012:2 3050:1 3063:1 3084:1 3087:1 3120:1 3128:1 3159:3 3168:8 3169:2 3171:1 3181:1 3184:2 3195:1 3204:1 3214:7 3320:1 3347:2 3422:3 3453:1 3463:1 3537:1 3553:1 3598:1 3607:1 3660:2 3695:2 3723:1 3751:1 3752:1 3780:1 3825:1 3835:1 3901:1 3966:1 3970:1 3977:1 4009:1 4013:1 4015:1 4042:1 4056:1 4059:1 4063:1 4065:1 4075:1 4118:2 4126:1 4127:2 4175:3 4176:1 4202:1 4207:1 4211:5 4213:1 4279:1 4296:1 4306:1 4317:2 4345:1 4346:1 4379:1 4391:1 4392:1 4414:1 4423:2 4425:1 4472:1 4535:1 4562:1 4587:1 4626:1 4702:1 4730:1 4768:1 4776:1 4780:1 4791:1 4794:1 4836:1 4838:1 4860:1 4872:1 4958:1 4993:1 5012:1 5046:1 5055:1 5067:1 5078:1 5086:1 5130:1 5131:1 5136:2 5186:1 5196:1 5227:1 5245:1 5247:1 5283:1 5306:1 5332:5 5349:1 5444:3 5448:4 5466:2 5467:1 5485:1 5487:1 5488:2 5490:2 5492:2 5496:1 5508:1 5607:1 5619:1 5662:1 5678:1 5683:1 5706:1 5715:1 5720:1 5745:2 5748:1 5800:2 5825:1 5839:1 5864:2 5901:1 5916:1 5931:2 5962:1 5977:1 6039:2 6057:2 6089:1 6101:1 6107:1 6117:1 6127:1 6137:3 6158:1 6189:1 6225:1 6244:1 6280:1 6319:1 6321:1 6326:2 6350:1 6351:1 6359:1 6362:1 6379:1 6387:1 6463:2 6467:2 6476:1 6477:1 6532:1 6542:1 6571:1 6609:2 6612:1 6631:1 6652:2 6670:2 6675:1 6702:1 6709:1 6711:1 6721:1 6772:2 6779:1 6783:1 6830:1 6856:1 6874:1 6890:1 6910:1 6932:1 6933:1 6949:3 6966:1 6971:2 6973:1 6977:2 6979:1 6980:2 6982:3 7034:1 7077:1 7097:1 7105:1 7120:1 7146:1 7169:1 7215:1 7262:1 7307:1 7328:1 7333:1 7344:1 7345:2 7353:1 7361:2 7392:1 7396:1 7399:1 7401:1 7406:2 7430:1 7432:1 7433:1 7456:1 7457:1 7489:1 7580:3 7615:3 7628:1 7634:1 7657:1 7688:1 7713:1 7717:2 7763:1 7781:1 7799:5 7801:1 7813:1 7826:1 7862:2 7900:1 7937:1 7940:1 7941:1 7951:1 8013:1 8019:1 8025:1 8051:1 8069:1 8088:1 8122:3 8124:1 8128:3 8142:1 8144:1 8154:1 8172:1 8207:2 8214:1 8241:1 8250:1 8264:1 8276:1 8283:1 8285:1 8290:1 8342:1 8349:1 8377:2 8383:1 8391:5 8410:1 8414:1 8416:2 8417:1 8457:17 8487:4 8490:6 8502:1 8537:1 8541:2 8554:2 8558:1 8639:1 8721:1 8765:1 8787:3 8797:1 8803:1 8816:1 8903:1 8907:1 8929:1 8940:9 8947:1 8983:1 9019:14 9045:1 9072:1 9075:1 9089:1 9102:1 9205:1 9226:1 9249:1 9258:2 9276:1 9285:3 9296:1 9343:1 9348:1 9383:2 9393:3 9399:4 9401:1 9408:1 9413:3 9495:1 9559:1 9590:1 9643:1 9682:1 9698:1 9707:2 9751:1 9763:1 9772:2 9798:1 9816:1 9851:1 9869:1 9876:1 9885:1 9931:2 9936:6 9940:4 9944:1 9960:3 9974:1 10037:1 10061:1 10086:1 10093:1 10114:1 10121:1 10190:2 10193:1 10214:1 10215:1 10222:1 10313:1 10354:1 10405:1 10431:2 10449:1 10457:1 10461:2 10474:1 10559:1 10563:3 10568:6 10583:3 10649:1 10651:1 10663:1 10667:1 10700:6 10714:1 10732:1 10743:1 10749:1 10764:1 10775:1 10781:1 10856:1 10871:2 10878:2 10925:1 10929:1 10944:2 10962:1 10972:1 10978:1 11080:1 11082:1 11116:1 11124:1 11140:1 11218:2 11277:1 11284:1 11285:1 11292:2 11335:1 11351:2 11416:1 11425:1 11448:1 11493:2 11523:1 11536:1 11548:2 11556:1 11587:2 11599:1 11606:1 11608:1 11612:1 11615:1 11620:1 11625:1 11626:1 11629:1 11630:1 11641:1 11642:1 11673:1 11714:3 11723:1 11736:1 11738:1 11744:3 11746:3 11785:1 11818:1 11829:1 11835:4 11849:3 11877:1 11913:1 11926:1 11958:2 11961:1 12024:1 12094:1 12101:1 12103:1 12124:1 12126:1 12160:6 12166:1 12192:1 12197:1 12221:1 12243:1 12256:1 12268:3 12273:2 12309:1 12334:1 12347:1 12359:1 12377:1 12406:1 12422:1 12441:2 12445:6 12512:1 12521:1 12542:1 12545:2 12640:1 12669:1 12675:1 12682:5 12707:1 12721:1 12727:1 12739:1 12753:1 12758:1 12769:2 12772:1 12798:1 12822:1 12823:4 12839:2 12848:4 12896:1 12917:1 12920:11 12999:1 13025:1 13042:2 13055:4 13093:1 13121:2 13143:1 13160:1 13202:1 13215:1 13216:2 13226:1 13227:1 13231:1 13247:3 13250:2 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13364:2 13392:1 13455:1 13470:1 13519:1 13539:2 13620:1 13656:2 13693:1 13732:1 13751:1 13813:7 13816:1 13839:1 13858:1 13879:1 13899:11 13906:1 13926:1 13933:2 13960:1 13984:2 14023:1 14024:1 14101:1 14104:1 14113:1 14121:1 14178:1 14257:4 14269:1 14272:1 14274:1 14280:2 14296:1 14303:8 14307:1 14345:1 14352:1 14371:1 14399:2 14400:1 14445:1 14446:8 14464:1 14468:14 14553:1 14567:3 14590:1 14618:1 14632:1 14680:1 14709:2 14714:1 14719:1 14866:1 14868:1 14871:2 14879:1 14897:2 14913:1 14931:1 14983:10 14995:1 14996:1 15036:1 15037:2 15038:1 15067:2 15078:1 15091:1 15092:1 15094:1 15104:1 15117:1 15171:3 15174:2 15196:2 15236:1 15237:1 15297:1 15305:1 15308:1 15322:1 15344:1 15387:1 15446:2 15455:1 15464:1 15472:1 15474:1 15519:1 15552:1 15561:1 15572:1 15593:1 15597:1 15600:1 15604:1 15615:1 15623:1 15647:1 15654:2 15698:1 15702:1 15740:3 15762:1 15804:1 15821:3 15835:1 15848:2 15849:1 15872:1 15873:1 15892:1 15903:1 15910:1 15926:2 15937:1 15941:1 15954:1 15961:1 15971:1 16035:1 16048:1 16112:1 16126:1 16151:2 16166:1 16178:1 16193:1 16198:1 16239:1 16298:3 16304:1 16355:1 16358:2 16506:2 16515:1 16545:3 16547:1 16549:1 16553:1 16621:1 16629:1 16685:1 16711:1 16720:1 16762:1 16768:1 16771:17 16808:1 16811:1 16822:1 16865:1 16870:1 16876:1 16919:1 16950:1 17030:2 17036:1 17039:2 17040:1 17041:1 17046:1 17059:1 17065:1 17066:1 17071:2 17079:1 17087:1 17125:2 17127:1 17184:1 17215:3 17216:1 17236:1 17319:1 17321:2 17360:2 17382:1 17398:1 17421:1 17446:1 17469:1 17473:2 17507:3 17521:1 17549:1 17557:1 17559:1 17562:1 17593:1 17602:1 17625:1 17632:1 17633:2 17637:1 17639:1 17641:2 17643:1 17646:1 17651:1 17656:1 17658:1 17662:4 17678:1 17690:1 17695:3 17717:1 17731:1 17864:1 17932:1 17987:1 18039:1 18068:1 18102:1 18107:1 18115:1 18122:1 18123:1 18130:2 18141:1 18192:1 18202:1 18212:1 18225:2 18228:3 18243:1 18260:1 18266:1 18277:2 18310:1 18326:1 18343:2 18347:1 18352:9 18355:1 18409:2 18412:1 18418:1 18420:2 18429:2 18430:2 18454:1 18465:2 18488:1 18492:1 18494:2 18498:1 18531:1 18537:1 18566:1 18569:1 18574:1 18583:1 18587:1 18589:1 18594:1 18596:1 18597:1 18608:1 18620:1 18623:1 18650:1 18684:1 18694:1 18696:1 18709:1 18727:2 18732:1 18802:1 18810:1 18867:1 18906:1 18913:1 18918:1 19043:1 19068:2 19078:1 19087:1 19122:1 19130:1 19133:1 19164:1 19183:1 19205:1 19212:1 19222:1 19249:6 19292:2 19319:1 19351:3 19353:1 19357:2 19369:1 19391:1 19418:1 19428:1 19429:1 19437:1 19441:1 19443:3 19449:2 19450:1 19454:1 19463:1 19480:1 19494:1 19518:8 19530:1 19549:1 19595:1 19601:1 19642:1 19665:1 19711:1 19722:1 19762:1 19774:1 19781:1 19787:1 19792:2 19827:1 19852:1 19862:1 19946:2 19981:3 19990:1 19992:2 20067:1 20068:1 20105:1 20196:1286 20200:2 20218:3 20249:1 20289:1 20304:1 20328:1 20339:1 20341:1 20347:2 20353:1 20386:1 20422:1 20436:3 20444:1 20449:3 20451:1 20453:1 20482:1 20510:1 20524:1 20530:2 20696:3 20757:1 20761:1 20781:1 20819:1 20832:2 20839:1 20850:1 20858:1 20897:1 20917:1 20954:1 20955:2 20978:2 21004:4 21027:1 21041:2 21056:1 21066:1 21067:1 21106:1 21130:1 21136:1 21158:1 21167:8 21173:1 21229:1 21262:1 21318:1 21363:1 21406:1 21429:1 21434:2 21456:1 21465:1 21475:1 21491:2 21492:1 21500:1 21506:1 21541:1 21542:1 21548:1 21560:1 21603:2 21623:1 21626:1 21634:1 21679:1 21705:1 21742:1 21755:1 21763:3 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:3 21867:2 21873:1 21894:1 21915:2 21920:1 21937:5 21944:3 21991:1 22002:1 22056:1 22068:1 22098:1 22109:1 22112:1 22115:1 22162:1 22184:1 22194:2 22204:1 22225:1 22228:1 22230:1 22240:1 22242:2 22302:1 22306:1 22311:1 22319:1 22348:1 22351:1 22353:1 22384:1 22482:1 22485:1 22502:1 22507:1 22526:1 22528:1 22550:1 22554:1 22564:1 22581:1 22590:2 22614:1 22626:1 22632:1 22643:1 22657:1 22666:1 22719:1 22734:3 22739:1 22796:10 22803:2 22822:4 22861:1 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22901:1 22918:1 22941:1 22960:2 22972:1 23092:3 23131:1 23136:3 23146:2 23219:1 23228:1 23234:1 23249:1 23258:3 23260:1 23264:1 23274:1 23275:1 23322:1 23342:1 23360:1 23377:1 23396:2 23436:2 23438:1 23442:2 23491:1 23500:1 23557:1 23558:1 23613:1 23615:1 23617:1 23676:1 23686:3 23687:2 23689:3 23696:1 23700:1 23715:1 23718:1 23732:1 23749:1 23765:1 23775:1 23796:1 23826:2 23862:1 23885:1 23901:1 23905:2 23916:3 23953:1 23977:1 23994:1 24053:1 24068:1 24079:2 24088:2 24095:1 24126:1 24157:1 24161:2 24166:2 24182:1 24218:1 24244:1 24245:1 24272:1 24298:1 24311:2 24357:2 24361:1 24375:2 24379:1 24414:1 24425:1 24451:1 24452:1 24488:1 24503:1 24534:3 24539:1 24563:1 24566:1 24584:1 24594:1 24599:1 24610:2 24611:1 24612:2 24616:1 24617:1 24619:1 24638:1 24640:1 24652:3 24655:1 24664:1 24672:3 24714:1 24718:2 24725:1 24727:1 24731:1 24778:1 24819:1 24846:1 24865:2 24883:1 24913:2 24916:1 24957:2 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25079:1 25080:1 25166:1 25188:1 25193:1 25203:1 25210:1 25247:1 25274:1 25276:3 25280:1 25298:2 25308:1 25346:1 25359:1 25364:1 25372:1 25395:1 25417:1 25421:1 25431:1 25438:1 25465:3 25469:1 25490:1 25498:1 25534:3 25559:1 25560:1 25566:1 25606:1 25649:1 25779:1 25817:3 25865:1 25909:1 25910:8 25996:1 26016:2 26071:1 26111:1 26136:1 26142:1 26151:1 26160:1 26170:2 26172:7 26174:1 26177:1 26197:1 26201:1 26202:1 26215:1 26221:2 26236:1 26245:1 26334:1 26397:1 26398:1 26399:1 26405:1 26408:1 26409:1 26413:1 26427:1 26470:1 26483:1 26487:2 26490:2 26496:1 26497:1 26510:1 26518:1 26535:3 26552:1 26575:1 26576:1 26607:1 26631:2 26645:1 26654:1 26657:1 26678:1 26754:1 26793:1 26799:2 26836:1 26861:1 26870:1 26916:3 26986:1 26991:6 27000:1 27002:1 27005:1 27019:1 27043:1 27044:1 27242:2 27244:5 27276:1 27277:1 27290:2 27296:1 27305:2 27360:1 27384:1 27472:1 27507:1 27509:1 27512:1 27518:1 27534:1 27544:1 27599:1 27600:1 27614:1 27646:1 27734:1 27750:1 27770:1 27801:1 27802:1 27804:2 27814:1 27869:1 27910:1 27952:3 27976:1 27999:1 28073:1 28076:1 28091:1 28105:1 28131:3 28150:1 28152:1 28154:1 28159:3 28180:1 28192:1 28215:1 28219:1 28222:3 28235:1 28245:1 28308:3 28309:1 28326:2 28349:1 28391:3 28405:1 28429:2 28484:1 28507:1 28511:1 28517:1 28533:1 28554:1 28578:1 28581:1 28602:1 28607:1 28611:1 28619:1 28623:3 28644:2 28675:1 28680:1 28687:1 28703:1 28747:1 28756:1 28767:1 28782:1 28855:1 28867:1 28874:1 28912:1 28916:1 29109:1 29117:1 29142:1 29209:1 29243:1 29268:1 29288:1 29292:1 29315:1 29340:1 29342:1 29372:2 29390:1 29391:1 29403:1 29411:4 29482:3 29486:1 29509:1 29550:1 29576:4 29596:1 29601:1 29637:1 29658:2 29668:1 29684:2 29689:1 29696:1 29706:1 29718:1 29789:2 29816:1 29828:1 29848:1 29852:1 29934:2 29938:1 29956:1 29979:1 29991:2 30031:2 30041:1 30044:1 30045:6 30067:1 30097:1 30188:1 30240:3 30289:1 30319:3 30331:1 30336:1 30372:1 30390:2 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30479:14 30480:1 30537:6 30550:1 30581:1 30623:1 30630:2 30655:1 30661:1 30675:3 30711:4 30713:1 30747:1 30764:2 30768:1 30805:2 30810:1 30846:1 30882:2 30903:1 30933:1 30996:1 31026:1 31041:3 31043:3 31115:1 31118:1 31121:1 31125:2 31143:1 31253:2 31267:1 31268:1 31272:10 31288:1 31306:1 31310:1 31342:1 31362:1 31369:1 31380:1 31413:1 31437:1 31458:1 31477:1 31495:1 31496:1 31506:1 31514:2 31667:1 31705:1 31713:2 31718:1 31756:1 31765:1 31781:1 31794:1 31801:1 31802:1 31803:1 31815:1 31826:1 31851:1 31852:1 31866:1 31873:1 31890:1 31896:1 31898:2 31902:1 31905:1 31911:1 31914:1 31934:1 31958:1 31962:2 31965:1 31977:1
20 18:1 21:1 23:1 26:1 30:1 78:1 95:1 103:1 111:1 120:1 158:1 169:1 181:1 211:1 253:1 261:1 274:2 278:1 290:3 331:1 355:2 358:1 404:1 482:1 489:2 536:1 596:1 623:1 664:1 696:1 701:1 704:1 770:1 822:1 956:2 971:2 977:1 990:1 996:3 1011:1 1025:1 1034:3 1057:1 1063:1 1064:1 1067:3 1069:2 1079:1 1095:1 1108:3 1135:3 1136:3 1143:1 1158:1 1198:1 1200:2 1205:1 1226:1 1255:1 1292:1 1305:1 1341:1 1389:1 1402:1 1406:1 1407:1 1420:1 1426:1 1446:1 1491:1 1533:1 1563:1 1576:1 1594:2 1608:1 1630:1 1631:1 1633:2 1651:3 1662:1 1668:1 1670:1 1671:1 1678:1 1691:3 1719:5 1722:2 1725:7 1729:1 1737:1 1741:1 1746:1 1756:1 1757:1 1759:2 1778:1 1799:1 1800:1 1805:1 1811:9 1827:1 1829:1 1840:1 1863:1 1877:1 1903:1 1967:1 1968:5 1973:1 1976:1 1987:1 2026:1 2035:2 2064:1 2070:1 2105:1 2116:2 2127:1 2145:1 2161:1 2163:1 2210:1 2229:1 2245:4 2260:1 2264:1 2284:1 2285:3 2296:1 2301:1 2354:3 2357:1 2389:1 2395:2 2403:1 2433:1 2435:8 2438:1 2450:1 2451:1 2452:2 2454:1 2458:1 2472:1 2475:2 2500:1 2512:1 2514:4 2517:1 2520:1 2531:2 2533:1 2535:3 2539:2 2542:2 2546:1 2549:2 2554:2 2629:1 2645:1 2673:1 2677:1 2723:1 2741:1 2767:1 2773:1 2795:1 2801:1 2831:1 2839:1 2853:1 2869:1 2870:1 2875:1 2898:1 2914:1 2923:1 2948:1 2965:1 2970:2 2975:1 3012:2 3050:1 3063:1 3084:1 3087:1 3120:1 3128:1 3159:3 3168:8 3169:2 3171:1 3181:1 3184:2 3195:1 3204:1 3214:7 3320:1 3347:2 3422:3 3453:1 3463:1 3537:1 3553:1 3598:1 3607:1 3660:2 3695:3 3723:1 3751:1 3752:1 3780:1 3825:1 3835:1 3901:1 3966:1 3970:1 3977:1 4009:1 4013:1 4015:1 4042:1 4056:1 4059:1 4063:1 4065:1 4075:1 4118:2 4126:1 4127:2 4175:3 4176:1 4202:1 4207:1 4211:6 4213:1 4279:1 4296:1 4306:1 4317:3 4345:1 4346:1 4366:1 4379:1 4391:1 4392:2 4414:1 4423:2 4425:1 4454:1 4472:1 4535:1 4562:1 4587:1 4626:1 4702:1 4730:1 4768:1 4776:1 4780:1 4791:1 4794:1 4836:2 4838:1 4860:1 4872:1 4958:1 4959:1 4993:1 5012:1 5046:1 5055:1 5067:1 5078:2 5086:1 5130:1 5131:1 5136:2 5186:1 5196:1 5215:1 5227:1 5245:1 5247:1 5283:1 5306:1 5332:5 5349:1 5372:1 5444:3 5448:4 5466:3 5467:1 5485:1 5487:1 5488:2 5490:2 5492:2 5496:1 5508:1 5607:1 5619:1 5662:1 5678:1 5683:1 5693:1 5706:1 5715:1 5720:1 5745:3 5748:1 5800:2 5825:1 5839:1 5864:2 5901:1 5916:1 5931:2 5962:1 5977:1 6039:2 6057:2 6089:1 6101:1 6107:1 6117:1 6127:1 6137:3 6158:1 6189:1 6225:1 6244:1 6280:1 6312:1 6319:1 6321:1 6326:2 6350:1 6351:1 6359:1 6362:1 6379:1 6387:1 6444:3 6463:2 6467:2 6476:1 6477:1 6532:1 6542:1 6571:1 6609:2 6612:1 6631:1 6652:2 6670:2 6675:1 6702:1 6709:1 6711:1 6721:1 6772:3 6779:1 6783:1 6830:1 6856:3 6858:1 6874:1 6890:1 6910:1 6932:1 6933:1 6949:3 6966:1 6971:2 6973:1 6977:2 6979:1 6980:2 6982:3 7034:1 7077:1 7097:1 7105:1 7120:1 7146:1 7169:1 7215:1 7236:1 7262:1 7307:1 7328:1 7333:1 7344:1 7345:2 7353:1 7361:2 7392:1 7396:1 7399:1 7401:1 7406:2 7430:1 7432:1 7433:1 7456:1 7457:1 7489:1 7580:3 7615:3 7628:1 7634:1 7657:1 7688:1 7713:1 7717:2 7763:1 7781:1 7799:5 7801:1 7813:1 7826:1 7862:2 7900:1 7937:1 7940:1 7941:1 7951:1 7971:1 8000:1 8013:1 8019:1 8025:1 8051:1 8069:1 8088:1 8122:3 8124:1 8128:3 8142:1 8144:1 8154:1 8172:1 8207:2 8214:1 8241:1 8250:1 8264:1 8276:1 8283:2 8285:1 8290:1 8342:1 8349:1 8377:2 8383:1 8391:6 8410:1 8414:1 8416:3 8417:1 8457:19 8487:4 8490:6 8502:1 8537:1 8541:2 8554:2 8558:1 8639:1 8721:1 8765:1 8787:3 8797:1 8803:1 8816:1 8903:1 8907:1 8929:1 8940:9 8947:1 8950:1 8983:1 9019:16 9045:1 9072:1 9075:1 9089:1 9102:1 9205:1 9226:1 9249:1 9258:2 9276:1 9285:3 9296:1 9343:1 9348:1 9383:2 9393:3 9399:4 9401:1 9408:1 9413:3 9495:1 9559:1 9590:1 9643:1 9682:1 9698:1 9707:2 9751:1 9763:1 9767:1 9772:2 9798:1 9816:1 9851:1 9869:1 9876:1 9885:1 9931:2 9936:6 9940:4 9944:1 9960:3 9974:1 10037:1 10061:1 10086:1 10093:1 10114:1 10121:1 10190:2 10193:1 10214:1 10215:1 10222:1 10313:1 10354:1 10405:1 10431:2 10449:1 10457:1 10461:2 10474:1 10559:1 10563:3 10568:6 10583:3 10649:1 10651:1 10663:2 10667:1 10678:1 10700:6 10714:1 10732:1 10743:1 10749:1 10764:1 10775:1 10781:1 10856:2 10871:2 10878:2 10925:1 10929:1 10944:2 10962:1 10972:1 10978:1 11080:1 11082:1 11116:1 11124:1 11140:1 11218:2 11277:1 11284:1 11285:1 11292:2 11335:1 11351:2 11416:1 11425:1 11448:1 11493:2 11523:1 11536:1 11548:3 11556:1 11587:2 11599:1 11606:1 11608:1 11612:1 11615:1 11620:1 11625:1 11626:1 11629:1 11630:1 11641:1 11642:1 11671:1 11673:1 11714:3 11723:1 11736:1 11738:1 11744:3 11746:4 11785:1 11818:1 11829:1 11835:4 11849:3 11877:1 11913:1 11926:1 11958:3 11961:1 12024:1 12094:1 12101:1 12103:1 12105:1 12124:1 12126:1 12160:6 12166:1 12192:1 12197:1 12221:1 12243:1 12256:1 12268:3 12273:2 12309:1 12334:1 12347:1 12359:1 12377:1 12406:1 12422:1 12441:2 12445:6 12512:1 12521:1 12542:1 12545:2 12640:1 12669:1 12675:1 12682:5 12707:1 12721:1 12727:1 12739:1 12753:1 12758:1 12769:2 12772:1 12798:1 12822:1 12823:4 12839:2 12848:4 12896:1 12917:1 12920:11 12999:1 13025:1 13042:2 13055:4 13093:1 13121:3 13143:1 13160:1 13202:1 13215:1 13216:2 13226:1 13227:1 13231:1 13247:3 13250:3 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13364:2 13392:1 13455:1 13470:1 13519:1 13539:2 13620:1 13656:2 13693:1 13732:1 13751:1 13813:7 13816:1 13839:1 13858:1 13879:1 13899:11 13906:1 13926:1 13933:2 13960:1 13984:2 14023:1 14024:1 14101:1 14104:1 14113:1 14121:1 14178:1 14257:4 14269:1 14272:1 14274:2 14280:2 14296:1 14303:8 14305:1 14307:1 14345:1 14352:1 14371:1 14399:2 14400:1 14445:1 14446:8 14455:1 14464:1 14468:14 14553:1 14567:3 14590:1 14618:1 14632:1 14680:1 14704:1 14709:2 14714:1 14719:1 14866:1 14868:1 14871:2 14879:1 14897:2 14913:1 14931:1 14983:10 14995:1 14996:1 15036:1 15037:2 15038:1 15067:2 15078:1 15091:1 15092:1 15094:1 15104:1 15117:1 15171:3 15174:2 15196:2 15236:1 15237:1 15297:1 15305:1 15308:1 15322:1 15344:1 15387:1 15446:2 15455:1 15464:1 15472:1 15474:1 15519:1 15522:1 15552:1 15561:1 15572:1 15593:1 15597:1 15600:1 15604:1 15615:1 15623:1 15647:1 15648:1 15654:2 15680:1 15698:1 15702:1 15740:3 15762:1 15804:1 15821:3 15835:1 15848:2 15849:1 15872:1 15873:1 15892:1 15903:1 15910:1 15926:2 15937:1 15941:1 15954:1 15961:1 15971:1 15991:1 16035:1 16048:1 16112:1 16126:1 16151:2 16166:1 16178:1 16193:1 16198:1 16239:1 16298:3 16304:1 16355:1 16358:2 16410:1 16506:2 16515:1 16545:3 16547:1 16549:1 16553:1 16621:1 16629:1 16685:1 16711:1 16720:1 16762:1 16768:1 16771:17 16808:1 16811:1 16822:1 16865:1 16870:1 16876:1 16919:1 16950:1 17030:2 17036:1 17039:2 17040:1 17041:2 17046:1 17059:1 17065:1 17066:1 17071:2 17079:1 17087:1 17125:2 17127:1 17184:1 17215:3 17216:1 17236:1 17319:1 17321:2 17360:2 17377:1 17382:1 17398:1 17421:1 17446:1 17469:2 17473:2 17507:3 17521:1 17549:1 17557:1 17559:1 17562:1 17571:3 17593:1 17602:1 17625:1 17632:1 17633:2 17637:1 17639:1 17641:2 17643:1 17646:1 17647:1 17651:1 17656:1 17658:1 17662:5 17678:1 17690:1 17695:3 17717:1 17731:1 17864:1 17902:1 17932:1 17987:1 18039:1 18068:1 18102:1 18107:1 18115:1 18122:1 18123:1 18130:2 18141:1 18192:1 18202:1 18212:1 18225:2 18228:3 18243:1 18260:1 18266:1 18277:2 18310:1 18326:1 18328:1 18343:3 18347:1 18352:9 18355:1 18409:2 18412:1 18418:1 18420:2 18429:2 18430:2 18454:1 18465:2 18488:1 18492:1 18494:2 18498:1 18531:1 18537:1 18566:1 18569:1 18574:1 18583:1 18587:1 18589:1 18594:1 18596:1 18597:1 18608:1 18620:1 18623:1 18650:1 18684:1 18694:1 18696:1 18709:1 18727:2 18732:1 18802:1 18810:1 18867:1 18906:1 18913:1 18918:1 18972:1 19043:1 19068:2 19078:1 19087:1 19122:1 19130:1 19133:1 19137:1 19164:1 19183:1 19205:1 19212:1 19222:1 19249:6 19292:2 19319:1 19351:3 19353:1 19357:2 19369:1 19391:1 19418:1 19428:1 19429:1 19437:1 19441:1 19443:3 19449:2 19450:1 19454:1 19463:1 19480:1 19494:1 19518:8 19530:1 19549:1 19595:1 19601:1 19642:1 19665:1 19711:1 19722:1 19762:1 19774:1 19781:1 19787:1 19792:2 19827:1 19852:1 19862:1 19946:2 19981:3 19990:1 19992:2 20067:1 20068:1 20105:1 20196:1337 20200:2 20218:3 20232:1 20249:1 20284:1 20289:1 20304:1 20328:1 20339:1 20341:1 20347:2 20353:1 20386:1 20422:1 20436:3 20444:1 20449:3 20451:1 20453:1 20482:1 20510:1 20524:1 20530:2 20696:3 20757:1 20761:2 20781:1 20819:1 20832:2 20839:1 20850:1 20858:1 20897:1 20917:1 20954:1 20955:2 20978:2 21004:4 21027:1 21041:2 21056:1 21066:1 21067:1 21106:1 21129:1 21130:1 21136:1 21158:1 21167:8 21173:1 21229:1 21262:1 21318:1 21363:1 21406:1 21429:1 21434:2 21456:1 21465:1 21472:1 21475:1 21491:2 21492:1 21500:1 21506:1 21541:1 21542:1 21548:1 21560:1 21603:2 21623:1 21626:1 21634:1 21679:1 21705:1 21742:1 21755:1 21763:3 21773:1 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:3 21867:2 21873:1 21894:1 21915:2 21920:1 21937:5 21944:3 21991:1 22002:1 22056:1 22068:1 22098:1 22109:1 22112:1 22115:1 22162:1 22184:1 22194:2 22204:1 22225:1 22228:1 22230:1 22240:1 22242:2 22302:1 22306:1 22311:1 22319:1 22348:1 22351:1 22353:1 22384:1 22482:1 22485:1 22502:1 22507:1 22521:1 22526:1 22528:1 22550:1 22554:1 22564:1 22581:1 22590:2 22614:1 22626:1 22632:1 22643:1 22657:1 22666:1 22719:1 22734:3 22739:1 22796:10 22803:2 22822:4 22853:1 22861:1 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22901:1 22918:1 22941:1 22951:1 22960:2 22972:1 23092:3 23131:1 23136:3 23146:2 23219:1 23228:1 23234:1 23249:1 23258:3 23260:1 23264:1 23274:1 23275:1 23322:1 23342:1 23360:1 23377:1 23396:2 23436:2 23438:1 23442:2 23491:1 23500:1 23557:1 23558:1 23613:1 23615:1 23617:1 23676:1 23686:3 23687:3 23689:3 23696:1 23700:1 23715:1 23718:1 23732:1 23749:1 23765:1 23775:1 23796:1 23826:2 23862:1 23885:1 23901:1 23905:2 23916:3 23953:1 23977:1 23994:1 24053:1 24068:1 24079:2 24088:2 24095:1 24126:1 24157:1 24161:2 24166:2 24182:1 24218:1 24244:1 24245:1 24261:1 24272:1 24287:1 24298:1 24311:2 24357:2 24361:1 24363:1 24375:2 24379:1 24414:1 24425:1 24451:1 24452:1 24488:1 24503:1 24534:3 24539:1 24563:1 24566:1 24584:1 24594:1 24599:1 24610:2 24611:1 24612:2 24616:1 24617:1 24619:1 24638:1 24640:1 24652:3 24655:1 24664:1 24672:3 24714:2 24718:2 24725:1 24727:1 24731:1 24778:1 24819:1 24846:1 24865:3 24883:1 24913:2 24916:1 24957:2 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25079:1 25080:1 25166:1 25171:1 25188:1 25193:1 25203:1 25210:1 25247:1 25274:1 25276:3 25280:1 25298:2 25308:1 25346:1 25351:1 25359:1 25364:1 25372:1 25395:1 25417:1 25421:1 25431:1 25438:1 25441:1 25465:3 25469:1 25490:1 25498:1 25534:3 25559:1 25560:2 25566:1 25606:1 25648:1 25649:1 25779:2 25802:1 25817:3 25865:1 25909:1 25910:8 25996:1 26016:2 26071:1 26111:1 26136:1 26142:1 26151:1 26160:1 26170:2 26172:7 26174:1 26177:1 26197:1 26201:1 26202:1 26215:1 26219:1 26221:2 26236:1 26245:1 26334:1 26397:1 26398:1 26399:1 26405:1 26408:1 26409:1 26413:1 26427:1 26470:1 26483:1 26487:2 26490:2 26496:1 26497:1 26510:1 26518:1 26535:3 26552:1 26575:1 26576:1 26607:1 26608:1 26631:2 26645:2 26654:1 26657:1 26678:1 26754:1 26793:1 26799:2 26836:1 26861:2 26870:1 26916:3 26986:1 26991:6 26999:1 27000:1 27002:1 27005:1 27019:1 27043:1 27044:1 27242:2 27244:5 27276:1 27277:1 27290:2 27296:1 27305:2 27360:1 27384:1 27472:1 27482:1 27507:1 27509:1 27512:1 27518:1 27534:1 27544:1 27599:1 27600:1 27614:1 27646:1 27734:1 27750:1 27770:1 27801:1 27802:1 27804:2 27814:1 27869:1 27910:2 27952:3 27976:1 27999:1 28073:1 28076:1 28091:1 28105:1 28131:3 28150:1 28152:1 28154:1 28159:3 28166:1 28180:1 28192:1 28215:1 28219:1 28222:3 28235:1 28245:1 28308:3 28309:1 28326:2 28349:1 28391:3 28405:1 28429:2 28484:1 28507:1 28511:1 28517:1 28533:1 28554:1 28578:1 28581:1 28602:1 28607:1 28611:1 28619:1 28623:3 28644:2 28675:1 28680:1 28687:1 28703:1 28747:1 28756:1 28767:1 28782:1 28855:1 28867:1 28874:1 28912:1 28916:1 29109:1 29117:1 29142:1 29150:1 29209:1 29243:1 29268:1 29288:1 29292:1 29315:2 29325:1 29340:1 29342:1 29372:2 29390:1 29391:1 29403:1 29411:4 29468:1 29482:3 29486:1 29509:1 29550:1 29576:4 29596:1 29601:1 29637:1 29658:2 29668:1 29684:2 29686:1 29689:1 29696:1 29697:1 29706:1 29718:1 29789:2 29816:1 29828:1 29848:1 29852:1 29934:2 29938:1 29956:1 29979:1 29991:2 30031:2 30041:1 30044:1 30045:6 30067:1 30097:1 30188:1 30240:3 30289:1 30319:3 30331:1 30336:1 30372:1 30390:3 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30479:14 30480:1 30537:6 30550:1 30581:1 30623:1 30630:2 30655:1 30661:1 30675:3 30711:5 30713:1 30747:1 30764:2 30768:1 30805:2 30809:1 30810:1 30846:2 30876:1 30882:2 30903:1 30933:1 30996:1 31026:1 31041:3 31043:3 31115:1 31118:1 31121:1 31125:2 31143:1 31253:2 31267:1 31268:1 31272:10 31288:1 31306:1 31309:1 31310:1 31337:1 31342:1 31362:1 31369:1 31380:1 31413:1 31437:1 31458:1 31477:1 31495:1 31496:1 31506:1 31514:2 31666:1 31667:1 31705:1 31713:2 31718:1 31742:1 31756:1 31765:1 31781:1 31794:1 31801:1 31802:1 31803:1 31815:1 31826:1 31851:1 31852:1 31866:1 31873:1 31890:2 31896:1 31898:2 31902:1 31905:1 31911:1 31914:1 31934:1 31958:1 31962:3 31965:1 31977:1
20 18:1 21:1 23:1 26:1 30:1 78:1 95:1 103:1 111:1 120:1 158:1 169:1 181:1 211:1 253:1 261:1 274:2 278:1 290:3 331:1 355:2 358:1 404:1 482:1 489:2 536:1 596:1 602:1 623:1 652:1 664:1 696:2 701:1 704:1 770:1 822:1 956:2 971:2 977:1 990:1 996:3 1000:1 1011:1 1025:1 1034:3 1057:1 1063:2 1064:1 1067:3 1069:2 1079:1 1095:1 1108:3 1135:3 1136:3 1143:1 1158:1 1167:1 1198:1 1200:2 1205:1 1226:1 1255:1 1292:1 1305:1 1341:1 1389:1 1402:1 1406:1 1407:1 1420:1 1426:1 1430:1 1446:1 1491:1 1533:1 1563:1 1576:1 1594:2 1608:1 1630:1 1631:1 1633:2 1651:3 1662:1 1668:1 1670:1 1671:1 1678:1 1691:3 1719:6 1722:2 1725:7 1729:1 1737:1 1741:1 1746:1 1756:1 1757:1 1759:2 1778:1 1799:1 1800:1 1805:1 1811:9 1827:1 1829:1 1840:1 1863:1 1876:1 1877:1 1903:1 1967:1 1968:5 1973:1 1976:1 1987:1 1994:1 2026:1 2035:2 2064:1 2070:1 2105:1 2116:2 2127:1 2145:1 2161:1 2163:1 2210:1 2229:1 2245:4 2260:1 2264:1 2284:1 2285:3 2296:1 2301:1 2354:3 2357:1 2389:1 2395:2 2403:1 2433:1 2435:8 2438:2 2450:1 2451:1 2452:2 2454:1 2458:1 2472:1 2475:2 2500:1 2512:1 2514:4 2517:1 2520:1 2531:2 2533:1 2535:3 2539:2 2542:2 2546:1 2549:2 2554:2 2582:1 2629:1 2645:1 2673:1 2677:1 2723:1 2741:1 2767:1 2773:1 2795:1 2801:1 2831:1 2839:1 2853:1 2869:1 2870:1 2875:1 2898:1 2914:1 2923:1 2948:1 2965:1 2970:2 2975:1 3012:2 3050:1 3063:1 3084:1 3087:1 3120:1 3128:1 3159:3 3168:8 3169:2 3171:1 3181:1 3184:2 3195:1 3204:1 3214:8 3320:1 3347:2 3422:3 3453:1 3463:1 3537:1 3553:1 3598:1 3607:1 3615:1 3660:2 3695:3 3723:1 3751:1 3752:1 3780:1 3825:1 3835:1 3901:1 3966:1 3970:1 3977:1 4009:1 4013:1 4015:1 4042:1 4056:1 4059:1 4063:1 4065:1 4075:2 4118:2 4126:1 4127:2 4175:3 4176:1 4202:1 4207:1 4211:6 4213:1 4279:1 4296:1 4306:1 4317:3 4345:1 4346:1 4366:1 4379:1 4391:1 4392:2 4414:1 4423:2 4425:1 4454:1 4472:1 4535:1 4562:1 4587:1 4626:1 4702:1 4730:1 4768:1 4776:1 4780:1 4791:1 4794:1 4836:2 4838:1 4860:1 4872:1 4923:1 4958:1 4959:1 4993:1 5012:1 5046:1 5055:1 5067:1 5078:2 5086:1 5130:1 5131:1 5136:2 5186:1 5196:1 5215:1 5227:1 5245:1 5247:1 5283:1 5306:1 5332:5 5345:1 5349:1 5372:1 5444:3 5448:4 5466:3 5467:1 5485:1 5487:1 5488:2 5490:2 5492:2 5496:1 5508:1 5607:1 5619:1 5662:1 5678:2 5683:1 5693:1 5706:1 5715:1 5720:1 5745:3 5748:1 5800:2 5825:1 5839:1 5864:2 5901:1 5916:1 5929:1 5931:3 5962:1 5977:1 6039:2 6057:2 6089:1 6101:1 6107:1 6117:1 6127:1 6137:3 6158:1 6189:1 6225:1 6244:1 6280:1 6312:1 6319:1 6321:1 6326:2 6350:1 6351:1 6359:1 6362:1 6375:1 6379:1 6387:1 6444:3 6445:1 6463:2 6467:2 6476:1 6477:1 6532:1 6542:1 6571:1 6609:2 6612:1 6631:1 6652:2 6670:2 6674:1 6675:1 6702:1 6709:1 6711:1 6721:1 6772:3 6779:1 6783:1 6830:1 6856:3 6858:1 6874:1 6890:1 6910:1 6932:1 6933:1 6949:3 6966:1 6971:2 6973:1 6977:2 6979:1 6980:2 6982:3 7034:1 7077:2 7097:1 7105:2 7120:1 7146:1 7169:1 7215:1 7236:1 7262:1 7307:1 7328:1 7333:1 7344:1 7345:2 7353:1 7361:2 7392:1 7396:1 7399:1 7401:1 7406:2 7430:1 7432:1 7433:1 7456:1 7457:1 7489:1 7566:1 7580:3 7615:3 7628:1 7634:1 7657:1 7688:1 7713:1 7717:2 7763:1 7781:1 7799:5 7801:1 7813:1 7826:1 7862:2 7900:1 7937:1 7940:1 7941:1 7951:1 7971:2 8000:1 8013:1 8019:1 8025:1 8051:1 8069:1 8088:1 8122:3 8124:1 8128:3 8142:1 8144:1 8154:1 8172:1 8207:2 8214:1 8241:1 8250:1 8264:1 8276:1 8283:2 8285:1 8290:1 8342:1 8349:1 8377:2 8383:1 8391:7 8410:1 8414:1 8416:3 8417:1 8457:19 8487:4 8490:7 8502:1 8537:1 8541:2 8554:2 8558:1 8639:1 8721:1 8765:1 8787:3 8797:1 8803:1 8816:1 8903:1 8907:1 8929:1 8940:9 8947:1 8950:1 8983:1 9019:16 9045:1 9072:1 9075:1 9089:1 9102:1 9205:1 9226:1 9249:1 9258:2 9276:1 9285:3 9294:1 9296:1 9343:1 9348:1 9383:2 9391:1 9393:3 9399:4 9401:1 9408:1 9413:3 9425:1 9495:1 9559:1 9590:1 9643:1 9658:1 9682:1 9698:1 9707:2 9751:1 9763:1 9767:1 9772:2 9798:1 9816:1 9851:1 9869:1 9876:1 9885:1 9931:2 9936:6 9940:4 9944:1 9960:3 9974:1 10037:1 10061:1 10086:1 10093:1 10114:1 10121:1 10190:2 10193:1 10214:1 10215:1 10222:1 10313:1 10354:1 10405:1 10431:2 10449:1 10457:1 10461:2 10474:1 10559:1 10563:3 10568:6 10583:3 10649:1 10651:1 10663:2 10667:1 10678:1 10700:8 10714:1 10732:1 10743:1 10749:1 10764:1 10775:1 10781:1 10856:2 10871:2 10878:2 10925:1 10929:1 10944:2 10962:1 10966:1 10972:1 10978:1 11080:1 11082:1 11116:1 11124:1 11140:1 11218:2 11277:1 11284:1 11285:1 11292:2 11335:1 11351:2 11416:2 11425:1 11448:1 11493:2 11523:1 11536:1 11548:3 11556:1 11587:2 11599:1 11606:1 11608:1 11612:1 11615:1 11620:1 11625:1 11626:1 11629:1 11630:1 11641:1 11642:1 11671:1 11673:1 11714:3 11723:1 11736:1 11738:1 11744:4 11746:4 11785:1 11818:1 11829:1 11835:4 11849:3 11877:1 11913:1 11926:1 11937:1 11958:3 11961:1 12024:1 12094:1 12101:1 12103:1 12105:1 12124:1 12126:1 12160:6 12166:1 12192:1 12197:1 12221:1 12243:1 12256:1 12268:3 12273:2 12309:1 12334:1 12347:1 12359:1 12377:1 12406:1 12422:1 12441:2 12445:6 12512:1 12521:2 12542:1 12545:2 12589:1 12640:1 12646:1 12669:1 12675:1 12682:5 12707:1 12721:1 12727:1 12739:1 12753:1 12758:1 12769:2 12772:1 12798:1 12822:1 12823:5 12839:2 12848:5 12896:1 12917:1 12920:11 12999:1 13025:1 13035:1 13042:2 13055:4 13093:1 13121:3 13143:1 13160:1 13202:1 13215:1 13216:2 13226:2 13227:2 13231:1 13247:3 13250:3 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13364:2 13392:1 13455:1 13470:1 13519:1 13539:2 13620:1 13656:2 13693:1 13732:1 13751:1 13813:7 13816:1 13839:1 13845:1 13858:1 13879:1 13899:11 13906:1 13926:1 13933:2 13960:1 13984:2 14023:1 14024:1 14101:1 14104:1 14113:1 14121:2 14178:1 14257:4 14269:1 14272:1 14274:2 14280:2 14296:1 14303:8 14305:1 14307:1 14341:1 14345:1 14352:1 14371:1 14399:2 14400:1 14445:1 14446:8 14455:1 14464:1 14468:14 14553:1 14567:3 14590:1 14618:1 14632:1 14680:1 14704:1 14709:2 14714:1 14719:1 14866:1 14868:1 14871:2 14879:1 14897:2 14913:1 14931:1 14983:10 14995:1 14996:1 15036:1 15037:2 15038:1 15067:2 15078:1 15091:1 15092:1 15094:1 15104:1 15117:1 15171:3 15174:2 15196:2 15236:1 15237:1 15297:1 15305:1 15308:1 15322:1 15344:1 15387:1 15446:2 15455:1 15464:1 15472:1 15474:1 15519:1 15522:1 15552:1 15561:1 15572:1 15593:1 15597:1 15600:1 15604:1 15615:1 15623:1 15647:1 15648:1 15654:2 15680:1 15698:1 15702:2 15740:3 15762:1 15804:1 15821:3 15835:1 15848:2 15849:1 15872:1 15873:1 15892:2 15903:1 15910:1 15926:2 15937:1 15941:1 15954:1 15961:1 15971:1 15991:1 16035:1 16048:1 16112:1 16126:1 16151:2 16166:2 16178:1 16193:1 16198:1 16239:1 16298:3 16304:1 16305:1 16355:1 16358:2 16410:1 16506:3 16515:1 16545:3 16547:1 16549:1 16553:1 16621:1 16629:1 16685:1 16711:1 16720:1 16762:1 16768:1 16771:18 16808:1 16811:1 16822:1 16865:1 16870:1 16876:1 16919:1 16950:1 17030:2 17036:1 17039:2 17040:1 17041:2 17046:1 17059:1 17065:1 17066:1 17071:2 17079:1 17087:1 17125:2 17127:1 17184:1 17215:4 17216:1 17236:1 17319:1 17321:2 17360:2 17377:1 17382:1 17398:1 17421:1 17446:1 17469:2 17473:2 17507:3 17521:1 17549:1 17557:1 17559:1 17562:1 17571:3 17593:1 17602:1 17625:1 17632:1 17633:2 17637:1 17639:1 17641:2 17643:1 17646:1 17647:1 17651:1 17656:1 17658:1 17662:5 17678:1 17690:1 17695:3 17717:1 17731:1 17864:1 17902:1 17932:1 17987:1 18039:1 18068:1 18102:1 18107:1 18115:1 18122:1 18123:1 18130:2 18141:1 18192:1 18202:1 18212:1 18225:2 18228:4 18238:1 18243:1 18260:1 18266:1 18277:2 18310:1 18326:1 18328:1 18343:3 18347:1 18352:9 18355:1 18409:2 18412:1 18418:1 18420:2 18429:2 18430:2 18454:1 18465:2 18488:1 18492:1 18494:2 18498:1 18531:1 18537:1 18566:1 18569:1 18574:1 18583:1 18587:1 18589:1 18594:1 18596:1 18597:1 18608:1 18620:1 18623:1 18650:1 18684:1 18694:1 18696:1 18709:1 18727:2 18732:1 18765:1 18802:1 18810:1 18867:1 18906:1 18913:1 18918:1 18972:1 18997:1 19043:1 19068:2 19078:1 19087:1 19122:1 19130:1 19133:1 19137:1 19164:1 19183:1 19194:1 19205:1 19212:1 19222:1 19249:6 19292:2 19319:1 19351:3 19353:1 19357:2 19369:1 19391:1 19418:1 19428:1 19429:1 19437:1 19441:1 19443:3 19449:2 19450:1 19454:1 19463:1 19480:1 19494:1 19496:1 19518:8 19530:1 19549:1 19595:1 19601:1 19642:1 19665:1 19711:1 19722:1 19762:1 19774:1 19781:1 19787:1 19792:2 19827:1 19852:1 19862:1 19946:2 19981:3 19990:1 19992:2 20059:1 20067:1 20068:1 20105:1 20196:1401 20200:2 20218:3 20232:1 20249:1 20284:1 20289:1 20304:1 20328:1 20339:1 20341:1 20347:2 20353:1 20386:1 20422:1 20436:3 20444:1 20449:3 20451:1 20453:1 20482:1 20510:1 20524:1 20530:2 20696:3 20757:1 20761:2 20781:1 20819:1 20832:2 20839:1 20850:1 20858:1 20897:1 20914:1 20917:1 20954:1 20955:2 20978:2 21004:4 21027:1 21041:2 21056:1 21066:1 21067:1 21106:1 21129:1 21130:1 21136:1 21158:1 21167:8 21173:1 21229:1 21262:1 21318:1 21323:1 21360:1 21363:1 21406:1 21429:1 21434:2 21456:1 21465:1 21472:1 21475:1 21491:2 21492:2 21500:1 21506:1 21541:1 21542:1 21548:1 21560:1 21603:2 21623:1 21626:1 21634:1 21679:1 21705:1 21742:1 21755:1 21763:4 21773:1 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:3 21867:2 21873:1 21894:1 21915:2 21920:1 21937:6 21944:3 21991:1 22002:1 22056:1 22068:1 22098:1 22109:1 22112:1 22115:1 22162:1 22184:1 22194:2 22204:1 22225:1 22228:3 22230:1 22240:1 22242:2 22302:1 22306:1 22311:1 22319:1 22348:1 22351:1 22353:1 22384:1 22482:1 22485:1 22502:1 22507:1 22521:1 22526:1 22528:1 22550:1 22554:1 22564:1 22581:1 22590:2 22614:1 22626:1 22632:1 22643:1 22657:1 22666:1 22719:1 22734:3 22739:1 22796:10 22803:2 22822:4 22853:1 22861:1 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22901:1 22918:1 22941:1 22951:1 22960:2 22972:1 23092:3 23131:1 23136:3 23146:2 23219:1 23228:1 23234:1 23249:1 23258:3 23260:1 23264:1 23274:1 23275:1 23322:1 23342:1 23360:1 23377:1 23396:2 23436:2 23438:1 23442:2 23491:1 23500:1 23551:1 23557:1 23558:1 23613:1 23615:1 23617:1 23676:1 23686:3 23687:3 23689:3 23696:1 23700:1 23715:1 23718:1 23732:1 23749:1 23765:1 23775:1 23796:1 23826:2 23862:1 23885:1 23901:2 23905:2 23916:3 23953:1 23977:1 23994:1 24053:1 24068:1 24079:2 24088:2 24095:1 24126:1 24157:1 24161:2 24166:2 24182:1 24218:1 24244:1 24245:1 24261:1 24272:1 24287:1 24298:1 24311:2 24357:2 24361:1 24363:1 24375:2 24379:1 24414:1 24425:1 24451:1 24452:1 24488:1 24503:1 24534:3 24539:1 24563:1 24566:1 24584:1 24594:1 24599:1 24610:2 24611:1 24612:2 24616:1 24617:1 24619:1 24633:1 24638:1 24640:1 24652:3 24655:1 24664:1 24672:3 24714:2 24718:2 24725:1 24727:1 24731:1 24761:1 24778:1 24794:1 24819:1 24846:1 24865:4 24883:1 24913:2 24916:1 24957:2 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25079:1 25080:1 25166:1 25171:1 25188:1 25193:1 25203:1 25210:1 25247:1 25274:1 25276:3 25280:1 25298:2 25308:1 25346:1 25351:1 25359:1 25364:1 25372:1 25395:1 25417:1 25421:1 25431:1 25438:1 25441:1 25465:3 25469:1 25490:1 25498:1 25534:3 25559:1 25560:2 25566:1 25606:1 25648:1 25649:1 25691:1 25779:2 25802:1 25817:3 25865:1 25909:1 25910:8 25996:1 26016:2 26071:1 26111:1 26136:1 26142:1 26151:1 26160:1 26170:2 26172:7 26174:1 26177:1 26197:1 26201:1 26202:1 26215:1 26219:1 26221:2 26236:1 26245:1 26334:1 26397:1 26398:1 26399:1 26405:1 26406:1 26408:1 26409:1 26413:1 26427:1 26470:1 26483:1 26487:2 26490:2 26496:1 26497:1 26510:1 26518:1 26535:3 26552:1 26575:1 26576:1 26607:1 26608:1 26626:1 26631:2 26645:2 26654:1 26657:1 26678:1 26754:1 26793:1 26799:2 26836:1 26861:2 26870:1 26916:4 26968:1 26986:1 26991:6 26999:1 27000:1 27002:1 27005:1 27019:1 27043:1 27044:1 27242:2 27244:5 27276:1 27277:1 27290:2 27296:1 27297:1 27305:2 27360:1 27384:1 27472:1 27482:1 27507:1 27509:1 27510:1 27512:1 27518:1 27534:1 27544:1 27599:1 27600:1 27614:1 27646:1 27734:1 27750:1 27770:1 27801:1 27802:1 27804:2 27814:1 27869:1 27910:2 27952:3 27976:1 27999:1 28073:1 28076:1 28091:1 28105:1 28131:3 28150:1 28152:1 28154:1 28159:3 28166:1 28180:1 28192:1 28215:1 28219:1 28222:3 28235:1 28245:1 28308:3 28309:1 28326:2 28349:1 28391:3 28405:1 28429:2 28484:1 28507:1 28511:1 28517:1 28533:1 28554:1 28578:1 28581:2 28600:1 28602:1 28607:1 28611:1 28619:1 28623:3 28624:1 28644:2 28675:1 28680:1 28687:1 28703:3 28747:1 28756:1 28767:1 28782:1 28855:1 28867:1 28874:1 28912:1 28916:1 29104:1 29109:1 29117:1 29142:1 29150:1 29209:1 29243:1 29268:1 29288:1 29292:2 29315:2 29325:1 29340:1 29342:1 29372:2 29390:1 29391:1 29403:1 29411:4 29468:1 29479:1 29482:3 29486:1 29509:1 29550:1 29576:4 29596:1 29601:2 29637:1 29658:2 29668:1 29684:2 29686:2 29689:1 29696:1 29697:1 29706:1 29718:1 29789:2 29816:1 29828:1 29848:1 29852:1 29934:2 29938:1 29956:2 29979:1 29991:2 30031:2 30041:1 30044:1 30045:6 30067:1 30097:1 30188:1 30240:3 30289:1 30319:3 30331:1 30336:1 30372:1 30390:4 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30479:15 30480:1 30537:8 30550:1 30581:1 30623:1 30630:2 30655:1 30661:1 30675:3 30711:6 30713:1 30747:1 30764:2 30768:1 30805:2 30809:1 30810:1 30846:2 30876:1 30882:2 30903:1 30933:1 30996:1 31026:1 31041:3 31043:3 31115:1 31118:1 31121:1 31125:2 31143:1 31253:3 31267:1 31268:1 31272:10 31288:1 31306:1 31309:1 31310:1 31337:1 31342:1 31362:1 31369:1 31380:1 31413:1 31437:1 31444:1 31458:1 31477:1 31495:1 31496:1 31506:1 31514:2 31666:1 31667:1 31681:1 31705:1 31713:2 31718:1 31742:1 31756:1 31765:1 31781:1 31794:1 31801:1 31802:1 31803:1 31815:1 31826:1 31851:1 31852:1 31866:1 31873:1 31882:1 31890:2 31896:1 31898:2 31902:1 31905:1 31911:1 31914:1 31934:1 31958:1 31962:3 31965:1 31977:1
20 9:1 18:1 21:1 23:1 26:1 30:1 78:1 95:1 103:1 111:1 120:1 158:1 169:1 181:1 197:1 211:1 253:1 261:2 274:2 278:1 290:3 331:1 355:2 358:1 404:1 406:1 482:1 489:2 536:1 596:1 602:1 623:2 635:1 652:1 664:2 696:2 701:1 704:1 770:1 822:1 956:2 971:2 977:1 990:1 996:3 1000:1 1011:1 1025:1 1034:3 1057:1 1063:2 1064:1 1067:3 1069:2 1079:1 1095:1 1108:3 1135:3 1136:3 1143:1 1158:1 1167:1 1198:1 1200:2 1205:1 1226:1 1255:1 1292:1 1305:2 1341:1 1389:1 1402:1 1406:1 1407:1 1420:1 1426:1 1427:1 1430:1 1446:1 1491:1 1533:1 1563:1 1576:1 1594:2 1608:1 1630:1 1631:1 1633:2 1651:3 1662:1 1668:1 1670:1 1671:1 1678:1 1691:3 1719:7 1722:2 1725:7 1729:1 1737:1 1741:1 1746:1 1756:1 1757:1 1759:2 1778:1 1799:1 1800:1 1805:1 1811:9 1827:1 1829:1 1840:1 1863:1 1876:1 1877:1 1903:1 1967:1 1968:5 1973:2 1976:1 1987:1 1994:1 2026:1 2035:2 2064:1 2070:1 2105:1 2113:1 2116:2 2127:1 2138:1 2145:1 2161:1 2163:1 2210:1 2229:1 2245:4 2260:1 2264:1 2284:1 2285:3 2296:1 2301:1 2341:1 2354:3 2357:1 2389:1 2395:2 2403:1 2433:2 2435:8 2438:2 2450:1 2451:1 2452:2 2454:1 2458:1 2472:1 2475:2 2500:1 2512:1 2514:4 2517:1 2520:1 2531:2 2533:1 2535:3 2539:2 2542:2 2546:1 2549:2 2554:2 2582:1 2629:1 2645:1 2673:1 2677:1 2723:1 2741:1 2767:1 2773:1 2795:1 2801:1 2831:1 2839:1 2853:1 2869:1 2870:1 2875:1 2898:1 2914:1 2923:1 2948:1 2965:1 2970:2 2975:1 3012:2 3050:1 3063:1 3084:1 3087:1 3120:1 3128:1 3159:3 3168:8 3169:2 3171:1 3181:1 3184:2 3185:1 3195:1 3204:1 3214:8 3320:1 3347:2 3422:3 3453:1 3463:1 3537:1 3553:1 3598:1 3607:1 3615:1 3625:1 3660:2 3695:3 3723:1 3751:1 3752:1 3780:1 3825:1 3835:1 3901:1 3966:1 3970:1 3977:1 4009:1 4013:1 4015:1 4042:1 4056:1 4059:1 4063:1 4065:1 4075:2 4118:2 4126:1 4127:2 4175:3 4176:1 4202:1 4207:1 4211:6 4213:1 4279:1 4296:1 4306:1 4317:3 4345:1 4346:1 4366:1 4379:1 4391:1 4392:2 4414:1 4423:2 4425:1 4454:1 4472:1 4535:1 4562:1 4587:1 4626:1 4702:1 4730:1 4768:1 4776:1 4780:1 4791:1 4794:1 4836:2 4838:1 4860:1 4872:1 4923:1 4958:1 4959:1 4993:1 5012:1 5046:1 5055:1 5067:1 5078:2 5086:1 5130:1 5131:1 5136:2 5186:1 5196:1 5215:1 5227:1 5245:1 5247:1 5283:1 5306:1 5332:6 5345:1 5349:1 5372:1 5444:3 5448:4 5466:3 5467:1 5485:1 5487:1 5488:2 5490:2 5492:2 5496:1 5508:1 5607:1 5619:1 5662:1 5678:3 5683:1 5693:1 5706:1 5715:1 5720:1 5745:3 5748:1 5800:2 5825:1 5839:1 5864:2 5901:1 5916:1 5929:1 5931:3 5962:1 5977:1 6039:2 6057:2 6089:1 6101:2 6107:1 6117:1 6120:1 6127:1 6137:3 6158:1 6189:1 6225:1 6244:1 6280:1 6312:1 6319:1 6321:1 6326:2 6350:1 6351:1 6359:1 6362:1 6375:1 6379:1 6387:2 6444:3 6445:1 6463:2 6467:2 6476:1 6477:1 6532:1 6542:1 6571:1 6609:2 6612:1 6631:1 6652:2 6670:2 6674:1 6675:1 6702:1 6709:1 6711:1 6721:1 6772:3 6779:1 6783:1 6830:1 6856:3 6858:1 6874:1 6890:1 6898:1 6910:1 6932:2 6933:2 6949:3 6966:1 6971:2 6973:1 6977:2 6979:1 6980:2 6982:3 7034:1 7077:3 7097:1 7105:3 7120:1 7146:1 7169:1 7170:1 7215:1 7236:1 7262:1 7307:1 7328:1 7333:1 7344:1 7345:2 7353:1 7361:2 7392:1 7396:1 7399:1 7401:1 7406:2 7430:1 7432:1 7433:1 7456:1 7457:1 7489:2 7566:1 7580:3 7615:3 7628:1 7634:1 7657:1 7688:1 7713:1 7717:2 7763:1 7781:1 7799:6 7801:1 7813:1 7826:1 7862:2 7900:1 7937:1 7940:1 7941:1 7951:1 7971:2 8000:1 8013:1 8019:1 8025:1 8051:1 8069:1 8088:1 8122:3 8124:1 8128:3 8142:1 8144:1 8154:1 8172:1 8207:2 8214:1 8241:1 8250:1 8264:1 8276:1 8283:2 8285:1 8290:1 8342:1 8349:1 8377:2 8383:1 8391:7 8410:1 8414:1 8416:3 8417:1 8457:19 8487:4 8490:8 8502:1 8537:1 8541:2 8554:2 8558:1 8568:1 8639:1 8721:1 8765:1 8787:3 8797:1 8803:1 8816:1 8903:1 8907:1 8929:1 8940:9 8947:1 8950:1 8983:1 9019:16 9045:1 9072:1 9075:1 9089:1 9102:1 9164:1 9205:1 9226:1 9249:1 9258:2 9276:1 9285:3 9294:1 9296:1 9343:1 9348:1 9383:2 9391:1 9393:3 9399:4 9401:1 9408:1 9413:3 9425:1 9428:1 9493:1 9495:1 9559:1 9590:1 9643:1 9658:1 9682:1 9698:1 9707:2 9751:1 9763:1 9767:1 9772:2 9798:1 9816:1 9851:1 9869:1 9876:1 9885:1 9928:1 9931:2 9936:6 9940:4 9944:1 9960:3 9974:1 10037:1 10061:1 10086:1 10093:1 10114:1 10121:1 10190:2 10193:1 10207:1 10214:1 10215:1 10222:1 10313:1 10334:1 10354:2 10405:1 10431:2 10449:1 10457:1 10461:2 10474:1 10534:1 10559:1 10563:3 10568:6 10583:3 10603:1 10649:1 10651:1 10663:2 10667:1 10678:1 10700:9 10714:1 10732:1 10743:1 10749:1 10762:1 10764:1 10775:1 10781:1 10856:2 10871:2 10878:2 10895:1 10925:1 10929:1 10944:2 10962:1 10966:1 10972:1 10978:1 11080:1 11082:1 11116:1 11124:1 11140:1 11218:2 11277:1 11284:1 11285:1 11292:2 11335:1 11351:2 11416:3 11425:1 11448:1 11493:2 11523:1 11536:1 11548:3 11556:1 11587:2 11599:1 11606:1 11608:1 11612:1 11615:1 11620:1 11625:1 11626:1 11629:1 11630:1 11641:1 11642:1 11671:1 11673:1 11714:3 11723:1 11736:1 11738:1 11744:4 11746:4 11785:1 11818:1 11829:1 11835:4 11849:3 11877:1 11913:1 11926:1 11937:1 11958:3 11961:1 12024:1 12094:1 12101:1 12103:1 12105:1 12124:1 12126:1 12160:6 12166:1 12192:1 12197:1 12221:1 12243:1 12256:1 12268:3 12273:2 12308:1 12309:1 12334:1 12347:1 12359:1 12377:1 12406:1 12422:1 12441:2 12445:6 12512:1 12521:2 12542:1 12545:2 12589:1 12621:1 12640:1 12646:1 12669:1 12675:1 12682:5 12688:1 12707:1 12721:1 12727:1 12739:1 12743:1 12753:1 12758:1 12769:2 12772:1 12798:1 12822:1 12823:5 12839:2 12848:6 12896:1 12917:1 12920:11 12999:1 13025:1 13035:1 13042:2 13055:4 13093:1 13121:3 13143:1 13160:1 13178:1 13202:1 13215:1 13216:2 13226:2 13227:2 13231:1 13247:3 13250:3 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13364:2 13392:1 13455:1 13470:1 13519:1 13539:2 13620:1 13656:2 13693:1 13732:1 13751:1 13813:7 13816:1 13839:1 13845:1 13858:1 13879:1 13899:11 13906:1 13926:1 13933:2 13960:1 13984:2 14023:1 14024:1 14101:1 14104:1 14113:1 14121:2 14178:1 14230:1 14257:4 14269:1 14272:1 14274:3 14280:2 14296:1 14303:8 14305:1 14307:1 14341:1 14345:1 14352:1 14371:1 14399:2 14400:1 14445:1 14446:8 14455:1 14464:1 14468:14 14512:1 14553:1 14567:3 14590:1 14618:1 14632:2 14680:1 14704:1 14709:2 14714:1 14719:1 14864:1 14866:1 14868:1 14871:2 14879:1 14897:2 14913:1 14931:1 14983:10 14995:1 14996:1 15036:1 15037:2 15038:1 15067:2 15078:1 15091:1 15092:1 15094:1 15104:1 15117:1 15171:3 15174:2 15196:2 15236:1 15237:1 15297:1 15305:1 15308:2 15322:1 15344:1 15387:1 15446:2 15455:1 15464:1 15472:1 15474:1 15519:1 15522:1 15552:1 15561:1 15572:1 15593:1 15597:1 15600:1 15604:1 15615:1 15623:1 15647:1 15648:1 15654:2 15680:1 15698:1 15699:1 15702:3 15740:3 15762:1 15804:1 15821:3 15835:1 15848:2 15849:1 15872:1 15873:1 15892:2 15903:1 15910:1 15926:2 15937:1 15941:1 15954:1 15961:1 15971:1 15991:1 16035:1 16048:1 16112:1 16126:1 16151:2 16166:2 16178:1 16193:1 16198:1 16239:1 16298:3 16304:1 16305:1 16355:1 16358:2 16410:1 16506:3 16515:1 16545:3 16547:1 16549:1 16553:1 16621:1 16629:1 16685:1 16711:1 16720:1 16762:1 16768:1 16771:19 16808:1 16811:1 16822:1 16865:1 16870:1 16876:1 16919:1 16950:1 17030:2 17036:1 17039:2 17040:1 17041:2 17046:1 17059:1 17065:1 17066:1 17071:2 17079:1 17087:1 17125:2 17127:1 17184:1 17215:5 17216:2 17236:1 17319:1 17321:2 17360:2 17377:1 17382:1 17398:1 17421:1 17446:1 17469:2 17473:2 17507:3 17521:1 17549:1 17557:1 17559:1 17562:1 17571:3 17593:1 17602:1 17625:1 17632:1 17633:2 17637:1 17639:1 17641:2 17643:1 17646:1 17647:1 17651:1 17656:1 17658:1 17662:5 17678:1 17690:1 17695:3 17717:1 17731:1 17864:1 17902:1 17932:1 17987:1 18039:1 18068:1 18099:1 18102:1 18107:1 18115:1 18122:1 18123:1 18130:2 18141:1 18192:1 18202:1 18212:1 18225:2 18228:4 18238:2 18243:1 18260:1 18266:1 18277:2 18310:1 18326:1 18328:1 18343:3 18347:1 18352:9 18355:1 18409:2 18412:1 18418:1 18420:2 18429:2 18430:2 18454:1 18465:2 18488:1 18492:1 18494:2 18498:1 18531:1 18537:1 18566:1 18569:1 18574:1 18583:1 18587:1 18589:1 18594:1 18596:1 18597:1 18608:1 18620:1 18623:1 18650:1 18684:1 18694:1 18696:1 18709:1 18727:2 18732:1 18752:1 18765:2 18802:1 18810:1 18867:1 18906:1 18913:1 18918:1 18972:1 18997:1 19001:1 19043:1 19068:2 19078:2 19087:1 19122:1 19130:1 19133:1 19137:1 19164:2 19183:1 19194:1 19205:1 19212:1 19222:1 19249:6 19286:1 19292:2 19319:1 19351:3 19353:1 19357:2 19369:1 19391:1 19408:1 19418:1 19428:1 19429:1 19437:1 19441:1 19443:3 19449:2 19450:1 19454:1 19463:1 19480:1 19494:1 19496:1 19518:8 19530:1 19549:1 19595:1 19601:1 19642:1 19665:1 19711:1 19722:1 19762:1 19774:1 19781:1 19787:1 19792:2 19827:1 19852:1 19862:1 19946:2 19981:3 19990:1 19992:2 20059:1 20067:1 20068:1 20105:1 20196:1450 20200:2 20218:3 20232:1 20249:1 20284:1 20289:1 20304:1 20328:1 20339:1 20341:1 20347:2 20353:1 20386:1 20422:1 20436:4 20444:1 20449:3 20451:1 20453:1 20463:1 20482:1 20510:1 20524:1 20530:2 20696:3 20757:1 20761:2 20781:1 20819:1 20832:2 20839:1 20850:1 20858:1 20897:1 20914:1 20917:1 20954:1 20955:2 20978:2 21004:4 21027:1 21041:2 21056:1 21066:1 21067:1 21106:1 21129:1 21130:1 21136:1 21158:1 21167:8 21173:1 21218:1 21229:1 21262:1 21318:1 21323:1 21360:1 21363:1 21406:1 21429:1 21434:2 21456:1 21465:1 21472:1 21475:1 21491:2 21492:2 21500:2 21506:1 21541:1 21542:1 21548:1 21560:1 21603:2 21623:1 21626:1 21634:1 21679:1 21705:1 21742:1 21755:1 21763:4 21769:1 21773:1 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:3 21867:2 21873:1 21894:1 21915:2 21920:1 21937:6 21944:3 21991:1 22002:1 22025:1 22056:1 22068:1 22098:1 22109:1 22112:1 22115:1 22162:1 22184:1 22194:2 22204:1 22225:1 22228:4 22230:1 22240:1 22242:2 22302:1 22306:1 22311:1 22319:1 22348:1 22351:1 22353:1 22384:1 22479:1 22482:1 22485:1 22502:1 22507:1 22521:1 22526:1 22528:1 22550:1 22554:1 22564:1 22581:1 22590:2 22614:1 22626:1 22632:1 22639:1 22643:1 22657:1 22666:1 22719:1 22734:3 22739:1 22796:10 22803:2 22809:1 22822:4 22853:1 22861:1 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22901:1 22918:1 22941:1 22951:1 22960:2 22972:1 23092:3 23131:1 23136:3 23146:2 23219:1 23228:1 23234:1 23249:1 23258:3 23260:1 23264:1 23274:1 23275:1 23322:1 23342:1 23360:1 23377:1 23396:2 23436:2 23438:1 23442:2 23491:1 23500:1 23551:1 23557:1 23558:1 23613:1 23615:1 23617:1 23676:1 23686:3 23687:3 23689:3 23696:1 23700:1 23715:1 23718:1 23732:1 23749:1 23765:1 23775:1 23796:1 23826:2 23862:1 23885:1 23901:2 23905:2 23916:3 23953:1 23977:1 23994:1 24053:1 24068:1 24079:2 24087:1 24088:2 24095:1 24126:1 24157:1 24161:2 24166:2 24182:1 24218:1 24233:1 24244:1 24245:1 24261:1 24272:1 24287:1 24298:1 24311:2 24357:2 24361:1 24363:2 24375:2 24379:1 24414:1 24425:1 24451:1 24452:1 24488:1 24503:1 24534:3 24539:1 24563:1 24566:1 24584:1 24594:1 24599:1 24610:2 24611:1 24612:2 24616:1 24617:1 24619:1 24633:1 24638:1 24640:1 24652:3 24655:1 24664:1 24672:3 24714:2 24718:2 24725:1 24727:1 24731:1 24761:1 24778:1 24794:1 24819:1 24846:1 24865:4 24883:1 24913:2 24916:1 24957:2 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25079:1 25080:1 25166:1 25171:1 25188:1 25193:1 25203:1 25210:1 25247:1 25274:1 25276:3 25280:1 25298:2 25308:1 25346:1 25351:1 25359:1 25364:1 25372:1 25395:1 25417:1 25421:1 25431:1 25438:1 25441:1 25465:3 25469:1 25490:1 25498:1 25534:3 25559:1 25560:2 25566:1 25593:1 25606:1 25648:2 25649:1 25691:1 25705:1 25779:2 25802:1 25817:3 25865:1 25909:1 25910:8 25996:1 26016:2 26071:1 26111:1 26136:1 26142:1 26151:1 26160:1 26170:2 26172:7 26174:1 26177:1 26197:1 26201:1 26202:1 26215:1 26219:1 26221:2 26236:1 26245:1 26334:1 26397:1 26398:1 26399:1 26405:1 26406:1 26408:1 26409:1 26413:1 26427:1 26470:1 26483:1 26487:2 26489:1 26490:2 26496:1 26497:1 26510:1 26518:2 26535:3 26536:1 26552:1 26575:1 26576:1 26607:1 26608:1 26626:1 26631:2 26645:2 26654:1 26657:1 26678:1 26754:1 26793:1 26799:2 26836:1 26861:2 26870:1 26916:5 26968:1 26986:1 26991:6 26999:1 27000:1 27002:1 27005:1 27019:1 27043:1 27044:1 27242:2 27244:5 27276:1 27277:1 27290:2 27296:1 27297:1 27305:2 27353:1 27360:1 27384:1 27472:1 27482:1 27507:1 27509:1 27510:1 27512:1 27518:1 27534:1 27544:1 27599:1 27600:1 27614:1 27646:1 27673:1 27734:1 27750:1 27770:1 27801:1 27802:1 27804:3 27814:1 27869:1 27910:2 27952:3 27976:1 27999:1 28073:1 28076:1 28091:1 28105:1 28131:3 28150:1 28152:1 28154:1 28159:3 28166:1 28180:1 28192:1 28215:1 28219:1 28222:3 28235:1 28245:1 28308:3 28309:1 28326:2 28349:1 28391:3 28405:1 28429:2 28484:1 28507:1 28511:1 28516:1 28517:1 28533:1 28554:1 28578:1 28581:2 28600:1 28602:1 28607:1 28611:1 28619:2 28623:3 28624:1 28644:2 28664:1 28675:1 28680:1 28687:1 28703:3 28747:1 28756:1 28767:1 28782:1 28855:1 28867:1 28874:1 28912:1 28916:1 29104:1 29109:1 29117:1 29142:1 29150:1 29209:1 29243:1 29268:1 29288:1 29292:2 29314:1 29315:2 29319:1 29325:1 29340:1 29342:1 29372:2 29390:1 29391:1 29400:1 29403:1 29411:4 29468:1 29479:1 29482:3 29486:1 29509:1 29550:1 29576:4 29596:1 29601:2 29637:1 29658:2 29668:1 29684:2 29686:2 29689:1 29696:1 29697:1 29699:1 29706:1 29718:1 29789:2 29795:1 29816:1 29828:1 29848:1 29852:1 29867:1 29934:2 29938:1 29956:3 29979:1 29991:2 30031:2 30041:1 30044:1 30045:6 30064:1 30067:1 30097:1 30188:1 30240:3 30289:1 30319:3 30331:1 30336:1 30372:1 30390:4 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30479:15 30480:1 30537:10 30550:1 30581:1 30623:1 30630:2 30655:1 30661:1 30670:1 30675:3 30711:6 30713:1 30747:1 30764:2 30768:1 30805:2 30809:1 30810:1 30846:2 30876:1 30882:2 30903:1 30933:1 30996:1 31026:1 31041:3 31043:3 31115:1 31118:1 31121:1 31125:2 31143:1 31253:3 31267:1 31268:1 31272:10 31288:1 31306:1 31309:1 31310:2 31337:1 31342:1 31362:1 31369:1 31380:1 31413:1 31437:1 31444:1 31458:1 31465:1 31477:1 31495:1 31496:1 31506:1 31514:2 31666:1 31667:1 31681:1 31705:1 31713:2 31718:1 31742:1 31756:1 31765:1 31781:1 31794:1 31801:1 31802:1 31803:1 31815:1 31826:1 31851:1 31852:1 31866:1 31873:1 31882:1 31890:2 31896:2 31898:2 31902:1 31905:1 31911:1 31914:1 31934:1 31958:1 31962:3 31965:1 31977:1
20 9:1 18:1 21:1 23:1 26:1 30:1 78:1 95:1 103:1 111:1 120:1 158:1 169:1 181:1 197:1 211:1 253:1 261:2 274:2 278:1 290:3 331:1 355:2 358:1 404:1 406:2 482:1 489:2 536:1 596:1 602:1 623:2 635:1 652:2 664:2 696:2 701:1 704:2 770:1 822:1 956:2 971:2 977:1 990:1 996:3 1000:1 1011:1 1025:1 1034:3 1057:1 1063:2 1064:1 1067:5 1069:2 1079:1 1095:1 1108:4 1135:3 1136:3 1143:1 1149:1 1158:1 1167:1 1198:1 1200:2 1205:1 1226:1 1255:1 1281:1 1292:1 1305:2 1341:1 1380:1 1389:1 1402:1 1406:1 1407:1 1420:1 1426:1 1427:1 1430:1 1446:1 1491:1 1533:1 1563:1 1576:1 1582:1 1594:2 1599:1 1608:1 1630:1 1631:1 1633:2 1651:3 1662:1 1668:1 1670:1 1671:1 1678:1 1691:3 1719:8 1722:2 1725:7 1729:1 1737:1 1741:1 1746:1 1756:1 1757:1 1759:2 1778:1 1799:1 1800:1 1805:1 1811:9 1827:1 1829:1 1840:1 1863:1 1876:1 1877:1 1903:1 1967:1 1968:5 1973:2 1976:1 1987:2 1994:1 2026:1 2035:2 2064:1 2070:1 2105:1 2113:1 2116:2 2127:1 2138:1 2145:1 2161:1 2163:1 2210:1 2229:1 2245:4 2260:1 2264:1 2284:1 2285:3 2296:1 2301:1 2341:1 2354:3 2357:1 2379:1 2389:1 2395:2 2403:1 2433:2 2435:8 2438:3 2450:1 2451:1 2452:2 2454:1 2458:1 2472:1 2475:2 2500:1 2512:1 2514:4 2517:1 2520:1 2530:1 2531:2 2533:1 2535:3 2539:2 2542:2 2546:1 2549:2 2554:2 2582:1 2629:1 2645:1 2673:1 2677:1 2718:1 2723:1 2741:1 2762:1 2767:1 2773:1 2795:1 2801:1 2831:1 2839:1 2853:1 2869:1 2870:1 2875:1 2898:1 2914:1 2923:1 2948:1 2965:1 2970:2 2975:1 3012:2 3037:1 3050:1 3063:1 3084:1 3087:1 3120:1 3128:1 3159:3 3168:8 3169:2 3171:1 3181:1 3184:2 3185:1 3195:1 3204:1 3214:8 3320:1 3347:2 3422:3 3453:1 3463:1 3537:1 3553:1 3598:1 3607:1 3615:1 3625:1 3660:2 3695:3 3711:1 3723:1 3751:1 3752:1 3780:1 3825:1 3835:1 3901:1 3966:1 3970:1 3977:1 4009:1 4013:1 4015:1 4042:1 4056:1 4059:1 4063:1 4065:1 4070:1 4075:2 4118:2 4126:1 4127:2 4175:3 4176:1 4202:1 4207:1 4211:6 4213:1 4279:1 4296:1 4306:1 4317:4 4345:1 4346:1 4366:1 4379:1 4391:1 4392:2 4414:1 4423:2 4425:1 4454:1 4472:1 4508:1 4535:1 4562:1 4587:1 4626:1 4702:1 4730:1 4768:1 4776:1 4780:1 4791:1 4794:1 4836:2 4838:1 4860:1 4872:1 4923:1 4958:1 4959:2 4993:1 5012:1 5046:1 5055:1 5067:1 5078:2 5086:1 5106:1 5130:1 5131:1 5136:2 5186:1 5196:1 5215:1 5227:1 5245:1 5247:1 5283:1 5306:1 5332:8 5345:1 5349:1 5372:1 5444:3 5448:5 5466:3 5467:1 5485:1 5487:1 5488:2 5490:2 5492:2 5495:1 5496:1 5508:1 5607:1 5619:1 5662:1 5678:4 5683:1 5693:1 5706:1 5715:1 5720:1 5745:3 5748:1 5800:2 5825:1 5839:1 5864:2 5901:1 5916:1 5929:1 5931:3 5962:1 5977:1 6039:2 6057:2 6089:1 6101:2 6107:1 6117:1 6120:1 6127:1 6137:3 6158:2 6189:1 6225:1 6244:1 6280:1 6312:1 6319:1 6321:1 6326:2 6350:1 6351:1 6359:1 6362:1 6375:1 6379:1 6387:2 6394:1 6444:3 6445:1 6463:2 6467:2 6476:1 6477:1 6532:1 6542:1 6571:1 6609:2 6612:1 6631:1 6652:2 6670:2 6674:1 6675:1 6702:1 6709:1 6711:1 6721:1 6772:3 6779:1 6783:1 6830:1 6856:3 6858:1 6869:1 6874:1 6890:1 6898:2 6910:1 6932:2 6933:2 6949:3 6951:1 6966:1 6971:2 6973:1 6977:2 6979:1 6980:2 6982:3 7034:1 7077:4 7097:1 7105:4 7120:1 7146:1 7169:1 7170:1 7215:1 7236:1 7262:1 7307:1 7328:1 7333:1 7344:1 7345:2 7353:1 7361:2 7392:1 7396:1 7399:1 7401:1 7406:2 7430:1 7432:1 7433:1 7456:1 7457:1 7489:2 7566:1 7580:3 7615:3 7628:1 7634:1 7657:1 7688:1 7713:1 7717:2 7763:1 7781:1 7799:6 7801:1 7813:1 7826:1 7862:2 7900:1 7937:1 7940:1 7941:1 7951:1 7971:2 8000:1 8013:1 8019:1 8025:1 8051:1 8069:1 8088:1 8122:3 8124:1 8128:3 8142:1 8144:1 8154:1 8172:1 8207:2 8214:1 8231:1 8241:1 8250:1 8264:1 8276:1 8283:2 8285:1 8290:1 8342:1 8349:1 8376:1 8377:2 8383:1 8391:7 8410:1 8414:1 8416:4 8417:1 8457:20 8487:4 8490:8 8502:1 8537:1 8541:2 8554:2 8558:1 8568:1 8639:1 8721:1 8765:1 8787:3 8797:2 8803:1 8816:1 8903:1 8907:1 8929:1 8940:9 8947:1 8950:1 8983:1 9019:16 9045:1 9072:1 9075:1 9089:1 9102:1 9164:1 9205:1 9226:1 9249:1 9258:2 9276:1 9279:1 9285:3 9294:1 9296:1 9343:1 9348:1 9383:2 9391:1 9393:3 9399:4 9401:1 9408:1 9413:3 9425:1 9428:1 9493:1 9495:1 9559:1 9590:1 9643:1 9658:1 9682:1 9698:1 9707:2 9751:1 9763:1 9767:1 9772:2 9798:1 9816:1 9851:1 9869:1 9876:1 9885:1 9928:1 9931:2 9936:6 9940:4 9944:1 9960:3 9974:1 10037:1 10061:1 10086:1 10093:1 10114:1 10121:1 10190:2 10193:1 10207:1 10214:1 10215:1 10222:1 10313:1 10334:1 10354:2 10393:1 10394:1 10405:1 10431:2 10449:1 10457:1 10461:2 10474:2 10534:1 10559:1 10563:3 10568:6 10583:3 10603:1 10649:1 10651:1 10663:2 10667:1 10678:1 10700:9 10714:1 10732:1 10743:1 10749:1 10762:1 10764:1 10775:1 10781:1 10856:2 10871:2 10878:2 10895:1 10925:1 10929:1 10944:2 10962:1 10966:1 10972:1 10978:1 11080:1 11082:1 11116:1 11124:1 11140:1 11218:2 11277:1 11284:1 11285:1 11292:2 11335:1 11351:2 11416:4 11425:1 11448:1 11493:2 11497:1 11514:1 11523:1 11536:1 11548:3 11556:1 11587:2 11599:1 11606:2 11608:1 11612:1 11615:1 11620:1 11625:1 11626:1 11629:1 11630:1 11641:1 11642:1 11671:1 11673:1 11714:3 11723:1 11736:1 11738:1 11744:4 11746:4 11785:1 11818:1 11829:1 11835:4 11849:3 11877:1 11913:1 11926:1 11937:1 11958:3 11961:1 11964:1 11968:1 12024:1 12070:1 12094:1 12101:1 12103:1 12105:1 12124:1 12126:1 12160:6 12166:1 12192:1 12197:1 12221:1 12243:1 12256:1 12268:3 12273:2 12308:1 12309:1 12334:1 12347:1 12359:1 12377:1 12406:1 12422:1 12441:2 12445:6 12512:1 12521:2 12542:1 12545:2 12589:1 12590:1 12621:1 12640:1 12646:2 12669:1 12675:1 12682:5 12684:1 12688:1 12707:1 12721:1 12727:1 12739:1 12743:1 12750:1 12753:1 12758:1 12769:2 12772:1 12798:1 12822:1 12823:5 12839:2 12848:7 12896:1 12917:1 12920:11 12999:1 13025:1 13035:1 13042:2 13055:4 13093:1 13121:3 13143:1 13160:1 13178:1 13202:1 13215:1 13216:2 13226:2 13227:2 13231:1 13247:3 13250:3 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13364:2 13392:1 13455:1 13470:1 13519:1 13539:2 13620:1 13656:2 13693:1 13732:1 13751:1 13813:7 13816:1 13839:1 13845:1 13858:1 13879:1 13899:11 13906:1 13926:1 13933:2 13960:1 13984:2 14023:1 14024:1 14101:1 14104:1 14113:1 14121:3 14178:1 14230:1 14257:4 14269:1 14272:1 14274:3 14280:2 14296:1 14303:8 14305:1 14307:1 14341:1 14345:1 14352:1 14371:1 14399:2 14400:1 14445:1 14446:8 14455:1 14464:1 14468:14 14512:1 14553:1 14567:3 14590:1 14618:1 14632:2 14680:1 14704:1 14709:2 14714:1 14719:1 14864:1 14866:1 14868:1 14871:2 14879:1 14897:2 14913:1 14931:1 14983:10 14995:1 14996:1 15036:1 15037:2 15038:1 15067:2 15078:1 15091:1 15092:1 15094:1 15096:1 15104:1 15117:1 15171:3 15174:2 15196:2 15236:1 15237:1 15297:1 15305:1 15308:2 15322:1 15344:1 15387:1 15446:2 15455:1 15464:1 15472:1 15474:1 15519:1 15522:1 15552:1 15561:1 15572:1 15593:1 15597:1 15600:1 15604:1 15605:1 15615:1 15623:1 15647:1 15648:1 15654:2 15680:1 15698:1 15699:1 15702:4 15740:3 15762:1 15804:1 15815:1 15821:3 15835:1 15848:2 15849:1 15872:1 15873:1 15892:2 15903:1 15910:1 15926:2 15937:1 15941:1 15942:1 15954:1 15961:1 15971:1 15991:1 16019:1 16035:1 16048:1 16112:1 16126:1 16151:2 16156:1 16166:2 16178:1 16193:2 16198:1 16239:1 16298:3 16304:1 16305:1 16355:1 16358:2 16410:1 16506:3 16515:1 16545:3 16547:1 16549:1 16553:1 16588:1 16621:1 16629:1 16685:1 16711:1 16720:1 16762:1 16768:1 16771:20 16808:1 16811:1 16822:1 16865:1 16870:1 16876:1 16914:1 16919:1 16950:1 17030:2 17036:1 17039:2 17040:1 17041:2 17046:1 17059:1 17065:1 17066:1 17071:3 17079:1 17087:1 17125:2 17127:1 17184:1 17185:1 17215:5 17216:2 17236:1 17319:1 17321:2 17360:2 17377:1 17382:1 17398:1 17421:1 17446:1 17469:2 17473:2 17507:3 17514:1 17521:1 17549:1 17557:1 17559:1 17562:1 17571:3 17593:1 17602:1 17625:1 17632:1 17633:2 17637:1 17639:1 17641:2 17643:1 17646:1 17647:1 17651:1 17656:1 17658:1 17662:5 17678:1 17690:1 17695:3 17717:1 17731:1 17864:1 17902:1 17932:1 17987:1 18039:1 18068:1 18099:1 18102:1 18107:1 18115:1 18122:1 18123:1 18130:2 18141:1 18192:1 18202:1 18212:1 18225:2 18228:4 18238:2 18243:1 18260:1 18266:1 18277:2 18310:1 18326:1 18328:1 18343:3 18347:1 18352:9 18355:1 18409:2 18412:1 18418:1 18420:2 18429:2 18430:2 18454:1 18465:2 18488:1 18492:1 18494:2 18498:1 18531:1 18537:1 18566:1 18569:1 18574:1 18583:1 18587:1 18589:1 18594:1 18596:1 18597:1 18608:1 18620:1 18623:1 18650:1 18684:1 18694:1 18696:1 18709:1 18727:2 18732:1 18750:1 18752:1 18765:2 18802:1 18810:1 18867:1 18873:1 18906:1 18913:1 18918:1 18972:1 18997:1 19001:1 19043:1 19044:1 19068:2 19078:2 19087:1 19122:1 19130:1 19133:1 19137:1 19164:2 19183:1 19194:1 19205:1 19212:1 19222:1 19249:6 19286:1 19292:2 19319:1 19351:3 19353:1 19357:2 19369:1 19391:1 19408:1 19418:1 19428:1 19429:1 19437:1 19441:1 19443:3 19449:2 19450:1 19454:1 19463:1 19480:1 19494:1 19496:1 19498:1 19518:8 19530:1 19549:1 19551:2 19595:1 19601:1 19642:1 19665:1 19711:1 19722:1 19762:1 19774:1 19781:1 19787:1 19792:2 19827:1 19852:1 19862:1 19946:2 19981:4 19990:1 19992:2 19994:1 20059:1 20067:1 20068:1 20105:1 20196:1531 20200:2 20218:3 20232:1 20249:1 20284:1 20289:1 20304:1 20328:1 20339:1 20341:1 20347:2 20353:1 20386:1 20422:1 20436:4 20444:1 20449:3 20451:1 20453:1 20463:1 20482:1 20510:1 20524:1 20530:2 20696:3 20757:1 20761:2 20781:1 20819:1 20832:2 20839:1 20850:1 20858:1 20897:1 20914:1 20917:1 20954:1 20955:2 20978:2 21004:4 21027:1 21041:2 21056:1 21066:1 21067:1 21106:1 21129:1 21130:1 21136:1 21158:1 21167:8 21173:1 21218:1 21229:1 21262:1 21267:1 21318:1 21323:1 21360:1 21363:1 21406:1 21429:1 21434:2 21456:1 21465:1 21472:1 21475:1 21491:2 21492:2 21500:2 21506:1 21541:1 21542:1 21548:1 21560:1 21603:2 21623:1 21626:1 21634:1 21679:1 21705:1 21742:1 21755:1 21763:4 21769:1 21773:1 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:3 21867:2 21873:1 21894:1 21915:2 21920:1 21937:6 21944:3 21991:1 22002:1 22025:1 22056:1 22068:1 22098:1 22109:1 22112:1 22115:1 22162:1 22184:1 22194:2 22204:1 22225:1 22228:4 22230:1 22240:1 22242:2 22302:1 22306:1 22311:1 22319:1 22348:1 22351:1 22353:1 22384:1 22479:1 22482:1 22485:1 22502:1 22507:1 22521:1 22526:1 22528:1 22550:1 22554:1 22564:1 22581:1 22590:2 22614:1 22626:1 22632:1 22639:1 22643:1 22657:1 22666:1 22719:1 22734:3 22739:1 22796:10 22803:2 22809:1 22822:4 22853:1 22861:1 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22901:1 22918:1 22941:1 22951:1 22960:2 22972:1 23092:3 23131:1 23136:3 23146:2 23185:1 23219:1 23228:1 23234:1 23249:1 23258:3 23260:1 23264:1 23274:1 23275:1 23322:1 23342:1 23360:1 23377:1 23396:2 23420:1 23436:2 23438:1 23442:2 23491:1 23500:1 23531:1 23551:1 23557:1 23558:1 23613:1 23615:1 23617:1 23676:1 23686:3 23687:3 23689:3 23696:1 23700:1 23715:1 23718:1 23732:1 23746:1 23749:1 23765:1 23775:1 23796:1 23826:2 23862:1 23885:1 23893:1 23901:2 23905:2 23916:3 23935:1 23953:1 23977:1 23994:1 24053:1 24068:1 24079:2 24087:1 24088:2 24095:1 24126:1 24157:1 24161:2 24166:2 24173:1 24182:1 24218:1 24233:1 24244:1 24245:1 24261:1 24272:1 24287:1 24298:1 24311:2 24357:2 24361:1 24363:2 24375:2 24379:1 24414:1 24425:1 24451:1 24452:1 24488:1 24503:1 24534:3 24539:1 24548:1 24563:1 24566:1 24584:1 24594:1 24599:1 24610:2 24611:1 24612:2 24616:1 24617:1 24619:1 24633:1 24638:1 24640:1 24652:3 24655:1 24664:1 24672:3 24714:2 24718:2 24725:1 24727:2 24731:1 24761:1 24778:1 24794:1 24819:2 24846:1 24865:4 24883:1 24913:2 24916:1 24957:2 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25079:1 25080:1 25166:1 25171:1 25188:1 25193:1 25203:1 25210:1 25247:1 25274:1 25276:3 25280:1 25298:2 25305:1 25308:1 25346:1 25351:1 25359:1 25364:1 25372:1 25395:1 25417:1 25421:1 25431:1 25438:1 25441:1 25465:3 25469:1 25490:1 25498:1 25534:3 25559:1 25560:2 25566:1 25593:1 25606:1 25648:2 25649:1 25691:1 25705:1 25779:2 25802:1 25817:3 25865:1 25909:1 25910:8 25996:1 26016:2 26071:1 26111:1 26136:1 26142:1 26151:2 26160:1 26170:2 26172:7 26174:1 26177:1 26197:1 26201:1 26202:1 26215:1 26219:1 26221:2 26236:1 26245:1 26334:1 26397:1 26398:1 26399:1 26405:1 26406:1 26408:1 26409:1 26413:1 26427:1 26470:1 26483:1 26487:2 26489:1 26490:2 26496:1 26497:1 26510:1 26518:2 26535:3 26536:1 26552:1 26575:1 26576:1 26607:1 26608:1 26626:1 26631:2 26645:2 26654:1 26657:1 26678:1 26754:1 26793:1 26799:2 26836:1 26861:2 26870:1 26916:6 26968:1 26986:1 26991:6 26999:1 27000:1 27002:1 27005:1 27019:1 27043:1 27044:1 27242:2 27244:5 27276:1 27277:1 27290:2 27296:1 27297:1 27305:2 27353:1 27360:1 27384:1 27472:1 27482:1 27507:1 27509:1 27510:1 27512:1 27518:1 27534:1 27544:1 27599:1 27600:1 27614:1 27646:1 27673:1 27734:1 27750:1 27770:1 27801:1 27802:1 27804:3 27814:1 27869:1 27910:2 27952:3 27976:1 27999:1 28073:1 28076:1 28091:1 28105:1 28112:1 28131:3 28150:1 28152:1 28154:1 28159:3 28166:1 28180:1 28192:1 28215:1 28219:1 28222:3 28235:1 28245:1 28308:3 28309:1 28326:2 28349:1 28391:3 28405:1 28429:2 28462:1 28484:1 28507:1 28511:1 28516:1 28517:1 28533:1 28554:1 28578:1 28581:2 28600:1 28602:1 28607:1 28611:1 28619:2 28623:3 28624:1 28644:2 28664:1 28675:1 28680:1 28687:1 28703:3 28747:1 28756:1 28767:1 28782:1 28855:1 28867:1 28874:1 28912:1 28916:1 29104:1 29109:1 29117:1 29142:1 29150:1 29209:1 29243:1 29268:1 29288:1 29292:2 29314:1 29315:2 29319:1 29325:1 29340:1 29342:1 29372:2 29390:1 29391:1 29400:1 29403:1 29411:4 29468:1 29479:1 29482:3 29486:1 29509:1 29550:1 29576:4 29587:1 29596:1 29601:2 29637:1 29658:2 29668:1 29684:2 29686:2 29689:1 29696:1 29697:1 29699:1 29706:1 29714:1 29718:1 29789:2 29795:1 29816:1 29828:1 29848:1 29852:1 29867:1 29934:2 29938:1 29956:4 29979:1 29991:2 30031:2 30041:1 30044:1 30045:6 30064:1 30067:1 30097:1 30188:1 30240:3 30289:1 30319:3 30331:1 30336:1 30368:1 30372:1 30390:4 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30479:15 30480:1 30502:1 30537:10 30550:1 30581:1 30623:1 30630:2 30655:1 30661:1 30670:1 30675:3 30711:6 30713:1 30747:1 30764:2 30768:1 30805:2 30809:1 30810:1 30846:2 30876:1 30882:2 30903:1 30933:1 30996:1 31026:1 31041:3 31043:3 31115:1 31118:1 31121:1 31125:2 31143:1 31253:3 31267:1 31268:1 31272:10 31288:1 31306:1 31309:1 31310:2 31337:1 31342:1 31362:1 31369:1 31380:1 31413:1 31437:1 31444:1 31458:1 31465:1 31477:1 31495:1 31496:1 31506:1 31514:2 31652:1 31659:1 31666:1 31667:1 31681:1 31705:1 31713:2 31718:1 31742:1 31756:1 31765:1 31781:1 31794:1 31801:1 31802:1 31803:1 31815:1 31826:1 31851:1 31852:1 31866:1 31873:1 31882:1 31890:3 31896:2 31898:2 31902:1 31905:1 31907:1 31911:1 31914:1 31934:1 31958:1 31962:3 31965:1 31977:1 31978:1 31998:1
20 9:1 18:1 21:1 23:1 26:1 30:1 78:1 95:1 103:1 111:1 120:1 158:1 169:1 181:1 197:1 211:1 253:1 261:2 274:2 278:1 290:3 331:1 355:2 358:1 404:1 406:2 482:1 489:2 536:1 596:1 602:1 623:2 635:1 652:2 664:2 696:2 701:1 704:2 770:1 822:1 956:2 959:1 971:2 977:1 990:1 996:3 1000:1 1011:1 1025:1 1034:3 1057:1 1063:2 1064:1 1067:5 1069:2 1079:1 1095:1 1108:4 1135:3 1136:3 1143:1 1149:1 1158:1 1167:1 1198:1 1200:2 1205:1 1226:1 1255:1 1281:1 1292:2 1305:2 1341:1 1380:1 1389:1 1402:1 1406:1 1407:1 1420:1 1426:1 1427:1 1430:1 1446:1 1491:1 1533:1 1563:1 1576:1 1582:1 1594:2 1599:1 1608:1 1630:1 1631:1 1633:2 1651:3 1662:1 1668:1 1670:1 1671:1 1678:1 1691:3 1719:9 1722:2 1725:7 1729:1 1737:1 1741:1 1746:1 1756:1 1757:1 1759:2 1778:1 1799:1 1800:1 1805:1 1811:9 1827:1 1829:1 1840:1 1863:1 1876:1 1877:1 1903:1 1967:1 1968:5 1973:2 1976:1 1987:2 1994:1 2026:1 2035:2 2064:1 2070:1 2088:1 2105:1 2113:2 2116:2 2127:1 2138:2 2145:1 2161:1 2163:1 2210:1 2229:1 2245:4 2260:1 2264:1 2284:1 2285:3 2295:1 2296:1 2301:1 2341:1 2354:3 2357:1 2379:1 2389:1 2395:2 2403:1 2433:2 2435:8 2438:3 2450:1 2451:1 2452:2 2454:1 2458:1 2472:1 2475:2 2500:1 2512:1 2514:4 2517:1 2520:1 2525:1 2530:1 2531:2 2533:1 2535:3 2539:2 2542:2 2546:1 2549:2 2554:2 2574:1 2582:1 2629:1 2645:1 2673:1 2677:1 2718:1 2723:1 2741:1 2762:1 2767:1 2772:1 2773:1 2795:1 2801:1 2831:1 2839:1 2853:1 2869:1 2870:1 2875:1 2898:1 2914:1 2923:1 2948:1 2965:1 2970:2 2975:1 2977:1 3012:2 3029:1 3037:1 3050:1 3063:1 3084:1 3087:1 3120:1 3128:1 3159:3 3168:8 3169:2 3171:1 3181:1 3184:2 3185:1 3195:1 3204:1 3214:8 3250:1 3320:1 3347:2 3422:3 3453:1 3463:1 3537:1 3553:1 3598:1 3607:1 3615:1 3625:1 3660:2 3695:3 3711:1 3723:1 3751:1 3752:1 3780:1 3825:1 3835:1 3901:1 3966:1 3970:1 3977:1 4009:1 4013:1 4015:1 4042:1 4056:1 4059:1 4063:1 4065:1 4070:1 4075:2 4118:2 4126:1 4127:2 4175:3 4176:1 4202:1 4207:1 4211:6 4213:1 4279:1 4296:1 4306:1 4317:4 4345:1 4346:1 4366:1 4379:1 4391:1 4392:2 4395:1 4414:1 4423:2 4425:1 4454:1 4472:1 4508:1 4535:1 4562:1 4587:1 4626:1 4702:1 4730:1 4768:1 4776:1 4780:1 4791:1 4794:1 4836:2 4838:1 4860:1 4872:1 4917:1 4923:1 4958:1 4959:2 4993:1 5012:1 5046:1 5055:1 5067:1 5078:2 5086:1 5106:1 5130:1 5131:1 5136:2 5186:1 5196:1 5215:1 5227:1 5245:1 5247:1 5283:1 5306:1 5332:8 5345:1 5349:1 5372:1 5444:3 5448:5 5466:3 5467:1 5476:1 5480:1 5485:1 5487:1 5488:2 5490:3 5492:2 5495:1 5496:1 5508:1 5607:1 5619:1 5662:1 5678:4 5683:1 5693:1 5706:1 5715:1 5720:1 5745:3 5748:1 5800:2 5825:1 5839:1 5864:2 5901:1 5916:1 5929:1 5931:3 5962:1 5977:1 5998:1 6039:2 6057:2 6089:1 6101:2 6107:1 6117:1 6120:1 6127:1 6137:3 6158:2 6189:1 6225:2 6244:1 6280:1 6312:1 6319:1 6321:1 6323:1 6326:2 6350:1 6351:1 6359:1 6362:1 6375:1 6379:1 6387:2 6394:1 6444:3 6445:1 6463:2 6467:2 6476:1 6477:2 6532:1 6542:1 6571:1 6609:2 6612:1 6631:1 6652:2 6670:2 6674:1 6675:1 6702:1 6709:1 6711:1 6721:1 6727:1 6772:3 6779:1 6783:1 6830:1 6841:1 6856:3 6858:1 6869:1 6874:1 6890:1 6898:2 6910:1 6932:2 6933:2 6949:3 6951:1 6966:1 6967:1 6971:2 6973:1 6977:2 6979:2 6980:2 6982:3 7034:1 7077:4 7097:1 7105:4 7120:1 7146:1 7169:1 7170:1 7215:1 7236:1 7262:1 7307:2 7328:1 7333:1 7344:1 7345:2 7353:1 7361:2 7392:1 7396:1 7399:1 7401:1 7406:2 7430:1 7432:1 7433:1 7439:1 7456:1 7457:1 7489:2 7566:1 7580:3 7615:3 7628:1 7634:1 7657:1 7688:1 7713:1 7717:2 7757:1 7763:1 7781:1 7799:6 7801:1 7813:1 7826:1 7862:2 7900:1 7937:1 7940:1 7941:1 7951:1 7971:2 8000:1 8013:1 8019:1 8025:1 8051:1 8069:1 8088:1 8122:3 8124:1 8128:3 8142:1 8144:1 8154:1 8172:1 8207:2 8214:1 8231:1 8241:1 8250:1 8264:1 8276:1 8283:2 8285:1 8290:1 8304:1 8342:1 8349:1 8376:1 8377:2 8383:1 8391:7 8410:1 8414:1 8416:4 8417:1 8457:20 8487:4 8490:8 8502:1 8537:1 8541:2 8554:2 8558:1 8568:1 8639:1 8721:1 8765:1 8787:3 8797:2 8803:1 8816:1 8903:1 8907:1 8929:1 8940:9 8947:1 8950:1 8983:1 9019:17 9045:1 9072:1 9075:1 9089:1 9102:1 9164:1 9205:1 9226:1 9249:1 9258:2 9276:1 9279:1 9285:3 9294:1 9296:1 9343:1 9348:1 9383:2 9391:1 9393:3 9398:1 9399:4 9401:1 9408:2 9413:3 9425:1 9428:2 9493:2 9495:1 9559:1 9590:1 9643:1 9658:1 9682:1 9698:1 9707:2 9751:1 9763:1 9767:1 9772:2 9798:1 9816:1 9851:1 9869:1 9876:1 9885:1 9928:1 9931:2 9936:6 9940:4 9944:1 9960:3 9974:1 10028:1 10037:1 10061:1 10086:1 10093:1 10114:1 10121:1 10190:2 10193:1 10207:1 10214:1 10215:1 10222:1 10313:1 10334:1 10354:2 10393:1 10394:1 10405:1 10431:2 10449:1 10457:1 10461:2 10474:2 10534:1 10547:1 10559:1 10563:3 10568:6 10583:3 10603:1 10649:1 10651:1 10663:2 10667:1 10678:1 10700:9 10714:1 10715:1 10732:1 10743:1 10749:1 10762:1 10764:1 10775:1 10781:1 10856:2 10864:1 10871:2 10878:2 10895:1 10925:1 10929:1 10944:2 10962:1 10966:1 10972:1 10978:1 10986:1 11071:1 11080:1 11082:1 11116:1 11124:1 11140:1 11218:2 11277:1 11284:1 11285:1 11292:2 11335:1 11351:2 11416:4 11425:1 11448:1 11493:2 11497:1 11514:1 11523:1 11536:1 11548:3 11556:1 11587:2 11599:1 11606:2 11608:1 11612:1 11615:1 11620:1 11625:1 11626:1 11629:1 11630:1 11641:1 11642:1 11671:1 11673:1 11714:3 11723:1 11736:1 11738:1 11744:4 11746:4 11785:1 11818:1 11829:1 11835:4 11849:3 11877:1 11913:1 11926:1 11937:1 11958:3 11961:1 11964:1 11968:1 12015:1 12024:1 12070:1 12094:1 12101:1 12103:1 12105:1 12124:1 12126:1 12160:6 12166:1 12192:1 12197:1 12221:1 12243:1 12256:1 12268:3 12273:2 12308:1 12309:1 12334:1 12338:1 12339:1 12347:1 12359:1 12377:1 12406:1 12422:1 12441:2 12445:6 12512:1 12521:2 12542:1 12545:2 12589:1 12590:1 12621:1 12640:1 12646:2 12669:1 12675:1 12682:5 12684:1 12688:1 12707:1 12721:1 12727:1 12739:1 12743:1 12750:1 12753:1 12758:1 12769:2 12772:1 12798:1 12822:1 12823:5 12839:2 12848:8 12896:1 12909:1 12917:1 12920:11 12999:1 13015:1 13025:1 13035:1 13042:2 13055:4 13093:1 13121:3 13143:1 13160:1 13178:2 13202:1 13215:1 13216:2 13226:2 13227:2 13231:1 13247:3 13250:3 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13364:2 13392:1 13455:1 13470:1 13519:1 13539:2 13620:1 13656:2 13693:1 13732:1 13751:1 13813:7 13816:1 13839:1 13845:1 13858:1 13879:1 13899:11 13906:1 13926:1 13933:2 13960:1 13984:2 14023:1 14024:1 14101:1 14104:1 14113:1 14121:3 14178:1 14230:2 14257:4 14269:1 14272:1 14274:3 14280:2 14296:2 14303:8 14305:1 14307:1 14341:1 14345:1 14352:1 14371:1 14399:2 14400:1 14445:1 14446:8 14455:1 14464:1 14468:14 14512:1 14553:1 14567:3 14590:1 14618:1 14632:2 14680:1 14704:1 14709:2 14714:1 14719:1 14790:1 14864:1 14866:1 14868:1 14871:3 14879:1 14897:2 14913:1 14931:1 14983:10 14995:1 14996:2 15036:1 15037:2 15038:1 15067:2 15078:1 15091:1 15092:1 15094:1 15096:1 15104:1 15117:1 15171:3 15174:2 15196:2 15236:1 15237:1 15297:1 15305:1 15308:2 15322:1 15344:1 15387:1 15446:2 15448:1 15455:1 15464:1 15465:1 15472:1 15474:1 15519:1 15522:1 15552:1 15561:1 15572:1 15593:1 15597:1 15600:1 15604:1 15605:1 15615:1 15623:1 15647:1 15648:1 15654:2 15680:1 15698:1 15699:1 15702:4 15740:4 15762:1 15804:1 15815:1 15821:3 15835:1 15848:2 15849:1 15872:1 15873:1 15892:2 15903:1 15910:1 15926:2 15937:1 15941:1 15942:1 15954:1 15961:1 15971:1 15991:1 16019:1 16035:1 16048:1 16112:1 16126:1 16151:2 16156:1 16166:2 16178:1 16193:2 16198:1 16239:1 16298:3 16304:1 16305:1 16355:1 16358:2 16396:1 16410:1 16506:3 16515:1 16545:3 16547:1 16549:1 16553:1 16588:1 16621:1 16629:1 16685:1 16711:1 16720:1 16762:1 16768:1 16771:20 16808:1 16811:1 16822:1 16865:1 16870:1 16876:1 16914:1 16919:1 16950:1 17030:2 17036:1 17039:2 17040:1 17041:2 17046:1 17059:1 17065:1 17066:1 17071:3 17079:1 17087:1 17125:2 17127:1 17184:1 17185:1 17215:5 17216:3 17236:1 17319:1 17321:2 17360:2 17377:1 17382:1 17398:1 17421:1 17446:1 17469:2 17473:2 17507:3 17514:1 17521:1 17549:1 17557:1 17559:1 17562:1 17571:3 17593:1 17602:1 17625:1 17632:1 17633:2 17637:1 17639:1 17641:2 17643:1 17646:1 17647:1 17651:1 17656:2 17658:1 17662:5 17678:1 17690:1 17695:3 17717:1 17731:1 17864:1 17902:1 17932:1 17937:1 17987:1 18039:2 18068:1 18099:1 18102:1 18107:1 18115:1 18122:1 18123:1 18130:2 18141:1 18192:1 18202:1 18212:1 18225:2 18228:4 18238:2 18243:1 18260:1 18266:1 18277:2 18310:1 18326:1 18328:1 18343:3 18347:1 18352:9 18355:1 18409:2 18412:1 18418:1 18420:2 18429:2 18430:2 18454:1 18465:2 18488:1 18492:1 18494:2 18498:1 18531:1 18537:1 18566:1 18569:1 18574:1 18583:1 18587:1 18589:1 18594:1 18596:1 18597:1 18608:1 18620:1 18623:1 18650:1 18684:1 18694:1 18696:1 18709:1 18727:2 18732:1 18750:1 18752:1 18765:2 18802:1 18810:1 18867:1 18873:1 18906:1 18913:1 18918:1 18972:1 18997:1 19001:1 19043:1 19044:1 19068:2 19078:2 19084:1 19087:1 19122:1 19130:1 19133:1 19137:1 19164:2 19183:1 19194:1 19205:1 19212:1 19222:1 19249:6 19286:1 19292:2 19294:1 19319:1 19324:1 19351:3 19353:1 19357:2 19369:1 19391:1 19408:1 19418:1 19428:1 19429:1 19437:1 19441:1 19443:3 19449:2 19450:1 19454:1 19463:1 19480:1 19494:1 19496:1 19498:1 19518:8 19530:1 19549:1 19551:2 19595:1 19601:1 19642:1 19665:1 19711:1 19716:1 19722:1 19756:1 19762:1 19774:1 19781:1 19787:1 19792:2 19827:1 19852:1 19862:1 19946:2 19951:1 19981:4 19990:1 19992:2 19994:1 20000:1 20059:1 20067:1 20068:1 20105:1 20196:1576 20200:2 20218:3 20229:1 20232:1 20249:1 20284:1 20289:1 20304:1 20328:1 20339:1 20341:1 20347:2 20353:1 20386:1 20422:1 20436:4 20444:1 20449:3 20451:1 20453:1 20463:1 20482:1 20510:1 20524:1 20530:2 20673:1 20696:3 20757:1 20761:2 20781:1 20819:1 20832:2 20839:1 20850:1 20858:1 20897:1 20914:1 20917:1 20954:1 20955:2 20978:2 21004:4 21027:1 21041:2 21056:1 21066:1 21067:1 21106:1 21127:1 21129:1 21130:1 21136:1 21158:1 21167:8 21173:1 21218:1 21229:1 21262:1 21267:1 21318:1 21323:1 21360:1 21363:1 21406:1 21429:1 21434:2 21456:1 21465:1 21472:1 21475:1 21491:2 21492:2 21500:2 21506:1 21541:1 21542:1 21548:1 21560:1 21603:2 21623:1 21626:1 21634:1 21679:1 21705:1 21742:1 21755:1 21763:4 21769:1 21773:1 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:3 21867:2 21873:1 21894:1 21915:2 21920:1 21937:6 21944:3 21991:1 22002:1 22025:1 22056:1 22068:1 22098:1 22109:1 22112:1 22115:1 22162:1 22184:1 22194:2 22204:1 22225:1 22228:5 22230:2 22240:1 22242:2 22302:1 22306:1 22311:1 22319:1 22348:1 22351:1 22353:1 22384:1 22393:1 22434:1 22479:1 22482:1 22485:1 22502:1 22507:1 22521:1 22526:1 22528:1 22550:1 22554:1 22564:1 22581:1 22590:2 22614:1 22626:1 22632:1 22639:1 22643:1 22657:1 22666:1 22719:1 22734:3 22739:1 22796:10 22803:2 22809:1 22822:4 22853:1 22861:1 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22901:1 22918:1 22941:1 22951:1 22960:2 22972:1 23017:1 23092:3 23131:1 23136:3 23146:2 23185:1 23219:1 23228:1 23234:1 23249:1 23258:3 23260:1 23264:1 23274:1 23275:1 23322:1 23342:1 23360:1 23377:1 23396:2 23420:2 23436:2 23438:1 23442:2 23491:1 23500:1 23515:1 23531:1 23551:1 23557:1 23558:1 23613:1 23615:1 23617:1 23652:1 23676:1 23686:3 23687:3 23689:3 23696:1 23700:1 23715:1 23718:2 23732:1 23746:1 23749:1 23765:1 23775:1 23796:1 23826:2 23862:1 23885:1 23893:1 23901:2 23905:2 23916:3 23935:1 23953:1 23977:1 23983:1 23994:2 24053:1 24068:1 24070:1 24079:2 24087:1 24088:4 24095:1 24126:1 24157:1 24161:2 24166:2 24173:1 24182:1 24218:1 24233:1 24244:1 24245:1 24261:1 24272:1 24287:1 24298:1 24311:2 24357:2 24361:1 24363:2 24375:2 24379:1 24414:1 24425:1 24451:1 24452:1 24488:1 24503:1 24534:3 24539:1 24548:1 24563:1 24566:1 24584:1 24594:1 24599:1 24610:2 24611:1 24612:2 24616:1 24617:1 24619:1 24633:1 24638:1 24640:1 24652:3 24655:1 24664:1 24672:3 24714:2 24718:2 24725:1 24727:2 24731:1 24761:1 24778:1 24794:1 24819:2 24846:1 24865:4 24883:1 24913:2 24916:1 24957:2 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25079:1 25080:1 25140:1 25166:1 25171:1 25188:1 25193:2 25203:1 25210:1 25247:1 25274:1 25276:3 25280:1 25298:2 25305:1 25308:1 25346:1 25351:1 25359:1 25364:1 25372:1 25395:1 25417:1 25421:1 25431:1 25438:1 25441:1 25465:3 25469:1 25490:1 25498:1 25534:3 25559:1 25560:2 25566:1 25593:1 25606:1 25648:2 25649:1 25691:1 25705:1 25779:2 25802:1 25817:3 25865:1 25909:1 25910:8 25996:1 26016:2 26050:1 26071:1 26084:1 26111:1 26136:1 26142:1 26151:2 26160:1 26170:2 26172:7 26174:1 26177:1 26197:1 26201:1 26202:1 26215:1 26219:1 26221:2 26236:1 26245:1 26248:1 26334:1 26397:1 26398:1 26399:1 26405:1 26406:1 26408:1 26409:1 26413:1 26427:1 26470:1 26483:1 26485:1 26487:2 26489:1 26490:2 26496:1 26497:1 26510:1 26518:2 26535:5 26536:1 26552:1 26575:1 26576:1 26597:1 26607:1 26608:1 26626:1 26631:2 26645:2 26654:1 26657:1 26678:1 26754:1 26793:1 26799:2 26836:1 26861:2 26870:1 26916:6 26968:1 26986:1 26991:6 26999:1 27000:1 27002:1 27005:1 27019:1 27043:1 27044:1 27242:2 27244:5 27276:1 27277:1 27290:2 27296:1 27297:1 27305:2 27353:1 27360:1 27384:1 27472:1 27482:1 27507:1 27509:1 27510:1 27512:1 27518:1 27534:1 27544:1 27599:1 27600:1 27614:1 27646:1 27673:1 27734:1 27750:1 27770:1 27801:2 27802:1 27804:5 27814:1 27869:1 27910:2 27952:3 27976:1 27999:1 28073:1 28076:1 28091:1 28105:1 28112:1 28131:3 28150:1 28152:1 28154:1 28159:3 28166:1 28180:1 28192:1 28208:1 28215:1 28219:1 28222:4 28235:1 28245:1 28308:3 28309:1 28326:2 28349:1 28391:3 28405:1 28429:2 28462:1 28484:1 28507:1 28511:1 28516:1 28517:1 28533:1 28554:1 28578:1 28581:2 28600:1 28602:1 28607:1 28611:1 28619:2 28623:3 28624:1 28644:2 28664:2 28675:1 28680:1 28687:1 28703:3 28747:1 28756:1 28767:1 28782:1 28855:1 28867:1 28874:1 28912:1 28916:1 29104:1 29109:1 29117:1 29142:1 29150:1 29209:1 29243:1 29268:1 29274:1 29288:1 29292:2 29314:1 29315:2 29319:1 29325:1 29340:1 29342:1 29372:2 29390:1 29391:1 29400:1 29403:1 29411:4 29468:1 29479:1 29482:3 29486:1 29509:1 29550:1 29576:4 29587:1 29596:1 29601:2 29637:1 29658:2 29668:1 29684:2 29686:2 29689:1 29696:1 29697:1 29699:1 29706:1 29714:1 29718:1 29760:1 29789:2 29795:1 29816:1 29828:1 29848:1 29852:1 29867:1 29934:2 29938:1 29956:4 29979:1 29991:2 30031:2 30041:1 30044:1 30045:6 30064:1 30067:1 30097:1 30149:1 30188:1 30240:3 30289:1 30319:3 30331:1 30336:1 30368:1 30372:1 30390:4 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30479:17 30480:1 30502:1 30537:10 30550:1 30581:1 30623:1 30630:2 30655:1 30661:1 30670:3 30675:3 30711:6 30713:1 30747:1 30764:2 30768:1 30805:2 30809:1 30810:1 30815:1 30846:2 30876:1 30882:2 30903:1 30933:1 30996:1 31026:1 31041:3 31043:3 31115:1 31118:1 31121:1 31125:2 31143:1 31253:3 31267:1 31268:1 31272:10 31288:1 31306:1 31309:1 31310:2 31337:1 31342:1 31362:1 31369:1 31380:1 31413:1 31437:1 31444:1 31458:1 31465:1 31477:1 31495:1 31496:1 31506:1 31514:2 31652:1 31659:1 31666:1 31667:1 31679:1 31681:1 31705:1 31713:2 31718:1 31742:1 31756:1 31765:1 31781:1 31794:1 31801:1 31802:1 31803:1 31815:1 31826:1 31851:1 31852:1 31866:1 31873:1 31882:1 31890:3 31896:2 31898:2 31902:1 31905:1 31907:1 31911:1 31914:1 31934:1 31958:1 31962:3 31965:1 31977:1 31978:1 31998:1
20 9:1 18:1 21:1 23:1 26:1 30:1 78:1 95:1 103:1 111:1 120:1 158:1 169:1 181:1 197:1 211:1 253:1 261:2 274:2 278:1 290:3 331:1 355:2 358:1 404:1 406:2 482:1 489:2 536:1 596:1 602:1 623:3 635:1 652:2 664:2 696:2 701:1 704:2 770:1 822:1 913:1 956:2 959:1 971:2 977:1 990:1 996:3 1000:1 1011:1 1025:1 1034:3 1057:1 1063:2 1064:1 1067:5 1069:2 1079:1 1095:1 1108:4 1135:3 1136:3 1143:1 1149:1 1158:1 1167:1 1198:1 1200:2 1205:1 1226:1 1255:1 1281:1 1292:3 1305:3 1341:1 1380:1 1389:1 1402:1 1406:1 1407:1 1420:1 1426:1 1427:1 1430:1 1446:1 1491:1 1533:1 1563:1 1576:1 1582:1 1594:2 1599:1 1608:1 1630:1 1631:1 1633:2 1651:3 1662:1 1668:1 1670:1 1671:1 1678:1 1691:3 1719:9 1722:2 1725:7 1729:1 1737:1 1741:1 1746:1 1756:1 1757:1 1759:2 1778:1 1799:1 1800:1 1805:1 1811:9 1827:1 1829:1 1840:1 1863:1 1876:1 1877:1 1903:1 1967:1 1968:5 1973:2 1976:1 1987:2 1994:1 2026:1 2035:2 2064:1 2070:1 2088:1 2105:1 2113:2 2116:2 2127:1 2138:2 2145:1 2161:1 2163:1 2166:1 2210:1 2229:1 2245:4 2260:1 2264:1 2284:1 2285:3 2295:1 2296:1 2301:1 2341:1 2354:4 2357:1 2379:1 2389:1 2395:2 2403:1 2433:2 2435:8 2438:3 2450:1 2451:1 2452:2 2454:1 2458:1 2472:1 2475:2 2500:1 2512:1 2514:4 2517:1 2520:1 2525:1 2530:1 2531:2 2533:1 2535:3 2539:2 2542:2 2546:1 2549:2 2554:2 2574:1 2582:1 2629:1 2645:1 2658:1 2673:1 2677:1 2718:1 2723:1 2741:1 2762:1 2767:1 2772:1 2773:1 2795:1 2801:1 2831:1 2839:1 2853:1 2869:1 2870:1 2875:1 2898:1 2914:1 2923:1 2948:1 2965:1 2970:2 2975:1 2977:1 3012:2 3029:1 3037:1 3050:1 3063:1 3084:1 3087:1 3120:1 3128:1 3159:3 3168:8 3169:2 3171:1 3181:1 3184:2 3185:1 3195:1 3204:1 3214:8 3250:1 3320:1 3347:2 3422:3 3453:1 3463:1 3537:1 3553:1 3598:1 3607:1 3615:1 3625:1 3660:3 3695:3 3711:1 3723:1 3751:1 3752:1 3780:1 3825:1 3835:1 3901:1 3966:1 3970:1 3977:1 4009:1 4013:1 4015:1 4042:1 4056:1 4059:1 4063:1 4065:1 4070:1 4075:2 4118:2 4126:1 4127:2 4175:3 4176:1 4202:1 4207:1 4211:6 4213:1 4279:1 4296:1 4306:1 4317:4 4345:1 4346:1 4366:1 4379:1 4391:1 4392:2 4395:1 4414:1 4423:2 4425:1 4443:1 4454:1 4472:1 4508:1 4535:1 4562:1 4587:1 4626:1 4699:1 4702:1 4730:1 4768:1 4776:1 4780:1 4791:1 4794:1 4836:2 4838:1 4859:1 4860:1 4872:1 4917:1 4923:1 4958:1 4959:2 4993:1 5012:1 5046:1 5055:1 5067:1 5078:2 5086:1 5106:1 5130:1 5131:1 5136:2 5186:1 5196:1 5215:1 5227:1 5245:1 5247:1 5283:1 5306:1 5332:8 5345:1 5349:1 5372:1 5444:3 5448:5 5466:3 5467:1 5472:1 5476:1 5480:1 5485:1 5487:1 5488:2 5490:3 5492:2 5495:1 5496:1 5508:1 5607:1 5619:1 5662:1 5678:4 5683:1 5693:1 5706:1 5715:1 5720:1 5745:3 5748:1 5800:2 5825:1 5839:1 5864:2 5901:1 5916:1 5924:1 5929:1 5931:3 5962:1 5977:1 5998:1 6039:2 6057:2 6089:1 6095:1 6101:2 6107:1 6117:1 6120:1 6127:1 6137:3 6158:2 6189:1 6225:2 6244:1 6280:1 6312:1 6319:1 6321:1 6323:1 6326:2 6350:1 6351:1 6359:1 6362:1 6375:1 6379:1 6387:2 6394:1 6444:3 6445:1 6463:2 6467:2 6476:1 6477:2 6532:1 6542:1 6571:1 6609:2 6612:1 6631:1 6652:2 6670:2 6674:1 6675:1 6702:1 6709:1 6711:1 6721:1 6727:2 6772:3 6779:1 6783:1 6829:1 6830:1 6841:1 6856:3 6858:1 6869:1 6874:1 6890:1 6898:2 6910:1 6932:2 6933:2 6937:1 6949:3 6951:1 6966:1 6967:1 6971:3 6973:1 6977:2 6979:2 6980:2 6982:3 7034:1 7077:4 7097:1 7105:4 7120:1 7146:1 7169:1 7170:1 7215:1 7236:1 7262:1 7307:2 7328:1 7333:1 7344:1 7345:2 7353:1 7361:2 7391:1 7392:1 7396:1 7399:1 7401:1 7406:2 7430:1 7432:1 7433:1 7439:1 7456:1 7457:1 7489:2 7566:1 7580:3 7615:3 7628:1 7634:1 7657:1 7688:1 7713:1 7717:2 7757:1 7763:1 7781:1 7799:6 7801:1 7813:1 7826:1 7862:2 7900:1 7937:1 7940:1 7941:1 7951:1 7971:2 8000:1 8013:1 8019:1 8025:1 8051:1 8069:1 8088:1 8122:3 8124:1 8128:3 8142:1 8144:1 8154:1 8172:1 8201:1 8207:2 8214:1 8231:1 8241:1 8250:1 8264:1 8276:1 8283:2 8285:1 8290:1 8304:1 8342:1 8349:1 8376:1 8377:2 8383:1 8391:7 8410:1 8414:1 8416:4 8417:1 8457:20 8487:4 8490:8 8502:1 8537:1 8541:2 8554:2 8558:1 8568:1 8639:1 8721:1 8765:1 8787:3 8797:2 8803:1 8816:1 8903:1 8907:1 8929:1 8940:9 8947:1 8950:1 8983:1 9019:18 9045:1 9072:1 9075:1 9089:1 9102:1 9164:1 9205:1 9226:1 9249:1 9258:2 9276:1 9279:1 9285:3 9294:1 9296:1 9343:1 9348:1 9383:2 9391:1 9393:3 9398:1 9399:4 9401:1 9402:1 9408:2 9413:3 9425:1 9428:2 9493:2 9495:1 9518:1 9554:1 9559:1 9590:1 9643:1 9658:1 9682:1 9698:1 9707:2 9724:1 9736:1 9751:1 9763:1 9767:1 9772:2 9798:1 9816:1 9851:1 9869:1 9876:1 9885:1 9928:1 9931:2 9936:6 9940:4 9944:1 9960:3 9974:1 10028:1 10037:1 10061:1 10086:1 10093:1 10114:1 10121:1 10190:2 10193:1 10207:1 10212:1 10214:1 10215:1 10222:1 10313:1 10334:1 10354:2 10393:1 10394:1 10405:1 10431:2 10449:1 10457:1 10461:2 10474:2 10534:1 10547:2 10559:1 10563:3 10568:6 10583:3 10603:1 10649:1 10651:1 10663:2 10667:1 10678:1 10700:9 10714:1 10715:1 10732:1 10740:1 10743:1 10749:1 10762:1 10764:1 10775:2 10781:1 10856:2 10864:1 10871:2 10878:2 10895:1 10925:1 10929:1 10944:2 10962:1 10966:1 10972:1 10978:1 10986:1 11071:2 11080:1 11082:1 11112:1 11116:1 11124:1 11140:1 11218:2 11277:1 11284:1 11285:1 11292:2 11335:1 11351:2 11416:4 11425:1 11448:1 11493:2 11497:1 11514:1 11523:1 11536:1 11548:3 11556:1 11587:2 11599:1 11606:2 11608:1 11612:1 11615:1 11620:1 11625:1 11626:1 11629:1 11630:1 11641:1 11642:1 11671:1 11673:1 11714:3 11723:1 11736:1 11738:1 11744:4 11746:4 11785:1 11818:1 11822:1 11829:1 11835:4 11849:3 11877:1 11913:1 11926:1 11937:1 11958:3 11961:2 11964:1 11968:1 12015:1 12024:1 12070:1 12094:1 12101:1 12103:1 12105:1 12124:1 12126:1 12160:6 12166:1 12192:1 12197:1 12221:1 12243:1 12256:1 12268:3 12273:2 12308:1 12309:1 12334:1 12338:1 12339:1 12347:1 12359:1 12377:1 12406:1 12422:1 12441:2 12445:6 12512:2 12521:2 12542:1 12545:2 12584:1 12589:1 12590:1 12621:1 12640:1 12646:2 12669:1 12675:1 12682:5 12684:1 12688:1 12707:1 12721:1 12727:1 12739:1 12743:1 12750:1 12753:1 12758:1 12769:2 12772:1 12798:1 12822:1 12823:5 12839:2 12848:8 12896:1 12909:1 12917:1 12920:11 12999:1 13015:1 13025:1 13035:1 13042:2 13055:4 13093:1 13121:3 13143:1 13160:1 13178:2 13202:2 13215:1 13216:2 13226:2 13227:2 13231:1 13247:3 13250:3 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13364:2 13392:1 13455:1 13470:1 13519:1 13539:2 13620:1 13656:2 13693:1 13732:1 13751:1 13813:7 13816:1 13839:1 13845:1 13858:1 13879:1 13899:11 13906:1 13926:1 13933:2 13960:1 13984:2 14023:1 14024:1 14101:1 14104:1 14113:1 14119:1 14121:3 14178:1 14230:2 14235:1 14257:4 14269:1 14272:1 14274:3 14280:2 14296:2 14303:8 14305:1 14307:1 14341:1 14345:1 14352:1 14371:1 14399:2 14400:1 14431:1 14445:1 14446:8 14455:1 14464:1 14468:14 14512:1 14553:1 14567:3 14590:1 14618:1 14632:2 14655:1 14680:1 14704:1 14709:2 14714:1 14719:1 14790:1 14864:1 14866:1 14868:1 14871:3 14879:1 14897:2 14913:1 14931:1 14983:10 14995:1 14996:2 15036:1 15037:2 15038:1 15067:2 15078:1 15091:1 15092:1 15094:1 15096:1 15104:1 15117:1 15171:3 15174:2 15196:2 15236:1 15237:1 15297:1 15305:1 15308:2 15322:1 15344:1 15387:1 15446:2 15448:1 15455:1 15464:1 15465:1 15472:1 15474:1 15519:1 15522:1 15552:1 15561:1 15572:1 15593:1 15597:1 15600:1 15604:1 15605:1 15615:1 15623:1 15647:1 15648:1 15654:2 15680:1 15698:1 15699:1 15702:4 15740:4 15762:1 15804:1 15815:1 15821:3 15835:1 15848:2 15849:1 15872:1 15873:1 15892:2 15903:1 15910:1 15926:2 15937:1 15941:1 15942:1 15954:1 15961:1 15971:1 15991:1 16019:1 16035:1 16048:1 16112:1 16126:1 16151:2 16156:1 16166:2 16178:1 16193:2 16198:1 16239:1 16298:3 16304:1 16305:1 16355:1 16358:2 16396:1 16410:1 16506:3 16515:1 16545:3 16547:1 16549:1 16553:1 16588:1 16621:1 16629:1 16685:1 16711:1 16720:1 16723:1 16762:1 16768:1 16771:20 16808:1 16811:1 16822:1 16865:1 16870:1 16876:1 16914:1 16919:1 16950:1 17030:2 17036:1 17039:2 17040:1 17041:2 17046:1 17053:1 17059:1 17065:1 17066:1 17071:3 17079:1 17087:1 17125:2 17127:1 17184:1 17185:1 17215:5 17216:3 17236:1 17243:1 17319:1 17321:2 17360:2 17377:1 17382:1 17398:1 17421:1 17446:1 17469:2 17473:2 17478:1 17507:3 17514:1 17521:1 17549:1 17557:1 17559:1 17562:1 17571:3 17593:1 17602:1 17625:1 17632:1 17633:2 17637:1 17639:1 17641:2 17643:1 17646:1 17647:1 17651:1 17656:3 17658:1 17662:5 17678:1 17690:1 17695:3 17717:1 17731:1 17864:1 17902:1 17932:1 17937:1 17987:1 18039:2 18068:1 18099:1 18102:1 18107:1 18115:1 18122:1 18123:1 18130:2 18141:1 18192:1 18202:1 18212:1 18225:2 18228:4 18238:2 18243:1 18260:1 18266:1 18277:2 18310:1 18326:1 18328:1 18343:3 18347:1 18352:9 18355:1 18409:2 18412:1 18418:1 18420:2 18429:2 18430:2 18454:1 18465:2 18488:1 18492:1 18494:2 18498:1 18531:1 18537:1 18566:1 18569:1 18574:1 18583:1 18587:1 18589:1 18594:1 18596:1 18597:1 18608:1 18620:1 18623:1 18650:1 18684:1 18694:1 18696:1 18709:1 18727:2 18732:1 18750:1 18752:1 18765:2 18802:1 18810:1 18867:1 18873:1 18906:1 18913:1 18918:1 18972:1 18997:1 19000:1 19001:1 19043:1 19044:1 19068:2 19078:2 19084:1 19087:1 19122:1 19130:1 19133:1 19137:1 19164:2 19183:1 19194:1 19205:1 19212:1 19222:1 19249:6 19286:1 19292:2 19294:1 19319:1 19324:2 19351:3 19353:1 19357:2 19369:1 19391:1 19408:1 19418:1 19428:1 19429:1 19437:1 19441:1 19443:3 19449:2 19450:1 19454:1 19463:1 19480:1 19486:1 19494:1 19496:1 19498:1 19518:8 19530:1 19549:2 19551:2 19595:1 19601:1 19642:1 19665:1 19709:1 19711:1 19716:1 19722:1 19756:1 19762:1 19774:1 19781:1 19787:1 19792:2 19827:1 19837:1 19852:1 19862:1 19946:2 19951:1 19981:4 19990:1 19992:2 19994:1 20000:1 20059:1 20067:1 20068:1 20105:1 20190:1 20196:1632 20200:2 20218:3 20229:1 20232:1 20249:1 20284:1 20289:1 20304:1 20328:1 20339:1 20341:1 20347:2 20353:1 20386:1 20422:1 20423:1 20436:4 20444:1 20449:3 20451:1 20453:1 20463:1 20482:1 20510:1 20524:1 20530:2 20673:1 20696:3 20757:1 20761:2 20781:1 20819:1 20832:2 20839:1 20850:1 20858:1 20897:1 20914:1 20917:1 20954:1 20955:2 20978:2 21004:4 21015:1 21027:1 21041:2 21056:1 21066:1 21067:1 21105:1 21106:2 21127:2 21129:1 21130:1 21136:1 21158:1 21167:8 21173:1 21218:1 21229:1 21262:1 21267:1 21318:1 21323:1 21360:1 21363:1 21406:1 21429:1 21434:2 21456:1 21465:1 21472:1 21475:1 21491:2 21492:2 21500:3 21506:1 21541:1 21542:1 21548:1 21560:1 21603:2 21623:1 21626:1 21634:1 21679:1 21705:1 21742:1 21755:1 21763:4 21769:1 21773:1 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:3 21867:2 21873:1 21894:1 21904:1 21915:2 21920:1 21937:6 21944:3 21991:1 22002:1 22025:2 22056:1 22068:1 22098:1 22109:1 22112:1 22115:1 22162:1 22184:2 22194:2 22204:1 22225:1 22228:5 22230:3 22240:1 22242:2 22302:1 22306:1 22311:1 22319:1 22348:1 22351:1 22353:1 22384:1 22393:1 22434:1 22460:1 22479:1 22482:1 22485:1 22502:1 22507:1 22521:1 22526:1 22528:1 22550:1 22554:1 22564:1 22581:1 22590:2 22614:1 22626:1 22632:1 22639:1 22643:1 22657:1 22666:1 22719:1 22734:3 22739:1 22786:1 22796:10 22803:2 22809:1 22822:4 22853:1 22861:1 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22901:1 22918:1 22941:1 22951:1 22960:2 22972:1 23017:1 23092:3 23131:1 23136:3 23146:2 23185:1 23219:1 23228:1 23234:1 23249:1 23258:3 23260:1 23261:1 23264:1 23274:1 23275:1 23322:1 23342:1 23360:1 23377:1 23396:2 23420:2 23436:2 23438:1 23442:2 23491:1 23500:1 23515:1 23531:1 23551:1 23557:1 23558:1 23613:1 23615:1 23617:1 23652:1 23676:1 23686:3 23687:3 23689:3 23696:1 23700:1 23715:1 23718:2 23732:1 23746:1 23749:1 23765:1 23775:1 23796:1 23826:2 23862:1 23885:1 23893:1 23901:2 23905:2 23916:3 23935:1 23953:1 23977:1 23983:1 23994:2 24053:1 24068:1 24070:1 24079:2 24087:1 24088:4 24093:1 24095:1 24126:1 24157:1 24161:2 24166:2 24173:1 24182:1 24218:1 24233:1 24244:1 24245:1 24261:1 24272:1 24287:1 24294:1 24298:1 24311:2 24357:2 24361:1 24363:2 24375:3 24379:1 24414:1 24425:1 24451:1 24452:1 24488:1 24503:1 24534:3 24539:1 24548:1 24563:1 24566:1 24584:1 24594:1 24599:2 24610:2 24611:1 24612:2 24616:1 24617:1 24619:1 24633:1 24638:1 24640:1 24652:3 24655:1 24664:1 24672:3 24714:2 24718:2 24725:1 24727:2 24731:1 24761:1 24778:1 24786:1 24794:1 24819:2 24846:1 24865:4 24883:1 24913:2 24916:1 24957:2 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25079:1 25080:1 25140:1 25166:1 25171:1 25188:1 25193:3 25203:1 25210:1 25247:1 25274:1 25276:3 25280:1 25298:2 25305:1 25308:1 25346:1 25351:1 25359:1 25364:1 25372:1 25395:1 25417:1 25421:1 25431:1 25438:1 25441:1 25465:3 25469:1 25490:1 25498:1 25534:3 25559:1 25560:2 25566:1 25593:1 25606:1 25648:2 25649:1 25665:1 25691:1 25705:1 25779:2 25802:1 25817:3 25865:1 25909:1 25910:8 25996:1 26016:2 26050:1 26071:1 26084:1 26111:1 26136:1 26142:1 26151:2 26160:1 26170:2 26172:7 26174:1 26177:1 26197:1 26201:1 26202:1 26215:1 26219:1 26221:2 26236:1 26245:1 26248:1 26334:1 26397:1 26398:1 26399:1 26405:1 26406:1 26408:1 26409:1 26413:1 26427:1 26470:1 26483:2 26485:1 26487:2 26489:1 26490:2 26496:1 26497:1 26510:1 26518:3 26535:5 26536:1 26552:1 26575:1 26576:1 26597:1 26607:1 26608:1 26626:1 26631:2 26638:1 26645:2 26654:1 26657:1 26678:1 26754:1 26793:1 26799:2 26836:1 26861:2 26870:1 26916:6 26967:1 26968:1 26986:1 26991:6 26999:1 27000:1 27002:1 27005:1 27019:1 27043:1 27044:1 27242:2 27244:5 27276:1 27277:1 27290:2 27296:1 27297:1 27305:2 27353:1 27360:1 27384:1 27472:1 27482:1 27507:1 27509:1 27510:1 27512:1 27518:1 27534:1 27544:1 27584:1 27599:1 27600:1 27614:1 27646:1 27673:1 27734:1 27750:1 27770:1 27801:3 27802:1 27804:5 27814:1 27869:1 27910:2 27952:3 27956:1 27976:1 27999:1 28073:1 28076:2 28091:1 28105:1 28112:1 28131:3 28150:1 28152:1 28154:1 28159:3 28166:1 28180:1 28192:1 28208:1 28215:1 28219:1 28222:4 28235:1 28245:1 28308:3 28309:1 28326:2 28349:1 28391:3 28405:1 28429:2 28462:1 28484:1 28495:1 28507:1 28511:1 28516:1 28517:1 28533:1 28554:1 28578:1 28581:2 28600:1 28602:1 28607:1 28611:1 28619:2 28623:3 28624:1 28644:2 28664:2 28675:1 28680:1 28687:1 28703:3 28747:1 28756:1 28767:1 28782:1 28855:1 28867:1 28874:1 28912:1 28916:1 29104:1 29109:1 29117:1 29142:1 29150:1 29209:1 29243:1 29268:1 29274:1 29288:1 29292:2 29314:1 29315:2 29319:1 29325:1 29340:1 29342:1 29372:2 29390:1 29391:1 29400:1 29403:1 29411:4 29468:1 29479:1 29482:3 29486:1 29509:1 29550:1 29576:4 29587:1 29596:1 29601:2 29615:1 29637:1 29658:2 29668:1 29684:2 29686:2 29689:1 29696:1 29697:1 29699:1 29706:1 29714:1 29718:1 29760:1 29789:2 29794:1 29795:1 29816:2 29828:1 29848:1 29852:1 29867:1 29932:1 29934:2 29938:1 29956:4 29979:1 29991:2 30031:2 30041:1 30044:1 30045:6 30064:2 30067:1 30097:1 30149:1 30188:1 30240:3 30289:1 30319:3 30331:1 30336:1 30368:1 30372:1 30390:4 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30479:17 30480:1 30502:1 30537:10 30550:2 30581:1 30623:1 30630:2 30655:1 30661:1 30670:3 30675:3 30711:6 30713:1 30747:1 30764:2 30768:1 30805:2 30809:1 30810:1 30815:1 30820:1 30846:2 30876:1 30882:2 30903:1 30933:1 30956:1 30996:1 31026:1 31041:3 31043:3 31115:1 31118:1 31121:1 31125:2 31143:1 31253:3 31267:1 31268:1 31272:10 31288:1 31306:1 31309:1 31310:2 31316:1 31337:1 31342:1 31362:1 31369:1 31380:1 31413:1 31437:1 31444:1 31458:1 31465:1 31477:1 31495:1 31496:1 31506:2 31514:2 31652:1 31659:1 31666:1 31667:1 31679:1 31681:1 31705:1 31713:2 31718:1 31742:1 31756:1 31765:1 31781:1 31794:1 31801:1 31802:1 31803:1 31815:1 31826:1 31851:1 31852:1 31866:1 31873:1 31882:1 31890:3 31896:2 31898:2 31902:1 31905:1 31907:1 31911:1 31914:1 31934:1 31958:1 31962:3 31965:1 31977:1 31978:1 31998:1
20 9:1 18:1 21:1 23:1 26:1 30:1 78:1 95:1 103:1 111:1 120:1 158:1 169:1 181:1 193:1 197:1 211:1 253:1 261:2 274:2 278:1 290:3 292:1 331:1 355:2 358:1 404:1 406:2 482:1 489:2 536:1 596:1 602:1 622:1 623:3 635:1 652:2 664:2 696:2 701:1 704:2 770:1 822:1 913:1 956:2 959:1 971:2 977:1 990:1 996:3 1000:1 1011:1 1025:1 1034:3 1057:1 1063:3 1064:1 1067:5 1069:2 1079:1 1095:1 1108:4 1135:3 1136:3 1143:1 1149:1 1158:1 1167:1 1198:1 1200:2 1205:1 1226:1 1255:1 1281:1 1292:3 1305:4 1341:1 1380:1 1389:1 1402:1 1406:1 1407:1 1420:1 1426:1 1427:1 1430:1 1446:1 1491:1 1533:1 1563:1 1576:1 1582:1 1594:2 1599:1 1608:1 1630:1 1631:1 1633:3 1651:3 1662:1 1668:1 1670:1 1671:1 1678:1 1691:3 1719:9 1722:2 1725:7 1729:1 1737:1 1741:1 1746:1 1756:1 1757:1 1759:2 1778:1 1799:1 1800:1 1805:1 1811:9 1827:1 1829:1 1840:1 1863:1 1876:1 1877:1 1903:1 1967:1 1968:5 1973:2 1976:1 1987:2 1994:1 2026:1 2035:2 2064:1 2070:1 2088:1 2105:1 2113:2 2116:2 2127:1 2138:2 2145:1 2161:1 2163:1 2166:1 2210:1 2229:1 2245:4 2260:1 2264:1 2284:1 2285:3 2295:1 2296:1 2301:1 2341:1 2354:4 2357:1 2379:1 2389:1 2395:2 2403:1 2433:2 2435:8 2438:3 2442:1 2450:1 2451:1 2452:3 2454:1 2458:1 2472:1 2475:2 2500:1 2512:1 2514:4 2517:1 2520:1 2525:1 2530:1 2531:2 2533:1 2535:3 2539:2 2542:2 2546:1 2549:2 2554:2 2574:1 2582:1 2629:1 2645:1 2658:1 2673:1 2677:1 2718:1 2723:1 2741:1 2762:1 2767:1 2772:1 2773:1 2795:1 2801:1 2831:1 2839:1 2853:1 2869:1 2870:1 2875:1 2898:1 2914:1 2923:1 2948:1 2965:1 2970:2 2975:1 2977:1 3012:2 3029:1 3037:1 3050:1 3063:1 3084:1 3087:1 3120:1 3128:1 3159:3 3168:9 3169:2 3171:1 3181:1 3184:2 3185:1 3195:1 3204:1 3214:8 3250:1 3320:1 3347:2 3422:3 3453:1 3463:1 3537:1 3553:1 3598:1 3607:1 3615:1 3625:2 3660:3 3695:3 3711:1 3723:1 3751:1 3752:1 3780:1 3825:1 3835:1 3901:1 3966:1 3970:1 3977:1 4009:1 4013:1 4015:1 4042:1 4056:1 4059:1 4063:1 4065:1 4070:1 4075:2 4118:2 4126:1 4127:2 4175:3 4176:1 4202:1 4207:1 4211:6 4213:1 4279:1 4296:1 4306:1 4317:4 4345:1 4346:1 4366:1 4379:1 4391:1 4392:2 4395:1 4414:1 4423:2 4425:1 4443:1 4454:1 4472:1 4508:1 4535:1 4562:1 4587:1 4626:1 4699:1 4702:1 4730:1 4768:1 4776:1 4780:1 4791:1 4794:1 4836:2 4838:1 4859:1 4860:1 4872:1 4917:1 4923:1 4958:1 4959:2 4993:1 5012:1 5046:1 5055:1 5067:1 5078:2 5086:1 5106:1 5130:1 5131:1 5136:2 5186:1 5196:1 5215:1 5227:1 5245:1 5247:1 5283:1 5306:1 5332:9 5345:1 5349:1 5372:1 5444:3 5448:5 5466:3 5467:1 5472:1 5476:1 5480:1 5485:1 5487:1 5488:2 5490:3 5492:2 5495:1 5496:1 5508:1 5607:1 5619:1 5662:1 5678:4 5683:1 5693:1 5706:1 5715:1 5720:1 5745:3 5748:1 5775:1 5800:2 5825:1 5839:1 5864:2 5901:1 5916:1 5924:1 5929:1 5931:3 5962:1 5977:1 5998:1 6039:2 6057:2 6077:1 6089:1 6095:1 6101:2 6107:1 6117:1 6120:1 6127:1 6137:3 6158:2 6189:1 6225:2 6244:1 6280:1 6312:1 6319:1 6321:1 6323:1 6326:2 6350:1 6351:1 6359:1 6362:1 6375:1 6379:1 6387:2 6394:1 6444:3 6445:1 6463:2 6467:2 6476:1 6477:2 6532:1 6542:1 6571:1 6609:2 6612:1 6631:1 6652:2 6670:2 6674:1 6675:1 6702:1 6709:1 6711:1 6721:1 6727:2 6772:3 6779:1 6783:1 6829:1 6830:1 6841:1 6856:3 6858:1 6869:1 6874:1 6890:1 6898:2 6910:1 6932:2 6933:2 6937:1 6949:3 6951:1 6959:1 6966:1 6967:1 6971:3 6973:1 6977:2 6979:2 6980:2 6982:3 7034:1 7077:4 7097:1 7105:4 7120:1 7146:1 7169:1 7170:1 7215:1 7236:1 7262:1 7307:2 7328:1 7333:1 7344:1 7345:2 7353:1 7361:2 7391:1 7392:1 7396:1 7399:1 7401:1 7406:2 7430:1 7432:1 7433:1 7439:1 7456:1 7457:1 7489:2 7566:1 7580:3 7615:3 7628:1 7634:1 7657:1 7688:1 7713:1 7717:2 7757:1 7763:1 7781:1 7799:6 7801:1 7813:1 7826:1 7862:2 7900:1 7937:1 7940:1 7941:1 7951:1 7971:2 8000:1 8013:1 8019:1 8025:1 8051:1 8069:1 8088:1 8122:3 8124:1 8128:3 8142:1 8144:1 8154:1 8172:1 8192:1 8201:1 8207:2 8214:1 8231:1 8241:1 8250:1 8264:1 8276:1 8283:2 8285:1 8290:1 8304:1 8342:1 8349:1 8376:1 8377:3 8383:1 8391:8 8410:1 8414:1 8416:4 8417:1 8457:20 8487:4 8490:8 8502:1 8537:1 8541:2 8554:2 8558:1 8568:1 8639:1 8721:1 8765:1 8787:3 8797:2 8803:1 8816:1 8903:1 8907:1 8929:1 8940:9 8947:1 8950:1 8983:1 9019:18 9045:1 9072:1 9075:1 9089:1 9102:1 9164:1 9205:1 9222:1 9226:1 9249:1 9258:2 9276:1 9279:1 9285:3 9294:1 9296:1 9343:1 9348:1 9383:2 9391:1 9393:3 9398:1 9399:4 9401:1 9402:1 9408:2 9413:3 9425:1 9428:2 9493:2 9495:1 9518:1 9554:1 9559:1 9590:1 9643:1 9658:1 9682:1 9698:1 9707:2 9724:1 9736:1 9751:1 9763:1 9767:1 9772:2 9798:1 9816:1 9851:1 9864:1 9869:1 9876:1 9885:1 9928:1 9931:2 9936:6 9940:4 9944:1 9960:3 9974:1 10028:1 10037:1 10061:1 10086:1 10093:1 10114:1 10121:1 10190:2 10193:1 10207:1 10212:1 10214:1 10215:1 10222:1 10313:1 10334:1 10354:2 10393:1 10394:1 10405:1 10431:2 10449:1 10457:1 10461:2 10474:2 10534:1 10547:2 10559:1 10563:3 10568:6 10583:3 10603:1 10649:1 10651:1 10663:2 10667:1 10678:1 10700:9 10714:1 10715:1 10732:1 10740:1 10743:1 10749:1 10762:1 10764:1 10775:2 10781:1 10856:2 10864:1 10871:2 10878:2 10895:1 10925:1 10929:1 10944:2 10962:1 10966:1 10972:1 10978:1 10986:1 11071:2 11080:1 11082:1 11112:1 11116:1 11124:1 11140:1 11218:2 11277:1 11284:1 11285:1 11292:2 11335:1 11351:2 11416:4 11425:1 11448:1 11493:2 11497:1 11514:1 11523:1 11536:1 11548:3 11556:1 11587:2 11599:1 11606:2 11608:1 11612:1 11615:1 11620:1 11625:1 11626:1 11629:1 11630:1 11641:1 11642:1 11671:1 11673:1 11714:3 11723:1 11736:1 11738:1 11744:4 11746:4 11785:1 11818:1 11822:1 11829:1 11835:4 11849:3 11877:1 11913:1 11926:1 11937:1 11958:3 11961:2 11964:1 11968:1 12015:1 12024:1 12063:1 12070:1 12094:1 12101:1 12103:1 12105:1 12124:1 12126:1 12160:6 12166:1 12192:1 12197:1 12221:1 12243:1 12256:1 12268:3 12273:2 12308:1 12309:1 12334:1 12338:1 12339:1 12347:1 12359:1 12377:1 12406:1 12422:1 12441:2 12445:6 12512:2 12521:2 12542:1 12545:2 12584:1 12589:1 12590:1 12621:1 12640:1 12646:2 12669:1 12675:1 12682:5 12684:1 12688:1 12707:1 12721:1 12727:1 12739:1 12743:1 12746:1 12750:1 12753:1 12758:1 12769:2 12772:1 12798:1 12822:1 12823:5 12839:2 12848:8 12896:1 12909:1 12917:1 12920:11 12999:1 13015:1 13025:1 13035:1 13042:2 13055:4 13093:1 13121:3 13143:1 13160:1 13178:2 13202:2 13215:1 13216:2 13226:2 13227:2 13231:1 13247:3 13250:3 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13364:2 13392:1 13455:1 13470:1 13519:1 13539:3 13620:1 13656:2 13693:1 13732:1 13751:1 13813:8 13816:1 13839:1 13845:1 13858:1 13879:1 13899:11 13906:1 13926:1 13933:2 13960:1 13984:2 14023:1 14024:1 14101:1 14104:1 14113:1 14119:1 14121:3 14178:1 14230:2 14235:1 14257:4 14269:1 14272:1 14274:3 14280:2 14296:2 14303:8 14305:1 14307:1 14341:1 14345:1 14352:1 14371:1 14399:2 14400:1 14431:1 14445:1 14446:8 14455:1 14464:1 14468:14 14512:1 14553:1 14567:3 14590:1 14618:1 14632:2 14655:1 14680:1 14704:1 14709:2 14714:1 14719:1 14790:1 14864:1 14866:1 14868:1 14871:3 14879:1 14897:2 14913:1 14931:1 14983:10 14995:1 14996:2 15036:1 15037:2 15038:1 15067:2 15078:1 15091:1 15092:1 15094:1 15096:1 15104:1 15117:1 15171:3 15174:2 15196:2 15236:1 15237:1 15297:1 15305:1 15308:2 15322:1 15344:1 15387:1 15446:2 15448:1 15455:1 15464:1 15465:1 15472:1 15474:1 15519:1 15522:1 15552:1 15561:1 15572:1 15593:1 15597:1 15600:1 15604:1 15605:1 15615:1 15623:1 15647:1 15648:1 15654:2 15680:1 15698:1 15699:1 15702:4 15740:4 15762:1 15804:1 15807:1 15815:1 15821:3 15835:1 15848:2 15849:1 15872:1 15873:1 15892:2 15903:1 15910:1 15926:2 15937:1 15941:1 15942:1 15954:1 15961:1 15971:1 15991:1 16019:1 16035:1 16048:1 16112:1 16126:1 16151:3 16156:1 16166:2 16178:1 16193:2 16198:1 16239:1 16298:3 16304:1 16305:1 16355:1 16358:2 16396:1 16410:1 16506:3 16515:1 16545:3 16547:1 16549:1 16553:1 16588:1 16621:1 16629:1 16685:1 16711:1 16720:1 16723:1 16762:1 16768:1 16771:22 16808:1 16811:1 16822:1 16865:1 16870:1 16876:1 16914:1 16919:1 16950:1 17030:2 17036:1 17039:2 17040:1 17041:2 17046:1 17053:1 17059:1 17065:1 17066:1 17071:3 17079:1 17087:1 17125:2 17127:1 17184:1 17185:1 17215:5 17216:3 17236:1 17243:1 17319:1 17321:2 17348:1 17360:2 17377:1 17382:1 17398:1 17421:1 17446:1 17469:2 17473:2 17478:1 17507:3 17514:1 17521:1 17549:1 17557:1 17559:1 17562:1 17571:3 17593:1 17602:1 17625:1 17632:1 17633:2 17637:1 17639:1 17641:2 17643:1 17646:1 17647:1 17651:1 17656:3 17658:1 17662:5 17678:1 17690:1 17695:3 17717:1 17731:1 17864:1 17902:1 17932:1 17937:1 17987:1 18039:2 18068:1 18099:1 18102:1 18107:1 18115:1 18122:1 18123:1 18130:2 18141:1 18192:1 18202:1 18212:1 18225:2 18228:4 18238:2 18243:1 18260:1 18266:1 18277:2 18310:1 18326:1 18328:1 18343:3 18347:1 18352:9 18355:1 18409:2 18412:1 18418:1 18420:2 18429:2 18430:2 18454:1 18465:2 18488:1 18492:1 18494:2 18498:1 18531:1 18537:1 18566:1 18569:1 18574:1 18583:1 18587:1 18589:1 18594:1 18596:1 18597:1 18608:1 18620:1 18623:1 18650:1 18684:1 18694:1 18696:1 18709:1 18727:2 18732:1 18750:1 18752:1 18765:2 18802:1 18810:1 18823:1 18867:1 18873:1 18906:1 18913:1 18918:1 18972:1 18997:1 19000:1 19001:1 19043:1 19044:1 19068:2 19078:2 19084:1 19087:1 19122:1 19130:1 19133:1 19137:1 19164:2 19183:1 19194:1 19205:1 19212:1 19222:1 19249:6 19271:1 19286:1 19292:2 19294:1 19319:1 19324:2 19351:3 19353:1 19357:2 19369:1 19391:1 19408:1 19418:1 19428:1 19429:1 19437:1 19441:1 19443:3 19449:2 19450:1 19454:1 19463:1 19480:1 19486:1 19494:1 19496:1 19498:1 19518:8 19530:1 19549:2 19551:2 19595:1 19601:1 19642:1 19665:1 19709:1 19711:1 19716:1 19722:1 19756:1 19762:1 19774:1 19781:1 19787:1 19792:2 19827:1 19837:1 19852:1 19862:1 19946:2 19951:1 19981:4 19990:1 19992:2 19994:1 20000:1 20059:1 20067:1 20068:1 20105:1 20190:1 20196:1661 20200:2 20218:3 20229:1 20232:1 20249:1 20284:1 20289:1 20304:1 20328:1 20339:1 20341:1 20347:2 20353:1 20386:1 20422:1 20423:1 20436:4 20444:1 20449:3 20451:2 20453:1 20463:1 20482:1 20510:1 20524:1 20530:2 20673:1 20696:3 20757:1 20761:2 20781:1 20819:1 20832:2 20839:1 20850:1 20858:1 20897:1 20914:1 20917:1 20954:1 20955:2 20978:3 21004:4 21015:1 21027:1 21041:2 21056:1 21066:1 21067:1 21105:1 21106:2 21127:2 21129:1 21130:1 21136:1 21158:1 21167:8 21173:1 21218:1 21229:1 21262:1 21267:1 21318:1 21323:1 21360:1 21363:1 21374:1 21406:1 21429:1 21434:2 21456:1 21465:1 21472:1 21475:1 21491:2 21492:2 21500:4 21506:1 21541:1 21542:1 21548:1 21560:1 21603:2 21623:1 21626:1 21634:1 21679:1 21705:1 21742:1 21755:1 21763:4 21769:1 21773:1 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:3 21867:2 21873:1 21894:1 21904:1 21915:2 21920:1 21937:6 21944:3 21991:1 22002:1 22025:2 22056:1 22068:1 22098:1 22109:1 22112:1 22115:1 22162:1 22184:2 22194:2 22204:1 22225:1 22228:5 22230:3 22240:1 22242:2 22302:1 22306:1 22311:1 22319:1 22348:1 22351:1 22353:1 22384:1 22393:1 22434:1 22460:1 22479:1 22482:1 22485:1 22502:1 22507:1 22521:1 22526:1 22528:1 22550:1 22554:1 22564:1 22581:1 22590:2 22614:1 22626:1 22632:1 22639:1 22643:1 22657:1 22666:1 22719:1 22734:3 22739:1 22786:1 22796:10 22803:2 22809:1 22822:4 22853:1 22861:1 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22901:1 22918:1 22941:1 22951:1 22960:2 22972:1 23017:1 23063:1 23092:3 23119:1 23131:1 23136:3 23146:2 23185:1 23219:1 23228:1 23234:1 23249:1 23258:3 23260:1 23261:1 23264:1 23274:1 23275:1 23322:1 23342:1 23360:1 23377:1 23396:2 23420:2 23436:2 23438:1 23442:2 23491:1 23500:1 23515:1 23531:1 23551:1 23557:1 23558:1 23613:1 23615:1 23617:1 23652:1 23676:1 23686:3 23687:3 23689:3 23696:1 23700:1 23715:1 23718:2 23732:1 23746:1 23749:1 23765:1 23775:1 23796:1 23826:2 23862:1 23885:1 23893:1 23901:2 23905:2 23916:3 23935:1 23953:1 23977:1 23983:1 23994:2 24053:1 24068:1 24070:1 24079:2 24087:1 24088:4 24093:1 24095:1 24126:1 24157:1 24161:2 24166:2 24173:1 24182:1 24218:1 24233:1 24244:1 24245:1 24261:1 24272:1 24287:1 24294:1 24298:1 24311:2 24357:2 24361:1 24363:2 24375:3 24379:1 24414:1 24425:1 24451:1 24452:1 24488:1 24503:1 24506:1 24534:3 24539:1 24548:1 24563:1 24566:1 24584:1 24594:1 24599:2 24610:2 24611:1 24612:2 24616:1 24617:1 24619:1 24633:1 24638:1 24640:1 24652:3 24655:1 24664:1 24672:3 24714:2 24718:2 24725:1 24727:2 24731:1 24761:1 24778:1 24786:1 24794:1 24819:2 24846:1 24865:4 24883:1 24913:2 24916:1 24957:2 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25079:1 25080:1 25140:1 25166:1 25171:1 25188:1 25193:3 25203:1 25210:1 25247:1 25274:1 25276:3 25280:1 25298:2 25305:1 25308:1 25346:1 25351:1 25359:1 25364:1 25372:1 25395:1 25417:1 25421:1 25431:1 25438:1 25441:1 25465:3 25469:1 25490:1 25498:1 25534:3 25559:1 25560:2 25566:1 25593:1 25606:1 25648:2 25649:1 25665:1 25691:1 25705:1 25779:2 25802:1 25817:3 25865:1 25909:1 25910:8 25996:1 26016:2 26050:1 26071:1 26084:1 26111:1 26136:1 26142:1 26151:2 26160:1 26170:2 26172:7 26174:1 26177:1 26197:1 26201:1 26202:1 26215:1 26219:1 26221:2 26236:1 26245:1 26248:1 26334:1 26397:1 26398:1 26399:1 26405:1 26406:1 26408:1 26409:1 26413:1 26427:1 26470:1 26483:3 26485:1 26487:2 26489:1 26490:2 26496:1 26497:1 26510:1 26518:4 26535:5 26536:1 26552:1 26575:1 26576:1 26597:1 26607:1 26608:1 26626:1 26631:2 26638:1 26645:2 26654:1 26657:1 26678:1 26754:1 26793:1 26799:2 26836:1 26861:2 26870:1 26916:6 26967:1 26968:1 26986:1 26991:6 26999:1 27000:1 27002:1 27005:1 27019:1 27043:1 27044:1 27242:2 27244:5 27276:1 27277:1 27290:2 27296:1 27297:1 27305:2 27353:1 27360:1 27384:1 27471:1 27472:1 27482:1 27507:1 27509:1 27510:1 27512:1 27518:1 27534:1 27544:1 27584:1 27599:1 27600:1 27614:1 27646:1 27673:1 27734:1 27750:1 27770:1 27801:3 27802:1 27804:5 27814:1 27869:1 27910:2 27952:3 27956:1 27976:1 27999:1 28073:1 28076:2 28091:1 28105:1 28112:1 28131:3 28150:1 28152:1 28154:1 28159:3 28166:1 28180:1 28192:1 28208:1 28215:1 28219:1 28222:4 28235:1 28245:1 28308:3 28309:1 28326:2 28349:1 28391:3 28405:1 28429:2 28462:1 28484:1 28495:1 28507:1 28511:1 28516:1 28517:1 28533:1 28554:1 28578:1 28581:2 28600:1 28602:1 28607:1 28611:1 28619:2 28623:3 28624:1 28644:2 28664:2 28675:1 28680:1 28687:1 28703:3 28747:1 28756:1 28767:1 28782:1 28855:1 28867:1 28874:1 28912:1 28916:1 29104:1 29109:1 29117:1 29142:1 29150:1 29209:1 29243:1 29268:1 29274:1 29288:1 29292:2 29314:1 29315:2 29319:1 29325:1 29340:1 29342:1 29372:2 29390:1 29391:1 29400:1 29403:1 29411:4 29468:1 29479:1 29482:3 29486:1 29509:1 29550:1 29576:4 29587:1 29596:1 29601:2 29615:1 29637:1 29658:2 29668:1 29684:2 29686:2 29689:1 29696:1 29697:1 29699:1 29706:1 29714:1 29718:1 29760:1 29789:2 29794:1 29795:1 29816:3 29828:1 29848:1 29852:1 29867:1 29932:1 29934:2 29938:1 29956:4 29979:1 29991:2 30031:2 30041:1 30044:1 30045:6 30064:2 30067:1 30097:1 30149:1 30188:1 30240:3 30289:1 30319:3 30331:1 30336:1 30368:1 30372:1 30390:4 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30479:17 30480:1 30502:1 30537:10 30550:2 30581:1 30623:1 30630:2 30655:1 30661:1 30670:3 30675:3 30711:7 30713:1 30747:1 30764:2 30768:1 30805:2 30809:1 30810:1 30815:1 30820:1 30846:2 30876:1 30882:2 30903:1 30933:1 30956:1 30996:1 31026:1 31041:3 31043:3 31115:1 31118:1 31121:1 31125:2 31143:1 31253:3 31267:1 31268:1 31272:10 31288:1 31306:1 31309:1 31310:2 31316:1 31337:1 31342:1 31362:1 31369:1 31380:1 31413:1 31437:1 31444:1 31458:1 31465:1 31477:1 31495:1 31496:1 31506:3 31514:2 31652:1 31659:1 31666:1 31667:1 31679:1 31681:1 31705:1 31713:2 31718:1 31742:1 31756:1 31765:1 31781:1 31794:1 31801:1 31802:1 31803:1 31815:1 31826:1 31851:1 31852:1 31866:1 31873:1 31882:1 31890:3 31896:2 31898:2 31902:1 31905:1 31907:1 31911:1 31914:1 31934:1 31958:1 31962:3 31965:1 31977:1 31978:1 31998:1
20 9:1 18:1 21:1 23:1 26:1 30:1 78:1 95:1 103:1 111:1 120:1 158:1 169:1 181:1 193:1 197:1 211:1 253:1 261:2 274:2 278:1 290:3 292:1 331:1 355:2 358:1 404:1 406:2 482:1 489:2 536:1 596:1 602:1 622:1 623:3 635:1 652:2 664:2 696:2 701:1 704:2 770:1 822:1 913:1 956:2 959:1 971:2 977:1 990:1 996:3 1000:1 1011:1 1025:1 1034:3 1057:1 1063:3 1064:1 1067:5 1069:3 1079:1 1095:1 1108:4 1135:3 1136:3 1143:2 1149:1 1158:1 1167:1 1198:1 1200:2 1205:1 1226:1 1255:1 1281:1 1292:3 1305:4 1341:1 1380:1 1389:1 1402:1 1406:1 1407:1 1420:1 1426:1 1427:1 1430:1 1446:1 1491:1 1533:1 1563:1 1576:1 1582:1 1594:2 1599:1 1608:1 1630:1 1631:1 1633:3 1651:3 1662:1 1668:1 1670:1 1671:1 1678:1 1691:3 1719:11 1722:2 1725:7 1729:1 1737:1 1741:1 1746:1 1756:1 1757:2 1759:2 1778:1 1799:1 1800:1 1805:1 1811:9 1827:1 1829:1 1840:1 1863:1 1876:1 1877:1 1903:2 1967:1 1968:5 1973:2 1976:1 1987:2 1994:1 2026:1 2035:2 2064:1 2070:1 2088:1 2105:1 2113:2 2116:2 2127:1 2138:2 2145:1 2161:1 2163:1 2166:1 2210:1 2229:1 2245:4 2260:1 2264:1 2284:1 2285:3 2295:1 2296:1 2301:1 2341:1 2354:4 2357:1 2379:1 2389:1 2395:2 2403:1 2433:2 2435:8 2438:3 2442:1 2443:1 2450:1 2451:1 2452:3 2454:1 2458:1 2469:1 2472:1 2475:2 2500:1 2512:1 2514:4 2517:1 2520:1 2525:1 2530:1 2531:2 2533:1 2535:3 2539:2 2542:2 2546:1 2549:2 2554:2 2574:1 2582:1 2629:1 2645:1 2658:1 2673:1 2677:1 2718:1 2723:1 2741:1 2762:1 2767:1 2772:1 2773:1 2795:1 2801:1 2831:1 2839:1 2853:1 2869:1 2870:1 2875:1 2898:1 2914:1 2923:1 2948:1 2965:1 2970:2 2975:1 2977:1 3012:2 3029:1 3037:1 3050:1 3056:1 3063:1 3084:1 3087:1 3120:1 3128:1 3159:3 3168:9 3169:2 3171:1 3181:1 3184:2 3185:2 3195:1 3204:1 3214:8 3250:1 3320:1 3347:2 3422:3 3453:1 3463:1 3537:1 3553:1 3598:1 3607:1 3615:1 3625:2 3660:3 3695:3 3711:1 3723:1 3751:1 3752:1 3780:1 3825:1 3835:1 3901:1 3966:1 3970:1 3977:1 4009:1 4013:1 4015:1 4042:1 4056:1 4059:1 4063:1 4065:1 4070:1 4075:2 4118:2 4126:1 4127:2 4175:3 4176:1 4202:1 4207:1 4211:6 4213:1 4279:1 4296:1 4306:1 4317:5 4345:1 4346:1 4366:1 4379:1 4391:1 4392:2 4395:1 4414:1 4423:2 4425:1 4443:1 4454:1 4472:1 4508:1 4535:1 4562:1 4587:1 4626:1 4699:1 4702:1 4730:1 4768:1 4771:1 4776:1 4780:1 4791:1 4794:1 4836:2 4838:1 4859:1 4860:1 4872:1 4917:1 4923:1 4958:1 4959:2 4993:1 4997:1 5012:1 5046:1 5055:1 5067:1 5078:2 5086:1 5106:3 5130:1 5131:1 5136:2 5186:1 5196:1 5215:1 5227:1 5245:1 5247:1 5283:1 5306:1 5332:9 5345:1 5349:1 5372:1 5444:3 5448:6 5466:3 5467:1 5472:1 5476:1 5480:1 5485:1 5487:1 5488:2 5490:3 5492:2 5495:1 5496:1 5508:1 5607:1 5619:1 5662:1 5678:4 5683:1 5693:1 5706:1 5715:1 5720:1 5745:3 5748:1 5775:1 5800:2 5825:1 5839:1 5864:2 5901:1 5916:1 5924:1 5929:1 5931:3 5962:1 5977:1 5998:1 6039:2 6057:2 6077:1 6089:1 6095:1 6101:2 6107:1 6117:1 6120:1 6127:1 6137:3 6158:2 6189:1 6225:2 6244:1 6280:1 6312:1 6319:1 6321:1 6323:1 6326:2 6350:1 6351:1 6359:1 6362:1 6375:1 6379:1 6387:2 6394:3 6444:3 6445:1 6463:2 6467:2 6476:1 6477:2 6532:1 6542:1 6571:1 6609:2 6612:1 6631:1 6652:2 6670:2 6674:1 6675:1 6702:1 6709:1 6711:1 6721:1 6727:2 6772:3 6779:1 6783:2 6829:1 6830:1 6841:1 6856:3 6858:1 6869:1 6874:1 6890:1 6898:2 6910:1 6932:2 6933:2 6937:1 6949:3 6950:1 6951:1 6959:1 6966:1 6967:1 6971:3 6973:1 6977:2 6979:2 6980:2 6982:3 7034:1 7077:4 7097:1 7105:4 7120:1 7146:1 7169:1 7170:1 7215:1 7236:1 7262:1 7307:2 7328:1 7333:1 7344:1 7345:2 7353:1 7361:2 7391:1 7392:1 7396:1 7399:1 7401:1 7406:2 7430:1 7432:1 7433:1 7439:1 7456:1 7457:1 7489:2 7566:1 7580:3 7615:3 7628:1 7634:1 7657:1 7688:1 7713:1 7717:2 7757:1 7763:1 7781:1 7799:6 7801:1 7813:1 7826:1 7862:2 7900:1 7937:1 7940:1 7941:1 7951:1 7971:2 8000:1 8013:1 8019:1 8025:1 8051:1 8069:1 8088:1 8122:3 8124:1 8128:3 8142:1 8144:1 8154:1 8172:1 8192:1 8201:1 8207:2 8214:1 8231:1 8241:1 8250:1 8264:1 8276:1 8283:2 8285:1 8290:1 8304:1 8342:1 8349:1 8376:1 8377:3 8383:1 8391:8 8410:1 8414:1 8416:4 8417:1 8457:20 8487:4 8490:9 8502:1 8537:1 8541:2 8554:2 8558:1 8568:1 8639:1 8721:1 8765:1 8787:3 8797:2 8803:1 8816:1 8903:1 8907:1 8929:1 8940:9 8947:2 8950:1 8958:1 8983:1 9019:19 9045:1 9072:1 9075:1 9089:1 9102:1 9164:1 9205:1 9222:1 9226:1 9249:1 9258:2 9276:1 9279:1 9285:3 9294:1 9296:1 9343:1 9348:1 9383:2 9391:1 9393:3 9398:1 9399:4 9401:1 9402:1 9408:2 9413:3 9423:1 9425:1 9428:2 9493:2 9495:1 9518:1 9554:1 9559:1 9590:1 9643:1 9658:1 9682:1 9698:1 9707:2 9724:1 9736:1 9751:1 9763:1 9767:1 9772:2 9798:1 9816:1 9851:1 9864:1 9869:1 9876:1 9885:1 9928:1 9931:2 9936:6 9940:4 9944:1 9960:3 9974:1 10028:1 10037:1 10061:1 10086:1 10093:1 10114:1 10121:1 10178:1 10190:2 10193:1 10207:1 10212:1 10214:1 10215:1 10222:1 10313:1 10334:1 10354:2 10363:1 10393:1 10394:1 10405:1 10411:1 10431:2 10449:1 10457:1 10461:2 10474:2 10534:1 10547:3 10559:1 10563:3 10568:6 10583:3 10603:1 10649:1 10651:1 10663:2 10667:1 10678:1 10700:9 10709:1 10714:1 10715:1 10732:1 10740:1 10743:1 10749:1 10762:1 10764:1 10775:2 10781:1 10856:2 10864:1 10871:2 10878:2 10895:1 10925:1 10929:1 10944:2 10962:1 10966:1 10972:1 10978:1 10986:1 11071:2 11080:1 11082:1 11112:1 11116:1 11124:1 11140:1 11218:2 11277:1 11284:1 11285:1 11292:2 11335:1 11351:2 11416:4 11425:1 11448:1 11493:2 11497:1 11514:1 11523:1 11536:1 11548:3 11556:1 11587:2 11599:1 11606:2 11608:1 11612:1 11615:1 11620:1 11625:1 11626:1 11629:1 11630:1 11641:1 11642:1 11671:1 11673:1 11690:1 11714:3 11723:1 11736:1 11738:1 11744:4 11746:4 11785:1 11803:1 11818:1 11822:1 11829:1 11835:4 11849:3 11877:1 11913:1 11926:1 11937:1 11958:4 11961:2 11964:1 11968:1 12015:1 12024:1 12063:1 12070:1 12094:1 12101:1 12103:1 12105:1 12124:1 12126:1 12160:6 12166:1 12192:1 12197:1 12221:1 12243:1 12256:1 12268:3 12273:2 12308:1 12309:1 12334:1 12338:1 12339:1 12347:1 12359:1 12377:1 12406:1 12422:1 12441:2 12445:6 12512:2 12521:2 12524:1 12542:1 12545:2 12546:1 12584:1 12589:1 12590:1 12621:1 12640:1 12646:2 12669:1 12675:1 12682:5 12684:1 12688:1 12707:1 12721:1 12727:1 12739:1 12743:1 12746:1 12750:1 12753:1 12758:1 12769:2 12772:1 12798:1 12822:1 12823:5 12839:2 12848:8 12896:1 12909:1 12917:1 12920:11 12999:1 13015:1 13025:1 13035:1 13042:2 13055:4 13093:1 13121:3 13143:1 13160:1 13178:2 13202:2 13215:1 13216:2 13226:2 13227:2 13231:1 13247:3 13250:3 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13364:2 13392:1 13455:1 13470:1 13519:1 13539:3 13620:1 13656:2 13693:1 13732:1 13751:1 13813:8 13816:1 13839:1 13845:1 13858:1 13879:1 13899:11 13906:1 13926:1 13933:2 13960:1 13984:2 14023:1 14024:1 14101:1 14104:1 14113:1 14119:1 14121:4 14178:1 14230:2 14235:1 14257:4 14269:1 14272:1 14274:3 14280:2 14296:2 14303:8 14305:1 14307:1 14341:1 14345:1 14352:1 14371:1 14399:2 14400:1 14431:1 14445:1 14446:8 14455:1 14464:1 14468:14 14512:1 14553:1 14567:3 14590:1 14618:1 14632:2 14655:1 14680:1 14704:1 14709:2 14714:1 14719:1 14744:1 14790:1 14864:1 14866:1 14868:1 14871:3 14879:1 14897:2 14913:1 14931:1 14983:10 14995:1 14996:2 15036:1 15037:2 15038:1 15067:2 15078:1 15091:1 15092:1 15094:1 15096:1 15104:1 15117:1 15171:3 15174:2 15196:2 15236:1 15237:1 15297:1 15305:1 15308:2 15322:1 15344:1 15387:1 15446:2 15448:1 15455:1 15464:1 15465:1 15472:1 15474:1 15519:1 15522:1 15552:1 15561:1 15572:1 15593:1 15597:1 15600:1 15604:1 15605:1 15615:1 15623:1 15647:1 15648:1 15654:2 15680:1 15698:1 15699:1 15702:4 15740:4 15762:1 15804:1 15807:1 15815:1 15821:3 15835:1 15848:2 15849:1 15872:1 15873:1 15892:2 15903:1 15910:1 15926:2 15937:1 15941:1 15942:1 15954:1 15961:1 15971:1 15991:1 16019:1 16035:1 16048:1 16052:1 16112:1 16126:1 16151:3 16156:1 16166:2 16178:1 16193:2 16198:1 16239:1 16298:3 16304:1 16305:1 16355:1 16358:2 16396:1 16410:1 16506:3 16515:1 16545:3 16547:1 16549:1 16553:1 16588:1 16621:1 16629:1 16685:1 16711:1 16720:1 16723:1 16747:1 16762:1 16768:1 16771:24 16808:1 16811:1 16822:1 16865:1 16870:1 16876:1 16914:1 16919:1 16950:1 17030:2 17036:1 17039:2 17040:1 17041:2 17046:1 17053:1 17059:1 17065:1 17066:1 17071:3 17079:1 17087:1 17125:2 17127:1 17184:1 17185:1 17215:5 17216:3 17236:1 17243:1 17319:1 17321:2 17348:1 17360:2 17377:1 17382:1 17398:1 17421:1 17446:1 17469:2 17473:2 17478:1 17507:3 17514:1 17521:1 17549:1 17557:1 17559:1 17562:1 17571:3 17593:1 17602:1 17625:1 17632:1 17633:2 17637:1 17639:1 17641:2 17643:1 17646:1 17647:1 17651:1 17656:3 17658:1 17660:1 17662:5 17678:1 17690:1 17695:3 17717:1 17731:1 17864:1 17902:1 17932:1 17937:1 17987:1 18039:2 18068:1 18099:1 18102:1 18107:1 18115:1 18122:1 18123:1 18130:2 18141:1 18192:1 18202:1 18212:1 18225:2 18228:4 18238:2 18243:1 18260:1 18266:1 18277:2 18310:1 18326:1 18328:1 18343:3 18347:1 18352:9 18355:1 18409:2 18412:1 18418:1 18420:2 18429:2 18430:2 18454:1 18465:2 18488:1 18492:1 18494:2 18498:1 18531:1 18537:1 18566:1 18569:1 18574:1 18583:1 18587:1 18589:1 18594:1 18596:1 18597:1 18608:1 18620:1 18623:1 18650:1 18684:1 18694:1 18696:1 18709:1 18727:2 18732:1 18750:3 18752:1 18765:2 18802:1 18810:1 18817:1 18823:1 18867:1 18873:1 18906:1 18913:1 18918:1 18972:1 18997:1 19000:1 19001:1 19043:1 19044:1 19068:2 19078:2 19084:1 19087:1 19122:1 19130:1 19133:1 19137:1 19164:2 19183:1 19194:1 19205:1 19212:1 19214:1 19222:1 19249:6 19271:1 19286:1 19287:1 19292:2 19294:1 19319:1 19324:2 19351:3 19353:1 19357:2 19369:1 19391:1 19408:1 19418:1 19428:1 19429:1 19437:1 19441:1 19443:3 19449:2 19450:1 19454:1 19463:1 19480:1 19486:1 19494:1 19496:1 19498:1 19518:8 19530:1 19549:2 19551:2 19583:1 19595:1 19601:1 19642:1 19665:1 19709:1 19711:1 19716:1 19722:1 19756:1 19762:1 19774:1 19781:1 19787:1 19792:2 19827:1 19837:1 19852:1 19862:1 19946:2 19951:1 19981:4 19990:1 19992:2 19994:1 20000:1 20059:1 20067:1 20068:1 20105:1 20190:1 20196:1710 20200:2 20218:3 20229:1 20232:1 20249:1 20284:1 20289:1 20304:1 20328:1 20339:1 20341:1 20347:2 20353:1 20386:1 20422:1 20423:1 20436:4 20444:1 20449:3 20451:2 20453:1 20463:1 20482:1 20510:1 20524:1 20530:2 20673:1 20696:3 20757:1 20761:2 20781:1 20819:1 20832:2 20839:1 20850:1 20858:1 20897:1 20914:1 20917:1 20954:1 20955:2 20978:3 21004:4 21015:1 21027:1 21041:2 21056:1 21066:1 21067:1 21105:1 21106:2 21127:2 21129:1 21130:1 21136:1 21158:1 21167:8 21173:1 21218:1 21229:1 21262:1 21267:1 21318:1 21323:1 21360:1 21363:1 21374:1 21406:1 21429:1 21434:2 21456:1 21465:1 21472:1 21475:1 21491:2 21492:2 21500:4 21506:1 21541:1 21542:1 21548:1 21560:1 21603:2 21623:1 21626:1 21634:1 21658:1 21679:1 21705:1 21742:1 21755:1 21763:4 21769:1 21773:1 21799:1 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:3 21867:2 21873:1 21894:1 21904:1 21915:2 21920:1 21937:6 21944:3 21991:1 22002:1 22025:2 22056:1 22068:1 22098:1 22109:1 22112:1 22115:1 22162:1 22184:2 22194:2 22204:1 22225:1 22228:5 22230:4 22240:1 22242:2 22302:1 22306:1 22311:1 22319:1 22348:1 22351:1 22353:1 22384:1 22393:1 22434:1 22460:1 22479:1 22482:1 22485:1 22502:1 22507:1 22521:1 22526:1 22528:1 22550:1 22554:1 22564:1 22581:1 22590:2 22614:1 22626:1 22632:1 22639:1 22643:1 22657:1 22666:1 22719:1 22734:3 22739:1 22786:1 22796:10 22803:2 22809:1 22813:1 22822:4 22853:1 22861:1 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22901:1 22918:1 22941:1 22951:1 22960:2 22972:1 22991:1 23017:1 23063:1 23092:3 23119:1 23131:1 23136:3 23146:2 23185:1 23219:1 23228:1 23234:1 23249:1 23258:3 23260:1 23261:1 23264:1 23274:1 23275:1 23322:1 23342:1 23360:1 23377:1 23396:2 23420:2 23436:2 23438:1 23442:2 23491:1 23500:1 23515:1 23531:1 23551:1 23552:1 23557:1 23558:1 23613:1 23615:1 23617:1 23652:1 23676:1 23686:3 23687:3 23689:3 23696:1 23700:1 23715:1 23718:2 23732:1 23746:1 23749:1 23765:1 23775:1 23796:1 23826:2 23862:1 23885:1 23893:1 23901:2 23905:2 23916:3 23935:1 23953:1 23977:1 23983:1 23994:2 24053:1 24068:1 24070:1 24079:2 24087:1 24088:4 24093:1 24095:1 24126:1 24157:1 24161:2 24166:2 24173:1 24182:1 24218:1 24233:1 24244:1 24245:1 24261:1 24272:1 24287:1 24294:1 24298:1 24311:2 24357:2 24361:1 24363:2 24375:3 24379:1 24414:1 24425:1 24451:1 24452:1 24488:1 24503:1 24506:1 24534:3 24539:1 24548:1 24563:1 24566:1 24584:1 24594:1 24599:2 24610:2 24611:1 24612:2 24616:1 24617:1 24619:1 24633:1 24638:1 24640:1 24652:3 24655:1 24664:1 24672:3 24714:2 24718:2 24725:1 24727:2 24731:1 24761:1 24778:1 24786:1 24794:1 24819:2 24846:1 24865:4 24883:1 24913:2 24916:1 24957:2 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25079:1 25080:1 25140:1 25152:1 25166:1 25171:1 25188:1 25193:3 25203:1 25210:1 25247:1 25274:1 25276:3 25280:1 25298:2 25305:1 25308:1 25346:1 25351:1 25359:1 25364:1 25372:1 25395:1 25417:1 25421:1 25431:1 25438:1 25441:1 25465:3 25469:1 25490:1 25498:1 25534:3 25559:1 25560:2 25566:1 25593:1 25606:1 25648:2 25649:1 25665:1 25691:1 25705:1 25779:2 25802:1 25817:3 25865:1 25909:1 25910:8 25996:1 26016:2 26050:1 26071:1 26084:1 26111:1 26136:1 26142:1 26151:2 26160:1 26170:2 26172:7 26174:1 26177:1 26197:1 26201:1 26202:1 26215:1 26219:1 26221:2 26236:1 26245:1 26248:1 26334:1 26397:1 26398:1 26399:1 26405:1 26406:1 26408:1 26409:1 26413:1 26427:1 26470:1 26483:3 26485:1 26487:2 26489:1 26490:2 26496:1 26497:1 26510:1 26518:4 26535:5 26536:1 26552:1 26575:1 26576:1 26597:1 26607:1 26608:1 26626:1 26631:2 26638:1 26645:2 26654:1 26657:1 26678:1 26754:1 26793:1 26799:2 26836:1 26861:2 26870:1 26916:6 26967:1 26968:1 26986:1 26991:6 26999:1 27000:1 27002:1 27005:1 27019:1 27043:1 27044:1 27242:2 27244:5 27276:1 27277:1 27290:2 27296:1 27297:1 27305:2 27353:1 27360:1 27384:1 27471:1 27472:1 27482:1 27507:1 27509:1 27510:1 27512:1 27518:1 27534:1 27544:1 27584:1 27599:1 27600:1 27614:1 27646:1 27673:1 27734:1 27750:1 27770:1 27801:4 27802:1 27804:5 27814:1 27869:1 27910:2 27952:3 27956:1 27976:1 27999:1 28073:1 28076:2 28091:1 28105:1 28112:1 28131:3 28150:1 28152:1 28154:1 28159:3 28166:1 28180:1 28192:1 28208:1 28215:1 28219:1 28222:4 28235:1 28245:1 28308:3 28309:1 28326:2 28349:1 28391:3 28405:1 28429:2 28462:1 28484:1 28495:1 28507:1 28511:1 28516:1 28517:1 28533:1 28554:1 28578:1 28581:2 28600:1 28602:1 28607:1 28611:1 28619:2 28623:3 28624:1 28644:2 28664:2 28675:1 28680:1 28687:1 28703:3 28747:2 28756:1 28767:1 28782:1 28855:1 28867:1 28874:1 28912:1 28916:1 29104:1 29109:1 29117:1 29142:1 29150:1 29209:1 29243:1 29268:1 29274:1 29288:1 29292:2 29314:1 29315:2 29319:1 29325:1 29340:1 29342:1 29372:2 29390:1 29391:1 29400:1 29403:1 29411:4 29468:1 29479:1 29482:3 29486:1 29509:1 29550:1 29576:4 29587:1 29596:1 29601:2 29615:1 29637:1 29658:2 29668:1 29684:2 29686:2 29689:1 29696:1 29697:1 29699:1 29706:1 29714:1 29718:1 29760:1 29789:2 29794:1 29795:1 29816:3 29828:1 29833:1 29848:1 29852:1 29867:1 29932:1 29934:2 29938:1 29956:4 29979:1 29991:2 30031:2 30041:1 30044:1 30045:6 30064:2 30067:1 30097:1 30149:1 30188:1 30240:3 30289:1 30319:3 30331:1 30336:1 30368:1 30372:1 30390:4 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30479:17 30480:1 30502:1 30530:1 30537:10 30550:2 30581:1 30602:1 30623:1 30630:2 30655:1 30661:1 30670:3 30675:3 30711:7 30713:1 30747:1 30764:2 30768:1 30805:2 30809:1 30810:1 30815:1 30820:1 30846:2 30876:1 30882:2 30903:1 30933:1 30956:1 30996:1 31026:1 31041:3 31043:3 31115:1 31118:1 31121:1 31125:2 31143:1 31253:3 31267:1 31268:1 31272:10 31288:1 31306:1 31309:1 31310:2 31316:1 31337:1 31342:1 31362:1 31369:1 31380:1 31413:1 31437:1 31444:1 31458:1 31465:1 31477:1 31495:1 31496:1 31506:3 31514:2 31652:1 31659:1 31666:1 31667:1 31679:1 31681:1 31689:1 31705:1 31713:2 31718:1 31742:1 31756:1 31765:1 31781:1 31794:2 31801:1 31802:1 31803:1 31815:1 31823:1 31826:1 31851:1 31852:1 31866:1 31873:1 31882:1 31890:3 31896:2 31898:2 31902:1 31905:1 31907:2 31911:1 31914:1 31934:1 31958:1 31962:3 31965:1 31977:1 31978:1 31998:1
20 9:1 18:1 21:1 23:1 26:1 30:1 78:1 95:1 103:1 111:1 120:1 158:1 169:1 181:1 193:1 197:1 211:1 253:2 261:2 274:2 278:1 290:3 292:1 331:1 355:2 358:1 404:1 406:2 482:1 489:2 536:1 596:1 602:1 622:1 623:3 635:1 652:2 664:2 696:2 701:1 704:3 770:1 822:1 913:1 956:2 959:1 971:2 977:1 990:1 996:3 1000:1 1011:1 1025:1 1034:3 1057:1 1063:3 1064:1 1067:5 1069:3 1079:1 1095:1 1098:1 1108:4 1135:3 1136:3 1143:2 1149:1 1158:1 1167:1 1198:1 1200:2 1205:1 1226:1 1255:1 1281:1 1292:3 1305:4 1341:1 1380:1 1389:1 1402:1 1406:1 1407:1 1420:1 1426:1 1427:1 1430:1 1446:1 1491:1 1533:1 1563:1 1576:1 1582:2 1594:2 1599:1 1608:1 1630:1 1631:1 1633:3 1651:3 1662:1 1668:1 1670:1 1671:1 1678:1 1691:3 1719:12 1722:2 1725:7 1729:1 1737:1 1741:1 1746:1 1756:1 1757:2 1759:2 1778:1 1799:1 1800:1 1805:1 1811:9 1827:1 1829:1 1840:1 1855:1 1863:1 1876:1 1877:1 1903:2 1967:1 1968:5 1973:2 1976:1 1987:2 1994:1 2026:1 2035:2 2064:1 2070:1 2088:1 2105:1 2113:2 2116:2 2127:1 2138:2 2145:1 2161:1 2163:1 2166:1 2210:1 2229:1 2245:4 2260:1 2264:1 2284:1 2285:3 2295:1 2296:1 2301:1 2341:1 2354:4 2357:1 2379:1 2389:1 2395:2 2403:1 2433:2 2435:8 2438:3 2442:1 2443:1 2450:1 2451:2 2452:3 2454:1 2458:1 2469:1 2472:1 2475:2 2500:1 2512:1 2514:4 2517:1 2520:1 2525:1 2530:1 2531:2 2533:1 2535:3 2539:2 2542:2 2546:1 2549:2 2554:2 2574:1 2579:1 2582:1 2629:1 2645:1 2658:1 2673:1 2677:1 2718:1 2723:1 2741:1 2762:1 2767:1 2772:1 2773:1 2795:1 2801:1 2831:1 2839:1 2853:1 2869:1 2870:1 2875:1 2898:1 2914:1 2923:1 2948:1 2965:1 2970:2 2975:1 2977:1 3012:2 3029:1 3037:1 3050:1 3056:1 3063:1 3084:1 3087:1 3120:1 3128:1 3159:3 3168:9 3169:2 3171:2 3181:1 3184:2 3185:2 3195:1 3204:1 3214:8 3250:1 3320:1 3347:2 3422:3 3453:1 3463:1 3501:1 3537:1 3553:1 3598:1 3607:1 3615:1 3625:3 3660:3 3695:3 3711:1 3712:1 3719:1 3723:1 3751:1 3752:1 3780:1 3825:1 3835:1 3885:1 3901:1 3966:1 3970:1 3977:1 4009:1 4013:1 4015:1 4042:1 4056:1 4059:1 4063:1 4065:1 4070:1 4075:2 4118:2 4126:2 4127:2 4175:4 4176:1 4202:1 4207:1 4211:6 4213:1 4279:1 4296:1 4306:1 4317:5 4345:1 4346:1 4366:1 4379:1 4391:1 4392:2 4395:1 4414:1 4423:2 4425:1 4443:1 4454:1 4472:1 4508:1 4535:1 4562:1 4587:1 4593:1 4626:1 4699:1 4702:1 4730:1 4768:1 4771:1 4776:1 4777:1 4780:1 4791:1 4794:1 4836:2 4838:1 4859:1 4860:1 4872:1 4917:1 4923:1 4958:1 4959:2 4993:1 4997:1 5012:1 5046:1 5055:1 5067:1 5078:2 5086:1 5106:3 5130:1 5131:1 5136:2 5186:1 5196:1 5215:1 5227:1 5245:1 5247:1 5283:1 5306:1 5332:10 5345:1 5349:1 5372:1 5444:3 5448:6 5466:3 5467:1 5472:1 5476:1 5480:1 5485:1 5487:1 5488:2 5490:3 5492:2 5495:1 5496:1 5508:1 5607:1 5619:1 5662:1 5678:4 5683:1 5693:1 5706:1 5715:1 5720:1 5745:3 5748:1 5775:1 5800:2 5825:1 5839:1 5864:2 5901:1 5916:1 5924:1 5929:1 5931:3 5962:1 5977:1 5998:1 6039:2 6057:2 6077:1 6089:1 6095:1 6101:2 6107:1 6117:1 6120:1 6127:1 6137:3 6158:3 6189:1 6225:2 6244:1 6280:1 6312:1 6319:1 6321:1 6323:1 6326:2 6350:1 6351:1 6359:1 6362:1 6375:1 6379:1 6387:2 6394:3 6444:4 6445:1 6463:2 6467:2 6476:1 6477:2 6532:1 6542:1 6571:1 6609:2 6612:1 6631:1 6652:2 6670:2 6674:1 6675:1 6702:1 6709:1 6711:1 6721:1 6727:2 6772:3 6779:1 6783:2 6829:1 6830:1 6841:1 6856:3 6858:1 6869:1 6874:1 6890:1 6898:2 6910:1 6932:2 6933:2 6937:1 6949:3 6950:1 6951:1 6959:2 6966:1 6967:1 6971:3 6973:1 6977:2 6979:2 6980:2 6982:4 7034:1 7036:1 7077:4 7097:1 7105:4 7120:1 7146:1 7169:1 7170:1 7215:1 7236:1 7262:1 7307:2 7328:1 7333:1 7344:1 7345:2 7353:1 7361:2 7391:1 7392:1 7396:1 7399:1 7401:1 7406:2 7430:1 7432:1 7433:1 7439:1 7456:1 7457:1 7489:2 7566:1 7580:3 7615:3 7628:1 7634:1 7657:1 7688:1 7713:1 7717:2 7757:1 7763:1 7781:1 7799:6 7801:1 7813:1 7826:1 7862:2 7900:1 7937:1 7940:1 7941:1 7951:1 7971:2 8000:1 8013:1 8019:1 8025:1 8051:1 8069:1 8088:1 8122:3 8124:1 8128:3 8142:1 8144:1 8154:1 8172:1 8192:1 8201:1 8207:2 8214:1 8231:1 8241:1 8250:1 8264:1 8276:1 8283:2 8285:1 8290:1 8304:1 8342:1 8349:1 8376:1 8377:3 8383:1 8391:8 8410:1 8414:1 8416:4 8417:1 8457:20 8487:4 8490:9 8502:1 8537:1 8541:2 8554:2 8558:1 8568:1 8639:1 8721:1 8765:1 8787:3 8797:3 8803:1 8816:1 8903:1 8907:1 8929:1 8940:9 8947:2 8950:1 8958:1 8983:1 9005:1 9019:20 9045:1 9072:1 9075:1 9089:1 9102:1 9164:1 9205:1 9222:1 9226:1 9249:1 9258:2 9276:1 9279:1 9285:3 9294:1 9296:1 9343:1 9348:1 9383:2 9391:1 9393:3 9398:1 9399:4 9401:1 9402:1 9408:2 9413:3 9423:1 9425:1 9428:2 9490:1 9493:2 9495:1 9518:1 9554:1 9559:1 9590:1 9643:1 9658:1 9682:1 9698:1 9707:2 9724:1 9736:2 9751:1 9763:1 9767:1 9769:1 9772:2 9798:1 9816:1 9850:1 9851:1 9864:1 9869:1 9876:1 9885:1 9928:1 9931:2 9936:6 9940:4 9944:1 9960:3 9974:1 10028:1 10037:1 10061:1 10086:1 10093:1 10114:1 10121:1 10178:1 10190:2 10193:1 10207:1 10212:1 10214:1 10215:1 10222:1 10297:1 10313:1 10334:1 10354:2 10363:1 10393:2 10394:1 10405:1 10411:1 10431:2 10449:1 10457:1 10461:2 10474:2 10534:1 10547:3 10559:1 10563:3 10568:6 10583:3 10603:1 10649:1 10651:1 10663:2 10667:1 10678:2 10700:9 10709:1 10714:1 10715:1 10732:1 10740:1 10743:1 10749:1 10762:1 10764:1 10775:2 10781:1 10856:2 10864:1 10871:2 10878:2 10895:1 10925:2 10929:1 10944:2 10962:1 10966:1 10972:1 10978:1 10986:1 11071:2 11080:1 11082:1 11112:1 11116:1 11124:1 11140:1 11218:2 11277:1 11284:1 11285:1 11292:2 11335:1 11351:2 11416:4 11425:1 11448:1 11493:2 11497:1 11514:1 11523:1 11536:1 11548:3 11556:1 11587:2 11599:1 11606:3 11608:1 11612:1 11615:1 11620:1 11625:1 11626:1 11629:1 11630:2 11641:1 11642:1 11671:1 11673:1 11690:1 11714:3 11723:1 11736:1 11738:1 11744:4 11746:4 11785:1 11803:1 11818:1 11822:1 11829:1 11835:4 11849:3 11877:1 11913:1 11926:1 11937:1 11958:4 11961:2 11964:1 11968:1 12015:1 12024:1 12063:1 12070:2 12094:1 12101:1 12103:1 12105:1 12124:1 12126:1 12160:6 12166:2 12192:1 12197:1 12221:1 12243:1 12256:1 12268:3 12273:2 12308:1 12309:1 12334:1 12338:1 12339:1 12347:1 12359:1 12377:1 12406:1 12422:1 12441:2 12445:6 12512:2 12521:2 12524:1 12542:1 12545:2 12546:1 12584:1 12589:1 12590:1 12621:1 12640:1 12646:2 12669:1 12675:1 12682:5 12684:1 12688:1 12707:1 12721:1 12727:1 12739:1 12740:1 12743:1 12746:1 12750:1 12753:1 12758:1 12769:2 12772:1 12798:1 12822:1 12823:5 12839:2 12848:8 12896:1 12909:1 12917:1 12920:11 12999:1 13015:1 13025:1 13035:1 13042:2 13055:4 13093:1 13121:3 13143:1 13160:1 13178:2 13202:2 13215:1 13216:2 13226:2 13227:2 13231:1 13247:3 13250:3 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13364:2 13392:1 13455:1 13470:1 13519:1 13539:3 13620:1 13656:2 13693:1 13732:1 13751:1 13813:8 13816:1 13839:1 13845:1 13858:1 13879:1 13899:11 13906:1 13926:1 13933:2 13960:2 13984:2 14023:1 14024:1 14101:1 14104:1 14113:1 14119:1 14121:4 14178:1 14230:2 14235:1 14257:4 14269:1 14272:1 14274:3 14280:2 14296:2 14303:8 14305:1 14307:1 14341:1 14345:1 14352:1 14371:1 14399:2 14400:1 14431:1 14445:1 14446:8 14455:1 14464:1 14468:14 14512:1 14553:1 14567:3 14590:1 14618:1 14632:2 14655:1 14680:1 14704:1 14709:2 14714:1 14719:1 14744:1 14790:1 14864:1 14866:1 14868:1 14871:3 14879:1 14897:2 14913:1 14931:1 14983:10 14995:1 14996:2 15036:1 15037:2 15038:1 15067:2 15078:1 15091:1 15092:1 15094:1 15096:2 15104:1 15117:1 15171:3 15174:2 15196:2 15236:1 15237:1 15297:1 15305:1 15308:2 15322:1 15344:1 15387:1 15446:2 15448:1 15455:1 15464:1 15465:1 15472:1 15474:1 15519:1 15522:1 15552:1 15561:1 15572:1 15593:1 15597:1 15600:1 15604:1 15605:1 15615:1 15623:1 15647:1 15648:1 15654:2 15680:1 15698:1 15699:1 15702:4 15740:4 15762:1 15804:1 15807:1 15815:1 15821:3 15835:1 15848:2 15849:1 15872:1 15873:1 15892:2 15903:1 15910:1 15926:2 15937:1 15941:1 15942:1 15954:1 15961:1 15971:1 15991:1 16019:1 16035:1 16048:1 16052:1 16112:1 16126:1 16151:3 16156:1 16166:2 16178:1 16193:3 16198:1 16239:1 16298:3 16304:1 16305:1 16355:1 16358:2 16396:1 16410:1 16506:3 16515:1 16545:3 16547:1 16549:1 16553:1 16588:1 16621:1 16629:1 16685:1 16711:1 16720:1 16723:1 16747:1 16762:1 16768:1 16771:25 16808:1 16811:1 16822:1 16865:1 16870:1 16876:1 16901:1 16914:2 16919:1 16950:1 17030:2 17036:1 17039:2 17040:1 17041:2 17046:1 17053:1 17059:1 17065:1 17066:1 17071:3 17079:1 17087:1 17125:2 17127:1 17184:1 17185:1 17215:5 17216:4 17236:1 17243:1 17319:1 17321:2 17348:1 17360:2 17377:1 17382:1 17398:1 17421:1 17446:1 17469:2 17473:2 17478:1 17507:4 17514:1 17521:1 17549:1 17557:1 17559:1 17562:1 17571:4 17593:1 17602:1 17625:1 17632:1 17633:2 17637:1 17639:1 17641:2 17643:1 17646:2 17647:1 17651:1 17656:3 17658:1 17660:1 17662:5 17666:1 17678:1 17690:1 17695:3 17717:1 17731:1 17864:1 17902:1 17932:1 17937:1 17987:1 18039:2 18068:1 18099:1 18102:1 18107:1 18115:1 18122:1 18123:1 18130:2 18141:1 18192:1 18202:1 18212:1 18225:2 18228:4 18238:2 18243:1 18260:1 18266:1 18277:2 18310:1 18326:1 18328:1 18343:3 18347:1 18352:9 18355:2 18409:2 18412:1 18418:1 18420:2 18429:2 18430:2 18454:1 18465:2 18488:1 18492:1 18494:2 18498:1 18531:1 18537:1 18566:1 18569:1 18574:1 18583:1 18587:1 18589:1 18594:1 18596:1 18597:1 18608:1 18620:1 18623:1 18650:1 18684:1 18694:1 18696:1 18709:1 18727:2 18732:1 18750:3 18752:1 18765:2 18802:1 18810:1 18817:1 18823:1 18867:1 18872:1 18873:1 18906:1 18913:1 18918:1 18972:1 18975:1 18997:1 19000:1 19001:1 19043:1 19044:2 19068:2 19078:2 19084:1 19087:1 19122:1 19130:1 19133:1 19137:1 19164:2 19183:1 19194:1 19205:1 19212:1 19214:1 19222:1 19235:1 19249:6 19271:1 19286:1 19287:1 19292:2 19294:1 19319:1 19324:2 19351:3 19353:1 19357:2 19369:1 19371:1 19391:1 19408:1 19418:1 19428:1 19429:1 19437:1 19441:1 19443:3 19449:2 19450:1 19454:1 19463:1 19480:1 19486:1 19494:1 19496:1 19498:1 19518:8 19530:1 19549:2 19551:2 19583:1 19595:1 19596:1 19601:1 19642:1 19665:1 19709:1 19711:1 19716:1 19722:1 19756:1 19762:1 19774:1 19781:1 19787:1 19792:2 19827:1 19837:1 19852:1 19862:1 19946:3 19951:1 19981:5 19990:1 19992:2 19994:1 20000:1 20059:1 20061:1 20067:1 20068:1 20105:1 20190:1 20196:1730 20200:2 20218:3 20229:1 20232:1 20249:1 20284:1 20289:1 20304:1 20328:1 20339:1 20341:1 20347:2 20353:1 20386:1 20422:1 20423:1 20436:4 20444:1 20449:3 20451:2 20453:1 20463:1 20482:1 20510:1 20524:1 20530:2 20673:1 20696:3 20757:1 20761:2 20781:1 20819:1 20832:2 20839:1 20850:1 20858:1 20897:1 20914:1 20917:1 20954:1 20955:2 20978:3 21004:4 21015:1 21027:1 21041:2 21042:1 21056:1 21060:1 21066:1 21067:1 21105:1 21106:3 21127:2 21129:1 21130:1 21136:1 21158:1 21167:8 21173:1 21218:1 21229:1 21262:1 21267:1 21318:1 21323:1 21360:1 21363:1 21374:1 21406:1 21429:1 21434:2 21456:1 21465:1 21472:1 21475:1 21491:2 21492:2 21500:4 21506:1 21541:1 21542:1 21548:1 21560:1 21603:2 21623:1 21626:1 21634:1 21658:1 21679:1 21680:1 21705:1 21721:1 21742:1 21755:1 21763:4 21769:1 21773:1 21799:1 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:3 21867:2 21873:1 21894:1 21904:1 21915:2 21920:1 21937:6 21944:3 21990:1 21991:1 22002:1 22025:2 22056:1 22068:1 22098:1 22109:1 22112:1 22115:1 22162:1 22184:2 22194:2 22204:1 22225:1 22228:5 22230:4 22240:1 22242:2 22302:1 22306:1 22311:1 22319:1 22348:1 22351:1 22353:1 22384:1 22393:1 22434:1 22460:1 22479:1 22482:1 22485:1 22502:1 22507:1 22521:1 22526:1 22528:1 22550:1 22554:1 22564:1 22581:1 22590:2 22614:1 22626:1 22632:1 22639:1 22643:2 22657:1 22666:1 22719:1 22734:3 22739:1 22786:1 22796:10 22803:2 22809:1 22813:1 22822:4 22853:1 22861:1 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22901:1 22918:1 22941:1 22951:1 22960:2 22972:1 22991:1 23005:1 23017:1 23063:1 23092:3 23119:2 23131:1 23136:3 23146:2 23185:1 23219:1 23228:1 23234:1 23249:1 23258:3 23260:1 23261:1 23264:1 23274:1 23275:1 23322:1 23342:1 23360:1 23377:1 23389:1 23396:2 23420:2 23436:2 23438:2 23442:2 23491:1 23500:1 23515:1 23531:1 23551:1 23552:1 23557:1 23558:1 23613:1 23615:1 23617:1 23652:1 23664:1 23676:1 23686:3 23687:3 23689:3 23696:1 23700:1 23715:1 23718:2 23732:1 23746:1 23749:1 23765:1 23775:1 23796:1 23826:2 23862:1 23885:1 23893:1 23901:2 23905:2 23916:3 23935:1 23953:1 23977:1 23983:1 23994:2 24053:1 24068:1 24070:1 24079:2 24087:1 24088:4 24093:1 24095:1 24126:1 24157:1 24161:2 24166:2 24173:1 24182:1 24218:1 24233:1 24244:1 24245:1 24261:1 24272:1 24287:1 24294:1 24298:1 24311:2 24327:1 24357:2 24361:1 24363:2 24375:3 24379:1 24414:1 24425:1 24451:1 24452:1 24488:1 24503:1 24506:1 24534:3 24539:1 24548:1 24563:1 24566:1 24584:1 24594:1 24599:2 24610:2 24611:1 24612:2 24616:1 24617:1 24619:1 24633:1 24638:1 24640:1 24652:3 24655:1 24664:1 24672:3 24714:2 24718:2 24725:1 24727:2 24731:1 24761:1 24778:1 24786:1 24794:1 24819:3 24846:1 24865:4 24883:1 24913:2 24916:1 24957:2 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25079:1 25080:1 25140:1 25152:1 25166:1 25171:1 25188:1 25193:3 25203:1 25210:1 25247:1 25274:1 25276:3 25280:1 25298:2 25305:1 25308:1 25346:1 25351:1 25359:1 25364:1 25372:1 25373:1 25395:1 25417:1 25421:1 25431:1 25438:1 25441:1 25465:4 25469:1 25490:1 25498:1 25534:3 25559:1 25560:2 25566:1 25593:1 25606:1 25648:2 25649:1 25665:1 25691:1 25705:1 25779:2 25802:1 25817:3 25865:1 25909:1 25910:8 25996:1 26016:2 26050:1 26071:1 26084:1 26111:1 26136:1 26142:1 26151:3 26160:1 26170:2 26172:7 26174:1 26177:1 26197:1 26201:1 26202:1 26215:1 26219:1 26221:2 26236:1 26245:1 26248:1 26334:1 26386:1 26397:1 26398:1 26399:1 26405:1 26406:1 26408:1 26409:1 26413:1 26427:1 26470:1 26483:3 26485:1 26487:2 26489:1 26490:2 26496:1 26497:1 26510:1 26518:4 26535:5 26536:1 26552:1 26575:1 26576:1 26597:1 26607:1 26608:1 26626:1 26631:2 26638:1 26645:2 26654:1 26657:1 26678:1 26754:1 26793:1 26799:2 26836:1 26861:2 26870:1 26916:6 26967:1 26968:1 26986:1 26991:6 26999:1 27000:1 27002:1 27005:1 27019:1 27043:1 27044:1 27242:2 27244:5 27276:1 27277:1 27290:2 27296:1 27297:1 27305:2 27353:1 27360:1 27384:1 27471:1 27472:1 27482:1 27507:1 27509:1 27510:1 27512:1 27518:1 27534:1 27544:1 27584:1 27599:1 27600:1 27614:1 27646:1 27673:1 27734:1 27750:1 27770:1 27801:4 27802:1 27804:5 27814:1 27869:1 27910:2 27952:3 27956:1 27976:1 27999:1 28073:1 28076:2 28091:1 28105:1 28112:1 28119:1 28131:3 28150:1 28152:1 28154:1 28159:3 28166:1 28180:1 28192:1 28208:1 28215:1 28219:1 28222:4 28235:1 28245:1 28308:4 28309:1 28326:2 28349:1 28391:3 28405:1 28429:2 28462:1 28484:1 28495:1 28507:1 28511:1 28516:1 28517:1 28533:1 28554:1 28578:1 28581:2 28589:1 28600:1 28602:1 28607:1 28611:1 28619:2 28623:3 28624:1 28644:2 28664:2 28675:1 28680:1 28687:1 28703:3 28747:2 28756:1 28767:1 28782:1 28855:1 28867:1 28874:1 28912:1 28916:1 29104:1 29109:1 29117:1 29142:1 29150:1 29209:1 29243:1 29268:1 29274:1 29288:1 29292:2 29314:1 29315:2 29319:1 29325:1 29340:1 29342:1 29372:2 29390:1 29391:1 29400:1 29403:1 29411:4 29468:1 29479:1 29482:4 29486:1 29509:1 29550:1 29576:4 29587:1 29596:1 29601:2 29615:1 29627:1 29637:1 29658:2 29668:1 29684:2 29686:2 29689:1 29696:1 29697:1 29699:1 29706:1 29714:1 29718:1 29760:1 29789:2 29794:1 29795:1 29816:3 29828:1 29833:1 29848:1 29852:1 29867:1 29932:1 29934:2 29938:1 29956:4 29979:1 29991:2 30031:2 30041:1 30044:1 30045:6 30064:2 30067:1 30097:1 30149:1 30188:1 30240:3 30289:1 30319:3 30331:1 30336:1 30368:1 30372:1 30390:4 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30479:17 30480:1 30502:1 30530:1 30537:10 30550:2 30581:1 30602:1 30623:1 30630:2 30655:1 30661:1 30670:3 30675:3 30711:7 30713:1 30747:1 30764:2 30768:1 30805:2 30809:1 30810:1 30815:1 30820:1 30846:2 30876:1 30882:2 30903:1 30933:1 30956:1 30996:1 31026:1 31041:3 31043:3 31115:1 31118:1 31121:1 31125:2 31132:1 31143:1 31253:3 31267:1 31268:1 31272:10 31288:1 31306:1 31309:1 31310:2 31316:1 31337:1 31342:1 31362:1 31369:1 31380:1 31413:1 31437:1 31444:1 31458:1 31465:1 31477:1 31495:1 31496:1 31506:3 31514:2 31652:1 31659:1 31666:1 31667:1 31679:1 31681:1 31689:1 31705:1 31713:2 31718:1 31742:1 31756:1 31765:1 31780:1 31781:1 31785:1 31794:2 31801:1 31802:1 31803:1 31815:1 31823:1 31826:1 31851:1 31852:1 31866:1 31873:1 31882:1 31890:3 31896:2 31898:2 31902:1 31905:1 31907:2 31911:1 31914:1 31934:1 31958:1 31962:3 31965:1 31977:1 31978:1 31998:1
20 9:1 18:1 21:1 23:1 26:1 30:1 61:1 75:1 78:1 90:1 95:1 103:1 111:1 120:1 158:1 169:1 181:1 193:1 197:1 211:1 253:2 261:2 274:2 278:1 290:3 292:1 331:1 355:2 358:1 404:1 406:2 482:1 489:2 536:1 596:1 602:1 622:1 623:3 635:1 652:2 664:2 696:2 701:1 704:3 770:1 822:1 913:1 956:2 959:1 971:2 977:1 990:1 996:3 1000:1 1011:1 1025:1 1034:3 1057:1 1063:3 1064:1 1067:5 1069:3 1079:1 1095:1 1098:1 1108:4 1135:3 1136:3 1143:2 1149:1 1158:1 1167:1 1198:1 1200:2 1205:1 1226:1 1255:1 1281:1 1292:3 1305:4 1339:1 1341:1 1368:1 1371:1 1380:1 1389:1 1402:1 1406:1 1407:1 1420:1 1426:1 1427:1 1430:1 1446:1 1491:1 1533:1 1563:1 1576:1 1582:2 1594:2 1599:1 1608:1 1630:1 1631:1 1633:3 1651:3 1662:1 1668:1 1670:1 1671:1 1678:1 1691:3 1719:13 1722:2 1725:7 1729:1 1737:1 1741:1 1746:1 1756:1 1757:2 1759:2 1778:1 1799:1 1800:1 1805:1 1811:9 1827:1 1829:1 1840:1 1855:1 1863:1 1876:1 1877:1 1903:2 1945:1 1967:1 1968:5 1973:2 1976:1 1987:2 1994:1 2026:1 2035:2 2064:1 2070:1 2088:1 2105:1 2113:2 2116:2 2127:1 2138:2 2145:1 2161:1 2163:1 2166:1 2210:1 2229:1 2245:4 2260:1 2264:1 2284:1 2285:3 2295:1 2296:1 2301:1 2341:1 2354:5 2357:1 2379:1 2389:1 2395:2 2403:1 2433:2 2435:8 2438:3 2442:1 2443:1 2450:1 2451:2 2452:3 2454:1 2458:1 2469:1 2472:1 2475:2 2500:1 2509:1 2512:1 2514:4 2517:1 2520:1 2525:1 2530:1 2531:2 2533:1 2535:3 2539:2 2542:2 2546:1 2549:2 2552:1 2554:2 2574:1 2579:1 2582:1 2629:1 2645:1 2658:1 2673:1 2677:1 2718:1 2723:1 2741:1 2762:1 2767:1 2772:1 2773:1 2795:1 2801:1 2831:1 2833:1 2839:1 2853:1 2869:1 2870:1 2875:1 2898:1 2914:1 2923:1 2948:1 2965:1 2970:2 2975:1 2977:1 3012:2 3015:1 3029:1 3037:1 3050:1 3056:1 3063:1 3084:1 3087:1 3120:1 3128:1 3159:3 3168:9 3169:2 3171:2 3181:1 3184:2 3185:2 3195:1 3204:1 3214:8 3250:1 3320:1 3347:2 3422:3 3453:1 3463:1 3501:1 3507:1 3537:1 3553:1 3598:1 3607:1 3615:1 3625:3 3660:3 3695:3 3711:1 3712:1 3719:1 3723:1 3751:1 3752:1 3780:1 3825:1 3835:1 3885:2 3893:1 3901:1 3952:1 3966:1 3970:1 3977:1 4009:1 4013:1 4015:1 4042:1 4056:1 4059:1 4063:1 4065:1 4070:1 4075:2 4118:2 4126:2 4127:2 4175:4 4176:1 4202:1 4207:1 4211:6 4213:1 4279:1 4296:1 4306:1 4317:5 4345:1 4346:1 4366:1 4379:1 4391:1 4392:2 4395:1 4406:1 4414:2 4423:2 4425:1 4443:1 4454:1 4472:1 4508:1 4535:1 4562:1 4587:1 4593:1 4626:1 4699:1 4702:1 4730:1 4736:1 4768:1 4771:1 4776:1 4777:1 4780:1 4791:1 4794:1 4836:2 4838:1 4859:1 4860:1 4872:1 4917:1 4923:1 4958:1 4959:2 4993:1 4997:1 5012:1 5027:1 5046:1 5055:1 5067:1 5078:2 5086:1 5106:4 5130:1 5131:1 5136:2 5186:1 5196:1 5215:1 5227:1 5245:1 5247:1 5283:1 5306:1 5332:11 5345:1 5349:1 5372:1 5444:3 5448:6 5466:3 5467:2 5472:1 5475:1 5476:1 5480:1 5485:1 5487:1 5488:2 5490:3 5492:3 5495:1 5496:1 5508:1 5547:1 5607:1 5619:1 5662:1 5678:4 5683:1 5693:1 5706:1 5715:1 5720:1 5745:3 5748:1 5775:1 5800:2 5825:1 5839:1 5864:2 5901:1 5916:1 5924:1 5929:1 5931:3 5962:1 5977:1 5998:1 6039:2 6057:2 6077:1 6089:1 6095:1 6101:2 6107:1 6117:1 6120:1 6127:1 6137:3 6158:3 6189:1 6225:2 6244:1 6249:1 6280:1 6312:1 6319:1 6321:1 6323:1 6326:2 6350:1 6351:1 6359:1 6362:1 6375:1 6379:1 6387:2 6394:3 6444:4 6445:2 6463:2 6467:2 6476:1 6477:2 6532:1 6542:1 6571:1 6584:1 6609:2 6612:1 6631:1 6652:2 6670:2 6674:1 6675:1 6702:1 6709:1 6711:1 6721:1 6727:2 6772:3 6779:1 6783:3 6829:1 6830:1 6841:1 6856:3 6858:1 6869:1 6874:1 6890:1 6898:2 6910:1 6932:2 6933:2 6937:1 6949:3 6950:1 6951:1 6959:2 6966:1 6967:1 6971:3 6973:1 6977:2 6979:3 6980:2 6982:4 7034:1 7036:1 7077:4 7097:1 7105:4 7120:1 7146:1 7169:1 7170:1 7215:1 7236:1 7262:1 7307:2 7328:1 7333:1 7344:1 7345:2 7353:1 7361:2 7391:1 7392:1 7396:1 7399:1 7401:1 7406:2 7430:1 7432:1 7433:1 7439:1 7456:1 7457:1 7489:2 7566:1 7567:1 7580:3 7615:3 7628:1 7634:1 7657:1 7688:1 7713:1 7717:2 7757:1 7763:1 7781:1 7799:6 7801:1 7813:1 7826:1 7862:2 7900:1 7937:1 7940:1 7941:1 7951:1 7971:2 8000:1 8013:1 8019:1 8025:1 8051:1 8069:1 8088:1 8122:3 8124:1 8128:3 8142:1 8144:1 8154:1 8172:1 8192:1 8201:1 8207:2 8214:1 8231:1 8241:1 8245:1 8250:1 8264:1 8276:1 8283:2 8285:1 8290:1 8304:1 8342:1 8349:1 8376:1 8377:3 8383:1 8391:8 8400:1 8410:1 8414:1 8416:4 8417:1 8457:22 8487:4 8490:9 8502:1 8537:1 8541:2 8554:2 8558:1 8568:1 8639:1 8721:1 8765:1 8787:3 8797:3 8803:1 8816:1 8896:1 8903:1 8907:1 8929:1 8940:9 8947:2 8950:1 8958:1 8983:1 9005:1 9019:21 9045:1 9072:1 9075:1 9089:1 9102:1 9164:1 9205:1 9222:1 9226:1 9249:1 9258:2 9276:1 9279:1 9285:3 9294:1 9296:1 9323:1 9343:1 9348:1 9383:2 9391:1 9393:3 9398:1 9399:4 9401:1 9402:1 9408:2 9413:3 9423:1 9425:1 9428:2 9455:1 9490:2 9493:2 9495:1 9518:1 9554:1 9559:1 9590:1 9643:1 9658:1 9682:1 9698:1 9707:2 9724:1 9736:3 9751:1 9763:1 9767:1 9769:1 9772:3 9798:1 9816:1 9850:1 9851:1 9864:1 9869:1 9876:1 9885:1 9895:1 9928:1 9931:2 9936:6 9940:4 9944:1 9960:3 9974:1 10018:1 10028:1 10037:1 10061:1 10086:1 10093:1 10114:1 10121:1 10178:1 10190:2 10193:1 10207:1 10212:1 10214:1 10215:1 10222:1 10237:1 10297:1 10313:1 10334:1 10354:2 10363:1 10386:1 10393:2 10394:1 10405:1 10411:1 10423:1 10431:2 10449:1 10457:1 10461:2 10474:2 10534:1 10547:3 10559:1 10563:3 10568:6 10583:3 10603:1 10649:1 10651:1 10663:2 10667:1 10678:2 10700:9 10709:1 10714:1 10715:1 10732:1 10740:1 10743:1 10749:1 10762:1 10764:1 10775:2 10781:1 10856:2 10864:1 10871:3 10878:2 10895:1 10925:2 10927:1 10929:1 10944:2 10962:1 10966:1 10972:1 10978:1 10986:2 11071:2 11080:1 11082:1 11112:1 11116:1 11124:1 11140:1 11218:2 11277:1 11284:1 11285:1 11292:2 11335:1 11351:2 11416:4 11418:1 11425:1 11448:1 11493:2 11497:1 11514:1 11523:1 11536:1 11548:3 11556:1 11587:2 11599:1 11606:3 11608:1 11612:1 11615:1 11620:1 11625:1 11626:1 11629:1 11630:2 11641:1 11642:1 11671:1 11673:1 11690:1 11714:3 11723:1 11728:1 11736:1 11738:1 11744:4 11746:6 11785:1 11803:1 11818:1 11822:1 11829:1 11835:4 11849:3 11877:1 11913:1 11926:1 11937:1 11958:4 11961:2 11964:1 11968:1 12015:1 12024:2 12063:1 12070:2 12094:1 12101:1 12103:1 12105:1 12124:1 12126:1 12160:6 12166:2 12192:1 12197:1 12221:1 12243:1 12256:1 12268:3 12273:2 12308:1 12309:1 12334:1 12338:1 12339:1 12347:1 12359:1 12377:1 12406:1 12422:1 12441:2 12445:6 12512:2 12521:2 12524:1 12542:1 12545:2 12546:1 12584:1 12589:1 12590:1 12621:1 12640:1 12646:2 12669:1 12675:1 12682:5 12684:1 12688:1 12706:1 12707:1 12721:1 12727:1 12739:1 12740:1 12743:1 12746:1 12750:1 12753:1 12758:1 12769:2 12772:1 12798:1 12822:1 12823:5 12839:2 12848:8 12896:1 12909:1 12917:1 12920:11 12966:1 12999:1 13015:1 13025:1 13035:1 13042:2 13055:4 13093:1 13121:3 13143:1 13160:1 13178:2 13202:2 13215:1 13216:2 13226:2 13227:2 13231:1 13242:1 13247:3 13250:3 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13364:2 13392:1 13455:1 13470:1 13519:1 13539:3 13620:1 13656:2 13693:1 13732:1 13751:1 13813:8 13816:1 13839:1 13845:1 13858:1 13879:1 13899:11 13906:1 13926:1 13933:2 13960:2 13984:2 14023:1 14024:1 14101:1 14104:1 14113:1 14119:1 14121:4 14178:1 14230:2 14235:1 14257:4 14269:1 14272:1 14274:3 14280:2 14296:2 14303:8 14305:1 14307:1 14341:1 14345:1 14352:1 14371:1 14399:2 14400:1 14431:1 14445:1 14446:8 14455:1 14464:1 14468:14 14512:1 14553:1 14567:3 14590:1 14618:1 14632:2 14655:1 14662:1 14680:1 14704:1 14709:2 14714:1 14719:1 14744:1 14790:1 14864:1 14866:1 14868:1 14871:3 14872:1 14879:1 14897:2 14913:1 14931:1 14941:1 14983:10 14995:1 14996:2 15036:1 15037:2 15038:1 15067:2 15078:1 15091:1 15092:1 15094:1 15096:2 15104:1 15117:1 15171:3 15174:2 15196:2 15236:1 15237:1 15297:1 15305:1 15308:2 15322:1 15344:1 15387:1 15446:2 15448:1 15455:1 15464:1 15465:1 15472:1 15474:1 15519:1 15522:1 15552:1 15561:1 15572:1 15593:1 15597:1 15600:2 15604:1 15605:1 15615:1 15623:1 15647:1 15648:1 15654:2 15680:1 15698:1 15699:1 15702:4 15740:4 15762:1 15781:1 15804:1 15807:1 15815:1 15821:3 15835:2 15848:2 15849:1 15872:1 15873:1 15892:2 15903:1 15910:1 15926:2 15937:1 15941:1 15942:1 15954:1 15961:1 15971:1 15991:1 16019:1 16035:1 16048:1 16052:1 16112:1 16126:1 16151:3 16156:1 16166:2 16178:1 16193:3 16198:1 16239:1 16268:1 16298:4 16304:1 16305:1 16319:1 16351:1 16355:1 16358:2 16396:1 16408:1 16410:1 16506:3 16515:1 16521:1 16545:3 16547:1 16549:1 16553:1 16588:1 16621:1 16629:1 16685:1 16711:1 16720:1 16723:1 16747:1 16762:1 16768:1 16771:26 16808:1 16811:1 16822:1 16865:1 16870:1 16876:1 16901:1 16914:2 16919:1 16950:1 17030:3 17036:1 17039:2 17040:1 17041:2 17046:1 17047:1 17053:1 17059:1 17065:1 17066:1 17071:3 17072:1 17079:1 17087:1 17125:2 17127:1 17184:1 17185:1 17215:5 17216:5 17236:1 17243:1 17270:1 17319:1 17321:2 17348:1 17360:2 17377:1 17382:1 17398:1 17421:1 17446:1 17469:2 17473:2 17478:1 17507:4 17514:1 17521:1 17549:1 17557:1 17559:1 17562:1 17571:4 17593:1 17602:1 17609:1 17625:1 17632:1 17633:2 17637:1 17638:1 17639:1 17641:2 17643:1 17646:2 17647:1 17651:1 17656:3 17658:1 17660:1 17662:5 17666:1 17678:1 17690:1 17695:3 17717:1 17731:1 17864:1 17902:1 17932:1 17937:1 17987:1 18039:2 18068:1 18099:1 18102:1 18107:1 18115:1 18122:1 18123:1 18130:2 18141:1 18192:1 18202:1 18212:1 18225:2 18228:4 18238:2 18243:1 18260:1 18266:1 18277:2 18310:1 18326:2 18328:1 18343:3 18347:1 18352:9 18355:2 18409:2 18412:1 18418:1 18420:2 18429:2 18430:2 18454:1 18465:2 18488:1 18492:1 18494:2 18498:1 18531:1 18533:1 18537:1 18566:1 18569:1 18574:1 18583:1 18587:1 18589:1 18594:1 18596:1 18597:1 18608:1 18620:1 18623:1 18650:1 18684:1 18694:1 18696:1 18709:1 18727:2 18732:1 18750:3 18752:1 18765:2 18802:1 18810:1 18817:1 18823:1 18867:1 18872:1 18873:1 18906:1 18913:1 18918:1 18972:1 18975:1 18997:1 19000:1 19001:1 19043:1 19044:2 19068:2 19078:2 19084:1 19087:1 19122:1 19130:1 19133:1 19137:1 19157:1 19164:2 19183:1 19194:1 19205:1 19212:1 19214:1 19222:1 19235:1 19249:6 19271:1 19286:1 19287:1 19292:2 19294:1 19319:1 19324:2 19351:3 19353:1 19357:2 19369:1 19371:1 19391:1 19408:1 19418:1 19428:1 19429:1 19437:1 19441:1 19443:3 19449:2 19450:1 19454:1 19463:1 19480:1 19486:1 19494:1 19496:1 19498:1 19518:8 19530:1 19549:2 19551:2 19583:1 19595:1 19596:1 19601:1 19642:1 19665:1 19698:1 19709:1 19711:1 19716:1 19720:1 19722:1 19756:1 19762:1 19774:1 19781:1 19787:1 19792:2 19824:1 19827:1 19837:1 19852:1 19862:1 19946:3 19951:1 19981:5 19990:1 19992:2 19994:1 20000:1 20059:1 20061:1 20067:1 20068:1 20105:1 20190:1 20196:1800 20200:2 20218:3 20229:1 20232:1 20249:1 20284:1 20289:1 20304:1 20328:1 20339:1 20341:1 20347:2 20353:1 20386:1 20422:1 20423:1 20436:4 20444:1 20449:3 20451:2 20453:1 20463:1 20482:1 20510:1 20524:1 20530:2 20673:1 20696:3 20757:1 20761:2 20781:1 20819:1 20832:2 20839:1 20850:1 20858:1 20897:1 20914:1 20917:1 20954:1 20955:2 20978:3 21004:4 21015:1 21027:1 21041:2 21042:1 21056:1 21060:1 21066:1 21067:1 21105:1 21106:4 21127:2 21129:1 21130:1 21136:1 21158:1 21167:8 21173:1 21218:1 21229:1 21262:1 21267:1 21318:1 21323:1 21360:1 21363:1 21374:1 21406:1 21429:1 21434:2 21456:1 21465:1 21472:1 21475:1 21491:2 21492:2 21500:4 21506:1 21541:1 21542:1 21548:1 21560:1 21567:1 21603:2 21623:1 21626:1 21634:1 21658:1 21679:1 21680:1 21705:1 21721:1 21742:1 21755:1 21763:5 21769:1 21773:1 21799:1 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:4 21867:2 21873:1 21894:1 21904:1 21915:2 21920:1 21937:6 21944:3 21990:1 21991:1 22002:1 22025:2 22056:1 22068:1 22098:1 22109:1 22112:1 22115:1 22162:1 22184:3 22194:2 22195:1 22204:1 22225:1 22228:5 22230:4 22240:1 22242:2 22302:1 22306:1 22311:1 22319:1 22348:1 22351:1 22353:1 22384:1 22393:1 22422:1 22434:1 22460:1 22479:1 22482:1 22485:1 22502:1 22507:1 22521:1 22526:1 22528:1 22550:1 22554:1 22564:1 22581:1 22590:2 22614:1 22626:1 22632:1 22639:1 22643:2 22657:1 22666:1 22719:1 22734:3 22739:1 22786:1 22796:10 22803:2 22809:2 22813:1 22822:4 22853:1 22861:1 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22901:1 22918:1 22941:1 22951:1 22960:2 22972:1 22991:1 23005:1 23017:1 23063:1 23092:3 23119:2 23131:1 23136:3 23141:1 23146:2 23185:1 23219:1 23228:1 23234:1 23249:1 23258:3 23260:1 23261:1 23264:1 23274:1 23275:1 23307:1 23322:1 23342:1 23349:1 23360:1 23377:1 23389:1 23396:2 23420:2 23436:2 23438:2 23442:2 23491:1 23500:1 23515:2 23531:1 23551:1 23552:1 23557:1 23558:1 23613:1 23615:1 23617:1 23652:1 23664:1 23676:1 23686:3 23687:3 23689:3 23696:1 23697:1 23700:1 23715:1 23718:2 23732:1 23746:1 23749:1 23765:1 23775:1 23796:1 23826:2 23862:1 23872:1 23885:1 23893:1 23901:2 23905:2 23916:3 23935:1 23953:1 23977:1 23983:1 23994:2 24042:1 24053:1 24068:1 24070:1 24079:2 24087:1 24088:4 24093:1 24095:1 24126:1 24132:1 24157:1 24161:2 24166:2 24173:1 24182:1 24218:1 24233:1 24244:1 24245:1 24261:1 24272:1 24287:1 24294:1 24298:1 24311:2 24327:1 24357:2 24361:1 24363:2 24375:3 24379:1 24414:1 24425:1 24451:1 24452:1 24488:1 24503:1 24506:1 24534:3 24539:1 24548:1 24563:1 24566:1 24584:1 24594:1 24599:2 24610:2 24611:1 24612:2 24616:1 24617:1 24619:1 24625:1 24633:1 24638:1 24640:1 24652:3 24655:1 24664:1 24672:3 24714:2 24718:2 24725:1 24727:2 24731:1 24761:1 24778:1 24786:1 24794:1 24819:3 24846:1 24865:4 24883:1 24913:2 24916:1 24957:2 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25079:1 25080:1 25140:1 25152:1 25166:1 25171:1 25188:1 25193:3 25203:1 25210:1 25247:1 25274:1 25276:3 25280:1 25298:2 25305:1 25308:1 25346:1 25351:1 25359:1 25364:1 25372:1 25373:1 25394:1 25395:1 25417:1 25421:1 25431:1 25438:1 25441:1 25465:4 25469:1 25490:1 25498:1 25534:3 25559:1 25560:2 25566:1 25593:1 25606:1 25648:2 25649:1 25665:1 25691:1 25705:1 25779:2 25802:1 25817:3 25865:1 25909:1 25910:8 25996:1 26016:2 26050:1 26064:1 26071:1 26084:1 26111:1 26136:1 26142:1 26151:3 26160:1 26170:2 26172:7 26174:1 26177:1 26197:1 26201:1 26202:1 26215:1 26219:1 26221:2 26236:1 26245:1 26248:1 26270:1 26334:1 26386:1 26397:1 26398:1 26399:1 26405:1 26406:1 26408:1 26409:1 26413:1 26427:1 26470:1 26483:3 26485:1 26487:2 26489:1 26490:2 26496:1 26497:1 26510:1 26518:4 26535:5 26536:1 26552:1 26575:1 26576:1 26597:1 26607:1 26608:1 26626:1 26631:2 26638:1 26645:2 26654:1 26657:1 26678:1 26750:1 26754:1 26793:1 26799:2 26836:1 26861:2 26870:1 26916:6 26967:1 26968:1 26986:1 26991:6 26999:1 27000:1 27002:1 27005:1 27019:1 27043:1 27044:1 27242:2 27244:5 27276:1 27277:1 27290:2 27296:1 27297:1 27305:2 27353:1 27360:1 27384:1 27471:1 27472:1 27482:1 27507:1 27509:1 27510:1 27512:1 27518:1 27534:1 27544:1 27584:1 27586:1 27599:1 27600:1 27614:1 27646:1 27673:1 27693:1 27734:1 27750:1 27770:1 27801:4 27802:1 27804:5 27814:1 27869:1 27910:2 27952:3 27956:1 27957:1 27976:1 27999:1 28018:1 28073:1 28076:2 28091:1 28105:1 28112:1 28119:1 28131:3 28150:1 28152:1 28154:1 28159:3 28166:1 28180:1 28192:1 28208:1 28215:1 28219:1 28222:4 28235:1 28245:1 28291:1 28308:4 28309:1 28326:2 28349:1 28391:3 28405:1 28429:2 28462:1 28484:1 28495:1 28507:1 28511:1 28516:1 28517:1 28533:1 28554:1 28578:1 28581:2 28589:1 28600:1 28602:1 28607:1 28611:1 28619:2 28623:3 28624:1 28644:2 28664:2 28675:1 28678:1 28680:1 28687:1 28703:3 28747:2 28756:2 28767:1 28782:1 28855:1 28867:1 28874:1 28912:1 28916:1 29013:1 29104:1 29109:1 29117:1 29142:1 29150:1 29209:1 29243:1 29268:1 29274:1 29288:1 29292:2 29314:1 29315:2 29319:1 29325:1 29340:1 29342:1 29355:1 29372:3 29390:1 29391:1 29400:1 29403:1 29411:4 29468:1 29479:1 29482:4 29486:1 29509:1 29550:1 29576:4 29587:2 29596:1 29599:1 29601:2 29615:1 29627:1 29637:1 29658:2 29668:1 29684:2 29686:2 29689:1 29696:1 29697:1 29699:1 29706:1 29714:1 29718:1 29760:1 29789:2 29794:1 29795:1 29816:3 29828:1 29833:1 29848:1 29852:1 29867:1 29918:1 29932:1 29934:2 29938:1 29956:4 29979:1 29991:2 30031:2 30041:1 30044:1 30045:6 30064:2 30067:1 30097:1 30149:1 30188:1 30240:3 30289:1 30319:3 30331:1 30336:1 30368:1 30372:1 30390:4 30392:1 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30479:17 30480:1 30502:1 30530:1 30537:10 30550:2 30581:1 30602:1 30623:1 30630:2 30655:1 30661:1 30670:3 30675:3 30711:7 30713:1 30747:1 30764:2 30768:1 30805:2 30809:1 30810:1 30815:1 30820:1 30846:2 30876:1 30882:2 30888:1 30903:1 30933:1 30956:1 30996:1 31026:1 31041:3 31043:3 31115:1 31118:1 31121:1 31125:2 31132:1 31143:1 31253:3 31267:1 31268:1 31272:10 31288:1 31291:1 31306:1 31309:1 31310:2 31316:1 31337:1 31342:1 31362:1 31369:1 31380:1 31413:1 31437:1 31444:1 31458:1 31465:1 31477:1 31495:1 31496:1 31506:3 31514:2 31550:1 31652:1 31659:1 31666:1 31667:1 31679:1 31681:1 31689:1 31705:1 31713:2 31718:1 31742:1 31750:1 31756:1 31765:1 31780:1 31781:1 31785:1 31794:2 31801:1 31802:1 31803:1 31815:1 31823:1 31826:1 31851:1 31852:1 31866:1 31873:1 31882:1 31886:1 31890:3 31896:2 31898:2 31902:1 31905:1 31907:2 31911:1 31914:1 31934:1 31958:1 31962:3 31965:1 31977:1 31978:1 31998:1
20 9:1 18:1 21:1 23:1 26:1 30:1 61:1 75:1 78:1 90:1 95:1 103:1 111:1 120:1 158:1 169:1 181:1 193:1 197:1 211:1 253:3 261:2 274:2 278:1 290:3 292:1 331:1 355:2 358:1 404:1 406:2 482:1 489:2 536:1 596:1 602:1 622:1 623:3 635:1 652:2 664:2 696:2 701:1 704:3 770:1 822:1 913:1 956:2 959:1 971:2 977:1 990:1 995:1 996:3 1000:1 1011:1 1025:1 1034:3 1057:1 1063:3 1064:1 1067:5 1069:4 1079:1 1095:1 1098:1 1108:4 1135:3 1136:3 1143:2 1149:1 1158:1 1167:1 1198:1 1200:2 1205:1 1226:1 1255:1 1281:1 1292:3 1305:4 1339:1 1341:1 1350:1 1368:1 1371:1 1380:1 1389:1 1402:1 1406:1 1407:1 1420:1 1426:1 1427:1 1430:1 1446:1 1491:1 1511:1 1533:1 1563:1 1576:1 1582:2 1594:2 1599:1 1608:1 1630:1 1631:1 1633:3 1651:3 1662:1 1668:1 1670:1 1671:1 1678:1 1691:3 1719:13 1722:2 1725:7 1729:1 1737:2 1741:1 1746:1 1756:1 1757:2 1759:2 1778:1 1799:1 1800:1 1805:1 1811:9 1827:1 1829:1 1840:1 1855:1 1863:1 1876:1 1877:1 1903:2 1945:1 1967:1 1968:5 1973:2 1976:1 1987:2 1994:1 2026:1 2035:2 2064:1 2070:1 2088:1 2105:2 2113:3 2116:2 2127:1 2138:2 2145:1 2161:1 2163:1 2166:1 2210:1 2229:1 2245:4 2260:1 2264:1 2284:1 2285:3 2295:1 2296:1 2301:1 2341:1 2354:5 2357:1 2379:1 2389:1 2395:2 2403:1 2433:2 2435:8 2438:3 2442:1 2443:1 2450:1 2451:2 2452:3 2454:2 2455:1 2458:1 2469:1 2472:2 2475:2 2500:1 2509:1 2512:1 2514:4 2517:1 2520:1 2525:2 2530:1 2531:2 2533:1 2535:3 2539:2 2542:2 2546:1 2549:2 2552:1 2554:2 2574:1 2576:1 2579:1 2582:1 2629:1 2645:1 2658:1 2673:1 2676:1 2677:1 2718:1 2723:1 2741:1 2762:1 2767:1 2772:1 2773:1 2795:1 2801:1 2831:1 2833:1 2839:1 2853:1 2869:1 2870:1 2875:1 2898:1 2902:1 2914:1 2923:1 2948:1 2965:1 2970:2 2975:1 2977:1 3012:2 3015:1 3029:1 3037:1 3050:1 3056:1 3063:1 3084:1 3087:2 3120:1 3128:1 3159:3 3168:9 3169:2 3171:2 3181:1 3184:2 3185:3 3195:1 3204:1 3214:9 3250:1 3320:1 3347:2 3422:3 3453:1 3463:1 3501:1 3507:1 3537:1 3553:1 3598:1 3607:1 3615:1 3625:3 3660:3 3695:3 3711:1 3712:1 3719:1 3723:1 3751:1 3752:1 3780:1 3825:1 3835:1 3885:2 3893:1 3901:1 3952:2 3966:1 3970:1 3977:1 4009:1 4013:1 4015:1 4042:1 4056:1 4059:1 4063:1 4065:1 4070:1 4075:2 4118:2 4126:2 4127:2 4175:4 4176:1 4202:1 4207:1 4211:6 4213:1 4279:1 4296:1 4306:1 4317:6 4345:2 4346:1 4366:1 4379:1 4391:1 4392:2 4395:1 4406:1 4414:2 4423:2 4425:1 4443:1 4454:1 4472:1 4482:1 4508:1 4535:1 4562:1 4587:1 4593:1 4626:1 4699:1 4702:1 4730:1 4736:1 4768:1 4771:1 4776:1 4777:1 4780:1 4791:1 4794:1 4836:2 4838:1 4859:1 4860:1 4872:1 4917:1 4923:1 4958:1 4959:2 4993:1 4997:1 4999:1 5012:1 5027:1 5046:1 5055:1 5067:1 5078:2 5086:1 5106:4 5130:2 5131:1 5136:2 5186:1 5196:1 5215:1 5227:1 5245:1 5247:1 5283:1 5306:1 5332:12 5345:1 5349:1 5372:1 5444:3 5448:6 5466:3 5467:2 5472:1 5475:1 5476:1 5480:1 5485:1 5487:1 5488:2 5490:3 5492:3 5495:1 5496:1 5508:1 5547:1 5607:1 5619:1 5662:1 5678:4 5683:1 5693:1 5706:1 5710:1 5715:1 5720:1 5745:3 5748:1 5775:1 5800:2 5825:1 5839:1 5864:3 5901:1 5916:1 5924:1 5929:1 5931:4 5962:1 5977:1 5998:1 6039:2 6057:2 6077:1 6086:1 6089:1 6095:1 6101:2 6107:1 6117:1 6120:1 6127:1 6137:3 6158:3 6189:1 6225:2 6244:1 6249:1 6268:1 6279:1 6280:1 6312:1 6319:1 6321:1 6323:1 6326:2 6350:1 6351:1 6359:1 6362:1 6375:1 6379:1 6387:2 6394:3 6444:4 6445:2 6463:2 6467:2 6476:1 6477:2 6532:1 6542:1 6571:1 6584:1 6609:2 6612:1 6631:1 6652:2 6670:2 6674:1 6675:1 6702:1 6709:1 6711:1 6721:1 6727:2 6772:3 6779:1 6783:3 6829:1 6830:1 6841:1 6856:3 6858:1 6869:1 6874:1 6890:1 6898:2 6910:1 6932:2 6933:2 6937:1 6949:3 6950:1 6951:1 6959:2 6966:1 6967:1 6971:3 6973:1 6977:2 6979:4 6980:2 6982:4 7034:1 7036:1 7077:4 7097:1 7105:4 7120:2 7146:1 7169:1 7170:1 7215:1 7236:1 7262:1 7307:2 7328:1 7333:1 7344:1 7345:2 7353:1 7361:2 7391:1 7392:1 7396:1 7399:1 7401:1 7406:2 7430:1 7432:1 7433:1 7439:1 7456:1 7457:1 7489:2 7566:1 7567:1 7580:3 7615:3 7628:1 7634:1 7657:1 7688:1 7713:1 7717:2 7757:1 7763:1 7781:1 7799:6 7801:1 7813:1 7826:1 7862:2 7900:1 7937:1 7940:1 7941:1 7951:1 7971:2 8000:1 8013:1 8019:1 8025:1 8051:1 8063:1 8069:1 8088:1 8122:3 8124:1 8128:3 8142:1 8144:1 8154:1 8172:1 8192:1 8201:1 8207:2 8214:1 8231:1 8241:1 8245:1 8250:1 8264:1 8276:1 8283:2 8285:1 8290:1 8304:1 8342:1 8349:1 8376:1 8377:3 8383:1 8391:8 8400:1 8410:1 8414:1 8416:4 8417:1 8443:1 8448:1 8457:24 8487:4 8490:11 8502:1 8537:1 8541:2 8554:2 8558:1 8568:1 8639:1 8699:1 8721:1 8765:1 8787:3 8797:3 8803:1 8816:1 8896:1 8903:1 8907:1 8929:1 8940:9 8947:2 8950:1 8958:1 8983:1 9005:1 9019:22 9045:1 9072:1 9075:1 9089:1 9102:1 9164:1 9175:1 9205:1 9222:1 9226:1 9249:1 9258:2 9276:1 9279:1 9285:3 9294:1 9296:1 9323:1 9343:1 9348:1 9383:2 9391:1 9393:3 9398:1 9399:4 9401:1 9402:1 9408:2 9413:3 9423:1 9425:1 9428:2 9455:1 9490:2 9493:2 9495:1 9518:1 9554:1 9559:1 9590:1 9643:1 9658:1 9682:1 9698:1 9707:2 9724:1 9736:3 9751:1 9763:1 9767:1 9769:1 9772:3 9798:1 9816:1 9850:1 9851:1 9864:1 9869:1 9876:1 9885:1 9895:1 9928:1 9931:2 9936:6 9940:4 9944:1 9960:3 9974:1 9978:1 10018:1 10028:1 10037:1 10054:1 10061:1 10086:1 10093:1 10114:1 10121:1 10178:1 10190:2 10193:1 10207:1 10212:1 10214:1 10215:1 10222:1 10237:1 10297:1 10313:1 10334:1 10354:2 10363:1 10386:1 10393:2 10394:1 10405:1 10411:1 10423:1 10431:4 10449:1 10457:1 10458:1 10461:2 10474:3 10534:1 10547:3 10559:1 10563:3 10568:6 10583:3 10603:1 10649:1 10651:1 10663:2 10667:1 10678:2 10700:9 10709:1 10714:1 10715:1 10732:1 10740:1 10743:1 10749:1 10762:1 10764:1 10775:2 10781:1 10856:2 10864:1 10871:3 10872:1 10878:2 10895:1 10925:2 10927:1 10929:2 10944:2 10962:1 10966:1 10972:1 10978:1 10986:2 11071:2 11080:1 11082:1 11112:1 11116:1 11124:1 11140:1 11218:2 11228:1 11277:1 11284:1 11285:1 11292:2 11335:1 11351:2 11416:4 11418:2 11425:1 11448:1 11493:2 11497:1 11514:1 11523:1 11536:1 11548:3 11556:1 11587:2 11599:1 11606:3 11608:1 11612:1 11615:1 11620:1 11625:1 11626:1 11629:1 11630:2 11641:1 11642:1 11671:1 11673:1 11690:1 11714:3 11723:1 11728:1 11734:1 11736:1 11738:1 11744:4 11746:6 11785:1 11803:2 11818:1 11822:1 11829:1 11835:4 11849:3 11877:1 11913:1 11926:1 11937:1 11958:4 11961:2 11964:1 11968:1 12015:1 12024:2 12053:1 12063:1 12070:2 12094:1 12101:1 12103:1 12105:1 12124:1 12126:1 12160:6 12166:2 12192:1 12197:1 12221:1 12243:1 12256:1 12268:3 12273:2 12308:1 12309:1 12323:1 12334:1 12338:1 12339:1 12347:1 12359:1 12377:1 12406:1 12422:1 12441:2 12445:6 12492:1 12512:2 12521:2 12524:2 12542:1 12545:3 12546:1 12584:1 12589:1 12590:1 12621:1 12640:1 12646:2 12669:1 12675:1 12682:5 12684:1 12688:1 12706:1 12707:1 12721:2 12727:1 12739:1 12740:1 12743:1 12746:1 12750:1 12753:1 12758:1 12769:2 12772:1 12798:1 12821:1 12822:1 12823:5 12839:2 12848:8 12896:1 12909:1 12917:1 12920:11 12966:1 12999:1 13015:1 13025:1 13035:1 13042:2 13055:4 13093:1 13121:3 13143:1 13160:1 13178:3 13202:2 13215:1 13216:2 13226:2 13227:2 13231:1 13242:1 13247:3 13250:3 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13364:2 13392:1 13455:1 13470:1 13519:1 13539:3 13620:1 13656:2 13693:1 13732:1 13751:1 13813:8 13816:1 13839:1 13845:1 13858:1 13879:1 13899:11 13906:1 13926:1 13933:2 13960:2 13984:2 14023:1 14024:1 14101:1 14104:1 14113:1 14119:1 14121:4 14178:1 14230:2 14235:1 14257:4 14269:1 14272:1 14274:3 14280:2 14296:2 14303:8 14305:1 14307:1 14341:1 14345:1 14352:1 14371:1 14399:2 14400:1 14431:1 14445:1 14446:8 14455:1 14464:1 14468:14 14512:1 14553:1 14567:3 14590:1 14618:1 14632:2 14655:1 14662:1 14680:1 14704:1 14709:2 14714:1 14719:1 14744:1 14790:1 14800:1 14864:1 14866:1 14868:1 14871:5 14872:1 14879:1 14897:2 14913:1 14931:1 14941:1 14983:10 14995:1 14996:2 15036:1 15037:2 15038:1 15067:2 15078:1 15091:1 15092:1 15094:1 15096:2 15104:1 15117:1 15171:5 15174:2 15196:2 15223:1 15236:1 15237:1 15297:1 15305:1 15308:2 15322:1 15344:2 15387:1 15446:2 15448:1 15455:1 15464:1 15465:1 15472:1 15474:1 15519:1 15522:1 15552:1 15561:1 15572:1 15593:1 15597:1 15600:2 15604:1 15605:1 15615:1 15623:1 15647:1 15648:1 15654:2 15680:1 15698:1 15699:1 15702:4 15740:4 15762:1 15781:1 15804:1 15807:1 15815:1 15821:3 15835:2 15848:2 15849:1 15860:1 15872:1 15873:1 15892:2 15903:1 15910:1 15926:2 15937:1 15941:1 15942:1 15954:1 15961:1 15971:1 15991:1 16019:1 16035:1 16048:1 16052:1 16112:1 16126:1 16149:1 16151:3 16156:1 16166:2 16178:1 16193:3 16198:1 16239:1 16243:1 16268:1 16272:1 16298:4 16304:1 16305:1 16319:1 16351:1 16355:1 16358:2 16396:1 16408:1 16410:1 16430:1 16437:1 16506:3 16515:1 16521:1 16545:3 16547:1 16549:1 16553:1 16588:1 16621:1 16629:1 16685:1 16711:1 16720:1 16723:1 16747:1 16762:1 16768:1 16771:27 16808:1 16811:1 16822:1 16865:1 16870:1 16876:1 16901:1 16914:2 16919:1 16950:1 17030:3 17036:1 17039:2 17040:1 17041:2 17046:1 17047:1 17053:1 17059:1 17065:1 17066:1 17071:3 17072:1 17079:1 17087:1 17125:2 17127:1 17184:1 17185:1 17215:5 17216:5 17236:1 17243:1 17270:1 17319:1 17321:2 17335:1 17348:1 17360:2 17377:1 17382:1 17398:1 17421:1 17446:1 17469:2 17473:2 17478:1 17507:4 17514:1 17521:1 17549:1 17557:1 17559:1 17562:1 17570:1 17571:4 17593:1 17602:1 17609:1 17625:1 17632:1 17633:2 17637:1 17638:1 17639:1 17641:2 17643:1 17646:2 17647:1 17651:1 17653:1 17656:3 17658:1 17660:1 17662:5 17666:1 17678:1 17690:1 17695:3 17717:1 17731:1 17864:1 17902:1 17932:1 17937:1 17987:1 18039:2 18068:1 18099:1 18102:1 18107:1 18115:1 18122:1 18123:1 18130:2 18141:1 18192:1 18199:1 18202:2 18212:1 18225:2 18228:5 18238:2 18243:1 18260:1 18266:1 18277:2 18310:1 18326:2 18328:1 18343:3 18347:1 18352:9 18355:2 18409:2 18412:1 18418:1 18420:2 18429:2 18430:2 18454:2 18465:2 18488:2 18492:1 18494:2 18498:1 18531:1 18533:1 18537:1 18566:1 18569:1 18574:1 18575:1 18583:1 18587:1 18589:1 18594:1 18596:1 18597:1 18608:1 18620:1 18623:1 18650:1 18684:1 18694:1 18696:1 18709:1 18727:2 18732:1 18738:1 18750:3 18752:1 18765:2 18802:1 18810:1 18817:1 18823:1 18867:1 18872:1 18873:1 18906:1 18913:1 18918:1 18972:1 18975:1 18978:1 18997:1 19000:1 19001:1 19043:1 19044:2 19068:2 19078:2 19084:1 19087:1 19122:1 19130:1 19133:1 19137:1 19157:1 19164:2 19183:1 19194:1 19205:1 19207:1 19212:1 19214:1 19222:1 19235:1 19249:6 19271:1 19286:1 19287:1 19292:3 19294:1 19319:1 19324:2 19351:3 19353:1 19357:2 19369:1 19371:1 19391:1 19408:1 19418:1 19428:1 19429:1 19437:1 19441:1 19443:4 19449:2 19450:1 19454:1 19463:1 19480:1 19486:1 19494:1 19496:1 19498:1 19518:8 19530:1 19549:2 19551:2 19583:1 19595:1 19596:1 19601:1 19642:1 19665:1 19698:1 19709:1 19711:1 19716:1 19720:1 19722:1 19756:1 19762:1 19774:1 19781:1 19787:1 19792:2 19824:1 19827:1 19837:1 19852:2 19862:1 19946:3 19951:1 19981:5 19990:1 19992:2 19994:1 20000:1 20059:1 20061:1 20067:1 20068:1 20105:1 20190:1 20196:1849 20200:2 20218:3 20229:1 20232:1 20249:1 20284:1 20289:1 20304:1 20328:1 20339:1 20341:1 20347:2 20353:1 20386:1 20422:1 20423:1 20436:4 20444:1 20449:3 20451:2 20453:1 20463:2 20482:1 20510:1 20524:1 20530:2 20673:1 20696:3 20712:1 20757:1 20761:2 20781:1 20819:1 20832:2 20839:1 20850:1 20858:1 20897:1 20914:1 20917:1 20954:1 20955:2 20978:3 21004:4 21015:1 21027:1 21041:2 21042:1 21056:1 21060:1 21066:1 21067:1 21105:1 21106:4 21119:1 21127:2 21129:1 21130:1 21136:1 21158:1 21167:8 21173:1 21218:1 21229:1 21262:1 21267:1 21318:1 21323:1 21360:1 21363:1 21374:1 21404:1 21406:1 21429:1 21434:2 21456:1 21465:1 21472:1 21475:1 21491:2 21492:3 21500:4 21506:1 21541:1 21542:1 21548:1 21560:1 21567:1 21590:1 21603:2 21623:1 21626:1 21634:1 21658:1 21679:1 21680:1 21705:1 21721:1 21742:1 21755:1 21763:7 21769:1 21773:1 21799:1 21806:1 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:4 21867:2 21873:1 21894:1 21904:1 21915:2 21920:1 21937:7 21944:3 21971:1 21990:1 21991:1 22002:1 22025:2 22056:1 22068:1 22098:1 22109:1 22112:1 22115:1 22162:1 22184:3 22194:2 22195:1 22204:1 22225:1 22228:5 22230:4 22240:1 22242:2 22285:1 22302:1 22306:1 22311:1 22319:1 22348:1 22351:1 22353:1 22384:1 22393:1 22422:1 22434:1 22460:1 22479:1 22482:1 22485:1 22502:1 22507:1 22521:1 22526:1 22528:1 22550:1 22554:1 22564:1 22581:1 22590:3 22614:1 22626:1 22632:1 22639:2 22643:2 22657:1 22666:1 22719:1 22734:3 22739:1 22786:1 22796:10 22803:2 22809:2 22813:1 22822:4 22853:1 22861:1 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22901:1 22918:1 22928:1 22941:1 22951:1 22960:2 22972:1 22991:1 23005:1 23017:1 23063:1 23092:3 23119:2 23131:1 23136:3 23141:1 23146:2 23185:1 23219:1 23228:1 23234:1 23249:1 23258:3 23260:1 23261:1 23264:1 23274:1 23275:1 23307:1 23322:1 23342:2 23349:1 23360:1 23377:1 23389:1 23396:2 23420:2 23436:2 23438:2 23442:2 23491:1 23500:2 23515:2 23531:1 23551:1 23552:2 23557:1 23558:1 23613:1 23615:1 23617:1 23652:1 23664:1 23676:1 23686:3 23687:3 23689:3 23696:1 23697:1 23700:1 23715:1 23718:2 23732:1 23746:1 23749:1 23765:1 23775:1 23796:1 23826:2 23862:1 23872:1 23885:1 23893:1 23901:2 23905:2 23916:3 23935:1 23953:1 23977:1 23983:1 23994:2 24042:1 24053:1 24068:1 24070:1 24079:2 24087:1 24088:4 24093:1 24095:1 24126:1 24132:1 24157:1 24161:2 24166:2 24173:1 24182:1 24218:1 24233:1 24244:1 24245:1 24261:1 24272:1 24287:1 24294:1 24298:1 24311:2 24327:1 24357:2 24361:1 24363:2 24375:3 24379:1 24414:1 24425:1 24451:1 24452:1 24488:1 24503:1 24506:1 24534:3 24539:1 24548:1 24563:1 24566:1 24584:1 24594:1 24599:2 24610:2 24611:1 24612:2 24616:1 24617:1 24619:1 24625:1 24633:1 24638:1 24640:1 24652:3 24655:1 24664:1 24672:3 24714:2 24718:2 24725:1 24727:2 24731:1 24761:1 24778:1 24786:1 24794:1 24819:3 24846:1 24865:4 24883:1 24913:2 24916:1 24957:2 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25079:1 25080:1 25140:1 25152:1 25166:1 25171:1 25188:1 25193:3 25203:1 25210:1 25247:1 25266:1 25274:1 25276:3 25280:1 25298:3 25305:1 25308:1 25346:1 25351:1 25359:1 25364:1 25372:1 25373:1 25394:1 25395:1 25417:1 25421:1 25431:1 25438:1 25441:1 25465:4 25469:1 25490:1 25498:1 25534:3 25559:1 25560:2 25566:1 25593:1 25606:1 25648:2 25649:1 25665:1 25691:1 25705:1 25779:2 25802:1 25817:3 25865:1 25909:1 25910:8 25996:1 26016:2 26050:1 26064:1 26071:1 26084:1 26111:2 26136:1 26142:1 26151:3 26160:1 26170:2 26172:7 26174:1 26177:1 26197:1 26201:1 26202:1 26215:1 26219:1 26221:2 26236:1 26245:1 26248:1 26270:1 26334:1 26386:1 26397:1 26398:1 26399:1 26405:1 26406:1 26408:1 26409:1 26413:1 26427:1 26470:1 26483:3 26485:1 26487:2 26489:1 26490:2 26496:1 26497:1 26510:1 26518:4 26535:5 26536:1 26552:1 26575:1 26576:1 26597:1 26603:1 26607:1 26608:1 26626:1 26631:2 26638:1 26645:2 26654:2 26657:1 26678:1 26719:1 26750:1 26754:1 26793:1 26799:2 26836:1 26847:1 26861:2 26870:1 26916:6 26958:1 26967:1 26968:1 26986:1 26991:6 26999:1 27000:1 27002:1 27005:1 27019:1 27043:2 27044:1 27213:1 27242:2 27244:5 27265:1 27276:1 27277:1 27290:2 27296:1 27297:1 27305:2 27353:1 27360:1 27384:1 27471:1 27472:1 27482:1 27507:1 27509:1 27510:1 27512:1 27518:1 27534:1 27544:1 27584:1 27586:1 27599:1 27600:1 27614:1 27646:1 27673:1 27693:1 27734:1 27750:1 27770:1 27801:4 27802:1 27804:5 27814:1 27869:1 27910:2 27952:3 27956:1 27957:1 27976:1 27999:1 28013:1 28018:1 28073:1 28076:2 28091:1 28105:1 28112:1 28119:1 28131:3 28150:1 28152:1 28154:1 28159:3 28166:1 28180:1 28192:1 28208:1 28215:1 28219:1 28222:4 28235:1 28245:1 28291:1 28308:4 28309:1 28326:2 28349:1 28391:3 28403:1 28405:1 28429:2 28462:1 28484:1 28495:1 28507:1 28511:1 28516:1 28517:1 28533:1 28554:1 28578:1 28581:2 28589:1 28600:1 28602:1 28607:1 28611:1 28619:2 28623:3 28624:1 28644:2 28664:2 28675:1 28678:1 28680:1 28687:1 28703:3 28747:2 28756:2 28767:1 28782:1 28855:1 28867:1 28874:1 28912:1 28916:1 29013:1 29104:1 29109:1 29117:1 29142:1 29150:1 29209:1 29243:1 29268:1 29274:1 29288:1 29292:3 29314:1 29315:2 29319:1 29325:1 29340:1 29342:1 29355:1 29372:3 29390:1 29391:1 29400:1 29403:1 29411:4 29468:1 29479:1 29482:4 29486:1 29509:1 29520:1 29550:1 29576:4 29587:2 29596:1 29599:1 29601:2 29615:1 29627:1 29637:1 29658:2 29667:1 29668:1 29684:2 29686:2 29689:1 29696:1 29697:1 29699:1 29706:1 29714:1 29718:1 29760:1 29789:2 29794:1 29795:1 29816:3 29828:1 29833:1 29848:1 29852:1 29862:1 29867:1 29916:1 29918:1 29932:1 29934:2 29938:1 29956:4 29971:1 29979:1 29991:2 30031:2 30041:1 30044:1 30045:6 30064:2 30067:1 30097:1 30149:1 30188:1 30240:3 30282:1 30289:1 30319:3 30331:2 30336:1 30368:1 30372:1 30390:4 30392:1 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30479:17 30480:1 30502:1 30530:1 30537:10 30550:2 30581:1 30602:1 30623:1 30630:2 30655:1 30661:1 30670:3 30675:3 30711:7 30713:1 30747:1 30764:2 30768:1 30805:2 30809:1 30810:1 30815:1 30820:1 30846:2 30876:1 30882:2 30888:1 30903:1 30933:1 30956:1 30996:1 31026:1 31041:3 31043:3 31115:1 31118:1 31121:1 31125:2 31132:1 31143:1 31253:4 31267:1 31268:1 31272:10 31288:1 31291:1 31306:1 31309:1 31310:2 31316:1 31337:1 31342:1 31362:1 31369:1 31380:1 31413:1 31437:1 31444:1 31458:1 31465:1 31477:1 31495:1 31496:1 31506:3 31514:2 31550:1 31652:1 31659:1 31666:1 31667:1 31679:1 31681:1 31689:1 31705:1 31713:2 31718:1 31742:1 31750:1 31756:1 31765:1 31780:1 31781:1 31785:1 31794:2 31801:1 31802:1 31803:2 31815:1 31823:1 31826:1 31851:1 31852:1 31866:1 31873:1 31882:1 31886:1 31890:3 31896:2 31898:3 31902:1 31905:1 31907:2 31911:1 31914:1 31934:1 31958:1 31962:3 31965:1 31977:1 31978:1 31998:1 32007:1
20 9:1 18:1 21:1 23:1 26:2 30:1 61:1 75:1 78:1 90:2 95:1 103:1 111:1 120:1 123:1 158:1 169:1 181:1 184:1 193:1 197:1 211:1 253:3 261:2 274:2 278:1 290:3 292:1 331:1 355:2 358:1 404:1 406:2 421:1 448:1 482:1 489:3 536:1 596:1 602:1 622:1 623:3 635:1 652:2 664:2 696:2 701:1 704:3 770:1 822:1 913:1 956:2 959:1 971:2 977:1 990:1 995:1 996:3 1000:1 1011:1 1025:1 1034:3 1057:1 1063:3 1064:1 1067:5 1069:4 1079:1 1095:1 1098:1 1108:4 1135:3 1136:3 1143:2 1149:1 1158:1 1167:1 1198:1 1200:2 1205:1 1226:1 1255:1 1281:1 1292:3 1305:4 1339:1 1341:1 1350:1 1368:1 1371:1 1380:1 1389:1 1402:1 1406:1 1407:1 1420:1 1426:1 1427:1 1430:1 1446:1 1491:1 1511:1 1533:1 1563:1 1576:1 1582:2 1594:2 1599:1 1608:1 1610:1 1630:1 1631:1 1633:3 1651:3 1662:1 1668:1 1670:1 1671:1 1678:1 1691:3 1719:13 1722:2 1725:7 1729:1 1737:2 1741:1 1746:1 1756:1 1757:2 1759:2 1778:1 1799:1 1800:1 1805:1 1811:9 1827:1 1829:1 1840:1 1855:1 1863:1 1876:1 1877:1 1903:2 1945:1 1967:1 1968:5 1973:2 1976:1 1987:2 1994:1 2026:1 2035:2 2064:1 2070:1 2088:1 2105:2 2113:3 2116:2 2127:1 2138:2 2145:1 2161:1 2163:1 2166:1 2210:1 2229:1 2245:4 2260:1 2264:1 2284:1 2285:3 2291:1 2295:1 2296:1 2301:1 2341:1 2354:5 2357:1 2379:1 2389:1 2395:2 2397:2 2403:1 2433:2 2435:8 2438:4 2442:1 2443:1 2450:1 2451:2 2452:3 2454:2 2455:1 2458:1 2469:1 2472:2 2475:2 2500:1 2507:2 2509:1 2512:1 2514:4 2517:1 2520:1 2525:2 2530:1 2531:2 2533:1 2535:3 2539:2 2542:2 2544:2 2546:1 2549:2 2552:1 2554:2 2557:1 2574:1 2576:1 2579:1 2582:1 2629:1 2645:1 2658:1 2673:1 2676:1 2677:1 2718:1 2723:1 2741:1 2762:1 2767:1 2772:1 2773:1 2795:1 2801:1 2831:1 2833:1 2839:1 2853:1 2869:1 2870:1 2875:1 2898:1 2902:1 2914:1 2923:1 2948:1 2961:1 2963:2 2965:1 2970:2 2975:1 2977:1 3012:2 3015:1 3021:1 3029:1 3037:1 3050:1 3056:1 3063:1 3084:1 3087:2 3120:1 3128:1 3159:3 3168:9 3169:2 3171:2 3181:1 3184:2 3185:3 3195:1 3204:1 3214:9 3250:1 3320:1 3347:2 3354:1 3422:3 3453:1 3463:1 3501:1 3507:1 3537:1 3553:1 3597:1 3598:1 3607:1 3615:1 3625:3 3660:3 3695:3 3706:1 3711:1 3712:1 3719:1 3723:1 3751:1 3752:1 3780:1 3825:1 3835:1 3885:2 3893:1 3901:1 3952:2 3966:2 3970:2 3977:1 4009:1 4013:1 4015:1 4024:1 4042:1 4056:1 4059:1 4063:1 4065:1 4070:1 4075:2 4118:2 4126:2 4127:2 4175:4 4176:1 4202:1 4207:1 4211:6 4213:1 4279:1 4296:1 4306:1 4317:6 4335:1 4345:2 4346:1 4366:1 4379:1 4391:1 4392:2 4395:1 4406:1 4414:2 4423:2 4425:1 4443:1 4454:1 4472:1 4482:1 4508:1 4535:1 4562:1 4587:1 4593:1 4626:1 4699:1 4702:1 4727:1 4730:1 4736:1 4768:1 4771:1 4776:1 4777:1 4780:1 4791:1 4794:1 4836:2 4838:1 4859:1 4860:1 4872:1 4917:1 4923:1 4958:1 4959:2 4993:1 4997:1 4999:1 5012:1 5027:1 5046:1 5055:1 5067:1 5078:2 5086:1 5106:4 5130:2 5131:1 5136:2 5186:1 5196:1 5215:1 5227:1 5245:1 5247:1 5283:1 5306:1 5332:12 5345:1 5349:1 5372:1 5444:3 5448:7 5466:3 5467:2 5470:1 5472:1 5475:1 5476:1 5480:1 5485:1 5487:1 5488:2 5490:3 5492:3 5495:1 5496:1 5508:1 5547:1 5607:1 5619:1 5662:1 5678:4 5683:1 5693:1 5706:1 5710:1 5715:1 5720:1 5745:3 5748:1 5775:1 5800:2 5825:1 5839:1 5864:3 5901:1 5916:1 5924:1 5929:1 5931:4 5962:1 5977:1 5998:1 6039:2 6049:1 6057:2 6077:1 6086:1 6089:1 6095:1 6101:2 6107:1 6117:1 6120:1 6127:1 6137:3 6158:3 6189:1 6225:2 6244:1 6249:1 6268:1 6279:1 6280:1 6312:1 6319:1 6321:1 6323:1 6326:2 6350:1 6351:1 6359:1 6362:1 6375:1 6379:1 6387:2 6394:3 6444:4 6445:2 6463:2 6467:2 6476:1 6477:2 6532:1 6542:1 6571:1 6584:1 6609:3 6612:1 6631:1 6652:2 6670:2 6674:1 6675:1 6702:1 6709:1 6711:1 6721:1 6727:2 6772:3 6779:1 6783:3 6829:1 6830:1 6841:1 6856:3 6858:1 6869:1 6874:1 6890:1 6898:2 6910:1 6932:2 6933:2 6937:1 6949:3 6950:1 6951:1 6959:2 6963:1 6966:1 6967:1 6971:3 6973:1 6977:2 6979:4 6980:2 6982:4 7034:1 7036:1 7077:4 7097:1 7105:4 7120:2 7146:1 7169:1 7170:1 7215:1 7236:1 7262:1 7307:2 7328:1 7333:1 7344:1 7345:2 7353:1 7361:2 7362:1 7368:1 7391:1 7392:1 7396:1 7399:1 7401:1 7406:2 7430:1 7432:1 7433:1 7439:1 7456:1 7457:1 7489:2 7566:1 7567:1 7580:3 7615:3 7628:1 7634:1 7657:1 7688:1 7713:1 7717:2 7757:1 7763:1 7781:1 7799:6 7801:1 7813:1 7824:1 7826:1 7862:2 7900:1 7937:1 7940:1 7941:1 7951:1 7971:2 8000:1 8013:1 8019:1 8025:1 8051:1 8063:1 8069:1 8088:1 8122:3 8124:1 8128:3 8142:1 8144:1 8154:1 8172:1 8192:1 8201:1 8207:2 8214:1 8231:1 8241:1 8245:1 8250:1 8264:1 8276:1 8283:2 8285:1 8290:1 8304:1 8342:1 8349:1 8376:1 8377:4 8383:1 8391:8 8400:1 8410:1 8414:1 8416:4 8417:1 8443:1 8448:1 8457:28 8487:5 8490:11 8502:1 8537:1 8541:2 8554:2 8558:1 8568:1 8629:1 8639:1 8699:1 8721:1 8765:1 8787:3 8797:3 8803:1 8816:1 8888:1 8896:1 8903:1 8907:1 8929:1 8940:9 8947:2 8950:1 8955:1 8958:1 8983:1 9005:1 9019:23 9045:1 9072:1 9075:1 9089:1 9102:1 9164:1 9175:1 9205:1 9222:1 9226:1 9249:1 9258:2 9276:1 9279:1 9285:3 9294:1 9296:1 9323:1 9329:1 9343:1 9348:1 9383:2 9391:1 9393:3 9398:1 9399:4 9401:1 9402:1 9408:2 9413:4 9423:1 9425:1 9428:2 9455:1 9490:2 9493:2 9495:1 9518:1 9554:1 9559:1 9590:1 9643:1 9658:1 9682:1 9698:1 9707:2 9724:1 9736:3 9751:1 9763:1 9767:1 9769:1 9772:3 9798:1 9816:1 9850:1 9851:1 9864:1 9869:1 9876:1 9885:1 9895:1 9928:1 9931:2 9936:6 9940:4 9944:1 9960:3 9974:1 9978:1 10018:1 10028:1 10037:1 10054:1 10061:1 10086:1 10093:1 10114:1 10121:1 10178:1 10190:3 10193:1 10207:1 10212:1 10214:1 10215:1 10222:1 10237:1 10297:1 10313:1 10334:1 10354:2 10363:1 10381:1 10386:1 10393:2 10394:1 10405:1 10411:1 10423:1 10431:4 10449:1 10457:1 10458:1 10461:2 10474:3 10504:1 10534:1 10547:3 10559:1 10563:3 10568:6 10583:3 10603:1 10649:1 10651:1 10663:2 10667:1 10678:2 10700:9 10709:1 10714:1 10715:1 10732:1 10740:1 10743:1 10749:1 10762:1 10764:1 10775:2 10781:1 10856:2 10864:1 10871:3 10872:1 10878:2 10895:1 10925:2 10927:1 10929:2 10944:2 10962:1 10966:1 10972:1 10978:1 10986:2 11071:2 11080:1 11082:1 11112:1 11116:1 11124:1 11140:1 11187:2 11218:2 11228:1 11277:1 11284:1 11285:1 11292:2 11335:1 11351:3 11416:4 11418:2 11425:1 11448:1 11493:2 11497:1 11514:1 11521:1 11523:1 11536:1 11548:3 11556:1 11587:2 11599:1 11606:3 11608:1 11612:1 11615:1 11620:1 11625:1 11626:1 11629:1 11630:2 11641:1 11642:1 11671:1 11673:1 11690:1 11714:3 11723:1 11728:1 11734:1 11736:1 11738:1 11744:4 11746:7 11785:1 11803:2 11818:1 11822:1 11829:1 11835:4 11845:1 11849:3 11877:1 11913:1 11926:1 11937:1 11958:4 11961:2 11964:1 11968:1 12015:1 12024:3 12053:1 12063:1 12070:2 12094:1 12101:1 12103:1 12105:1 12124:1 12126:1 12160:6 12166:2 12192:1 12197:1 12221:1 12243:1 12256:1 12268:3 12273:2 12308:1 12309:1 12323:1 12334:1 12338:1 12339:1 12347:1 12359:1 12377:1 12406:1 12422:1 12441:2 12445:7 12492:1 12512:2 12521:2 12524:2 12525:1 12542:1 12545:3 12546:1 12584:1 12589:1 12590:1 12621:1 12640:1 12646:2 12669:1 12675:1 12682:5 12684:1 12688:1 12706:1 12707:1 12721:2 12727:1 12739:1 12740:1 12743:1 12746:1 12750:1 12753:1 12758:1 12769:2 12772:1 12798:1 12821:1 12822:1 12823:5 12839:3 12848:8 12896:1 12909:1 12917:1 12920:11 12966:1 12999:1 13015:1 13025:1 13035:1 13042:2 13055:4 13093:1 13121:3 13143:1 13160:1 13178:3 13202:2 13215:1 13216:2 13226:2 13227:2 13231:1 13242:1 13247:3 13250:3 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13352:1 13364:2 13386:1 13392:1 13455:1 13470:1 13519:1 13539:3 13568:1 13620:1 13656:2 13693:1 13732:1 13751:1 13809:1 13813:8 13816:1 13827:1 13839:1 13845:1 13858:1 13879:1 13899:11 13906:1 13926:1 13933:2 13960:2 13984:2 14023:1 14024:1 14101:1 14104:1 14113:1 14119:1 14121:4 14138:1 14178:1 14230:2 14235:1 14257:4 14269:1 14272:1 14274:3 14280:2 14296:2 14303:8 14305:1 14307:1 14341:1 14345:1 14352:1 14371:2 14399:2 14400:1 14431:1 14445:1 14446:8 14455:1 14464:1 14468:14 14512:1 14553:1 14567:3 14590:1 14618:2 14632:2 14655:1 14662:1 14680:1 14692:1 14704:1 14709:2 14714:2 14719:1 14744:1 14749:1 14790:1 14800:1 14864:1 14866:1 14868:1 14871:5 14872:1 14879:1 14897:2 14913:1 14931:1 14941:1 14947:1 14983:10 14995:1 14996:2 15036:1 15037:2 15038:1 15067:2 15078:1 15091:2 15092:1 15094:1 15096:2 15104:1 15117:1 15171:5 15174:2 15196:2 15223:1 15236:1 15237:2 15297:1 15305:1 15308:2 15322:1 15344:2 15387:1 15401:1 15446:2 15448:1 15455:1 15464:1 15465:1 15472:1 15474:1 15519:1 15522:1 15552:1 15561:1 15572:1 15593:1 15597:1 15600:2 15604:1 15605:1 15615:1 15623:1 15647:1 15648:1 15654:2 15680:1 15698:1 15699:1 15702:4 15740:4 15762:1 15781:1 15804:1 15807:1 15815:1 15821:3 15830:1 15835:2 15848:2 15849:1 15860:1 15872:1 15873:1 15892:2 15903:1 15910:1 15926:2 15937:1 15941:1 15942:1 15954:1 15961:1 15971:1 15991:1 16019:1 16030:1 16035:1 16048:1 16052:1 16112:1 16126:1 16149:1 16151:3 16156:1 16166:2 16178:1 16193:3 16198:1 16239:1 16243:1 16268:1 16272:1 16298:4 16304:1 16305:1 16319:1 16351:1 16355:1 16358:2 16396:1 16408:1 16410:1 16430:1 16437:1 16506:3 16515:1 16521:1 16545:3 16547:1 16549:1 16553:1 16588:1 16621:1 16629:1 16685:1 16711:1 16720:1 16723:1 16747:1 16762:1 16768:1 16771:28 16808:1 16811:1 16822:1 16865:1 16870:1 16876:1 16901:1 16914:2 16919:1 16950:1 16999:1 17029:1 17030:3 17036:1 17039:2 17040:1 17041:2 17046:1 17047:1 17053:1 17059:1 17065:1 17066:1 17071:4 17072:1 17079:1 17087:1 17125:2 17127:1 17184:1 17185:1 17215:5 17216:5 17236:1 17243:1 17270:1 17319:1 17321:2 17335:1 17348:1 17360:2 17377:1 17382:1 17398:1 17421:1 17446:1 17469:2 17473:2 17478:1 17507:4 17514:1 17521:1 17549:1 17557:1 17559:1 17562:1 17570:1 17571:4 17593:1 17602:2 17609:1 17622:1 17625:1 17632:1 17633:2 17637:1 17638:1 17639:1 17641:2 17643:1 17646:3 17647:1 17651:1 17653:1 17656:3 17658:1 17660:1 17662:5 17666:1 17678:1 17690:1 17695:3 17717:1 17731:1 17784:1 17864:1 17902:1 17932:1 17937:1 17987:1 18039:2 18068:1 18099:1 18102:1 18107:1 18115:2 18122:1 18123:1 18130:2 18141:1 18192:1 18199:1 18202:2 18212:1 18225:2 18228:5 18238:2 18243:1 18260:1 18266:1 18277:2 18310:1 18326:2 18328:1 18343:3 18347:1 18352:9 18355:2 18409:2 18412:1 18418:1 18420:2 18429:2 18430:3 18454:2 18465:2 18488:2 18492:1 18494:2 18498:1 18521:1 18531:1 18533:1 18537:1 18566:1 18569:1 18574:1 18575:1 18583:1 18587:1 18589:1 18594:1 18596:1 18597:1 18608:1 18620:1 18623:1 18650:1 18684:1 18694:1 18696:1 18709:1 18727:2 18732:1 18738:1 18750:3 18752:1 18765:2 18802:1 18810:1 18817:1 18823:1 18867:1 18872:1 18873:1 18906:1 18913:1 18918:2 18972:1 18975:1 18978:1 18997:1 19000:1 19001:1 19043:1 19044:2 19068:2 19078:2 19084:1 19087:1 19122:1 19130:1 19133:1 19137:1 19157:1 19164:2 19183:1 19194:1 19205:1 19207:1 19212:1 19214:1 19222:1 19235:1 19249:6 19271:1 19286:1 19287:1 19292:3 19294:1 19319:1 19324:2 19351:3 19353:1 19357:2 19369:1 19371:1 19391:1 19408:1 19418:1 19428:1 19429:1 19437:1 19441:1 19443:4 19449:3 19450:1 19454:1 19463:1 19480:1 19486:1 19494:1 19496:1 19498:1 19518:8 19530:1 19549:2 19551:2 19583:1 19595:1 19596:1 19601:1 19642:1 19665:1 19698:1 19709:1 19711:1 19716:1 19720:1 19722:1 19756:1 19762:1 19774:1 19781:1 19787:1 19792:2 19824:1 19827:1 19837:1 19852:2 19862:1 19946:3 19951:1 19981:6 19990:1 19992:2 19994:1 20000:1 20059:1 20061:1 20067:1 20068:1 20105:1 20190:1 20196:1915 20200:2 20218:3 20229:1 20232:1 20249:1 20252:1 20284:1 20289:1 20304:1 20328:1 20339:1 20341:1 20347:2 20353:1 20386:1 20398:1 20422:1 20423:1 20436:4 20444:1 20449:3 20451:2 20453:1 20463:2 20482:1 20510:1 20524:1 20530:2 20555:1 20673:1 20696:3 20712:1 20757:1 20761:2 20781:1 20819:1 20832:2 20839:1 20850:1 20858:1 20897:1 20914:1 20917:1 20954:1 20955:2 20978:3 21004:4 21015:1 21027:2 21041:2 21042:1 21056:1 21060:1 21066:1 21067:1 21105:1 21106:4 21119:1 21127:2 21129:1 21130:1 21136:1 21158:1 21167:8 21173:1 21192:1 21218:1 21229:1 21262:1 21267:1 21318:1 21323:1 21360:1 21363:1 21374:1 21404:1 21406:1 21429:1 21434:2 21456:1 21465:1 21472:1 21475:1 21491:2 21492:3 21500:4 21506:1 21541:1 21542:1 21548:2 21560:1 21567:1 21590:1 21603:2 21623:1 21626:1 21634:1 21658:1 21679:1 21680:1 21705:1 21721:1 21742:1 21755:1 21763:7 21769:1 21773:1 21799:1 21806:1 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:4 21867:2 21873:2 21894:1 21904:1 21915:2 21920:1 21937:7 21944:3 21971:1 21990:1 21991:1 22002:1 22025:2 22056:1 22068:1 22098:1 22109:1 22112:1 22115:1 22162:1 22184:3 22194:2 22195:1 22204:1 22225:1 22228:5 22230:4 22240:1 22242:2 22285:1 22302:1 22306:1 22311:1 22319:1 22348:2 22351:1 22353:1 22384:1 22393:1 22422:1 22434:1 22460:1 22461:1 22479:1 22482:1 22485:1 22502:1 22507:1 22521:1 22526:1 22528:1 22550:1 22554:1 22564:1 22581:1 22590:4 22614:1 22626:1 22632:1 22639:2 22643:2 22657:1 22666:1 22719:1 22734:3 22739:1 22786:1 22796:10 22803:2 22809:2 22813:1 22822:4 22853:1 22861:1 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22901:1 22918:1 22928:1 22941:1 22951:1 22960:2 22972:1 22991:1 23005:1 23017:1 23063:1 23092:3 23119:2 23131:1 23136:3 23141:1 23146:2 23149:1 23185:1 23219:1 23228:1 23229:1 23234:1 23249:1 23258:3 23260:1 23261:1 23264:1 23274:1 23275:1 23307:1 23322:1 23334:1 23342:2 23349:1 23360:1 23377:1 23389:1 23396:2 23420:2 23436:2 23438:2 23442:2 23491:1 23500:2 23515:2 23531:1 23551:1 23552:2 23557:1 23558:1 23613:1 23615:1 23617:1 23652:1 23664:1 23676:1 23686:3 23687:3 23689:3 23696:1 23697:1 23700:1 23715:1 23718:2 23722:1 23732:2 23746:1 23749:1 23765:2 23775:1 23796:1 23826:2 23862:1 23863:1 23872:1 23885:1 23893:1 23901:3 23905:2 23916:3 23935:1 23953:1 23977:1 23983:1 23994:2 24042:1 24053:1 24068:1 24070:1 24079:2 24087:1 24088:4 24093:1 24095:1 24126:1 24132:1 24157:1 24161:2 24166:2 24172:1 24173:1 24182:1 24218:1 24233:1 24244:1 24245:1 24261:1 24272:1 24287:1 24294:1 24298:1 24311:2 24327:1 24343:1 24357:2 24361:1 24363:2 24375:3 24379:1 24414:1 24425:1 24451:1 24452:1 24488:1 24503:1 24506:1 24534:3 24539:1 24548:1 24563:1 24566:1 24584:1 24594:1 24599:2 24610:2 24611:1 24612:2 24616:1 24617:1 24619:1 24625:1 24633:1 24638:1 24640:1 24652:3 24655:1 24664:1 24672:3 24690:1 24714:2 24718:2 24725:1 24727:2 24731:1 24761:1 24778:1 24786:1 24794:1 24819:3 24846:1 24865:4 24883:1 24913:2 24916:1 24957:2 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25079:1 25080:1 25140:1 25152:1 25166:1 25171:1 25188:1 25193:3 25203:1 25204:1 25210:1 25247:1 25263:1 25266:1 25274:1 25276:3 25280:1 25298:3 25305:1 25308:1 25346:1 25351:1 25359:1 25364:1 25372:1 25373:2 25394:1 25395:1 25417:1 25421:1 25431:1 25438:1 25441:1 25465:4 25469:1 25490:1 25498:1 25534:3 25559:1 25560:2 25566:1 25593:1 25606:1 25648:2 25649:1 25665:1 25691:1 25705:1 25779:2 25802:1 25817:3 25865:1 25909:1 25910:8 25996:1 26016:2 26050:1 26064:1 26071:1 26084:1 26098:1 26111:2 26136:1 26142:1 26151:3 26160:1 26170:2 26172:7 26174:1 26177:1 26197:1 26201:1 26202:1 26215:1 26219:1 26221:2 26236:1 26245:1 26248:1 26270:1 26334:1 26386:1 26397:1 26398:1 26399:1 26405:1 26406:1 26408:1 26409:1 26413:1 26427:1 26470:1 26483:3 26485:1 26487:2 26489:1 26490:3 26496:1 26497:1 26510:1 26518:4 26535:5 26536:1 26552:1 26575:1 26576:1 26597:1 26603:1 26607:1 26608:1 26626:1 26631:2 26638:1 26645:2 26654:2 26657:1 26678:1 26684:1 26719:1 26750:1 26754:1 26793:1 26799:2 26836:1 26847:1 26861:2 26870:1 26916:6 26958:1 26967:1 26968:1 26986:1 26991:6 26999:1 27000:1 27002:1 27005:1 27019:1 27043:2 27044:1 27213:1 27242:2 27244:5 27265:2 27276:1 27277:1 27290:2 27296:1 27297:1 27305:2 27353:1 27360:1 27384:1 27471:1 27472:1 27482:1 27507:1 27509:1 27510:1 27512:1 27518:1 27534:1 27544:1 27584:1 27586:1 27599:1 27600:1 27614:1 27646:1 27673:1 27693:1 27734:1 27750:1 27770:1 27801:4 27802:1 27804:5 27814:1 27869:1 27910:2 27952:4 27956:1 27957:1 27976:1 27999:1 28013:1 28018:1 28073:1 28076:2 28091:1 28105:1 28112:1 28119:1 28131:3 28150:1 28152:1 28154:1 28159:3 28166:1 28180:1 28192:1 28208:1 28215:1 28219:1 28222:4 28235:1 28245:1 28291:1 28308:5 28309:1 28326:2 28349:1 28391:3 28403:1 28405:2 28429:2 28462:1 28484:1 28495:1 28507:1 28511:1 28516:1 28517:1 28533:1 28554:1 28578:1 28581:2 28589:1 28600:1 28602:1 28607:1 28611:1 28619:2 28623:3 28624:1 28644:2 28664:2 28675:1 28678:1 28680:1 28687:1 28703:3 28747:2 28756:2 28767:1 28782:1 28855:1 28867:1 28874:1 28912:1 28916:1 29013:1 29104:1 29109:1 29117:1 29142:1 29150:1 29209:1 29243:1 29268:1 29274:1 29288:1 29292:3 29314:1 29315:2 29319:1 29325:1 29340:1 29342:1 29355:1 29372:3 29390:1 29391:1 29400:1 29403:1 29411:4 29468:1 29479:1 29482:4 29486:1 29509:1 29520:1 29550:1 29576:4 29587:2 29596:1 29599:1 29601:2 29615:1 29627:1 29637:1 29658:2 29667:1 29668:1 29684:2 29686:2 29689:1 29696:1 29697:1 29699:1 29706:1 29714:1 29718:1 29760:1 29789:2 29794:1 29795:1 29816:3 29828:1 29833:1 29848:1 29852:1 29862:1 29867:1 29916:1 29918:1 29932:1 29934:2 29938:1 29956:4 29971:1 29979:1 29989:1 29991:2 30031:2 30041:1 30044:1 30045:6 30064:2 30067:1 30097:1 30149:1 30188:1 30240:3 30282:1 30289:1 30319:3 30331:2 30336:1 30368:1 30372:1 30390:4 30392:1 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30479:18 30480:1 30502:1 30530:1 30537:10 30546:1 30548:1 30550:2 30581:1 30602:1 30623:1 30630:2 30655:1 30661:1 30670:3 30675:3 30711:7 30713:1 30747:1 30764:2 30768:1 30805:2 30809:1 30810:1 30815:1 30820:1 30846:2 30876:1 30882:2 30888:1 30903:2 30933:1 30956:1 30996:1 31026:1 31041:4 31043:3 31115:1 31118:1 31121:1 31125:2 31132:1 31143:1 31231:1 31253:4 31267:1 31268:1 31272:10 31288:1 31291:1 31306:1 31309:1 31310:2 31316:1 31337:1 31342:1 31362:1 31369:1 31380:1 31413:1 31437:1 31444:1 31458:1 31465:1 31477:1 31495:1 31496:1 31506:3 31514:2 31550:1 31652:1 31659:1 31666:1 31667:1 31679:1 31681:1 31689:1 31705:1 31713:2 31718:1 31742:1 31750:1 31756:1 31765:1 31780:1 31781:1 31785:1 31794:2 31801:1 31802:1 31803:2 31815:1 31823:1 31826:1 31851:1 31852:1 31866:1 31873:1 31882:1 31886:1 31890:3 31896:2 31898:3 31902:1 31905:1 31907:2 31911:1 31914:1 31934:1 31958:1 31962:3 31965:1 31977:1 31978:1 31998:1 32007:1
20 9:1 18:1 21:1 23:1 26:2 30:1 46:1 61:1 75:1 78:1 90:5 95:1 103:1 111:1 120:1 123:1 158:1 169:1 181:1 184:1 193:1 197:1 211:1 253:3 261:2 274:2 278:1 290:3 292:1 331:1 355:2 358:1 404:1 406:2 421:1 448:1 482:1 489:3 536:1 540:1 596:1 602:1 622:1 623:3 635:1 652:2 664:2 696:2 701:1 704:3 770:1 822:1 892:1 913:1 956:2 959:1 971:2 977:1 990:1 995:1 996:3 1000:1 1011:1 1025:1 1034:3 1057:1 1063:3 1064:1 1067:5 1069:4 1079:1 1095:1 1098:1 1108:4 1135:3 1136:3 1143:2 1149:1 1158:1 1167:1 1198:1 1200:2 1205:1 1226:1 1255:1 1281:1 1292:3 1305:4 1339:1 1341:1 1350:1 1368:1 1371:1 1380:1 1389:1 1402:1 1406:1 1407:1 1420:1 1426:1 1427:1 1430:1 1446:1 1458:1 1491:1 1511:1 1533:1 1549:1 1563:1 1576:1 1582:2 1594:2 1599:1 1608:1 1610:1 1630:1 1631:1 1633:3 1641:1 1651:4 1662:1 1668:1 1670:1 1671:1 1678:1 1691:3 1719:13 1722:2 1725:7 1729:1 1737:2 1741:1 1746:1 1756:1 1757:2 1759:2 1778:1 1799:1 1800:1 1805:1 1811:9 1827:1 1829:1 1840:1 1855:1 1863:1 1876:1 1877:1 1903:2 1945:1 1967:1 1968:5 1973:2 1976:1 1987:2 1994:1 2026:1 2035:2 2064:1 2070:1 2086:1 2088:1 2105:2 2113:3 2116:2 2127:1 2138:2 2145:1 2161:1 2163:1 2166:1 2210:1 2229:1 2245:4 2260:1 2264:1 2284:1 2285:3 2291:1 2295:1 2296:1 2301:1 2341:1 2354:5 2357:1 2379:1 2389:1 2395:2 2397:2 2403:1 2433:2 2435:8 2438:5 2442:1 2443:1 2450:1 2451:2 2452:3 2454:2 2455:1 2458:1 2469:1 2472:2 2475:2 2500:1 2507:2 2509:1 2512:1 2514:4 2517:1 2520:1 2525:2 2530:1 2531:2 2533:1 2535:3 2539:2 2542:3 2544:2 2546:1 2549:2 2552:1 2554:2 2557:1 2574:1 2576:1 2579:1 2582:1 2616:1 2629:1 2645:1 2658:1 2673:1 2676:1 2677:1 2718:1 2723:1 2741:1 2762:1 2767:1 2772:1 2773:1 2795:1 2801:1 2831:1 2833:1 2839:1 2853:1 2869:1 2870:1 2875:1 2893:1 2898:1 2902:1 2914:1 2923:1 2937:1 2948:1 2961:1 2963:2 2965:1 2970:2 2975:1 2977:1 3012:2 3015:1 3021:1 3029:1 3037:1 3050:1 3056:1 3063:1 3084:1 3087:2 3105:1 3120:1 3128:1 3159:3 3168:9 3169:2 3171:2 3181:1 3184:2 3185:3 3195:1 3204:1 3214:9 3250:1 3320:1 3347:2 3354:1 3361:1 3422:3 3453:1 3463:1 3501:1 3507:1 3537:1 3553:1 3597:1 3598:1 3607:1 3615:1 3625:3 3660:3 3695:3 3706:1 3711:1 3712:1 3719:1 3723:1 3751:1 3752:1 3780:1 3825:1 3835:1 3840:1 3885:2 3893:1 3901:1 3944:1 3952:2 3966:2 3970:2 3977:1 4006:1 4009:1 4013:1 4015:1 4024:3 4042:1 4056:1 4059:1 4063:1 4065:1 4070:1 4075:2 4118:2 4126:2 4127:2 4175:4 4176:1 4202:1 4207:1 4211:6 4213:1 4264:1 4279:1 4296:1 4306:1 4317:6 4335:1 4345:2 4346:1 4366:1 4379:1 4391:1 4392:2 4395:1 4406:1 4414:2 4423:2 4425:1 4443:1 4454:1 4472:1 4482:1 4508:1 4535:1 4562:1 4587:1 4593:1 4626:1 4699:1 4702:1 4727:1 4730:1 4736:1 4768:1 4771:1 4776:1 4777:2 4780:1 4791:1 4794:1 4836:2 4838:1 4859:1 4860:1 4872:1 4917:1 4923:1 4958:1 4959:2 4993:1 4997:1 4999:1 5012:1 5027:1 5046:1 5055:1 5067:1 5078:2 5086:1 5106:4 5130:2 5131:1 5136:2 5186:1 5196:1 5215:1 5227:1 5245:1 5247:1 5283:1 5291:1 5306:1 5332:13 5345:1 5349:1 5372:1 5444:3 5448:7 5466:3 5467:2 5470:1 5472:1 5475:1 5476:1 5479:1 5480:1 5485:1 5487:1 5488:2 5490:3 5492:3 5495:1 5496:1 5508:2 5547:1 5577:1 5607:1 5619:1 5662:1 5678:4 5683:1 5693:1 5706:1 5710:1 5715:1 5720:1 5745:3 5748:1 5775:1 5800:2 5825:1 5839:1 5864:3 5901:1 5916:1 5924:1 5929:1 5931:4 5962:1 5977:1 5998:1 6038:1 6039:2 6049:1 6057:2 6077:1 6086:1 6089:1 6095:1 6101:2 6107:1 6117:1 6120:1 6127:1 6137:3 6158:3 6189:1 6225:2 6244:1 6249:1 6268:1 6279:1 6280:1 6312:1 6319:1 6321:1 6323:1 6326:2 6350:1 6351:1 6359:1 6362:1 6375:1 6379:1 6387:2 6394:3 6400:1 6444:4 6445:2 6463:2 6467:2 6476:1 6477:2 6532:1 6542:1 6571:1 6584:1 6609:3 6612:1 6631:1 6652:2 6670:2 6674:1 6675:1 6702:1 6709:1 6711:1 6721:1 6727:2 6772:3 6779:1 6783:3 6829:1 6830:1 6841:1 6856:3 6858:1 6869:1 6874:1 6890:1 6898:2 6910:1 6932:2 6933:2 6937:1 6949:3 6950:1 6951:1 6959:2 6963:1 6966:1 6967:1 6971:3 6973:1 6977:2 6979:4 6980:2 6982:4 7034:1 7036:1 7077:4 7097:1 7105:4 7120:2 7146:1 7169:1 7170:1 7215:1 7236:1 7262:1 7307:2 7328:1 7333:1 7344:1 7345:2 7353:1 7361:2 7362:1 7368:1 7391:1 7392:1 7396:1 7399:1 7401:1 7406:2 7430:2 7432:1 7433:1 7439:1 7456:1 7457:1 7461:1 7489:2 7566:1 7567:1 7580:3 7601:1 7615:3 7628:1 7634:1 7657:1 7688:1 7713:1 7717:2 7757:1 7763:1 7781:1 7799:6 7801:1 7813:1 7824:1 7826:1 7862:2 7900:1 7937:1 7940:1 7941:1 7951:1 7971:2 8000:1 8013:1 8019:1 8025:1 8051:1 8063:1 8069:1 8088:1 8093:1 8122:3 8124:1 8128:3 8142:1 8144:1 8153:1 8154:1 8172:1 8192:1 8201:1 8207:2 8214:1 8231:1 8241:1 8245:1 8250:1 8264:1 8276:1 8283:2 8285:1 8290:1 8304:1 8342:1 8349:1 8376:1 8377:4 8383:1 8391:9 8400:1 8410:1 8414:1 8416:4 8417:1 8443:1 8448:1 8457:29 8487:5 8490:11 8502:1 8537:1 8541:2 8554:2 8558:1 8568:1 8629:1 8639:1 8699:1 8721:1 8765:1 8787:3 8797:3 8803:1 8816:1 8888:1 8896:1 8903:1 8907:1 8929:1 8940:9 8947:2 8950:1 8955:1 8958:1 8983:1 9005:1 9019:24 9045:1 9072:1 9075:1 9089:1 9102:1 9164:1 9175:1 9205:1 9222:1 9226:1 9249:1 9258:3 9276:2 9279:1 9285:3 9294:1 9296:1 9299:1 9323:1 9329:1 9343:1 9348:1 9383:2 9391:1 9393:3 9398:1 9399:4 9401:1 9402:1 9408:2 9413:4 9423:1 9425:1 9428:2 9455:1 9490:2 9493:2 9495:1 9518:1 9554:1 9559:1 9590:1 9595:1 9643:1 9658:1 9682:1 9698:1 9707:2 9724:1 9736:3 9751:1 9763:1 9767:1 9769:1 9772:3 9798:1 9808:1 9816:1 9850:1 9851:1 9864:1 9869:1 9876:1 9885:1 9895:1 9898:1 9928:1 9931:2 9936:6 9940:4 9944:1 9948:1 9960:3 9974:1 9978:1 10018:1 10028:1 10037:1 10054:1 10061:1 10086:1 10093:1 10114:1 10121:1 10178:1 10190:3 10193:1 10207:1 10212:1 10214:1 10215:1 10222:1 10237:1 10297:1 10313:1 10334:1 10354:2 10363:1 10373:1 10381:1 10386:1 10393:2 10394:1 10405:1 10411:1 10423:1 10431:4 10449:1 10457:1 10458:1 10461:2 10474:3 10504:1 10534:1 10547:3 10559:1 10563:3 10568:6 10583:3 10603:1 10649:1 10651:1 10663:2 10667:1 10678:2 10700:9 10709:1 10714:1 10715:1 10732:1 10740:1 10743:1 10749:1 10762:1 10764:1 10775:2 10781:1 10856:2 10864:1 10871:3 10872:1 10878:2 10895:1 10925:2 10927:1 10929:2 10944:2 10962:1 10966:1 10972:1 10978:1 10986:2 11071:2 11080:1 11082:2 11112:1 11116:1 11124:1 11140:1 11187:2 11196:1 11218:2 11228:1 11277:1 11284:1 11285:1 11292:2 11335:1 11351:3 11416:4 11418:2 11425:1 11448:1 11493:2 11497:1 11514:1 11521:1 11523:1 11536:1 11548:3 11556:1 11587:2 11599:1 11606:3 11608:1 11612:1 11615:1 11620:1 11625:1 11626:1 11629:1 11630:2 11641:1 11642:1 11671:2 11673:2 11690:1 11714:3 11723:1 11728:1 11734:1 11736:1 11738:1 11740:1 11744:4 11746:7 11785:1 11803:2 11818:1 11822:1 11829:1 11835:4 11845:1 11849:3 11877:1 11913:1 11926:1 11937:1 11958:4 11961:2 11964:1 11968:1 12015:1 12024:3 12053:1 12063:1 12070:2 12094:1 12099:1 12101:1 12103:1 12105:1 12124:1 12126:1 12160:6 12166:2 12169:1 12192:1 12197:1 12221:1 12243:1 12256:1 12268:3 12273:2 12308:1 12309:1 12323:1 12334:1 12338:1 12339:1 12347:1 12359:1 12374:1 12377:1 12406:1 12422:1 12441:2 12445:7 12492:1 12512:2 12521:2 12524:2 12525:1 12539:1 12542:1 12545:3 12546:1 12584:1 12589:1 12590:1 12621:1 12640:1 12646:2 12669:1 12675:1 12682:5 12684:2 12688:1 12706:1 12707:1 12721:2 12727:1 12739:1 12740:1 12743:1 12746:1 12750:1 12753:1 12758:1 12769:2 12772:1 12798:1 12799:1 12821:1 12822:1 12823:5 12839:3 12848:8 12896:1 12909:1 12917:1 12920:11 12966:1 12999:1 13015:1 13025:1 13035:1 13042:2 13055:4 13089:1 13093:1 13121:3 13143:1 13160:1 13178:3 13202:2 13215:1 13216:2 13226:2 13227:2 13231:1 13242:1 13247:3 13250:3 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13352:1 13364:2 13386:2 13392:1 13455:1 13470:1 13519:1 13539:3 13547:1 13568:1 13620:1 13656:2 13693:1 13732:1 13751:1 13809:1 13813:8 13816:1 13827:1 13839:1 13845:1 13858:1 13879:1 13899:11 13906:1 13926:1 13933:2 13960:2 13984:2 14023:1 14024:1 14101:1 14104:1 14113:1 14119:1 14121:4 14138:1 14160:1 14178:1 14230:2 14235:1 14257:4 14269:1 14272:1 14274:3 14280:2 14296:2 14303:8 14305:1 14307:1 14341:1 14345:1 14352:1 14369:1 14371:2 14399:2 14400:1 14431:1 14445:1 14446:8 14455:1 14464:1 14468:14 14512:1 14553:1 14567:3 14590:1 14618:2 14632:2 14655:1 14662:1 14680:1 14692:1 14704:1 14709:2 14714:2 14719:1 14744:1 14749:1 14790:1 14800:1 14864:1 14866:1 14868:1 14871:5 14872:1 14879:1 14897:2 14913:1 14931:1 14941:1 14947:1 14983:10 14995:1 14996:2 15036:1 15037:2 15038:1 15067:2 15078:1 15091:2 15092:1 15094:1 15096:2 15104:1 15117:1 15171:5 15174:2 15196:2 15223:1 15236:1 15237:2 15297:1 15305:1 15308:2 15322:1 15344:2 15387:1 15401:1 15446:2 15448:1 15455:1 15464:1 15465:1 15472:1 15474:1 15519:1 15522:1 15552:1 15561:1 15572:1 15593:1 15597:1 15598:1 15600:2 15604:1 15605:1 15615:1 15623:1 15647:1 15648:1 15654:2 15680:1 15698:1 15699:1 15702:4 15740:4 15762:1 15781:1 15804:1 15807:1 15815:1 15821:3 15830:1 15835:4 15848:2 15849:1 15860:1 15872:1 15873:1 15892:2 15903:1 15910:1 15926:2 15937:1 15941:1 15942:1 15954:1 15961:1 15971:1 15978:1 15991:1 16019:1 16030:1 16035:1 16048:1 16052:1 16112:1 16126:1 16149:1 16151:3 16156:1 16166:2 16178:1 16193:3 16198:1 16239:1 16243:1 16268:1 16272:1 16298:4 16304:1 16305:1 16319:1 16351:1 16355:1 16357:1 16358:2 16396:1 16408:1 16410:1 16412:1 16430:1 16437:1 16506:3 16515:1 16521:1 16545:3 16547:1 16549:1 16553:1 16588:1 16621:1 16629:1 16685:1 16711:1 16720:1 16723:1 16747:1 16762:1 16768:1 16771:28 16808:1 16811:1 16822:1 16865:1 16870:1 16876:1 16901:1 16914:2 16919:1 16950:1 16999:1 17029:1 17030:4 17036:1 17039:2 17040:1 17041:2 17046:1 17047:1 17053:1 17059:1 17065:1 17066:1 17069:1 17071:4 17072:1 17079:1 17087:1 17125:2 17127:1 17184:1 17185:1 17215:5 17216:5 17236:1 17243:1 17255:1 17270:1 17288:1 17319:1 17321:2 17335:1 17348:1 17360:2 17377:1 17382:1 17398:1 17405:1 17421:1 17446:1 17469:2 17473:2 17478:1 17500:1 17507:4 17514:1 17521:1 17549:1 17557:1 17559:1 17562:1 17570:1 17571:4 17593:1 17602:2 17609:1 17622:1 17625:1 17632:1 17633:2 17637:1 17638:1 17639:2 17641:2 17643:1 17646:3 17647:1 17651:1 17653:1 17656:3 17658:1 17660:1 17662:5 17666:1 17678:1 17690:1 17695:3 17717:1 17731:1 17784:1 17864:1 17902:1 17932:1 17937:1 17987:1 18039:2 18068:1 18099:1 18102:1 18107:1 18115:2 18122:2 18123:1 18130:2 18141:1 18192:1 18199:1 18202:2 18212:1 18225:2 18228:5 18238:2 18243:1 18260:1 18266:1 18277:2 18310:1 18326:2 18328:1 18343:3 18347:1 18352:9 18355:2 18382:1 18409:2 18412:1 18418:1 18420:2 18429:2 18430:3 18454:2 18465:2 18488:2 18492:2 18494:2 18498:1 18521:1 18531:1 18533:1 18537:1 18566:1 18569:1 18574:1 18575:1 18583:1 18587:1 18589:1 18594:1 18596:1 18597:1 18608:1 18620:1 18623:1 18650:1 18684:1 18694:1 18696:1 18709:1 18727:2 18730:1 18732:1 18738:1 18750:3 18752:1 18765:2 18802:1 18810:1 18817:1 18823:1 18839:1 18867:1 18872:1 18873:1 18906:1 18913:1 18918:2 18928:1 18972:1 18975:1 18978:1 18997:1 19000:1 19001:1 19043:1 19044:2 19068:2 19078:2 19084:1 19087:1 19122:1 19130:1 19133:1 19137:1 19157:1 19164:2 19183:1 19194:1 19205:1 19207:1 19212:1 19214:1 19222:1 19235:1 19249:6 19271:1 19286:1 19287:1 19292:3 19294:1 19319:1 19324:2 19351:3 19353:1 19357:2 19369:1 19371:1 19391:1 19393:1 19408:1 19418:1 19428:1 19429:1 19437:1 19441:1 19443:4 19449:3 19450:1 19454:1 19463:1 19480:1 19486:1 19494:1 19496:1 19498:1 19518:8 19530:1 19549:2 19551:2 19583:1 19595:1 19596:1 19601:1 19642:1 19665:1 19698:1 19709:1 19711:1 19716:1 19720:1 19722:1 19756:1 19762:1 19774:1 19781:1 19787:1 19792:2 19824:1 19827:1 19837:1 19852:2 19862:1 19946:3 19951:1 19981:6 19990:1 19992:2 19994:1 20000:1 20059:1 20061:1 20067:1 20068:1 20105:1 20190:1 20196:1983 20200:2 20218:3 20229:1 20232:1 20249:1 20252:1 20284:1 20289:1 20304:1 20328:1 20339:1 20341:1 20347:2 20353:1 20386:1 20398:1 20399:1 20412:1 20422:1 20423:1 20436:4 20444:1 20449:3 20451:2 20453:1 20463:2 20482:1 20510:1 20524:1 20530:2 20555:1 20604:1 20673:1 20696:3 20712:1 20757:1 20761:2 20781:1 20819:1 20832:2 20839:1 20850:1 20858:1 20897:1 20914:1 20917:1 20954:1 20955:2 20978:3 21004:4 21015:1 21027:2 21041:2 21042:1 21056:1 21060:1 21066:1 21067:2 21105:1 21106:5 21119:1 21127:2 21129:1 21130:1 21136:1 21158:1 21167:8 21173:1 21192:1 21218:1 21229:1 21262:1 21267:1 21318:1 21323:1 21360:1 21363:1 21374:1 21404:1 21406:1 21429:1 21434:2 21456:1 21465:1 21472:1 21475:1 21491:2 21492:3 21500:4 21506:1 21541:1 21542:1 21548:2 21560:1 21567:1 21590:1 21603:2 21623:1 21626:1 21634:1 21658:1 21679:1 21680:1 21705:1 21721:1 21742:1 21755:1 21763:8 21766:1 21769:1 21773:1 21799:1 21806:1 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:4 21867:2 21873:2 21892:1 21894:1 21904:1 21915:2 21920:1 21937:7 21944:3 21971:1 21990:1 21991:1 22002:1 22025:2 22056:1 22068:1 22098:1 22109:1 22112:1 22115:1 22162:1 22184:3 22194:2 22195:1 22204:1 22225:1 22228:5 22230:4 22240:1 22242:2 22285:1 22302:1 22306:1 22311:1 22319:1 22348:2 22351:1 22353:1 22384:1 22393:1 22422:1 22434:1 22460:1 22461:1 22479:1 22482:1 22485:1 22502:1 22507:1 22518:1 22521:1 22526:1 22528:1 22550:1 22554:1 22564:1 22581:1 22590:4 22614:1 22626:1 22632:1 22639:2 22643:2 22657:1 22666:1 22677:1 22719:1 22734:3 22739:1 22786:1 22796:10 22803:2 22809:2 22813:1 22822:4 22853:1 22861:1 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22901:1 22918:1 22928:1 22941:1 22951:1 22960:2 22972:1 22991:1 23005:1 23017:1 23063:1 23067:1 23092:4 23119:2 23131:1 23136:3 23141:1 23146:2 23149:1 23185:1 23219:1 23228:1 23229:1 23234:1 23249:1 23258:4 23260:1 23261:1 23264:1 23274:1 23275:1 23281:1 23307:1 23322:1 23334:1 23342:2 23349:1 23360:1 23377:1 23389:1 23396:2 23420:2 23436:2 23438:2 23442:2 23491:1 23500:2 23503:1 23515:2 23531:1 23551:1 23552:2 23557:1 23558:1 23613:1 23615:1 23617:1 23652:1 23664:1 23676:1 23686:3 23687:3 23689:3 23696:1 23697:1 23700:1 23715:1 23718:2 23722:1 23732:2 23746:1 23749:1 23765:2 23775:1 23796:1 23826:2 23862:1 23863:2 23872:1 23885:1 23893:1 23901:3 23905:2 23916:3 23935:1 23953:1 23977:1 23983:1 23994:2 24025:1 24042:1 24053:1 24068:1 24070:1 24079:2 24087:1 24088:4 24093:1 24095:1 24126:1 24132:1 24148:1 24157:1 24161:2 24166:2 24172:1 24173:1 24182:2 24218:1 24233:1 24244:1 24245:1 24261:1 24272:1 24287:1 24294:1 24298:1 24311:2 24327:1 24343:1 24357:2 24361:1 24363:2 24375:3 24379:1 24414:1 24425:1 24451:1 24452:1 24488:1 24489:1 24503:1 24506:1 24534:3 24539:1 24548:1 24563:1 24566:1 24584:1 24594:1 24599:2 24610:2 24611:1 24612:2 24616:1 24617:1 24619:1 24625:1 24633:1 24638:1 24640:1 24652:3 24655:1 24664:1 24672:3 24690:1 24714:2 24718:2 24725:1 24727:2 24731:1 24761:1 24778:1 24786:1 24794:1 24819:3 24846:1 24865:4 24883:1 24913:2 24916:2 24957:2 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25079:1 25080:1 25140:1 25152:1 25166:1 25171:2 25185:1 25188:1 25193:3 25203:1 25204:1 25210:2 25247:1 25263:1 25266:1 25274:1 25276:3 25280:1 25294:1 25298:3 25305:1 25308:1 25346:1 25351:1 25359:1 25364:1 25372:1 25373:2 25394:1 25395:1 25417:1 25421:1 25431:1 25438:1 25441:1 25465:4 25469:1 25473:1 25490:1 25498:1 25534:3 25559:1 25560:2 25566:1 25593:1 25606:1 25648:2 25649:1 25665:1 25684:1 25691:1 25705:1 25779:2 25802:1 25817:3 25865:1 25909:1 25910:8 25996:1 26016:2 26050:1 26064:1 26071:1 26084:1 26098:1 26111:2 26136:1 26142:1 26151:3 26160:1 26170:2 26172:7 26174:1 26177:1 26179:1 26197:1 26201:1 26202:1 26215:1 26219:1 26221:2 26236:1 26245:1 26248:1 26270:1 26334:1 26386:1 26397:1 26398:1 26399:1 26405:1 26406:1 26408:1 26409:1 26413:1 26427:1 26470:1 26483:3 26485:1 26487:2 26489:1 26490:4 26496:1 26497:1 26510:1 26518:4 26535:5 26536:1 26552:1 26575:1 26576:1 26597:1 26603:1 26607:1 26608:1 26626:1 26631:2 26638:1 26645:2 26654:2 26657:1 26678:1 26684:2 26719:1 26750:1 26754:1 26793:1 26799:2 26836:1 26847:1 26861:2 26870:1 26895:1 26916:6 26958:1 26967:1 26968:1 26986:1 26991:6 26999:1 27000:1 27002:1 27005:1 27019:1 27043:2 27044:1 27137:1 27213:1 27242:2 27244:5 27265:2 27276:1 27277:1 27290:2 27296:1 27297:1 27305:2 27353:1 27360:1 27384:1 27457:1 27471:1 27472:1 27474:1 27482:1 27507:1 27509:1 27510:1 27512:1 27518:1 27534:1 27544:1 27584:1 27586:1 27599:1 27600:1 27614:1 27646:1 27653:1 27673:1 27693:1 27734:1 27750:1 27770:1 27801:4 27802:1 27804:5 27814:1 27869:1 27910:2 27952:4 27956:1 27957:1 27976:1 27999:1 28013:1 28018:1 28073:1 28076:2 28091:1 28105:1 28112:1 28119:1 28131:3 28150:1 28152:1 28154:1 28159:3 28166:1 28180:1 28192:1 28208:1 28215:1 28219:1 28222:4 28235:1 28245:1 28276:1 28291:1 28308:5 28309:1 28326:2 28349:1 28366:1 28391:3 28403:1 28405:2 28429:2 28462:1 28484:1 28495:1 28507:1 28511:1 28516:1 28517:1 28533:1 28554:1 28578:1 28581:2 28589:1 28600:1 28602:1 28607:1 28611:1 28619:2 28623:3 28624:1 28644:2 28664:2 28675:1 28678:1 28680:1 28687:1 28703:3 28747:2 28756:2 28767:1 28782:1 28803:1 28855:1 28867:1 28874:1 28912:1 28916:1 29013:1 29104:1 29109:1 29117:1 29142:1 29149:1 29150:1 29209:1 29243:1 29268:1 29274:1 29288:1 29292:3 29314:1 29315:2 29319:1 29325:1 29340:1 29342:1 29353:1 29355:1 29372:3 29390:1 29391:1 29400:1 29403:1 29411:4 29425:1 29468:1 29479:1 29482:4 29486:1 29509:1 29520:1 29550:1 29576:4 29587:2 29588:1 29596:1 29599:1 29601:2 29605:1 29615:1 29627:1 29637:1 29658:2 29667:1 29668:1 29684:2 29686:2 29689:1 29696:1 29697:1 29699:1 29706:1 29714:1 29718:1 29754:1 29760:1 29789:2 29794:1 29795:1 29814:1 29816:3 29828:1 29833:1 29848:1 29852:1 29862:1 29867:1 29916:1 29918:1 29932:1 29934:2 29938:1 29956:4 29971:1 29979:1 29989:1 29991:2 29995:1 30016:1 30031:2 30041:1 30044:1 30045:6 30064:2 30067:1 30097:1 30149:1 30188:1 30240:3 30282:1 30289:1 30319:3 30331:2 30336:1 30368:1 30372:1 30390:4 30392:1 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30479:18 30480:1 30502:1 30530:1 30537:10 30546:1 30548:1 30550:2 30581:1 30602:1 30623:1 30630:2 30655:1 30661:1 30670:3 30675:3 30711:8 30713:1 30747:1 30764:2 30768:1 30805:2 30809:1 30810:1 30815:1 30820:1 30846:2 30876:1 30882:2 30888:1 30903:2 30933:1 30956:1 30988:1 30996:1 31026:1 31041:4 31043:3 31104:1 31115:1 31118:1 31121:1 31125:2 31132:1 31135:1 31143:1 31231:1 31253:4 31265:1 31267:1 31268:1 31272:10 31288:1 31291:1 31306:1 31309:1 31310:2 31316:1 31337:1 31342:1 31362:1 31369:1 31380:1 31413:1 31437:1 31444:1 31458:1 31465:1 31477:1 31495:1 31496:1 31506:3 31514:2 31550:1 31612:1 31652:1 31659:1 31666:1 31667:1 31679:1 31681:1 31689:1 31705:1 31713:2 31718:1 31742:1 31750:1 31756:1 31765:1 31780:1 31781:1 31785:1 31794:3 31801:1 31802:1 31803:2 31815:1 31823:1 31826:1 31851:1 31852:1 31866:1 31873:1 31882:1 31886:1 31890:3 31891:1 31896:2 31898:3 31902:1 31905:1 31907:2 31911:1 31914:1 31934:1 31958:1 31962:3 31965:1 31970:1 31977:1 31978:1 31998:1 32007:1
20 9:1 18:1 21:1 23:1 26:2 30:1 46:1 61:1 75:1 78:1 90:7 95:1 103:1 111:1 120:1 123:1 158:1 169:1 181:1 184:1 193:1 197:1 211:1 253:3 261:2 274:2 278:1 290:3 292:1 331:1 355:2 358:1 404:1 406:2 421:1 448:1 482:1 489:3 536:1 540:2 596:1 602:1 622:1 623:3 631:1 635:1 652:2 664:2 696:2 701:1 704:3 770:1 822:1 892:1 913:1 956:2 959:1 971:2 977:1 990:1 995:1 996:3 1000:1 1011:1 1025:1 1034:3 1054:1 1057:1 1063:3 1064:1 1066:1 1067:5 1069:4 1079:1 1095:1 1098:1 1108:4 1124:1 1135:3 1136:3 1143:2 1149:1 1158:1 1167:1 1198:1 1200:2 1205:1 1226:1 1255:1 1262:1 1281:1 1292:4 1305:4 1339:1 1341:1 1350:1 1368:1 1371:1 1380:1 1389:1 1402:1 1406:1 1407:1 1420:1 1426:1 1427:1 1430:1 1446:1 1458:1 1491:1 1511:1 1533:1 1549:1 1563:1 1576:1 1582:2 1594:2 1599:1 1608:1 1610:1 1630:1 1631:1 1633:4 1641:2 1651:4 1662:1 1668:1 1670:1 1671:1 1678:1 1691:3 1719:13 1722:2 1725:7 1729:1 1737:2 1741:1 1746:1 1756:1 1757:2 1759:2 1778:1 1799:1 1800:1 1805:1 1811:9 1827:1 1829:1 1840:1 1855:1 1863:1 1876:1 1877:1 1903:2 1945:1 1967:1 1968:5 1973:2 1976:1 1987:2 1994:1 2026:1 2035:2 2064:1 2070:1 2086:1 2088:1 2105:2 2113:3 2116:2 2127:1 2138:2 2145:1 2161:1 2163:1 2166:1 2208:1 2210:2 2229:1 2245:4 2260:1 2264:1 2284:1 2285:3 2291:1 2295:1 2296:1 2301:1 2341:1 2354:5 2357:1 2379:1 2389:1 2395:2 2397:2 2403:1 2433:2 2435:8 2438:5 2442:1 2443:1 2450:1 2451:2 2452:3 2454:2 2455:1 2458:1 2469:1 2472:2 2475:2 2500:1 2507:2 2509:1 2512:2 2514:4 2517:1 2520:1 2525:2 2530:1 2531:2 2533:1 2535:3 2539:2 2542:3 2544:2 2546:1 2549:2 2552:1 2554:2 2557:1 2574:1 2576:1 2579:1 2582:1 2616:1 2629:1 2645:1 2658:1 2673:1 2676:1 2677:1 2718:1 2723:1 2741:1 2762:1 2767:1 2772:1 2773:1 2795:1 2801:1 2831:1 2833:1 2839:1 2853:1 2869:1 2870:1 2875:1 2893:2 2898:1 2902:1 2914:1 2923:1 2937:1 2948:1 2961:1 2963:2 2965:1 2970:2 2975:1 2977:1 3012:2 3015:1 3021:1 3029:1 3037:1 3050:1 3056:1 3063:1 3084:1 3087:2 3105:1 3120:1 3128:1 3159:3 3168:9 3169:2 3171:2 3181:1 3184:2 3185:3 3195:1 3204:1 3214:9 3250:1 3320:1 3347:2 3354:1 3361:1 3422:3 3453:1 3463:1 3501:1 3507:1 3537:1 3553:1 3597:1 3598:1 3607:2 3615:1 3625:3 3660:3 3695:3 3706:1 3711:1 3712:1 3719:1 3723:1 3751:1 3752:1 3780:1 3825:1 3835:1 3840:1 3885:2 3893:1 3901:1 3944:1 3952:2 3966:2 3970:2 3977:1 4006:1 4009:1 4013:1 4015:1 4024:5 4042:1 4056:1 4059:1 4063:1 4065:1 4070:1 4075:2 4118:2 4126:2 4127:3 4175:5 4176:1 4202:1 4207:1 4211:6 4213:1 4264:2 4279:1 4296:1 4306:1 4317:6 4335:1 4345:2 4346:1 4366:1 4379:1 4391:1 4392:2 4395:1 4406:1 4414:2 4423:2 4425:1 4443:1 4454:1 4472:1 4482:1 4508:1 4535:1 4562:1 4587:1 4593:1 4626:1 4699:1 4702:1 4727:1 4730:1 4736:1 4768:1 4771:1 4776:1 4777:2 4780:1 4791:1 4794:1 4836:2 4838:1 4859:1 4860:1 4872:1 4917:1 4923:1 4958:1 4959:2 4993:1 4997:1 4999:1 5012:1 5027:1 5046:1 5055:1 5067:1 5078:2 5086:1 5106:4 5130:2 5131:1 5136:2 5186:1 5196:1 5215:1 5227:1 5245:1 5247:1 5283:1 5291:1 5306:1 5332:14 5345:1 5349:1 5364:1 5372:1 5444:3 5448:7 5466:3 5467:2 5470:1 5472:1 5475:1 5476:1 5479:1 5480:1 5485:1 5487:1 5488:2 5490:3 5492:3 5495:1 5496:1 5508:2 5547:1 5577:1 5607:1 5619:1 5662:1 5678:4 5683:1 5693:1 5706:1 5710:1 5715:1 5720:1 5745:3 5748:1 5775:1 5800:2 5825:1 5839:1 5864:3 5901:1 5916:1 5924:1 5929:1 5931:4 5962:1 5977:1 5998:1 6038:1 6039:2 6049:1 6057:2 6077:1 6086:1 6089:1 6095:1 6101:2 6107:1 6117:1 6120:1 6127:1 6137:3 6158:3 6189:1 6225:2 6244:1 6249:1 6268:1 6279:1 6280:1 6312:1 6319:1 6321:1 6323:1 6326:2 6350:1 6351:1 6359:1 6362:1 6375:1 6379:1 6387:2 6394:3 6400:2 6444:4 6445:2 6463:2 6467:2 6476:1 6477:2 6532:1 6542:1 6571:1 6584:1 6609:3 6612:1 6631:1 6652:2 6670:2 6674:1 6675:1 6702:1 6709:1 6711:1 6721:1 6727:2 6772:3 6779:1 6783:3 6829:1 6830:1 6841:1 6856:3 6858:1 6869:1 6874:1 6890:1 6898:2 6910:1 6932:2 6933:2 6937:1 6949:3 6950:1 6951:1 6959:2 6963:1 6966:1 6967:1 6971:4 6973:1 6977:2 6979:4 6980:2 6982:4 7034:1 7036:1 7077:4 7097:1 7105:4 7120:2 7146:1 7169:1 7170:1 7215:1 7236:1 7262:1 7307:2 7328:1 7333:1 7344:1 7345:2 7353:1 7361:2 7362:1 7368:1 7391:1 7392:1 7396:1 7399:1 7401:1 7406:2 7430:2 7432:1 7433:1 7439:1 7456:1 7457:1 7461:1 7489:2 7566:1 7567:1 7580:3 7601:1 7615:3 7628:1 7634:1 7657:1 7688:1 7713:1 7717:2 7757:1 7763:1 7781:1 7799:6 7801:1 7813:1 7824:1 7826:1 7862:2 7879:1 7900:1 7937:1 7940:1 7941:1 7951:1 7971:2 7976:1 8000:1 8013:1 8019:1 8025:1 8051:1 8063:1 8069:1 8088:1 8093:2 8122:3 8124:1 8128:3 8142:1 8144:1 8153:1 8154:1 8172:1 8192:1 8201:1 8207:2 8214:1 8231:1 8241:1 8245:1 8250:1 8264:1 8276:1 8283:2 8285:1 8290:1 8304:1 8342:1 8349:1 8376:1 8377:4 8383:1 8391:9 8400:1 8410:1 8414:1 8416:4 8417:1 8443:1 8448:1 8457:30 8487:5 8490:11 8502:1 8537:1 8541:2 8554:2 8558:1 8568:1 8629:1 8639:1 8699:1 8707:1 8721:1 8765:1 8787:3 8797:3 8803:1 8816:1 8888:1 8896:1 8903:1 8907:1 8916:1 8929:1 8940:9 8947:2 8950:1 8955:1 8958:1 8983:1 9005:1 9019:27 9045:1 9072:1 9075:1 9089:1 9102:1 9164:1 9175:1 9205:1 9222:1 9226:1 9249:1 9258:4 9276:2 9279:1 9285:3 9294:1 9296:1 9299:2 9323:1 9329:1 9343:1 9348:1 9383:2 9391:1 9393:3 9398:1 9399:4 9401:1 9402:1 9408:2 9413:4 9423:1 9425:1 9428:2 9455:1 9490:2 9493:2 9495:1 9518:1 9554:2 9559:1 9590:1 9595:1 9643:1 9658:1 9682:1 9698:1 9707:2 9724:1 9736:3 9751:1 9763:1 9767:1 9769:1 9772:3 9798:1 9808:1 9816:1 9850:1 9851:1 9864:1 9869:1 9876:1 9885:1 9895:1 9898:1 9928:1 9931:2 9936:6 9940:4 9944:1 9948:1 9960:3 9974:1 9978:1 10018:1 10028:1 10037:1 10054:1 10061:1 10086:1 10093:1 10114:1 10121:1 10178:1 10190:3 10193:1 10207:1 10212:1 10214:1 10215:1 10222:1 10237:1 10294:1 10297:1 10313:1 10334:1 10354:2 10363:1 10373:1 10381:1 10386:1 10393:2 10394:1 10405:1 10411:1 10423:1 10431:4 10449:1 10457:1 10458:1 10461:2 10474:3 10504:1 10534:1 10547:4 10559:1 10563:3 10568:6 10583:3 10603:1 10649:1 10651:1 10663:2 10667:1 10678:2 10700:9 10709:1 10714:1 10715:1 10732:1 10740:1 10743:1 10749:1 10762:1 10764:1 10775:2 10781:1 10856:2 10864:1 10871:3 10872:1 10878:2 10895:1 10925:2 10927:1 10929:2 10944:2 10962:1 10966:1 10972:1 10978:1 10986:2 11071:2 11080:1 11082:2 11112:1 11116:1 11124:1 11140:1 11187:2 11196:2 11218:2 11228:1 11277:1 11284:1 11285:1 11292:2 11335:1 11351:3 11390:1 11416:4 11418:2 11425:1 11448:1 11493:2 11497:1 11514:1 11521:1 11523:1 11536:1 11548:3 11556:1 11557:1 11587:2 11599:1 11606:3 11608:1 11612:1 11615:1 11620:1 11625:1 11626:1 11629:1 11630:2 11641:1 11642:1 11671:3 11673:2 11690:1 11714:3 11723:1 11728:1 11734:1 11736:1 11738:1 11740:1 11744:4 11746:7 11785:1 11803:2 11818:1 11822:1 11829:1 11835:4 11845:1 11849:3 11877:1 11913:1 11926:1 11937:1 11958:4 11961:2 11964:1 11968:1 12015:1 12024:3 12053:1 12063:1 12070:2 12094:1 12099:1 12101:1 12103:1 12105:1 12124:1 12126:1 12160:6 12166:2 12169:2 12192:1 12197:1 12221:1 12243:1 12256:1 12268:3 12273:2 12308:1 12309:1 12323:1 12334:1 12338:1 12339:1 12347:1 12359:1 12374:1 12377:1 12406:1 12422:1 12441:2 12445:7 12492:1 12512:2 12521:2 12524:2 12525:1 12539:1 12542:1 12545:3 12546:1 12584:1 12589:1 12590:1 12621:1 12640:1 12646:2 12669:1 12675:1 12682:5 12684:3 12688:1 12706:1 12707:1 12721:2 12727:1 12739:1 12740:1 12743:1 12746:1 12750:1 12753:1 12758:1 12769:2 12772:1 12798:1 12799:1 12821:1 12822:1 12823:5 12839:3 12848:8 12896:1 12909:1 12917:1 12920:11 12966:1 12999:1 13015:1 13025:1 13035:1 13042:2 13055:4 13089:1 13093:1 13121:3 13143:1 13160:1 13178:3 13202:2 13215:1 13216:2 13226:2 13227:2 13230:1 13231:1 13242:1 13247:3 13250:3 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13352:1 13364:2 13386:3 13392:1 13455:1 13470:1 13519:1 13539:3 13547:1 13568:1 13620:1 13656:2 13693:1 13732:1 13751:1 13809:1 13813:8 13816:1 13827:1 13839:1 13845:1 13858:1 13879:1 13899:11 13906:1 13926:1 13933:2 13960:2 13984:2 14023:1 14024:1 14101:1 14104:1 14113:1 14119:1 14121:4 14138:1 14160:2 14178:1 14230:2 14235:1 14257:4 14269:1 14272:1 14274:3 14280:2 14296:2 14303:8 14305:1 14307:1 14341:1 14345:1 14352:1 14369:1 14371:2 14399:2 14400:1 14431:1 14445:1 14446:8 14455:1 14464:1 14468:14 14512:1 14553:1 14567:3 14590:1 14618:2 14632:2 14655:1 14662:1 14680:1 14692:1 14704:1 14709:2 14714:2 14719:1 14744:1 14749:1 14790:1 14800:1 14864:1 14866:1 14868:1 14871:5 14872:1 14879:1 14897:2 14913:1 14931:1 14941:1 14947:1 14983:10 14995:1 14996:2 15036:1 15037:2 15038:1 15067:2 15078:1 15091:2 15092:1 15094:1 15096:2 15104:1 15117:1 15171:5 15174:2 15196:2 15223:1 15236:1 15237:2 15297:1 15305:1 15308:2 15322:1 15344:2 15355:1 15387:1 15401:1 15446:2 15448:1 15455:1 15464:1 15465:1 15472:1 15474:1 15519:1 15522:1 15552:1 15561:1 15572:1 15593:1 15597:1 15598:1 15600:2 15604:1 15605:1 15615:1 15616:1 15623:1 15647:1 15648:1 15654:2 15680:1 15698:1 15699:1 15702:4 15740:4 15762:1 15781:1 15804:1 15807:1 15815:1 15821:3 15830:1 15835:5 15848:2 15849:1 15860:1 15872:1 15873:1 15892:2 15903:1 15910:1 15926:2 15937:1 15941:1 15942:1 15954:1 15961:1 15971:1 15978:1 15991:1 16019:1 16030:1 16035:1 16048:1 16052:1 16112:1 16126:1 16149:1 16151:3 16156:1 16166:2 16178:1 16193:3 16198:1 16239:1 16243:1 16268:1 16272:1 16298:4 16304:1 16305:1 16319:1 16351:1 16355:1 16357:2 16358:2 16396:1 16408:1 16410:1 16412:1 16430:1 16437:1 16506:3 16515:1 16521:1 16545:3 16547:1 16549:1 16553:1 16588:1 16621:1 16629:1 16685:1 16711:1 16720:1 16723:1 16747:1 16762:1 16768:1 16771:28 16808:1 16811:1 16822:1 16865:1 16870:1 16876:1 16901:1 16914:2 16919:1 16950:1 16999:1 17029:1 17030:4 17036:1 17039:2 17040:1 17041:2 17046:1 17047:1 17053:1 17059:1 17065:1 17066:1 17069:1 17071:6 17072:1 17079:1 17087:1 17125:2 17127:1 17184:1 17185:1 17215:5 17216:5 17236:1 17243:1 17255:2 17270:1 17288:1 17319:1 17321:2 17335:1 17348:1 17360:2 17377:1 17382:1 17398:1 17405:1 17421:1 17446:1 17469:2 17473:2 17478:1 17500:1 17505:1 17507:5 17514:1 17521:1 17549:1 17557:1 17559:1 17562:1 17563:1 17570:1 17571:4 17593:1 17602:2 17609:1 17622:1 17625:1 17632:1 17633:2 17637:1 17638:3 17639:2 17641:2 17643:1 17646:3 17647:1 17651:1 17653:1 17656:4 17658:1 17660:1 17662:5 17666:1 17678:1 17690:1 17695:3 17717:1 17731:1 17784:1 17864:1 17902:1 17932:1 17937:1 17987:1 18039:2 18054:1 18068:1 18099:1 18102:1 18107:1 18115:2 18122:2 18123:1 18130:2 18141:1 18192:1 18199:1 18202:2 18212:1 18225:2 18228:5 18238:2 18243:1 18260:1 18266:1 18277:2 18310:1 18326:2 18328:1 18343:3 18347:1 18352:9 18355:2 18382:1 18409:2 18412:1 18418:1 18420:2 18429:2 18430:3 18454:2 18465:2 18488:2 18492:2 18494:2 18498:1 18521:1 18531:1 18533:1 18537:1 18566:1 18569:1 18574:1 18575:1 18583:1 18587:1 18589:1 18594:1 18596:1 18597:1 18608:1 18620:1 18623:1 18650:1 18684:1 18694:1 18696:1 18709:1 18727:2 18730:1 18732:1 18738:1 18750:3 18752:1 18765:2 18802:1 18810:1 18817:1 18823:1 18839:1 18847:1 18867:1 18872:1 18873:1 18890:1 18906:1 18913:1 18918:2 18928:2 18972:1 18975:1 18978:2 18997:1 18998:1 19000:1 19001:1 19043:1 19044:2 19068:2 19078:2 19084:1 19087:1 19122:1 19130:1 19133:1 19137:1 19157:1 19164:2 19183:1 19194:1 19205:1 19207:1 19212:1 19214:1 19222:1 19235:1 19249:6 19271:1 19286:1 19287:1 19292:3 19294:1 19319:1 19324:2 19351:3 19353:1 19357:2 19369:1 19371:1 19391:1 19393:1 19408:1 19418:1 19428:1 19429:1 19437:1 19441:1 19443:4 19449:3 19450:1 19454:1 19463:1 19480:1 19486:1 19494:1 19496:1 19498:1 19518:8 19530:1 19549:2 19551:2 19583:1 19595:1 19596:1 19601:1 19642:1 19665:1 19698:1 19709:1 19711:1 19716:1 19720:1 19722:1 19756:1 19762:1 19774:1 19781:1 19787:1 19792:2 19824:1 19827:1 19837:1 19852:2 19862:1 19946:3 19951:1 19981:7 19990:1 19992:2 19994:1 20000:1 20059:1 20061:1 20067:1 20068:1 20105:1 20190:1 20196:2041 20200:2 20218:3 20229:1 20232:1 20249:1 20252:1 20284:1 20286:1 20289:1 20304:1 20328:1 20339:1 20341:1 20347:2 20353:1 20386:1 20398:1 20399:1 20412:1 20422:1 20423:1 20436:4 20444:1 20449:3 20451:2 20453:1 20463:2 20482:1 20510:1 20524:1 20530:2 20555:1 20604:1 20673:1 20696:3 20712:1 20757:1 20761:2 20781:1 20819:1 20832:2 20839:1 20850:1 20858:1 20897:1 20914:1 20917:1 20954:1 20955:2 20978:3 21004:4 21015:1 21027:2 21041:2 21042:1 21056:1 21060:1 21066:1 21067:2 21105:1 21106:5 21119:1 21127:3 21129:1 21130:1 21136:1 21158:1 21167:8 21173:1 21192:1 21218:1 21229:1 21262:1 21267:1 21318:1 21323:1 21360:1 21363:1 21374:1 21404:1 21406:1 21429:1 21434:2 21456:1 21465:1 21472:1 21475:1 21482:1 21491:2 21492:3 21500:4 21506:1 21541:2 21542:1 21548:3 21560:1 21567:1 21590:1 21603:2 21623:1 21626:1 21634:1 21658:1 21679:1 21680:1 21705:1 21721:1 21742:1 21755:1 21763:8 21766:2 21769:1 21773:1 21799:1 21806:1 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:4 21867:2 21873:2 21892:1 21894:1 21904:1 21915:2 21920:1 21937:7 21944:3 21971:1 21990:1 21991:1 22002:1 22025:2 22047:1 22056:1 22068:1 22098:1 22109:1 22112:1 22115:1 22162:1 22184:3 22194:2 22195:1 22204:1 22225:1 22228:5 22230:5 22240:1 22242:2 22285:1 22302:1 22306:1 22311:1 22319:1 22348:2 22351:1 22353:1 22384:1 22393:1 22422:1 22434:1 22460:1 22461:1 22479:1 22482:1 22485:1 22502:1 22507:1 22518:1 22521:1 22526:1 22528:1 22550:1 22554:1 22564:1 22581:1 22590:4 22614:1 22626:1 22632:1 22639:2 22643:2 22657:1 22666:1 22677:1 22719:1 22734:3 22739:1 22786:1 22796:10 22803:2 22809:2 22813:1 22822:4 22853:1 22861:1 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22901:1 22918:1 22928:1 22941:1 22951:1 22960:2 22972:1 22991:1 23005:1 23017:1 23063:1 23067:1 23092:5 23119:2 23131:1 23136:3 23141:1 23146:2 23149:1 23185:1 23219:1 23228:1 23229:1 23234:1 23249:1 23256:1 23258:4 23260:1 23261:1 23264:1 23274:1 23275:1 23281:1 23307:1 23322:1 23334:1 23342:2 23349:1 23360:1 23377:1 23389:1 23396:2 23420:2 23436:2 23438:2 23442:2 23491:1 23500:2 23503:2 23515:2 23531:1 23551:1 23552:2 23557:1 23558:1 23613:1 23615:1 23617:1 23652:1 23664:1 23676:1 23686:3 23687:3 23689:3 23696:1 23697:1 23700:1 23715:1 23718:2 23722:1 23732:2 23746:1 23749:1 23765:2 23775:1 23796:1 23826:2 23862:1 23863:3 23872:1 23885:1 23893:1 23901:3 23905:2 23916:3 23935:1 23953:1 23977:1 23983:1 23994:2 24025:1 24042:1 24053:1 24068:1 24070:1 24079:2 24087:1 24088:4 24093:1 24095:1 24126:1 24132:1 24148:1 24157:1 24161:2 24166:2 24172:1 24173:1 24182:2 24218:1 24233:1 24244:1 24245:1 24261:1 24272:1 24287:1 24294:1 24298:1 24311:2 24327:1 24343:1 24357:2 24361:1 24363:2 24375:3 24379:1 24414:1 24425:1 24451:1 24452:1 24488:1 24489:1 24503:1 24506:1 24534:3 24539:1 24548:1 24563:1 24566:1 24584:1 24594:1 24599:2 24610:2 24611:1 24612:2 24616:1 24617:1 24619:1 24625:1 24633:1 24638:1 24640:1 24652:3 24655:1 24664:2 24672:3 24690:1 24714:2 24718:2 24725:1 24727:2 24731:1 24761:1 24778:1 24786:1 24794:1 24819:3 24846:1 24865:4 24883:1 24913:2 24916:3 24957:2 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25079:1 25080:1 25140:1 25152:1 25166:1 25171:2 25185:2 25188:1 25193:4 25203:1 25204:1 25210:2 25247:1 25263:1 25266:1 25274:1 25276:3 25280:1 25294:2 25298:3 25305:1 25308:1 25346:1 25351:1 25359:1 25364:1 25372:1 25373:2 25394:1 25395:1 25417:1 25421:1 25431:1 25438:1 25441:1 25465:5 25469:1 25473:2 25490:1 25498:1 25534:3 25559:1 25560:2 25566:1 25593:1 25606:1 25648:2 25649:1 25665:1 25684:2 25691:1 25705:1 25779:2 25802:1 25817:3 25865:1 25909:1 25910:8 25996:1 26016:2 26050:2 26057:1 26058:1 26064:1 26071:1 26084:1 26098:1 26111:2 26136:1 26142:1 26151:3 26160:1 26170:2 26172:7 26174:1 26177:1 26179:1 26197:1 26201:1 26202:1 26215:1 26219:1 26221:2 26236:1 26245:1 26248:1 26270:1 26334:1 26347:1 26386:1 26397:1 26398:1 26399:1 26405:1 26406:1 26408:1 26409:1 26413:1 26427:1 26468:1 26470:1 26483:3 26485:1 26487:2 26489:1 26490:4 26496:1 26497:1 26510:1 26518:4 26535:5 26536:1 26552:1 26575:1 26576:1 26597:1 26603:1 26607:1 26608:1 26626:1 26631:2 26638:1 26645:2 26654:2 26657:1 26678:1 26684:2 26719:1 26750:1 26754:1 26793:1 26799:2 26836:1 26847:1 26861:2 26870:1 26895:2 26916:6 26958:1 26967:1 26968:1 26986:1 26991:6 26999:1 27000:1 27002:1 27005:1 27019:1 27043:2 27044:1 27137:1 27195:1 27213:1 27242:2 27244:5 27265:3 27276:1 27277:1 27290:2 27296:1 27297:1 27305:2 27353:1 27360:1 27384:1 27457:1 27471:1 27472:1 27474:1 27482:1 27507:1 27509:1 27510:1 27512:1 27518:1 27534:1 27544:1 27584:1 27586:1 27599:1 27600:2 27614:1 27646:1 27653:1 27673:1 27693:1 27734:1 27750:1 27770:1 27801:5 27802:1 27804:5 27814:1 27869:1 27910:2 27952:4 27956:1 27957:1 27976:1 27999:1 28013:1 28018:1 28073:1 28076:2 28091:1 28105:1 28112:1 28119:1 28131:3 28150:1 28152:1 28154:1 28159:3 28166:1 28180:1 28192:1 28208:1 28215:1 28219:1 28222:4 28235:1 28245:1 28276:1 28291:1 28308:6 28309:1 28326:2 28349:1 28366:1 28391:3 28403:1 28405:2 28429:2 28462:1 28484:1 28495:1 28507:1 28511:1 28516:1 28517:1 28533:1 28554:1 28578:1 28581:2 28589:1 28600:1 28602:1 28607:1 28611:1 28619:2 28623:3 28624:1 28644:2 28664:2 28675:1 28678:1 28680:1 28687:1 28703:3 28747:2 28756:2 28767:1 28782:1 28803:1 28855:1 28867:1 28874:1 28912:1 28916:2 29013:1 29104:1 29109:1 29117:1 29142:1 29149:2 29150:1 29209:1 29243:1 29268:1 29274:1 29282:1 29288:1 29292:3 29314:1 29315:2 29319:1 29325:1 29340:1 29342:1 29353:1 29355:1 29372:3 29390:1 29391:1 29400:1 29403:1 29411:4 29425:1 29468:1 29479:1 29482:5 29486:1 29509:1 29520:1 29550:1 29576:4 29587:2 29588:2 29596:1 29599:1 29601:2 29605:1 29615:1 29627:1 29637:1 29653:1 29658:2 29667:1 29668:1 29684:2 29686:2 29689:1 29696:1 29697:1 29699:1 29706:1 29714:1 29718:1 29754:2 29760:1 29789:2 29794:1 29795:1 29814:1 29816:3 29828:1 29833:1 29848:1 29852:1 29862:1 29867:1 29916:1 29918:1 29932:1 29934:2 29938:1 29956:4 29971:1 29979:1 29989:1 29991:2 29995:1 30016:2 30031:2 30041:1 30044:1 30045:6 30064:2 30067:1 30097:1 30149:1 30188:1 30240:3 30282:1 30289:1 30319:3 30331:2 30336:1 30368:1 30372:1 30390:4 30392:1 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30479:18 30480:1 30502:1 30530:1 30537:10 30543:1 30546:1 30548:1 30550:2 30581:1 30602:1 30623:1 30630:2 30655:1 30661:1 30670:3 30675:3 30711:8 30713:1 30747:1 30764:2 30768:1 30805:2 30809:1 30810:1 30815:1 30818:1 30820:1 30846:2 30876:1 30882:2 30888:1 30903:2 30933:1 30956:1 30988:1 30996:1 31026:1 31041:4 31043:3 31104:1 31115:1 31118:1 31121:1 31125:2 31132:1 31135:1 31143:1 31231:1 31253:4 31265:1 31267:1 31268:1 31272:10 31288:1 31291:1 31306:1 31309:1 31310:2 31316:1 31337:1 31342:1 31362:1 31369:1 31380:1 31413:1 31437:1 31444:1 31458:1 31465:1 31477:1 31495:1 31496:1 31506:3 31514:2 31550:1 31612:2 31652:1 31659:1 31666:1 31667:1 31679:1 31681:1 31689:1 31705:1 31713:2 31718:1 31742:1 31750:1 31756:1 31765:1 31780:1 31781:1 31785:1 31794:3 31801:1 31802:1 31803:2 31815:1 31823:1 31826:1 31851:1 31852:1 31866:1 31873:1 31882:1 31886:1 31890:3 31891:1 31896:2 31898:3 31902:1 31905:1 31907:2 31911:1 31914:1 31934:1 31958:1 31962:3 31965:1 31970:1 31977:1 31978:1 31998:1 32007:1
20 9:1 18:1 21:1 23:1 26:2 30:1 46:1 61:1 75:1 78:1 90:7 95:1 103:1 111:1 120:1 123:1 158:1 169:1 181:1 184:1 193:1 197:1 211:1 253:3 261:2 274:2 278:1 290:3 292:1 307:1 331:1 355:2 358:1 385:1 404:1 406:2 421:1 448:1 468:1 482:1 489:3 536:1 540:2 564:1 596:1 602:1 622:1 623:3 631:1 635:1 652:2 664:2 696:2 701:1 704:3 770:1 794:1 822:1 892:1 913:1 956:2 959:1 971:2 977:1 990:1 995:1 996:3 1000:1 1011:1 1025:1 1034:3 1054:1 1057:1 1063:3 1064:1 1066:1 1067:5 1069:4 1079:1 1095:1 1098:1 1108:4 1124:1 1135:3 1136:3 1143:2 1149:1 1158:1 1167:1 1198:1 1200:2 1205:1 1226:1 1255:1 1262:1 1281:1 1292:4 1305:4 1339:1 1341:1 1350:1 1366:1 1368:1 1371:1 1380:1 1389:1 1402:1 1406:1 1407:1 1420:1 1426:1 1427:1 1430:1 1446:1 1458:1 1491:1 1511:1 1533:1 1549:1 1563:1 1576:1 1582:2 1594:2 1599:1 1608:1 1610:1 1630:1 1631:1 1633:4 1641:3 1651:4 1662:1 1668:1 1670:1 1671:1 1678:1 1691:3 1719:13 1722:2 1725:7 1729:1 1737:2 1741:1 1746:1 1756:1 1757:2 1759:2 1778:1 1799:1 1800:1 1805:1 1811:9 1827:1 1829:1 1840:1 1855:1 1863:1 1876:1 1877:1 1903:2 1945:1 1967:1 1968:5 1973:2 1976:1 1987:2 1994:1 2026:1 2035:2 2064:1 2070:1 2086:1 2088:1 2105:2 2113:3 2116:2 2127:1 2138:2 2145:1 2161:1 2163:1 2166:1 2208:1 2210:2 2229:1 2245:4 2260:1 2264:1 2284:1 2285:3 2291:1 2295:1 2296:1 2301:1 2341:1 2354:5 2357:1 2379:1 2389:1 2395:2 2397:2 2403:1 2433:2 2435:8 2438:5 2442:1 2443:1 2450:1 2451:2 2452:3 2454:2 2455:1 2458:1 2463:1 2469:1 2472:2 2475:2 2500:1 2505:1 2507:2 2509:1 2512:2 2514:4 2517:1 2520:1 2525:2 2530:1 2531:2 2533:1 2535:3 2539:2 2542:3 2544:2 2546:1 2549:2 2552:1 2554:2 2557:1 2574:1 2576:1 2579:1 2582:1 2616:1 2629:1 2645:1 2658:1 2673:1 2676:1 2677:1 2718:1 2723:1 2741:1 2762:1 2767:1 2772:1 2773:1 2795:1 2801:1 2831:1 2833:1 2839:1 2853:1 2869:1 2870:1 2875:1 2893:3 2898:1 2902:1 2914:1 2923:1 2937:1 2948:1 2961:1 2963:2 2965:1 2970:2 2975:1 2977:1 3012:2 3015:1 3021:1 3029:1 3037:1 3050:1 3056:1 3063:1 3084:1 3087:2 3105:1 3120:1 3128:1 3159:3 3168:9 3169:2 3171:2 3181:1 3184:2 3185:3 3195:1 3204:1 3214:9 3250:1 3320:1 3347:2 3354:1 3361:1 3422:3 3453:1 3463:1 3501:1 3507:1 3537:1 3553:1 3597:1 3598:1 3607:2 3615:1 3625:3 3660:3 3695:3 3706:1 3711:1 3712:1 3719:1 3723:1 3751:1 3752:1 3780:1 3825:1 3835:1 3840:1 3885:2 3893:1 3901:2 3944:1 3952:2 3966:2 3970:2 3977:1 3991:1 4006:1 4009:1 4013:1 4015:1 4024:6 4042:1 4056:1 4059:1 4063:1 4065:1 4070:1 4075:2 4118:2 4126:2 4127:4 4160:1 4175:6 4176:1 4202:1 4207:1 4211:6 4213:1 4264:2 4279:1 4296:1 4306:1 4317:6 4335:1 4345:2 4346:2 4366:1 4375:1 4379:1 4391:1 4392:2 4395:1 4406:1 4414:2 4420:1 4423:2 4425:1 4443:1 4454:1 4472:1 4482:1 4508:1 4535:1 4562:1 4575:1 4587:1 4593:1 4626:1 4699:1 4702:1 4727:1 4730:1 4736:1 4768:1 4771:1 4776:1 4777:2 4780:1 4791:1 4794:1 4836:2 4838:1 4859:1 4860:1 4872:1 4917:1 4923:1 4958:1 4959:2 4993:1 4997:1 4999:2 5012:1 5027:1 5046:1 5055:1 5067:1 5078:2 5084:1 5086:1 5106:4 5122:1 5130:2 5131:1 5136:2 5186:1 5196:1 5215:1 5227:1 5245:1 5247:1 5283:1 5291:1 5306:1 5332:14 5333:1 5345:1 5349:1 5364:1 5372:1 5444:3 5448:7 5466:3 5467:2 5470:1 5472:1 5475:1 5476:1 5479:1 5480:1 5485:1 5487:2 5488:2 5490:3 5492:3 5495:1 5496:1 5508:2 5547:1 5577:1 5607:1 5619:1 5662:1 5678:4 5683:1 5693:1 5706:1 5710:1 5715:1 5720:1 5745:3 5748:1 5775:1 5800:2 5825:1 5839:1 5864:3 5901:1 5916:1 5924:1 5929:1 5931:4 5962:1 5977:1 5992:1 5998:1 6038:1 6039:2 6049:1 6057:2 6077:1 6086:1 6089:1 6095:1 6101:2 6107:1 6117:1 6120:1 6127:1 6137:3 6158:3 6189:1 6225:2 6244:1 6249:1 6268:1 6279:1 6280:1 6312:1 6319:1 6321:1 6323:1 6326:2 6350:1 6351:1 6359:1 6362:1 6375:1 6379:1 6387:2 6394:3 6400:2 6444:4 6445:2 6463:2 6467:2 6476:1 6477:2 6532:1 6542:1 6571:1 6584:1 6609:3 6612:1 6631:1 6652:2 6670:2 6674:1 6675:1 6702:1 6709:1 6711:1 6721:1 6727:2 6772:3 6779:1 6783:3 6829:1 6830:1 6841:1 6851:1 6856:3 6858:1 6869:1 6874:1 6890:1 6898:2 6910:1 6932:2 6933:2 6937:1 6949:3 6950:1 6951:1 6959:2 6963:1 6966:1 6967:1 6971:4 6973:2 6977:2 6979:5 6980:2 6982:4 7034:1 7036:1 7077:4 7097:1 7105:4 7120:2 7146:1 7169:1 7170:1 7215:1 7236:1 7262:1 7307:2 7328:1 7333:1 7344:1 7345:2 7353:1 7361:2 7362:1 7368:1 7391:1 7392:1 7396:1 7399:1 7401:1 7406:2 7430:2 7432:1 7433:1 7439:1 7456:1 7457:1 7461:1 7486:1 7489:2 7566:1 7567:1 7580:3 7581:1 7601:1 7615:3 7628:1 7634:1 7657:1 7688:1 7713:1 7717:2 7757:1 7763:1 7781:1 7799:6 7801:1 7813:1 7824:2 7826:1 7862:2 7879:1 7900:1 7937:1 7940:1 7941:1 7951:1 7971:2 7976:1 8000:1 8013:1 8019:1 8025:1 8051:1 8063:1 8064:1 8069:1 8088:1 8093:3 8122:3 8124:1 8128:3 8142:1 8144:1 8153:1 8154:1 8172:1 8192:1 8201:1 8207:2 8214:1 8223:1 8231:1 8241:1 8245:1 8250:1 8264:1 8276:1 8283:2 8285:1 8290:1 8304:1 8342:1 8349:1 8376:1 8377:4 8383:1 8391:9 8400:1 8410:2 8414:1 8416:4 8417:1 8443:1 8448:1 8457:32 8487:5 8490:11 8502:1 8518:1 8537:1 8541:2 8554:2 8558:1 8568:1 8629:1 8639:1 8699:1 8707:1 8721:1 8765:1 8787:3 8797:3 8803:1 8816:1 8851:1 8888:1 8896:1 8903:1 8907:1 8916:1 8929:1 8940:9 8947:2 8950:1 8955:1 8958:1 8983:1 9005:1 9019:27 9045:1 9072:1 9075:1 9089:1 9102:1 9164:1 9175:1 9205:1 9222:1 9226:1 9249:1 9258:5 9276:2 9279:1 9285:3 9294:1 9296:1 9299:3 9323:1 9329:1 9343:1 9348:1 9383:2 9391:1 9393:3 9398:1 9399:4 9401:1 9402:1 9408:2 9413:4 9423:1 9425:1 9428:2 9455:1 9490:2 9493:2 9495:1 9518:1 9554:3 9559:1 9590:1 9595:1 9643:1 9658:1 9682:1 9698:1 9707:2 9724:1 9736:3 9751:1 9763:1 9767:1 9769:1 9772:4 9798:1 9808:2 9816:1 9850:1 9851:1 9864:1 9869:1 9876:1 9885:1 9895:1 9898:1 9928:1 9931:2 9936:6 9940:4 9944:1 9948:1 9960:3 9974:1 9978:1 10002:1 10018:1 10028:1 10037:1 10054:1 10061:1 10086:1 10093:1 10114:1 10121:1 10178:1 10190:3 10193:1 10207:1 10212:1 10214:1 10215:1 10222:1 10237:1 10294:1 10297:1 10313:1 10334:1 10354:2 10363:1 10373:1 10381:1 10386:1 10393:3 10394:1 10405:1 10411:1 10423:1 10431:4 10449:1 10457:1 10458:1 10461:2 10474:3 10495:1 10504:1 10534:1 10547:4 10559:1 10563:3 10568:6 10583:3 10603:1 10649:1 10651:1 10663:2 10667:1 10678:2 10700:9 10709:1 10714:1 10715:1 10732:1 10740:1 10743:1 10749:1 10762:1 10764:1 10775:2 10781:1 10856:2 10864:1 10871:3 10872:1 10878:2 10895:1 10903:1 10925:2 10927:1 10929:2 10944:2 10962:1 10966:1 10972:1 10978:1 10986:2 11056:1 11071:2 11080:1 11082:2 11112:1 11116:1 11124:1 11140:1 11187:2 11196:2 11218:2 11228:1 11277:1 11284:1 11285:1 11292:2 11335:1 11351:3 11390:1 11416:4 11418:2 11425:1 11448:1 11493:2 11497:1 11514:1 11521:2 11523:1 11536:1 11548:3 11556:1 11557:1 11587:2 11599:1 11606:3 11608:1 11612:1 11615:1 11620:1 11625:1 11626:1 11629:1 11630:2 11641:1 11642:1 11671:3 11673:2 11690:1 11714:3 11723:1 11728:1 11734:1 11736:1 11738:1 11740:2 11744:4 11746:8 11785:1 11803:2 11818:1 11822:1 11829:1 11835:4 11845:1 11849:3 11877:1 11913:1 11926:1 11937:1 11952:1 11958:4 11961:2 11964:1 11968:1 12015:1 12024:3 12053:2 12063:1 12070:3 12094:1 12099:2 12101:1 12103:1 12105:1 12124:1 12126:1 12160:6 12166:2 12169:3 12192:1 12197:1 12221:1 12243:1 12256:1 12268:3 12273:2 12308:1 12309:1 12323:1 12334:1 12338:1 12339:1 12347:1 12359:1 12374:1 12377:1 12406:1 12422:1 12441:2 12445:7 12492:1 12512:2 12521:2 12524:2 12525:1 12539:1 12542:1 12545:3 12546:1 12584:1 12589:1 12590:1 12606:1 12621:1 12640:1 12646:2 12669:1 12675:1 12682:6 12684:3 12688:1 12706:1 12707:1 12721:2 12727:1 12739:1 12740:1 12743:1 12746:1 12750:1 12753:1 12758:1 12769:2 12772:1 12798:1 12799:1 12821:1 12822:1 12823:5 12839:3 12848:8 12896:1 12909:1 12917:1 12920:11 12966:1 12999:1 13015:1 13025:1 13035:1 13042:2 13055:4 13089:1 13093:1 13121:3 13143:1 13160:1 13178:3 13202:2 13215:1 13216:2 13226:2 13227:2 13230:1 13231:1 13242:1 13247:3 13250:3 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13352:1 13364:2 13386:3 13392:1 13455:1 13470:1 13519:1 13539:3 13547:1 13568:1 13620:1 13651:1 13656:2 13693:1 13732:1 13751:1 13809:1 13813:8 13816:1 13827:1 13839:1 13845:1 13858:1 13879:1 13899:11 13906:1 13926:1 13933:2 13960:2 13984:2 14023:1 14024:1 14101:1 14104:1 14113:1 14119:1 14121:4 14138:1 14140:2 14160:2 14178:1 14208:1 14230:2 14235:1 14257:4 14269:1 14272:1 14274:3 14280:3 14296:2 14303:8 14305:1 14307:1 14341:1 14345:1 14352:1 14369:1 14371:2 14399:2 14400:1 14431:1 14445:1 14446:8 14455:1 14464:1 14468:14 14471:1 14475:1 14505:1 14512:1 14520:1 14553:1 14567:3 14590:1 14618:2 14632:2 14655:1 14662:1 14680:1 14692:1 14704:1 14709:2 14714:2 14719:1 14744:1 14749:1 14790:1 14800:1 14864:1 14866:1 14868:1 14871:5 14872:1 14879:1 14897:2 14913:1 14931:1 14941:1 14947:1 14983:10 14995:1 14996:2 15018:1 15036:1 15037:2 15038:1 15067:2 15078:1 15091:2 15092:1 15094:1 15096:3 15104:1 15117:1 15171:5 15174:2 15196:2 15223:1 15236:1 15237:2 15297:1 15305:1 15308:2 15322:1 15344:2 15355:1 15387:1 15401:1 15435:1 15446:2 15448:1 15455:1 15460:1 15464:1 15465:1 15472:1 15474:1 15519:1 15522:1 15552:1 15561:1 15572:1 15593:1 15597:1 15598:1 15600:2 15604:1 15605:2 15615:1 15616:1 15623:1 15631:1 15647:1 15648:1 15654:2 15680:1 15698:1 15699:1 15702:4 15740:4 15762:1 15781:1 15804:1 15807:1 15815:1 15821:3 15830:1 15835:5 15848:2 15849:1 15860:1 15872:1 15873:1 15892:2 15903:1 15910:1 15926:2 15937:1 15941:1 15942:1 15954:1 15961:1 15971:1 15978:1 15991:1 16019:1 16030:1 16035:1 16048:1 16052:1 16112:1 16126:1 16149:1 16151:3 16156:1 16166:2 16178:1 16193:3 16198:1 16239:1 16243:1 16268:1 16272:1 16298:4 16304:1 16305:1 16319:1 16351:1 16355:1 16357:2 16358:2 16396:1 16408:1 16410:1 16412:1 16430:1 16437:1 16506:3 16515:1 16521:1 16545:3 16547:2 16549:1 16553:1 16588:1 16621:1 16629:1 16685:1 16711:1 16720:1 16723:1 16747:1 16762:1 16768:1 16771:28 16808:1 16811:1 16822:1 16865:1 16870:1 16876:1 16901:1 16914:2 16919:1 16950:1 16981:1 16999:1 17029:1 17030:4 17036:1 17039:2 17040:1 17041:2 17046:1 17047:1 17053:1 17059:2 17065:1 17066:1 17069:1 17071:6 17072:1 17079:1 17087:1 17125:2 17127:1 17184:1 17185:1 17215:5 17216:5 17236:1 17243:1 17255:3 17270:1 17288:1 17319:1 17321:2 17335:1 17348:1 17360:2 17377:1 17382:1 17398:1 17405:1 17421:1 17446:1 17469:2 17473:2 17477:1 17478:1 17500:1 17505:1 17507:6 17514:1 17521:1 17549:1 17557:1 17559:1 17562:1 17563:1 17570:1 17571:4 17593:1 17602:2 17609:1 17622:1 17625:1 17632:1 17633:2 17637:1 17638:3 17639:2 17641:2 17643:1 17646:3 17647:1 17651:1 17653:1 17656:4 17658:1 17660:1 17662:5 17666:1 17678:1 17690:1 17695:3 17717:1 17731:1 17784:1 17864:1 17902:1 17932:1 17937:1 17987:1 18039:2 18054:1 18068:1 18099:1 18102:1 18107:1 18115:2 18122:2 18123:1 18130:2 18141:1 18192:1 18199:2 18202:2 18212:1 18225:2 18228:5 18238:2 18243:1 18260:1 18266:1 18277:2 18310:1 18326:2 18328:1 18343:3 18347:1 18352:9 18355:2 18382:1 18409:2 18412:1 18418:1 18420:2 18429:2 18430:3 18454:2 18465:2 18488:2 18492:2 18494:2 18498:1 18521:1 18531:1 18533:1 18537:1 18566:1 18569:1 18574:1 18575:1 18583:1 18587:1 18589:1 18594:1 18596:1 18597:1 18608:1 18620:1 18623:1 18650:1 18684:1 18694:1 18696:1 18709:1 18727:2 18730:1 18732:1 18738:1 18750:3 18752:1 18765:2 18802:1 18810:1 18817:1 18823:1 18839:1 18847:1 18867:1 18872:1 18873:1 18890:1 18906:1 18913:1 18918:2 18928:2 18972:1 18975:1 18978:2 18997:1 18998:1 19000:1 19001:1 19043:1 19044:2 19068:2 19078:2 19084:1 19087:1 19122:1 19130:1 19133:1 19137:1 19153:2 19157:1 19164:2 19183:1 19194:1 19205:1 19207:2 19212:1 19214:1 19222:1 19235:1 19249:6 19271:1 19286:1 19287:1 19292:3 19294:1 19319:1 19324:2 19351:3 19353:1 19357:2 19369:1 19371:1 19391:2 19393:1 19408:1 19418:1 19428:1 19429:1 19437:1 19441:1 19443:4 19449:3 19450:1 19454:1 19463:1 19480:1 19486:1 19494:1 19496:1 19498:1 19518:8 19530:1 19549:2 19551:2 19583:1 19595:1 19596:1 19601:1 19617:1 19642:1 19665:1 19698:1 19709:1 19711:1 19716:1 19720:1 19722:1 19756:1 19762:1 19774:1 19781:1 19787:1 19792:2 19824:1 19827:1 19837:1 19852:2 19862:1 19946:3 19951:1 19981:7 19990:1 19992:2 19994:1 20000:1 20059:1 20061:1 20067:1 20068:1 20105:1 20113:1 20190:1 20196:2114 20200:2 20218:3 20229:1 20232:1 20249:1 20252:1 20270:1 20284:1 20286:1 20289:1 20304:1 20328:1 20339:1 20341:1 20347:2 20353:1 20386:1 20398:1 20399:1 20412:1 20422:1 20423:1 20436:4 20444:1 20449:3 20451:2 20453:1 20463:2 20482:1 20510:1 20524:1 20530:2 20555:1 20557:1 20604:1 20633:1 20673:1 20696:3 20712:1 20757:1 20761:2 20781:1 20819:1 20832:2 20839:1 20850:1 20858:1 20897:1 20914:1 20917:1 20954:1 20955:2 20978:3 21004:4 21015:1 21027:2 21041:2 21042:1 21056:1 21060:1 21066:1 21067:2 21105:1 21106:5 21119:1 21127:3 21129:1 21130:1 21136:1 21158:1 21167:8 21173:1 21192:1 21218:1 21229:1 21262:1 21267:1 21318:1 21323:1 21360:1 21363:1 21374:1 21404:1 21406:1 21429:1 21434:2 21456:1 21465:1 21472:1 21475:1 21482:1 21491:2 21492:3 21500:4 21506:1 21541:2 21542:1 21548:3 21560:1 21567:1 21590:1 21603:2 21623:1 21626:1 21634:1 21658:1 21679:1 21680:1 21705:1 21721:1 21742:1 21755:1 21763:8 21766:3 21769:1 21773:1 21799:1 21806:1 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:5 21867:2 21873:2 21892:1 21894:1 21904:1 21915:2 21920:1 21937:7 21944:3 21960:1 21971:1 21990:1 21991:1 22002:1 22010:1 22025:2 22047:1 22056:1 22068:1 22098:1 22109:1 22112:1 22115:1 22162:1 22184:3 22194:2 22195:1 22204:1 22225:1 22228:6 22230:5 22240:1 22242:2 22285:1 22302:1 22306:1 22311:1 22319:1 22348:2 22351:1 22353:1 22384:1 22393:1 22422:1 22434:1 22460:1 22461:1 22479:1 22482:1 22485:1 22502:1 22507:1 22518:1 22521:1 22526:1 22528:1 22550:1 22554:1 22564:1 22581:1 22590:4 22614:1 22626:1 22632:1 22639:2 22643:2 22657:1 22666:1 22677:2 22719:1 22734:3 22739:1 22786:1 22796:10 22803:2 22809:2 22813:1 22822:4 22834:1 22853:1 22861:1 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22901:1 22918:1 22928:1 22941:1 22951:1 22960:2 22972:1 22991:1 23005:1 23017:1 23063:1 23067:1 23092:5 23119:2 23131:1 23136:3 23141:1 23146:2 23149:1 23185:1 23219:1 23228:1 23229:1 23234:1 23239:1 23249:1 23256:1 23258:4 23260:1 23261:1 23264:1 23274:1 23275:1 23281:1 23307:1 23322:1 23334:1 23338:1 23342:3 23349:1 23360:1 23377:1 23389:1 23396:2 23420:2 23436:2 23438:2 23442:2 23491:1 23500:2 23503:2 23515:3 23531:1 23551:1 23552:2 23557:1 23558:1 23613:1 23615:1 23617:1 23652:1 23664:1 23665:1 23676:1 23686:3 23687:3 23689:3 23696:1 23697:1 23700:1 23715:1 23718:2 23722:1 23731:1 23732:2 23746:1 23749:1 23765:2 23775:1 23796:1 23826:2 23862:1 23863:3 23872:1 23885:1 23893:1 23901:3 23905:2 23916:3 23935:1 23953:1 23977:1 23983:1 23994:2 24025:1 24042:1 24053:1 24068:2 24070:1 24079:2 24087:1 24088:4 24093:1 24095:1 24126:1 24132:1 24148:1 24157:1 24161:2 24166:2 24172:1 24173:1 24182:2 24218:1 24233:1 24244:1 24245:1 24261:1 24272:1 24287:1 24294:1 24298:1 24311:2 24327:1 24343:1 24357:3 24361:1 24363:2 24375:3 24379:1 24414:1 24425:1 24451:1 24452:1 24488:1 24489:1 24503:1 24506:1 24534:3 24539:1 24544:1 24548:1 24563:1 24566:1 24584:1 24594:1 24599:2 24610:2 24611:1 24612:2 24616:1 24617:1 24619:1 24625:1 24633:1 24638:1 24640:1 24652:3 24655:1 24664:2 24672:3 24690:1 24714:2 24718:2 24725:1 24727:2 24731:1 24761:1 24766:1 24778:1 24786:1 24794:1 24819:3 24846:1 24865:4 24883:1 24913:3 24916:3 24957:2 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25079:1 25080:1 25140:1 25152:1 25166:1 25171:2 25185:3 25188:1 25193:4 25203:1 25204:1 25210:2 25247:1 25263:1 25266:1 25274:1 25276:3 25280:1 25294:3 25298:3 25305:1 25308:1 25346:1 25351:1 25359:1 25364:1 25372:1 25373:2 25394:1 25395:1 25396:2 25417:1 25421:1 25431:1 25438:1 25441:1 25465:6 25469:1 25473:3 25490:1 25498:1 25534:3 25559:1 25560:2 25566:1 25593:1 25606:1 25648:2 25649:1 25665:1 25684:3 25691:1 25705:1 25779:2 25802:1 25817:3 25865:1 25909:1 25910:8 25996:1 25997:1 26016:2 26050:2 26057:1 26058:1 26064:1 26071:1 26084:1 26098:1 26111:2 26136:1 26142:1 26151:3 26160:1 26170:2 26172:7 26174:1 26177:1 26179:1 26197:1 26201:1 26202:1 26215:1 26219:1 26221:2 26236:1 26245:1 26248:1 26270:1 26334:1 26347:1 26386:1 26397:1 26398:1 26399:1 26405:1 26406:1 26408:1 26409:1 26413:1 26427:1 26468:1 26470:1 26483:3 26485:1 26487:2 26489:1 26490:4 26496:1 26497:1 26510:1 26518:4 26535:5 26536:1 26552:1 26575:1 26576:1 26597:1 26603:1 26607:1 26608:1 26626:1 26631:2 26638:1 26645:2 26654:2 26657:1 26678:1 26684:2 26719:1 26750:1 26754:1 26783:1 26793:1 26799:2 26836:1 26847:1 26861:2 26870:1 26895:3 26916:6 26958:1 26967:1 26968:1 26986:1 26991:6 26999:1 27000:1 27002:1 27005:1 27019:1 27043:2 27044:1 27137:1 27195:1 27213:1 27242:2 27244:6 27245:1 27265:3 27276:1 27277:1 27290:2 27296:1 27297:1 27305:2 27353:1 27360:1 27384:1 27402:1 27457:1 27471:1 27472:1 27474:1 27482:1 27507:1 27509:1 27510:1 27512:1 27518:1 27534:1 27544:1 27584:1 27586:1 27599:1 27600:3 27614:1 27646:1 27653:1 27673:1 27693:1 27734:1 27750:1 27770:1 27801:5 27802:1 27804:5 27814:1 27869:1 27910:2 27930:1 27952:4 27956:1 27957:1 27976:1 27999:1 28013:1 28018:1 28073:1 28076:2 28091:1 28105:1 28112:1 28119:1 28131:3 28150:1 28152:1 28154:1 28159:3 28166:1 28180:1 28192:1 28208:1 28215:1 28219:1 28222:4 28235:1 28245:1 28276:1 28291:1 28308:6 28309:1 28326:2 28349:1 28366:1 28391:3 28403:1 28405:2 28429:2 28434:1 28462:1 28484:1 28495:1 28507:1 28511:1 28516:1 28517:1 28533:1 28554:1 28578:1 28581:2 28589:1 28600:1 28602:1 28607:1 28611:1 28619:2 28623:3 28624:1 28644:2 28664:2 28675:1 28678:1 28680:1 28687:1 28703:4 28747:2 28756:2 28767:1 28782:1 28803:1 28855:1 28867:1 28874:1 28912:1 28916:2 28989:1 28991:1 29013:1 29104:1 29109:1 29117:1 29142:1 29149:2 29150:1 29209:1 29243:1 29268:1 29274:1 29282:2 29288:1 29292:3 29314:1 29315:2 29319:1 29325:1 29340:1 29342:1 29353:1 29355:1 29372:3 29390:1 29391:1 29400:1 29403:1 29411:4 29417:1 29425:1 29468:1 29479:1 29482:6 29486:1 29509:1 29520:1 29550:1 29576:4 29587:2 29588:2 29596:1 29599:1 29601:2 29605:1 29615:1 29627:1 29637:1 29653:1 29658:2 29667:1 29668:1 29684:2 29686:2 29689:1 29696:1 29697:1 29699:1 29706:1 29714:1 29718:1 29754:2 29760:1 29789:2 29794:1 29795:1 29814:1 29816:3 29828:1 29833:1 29848:1 29852:1 29862:1 29867:1 29916:1 29918:1 29932:1 29934:2 29938:1 29956:4 29971:1 29979:1 29989:1 29991:2 29995:1 30016:2 30031:2 30041:1 30044:1 30045:6 30064:2 30067:1 30097:1 30149:1 30188:1 30240:3 30282:1 30289:1 30319:3 30331:2 30336:1 30368:1 30372:1 30390:4 30392:1 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30479:18 30480:1 30502:1 30530:1 30537:10 30543:1 30546:1 30548:1 30550:2 30581:1 30602:1 30623:1 30630:2 30655:1 30661:1 30670:3 30675:3 30711:8 30713:1 30747:1 30764:2 30768:1 30805:2 30809:1 30810:1 30815:1 30818:1 30820:1 30846:2 30876:1 30882:2 30888:1 30903:2 30933:1 30956:1 30988:1 30996:1 31026:1 31041:4 31043:3 31104:1 31114:1 31115:1 31118:1 31121:1 31125:2 31132:1 31135:1 31143:1 31231:1 31253:4 31265:1 31267:1 31268:1 31272:10 31288:1 31291:1 31306:1 31309:1 31310:2 31316:1 31337:1 31342:1 31362:1 31369:1 31380:1 31413:1 31437:1 31444:1 31458:1 31465:1 31477:1 31495:1 31496:1 31506:3 31514:2 31550:1 31612:2 31652:1 31659:1 31666:1 31667:1 31679:1 31681:1 31689:1 31705:1 31713:2 31718:1 31742:1 31750:1 31756:1 31765:1 31780:1 31781:1 31785:1 31794:4 31801:1 31802:1 31803:2 31815:1 31823:1 31826:1 31851:1 31852:1 31866:1 31873:1 31882:1 31886:1 31890:3 31891:1 31896:2 31898:4 31902:1 31905:1 31907:2 31911:1 31914:1 31934:1 31958:1 31962:3 31965:1 31970:1 31977:1 31978:1 31998:1 32007:1
20 9:1 18:1 21:1 23:1 26:2 30:1 31:1 46:1 61:1 75:1 78:1 90:7 95:1 103:1 111:1 120:1 123:1 158:1 169:1 181:1 184:1 193:1 197:1 211:1 253:3 261:2 274:2 278:1 290:3 292:1 307:1 331:1 355:2 358:1 385:1 404:1 406:2 421:1 448:1 468:1 482:1 489:3 536:1 540:2 564:1 596:1 602:1 622:1 623:3 631:1 635:1 652:2 664:2 668:1 696:2 701:1 704:3 755:1 770:1 794:1 822:1 892:1 913:1 956:2 959:1 971:2 977:1 990:1 995:1 996:4 1000:1 1011:1 1025:1 1034:3 1054:1 1057:1 1063:3 1064:1 1066:1 1067:5 1069:4 1079:1 1095:1 1098:1 1108:4 1124:1 1135:3 1136:3 1143:2 1149:1 1158:1 1167:1 1198:1 1200:2 1205:1 1226:1 1255:1 1262:1 1281:1 1292:4 1305:4 1339:1 1341:1 1350:1 1353:1 1366:1 1368:1 1371:1 1380:1 1389:1 1402:1 1406:1 1407:1 1420:1 1426:1 1427:1 1430:1 1446:1 1458:1 1491:1 1511:1 1533:1 1549:1 1563:1 1576:1 1582:2 1594:2 1599:1 1608:1 1610:1 1630:1 1631:1 1633:4 1641:3 1651:4 1662:1 1668:1 1670:1 1671:1 1678:1 1691:3 1719:14 1722:2 1725:7 1729:1 1737:2 1741:1 1746:1 1756:1 1757:2 1759:2 1778:1 1799:1 1800:1 1805:1 1811:9 1827:1 1829:1 1840:1 1855:1 1863:1 1876:1 1877:1 1903:2 1945:1 1967:1 1968:5 1973:2 1976:1 1987:2 1994:1 2026:1 2035:2 2061:1 2064:1 2070:1 2086:1 2088:1 2105:2 2113:3 2116:2 2127:1 2138:2 2145:1 2161:1 2163:1 2166:1 2208:1 2210:2 2229:1 2245:4 2260:1 2264:1 2284:1 2285:3 2291:1 2295:1 2296:1 2301:1 2341:1 2354:5 2357:1 2379:1 2389:1 2395:2 2397:2 2403:1 2433:2 2435:8 2438:5 2442:1 2443:1 2450:1 2451:2 2452:3 2454:2 2455:1 2458:1 2463:1 2469:1 2471:1 2472:2 2475:2 2500:1 2505:1 2507:2 2509:1 2512:2 2514:4 2517:1 2520:1 2525:2 2530:1 2531:2 2533:1 2535:3 2539:2 2542:3 2544:2 2546:1 2549:2 2552:1 2554:2 2557:1 2574:1 2576:1 2579:1 2582:1 2616:1 2629:1 2639:1 2645:1 2650:1 2658:1 2673:1 2676:1 2677:1 2718:1 2723:1 2741:1 2762:1 2767:1 2772:1 2773:1 2795:1 2801:1 2831:1 2833:1 2839:1 2853:1 2869:1 2870:1 2875:1 2893:3 2898:1 2902:1 2914:1 2923:1 2937:1 2948:1 2961:1 2963:2 2965:1 2970:2 2975:1 2977:1 2986:1 3012:2 3015:1 3021:1 3029:1 3037:1 3045:1 3050:1 3056:1 3063:1 3084:1 3087:2 3105:1 3120:1 3128:1 3159:3 3164:1 3168:9 3169:2 3171:2 3181:1 3184:2 3185:3 3195:1 3201:1 3204:1 3214:9 3250:1 3320:1 3347:2 3354:1 3361:1 3422:3 3453:1 3463:1 3501:1 3507:1 3537:1 3553:1 3597:1 3598:1 3607:2 3615:1 3625:3 3660:3 3674:1 3695:3 3706:1 3711:1 3712:1 3719:1 3723:1 3751:1 3752:1 3780:1 3825:1 3835:1 3840:1 3846:1 3873:1 3885:2 3893:1 3901:2 3944:1 3952:3 3966:2 3970:2 3977:1 3991:2 4006:1 4009:1 4013:1 4015:1 4024:6 4042:1 4056:1 4059:1 4063:1 4065:1 4070:1 4075:3 4118:2 4126:2 4127:4 4160:1 4175:6 4176:1 4202:1 4207:1 4211:6 4213:1 4261:1 4264:2 4279:1 4296:1 4306:1 4317:6 4335:1 4345:2 4346:2 4366:1 4375:1 4379:1 4391:1 4392:2 4395:1 4406:1 4414:2 4420:1 4423:2 4425:1 4443:1 4454:1 4472:1 4482:1 4508:1 4535:1 4562:1 4575:1 4587:1 4593:1 4626:1 4699:1 4702:1 4727:1 4730:1 4736:1 4768:1 4771:1 4776:1 4777:2 4780:1 4791:1 4794:1 4836:2 4838:1 4859:1 4860:1 4870:1 4872:1 4917:1 4923:1 4958:1 4959:2 4993:1 4997:1 4999:2 5012:1 5027:1 5046:1 5055:1 5067:1 5078:2 5084:1 5086:1 5106:4 5122:1 5130:2 5131:1 5136:2 5184:1 5186:1 5196:1 5215:1 5227:1 5245:1 5247:1 5283:1 5291:1 5296:1 5306:1 5332:14 5333:1 5345:1 5349:1 5364:1 5372:1 5444:3 5448:7 5466:3 5467:2 5470:1 5472:1 5475:1 5476:1 5479:1 5480:1 5485:1 5487:2 5488:2 5490:4 5492:3 5495:1 5496:1 5508:2 5547:1 5577:1 5607:1 5619:1 5662:1 5678:4 5683:1 5693:1 5706:1 5710:1 5715:1 5720:1 5745:3 5748:1 5775:1 5800:2 5825:1 5839:1 5864:3 5901:1 5916:1 5924:1 5929:1 5931:4 5962:1 5977:1 5992:1 5997:2 5998:1 6018:1 6038:1 6039:2 6049:1 6057:2 6077:1 6086:1 6089:1 6095:1 6101:2 6107:1 6117:1 6120:1 6127:1 6137:3 6158:3 6189:1 6225:2 6244:1 6249:1 6250:1 6268:1 6279:1 6280:1 6312:1 6319:1 6321:1 6323:1 6326:2 6350:1 6351:1 6359:1 6362:1 6375:1 6379:1 6387:2 6394:3 6400:2 6444:4 6445:3 6463:2 6467:2 6476:1 6477:2 6532:1 6542:1 6571:1 6584:1 6609:5 6612:1 6631:1 6652:2 6664:1 6670:2 6674:1 6675:1 6682:1 6702:1 6709:1 6711:1 6721:1 6727:2 6772:3 6779:1 6783:3 6829:1 6830:1 6841:1 6851:1 6856:3 6858:1 6869:1 6874:1 6890:1 6898:2 6910:1 6932:2 6933:2 6937:1 6949:3 6950:1 6951:1 6959:2 6963:1 6966:1 6967:1 6971:4 6973:2 6977:2 6979:5 6980:2 6982:4 7005:1 7034:1 7036:1 7077:4 7097:1 7105:4 7120:2 7146:1 7169:1 7170:1 7187:1 7215:1 7236:1 7262:1 7307:2 7328:1 7333:1 7344:1 7345:2 7353:1 7361:2 7362:1 7368:1 7391:1 7392:1 7396:1 7399:1 7401:1 7406:2 7430:2 7432:1 7433:1 7439:1 7456:1 7457:1 7461:1 7486:1 7489:2 7566:1 7567:1 7580:3 7581:1 7601:1 7615:3 7624:1 7628:1 7634:1 7657:1 7688:1 7713:1 7717:2 7757:1 7763:1 7781:1 7799:9 7801:1 7813:1 7824:2 7826:1 7862:2 7879:1 7900:1 7937:1 7940:1 7941:1 7951:1 7971:2 7976:1 8000:1 8013:1 8019:1 8025:1 8051:1 8063:1 8064:1 8069:1 8088:1 8093:3 8122:3 8124:1 8128:3 8142:1 8144:1 8153:1 8154:1 8172:1 8192:1 8201:1 8207:2 8214:1 8223:1 8231:1 8241:1 8245:1 8250:1 8264:1 8276:1 8283:2 8285:1 8289:1 8290:1 8304:1 8342:1 8349:1 8376:1 8377:4 8383:1 8391:10 8400:1 8410:2 8414:1 8416:4 8417:1 8443:1 8448:1 8457:32 8487:5 8490:11 8502:1 8518:1 8537:1 8541:2 8554:2 8558:1 8568:1 8629:1 8639:1 8699:1 8707:1 8720:1 8721:1 8765:1 8787:3 8797:3 8803:1 8816:1 8851:1 8888:1 8896:1 8903:1 8907:1 8916:1 8929:1 8940:9 8947:2 8950:1 8955:1 8958:1 8983:1 9005:1 9019:27 9045:1 9072:1 9075:1 9089:1 9102:1 9151:1 9164:1 9175:1 9205:1 9222:1 9226:1 9249:1 9258:5 9276:2 9279:1 9285:3 9293:1 9294:1 9296:1 9299:3 9323:1 9329:1 9343:1 9348:1 9363:1 9383:2 9391:1 9393:3 9398:2 9399:4 9401:1 9402:1 9408:2 9413:4 9423:1 9425:1 9428:2 9455:1 9480:1 9490:2 9493:2 9495:1 9496:1 9518:1 9554:3 9559:1 9590:1 9595:1 9643:1 9658:1 9682:1 9698:1 9707:2 9724:2 9736:3 9751:1 9763:1 9767:1 9769:1 9772:4 9798:1 9808:2 9816:1 9850:1 9851:1 9864:1 9869:1 9876:1 9885:2 9895:1 9898:1 9928:1 9931:2 9936:6 9940:4 9944:1 9948:1 9960:3 9974:1 9978:1 10002:1 10018:1 10028:1 10037:1 10043:1 10054:1 10061:1 10086:1 10093:1 10114:1 10121:1 10178:1 10190:3 10193:1 10207:1 10212:1 10214:1 10215:1 10222:1 10237:1 10294:1 10297:1 10313:1 10334:1 10354:2 10363:1 10373:1 10381:1 10386:1 10393:3 10394:1 10405:1 10411:1 10423:1 10431:4 10449:1 10457:1 10458:1 10461:2 10474:3 10495:1 10504:1 10534:1 10547:4 10559:1 10563:3 10568:6 10583:3 10603:1 10649:1 10651:1 10663:2 10667:1 10678:2 10700:11 10709:1 10714:1 10715:1 10732:1 10740:1 10743:1 10749:1 10762:1 10764:1 10775:2 10781:1 10856:2 10864:1 10871:3 10872:1 10878:2 10895:1 10903:1 10925:2 10927:1 10929:2 10944:2 10962:1 10966:1 10972:1 10978:1 10986:2 11056:1 11071:2 11080:1 11082:2 11112:1 11116:1 11124:1 11140:1 11187:2 11196:2 11218:2 11228:1 11277:1 11284:1 11285:1 11292:2 11335:1 11351:3 11390:1 11416:4 11418:3 11425:1 11448:1 11493:2 11497:1 11514:1 11521:3 11523:1 11536:1 11548:3 11556:1 11557:1 11587:2 11599:1 11606:3 11608:1 11612:1 11615:1 11620:1 11625:1 11626:1 11629:1 11630:2 11641:1 11642:1 11671:3 11673:2 11690:1 11714:3 11723:1 11728:1 11734:1 11736:1 11738:1 11740:2 11744:4 11746:8 11785:1 11803:2 11818:1 11822:1 11829:1 11834:1 11835:4 11845:1 11849:3 11877:1 11913:1 11926:1 11937:1 11952:1 11958:4 11961:2 11964:1 11968:1 12015:1 12024:3 12053:2 12063:1 12070:3 12094:1 12099:2 12101:1 12103:1 12105:1 12124:1 12126:1 12160:6 12166:2 12169:3 12192:1 12197:1 12221:1 12243:1 12256:1 12268:3 12273:2 12308:1 12309:1 12323:1 12334:1 12338:1 12339:1 12347:1 12359:1 12374:1 12377:1 12406:1 12422:1 12441:2 12445:7 12492:1 12512:2 12521:2 12524:2 12525:1 12539:1 12542:1 12545:3 12546:1 12584:1 12589:1 12590:1 12606:1 12621:1 12640:1 12646:2 12669:1 12675:1 12682:7 12684:3 12688:1 12706:1 12707:1 12721:2 12727:1 12739:1 12740:1 12743:1 12746:1 12748:1 12750:1 12753:1 12758:1 12761:1 12769:2 12772:1 12791:1 12798:1 12799:1 12821:1 12822:1 12823:5 12839:3 12848:8 12896:1 12903:1 12909:1 12917:1 12920:11 12966:1 12999:1 13015:1 13025:1 13035:1 13042:2 13055:4 13057:1 13089:1 13093:1 13121:3 13143:1 13160:1 13178:3 13202:2 13215:1 13216:2 13226:3 13227:3 13230:1 13231:1 13240:1 13242:1 13247:3 13250:3 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13352:1 13364:2 13386:3 13392:1 13455:1 13468:1 13470:1 13519:1 13539:3 13547:1 13568:1 13620:1 13651:1 13656:2 13693:1 13732:1 13751:1 13809:1 13813:8 13816:1 13827:2 13839:1 13845:1 13858:1 13879:1 13899:11 13906:1 13926:1 13933:2 13960:2 13984:2 14023:1 14024:1 14101:1 14104:1 14113:1 14119:1 14121:4 14138:1 14140:2 14160:2 14178:1 14208:1 14230:2 14235:1 14257:4 14269:1 14272:1 14274:3 14280:3 14296:3 14303:8 14305:1 14307:1 14341:1 14345:1 14352:1 14369:1 14371:2 14399:2 14400:1 14431:1 14445:1 14446:8 14455:1 14464:1 14468:14 14471:1 14475:1 14505:1 14512:1 14520:1 14553:1 14567:4 14590:1 14618:2 14632:2 14655:1 14662:1 14680:1 14692:1 14704:1 14709:2 14714:2 14719:1 14744:1 14749:1 14790:1 14800:1 14864:1 14866:1 14868:1 14871:5 14872:1 14879:1 14897:2 14913:1 14931:1 14941:1 14947:1 14983:10 14995:1 14996:2 15018:1 15036:1 15037:2 15038:1 15067:2 15078:1 15091:2 15092:1 15094:1 15096:3 15104:1 15117:1 15171:5 15174:2 15196:2 15223:1 15236:1 15237:2 15297:1 15305:1 15308:2 15322:1 15344:2 15355:1 15387:1 15401:1 15435:1 15446:2 15448:1 15455:1 15460:1 15464:1 15465:1 15472:1 15474:1 15519:1 15522:1 15552:1 15561:1 15572:1 15593:1 15597:1 15598:1 15600:2 15604:1 15605:2 15615:1 15616:1 15623:1 15631:1 15647:1 15648:1 15654:2 15680:1 15698:1 15699:1 15702:4 15740:4 15762:1 15781:1 15804:1 15807:1 15815:1 15821:3 15830:1 15835:5 15848:2 15849:1 15860:1 15872:1 15873:1 15892:2 15903:1 15910:1 15926:2 15937:1 15941:1 15942:1 15954:1 15961:1 15971:1 15978:1 15991:1 16019:1 16030:1 16035:1 16048:1 16052:1 16112:1 16126:1 16149:1 16151:3 16156:1 16166:3 16178:1 16193:3 16198:1 16239:1 16243:1 16268:1 16272:1 16298:4 16304:1 16305:1 16319:1 16351:1 16355:1 16357:2 16358:2 16396:1 16408:1 16410:1 16412:1 16430:1 16437:1 16506:3 16515:1 16521:1 16545:3 16547:2 16549:1 16553:1 16588:1 16621:1 16629:1 16631:1 16685:1 16711:1 16720:1 16723:1 16747:1 16762:1 16768:1 16771:29 16808:2 16811:1 16822:1 16851:1 16865:1 16870:1 16876:1 16883:1 16901:1 16914:2 16919:1 16950:1 16981:1 16999:1 17029:1 17030:4 17036:1 17039:2 17040:1 17041:2 17046:1 17047:1 17053:1 17059:2 17065:1 17066:1 17069:1 17071:6 17072:1 17079:1 17087:1 17125:2 17127:1 17184:1 17185:1 17186:1 17215:5 17216:5 17236:1 17243:1 17255:3 17270:1 17288:1 17319:1 17321:2 17335:1 17348:1 17360:3 17377:1 17382:1 17398:1 17405:1 17421:1 17446:1 17469:2 17473:2 17477:1 17478:1 17500:1 17505:1 17507:6 17514:1 17521:1 17549:1 17557:1 17559:1 17562:1 17563:1 17570:1 17571:4 17593:1 17602:2 17608:1 17609:1 17622:1 17625:1 17632:1 17633:2 17637:1 17638:3 17639:2 17641:2 17643:1 17646:3 17647:1 17651:1 17653:1 17656:4 17658:1 17660:1 17662:5 17666:1 17678:1 17690:1 17695:3 17717:1 17731:1 17784:1 17819:1 17864:1 17902:1 17932:1 17937:1 17987:1 18039:2 18054:1 18068:1 18099:1 18102:1 18107:1 18115:2 18122:2 18123:1 18130:2 18141:1 18192:1 18199:2 18202:2 18212:1 18225:2 18228:5 18238:2 18243:1 18260:1 18266:1 18277:2 18310:1 18326:2 18328:1 18343:3 18347:1 18352:9 18355:2 18382:1 18409:2 18412:1 18418:1 18420:2 18429:2 18430:3 18454:2 18465:2 18488:2 18492:2 18494:2 18498:1 18521:1 18531:1 18533:1 18537:1 18566:1 18569:1 18574:1 18575:1 18583:1 18587:1 18589:1 18594:1 18596:1 18597:1 18608:1 18620:1 18623:1 18650:1 18684:1 18694:1 18696:1 18709:1 18727:2 18730:1 18732:1 18738:1 18750:3 18752:1 18765:2 18802:1 18804:1 18810:1 18817:1 18823:1 18839:1 18847:1 18867:1 18872:1 18873:1 18890:1 18906:1 18913:1 18918:2 18928:2 18972:1 18975:1 18978:2 18997:1 18998:1 19000:1 19001:1 19043:1 19044:2 19068:2 19078:2 19084:1 19087:1 19122:1 19130:1 19133:1 19137:1 19153:2 19157:1 19164:2 19183:1 19194:1 19205:1 19207:2 19212:1 19214:1 19222:1 19235:1 19249:6 19271:1 19286:1 19287:1 19292:3 19294:1 19319:1 19324:2 19350:1 19351:3 19353:1 19357:2 19369:1 19371:1 19372:1 19391:2 19393:1 19408:1 19418:1 19428:1 19429:1 19437:1 19441:1 19443:4 19449:3 19450:1 19454:1 19463:1 19480:1 19486:1 19494:1 19496:1 19498:1 19518:8 19530:1 19549:2 19551:2 19583:1 19595:1 19596:1 19601:1 19617:1 19642:1 19665:1 19698:1 19709:1 19711:1 19716:1 19720:1 19722:1 19756:1 19762:1 19774:1 19781:1 19787:1 19792:2 19808:1 19824:1 19827:1 19837:1 19852:2 19862:1 19946:3 19951:1 19981:7 19990:1 19992:2 19994:1 20000:1 20059:1 20061:1 20067:1 20068:1 20105:1 20113:1 20190:1 20196:2142 20200:2 20218:3 20229:1 20232:1 20249:1 20252:1 20270:1 20284:1 20286:1 20289:1 20304:1 20328:1 20339:1 20341:1 20347:2 20353:1 20386:1 20398:1 20399:1 20412:1 20422:1 20423:1 20436:5 20444:1 20449:3 20451:2 20453:1 20463:2 20482:1 20510:1 20524:1 20530:2 20555:1 20557:1 20604:1 20633:1 20673:1 20684:1 20696:3 20712:1 20757:1 20761:2 20781:1 20819:1 20832:2 20839:1 20850:1 20858:1 20897:1 20914:1 20917:1 20954:1 20955:2 20978:3 21004:4 21015:1 21027:2 21041:2 21042:1 21056:1 21060:1 21066:1 21067:2 21105:1 21106:5 21119:1 21127:3 21129:1 21130:1 21136:1 21158:1 21167:8 21173:1 21192:1 21218:1 21229:1 21262:1 21267:1 21318:1 21323:1 21360:1 21363:1 21374:1 21404:1 21406:1 21429:1 21434:2 21456:1 21465:1 21472:1 21475:1 21482:1 21491:2 21492:3 21500:4 21506:1 21515:1 21541:2 21542:1 21548:3 21560:1 21567:1 21590:1 21603:2 21623:1 21626:1 21634:1 21658:1 21679:1 21680:1 21705:1 21721:1 21742:1 21755:1 21763:9 21766:3 21769:1 21773:1 21799:1 21806:1 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:5 21867:2 21873:2 21892:1 21894:1 21904:1 21915:2 21920:1 21937:7 21944:3 21960:1 21971:1 21990:1 21991:1 22002:1 22010:1 22019:1 22025:2 22047:1 22056:1 22068:1 22098:1 22109:1 22112:1 22115:1 22162:1 22184:3 22194:2 22195:1 22204:1 22225:1 22228:6 22230:5 22240:1 22242:2 22285:1 22302:1 22306:1 22311:1 22319:1 22348:2 22351:1 22353:1 22384:1 22393:1 22422:1 22434:1 22460:1 22461:1 22479:1 22482:1 22485:1 22502:1 22507:1 22515:1 22518:1 22521:1 22526:1 22528:1 22550:1 22554:1 22564:1 22569:1 22581:1 22590:4 22614:1 22626:1 22632:1 22639:2 22643:2 22657:1 22666:1 22677:2 22719:1 22734:3 22739:1 22786:1 22796:10 22803:2 22809:2 22813:1 22822:4 22834:1 22853:1 22861:1 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22901:1 22918:1 22928:1 22941:1 22951:1 22960:2 22972:1 22991:1 23005:1 23017:1 23063:1 23067:1 23092:5 23119:2 23131:1 23136:3 23141:1 23146:2 23149:1 23185:1 23219:1 23228:1 23229:1 23234:1 23239:1 23249:1 23256:1 23257:1 23258:4 23260:1 23261:1 23264:1 23274:1 23275:1 23281:1 23307:1 23322:1 23334:1 23338:1 23342:3 23349:1 23360:1 23377:1 23389:1 23396:2 23420:2 23436:2 23438:2 23442:2 23491:1 23500:2 23503:2 23515:3 23531:1 23551:1 23552:2 23557:1 23558:1 23613:1 23615:1 23617:1 23652:1 23664:1 23665:2 23676:1 23686:3 23687:3 23689:3 23696:1 23697:1 23700:1 23715:1 23718:3 23722:1 23731:1 23732:2 23746:1 23749:1 23765:2 23775:1 23796:1 23826:2 23862:1 23863:3 23872:1 23885:1 23893:1 23901:3 23905:2 23916:3 23935:1 23953:1 23977:1 23983:1 23994:2 24025:1 24042:1 24053:1 24068:2 24070:1 24079:2 24087:1 24088:4 24093:1 24095:1 24126:1 24132:1 24148:1 24157:1 24161:2 24166:2 24172:1 24173:1 24175:2 24182:2 24218:1 24233:1 24244:1 24245:1 24261:1 24269:1 24272:1 24287:2 24294:1 24298:1 24311:2 24327:1 24343:1 24357:3 24361:1 24363:2 24375:3 24379:1 24414:1 24425:1 24451:1 24452:1 24488:1 24489:1 24503:1 24506:1 24534:3 24539:1 24544:1 24548:1 24563:1 24566:1 24584:1 24594:1 24599:2 24610:2 24611:1 24612:2 24616:1 24617:1 24619:1 24625:1 24633:1 24638:1 24640:1 24652:3 24655:1 24664:2 24672:3 24690:1 24714:2 24718:2 24725:1 24727:2 24731:1 24761:1 24766:1 24778:1 24786:1 24794:1 24819:3 24846:1 24865:4 24883:1 24913:3 24916:3 24957:2 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25079:1 25080:1 25140:1 25152:1 25166:1 25171:2 25185:3 25188:1 25193:4 25203:1 25204:1 25210:2 25226:1 25245:1 25247:1 25263:1 25266:1 25274:1 25276:3 25280:1 25294:3 25298:3 25305:1 25308:1 25346:1 25351:1 25359:1 25364:1 25372:1 25373:2 25394:1 25395:1 25396:2 25417:1 25421:1 25431:1 25438:1 25441:1 25465:6 25469:1 25473:3 25490:1 25498:1 25534:3 25559:1 25560:2 25566:1 25593:1 25606:1 25648:2 25649:1 25665:1 25684:3 25691:1 25705:1 25779:2 25802:1 25817:3 25865:1 25909:1 25910:8 25996:1 25997:1 26016:2 26050:2 26057:1 26058:1 26064:1 26071:1 26084:1 26098:1 26100:1 26111:2 26136:1 26142:1 26151:3 26160:1 26170:2 26172:7 26174:1 26177:1 26179:1 26197:1 26201:1 26202:1 26204:1 26215:1 26219:1 26221:2 26236:1 26245:1 26248:1 26270:1 26334:1 26347:1 26386:1 26397:1 26398:1 26399:1 26405:1 26406:1 26408:1 26409:1 26413:1 26427:1 26468:1 26470:1 26483:3 26485:1 26487:2 26489:1 26490:4 26496:1 26497:1 26510:1 26518:4 26535:5 26536:1 26552:1 26575:2 26576:1 26597:1 26603:1 26607:1 26608:1 26626:1 26631:2 26638:1 26645:2 26654:2 26657:1 26678:1 26684:2 26719:1 26750:1 26754:1 26783:1 26793:1 26799:2 26836:1 26847:1 26858:1 26861:2 26870:1 26895:3 26900:1 26916:6 26958:1 26967:1 26968:1 26986:1 26991:6 26999:1 27000:1 27002:1 27005:1 27019:1 27043:2 27044:1 27137:1 27195:1 27213:1 27242:3 27244:7 27245:1 27265:3 27276:1 27277:1 27290:2 27296:1 27297:1 27305:2 27353:1 27360:1 27384:1 27402:1 27446:1 27457:1 27471:1 27472:1 27474:1 27482:1 27483:1 27507:1 27509:1 27510:1 27512:1 27518:1 27534:1 27544:1 27584:1 27586:1 27599:1 27600:3 27614:1 27646:1 27653:1 27673:1 27693:1 27734:1 27750:1 27770:1 27801:5 27802:1 27804:5 27814:1 27869:1 27910:2 27930:1 27952:4 27956:1 27957:1 27976:1 27999:1 28013:1 28018:1 28073:1 28076:2 28091:1 28100:1 28105:1 28112:1 28119:1 28131:3 28150:1 28152:1 28154:1 28159:3 28166:1 28180:1 28192:1 28208:1 28215:1 28219:1 28222:4 28235:1 28245:1 28276:1 28291:1 28308:6 28309:1 28326:2 28349:1 28366:1 28391:3 28403:1 28405:2 28421:1 28429:2 28434:1 28462:1 28484:1 28495:1 28507:1 28511:1 28516:1 28517:1 28533:1 28554:1 28578:2 28581:2 28589:1 28600:1 28602:1 28607:1 28611:1 28617:1 28619:2 28623:3 28624:1 28644:2 28664:2 28675:1 28678:1 28680:1 28687:1 28703:4 28747:2 28756:2 28767:1 28782:1 28803:1 28855:1 28867:1 28874:1 28912:1 28916:2 28989:1 28991:1 29013:1 29021:1 29104:1 29109:1 29117:1 29142:1 29149:2 29150:1 29209:1 29243:1 29268:1 29274:1 29282:2 29288:1 29292:3 29314:1 29315:2 29319:1 29325:1 29340:1 29342:1 29353:1 29355:1 29372:3 29390:1 29391:1 29400:1 29403:1 29411:4 29417:1 29425:1 29468:1 29479:1 29482:6 29486:2 29489:1 29509:1 29520:1 29550:1 29560:1 29576:4 29587:2 29588:2 29596:1 29599:1 29601:3 29605:1 29615:1 29627:1 29637:1 29653:1 29658:2 29667:1 29668:1 29684:2 29686:2 29689:1 29696:1 29697:1 29699:1 29706:1 29714:1 29718:1 29754:2 29760:1 29789:2 29794:1 29795:1 29814:1 29816:3 29818:1 29828:1 29833:1 29848:1 29852:1 29862:1 29867:1 29916:1 29918:1 29932:1 29934:2 29938:1 29956:4 29971:1 29979:1 29989:1 29991:2 29995:1 30016:2 30031:2 30041:1 30044:1 30045:6 30064:2 30067:1 30097:1 30149:1 30188:1 30240:3 30282:1 30289:1 30319:3 30331:2 30336:1 30368:1 30372:1 30390:4 30392:1 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30466:1 30479:19 30480:1 30502:1 30530:1 30537:12 30543:1 30546:1 30548:1 30550:2 30581:1 30602:1 30623:1 30630:2 30655:1 30661:1 30670:3 30675:3 30711:9 30713:1 30747:1 30764:2 30768:1 30805:2 30809:1 30810:1 30815:1 30818:1 30820:1 30846:2 30876:1 30882:2 30888:1 30903:2 30933:1 30956:1 30988:1 30996:1 31026:1 31041:4 31043:3 31104:1 31114:1 31115:1 31118:1 31121:1 31125:2 31132:1 31135:1 31143:1 31231:1 31253:4 31265:1 31267:1 31268:1 31272:10 31288:1 31291:1 31306:1 31309:1 31310:2 31316:1 31337:1 31342:1 31362:1 31369:1 31380:1 31413:1 31437:1 31444:1 31458:1 31465:1 31477:1 31495:1 31496:1 31506:3 31514:2 31550:1 31612:2 31652:1 31659:1 31666:1 31667:2 31679:1 31681:1 31689:1 31705:1 31713:2 31718:1 31742:1 31750:1 31756:1 31765:1 31780:1 31781:1 31785:1 31794:4 31801:1 31802:1 31803:2 31815:1 31823:1 31826:1 31851:1 31852:1 31866:1 31873:1 31882:1 31886:1 31890:3 31891:1 31896:2 31898:4 31902:1 31905:1 31907:2 31911:1 31914:1 31934:1 31958:1 31962:3 31965:1 31970:1 31977:1 31978:1 31998:1 32007:1
20 9:1 18:1 21:1 23:1 26:2 30:1 31:1 46:1 61:1 75:1 78:1 90:7 95:1 103:1 111:1 120:1 123:1 158:1 169:1 181:1 184:1 193:1 197:1 211:1 233:1 253:3 261:2 274:2 278:1 290:3 292:1 307:1 331:1 355:2 358:1 385:1 404:1 406:2 421:1 448:1 468:1 482:1 489:3 536:1 540:2 564:1 596:1 602:1 622:1 623:3 631:1 635:1 652:2 664:2 668:1 696:2 701:1 704:3 755:1 770:1 794:1 822:1 892:1 913:1 956:2 959:1 963:1 971:2 977:1 990:1 995:1 996:4 1000:1 1011:1 1025:1 1034:3 1054:1 1057:1 1063:3 1064:1 1066:1 1067:5 1069:4 1079:1 1095:1 1098:1 1108:4 1124:1 1135:3 1136:3 1143:2 1149:1 1158:1 1167:1 1198:1 1200:2 1205:1 1226:1 1255:1 1262:1 1281:1 1292:5 1305:4 1339:1 1341:1 1350:1 1353:1 1366:1 1368:1 1371:1 1380:1 1389:1 1402:1 1406:1 1407:1 1420:1 1426:1 1427:1 1430:1 1446:1 1458:1 1491:1 1511:1 1533:1 1549:1 1563:1 1576:1 1582:2 1594:2 1599:1 1608:1 1610:1 1630:1 1631:1 1633:4 1641:3 1651:4 1662:1 1668:1 1670:1 1671:1 1678:1 1691:3 1719:14 1722:2 1725:7 1729:1 1737:2 1741:1 1746:1 1756:1 1757:2 1759:2 1778:1 1799:1 1800:1 1805:1 1811:9 1818:1 1827:1 1829:1 1840:1 1855:1 1863:1 1876:1 1877:1 1882:1 1903:2 1945:1 1967:1 1968:5 1973:2 1976:1 1987:2 1994:1 2015:1 2026:1 2035:2 2061:1 2064:1 2070:1 2086:1 2088:1 2105:2 2113:3 2116:2 2127:1 2138:2 2145:1 2161:1 2163:1 2166:1 2208:1 2210:2 2229:1 2245:4 2260:1 2264:1 2284:1 2285:3 2291:1 2295:1 2296:1 2301:1 2341:1 2354:5 2357:1 2379:1 2389:1 2395:2 2397:2 2403:1 2433:2 2435:8 2438:7 2442:1 2443:1 2450:1 2451:2 2452:3 2454:2 2455:1 2458:1 2463:1 2469:1 2471:1 2472:2 2475:2 2500:1 2505:1 2507:2 2509:1 2512:2 2514:4 2517:1 2520:1 2525:2 2530:1 2531:2 2533:1 2535:3 2539:2 2542:3 2544:2 2546:1 2549:2 2552:1 2554:2 2557:1 2574:1 2576:1 2579:1 2582:1 2599:1 2616:1 2629:1 2639:1 2645:1 2650:1 2658:1 2673:1 2676:1 2677:1 2718:1 2723:1 2741:1 2757:1 2762:1 2767:1 2772:1 2773:1 2795:1 2801:1 2831:1 2833:1 2839:1 2853:1 2869:1 2870:1 2875:1 2893:3 2898:1 2902:1 2914:1 2923:1 2937:1 2948:1 2961:1 2963:2 2965:1 2970:2 2975:1 2977:1 2986:1 3012:2 3015:1 3021:1 3029:1 3037:1 3045:1 3050:1 3056:1 3063:1 3084:1 3087:2 3095:1 3105:1 3120:1 3128:1 3159:3 3164:1 3168:9 3169:2 3171:2 3181:1 3184:2 3185:3 3195:1 3201:1 3204:1 3214:9 3250:1 3288:1 3320:1 3347:2 3354:1 3361:1 3422:3 3453:1 3463:1 3501:1 3507:1 3514:1 3537:1 3553:1 3597:1 3598:1 3607:2 3615:1 3625:3 3628:1 3660:3 3674:1 3695:3 3706:1 3711:1 3712:1 3719:1 3722:1 3723:1 3751:1 3752:1 3780:1 3825:1 3835:1 3840:1 3846:1 3873:1 3885:2 3893:1 3901:2 3944:1 3952:4 3966:2 3970:2 3977:1 3991:2 4006:1 4009:1 4013:1 4015:1 4024:6 4042:1 4056:1 4059:1 4063:1 4065:1 4070:1 4075:3 4118:2 4126:2 4127:4 4160:1 4175:6 4176:1 4202:1 4207:1 4211:6 4213:1 4261:1 4264:2 4279:1 4296:1 4306:1 4317:6 4335:1 4345:2 4346:2 4366:1 4375:1 4379:1 4391:1 4392:2 4395:1 4406:1 4414:2 4420:1 4423:2 4425:1 4443:1 4454:1 4472:1 4482:1 4508:1 4535:1 4562:1 4575:1 4587:1 4593:1 4626:1 4641:1 4699:1 4702:1 4727:1 4730:1 4736:1 4768:1 4771:1 4776:1 4777:2 4780:1 4791:1 4794:1 4836:2 4838:1 4859:1 4860:1 4870:1 4872:1 4917:1 4923:1 4958:1 4959:2 4993:1 4997:1 4999:2 5012:1 5027:1 5046:1 5055:1 5067:1 5078:2 5084:1 5086:1 5106:4 5122:1 5130:2 5131:1 5136:2 5184:1 5186:1 5196:1 5215:1 5227:1 5245:1 5247:1 5283:1 5291:1 5296:1 5306:1 5332:15 5333:1 5345:1 5349:1 5364:1 5372:1 5444:3 5448:7 5466:3 5467:2 5470:1 5472:1 5475:1 5476:1 5479:1 5480:1 5485:1 5487:2 5488:2 5490:4 5492:3 5495:1 5496:1 5508:2 5547:1 5577:1 5607:1 5619:1 5662:1 5678:4 5683:1 5693:1 5706:1 5710:1 5715:1 5720:1 5745:3 5748:1 5767:1 5775:1 5800:2 5825:1 5839:1 5864:3 5877:1 5901:1 5916:1 5924:1 5929:1 5931:4 5962:1 5977:1 5992:1 5997:2 5998:1 6018:1 6038:1 6039:2 6049:1 6057:2 6077:1 6086:1 6089:1 6095:1 6101:2 6107:1 6117:1 6120:1 6127:1 6137:3 6158:3 6189:1 6225:2 6243:1 6244:1 6249:1 6250:1 6268:1 6279:1 6280:1 6312:1 6319:1 6321:1 6323:1 6326:2 6350:1 6351:1 6359:1 6362:1 6375:1 6379:1 6387:2 6394:3 6400:2 6444:4 6445:3 6463:2 6467:2 6476:1 6477:2 6532:1 6542:1 6571:1 6584:1 6596:1 6609:5 6612:1 6631:1 6652:2 6664:1 6670:2 6674:1 6675:1 6682:1 6702:1 6709:1 6711:1 6721:1 6727:2 6772:3 6779:1 6783:3 6829:1 6830:1 6841:1 6851:1 6856:3 6858:1 6869:1 6874:1 6890:1 6898:2 6910:1 6932:2 6933:2 6937:1 6949:3 6950:1 6951:1 6959:2 6963:1 6966:1 6967:1 6971:4 6973:2 6977:2 6979:5 6980:2 6982:4 7005:1 7034:1 7036:1 7077:4 7097:1 7105:4 7120:2 7146:1 7169:1 7170:1 7187:1 7215:1 7236:1 7262:1 7307:2 7328:1 7333:1 7344:1 7345:2 7353:1 7361:2 7362:1 7368:1 7391:1 7392:1 7396:1 7399:1 7401:1 7406:2 7430:2 7432:1 7433:1 7439:1 7448:1 7456:1 7457:1 7461:1 7486:1 7489:3 7566:1 7567:1 7580:3 7581:1 7601:1 7615:3 7624:1 7628:1 7634:1 7657:1 7688:1 7713:1 7717:2 7757:1 7763:1 7781:1 7799:9 7801:1 7813:1 7824:2 7826:1 7862:2 7879:1 7900:2 7937:1 7940:1 7941:1 7951:1 7971:2 7976:1 8000:1 8013:1 8019:1 8025:1 8051:1 8063:1 8064:1 8069:1 8088:1 8093:3 8122:3 8124:1 8128:3 8142:1 8144:1 8153:1 8154:1 8172:1 8192:1 8201:1 8207:2 8214:1 8223:1 8231:1 8241:1 8245:1 8250:1 8264:1 8276:1 8283:2 8285:1 8289:1 8290:1 8304:1 8342:1 8349:1 8376:1 8377:4 8383:1 8391:10 8400:1 8410:2 8414:1 8416:4 8417:1 8443:1 8448:1 8457:32 8487:5 8490:11 8502:1 8518:1 8537:1 8541:2 8554:2 8555:1 8558:1 8568:1 8629:1 8639:1 8699:1 8707:1 8720:1 8721:1 8765:1 8787:3 8797:3 8803:1 8816:1 8851:1 8888:1 8896:1 8903:1 8907:1 8916:1 8929:1 8940:9 8947:2 8950:1 8955:1 8958:1 8983:1 9005:1 9019:27 9045:1 9072:1 9075:1 9089:1 9102:1 9151:1 9164:1 9175:1 9205:1 9222:1 9226:1 9249:1 9258:5 9276:2 9279:1 9285:3 9293:1 9294:1 9296:1 9299:3 9323:1 9329:1 9343:1 9348:1 9363:1 9383:2 9391:1 9393:3 9398:2 9399:4 9401:1 9402:1 9408:2 9413:4 9423:1 9425:1 9428:2 9455:1 9480:1 9490:2 9493:2 9495:1 9496:1 9518:1 9554:3 9559:1 9590:1 9595:1 9643:1 9644:1 9658:1 9682:1 9698:2 9707:2 9724:2 9736:3 9751:1 9763:1 9767:1 9769:1 9772:4 9798:1 9808:2 9816:1 9850:1 9851:1 9864:1 9869:1 9876:1 9885:2 9895:1 9898:1 9928:1 9931:2 9936:6 9940:4 9944:1 9948:1 9960:3 9974:1 9978:1 10002:1 10018:1 10028:1 10037:1 10043:1 10054:1 10061:1 10086:1 10093:1 10114:1 10121:1 10178:1 10190:3 10193:1 10207:1 10212:1 10214:1 10215:1 10222:1 10237:1 10294:1 10297:1 10313:1 10334:1 10354:3 10363:1 10373:1 10381:1 10386:1 10393:3 10394:1 10405:1 10411:1 10423:1 10431:4 10449:1 10457:1 10458:1 10461:2 10474:3 10495:1 10504:1 10534:1 10547:4 10559:1 10563:3 10568:6 10583:3 10603:1 10649:1 10651:1 10663:2 10667:1 10678:2 10700:11 10709:1 10714:1 10715:1 10725:1 10732:1 10740:1 10743:1 10749:1 10762:1 10764:1 10775:2 10781:1 10856:2 10864:1 10871:3 10872:1 10878:2 10895:1 10903:1 10925:2 10927:1 10929:2 10944:2 10962:1 10966:1 10972:1 10978:1 10986:2 11056:1 11071:2 11080:1 11082:2 11112:1 11116:1 11124:1 11140:1 11187:2 11196:2 11218:2 11228:1 11277:1 11284:1 11285:1 11292:2 11335:1 11337:1 11351:3 11390:1 11416:4 11418:4 11425:1 11448:1 11493:2 11497:1 11514:1 11521:3 11523:1 11536:1 11548:3 11556:1 11557:1 11587:2 11599:1 11606:3 11608:1 11612:1 11615:1 11620:1 11625:1 11626:1 11629:1 11630:2 11641:1 11642:1 11671:3 11673:2 11690:1 11714:3 11723:1 11728:1 11734:1 11736:1 11738:1 11740:2 11744:4 11746:8 11785:1 11803:2 11818:1 11822:1 11829:1 11834:1 11835:4 11845:1 11849:3 11877:1 11913:1 11926:1 11937:1 11952:1 11958:4 11961:2 11964:1 11968:1 12015:1 12024:3 12031:1 12053:2 12063:1 12070:3 12094:1 12099:2 12101:1 12103:1 12105:1 12124:1 12126:1 12160:6 12166:2 12169:3 12192:1 12197:1 12221:1 12243:1 12256:1 12268:3 12273:2 12308:1 12309:1 12323:1 12334:1 12338:1 12339:1 12347:2 12359:1 12374:2 12377:1 12406:1 12422:1 12441:2 12445:7 12451:1 12492:1 12512:2 12521:2 12524:2 12525:1 12539:1 12542:1 12545:3 12546:1 12584:1 12589:1 12590:1 12606:1 12621:1 12640:1 12646:2 12669:1 12675:1 12682:7 12684:3 12688:1 12706:1 12707:1 12721:2 12727:1 12739:1 12740:1 12743:1 12744:1 12746:1 12748:1 12750:1 12753:1 12758:1 12761:1 12769:2 12772:1 12791:1 12798:1 12799:1 12821:1 12822:1 12823:5 12839:3 12848:8 12894:1 12896:1 12903:1 12909:1 12910:1 12917:1 12920:11 12966:1 12999:1 13015:1 13025:1 13035:1 13042:2 13055:4 13057:1 13071:1 13076:1 13089:1 13093:1 13121:3 13143:1 13159:1 13160:1 13178:3 13202:2 13215:1 13216:2 13226:3 13227:3 13230:1 13231:1 13240:1 13242:1 13247:3 13250:3 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13352:1 13364:2 13386:3 13392:1 13426:1 13432:1 13455:1 13468:1 13470:1 13519:1 13539:3 13547:1 13568:1 13600:1 13620:1 13651:1 13656:2 13693:1 13732:1 13751:1 13809:1 13813:8 13816:1 13827:2 13839:1 13845:1 13858:1 13879:1 13899:11 13906:1 13926:1 13933:2 13960:2 13984:2 14023:1 14024:1 14101:1 14104:1 14113:1 14119:1 14121:4 14126:1 14138:1 14140:2 14160:2 14178:1 14208:1 14230:2 14235:1 14257:4 14269:1 14272:1 14274:3 14280:3 14296:3 14303:8 14305:1 14307:1 14341:1 14345:1 14352:1 14369:1 14371:2 14399:2 14400:1 14431:1 14445:1 14446:8 14455:1 14464:1 14468:14 14471:1 14475:1 14505:1 14512:1 14520:1 14553:1 14567:4 14590:1 14618:2 14622:1 14632:2 14638:1 14655:1 14662:1 14680:1 14692:1 14704:1 14709:2 14714:2 14719:1 14744:1 14749:1 14790:1 14800:1 14864:1 14866:1 14868:1 14871:5 14872:1 14874:1 14879:1 14897:2 14913:1 14931:1 14941:1 14947:1 14983:10 14995:1 14996:2 15018:1 15036:1 15037:2 15038:1 15067:2 15078:1 15091:2 15092:1 15094:1 15096:3 15104:1 15117:1 15171:5 15174:2 15196:2 15223:1 15236:1 15237:2 15297:1 15305:1 15308:2 15322:1 15344:2 15355:1 15387:1 15401:1 15435:1 15446:2 15448:1 15455:1 15460:1 15464:1 15465:1 15472:1 15474:1 15519:1 15522:1 15552:1 15561:1 15572:1 15593:1 15597:1 15598:2 15600:2 15604:1 15605:2 15615:1 15616:1 15623:1 15631:1 15647:1 15648:1 15654:2 15680:1 15698:1 15699:1 15702:4 15740:4 15757:1 15762:1 15781:1 15804:1 15807:1 15815:1 15821:3 15830:1 15835:5 15848:2 15849:1 15860:1 15872:1 15873:1 15892:2 15903:1 15910:1 15926:2 15937:1 15941:1 15942:1 15954:1 15961:1 15971:1 15978:1 15991:1 16019:1 16030:1 16035:1 16048:1 16052:1 16112:1 16126:1 16149:1 16151:3 16156:1 16166:3 16178:1 16193:3 16198:1 16239:1 16243:1 16268:1 16272:1 16298:4 16304:1 16305:1 16319:1 16351:1 16355:1 16357:2 16358:2 16396:1 16408:1 16410:1 16412:1 16430:1 16437:1 16506:3 16515:1 16521:1 16545:3 16547:2 16549:1 16553:1 16588:1 16594:1 16621:1 16629:1 16631:1 16660:1 16685:1 16711:1 16720:1 16723:1 16747:1 16762:1 16768:1 16771:30 16808:2 16811:1 16822:1 16851:1 16865:1 16870:1 16876:1 16883:1 16901:1 16914:2 16919:1 16950:1 16981:1 16999:1 17029:1 17030:4 17036:1 17039:2 17040:1 17041:2 17046:1 17047:1 17053:1 17059:2 17065:1 17066:1 17069:1 17071:6 17072:1 17079:1 17087:1 17125:2 17127:1 17130:1 17184:1 17185:1 17186:1 17215:5 17216:5 17236:1 17243:1 17249:1 17255:3 17270:1 17288:1 17319:1 17321:2 17335:1 17348:1 17360:3 17377:1 17382:1 17398:1 17405:1 17421:1 17446:1 17469:2 17473:2 17477:1 17478:1 17500:1 17505:1 17507:6 17514:1 17521:1 17549:1 17557:1 17559:1 17562:1 17563:1 17570:1 17571:4 17593:1 17602:2 17608:1 17609:1 17622:1 17625:1 17632:1 17633:2 17637:1 17638:3 17639:2 17641:2 17643:1 17646:3 17647:1 17651:1 17653:1 17656:4 17658:1 17660:1 17662:5 17666:1 17678:1 17690:1 17695:3 17717:1 17731:1 17784:1 17819:1 17864:1 17902:1 17932:1 17937:1 17987:1 18039:2 18054:1 18068:1 18099:1 18102:1 18107:1 18115:2 18122:2 18123:1 18130:2 18141:1 18192:1 18199:2 18202:2 18212:1 18225:2 18228:5 18238:2 18243:1 18260:1 18266:1 18277:2 18303:1 18310:1 18326:2 18328:1 18343:3 18347:1 18352:9 18355:2 18382:1 18409:2 18412:1 18418:1 18420:2 18429:2 18430:3 18454:2 18465:2 18488:2 18492:2 18494:2 18498:1 18519:1 18521:1 18531:1 18533:1 18537:1 18566:1 18569:1 18574:1 18575:1 18583:1 18587:1 18589:2 18594:1 18596:1 18597:1 18608:1 18620:1 18623:1 18650:1 18684:1 18694:1 18696:1 18709:1 18727:2 18730:1 18732:1 18738:1 18750:3 18752:1 18765:2 18802:1 18804:1 18810:1 18817:1 18823:1 18839:1 18847:1 18867:1 18872:1 18873:1 18890:1 18906:1 18913:1 18918:2 18928:2 18972:1 18975:1 18978:2 18997:1 18998:1 19000:1 19001:1 19043:1 19044:2 19068:2 19078:2 19084:1 19087:1 19122:1 19130:1 19133:1 19137:1 19153:2 19157:1 19164:2 19183:1 19194:1 19205:1 19207:2 19212:1 19214:1 19222:1 19235:1 19249:6 19271:1 19286:1 19287:1 19292:3 19294:1 19319:1 19324:3 19350:1 19351:3 19353:1 19357:2 19369:1 19371:1 19372:1 19390:2 19391:2 19393:1 19408:1 19418:1 19428:1 19429:1 19437:1 19441:1 19443:4 19449:3 19450:1 19454:1 19463:1 19480:1 19486:1 19494:1 19496:1 19498:1 19518:8 19530:1 19549:2 19551:2 19561:1 19583:1 19595:1 19596:1 19601:1 19617:1 19642:1 19665:1 19698:1 19709:1 19711:1 19716:1 19720:1 19722:1 19756:1 19762:1 19774:1 19781:1 19787:1 19792:2 19808:1 19824:1 19827:1 19837:1 19852:2 19862:1 19946:3 19951:1 19981:7 19990:1 19992:2 19994:1 20000:1 20059:1 20061:1 20067:1 20068:1 20105:1 20113:1 20190:1 20196:2196 20200:2 20218:3 20229:1 20232:1 20249:1 20252:1 20270:1 20284:1 20286:1 20289:1 20304:1 20328:1 20339:1 20341:1 20347:2 20353:1 20386:1 20398:1 20399:1 20412:1 20422:1 20423:1 20436:5 20444:1 20449:3 20451:2 20453:1 20463:2 20482:1 20510:1 20524:1 20530:2 20555:1 20557:1 20604:1 20633:1 20673:1 20684:1 20696:3 20712:1 20757:1 20761:2 20781:1 20819:1 20832:2 20839:1 20850:1 20858:1 20897:1 20914:1 20917:1 20954:1 20955:2 20978:3 21004:4 21015:1 21027:2 21041:2 21042:1 21056:1 21060:1 21066:1 21067:2 21105:1 21106:5 21119:1 21127:3 21129:1 21130:1 21136:1 21158:1 21167:8 21173:1 21192:1 21218:1 21229:1 21262:1 21267:1 21318:1 21323:1 21326:1 21360:1 21363:2 21374:1 21404:1 21406:1 21429:1 21434:2 21456:1 21465:1 21472:1 21475:1 21482:1 21491:2 21492:3 21500:4 21506:1 21515:1 21541:2 21542:1 21548:3 21560:1 21567:1 21590:1 21603:2 21623:1 21626:1 21634:1 21658:1 21679:1 21680:1 21705:1 21721:1 21742:1 21747:1 21755:1 21763:10 21766:3 21769:1 21773:1 21799:1 21806:1 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:5 21867:2 21873:2 21892:1 21894:1 21904:1 21915:2 21920:1 21922:1 21937:7 21944:3 21960:1 21971:1 21990:1 21991:1 22002:1 22010:1 22019:1 22025:2 22047:1 22056:1 22068:1 22098:1 22109:1 22112:1 22115:1 22162:1 22184:3 22194:2 22195:1 22204:1 22225:1 22228:6 22230:5 22240:1 22242:2 22285:1 22302:1 22306:1 22311:1 22319:1 22348:2 22351:1 22353:1 22384:1 22393:1 22422:1 22434:1 22460:1 22461:1 22479:1 22482:1 22485:1 22502:1 22507:1 22515:1 22518:1 22521:1 22526:1 22528:1 22550:1 22554:1 22564:1 22569:1 22581:1 22590:4 22610:1 22614:1 22626:1 22632:1 22639:2 22643:2 22657:1 22666:1 22677:2 22719:1 22734:3 22739:1 22786:1 22796:10 22803:2 22809:2 22813:1 22822:4 22834:1 22853:1 22861:1 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22901:1 22918:1 22928:1 22941:1 22951:1 22960:2 22972:1 22991:1 23005:1 23017:1 23063:1 23067:1 23092:5 23119:2 23131:1 23136:3 23141:1 23146:2 23149:1 23185:1 23219:1 23228:1 23229:1 23234:1 23239:1 23249:1 23256:1 23257:1 23258:4 23260:1 23261:1 23264:1 23274:1 23275:1 23281:1 23307:1 23322:1 23334:1 23338:1 23342:3 23349:1 23360:1 23377:1 23389:1 23396:2 23420:2 23436:2 23438:2 23442:2 23491:1 23500:2 23503:2 23515:3 23531:1 23532:1 23551:1 23552:2 23555:1 23557:1 23558:1 23613:1 23615:1 23617:1 23652:1 23664:1 23665:2 23676:1 23686:3 23687:3 23689:3 23696:1 23697:1 23700:1 23715:1 23718:3 23722:1 23731:1 23732:2 23746:1 23749:1 23765:2 23775:1 23796:1 23826:2 23862:1 23863:3 23872:1 23885:1 23893:1 23901:3 23905:2 23916:3 23935:1 23953:1 23977:1 23983:1 23994:2 24025:1 24042:1 24053:1 24068:2 24070:1 24079:2 24087:1 24088:5 24093:1 24095:1 24126:1 24132:1 24148:1 24157:1 24161:2 24166:2 24172:1 24173:1 24175:2 24182:2 24218:1 24233:1 24244:1 24245:1 24261:1 24269:1 24272:1 24287:2 24294:1 24298:1 24311:2 24327:1 24343:1 24357:3 24361:1 24363:2 24375:3 24379:1 24394:1 24414:1 24425:1 24451:2 24452:1 24488:1 24489:1 24503:1 24506:1 24534:3 24539:1 24544:1 24548:1 24563:1 24566:1 24584:1 24594:1 24599:2 24610:2 24611:1 24612:2 24616:1 24617:1 24619:1 24625:1 24633:1 24638:1 24640:1 24652:3 24655:1 24664:2 24672:3 24690:1 24714:2 24718:2 24725:1 24727:2 24731:1 24761:1 24766:1 24778:1 24786:1 24794:1 24819:3 24846:1 24865:4 24883:1 24913:3 24916:3 24957:2 24969:1 24981:1 25005:1 25009:1 25018:1 25021:1 25079:1 25080:1 25140:1 25152:1 25166:1 25171:2 25185:3 25188:1 25193:4 25203:1 25204:1 25210:2 25226:1 25245:1 25247:1 25263:1 25266:1 25274:1 25276:3 25280:1 25294:3 25298:3 25305:1 25308:1 25346:1 25351:1 25359:1 25364:1 25372:1 25373:2 25394:1 25395:1 25396:2 25417:1 25421:1 25431:1 25438:1 25441:1 25465:6 25469:1 25473:3 25490:1 25498:1 25534:3 25559:1 25560:2 25566:1 25593:1 25606:1 25648:2 25649:1 25665:1 25684:3 25691:1 25705:1 25779:2 25802:1 25817:3 25865:1 25909:1 25910:8 25996:1 25997:1 26016:2 26050:2 26057:1 26058:1 26064:1 26071:1 26084:1 26098:1 26100:1 26111:2 26136:1 26142:1 26151:3 26160:1 26170:2 26172:7 26174:1 26177:1 26179:1 26197:1 26201:1 26202:1 26204:1 26215:1 26219:1 26221:2 26236:1 26245:1 26248:1 26270:1 26334:1 26347:1 26386:1 26397:1 26398:1 26399:1 26405:1 26406:1 26408:1 26409:1 26413:1 26427:1 26468:1 26470:2 26483:3 26485:1 26487:3 26489:1 26490:4 26496:1 26497:1 26510:1 26518:4 26535:5 26536:1 26552:1 26575:2 26576:1 26597:1 26603:1 26607:1 26608:1 26626:1 26631:2 26638:1 26645:2 26654:2 26657:1 26678:1 26684:2 26719:1 26750:1 26754:1 26783:1 26793:1 26799:2 26829:1 26836:1 26847:1 26858:1 26861:2 26870:1 26895:3 26900:1 26916:6 26958:1 26967:1 26968:1 26986:1 26991:6 26999:1 27000:1 27002:1 27005:1 27019:1 27043:2 27044:1 27137:1 27140:1 27195:1 27213:1 27242:3 27244:7 27245:1 27265:3 27276:1 27277:1 27290:2 27296:1 27297:1 27305:2 27353:1 27360:1 27384:1 27402:1 27446:1 27457:1 27471:1 27472:1 27474:1 27482:1 27483:1 27507:1 27509:1 27510:1 27512:1 27518:1 27534:1 27544:1 27584:1 27586:1 27599:1 27600:3 27614:1 27646:1 27653:1 27673:1 27693:1 27734:1 27750:1 27770:1 27787:1 27801:5 27802:1 27804:6 27814:1 27869:1 27910:2 27930:1 27952:4 27956:1 27957:1 27976:1 27999:1 28013:1 28018:1 28073:1 28076:2 28079:1 28091:1 28100:1 28105:1 28112:1 28119:1 28131:3 28150:1 28152:1 28154:1 28159:3 28166:1 28180:1 28192:1 28208:1 28215:1 28219:1 28222:4 28235:1 28245:1 28276:1 28291:1 28308:6 28309:1 28326:3 28349:1 28366:1 28391:3 28403:1 28405:2 28421:1 28429:2 28434:1 28462:1 28484:1 28495:1 28507:1 28511:1 28516:1 28517:1 28533:1 28554:1 28578:2 28581:2 28589:1 28600:1 28602:1 28607:1 28611:1 28617:1 28619:2 28623:3 28624:1 28644:2 28664:2 28675:1 28678:1 28680:1 28687:1 28703:4 28747:2 28756:2 28767:1 28782:1 28803:1 28855:1 28867:1 28874:1 28912:1 28916:2 28989:1 28991:1 29013:1 29021:1 29104:1 29109:1 29117:1 29142:1 29149:2 29150:1 29209:1 29243:1 29268:1 29274:1 29282:2 29288:1 29292:3 29314:1 29315:2 29319:1 29325:1 29340:1 29342:1 29353:1 29355:1 29372:3 29390:1 29391:1 29400:1 29403:1 29411:4 29417:1 29425:1 29468:1 29479:1 29482:6 29486:2 29489:1 29509:1 29520:2 29550:1 29560:1 29576:4 29587:2 29588:2 29596:1 29599:1 29601:3 29605:1 29615:1 29627:1 29637:1 29653:1 29658:2 29667:1 29668:1 29684:2 29686:2 29689:1 29694:1 29696:1 29697:1 29699:1 29706:1 29714:1 29718:1 29754:2 29760:1 29789:2 29790:1 29794:1 29795:1 29814:1 29816:3 29818:1 29828:1 29833:1 29848:1 29852:1 29862:1 29867:1 29916:1 29918:1 29931:1 29932:1 29934:2 29938:1 29956:4 29971:1 29979:1 29989:1 29991:2 29995:1 30016:2 30031:2 30041:1 30044:1 30045:6 30064:2 30067:1 30097:1 30149:1 30175:1 30188:1 30212:1 30240:3 30282:1 30289:1 30319:3 30331:2 30336:1 30368:1 30372:1 30390:4 30392:1 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30466:1 30479:19 30480:1 30502:1 30530:1 30537:12 30543:1 30546:1 30548:1 30550:2 30581:1 30602:1 30623:1 30630:2 30655:1 30661:1 30670:3 30675:3 30711:9 30713:1 30747:1 30764:2 30768:1 30805:2 30809:1 30810:1 30815:1 30818:1 30820:1 30846:2 30876:1 30882:2 30888:1 30903:2 30924:1 30933:1 30956:1 30988:1 30996:1 31026:1 31041:4 31043:3 31104:1 31114:1 31115:1 31118:1 31121:1 31125:2 31132:1 31133:1 31135:1 31143:1 31231:1 31253:4 31265:1 31267:1 31268:1 31272:10 31288:1 31291:1 31306:1 31309:1 31310:3 31316:1 31337:1 31342:1 31362:1 31369:2 31380:1 31413:1 31437:1 31444:1 31458:1 31465:1 31477:1 31495:1 31496:1 31506:3 31514:2 31528:1 31550:1 31612:2 31652:1 31659:1 31666:1 31667:3 31679:1 31681:1 31689:1 31705:1 31713:2 31718:1 31742:2 31750:1 31756:1 31765:1 31780:1 31781:1 31785:1 31794:4 31801:1 31802:1 31803:2 31815:1 31823:1 31826:1 31851:1 31852:1 31866:1 31873:1 31882:1 31886:1 31890:3 31891:1 31896:2 31898:4 31902:1 31905:1 31907:2 31911:1 31914:1 31934:1 31958:1 31962:3 31965:1 31970:1 31977:1 31978:1 31998:1 32007:1
20 9:1 18:1 21:1 23:1 26:2 30:1 31:1 46:1 61:1 75:1 78:1 90:7 95:1 103:1 111:1 120:1 123:1 158:1 169:1 181:1 184:1 193:1 197:1 211:1 233:1 253:3 261:2 274:2 278:1 290:3 292:1 307:1 331:1 355:2 358:1 385:1 404:1 406:2 421:1 448:1 468:1 482:1 489:3 536:1 540:2 564:1 596:1 602:1 622:1 623:3 631:1 635:1 652:2 664:2 668:1 696:2 701:1 704:3 755:1 770:1 794:1 822:1 892:1 913:1 956:2 959:1 963:1 971:2 977:1 990:1 995:1 996:4 1000:1 1011:1 1018:1 1025:1 1034:3 1054:1 1057:1 1063:3 1064:1 1066:1 1067:5 1069:4 1079:1 1095:1 1098:1 1108:4 1124:1 1135:3 1136:3 1143:2 1149:1 1158:1 1167:1 1198:1 1200:2 1205:1 1226:1 1255:1 1262:1 1281:1 1292:5 1305:4 1339:1 1341:2 1350:1 1353:1 1366:1 1368:2 1371:1 1380:1 1389:1 1402:1 1406:1 1407:1 1420:1 1426:1 1427:1 1430:1 1446:1 1458:1 1491:1 1511:1 1533:1 1549:1 1563:1 1576:1 1582:2 1594:2 1599:1 1608:1 1610:1 1630:1 1631:1 1633:4 1641:3 1651:4 1662:1 1668:1 1670:1 1671:1 1678:1 1691:3 1719:14 1722:2 1725:7 1729:1 1737:3 1741:1 1746:1 1756:1 1757:2 1759:2 1778:1 1799:1 1800:1 1805:1 1811:9 1818:1 1827:1 1829:1 1840:1 1855:1 1863:1 1876:1 1877:1 1882:1 1903:2 1945:1 1967:1 1968:5 1973:2 1976:1 1987:2 1994:1 2015:1 2026:1 2035:2 2061:1 2064:1 2070:1 2086:1 2088:1 2105:2 2113:3 2116:2 2127:1 2138:2 2145:1 2161:1 2163:1 2166:1 2208:1 2210:2 2229:1 2245:4 2260:1 2264:1 2284:1 2285:3 2291:1 2295:1 2296:1 2301:1 2341:1 2354:6 2357:1 2379:1 2389:1 2395:2 2397:2 2403:1 2433:2 2435:8 2438:7 2442:1 2443:1 2450:1 2451:3 2452:3 2454:2 2455:1 2458:1 2463:1 2469:1 2471:1 2472:2 2475:3 2500:1 2505:1 2507:2 2509:1 2512:2 2513:1 2514:4 2517:1 2520:1 2525:2 2530:1 2531:3 2533:1 2535:3 2539:3 2542:3 2544:2 2546:2 2549:2 2552:1 2554:2 2557:1 2574:1 2576:1 2579:1 2582:1 2599:1 2607:1 2616:1 2629:1 2639:1 2645:1 2650:1 2658:1 2673:1 2676:1 2677:1 2718:1 2723:1 2741:1 2757:1 2762:1 2767:1 2772:1 2773:1 2795:1 2801:1 2831:1 2833:1 2839:1 2853:1 2869:1 2870:1 2875:1 2893:3 2898:1 2902:1 2914:1 2923:1 2937:1 2948:1 2961:1 2963:2 2965:1 2970:2 2975:1 2977:1 2986:1 2995:1 3012:2 3015:1 3021:1 3029:1 3037:1 3045:1 3050:1 3056:1 3063:1 3084:1 3087:2 3095:1 3105:1 3120:1 3128:1 3159:4 3164:1 3168:10 3169:2 3171:2 3181:1 3184:2 3185:3 3195:1 3201:1 3204:1 3214:9 3250:1 3288:1 3320:1 3347:2 3354:1 3361:1 3422:3 3427:1 3453:1 3463:1 3501:1 3507:1 3514:1 3537:1 3553:1 3597:1 3598:1 3607:3 3615:1 3625:3 3628:1 3660:3 3674:1 3695:3 3706:1 3711:1 3712:1 3719:1 3722:1 3723:1 3751:1 3752:1 3780:1 3825:1 3835:1 3840:1 3846:1 3873:1 3885:2 3893:1 3901:2 3944:1 3952:5 3966:2 3970:2 3977:1 3991:2 4006:1 4009:1 4013:1 4015:1 4024:6 4042:1 4056:1 4059:1 4063:1 4065:1 4070:1 4075:3 4118:2 4126:2 4127:4 4160:1 4175:6 4176:1 4202:1 4207:1 4211:6 4213:1 4261:1 4264:2 4279:1 4296:1 4306:1 4317:6 4335:1 4345:2 4346:2 4366:1 4375:1 4379:1 4391:1 4392:2 4395:1 4406:1 4414:2 4420:1 4423:2 4425:1 4443:1 4454:1 4472:1 4482:1 4508:1 4517:1 4535:1 4562:1 4575:1 4587:1 4593:1 4598:1 4626:1 4641:1 4699:1 4702:1 4727:1 4730:1 4736:1 4768:1 4771:1 4776:1 4777:2 4780:1 4791:1 4794:1 4836:2 4838:1 4859:1 4860:1 4870:1 4872:1 4917:1 4923:1 4958:1 4959:2 4993:1 4997:1 4999:2 5012:1 5027:2 5046:2 5055:1 5067:1 5078:2 5084:1 5086:1 5106:4 5122:1 5130:2 5131:1 5136:2 5184:1 5186:1 5196:1 5215:1 5227:1 5245:1 5247:1 5283:1 5291:1 5296:1 5306:1 5332:15 5333:1 5345:1 5349:1 5364:1 5372:1 5396:1 5444:3 5448:7 5466:3 5467:2 5470:1 5472:1 5475:1 5476:2 5479:1 5480:1 5485:1 5487:3 5488:2 5490:4 5492:3 5495:1 5496:1 5508:2 5547:1 5577:1 5607:1 5619:1 5662:1 5678:4 5683:1 5693:1 5706:1 5710:1 5715:1 5720:1 5745:3 5748:1 5767:1 5775:1 5800:2 5825:1 5839:1 5864:3 5877:1 5901:1 5916:1 5918:1 5924:1 5929:1 5931:4 5962:1 5977:1 5992:1 5997:2 5998:1 6018:1 6038:1 6039:2 6049:1 6057:2 6077:1 6086:1 6089:1 6095:1 6101:2 6107:1 6117:1 6120:1 6127:1 6137:3 6158:3 6189:1 6225:2 6243:1 6244:2 6249:1 6250:1 6268:1 6279:1 6280:1 6312:1 6319:1 6321:1 6323:1 6326:2 6350:1 6351:1 6359:1 6362:1 6375:1 6379:1 6387:2 6394:3 6400:2 6444:4 6445:3 6463:2 6467:2 6476:1 6477:2 6532:1 6542:1 6571:1 6584:1 6596:1 6609:6 6612:1 6631:1 6652:2 6664:1 6670:2 6674:1 6675:1 6682:1 6702:1 6709:1 6711:1 6721:1 6727:2 6772:3 6779:1 6783:3 6829:1 6830:1 6841:1 6851:1 6856:3 6858:1 6869:1 6874:1 6890:1 6898:2 6910:1 6932:2 6933:2 6937:1 6949:3 6950:1 6951:1 6959:2 6963:1 6966:1 6967:1 6971:4 6973:2 6977:2 6979:5 6980:2 6982:4 7005:1 7034:1 7036:1 7077:4 7097:1 7105:4 7120:2 7146:1 7169:1 7170:1 7187:1 7215:1 7231:1 7236:2 7262:1 7307:2 7328:1 7333:1 7344:1 7345:2 7353:1 7361:2 7362:1 7368:1 7391:1 7392:1 7396:1 7399:1 7401:1 7406:2 7430:2 7432:1 7433:1 7439:1 7448:1 7456:1 7457:1 7461:1 7486:1 7489:3 7503:1 7566:1 7567:1 7580:3 7581:1 7601:1 7615:3 7624:1 7628:1 7634:1 7657:1 7688:1 7713:1 7717:2 7757:1 7763:1 7781:1 7799:9 7801:1 7813:1 7824:2 7826:1 7862:2 7879:1 7900:2 7937:1 7940:1 7941:1 7951:1 7971:2 7976:1 8000:1 8013:1 8019:1 8025:1 8051:1 8063:1 8064:1 8069:1 8088:1 8093:3 8122:4 8124:1 8128:3 8142:1 8144:2 8153:1 8154:1 8172:1 8192:1 8201:1 8207:2 8214:1 8223:1 8231:1 8241:1 8245:1 8250:1 8264:1 8276:1 8283:2 8285:1 8289:1 8290:1 8301:1 8304:1 8342:1 8349:1 8376:1 8377:4 8383:1 8391:11 8400:1 8410:2 8414:1 8416:4 8417:1 8443:1 8448:1 8457:34 8487:6 8490:11 8502:1 8518:1 8537:1 8541:2 8554:2 8555:1 8558:1 8568:1 8629:1 8639:1 8699:1 8707:1 8720:1 8721:1 8765:1 8787:3 8797:3 8803:1 8816:1 8851:1 8888:1 8896:1 8903:1 8907:2 8916:1 8929:1 8940:9 8947:2 8950:1 8955:1 8958:1 8983:1 9005:1 9019:27 9045:1 9072:1 9075:1 9089:1 9102:1 9151:1 9164:1 9175:1 9205:1 9222:1 9226:1 9249:1 9258:5 9276:2 9279:1 9285:3 9293:1 9294:1 9296:1 9299:3 9323:1 9329:1 9343:1 9348:1 9363:1 9383:2 9391:1 9393:3 9398:2 9399:4 9401:1 9402:1 9408:2 9413:4 9423:1 9425:1 9428:2 9455:1 9480:1 9490:2 9493:2 9495:1 9496:1 9518:1 9554:3 9559:1 9590:1 9595:1 9643:1 9644:1 9658:1 9682:1 9683:1 9698:2 9707:2 9724:2 9736:3 9751:1 9763:1 9767:1 9769:1 9772:4 9798:1 9808:2 9816:1 9850:1 9851:1 9864:1 9869:1 9876:1 9885:2 9895:1 9898:1 9928:1 9931:2 9936:6 9940:4 9944:1 9948:1 9960:3 9974:1 9978:1 10002:1 10018:1 10028:1 10037:1 10043:1 10054:1 10061:1 10086:1 10093:1 10114:1 10121:1 10178:1 10190:3 10193:1 10207:1 10212:1 10214:1 10215:1 10222:1 10237:1 10294:1 10297:1 10313:1 10334:1 10354:3 10363:1 10373:1 10381:1 10386:1 10393:3 10394:1 10405:1 10411:1 10423:1 10431:4 10449:1 10457:1 10458:1 10461:2 10474:3 10495:1 10504:1 10534:1 10547:4 10559:1 10563:3 10568:6 10583:3 10603:1 10625:1 10649:2 10651:1 10663:2 10667:1 10678:2 10700:11 10709:1 10714:1 10715:1 10725:1 10732:1 10740:1 10743:1 10749:1 10762:1 10764:1 10775:2 10781:1 10856:2 10864:1 10871:3 10872:1 10878:2 10895:1 10903:1 10925:2 10927:1 10929:2 10944:2 10962:1 10966:1 10972:1 10978:1 10986:2 11056:1 11071:2 11080:1 11082:2 11112:1 11116:1 11124:1 11140:1 11187:2 11196:2 11217:1 11218:2 11228:1 11277:1 11284:1 11285:1 11292:2 11335:1 11337:1 11351:3 11363:1 11390:1 11416:4 11418:5 11425:1 11448:1 11466:1 11493:2 11497:1 11514:1 11521:3 11523:1 11536:1 11548:3 11556:1 11557:1 11587:2 11599:1 11606:3 11608:1 11612:1 11615:1 11620:1 11625:1 11626:1 11629:1 11630:2 11641:1 11642:1 11671:3 11673:2 11690:1 11714:3 11723:1 11728:1 11734:1 11736:1 11738:2 11740:2 11744:4 11746:8 11785:1 11803:2 11818:1 11822:1 11829:1 11834:1 11835:4 11845:1 11849:3 11877:1 11913:1 11926:1 11937:1 11952:1 11958:4 11961:2 11964:1 11968:1 12015:1 12024:3 12031:1 12053:2 12063:1 12070:3 12094:1 12099:3 12101:1 12103:1 12105:1 12124:1 12126:1 12160:6 12166:2 12169:3 12192:1 12197:1 12221:1 12243:1 12256:1 12268:3 12273:2 12308:1 12309:1 12323:1 12334:1 12338:1 12339:1 12347:2 12359:1 12374:2 12377:1 12406:1 12422:1 12441:2 12445:7 12451:1 12461:1 12492:1 12512:2 12521:2 12524:2 12525:1 12539:1 12542:1 12545:3 12546:1 12584:1 12589:1 12590:1 12606:1 12621:1 12640:1 12646:2 12654:1 12669:1 12675:1 12682:7 12684:3 12688:1 12706:1 12707:1 12721:2 12727:1 12739:1 12740:1 12743:1 12744:1 12746:1 12748:1 12750:1 12753:1 12758:1 12761:1 12769:2 12772:1 12791:1 12798:1 12799:1 12821:1 12822:1 12823:5 12839:3 12848:8 12894:1 12896:1 12903:1 12909:1 12910:1 12917:1 12920:11 12966:1 12999:1 13015:1 13025:1 13035:1 13042:2 13055:4 13057:1 13071:1 13076:1 13089:1 13093:1 13116:1 13121:3 13143:1 13159:1 13160:1 13178:3 13202:2 13215:1 13216:2 13226:3 13227:3 13230:1 13231:1 13240:1 13242:1 13247:3 13250:3 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13352:1 13364:2 13386:3 13392:1 13426:1 13432:1 13455:1 13468:1 13470:1 13519:1 13539:3 13547:1 13568:1 13600:1 13620:1 13651:1 13656:2 13693:1 13732:1 13751:1 13809:1 13813:9 13816:1 13827:2 13839:1 13845:1 13858:1 13879:1 13899:11 13906:1 13926:1 13933:2 13960:2 13984:2 14023:1 14024:1 14101:1 14104:1 14113:1 14119:1 14121:4 14126:1 14138:1 14140:2 14160:2 14178:1 14208:1 14230:2 14235:1 14257:4 14269:1 14272:1 14274:3 14280:3 14296:3 14303:8 14305:1 14307:1 14341:1 14345:1 14352:1 14369:1 14371:2 14399:2 14400:1 14431:1 14445:1 14446:8 14455:1 14464:1 14468:14 14471:1 14475:1 14505:1 14512:1 14520:1 14553:1 14567:4 14590:1 14618:2 14622:1 14632:2 14638:1 14655:1 14662:1 14680:1 14692:1 14704:1 14709:2 14714:2 14719:1 14744:1 14749:1 14790:1 14800:1 14864:1 14866:1 14868:1 14871:5 14872:1 14874:1 14879:1 14897:3 14913:1 14931:1 14941:1 14947:1 14983:10 14995:1 14996:2 15018:1 15036:1 15037:2 15038:2 15067:2 15078:1 15091:2 15092:1 15094:1 15096:3 15104:1 15117:1 15171:5 15174:2 15196:2 15223:1 15225:1 15236:1 15237:2 15297:1 15305:1 15308:2 15322:1 15344:2 15355:1 15387:1 15401:1 15435:1 15446:2 15448:1 15455:1 15460:1 15464:1 15465:1 15472:1 15474:1 15519:1 15522:1 15552:1 15561:1 15572:1 15593:1 15597:1 15598:2 15600:2 15604:1 15605:2 15615:1 15616:1 15620:1 15623:1 15631:1 15647:1 15648:1 15654:2 15680:1 15698:1 15699:1 15702:4 15740:4 15757:1 15762:1 15781:1 15804:1 15807:1 15815:1 15821:3 15830:1 15835:5 15848:2 15849:1 15860:1 15872:1 15873:1 15892:2 15903:1 15910:1 15926:2 15937:1 15941:1 15942:1 15954:1 15961:1 15971:1 15978:1 15991:1 16019:1 16030:1 16035:1 16048:1 16052:1 16112:1 16126:1 16149:1 16151:3 16156:1 16166:3 16178:1 16193:3 16198:1 16239:1 16243:1 16268:1 16272:1 16298:4 16304:1 16305:1 16319:1 16351:1 16355:1 16357:2 16358:2 16396:1 16408:1 16410:1 16412:1 16430:1 16437:1 16506:3 16515:1 16521:1 16545:3 16547:2 16549:1 16553:1 16588:1 16594:1 16621:1 16629:1 16631:1 16660:1 16685:1 16711:1 16720:1 16723:1 16747:1 16762:1 16768:1 16771:32 16808:2 16811:1 16822:1 16851:1 16865:1 16870:1 16876:1 16883:1 16901:1 16914:2 16919:1 16950:1 16981:1 16999:1 17029:1 17030:4 17036:1 17039:2 17040:1 17041:2 17046:1 17047:1 17053:1 17059:2 17065:1 17066:1 17069:1 17071:6 17072:1 17079:2 17087:1 17125:2 17127:1 17130:1 17184:1 17185:1 17186:1 17215:5 17216:5 17236:1 17243:1 17249:1 17255:3 17270:1 17288:1 17319:1 17321:2 17335:1 17348:1 17360:3 17377:1 17382:1 17398:1 17405:1 17421:1 17446:1 17469:2 17473:3 17477:1 17478:1 17500:1 17505:1 17507:6 17514:1 17521:1 17549:1 17557:1 17559:1 17562:1 17563:1 17570:1 17571:4 17593:1 17602:2 17608:1 17609:1 17622:1 17625:1 17632:1 17633:2 17637:1 17638:3 17639:2 17641:2 17643:1 17646:3 17647:1 17651:1 17653:1 17656:4 17658:1 17660:1 17662:5 17666:1 17678:1 17690:1 17695:3 17717:1 17731:1 17784:1 17819:1 17864:1 17902:1 17932:1 17937:1 17987:1 18039:2 18054:1 18068:1 18099:1 18102:1 18107:1 18115:2 18122:2 18123:1 18130:2 18141:1 18192:1 18199:2 18202:2 18212:1 18225:2 18228:5 18238:2 18243:1 18260:1 18266:1 18277:2 18303:1 18310:1 18326:2 18328:1 18343:3 18347:1 18352:9 18355:2 18382:1 18409:2 18412:1 18418:2 18420:2 18429:2 18430:3 18454:2 18465:2 18488:2 18492:2 18494:2 18498:1 18519:1 18521:1 18531:1 18533:1 18537:1 18566:1 18569:1 18574:1 18575:1 18583:1 18587:1 18589:2 18594:1 18596:1 18597:1 18608:1 18620:1 18623:1 18650:2 18684:1 18694:2 18696:1 18709:1 18727:2 18730:1 18732:1 18738:1 18750:3 18752:1 18765:2 18802:1 18804:1 18810:1 18817:1 18823:1 18839:1 18847:1 18867:1 18872:1 18873:1 18890:1 18906:1 18913:1 18918:2 18928:2 18972:1 18975:1 18978:2 18997:1 18998:1 19000:1 19001:1 19043:2 19044:2 19068:2 19078:2 19084:1 19087:1 19122:1 19130:1 19133:1 19137:1 19153:2 19157:1 19164:2 19183:1 19194:1 19205:1 19207:2 19212:1 19214:1 19222:1 19235:1 19249:6 19271:1 19286:1 19287:1 19292:3 19294:1 19319:2 19324:3 19350:1 19351:3 19353:1 19357:3 19369:1 19371:1 19372:1 19390:2 19391:2 19393:1 19408:1 19418:1 19428:1 19429:1 19437:1 19441:1 19443:4 19449:3 19450:2 19454:1 19463:1 19480:1 19486:1 19494:1 19496:1 19498:1 19518:8 19530:1 19549:2 19551:2 19561:1 19583:1 19595:1 19596:1 19601:1 19617:1 19642:1 19665:1 19698:1 19709:1 19711:1 19716:1 19720:1 19722:1 19736:1 19756:1 19762:1 19774:1 19781:1 19787:1 19792:2 19808:1 19824:1 19827:1 19837:1 19852:2 19862:1 19946:3 19951:1 19981:7 19990:1 19992:2 19994:1 20000:1 20052:1 20059:1 20061:1 20067:1 20068:1 20105:1 20113:1 20190:1 20196:2232 20200:2 20218:3 20229:1 20232:1 20249:1 20252:1 20270:1 20284:1 20286:1 20289:1 20304:1 20328:1 20339:1 20341:1 20347:2 20353:1 20386:1 20398:1 20399:1 20412:1 20422:1 20423:1 20436:5 20444:2 20449:3 20451:2 20453:1 20463:2 20482:1 20510:1 20524:1 20530:2 20555:1 20557:1 20604:1 20605:1 20633:1 20673:1 20684:1 20696:3 20712:1 20757:1 20761:2 20781:1 20819:1 20832:2 20839:1 20850:1 20858:2 20897:1 20914:1 20917:1 20954:1 20955:2 20978:3 21004:5 21015:1 21027:2 21041:3 21042:1 21056:1 21060:1 21066:1 21067:2 21105:1 21106:5 21119:1 21127:3 21129:1 21130:1 21136:1 21158:1 21167:8 21173:1 21192:1 21218:1 21229:1 21262:1 21267:1 21318:1 21323:1 21326:1 21360:1 21363:2 21374:1 21404:1 21406:1 21429:1 21434:2 21456:1 21465:1 21472:1 21475:1 21482:1 21491:2 21492:3 21500:4 21506:1 21515:1 21541:2 21542:1 21548:3 21560:1 21567:1 21590:1 21603:2 21623:1 21626:1 21634:1 21658:1 21679:1 21680:1 21705:1 21721:1 21742:1 21747:1 21755:1 21763:12 21766:3 21769:1 21773:1 21799:1 21806:1 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:5 21867:2 21873:2 21892:1 21894:1 21904:1 21915:2 21920:1 21922:1 21937:7 21944:3 21960:1 21971:1 21990:1 21991:1 22002:1 22010:1 22019:1 22025:2 22047:1 22056:1 22068:1 22080:1 22098:1 22109:1 22112:1 22115:1 22162:1 22184:3 22187:1 22194:2 22195:1 22204:1 22225:1 22228:6 22230:5 22240:1 22242:2 22243:1 22285:1 22302:1 22306:1 22311:1 22319:1 22348:2 22351:1 22353:1 22384:1 22393:1 22422:1 22434:1 22460:1 22461:1 22479:1 22482:1 22485:1 22502:1 22507:1 22515:1 22518:1 22521:1 22526:1 22528:1 22550:1 22554:1 22564:1 22569:1 22581:1 22590:4 22610:1 22614:1 22626:1 22632:1 22639:2 22643:2 22657:1 22666:1 22677:2 22719:1 22734:3 22739:1 22786:1 22796:10 22803:2 22809:2 22813:1 22822:4 22834:1 22853:1 22861:1 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22901:1 22918:1 22928:1 22941:1 22951:2 22960:2 22972:1 22991:1 23005:1 23017:1 23063:1 23067:1 23092:5 23119:2 23131:1 23136:3 23141:1 23146:2 23149:1 23185:1 23219:1 23228:1 23229:1 23234:1 23239:1 23249:1 23256:1 23257:1 23258:4 23260:1 23261:1 23264:1 23274:1 23275:1 23281:1 23307:1 23322:1 23334:1 23338:1 23342:3 23349:1 23360:1 23377:1 23389:1 23396:2 23420:2 23436:2 23438:2 23442:2 23491:1 23500:2 23503:2 23515:3 23531:1 23532:1 23551:1 23552:2 23555:1 23557:1 23558:2 23613:1 23615:1 23617:1 23652:1 23664:1 23665:2 23676:1 23686:4 23687:3 23689:3 23696:1 23697:1 23700:1 23715:1 23718:3 23722:1 23731:1 23732:2 23746:1 23749:1 23765:2 23775:1 23796:1 23826:2 23862:1 23863:3 23872:1 23885:1 23893:1 23901:3 23905:2 23916:3 23935:1 23953:1 23977:1 23983:1 23994:2 24025:1 24034:1 24042:1 24053:1 24054:1 24068:2 24070:1 24079:2 24087:1 24088:5 24093:1 24095:1 24126:1 24132:1 24148:1 24157:1 24161:3 24166:2 24172:1 24173:1 24175:2 24182:2 24218:1 24233:1 24244:1 24245:1 24261:1 24269:1 24272:1 24287:2 24294:1 24298:1 24311:2 24327:1 24343:1 24357:3 24361:1 24363:2 24375:3 24379:1 24394:1 24414:1 24425:1 24451:2 24452:1 24488:1 24489:1 24503:1 24506:1 24518:1 24534:3 24539:1 24544:1 24548:1 24563:1 24566:1 24584:1 24594:1 24599:2 24603:1 24610:2 24611:1 24612:2 24616:1 24617:1 24619:1 24625:1 24633:1 24638:1 24640:1 24652:3 24655:1 24664:2 24672:3 24687:1 24690:1 24714:2 24718:2 24725:1 24727:2 24731:1 24761:1 24766:1 24778:1 24786:1 24794:1 24819:3 24846:1 24865:4 24883:1 24913:3 24916:3 24957:2 24969:1 24981:1 24999:1 25005:1 25009:2 25018:1 25021:1 25079:1 25080:1 25140:1 25152:1 25166:1 25171:2 25185:3 25188:1 25193:4 25203:1 25204:1 25210:2 25226:1 25245:1 25247:1 25263:1 25266:1 25274:1 25276:3 25280:1 25294:3 25298:3 25305:1 25308:1 25346:1 25351:1 25359:1 25364:1 25372:1 25373:2 25394:1 25395:1 25396:2 25417:1 25421:1 25431:1 25438:1 25441:1 25465:6 25469:1 25473:3 25490:1 25498:1 25534:3 25559:1 25560:2 25566:1 25593:1 25606:1 25648:2 25649:1 25665:1 25684:3 25691:1 25705:1 25779:2 25802:1 25817:3 25865:1 25909:1 25910:8 25996:1 25997:1 26016:2 26050:2 26057:1 26058:1 26064:1 26071:1 26084:1 26098:1 26100:1 26111:2 26136:1 26142:1 26151:3 26160:1 26170:2 26172:7 26174:1 26177:1 26179:1 26197:1 26201:1 26202:1 26204:1 26215:1 26219:1 26221:2 26236:1 26245:1 26248:1 26270:1 26334:1 26347:1 26386:1 26397:1 26398:1 26399:1 26405:2 26406:1 26408:1 26409:1 26413:1 26427:1 26468:1 26470:2 26483:3 26485:1 26487:3 26489:1 26490:4 26496:2 26497:1 26510:1 26518:4 26535:5 26536:1 26552:1 26575:2 26576:1 26597:1 26603:1 26607:1 26608:1 26626:1 26631:2 26638:1 26645:2 26654:2 26657:1 26678:1 26684:2 26719:1 26750:1 26754:1 26783:1 26793:1 26799:2 26829:1 26836:1 26847:1 26858:1 26861:2 26870:1 26895:3 26900:1 26916:6 26958:1 26967:1 26968:1 26986:1 26991:6 26999:1 27000:1 27002:1 27005:1 27019:1 27043:2 27044:1 27137:1 27140:1 27195:1 27213:1 27242:3 27244:7 27245:1 27265:3 27276:1 27277:1 27290:2 27296:1 27297:1 27305:2 27353:1 27360:1 27384:1 27402:1 27446:1 27457:1 27471:1 27472:1 27474:1 27482:1 27483:1 27507:1 27509:1 27510:1 27512:2 27518:1 27534:1 27544:1 27584:1 27586:1 27599:1 27600:3 27614:1 27646:1 27653:1 27673:1 27693:1 27734:1 27750:1 27758:1 27770:1 27777:1 27787:1 27801:5 27802:1 27804:6 27814:1 27869:1 27910:2 27930:1 27952:5 27956:1 27957:1 27976:1 27999:1 28013:1 28018:1 28073:1 28076:2 28079:1 28091:1 28100:1 28105:1 28112:1 28119:1 28131:3 28150:1 28152:1 28154:1 28159:3 28164:1 28166:1 28180:1 28192:1 28208:1 28215:1 28219:1 28222:4 28235:1 28245:1 28276:1 28291:1 28308:6 28309:1 28326:3 28349:1 28366:1 28391:3 28403:1 28405:2 28421:1 28429:2 28434:1 28462:1 28484:1 28495:1 28507:1 28511:1 28516:1 28517:2 28533:1 28554:1 28578:2 28581:2 28589:1 28600:1 28602:1 28607:1 28611:1 28615:1 28617:1 28619:2 28623:3 28624:1 28644:2 28664:2 28675:1 28678:1 28680:1 28687:1 28703:4 28747:2 28756:2 28767:1 28782:1 28803:1 28855:1 28867:1 28874:1 28912:1 28916:2 28989:1 28991:1 29013:1 29021:1 29104:1 29109:1 29117:1 29142:1 29149:2 29150:1 29209:1 29243:1 29268:1 29274:1 29282:2 29288:1 29292:3 29306:1 29314:1 29315:2 29319:1 29325:1 29340:1 29342:2 29353:1 29355:1 29372:3 29390:1 29391:1 29400:1 29403:1 29411:4 29417:1 29425:1 29468:1 29479:1 29482:6 29486:2 29489:1 29509:1 29520:2 29550:1 29560:1 29576:4 29587:2 29588:2 29596:2 29599:1 29601:3 29605:1 29615:1 29627:1 29637:1 29653:1 29658:2 29667:1 29668:1 29679:1 29684:2 29686:2 29689:1 29694:1 29696:1 29697:1 29699:1 29706:1 29714:1 29718:1 29754:2 29760:1 29789:2 29790:1 29794:1 29795:1 29814:1 29816:3 29818:1 29828:1 29833:1 29848:1 29852:1 29862:1 29867:1 29916:1 29918:1 29931:1 29932:1 29934:2 29938:1 29956:4 29971:1 29979:1 29989:1 29991:2 29995:1 30016:2 30031:2 30041:1 30044:1 30045:6 30064:2 30067:1 30097:1 30149:1 30175:1 30188:1 30212:1 30240:3 30269:1 30282:1 30289:1 30319:3 30331:2 30336:1 30368:1 30372:1 30390:4 30392:1 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30466:1 30479:19 30480:1 30502:1 30530:1 30537:12 30543:1 30546:1 30548:1 30550:2 30581:1 30602:1 30623:1 30630:2 30646:1 30655:1 30661:1 30670:3 30675:3 30711:10 30713:1 30747:2 30764:2 30768:1 30805:2 30809:1 30810:1 30815:1 30818:1 30820:1 30846:2 30876:1 30882:2 30888:1 30903:2 30924:1 30933:1 30956:1 30988:1 30996:1 31026:1 31041:4 31043:3 31104:1 31114:1 31115:1 31118:1 31121:1 31125:2 31132:1 31133:1 31135:1 31143:1 31231:1 31253:4 31265:1 31267:1 31268:1 31272:10 31288:1 31291:1 31306:1 31309:1 31310:3 31316:1 31337:1 31342:1 31362:1 31369:2 31380:1 31413:1 31437:1 31439:1 31444:1 31458:1 31465:1 31477:1 31495:1 31496:1 31506:3 31514:2 31528:1 31550:1 31612:2 31652:1 31659:1 31666:1 31667:4 31679:1 31681:1 31689:1 31705:1 31713:2 31718:1 31742:2 31750:1 31756:1 31765:1 31780:1 31781:1 31785:1 31794:5 31801:1 31802:1 31803:2 31815:1 31823:1 31826:1 31851:1 31852:1 31866:1 31873:1 31882:1 31886:1 31890:3 31891:1 31896:2 31898:4 31902:1 31905:2 31907:2 31911:1 31914:1 31934:1 31958:1 31962:3 31965:1 31970:1 31977:1 31978:1 31998:1 32007:1
20 9:1 18:1 21:1 23:1 24:1 26:2 30:1 31:1 46:1 61:1 75:1 78:1 90:7 95:1 103:1 111:1 120:1 123:1 158:1 169:1 181:1 184:1 193:1 197:1 211:1 233:1 253:3 261:2 274:2 278:1 290:3 292:1 307:1 331:1 355:2 358:1 385:1 404:1 406:2 421:1 448:1 468:1 482:1 489:3 536:1 540:2 564:1 596:1 602:1 622:1 623:3 625:1 631:1 635:1 652:2 664:2 668:1 696:2 701:1 704:3 755:1 770:1 794:1 822:1 892:1 897:1 913:1 956:2 959:1 963:1 965:1 971:2 977:1 990:1 995:1 996:4 1000:1 1011:1 1018:1 1025:1 1034:3 1054:1 1057:1 1062:1 1063:3 1064:1 1066:1 1067:5 1069:5 1079:1 1095:1 1098:1 1108:4 1124:1 1135:3 1136:3 1143:2 1149:1 1158:1 1167:1 1198:1 1200:2 1205:1 1226:1 1255:1 1262:1 1281:1 1292:5 1305:4 1339:1 1341:2 1350:1 1353:1 1366:1 1368:2 1371:1 1380:1 1389:1 1402:1 1406:1 1407:1 1420:1 1426:1 1427:1 1430:1 1446:1 1458:1 1491:1 1511:1 1533:1 1549:1 1563:1 1576:1 1582:3 1594:2 1599:1 1608:1 1610:1 1630:1 1631:1 1633:4 1641:3 1651:4 1662:1 1668:1 1670:1 1671:1 1678:1 1691:3 1719:14 1722:2 1725:7 1729:1 1737:3 1741:1 1746:1 1756:2 1757:2 1759:2 1778:1 1799:1 1800:1 1805:1 1811:9 1818:1 1827:1 1829:1 1840:1 1855:1 1863:1 1876:1 1877:1 1882:1 1903:2 1945:1 1967:1 1968:5 1973:2 1976:1 1987:2 1994:1 2015:1 2026:1 2035:2 2061:1 2064:1 2070:1 2086:1 2088:1 2105:2 2113:3 2116:2 2127:1 2138:2 2145:1 2161:1 2163:1 2166:1 2208:1 2210:2 2229:1 2245:4 2260:1 2264:1 2284:1 2285:3 2291:1 2295:1 2296:1 2301:1 2341:1 2354:6 2357:1 2379:1 2389:1 2395:2 2397:2 2403:1 2433:2 2435:8 2438:7 2442:1 2443:1 2450:1 2451:3 2452:3 2454:2 2455:2 2458:1 2463:1 2469:1 2471:1 2472:2 2475:4 2500:1 2505:1 2507:2 2509:1 2512:2 2513:1 2514:4 2516:1 2517:1 2520:1 2525:2 2530:1 2531:3 2533:2 2535:3 2539:3 2542:3 2544:2 2546:2 2549:2 2552:1 2554:2 2557:1 2574:1 2576:1 2579:1 2582:1 2599:1 2607:1 2616:1 2629:1 2639:1 2645:1 2650:1 2658:1 2673:1 2676:1 2677:1 2718:1 2723:1 2741:1 2757:1 2762:1 2767:1 2772:1 2773:1 2795:1 2801:1 2831:1 2833:1 2839:1 2853:1 2869:1 2870:1 2875:1 2893:3 2898:1 2902:1 2914:1 2923:1 2937:1 2948:1 2961:1 2963:2 2965:1 2970:2 2975:1 2977:1 2986:1 2995:1 3012:2 3015:1 3021:1 3029:1 3037:1 3045:1 3050:1 3056:1 3063:1 3084:1 3087:2 3095:1 3105:1 3120:1 3128:1 3159:5 3164:1 3168:11 3169:2 3171:2 3181:1 3184:2 3185:3 3195:1 3201:1 3204:1 3214:11 3250:1 3288:1 3320:1 3327:1 3347:2 3354:1 3361:1 3422:3 3427:1 3453:1 3463:1 3501:1 3507:1 3514:1 3537:1 3553:1 3597:1 3598:1 3607:3 3615:1 3625:4 3628:1 3660:3 3674:1 3695:3 3706:1 3711:1 3712:1 3719:1 3722:1 3723:1 3751:1 3752:1 3780:1 3825:1 3835:1 3840:1 3846:1 3873:1 3885:2 3893:1 3901:2 3944:1 3949:1 3952:6 3966:2 3970:2 3977:1 3991:2 4006:1 4009:1 4013:1 4015:1 4024:6 4042:1 4056:1 4059:1 4063:1 4065:1 4070:1 4075:3 4118:2 4126:2 4127:4 4160:1 4175:6 4176:1 4187:1 4202:1 4207:1 4211:6 4213:1 4261:1 4264:2 4279:1 4296:1 4306:1 4317:6 4335:1 4345:2 4346:2 4366:1 4370:1 4375:1 4379:1 4391:1 4392:2 4395:1 4406:1 4414:2 4420:1 4423:2 4425:1 4443:1 4454:1 4472:1 4482:1 4508:1 4517:1 4535:1 4562:1 4575:1 4587:1 4593:1 4598:1 4626:1 4641:1 4699:1 4702:1 4727:1 4730:1 4736:1 4768:1 4771:1 4776:1 4777:2 4780:1 4791:1 4794:1 4836:2 4838:1 4859:1 4860:1 4870:1 4872:1 4917:1 4923:1 4958:1 4959:2 4993:1 4997:1 4999:2 5012:1 5027:2 5046:2 5055:1 5067:1 5078:2 5084:1 5086:1 5106:4 5122:1 5130:2 5131:1 5136:2 5184:1 5186:1 5196:1 5215:1 5227:1 5245:1 5247:1 5283:1 5291:1 5296:1 5306:1 5332:18 5333:1 5345:1 5349:1 5364:1 5372:1 5396:1 5444:3 5448:7 5466:3 5467:2 5470:1 5472:1 5475:1 5476:2 5479:1 5480:1 5485:1 5487:3 5488:2 5490:4 5492:3 5495:1 5496:1 5508:2 5547:1 5577:1 5607:1 5619:1 5662:1 5678:4 5683:1 5693:1 5706:1 5710:1 5715:1 5720:1 5745:3 5748:1 5767:1 5775:1 5800:2 5825:1 5839:1 5864:3 5877:1 5901:1 5916:1 5918:1 5924:1 5929:1 5931:4 5962:1 5977:1 5992:1 5997:2 5998:1 6018:1 6038:1 6039:2 6049:1 6057:2 6077:1 6086:1 6089:1 6095:1 6101:2 6107:1 6117:1 6120:1 6127:1 6137:3 6158:3 6189:1 6225:2 6243:1 6244:2 6249:1 6250:1 6268:2 6279:1 6280:1 6312:1 6319:1 6321:1 6323:1 6326:2 6350:1 6351:1 6359:1 6362:1 6375:1 6379:1 6387:2 6394:3 6400:2 6444:4 6445:3 6463:2 6467:2 6476:1 6477:2 6532:1 6542:1 6571:1 6584:1 6596:1 6609:6 6612:1 6631:1 6652:2 6664:1 6670:2 6674:1 6675:1 6682:1 6702:1 6709:1 6711:1 6721:1 6727:2 6772:3 6779:1 6783:3 6829:1 6830:1 6841:1 6851:1 6856:3 6858:1 6869:1 6874:1 6890:1 6898:2 6910:1 6932:3 6933:2 6937:1 6949:3 6950:1 6951:1 6959:3 6963:1 6966:1 6967:1 6971:4 6973:3 6977:2 6979:5 6980:2 6982:4 7005:1 7034:1 7036:1 7077:4 7097:1 7105:4 7120:2 7146:1 7169:1 7170:1 7187:1 7201:1 7215:1 7231:1 7236:2 7262:1 7307:2 7328:1 7333:1 7344:1 7345:2 7353:1 7361:2 7362:1 7368:1 7391:1 7392:1 7396:1 7399:1 7401:1 7406:2 7430:2 7432:1 7433:1 7439:1 7448:1 7456:1 7457:1 7461:1 7486:1 7489:3 7503:1 7566:1 7567:1 7580:3 7581:1 7601:1 7615:3 7624:1 7628:1 7634:1 7657:1 7688:1 7713:1 7717:2 7757:1 7763:1 7781:1 7799:9 7801:1 7813:1 7824:2 7826:1 7862:2 7879:1 7900:2 7937:1 7940:1 7941:1 7951:1 7971:2 7976:1 8000:1 8013:1 8019:1 8025:1 8051:1 8063:1 8064:1 8069:1 8088:1 8093:3 8122:4 8124:1 8128:3 8142:1 8144:2 8153:1 8154:2 8172:1 8192:1 8201:1 8207:2 8214:1 8223:1 8231:1 8241:1 8245:1 8250:1 8264:1 8276:1 8283:2 8285:1 8289:1 8290:1 8301:1 8304:1 8342:1 8349:1 8376:1 8377:4 8383:1 8390:1 8391:11 8400:1 8410:2 8414:1 8416:4 8417:1 8443:1 8448:1 8457:36 8487:7 8490:13 8502:1 8518:1 8537:1 8541:2 8554:2 8555:1 8558:1 8568:1 8629:1 8639:1 8699:1 8707:1 8720:1 8721:1 8731:1 8765:1 8777:1 8787:3 8797:3 8803:1 8816:1 8851:1 8862:1 8888:1 8896:1 8903:1 8907:2 8916:1 8929:1 8940:9 8947:2 8950:1 8955:1 8958:1 8983:1 9005:1 9019:27 9045:1 9072:1 9075:1 9089:1 9102:1 9151:1 9164:1 9175:1 9205:1 9222:1 9226:1 9249:1 9258:5 9276:2 9279:1 9285:3 9293:1 9294:1 9296:1 9299:3 9323:1 9329:1 9343:1 9348:1 9363:1 9383:2 9391:1 9393:3 9398:2 9399:4 9401:1 9402:1 9408:2 9413:4 9423:1 9425:1 9428:2 9455:1 9480:2 9490:2 9493:2 9495:1 9496:1 9518:1 9554:3 9559:1 9590:1 9595:1 9643:1 9644:1 9658:1 9682:1 9683:1 9698:2 9707:2 9724:2 9736:3 9751:1 9763:1 9767:1 9769:1 9772:4 9798:1 9808:2 9816:1 9850:1 9851:1 9864:1 9869:1 9876:1 9885:2 9895:1 9898:1 9928:1 9931:2 9936:6 9940:4 9944:1 9948:1 9960:3 9974:1 9978:1 10002:2 10016:1 10018:1 10028:1 10037:1 10043:1 10054:1 10061:1 10086:1 10093:1 10114:1 10121:1 10147:1 10178:1 10182:1 10190:3 10193:1 10207:1 10212:1 10214:1 10215:1 10222:1 10237:1 10294:1 10297:1 10313:1 10334:1 10354:3 10363:1 10373:1 10381:1 10386:1 10393:4 10394:1 10405:1 10411:1 10423:1 10431:4 10449:1 10457:1 10458:1 10461:2 10474:3 10495:1 10504:1 10534:1 10547:4 10559:1 10563:3 10568:6 10583:3 10603:1 10625:1 10649:2 10651:1 10663:2 10667:1 10678:2 10700:11 10709:1 10714:1 10715:1 10725:1 10732:1 10740:1 10743:1 10749:1 10762:1 10764:1 10775:2 10781:1 10856:2 10864:1 10871:3 10872:1 10878:2 10895:1 10903:1 10925:2 10927:1 10929:2 10944:2 10962:1 10966:1 10972:1 10978:1 10986:2 11056:1 11071:2 11080:1 11082:2 11085:1 11112:1 11116:1 11124:1 11140:1 11145:1 11187:2 11196:2 11217:1 11218:2 11228:1 11277:1 11284:1 11285:1 11292:2 11335:1 11337:1 11351:3 11363:1 11390:1 11416:4 11418:6 11425:1 11448:1 11466:1 11493:2 11497:1 11514:1 11521:3 11523:1 11536:1 11548:3 11556:1 11557:1 11587:2 11599:1 11606:4 11608:1 11612:1 11615:1 11620:1 11625:1 11626:1 11629:1 11630:2 11641:1 11642:1 11647:1 11671:3 11673:2 11690:1 11714:3 11723:1 11728:1 11734:1 11736:2 11738:2 11740:2 11744:4 11746:9 11785:1 11803:2 11818:1 11822:1 11829:1 11834:1 11835:4 11845:1 11849:3 11877:1 11913:1 11926:1 11937:1 11952:1 11958:4 11961:2 11964:1 11968:1 12015:1 12024:3 12031:1 12053:2 12063:1 12070:4 12094:1 12099:3 12101:1 12103:1 12105:1 12124:1 12126:1 12160:6 12166:2 12169:3 12192:1 12197:1 12221:1 12243:1 12256:1 12268:3 12273:2 12308:1 12309:1 12323:1 12334:1 12338:1 12339:1 12347:2 12359:1 12374:2 12377:1 12406:1 12422:1 12441:2 12445:7 12451:1 12461:1 12490:1 12492:1 12512:2 12521:2 12524:2 12525:1 12539:1 12542:1 12545:3 12546:1 12584:1 12589:1 12590:1 12606:1 12621:1 12640:1 12646:2 12654:1 12669:1 12675:1 12682:7 12684:3 12688:1 12706:1 12707:1 12721:2 12727:1 12730:1 12732:1 12739:1 12740:1 12743:1 12744:1 12746:1 12748:1 12750:1 12753:1 12755:1 12758:1 12761:1 12769:2 12772:1 12791:1 12798:1 12799:1 12821:1 12822:1 12823:5 12839:3 12848:8 12894:1 12896:1 12903:1 12909:1 12910:1 12917:1 12920:11 12966:1 12999:1 13015:1 13025:1 13035:1 13042:2 13055:4 13057:1 13071:1 13076:1 13089:1 13093:1 13114:1 13116:1 13121:3 13143:1 13159:1 13160:1 13178:3 13202:2 13215:1 13216:2 13226:3 13227:3 13230:1 13231:1 13240:1 13242:1 13247:3 13250:3 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13352:1 13364:2 13386:3 13392:2 13426:1 13432:1 13455:1 13468:1 13470:1 13519:1 13539:3 13547:1 13568:1 13600:1 13620:1 13651:1 13656:2 13693:1 13732:1 13751:1 13809:1 13813:10 13816:1 13827:2 13839:1 13845:1 13858:1 13879:1 13899:11 13906:1 13926:1 13933:2 13960:2 13984:2 14023:1 14024:1 14101:1 14104:1 14113:1 14119:1 14121:4 14126:1 14138:1 14140:2 14160:2 14178:1 14208:1 14230:2 14235:1 14257:4 14269:1 14272:1 14274:3 14280:3 14296:3 14303:8 14305:1 14307:1 14341:1 14345:1 14352:1 14369:1 14371:2 14399:2 14400:2 14431:1 14445:1 14446:8 14455:1 14464:1 14468:14 14471:1 14475:1 14505:1 14512:1 14520:1 14553:1 14567:4 14590:1 14618:2 14622:1 14632:2 14638:1 14655:1 14662:1 14680:1 14692:1 14704:1 14709:2 14714:2 14719:1 14744:1 14749:2 14790:1 14800:1 14864:1 14866:1 14868:1 14871:5 14872:1 14874:1 14879:1 14897:3 14913:1 14931:1 14941:1 14947:1 14983:10 14995:1 14996:2 15018:1 15036:1 15037:2 15038:2 15067:2 15078:1 15091:2 15092:1 15094:1 15095:1 15096:3 15104:1 15117:1 15171:5 15174:2 15196:2 15223:1 15225:1 15232:2 15236:1 15237:2 15297:1 15305:1 15308:2 15322:1 15344:2 15355:1 15387:1 15401:1 15435:1 15446:2 15448:1 15455:1 15460:1 15464:1 15465:1 15472:1 15474:1 15519:1 15522:1 15552:1 15561:1 15572:1 15593:1 15597:1 15598:2 15600:2 15604:1 15605:3 15615:1 15616:1 15620:1 15623:1 15631:1 15647:1 15648:1 15654:2 15680:1 15698:1 15699:1 15702:4 15740:4 15757:1 15762:1 15781:1 15804:1 15807:1 15815:1 15821:3 15830:1 15835:5 15848:2 15849:1 15860:1 15872:1 15873:1 15892:2 15903:1 15910:1 15926:2 15937:1 15941:1 15942:1 15954:1 15961:1 15971:1 15978:1 15991:1 16019:1 16030:1 16035:1 16048:1 16052:1 16092:1 16112:1 16126:1 16149:1 16151:3 16156:1 16166:3 16178:1 16193:3 16198:1 16239:1 16243:1 16268:1 16272:1 16298:4 16304:1 16305:1 16319:1 16351:1 16355:1 16357:2 16358:2 16396:1 16408:1 16410:1 16412:1 16430:1 16437:1 16506:3 16515:1 16521:1 16545:3 16547:2 16549:1 16553:1 16588:1 16594:1 16621:1 16629:1 16631:1 16660:1 16685:1 16703:1 16711:1 16720:1 16723:1 16747:1 16762:1 16768:1 16771:34 16808:2 16811:1 16822:1 16851:1 16865:1 16870:1 16876:1 16883:1 16901:1 16914:2 16919:1 16950:1 16981:1 16999:1 17029:1 17030:4 17036:1 17039:2 17040:1 17041:2 17046:1 17047:1 17053:1 17059:2 17065:1 17066:1 17069:1 17071:6 17072:1 17079:2 17087:1 17125:2 17127:1 17130:1 17184:1 17185:1 17186:1 17215:5 17216:5 17236:1 17243:1 17249:1 17255:3 17270:1 17288:1 17319:1 17321:2 17335:1 17348:1 17360:3 17377:1 17382:1 17398:1 17405:1 17421:1 17446:1 17469:2 17473:3 17477:1 17478:1 17500:1 17505:1 17507:6 17514:1 17521:1 17549:1 17557:1 17559:1 17562:1 17563:1 17570:1 17571:4 17593:1 17602:2 17608:1 17609:1 17622:1 17625:1 17632:1 17633:2 17637:1 17638:3 17639:2 17641:2 17643:1 17646:3 17647:1 17651:1 17653:1 17656:4 17658:1 17660:1 17662:5 17666:1 17678:1 17690:1 17695:3 17717:1 17731:1 17751:1 17784:1 17819:1 17864:1 17902:1 17932:1 17937:1 17987:1 18039:2 18054:1 18068:1 18099:1 18102:1 18105:1 18107:1 18115:2 18122:2 18123:1 18130:2 18141:1 18192:1 18199:2 18202:2 18212:1 18225:2 18228:6 18238:2 18243:1 18260:1 18266:1 18277:2 18303:1 18310:1 18326:2 18328:1 18343:3 18347:1 18352:9 18355:2 18382:1 18409:2 18412:1 18418:2 18420:2 18429:2 18430:3 18454:2 18465:2 18488:2 18492:2 18494:2 18498:1 18519:1 18521:1 18531:1 18533:1 18537:1 18566:1 18569:1 18574:1 18575:1 18583:1 18587:1 18589:2 18594:1 18596:1 18597:2 18599:1 18608:1 18620:1 18623:1 18650:2 18684:1 18686:1 18694:3 18696:1 18709:1 18727:2 18730:1 18732:1 18736:1 18738:1 18750:3 18752:1 18765:2 18802:1 18804:1 18810:1 18817:1 18823:1 18839:1 18843:1 18847:1 18867:1 18872:1 18873:1 18890:1 18906:1 18913:1 18918:2 18928:2 18972:1 18975:1 18978:2 18982:1 18997:1 18998:1 19000:1 19001:1 19043:2 19044:2 19068:2 19078:2 19084:1 19087:1 19122:1 19130:1 19133:1 19137:1 19153:2 19157:1 19164:2 19183:1 19194:1 19205:1 19207:2 19212:1 19214:1 19222:1 19235:1 19249:6 19271:1 19286:1 19287:1 19292:3 19294:1 19319:2 19324:3 19350:1 19351:3 19353:1 19357:3 19369:1 19371:1 19372:1 19390:2 19391:2 19393:1 19408:1 19418:1 19428:1 19429:1 19437:2 19441:1 19443:5 19449:3 19450:2 19454:1 19463:1 19480:1 19486:1 19494:1 19496:1 19498:1 19518:8 19530:1 19549:2 19551:2 19561:1 19583:1 19595:1 19596:1 19601:2 19617:1 19642:1 19665:1 19698:1 19709:1 19711:1 19716:1 19720:1 19722:1 19736:1 19756:1 19762:1 19774:1 19781:1 19787:1 19792:2 19808:1 19824:1 19827:1 19837:1 19852:2 19862:1 19888:1 19946:3 19951:1 19981:7 19990:1 19992:2 19994:1 20000:1 20052:1 20059:1 20061:1 20067:1 20068:1 20105:1 20113:1 20190:1 20196:2278 20200:2 20218:3 20229:1 20232:1 20249:1 20252:1 20270:1 20284:1 20286:1 20289:1 20304:1 20316:1 20328:1 20339:1 20341:1 20347:2 20353:1 20386:1 20390:1 20398:1 20399:1 20412:1 20422:1 20423:1 20436:5 20444:2 20449:3 20451:3 20453:1 20463:2 20482:1 20510:1 20524:1 20530:2 20555:1 20557:1 20604:1 20605:1 20633:1 20673:1 20684:1 20696:3 20712:1 20757:1 20761:2 20781:1 20819:1 20832:2 20839:1 20850:1 20858:2 20897:1 20908:2 20914:1 20917:1 20954:1 20955:2 20978:4 21004:5 21015:1 21027:2 21041:3 21042:1 21056:1 21060:1 21066:1 21067:2 21105:1 21106:5 21119:1 21127:3 21129:1 21130:1 21136:1 21158:1 21167:8 21173:1 21192:1 21218:1 21229:1 21262:1 21267:1 21318:1 21323:1 21326:1 21360:1 21363:2 21374:1 21404:1 21406:1 21429:1 21434:2 21456:1 21465:1 21472:1 21475:1 21482:1 21491:3 21492:3 21500:4 21506:1 21515:1 21541:2 21542:1 21548:3 21560:1 21567:1 21590:1 21603:2 21623:1 21626:1 21634:1 21658:1 21679:1 21680:1 21705:1 21721:1 21742:1 21747:1 21755:1 21763:14 21766:3 21769:1 21773:1 21799:1 21806:1 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:5 21867:2 21873:2 21892:1 21894:1 21904:1 21915:2 21920:1 21922:1 21937:8 21944:3 21960:1 21971:1 21990:1 21991:1 22002:2 22010:1 22019:1 22025:2 22031:1 22047:1 22056:1 22068:1 22080:1 22098:1 22109:1 22112:1 22115:1 22150:1 22162:1 22184:3 22187:1 22194:2 22195:1 22204:1 22225:1 22228:6 22230:5 22240:1 22242:2 22243:1 22285:1 22302:1 22306:1 22311:1 22319:1 22348:2 22351:1 22353:1 22384:1 22393:1 22396:1 22422:1 22434:1 22460:1 22461:1 22479:1 22482:1 22485:2 22502:1 22507:1 22515:1 22518:1 22521:1 22526:1 22528:1 22550:1 22554:1 22560:1 22564:1 22569:1 22581:1 22590:5 22610:1 22614:1 22626:1 22632:1 22639:2 22643:3 22657:1 22666:1 22677:2 22716:1 22719:1 22734:3 22739:1 22786:1 22796:10 22803:2 22809:2 22813:1 22822:4 22834:1 22853:1 22861:1 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22901:1 22918:1 22928:1 22941:1 22951:2 22960:2 22972:1 22991:1 23005:1 23017:1 23063:1 23067:1 23092:5 23119:3 23131:1 23136:3 23141:1 23146:2 23149:1 23185:1 23219:1 23228:1 23229:1 23234:1 23239:1 23249:1 23256:1 23257:2 23258:4 23260:1 23261:1 23264:1 23274:1 23275:1 23281:1 23307:1 23310:1 23322:1 23334:1 23338:1 23342:3 23349:1 23360:1 23377:1 23389:1 23396:2 23420:2 23436:2 23438:2 23442:2 23491:1 23500:2 23503:2 23515:3 23531:1 23532:1 23539:1 23551:1 23552:2 23555:1 23557:1 23558:2 23606:1 23613:1 23615:1 23617:1 23652:1 23664:1 23665:2 23676:1 23686:4 23687:3 23689:3 23696:1 23697:1 23700:1 23715:1 23718:3 23722:1 23731:1 23732:2 23746:1 23749:1 23765:2 23775:1 23796:1 23826:2 23862:1 23863:3 23872:1 23885:1 23893:1 23901:3 23905:2 23916:3 23935:1 23953:1 23977:1 23983:1 23994:2 24025:1 24034:1 24042:1 24053:1 24054:1 24068:2 24070:1 24079:2 24087:1 24088:5 24093:1 24095:1 24126:1 24132:1 24148:1 24157:1 24161:3 24166:2 24172:1 24173:1 24175:2 24182:2 24218:1 24233:1 24244:1 24245:1 24261:1 24269:2 24272:1 24287:2 24294:1 24298:1 24311:2 24325:1 24326:1 24327:1 24343:1 24357:3 24361:1 24363:2 24375:3 24379:1 24394:1 24414:1 24425:1 24451:2 24452:1 24488:1 24489:1 24503:1 24506:1 24518:1 24534:3 24539:1 24544:1 24548:1 24563:1 24566:1 24584:1 24594:1 24599:2 24603:1 24610:2 24611:1 24612:2 24616:1 24617:1 24619:1 24625:1 24633:1 24638:1 24640:1 24652:3 24655:1 24664:2 24672:3 24687:1 24690:1 24714:2 24718:2 24725:1 24727:2 24731:1 24761:1 24766:1 24778:1 24786:1 24794:1 24819:3 24846:1 24865:4 24883:1 24913:3 24916:3 24957:2 24969:1 24981:1 24999:1 25005:1 25009:2 25018:1 25021:1 25079:1 25080:1 25140:1 25152:1 25166:1 25171:2 25185:3 25188:1 25193:4 25203:1 25204:1 25210:2 25226:1 25245:1 25247:1 25263:1 25266:1 25274:1 25276:3 25280:1 25294:3 25298:3 25305:1 25308:1 25346:1 25351:1 25359:1 25364:1 25372:1 25373:2 25394:1 25395:1 25396:2 25417:1 25421:1 25431:1 25438:1 25441:1 25453:2 25465:6 25469:1 25473:3 25490:1 25495:1 25498:1 25534:3 25559:1 25560:2 25566:1 25593:1 25606:1 25648:2 25649:1 25665:1 25684:3 25691:1 25705:1 25779:2 25802:1 25817:3 25865:1 25909:1 25910:8 25996:1 25997:1 26016:2 26050:2 26057:1 26058:1 26064:1 26071:1 26084:1 26098:1 26100:1 26111:2 26136:1 26142:1 26151:3 26160:1 26170:2 26172:7 26174:1 26177:1 26179:1 26197:1 26201:1 26202:1 26204:1 26215:1 26219:1 26221:2 26236:1 26245:1 26248:1 26270:1 26334:1 26347:1 26386:1 26397:1 26398:1 26399:1 26405:2 26406:1 26408:1 26409:1 26413:1 26427:1 26468:1 26470:2 26483:3 26485:1 26487:3 26489:1 26490:4 26496:2 26497:1 26510:1 26518:4 26535:5 26536:1 26552:1 26575:2 26576:1 26597:1 26603:1 26607:1 26608:1 26626:1 26631:2 26638:1 26645:2 26654:2 26657:1 26659:1 26678:1 26684:2 26719:1 26750:1 26754:1 26783:1 26793:1 26799:2 26829:1 26836:1 26847:1 26858:1 26861:2 26870:1 26895:3 26900:1 26916:6 26958:1 26967:1 26968:1 26986:1 26991:6 26999:1 27000:1 27002:1 27005:1 27019:2 27043:2 27044:1 27137:1 27140:1 27195:1 27213:1 27242:3 27244:7 27245:1 27265:3 27276:1 27277:1 27290:2 27296:1 27297:1 27305:2 27353:1 27360:1 27384:1 27402:1 27408:1 27446:1 27457:1 27471:1 27472:1 27474:1 27482:1 27483:1 27507:1 27509:1 27510:1 27512:2 27518:1 27534:1 27544:1 27584:1 27586:1 27599:1 27600:3 27614:1 27646:1 27647:1 27653:1 27673:1 27693:1 27734:1 27750:1 27758:1 27770:1 27777:1 27787:1 27801:5 27802:1 27804:6 27814:1 27869:1 27910:2 27930:1 27952:5 27956:1 27957:1 27976:1 27999:1 28013:1 28018:1 28057:1 28073:1 28076:2 28079:1 28091:1 28100:1 28105:1 28112:1 28119:1 28131:3 28150:1 28152:1 28154:1 28159:3 28164:1 28166:1 28180:1 28192:1 28208:1 28215:1 28219:1 28222:4 28235:1 28245:1 28276:2 28291:1 28308:6 28309:1 28326:3 28349:1 28366:1 28372:1 28391:3 28403:1 28405:2 28421:1 28429:2 28434:1 28462:1 28484:1 28495:1 28507:1 28511:1 28516:1 28517:2 28533:1 28554:1 28578:2 28581:2 28589:1 28600:1 28602:1 28607:1 28611:1 28615:1 28617:1 28619:2 28623:3 28624:1 28644:2 28664:2 28675:1 28678:1 28680:1 28687:1 28703:4 28747:2 28756:2 28767:1 28782:1 28793:1 28803:1 28855:1 28867:1 28874:1 28912:1 28916:2 28989:1 28991:1 29013:1 29021:1 29104:1 29109:1 29117:1 29142:1 29149:2 29150:1 29170:1 29209:1 29227:1 29243:1 29268:1 29274:1 29282:2 29288:1 29292:3 29306:1 29314:1 29315:2 29319:1 29325:1 29340:1 29342:2 29353:1 29355:1 29372:3 29390:1 29391:1 29400:1 29403:1 29411:4 29417:1 29425:1 29468:1 29479:1 29482:6 29486:2 29489:1 29509:1 29520:2 29550:1 29560:1 29576:4 29587:2 29588:2 29596:2 29599:1 29601:3 29605:1 29615:1 29627:1 29635:1 29637:2 29653:1 29658:2 29667:1 29668:1 29679:1 29684:2 29686:2 29689:1 29694:1 29696:1 29697:1 29699:1 29706:1 29714:1 29718:1 29754:2 29760:1 29789:2 29790:1 29794:1 29795:1 29814:1 29816:3 29818:1 29828:1 29833:1 29848:1 29852:1 29862:1 29867:1 29916:1 29918:1 29931:1 29932:1 29934:2 29938:1 29956:4 29971:1 29979:1 29989:1 29991:2 29995:1 30016:2 30031:2 30041:1 30044:1 30045:6 30064:2 30067:1 30097:1 30149:1 30175:1 30188:2 30212:1 30240:3 30269:1 30282:1 30289:1 30319:3 30331:2 30336:1 30368:1 30372:1 30390:4 30392:1 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30466:1 30479:19 30480:1 30502:1 30510:1 30530:1 30537:12 30543:1 30546:1 30548:1 30550:2 30581:1 30602:1 30623:1 30630:2 30646:1 30655:1 30661:1 30670:3 30675:3 30711:10 30713:1 30747:2 30764:2 30768:1 30805:2 30809:1 30810:2 30815:1 30818:1 30820:1 30846:2 30876:1 30882:2 30888:1 30903:2 30924:1 30933:1 30956:1 30980:1 30988:1 30996:1 31026:1 31041:4 31043:3 31104:1 31114:1 31115:1 31118:1 31121:1 31125:2 31132:2 31133:1 31135:1 31143:1 31231:1 31253:4 31265:1 31267:1 31268:1 31272:10 31288:1 31291:1 31306:1 31309:1 31310:3 31316:1 31337:1 31342:1 31362:1 31369:2 31380:1 31413:1 31437:1 31439:1 31444:1 31458:1 31465:1 31477:1 31495:1 31496:1 31506:3 31514:2 31528:1 31550:1 31572:1 31612:2 31652:1 31659:1 31666:1 31667:4 31679:1 31681:1 31689:1 31705:1 31713:2 31718:1 31742:2 31750:1 31756:1 31765:1 31780:1 31781:1 31785:1 31794:5 31801:1 31802:1 31803:2 31815:1 31823:1 31826:1 31851:1 31852:1 31866:1 31873:1 31882:1 31886:1 31890:3 31891:1 31896:2 31898:4 31902:1 31905:2 31907:2 31911:1 31914:1 31934:1 31958:1 31962:3 31965:1 31970:1 31977:1 31978:1 31998:1 32007:1
20 9:1 18:1 21:1 23:1 24:1 26:2 30:1 31:1 46:1 61:1 75:1 78:1 90:7 95:1 103:1 111:1 120:1 123:1 158:1 169:1 181:1 184:1 193:1 197:1 211:1 233:1 253:3 261:2 274:2 278:1 290:3 292:1 307:2 331:1 355:2 358:1 385:1 404:1 406:2 421:1 448:1 468:1 482:1 489:3 536:1 540:2 564:1 596:1 602:1 622:1 623:3 625:1 631:1 635:1 652:2 664:2 668:1 696:2 701:1 704:3 755:1 770:1 794:1 822:1 892:1 897:1 913:1 956:2 959:1 963:1 965:1 971:2 977:1 990:1 991:1 995:1 996:4 1000:1 1011:1 1018:1 1025:1 1034:3 1054:1 1057:1 1062:1 1063:3 1064:1 1066:1 1067:5 1069:5 1079:1 1095:1 1098:1 1108:4 1124:1 1135:3 1136:3 1143:2 1149:1 1158:1 1167:1 1198:1 1200:2 1205:1 1226:1 1255:1 1262:1 1281:1 1292:5 1305:4 1339:1 1341:2 1350:1 1353:1 1366:1 1368:2 1371:1 1380:1 1389:1 1402:1 1406:1 1407:1 1420:1 1426:1 1427:1 1430:1 1446:1 1458:1 1491:1 1511:1 1533:1 1549:1 1563:1 1576:1 1582:3 1594:2 1599:1 1608:1 1610:1 1630:1 1631:1 1633:4 1641:3 1651:5 1662:1 1668:1 1670:1 1671:1 1678:2 1691:3 1719:14 1722:2 1725:7 1729:1 1737:3 1741:1 1746:1 1756:2 1757:2 1759:2 1778:2 1799:1 1800:1 1805:1 1811:9 1818:1 1827:1 1829:1 1840:1 1842:1 1855:1 1863:1 1876:1 1877:1 1882:1 1903:2 1945:1 1967:1 1968:5 1973:2 1976:1 1987:2 1994:1 2015:1 2026:1 2035:2 2061:1 2064:1 2070:1 2086:1 2088:1 2105:2 2113:3 2116:2 2127:1 2138:2 2145:1 2161:1 2163:1 2166:1 2208:1 2210:2 2229:1 2245:4 2260:1 2264:1 2284:1 2285:4 2291:1 2295:1 2296:1 2301:1 2341:1 2354:6 2357:1 2379:1 2389:1 2395:2 2397:2 2403:1 2433:2 2435:8 2438:8 2442:1 2443:1 2450:1 2451:3 2452:3 2454:3 2455:2 2458:1 2463:1 2469:1 2471:1 2472:2 2475:4 2500:2 2505:1 2507:2 2509:1 2512:2 2513:1 2514:4 2516:1 2517:1 2520:1 2525:2 2530:1 2531:3 2533:2 2535:3 2539:3 2542:3 2544:2 2546:2 2549:2 2552:1 2554:2 2557:1 2574:1 2576:1 2579:1 2582:1 2599:1 2607:1 2616:1 2629:1 2639:1 2645:1 2650:1 2658:1 2673:1 2676:1 2677:1 2718:1 2723:1 2741:1 2757:1 2762:1 2767:1 2772:1 2773:1 2795:1 2801:1 2831:1 2833:1 2839:1 2853:1 2869:1 2870:1 2875:1 2886:1 2893:3 2898:1 2902:1 2914:1 2923:1 2937:1 2948:1 2961:1 2963:2 2965:1 2970:2 2975:1 2977:1 2986:1 2995:1 3012:2 3015:1 3021:1 3029:1 3037:1 3045:1 3050:1 3056:1 3063:1 3084:1 3087:2 3095:1 3105:1 3120:1 3128:1 3159:5 3164:1 3168:11 3169:2 3171:2 3181:1 3184:2 3185:3 3195:1 3201:1 3204:1 3214:12 3250:1 3288:1 3320:1 3327:1 3347:2 3354:1 3361:1 3422:3 3427:1 3453:1 3463:1 3501:1 3507:1 3514:1 3537:1 3553:1 3597:1 3598:1 3607:3 3615:1 3625:4 3628:1 3660:3 3674:1 3695:3 3706:1 3711:1 3712:1 3719:1 3722:1 3723:1 3751:1 3752:1 3780:1 3825:1 3835:1 3840:1 3846:1 3873:1 3885:2 3893:1 3901:2 3931:1 3944:1 3949:1 3952:7 3966:2 3970:2 3977:1 3991:2 4006:1 4009:1 4013:1 4015:1 4024:6 4042:1 4056:1 4059:1 4063:1 4065:1 4070:1 4075:3 4118:2 4126:2 4127:4 4160:1 4175:6 4176:1 4187:1 4202:1 4207:1 4211:6 4213:1 4261:1 4264:2 4279:2 4296:1 4306:1 4317:6 4335:1 4345:2 4346:2 4366:1 4370:1 4375:1 4379:1 4391:1 4392:2 4395:1 4406:1 4414:2 4420:1 4423:2 4425:1 4443:1 4454:1 4472:1 4482:1 4508:1 4517:1 4535:2 4562:1 4575:1 4587:1 4593:1 4598:1 4626:1 4641:1 4699:1 4702:1 4727:1 4730:1 4735:1 4736:1 4768:1 4771:1 4776:1 4777:2 4780:1 4791:1 4794:1 4803:1 4836:2 4838:1 4859:1 4860:1 4870:1 4872:1 4887:1 4917:1 4923:1 4958:1 4959:2 4993:1 4997:1 4999:2 5012:1 5027:2 5046:2 5055:1 5067:1 5078:2 5084:1 5086:1 5106:4 5122:1 5130:2 5131:1 5136:2 5184:1 5186:1 5196:1 5215:1 5227:1 5245:1 5247:1 5283:1 5291:1 5296:1 5306:1 5332:18 5333:1 5345:1 5349:1 5364:1 5372:1 5396:1 5444:3 5448:7 5466:3 5467:2 5470:1 5472:1 5475:1 5476:2 5479:1 5480:1 5485:1 5487:3 5488:2 5490:4 5492:3 5495:1 5496:1 5508:2 5547:1 5577:1 5607:1 5619:1 5662:1 5678:4 5683:1 5693:1 5706:1 5710:1 5715:1 5720:1 5745:3 5748:1 5767:1 5775:1 5800:2 5825:1 5839:1 5864:3 5877:1 5901:1 5916:1 5918:1 5924:1 5929:1 5931:4 5962:1 5977:1 5992:1 5997:2 5998:1 6018:1 6038:1 6039:2 6049:1 6057:2 6077:1 6086:1 6089:1 6095:1 6101:2 6107:1 6117:1 6120:1 6127:2 6137:3 6158:3 6189:1 6225:2 6243:1 6244:2 6249:1 6250:1 6268:3 6279:1 6280:1 6312:1 6319:1 6321:1 6323:1 6326:2 6350:1 6351:1 6359:1 6362:1 6375:1 6379:1 6387:2 6394:3 6400:2 6444:4 6445:3 6463:2 6467:2 6476:1 6477:2 6532:1 6542:1 6571:1 6584:1 6596:1 6609:6 6612:1 6631:1 6652:2 6664:1 6670:2 6674:1 6675:1 6682:1 6702:1 6709:1 6711:1 6721:1 6727:2 6772:3 6779:1 6783:3 6829:1 6830:1 6841:1 6851:1 6856:3 6858:1 6869:1 6874:1 6890:1 6898:2 6910:1 6932:3 6933:2 6937:1 6949:3 6950:1 6951:1 6959:3 6961:1 6963:1 6966:1 6967:1 6971:4 6973:3 6977:2 6979:5 6980:2 6982:4 7005:1 7029:1 7034:1 7036:1 7077:4 7097:1 7105:4 7120:2 7146:1 7169:1 7170:1 7187:1 7201:1 7215:1 7231:1 7236:2 7262:1 7307:2 7324:1 7328:1 7333:1 7344:2 7345:2 7353:1 7359:1 7361:2 7362:1 7368:1 7391:1 7392:1 7396:1 7399:1 7401:1 7406:2 7430:2 7432:1 7433:1 7439:1 7448:1 7456:1 7457:1 7461:1 7486:1 7489:3 7503:1 7566:1 7567:1 7580:3 7581:1 7601:1 7615:3 7624:1 7628:2 7634:1 7657:1 7688:1 7713:1 7717:2 7757:1 7763:1 7781:1 7799:9 7801:1 7813:1 7824:2 7826:2 7862:2 7879:1 7900:2 7937:1 7940:1 7941:1 7951:1 7971:2 7976:1 8000:1 8013:1 8019:1 8025:1 8051:1 8063:1 8064:1 8069:1 8088:1 8093:3 8122:4 8124:1 8128:4 8142:1 8144:2 8153:1 8154:2 8172:1 8192:1 8196:1 8201:1 8207:2 8214:1 8223:1 8231:1 8241:1 8245:1 8250:1 8264:1 8276:1 8283:2 8285:1 8289:1 8290:1 8301:1 8304:1 8342:1 8349:2 8376:1 8377:5 8383:1 8390:1 8391:11 8400:1 8410:2 8414:1 8416:4 8417:1 8443:1 8448:1 8457:36 8487:7 8490:13 8502:1 8518:1 8537:1 8541:2 8554:2 8555:1 8558:1 8568:1 8629:1 8639:1 8699:1 8707:1 8720:1 8721:1 8731:1 8765:1 8777:1 8787:3 8797:3 8803:1 8816:1 8818:1 8851:1 8862:1 8863:1 8888:1 8896:1 8903:1 8907:2 8916:1 8929:1 8940:9 8947:2 8950:1 8955:1 8958:1 8983:1 9005:1 9019:27 9045:1 9072:1 9075:1 9089:1 9102:1 9151:1 9164:1 9175:1 9205:1 9222:1 9226:1 9249:1 9258:5 9276:2 9279:1 9285:4 9293:1 9294:1 9296:1 9299:3 9323:1 9329:1 9343:1 9348:1 9363:1 9383:2 9391:1 9393:3 9398:2 9399:4 9401:1 9402:1 9408:2 9413:5 9423:1 9425:1 9428:2 9455:1 9480:2 9490:2 9493:2 9495:1 9496:1 9518:1 9554:3 9559:1 9590:1 9595:1 9643:1 9644:1 9658:1 9682:1 9683:1 9698:2 9707:2 9724:2 9736:3 9751:1 9763:1 9767:1 9769:1 9771:1 9772:4 9798:1 9808:2 9816:1 9817:1 9850:1 9851:1 9864:1 9869:1 9876:1 9885:2 9895:1 9898:2 9928:1 9931:2 9936:6 9940:4 9944:1 9948:1 9960:3 9971:1 9974:1 9978:1 10002:2 10016:1 10018:1 10028:1 10037:1 10043:1 10054:1 10061:1 10086:1 10093:1 10114:1 10121:1 10147:1 10178:1 10182:1 10190:3 10193:1 10207:1 10212:1 10214:1 10215:1 10222:1 10237:1 10294:1 10297:1 10313:1 10334:1 10354:3 10363:1 10373:1 10381:1 10386:1 10393:4 10394:1 10405:1 10411:1 10423:1 10431:4 10449:1 10457:1 10458:1 10461:2 10474:3 10495:1 10504:1 10521:1 10534:1 10547:4 10559:1 10563:3 10568:6 10583:3 10603:1 10625:1 10649:2 10651:1 10663:2 10667:1 10678:2 10700:12 10709:1 10714:1 10715:1 10717:1 10725:1 10732:1 10740:1 10743:1 10749:1 10762:1 10764:1 10775:2 10781:1 10856:2 10864:1 10871:3 10872:1 10878:2 10895:1 10903:1 10925:2 10927:1 10929:2 10944:2 10962:1 10966:1 10972:1 10978:2 10986:2 11056:1 11071:2 11080:1 11082:2 11085:1 11112:1 11116:1 11124:1 11140:1 11145:1 11187:2 11196:2 11217:1 11218:2 11228:1 11277:1 11284:1 11285:1 11292:2 11335:1 11337:1 11351:3 11363:1 11390:1 11416:4 11418:7 11425:1 11426:1 11448:1 11466:1 11493:2 11497:1 11514:1 11517:1 11521:3 11523:1 11536:1 11548:3 11556:1 11557:1 11587:3 11599:1 11606:4 11608:1 11612:1 11615:1 11620:1 11625:1 11626:1 11629:1 11630:2 11641:1 11642:1 11647:1 11671:3 11673:2 11690:1 11714:3 11723:1 11728:1 11734:1 11736:2 11738:2 11740:2 11744:4 11746:9 11785:1 11803:2 11818:1 11822:1 11829:1 11834:1 11835:4 11845:1 11849:3 11877:1 11913:1 11926:1 11932:1 11937:1 11952:1 11958:4 11961:2 11964:1 11968:1 12015:1 12024:3 12031:1 12053:2 12063:1 12070:4 12085:1 12094:1 12099:3 12101:1 12103:1 12105:1 12124:1 12126:1 12160:6 12166:2 12169:3 12192:1 12197:1 12221:1 12243:1 12256:1 12268:3 12273:2 12308:1 12309:1 12323:1 12334:1 12338:1 12339:1 12347:2 12359:1 12374:2 12377:1 12406:1 12422:1 12441:2 12445:7 12451:1 12461:1 12490:1 12492:1 12512:2 12521:2 12524:2 12525:1 12539:1 12542:1 12545:3 12546:1 12584:1 12589:1 12590:1 12606:1 12621:1 12640:1 12646:2 12654:1 12669:1 12675:1 12682:7 12684:3 12688:1 12706:1 12707:1 12721:2 12727:1 12730:1 12732:1 12739:1 12740:1 12743:1 12744:1 12746:1 12748:1 12750:1 12753:1 12755:1 12758:1 12761:1 12764:1 12769:2 12772:1 12791:1 12798:1 12799:1 12821:1 12822:1 12823:5 12839:3 12848:8 12894:1 12896:1 12903:1 12909:1 12910:1 12917:1 12920:11 12966:1 12999:1 13015:1 13025:1 13035:1 13042:2 13055:4 13057:1 13071:1 13076:1 13089:1 13093:1 13114:1 13116:1 13121:3 13143:1 13159:1 13160:1 13178:3 13202:2 13215:1 13216:2 13226:3 13227:3 13230:1 13231:1 13240:1 13242:2 13247:3 13250:3 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13352:1 13354:1 13364:2 13386:3 13392:3 13404:1 13426:1 13432:1 13437:1 13455:1 13468:1 13470:1 13519:1 13539:3 13547:1 13568:1 13600:1 13620:1 13651:1 13656:2 13693:1 13732:2 13751:1 13809:1 13813:10 13816:2 13827:2 13839:1 13845:1 13858:1 13879:1 13899:11 13906:1 13926:1 13933:2 13960:2 13984:2 14023:1 14024:1 14101:1 14104:1 14113:1 14119:1 14121:4 14126:1 14138:1 14140:2 14160:2 14178:1 14208:1 14230:2 14235:1 14257:4 14269:1 14272:1 14274:3 14280:3 14296:3 14303:8 14305:1 14307:1 14341:1 14345:1 14352:1 14369:1 14371:3 14399:3 14400:2 14431:1 14445:1 14446:8 14455:1 14464:1 14468:14 14471:1 14475:1 14505:1 14512:1 14520:1 14553:1 14567:4 14590:1 14618:2 14622:1 14632:2 14638:1 14655:1 14662:1 14680:1 14692:1 14704:1 14709:2 14714:2 14719:1 14744:1 14749:2 14790:1 14800:1 14864:1 14866:1 14868:1 14871:5 14872:1 14874:1 14879:1 14897:3 14913:1 14931:1 14941:1 14947:1 14983:10 14995:1 14996:2 15018:1 15036:1 15037:2 15038:2 15067:2 15078:1 15091:2 15092:1 15094:1 15095:1 15096:3 15104:1 15117:1 15171:5 15174:2 15196:3 15223:1 15225:1 15232:2 15236:1 15237:2 15297:1 15305:1 15308:2 15322:1 15344:2 15355:1 15387:1 15395:1 15401:1 15435:1 15446:2 15448:1 15455:1 15460:1 15464:1 15465:1 15472:2 15474:1 15519:1 15522:1 15552:1 15561:1 15572:1 15593:1 15597:1 15598:2 15600:2 15604:1 15605:3 15615:1 15616:1 15620:1 15623:1 15631:1 15647:1 15648:1 15650:1 15654:2 15680:1 15698:1 15699:1 15702:4 15740:4 15757:1 15762:1 15781:1 15804:1 15807:1 15815:1 15821:3 15830:1 15835:5 15848:2 15849:1 15860:1 15872:1 15873:1 15892:2 15903:1 15910:1 15926:2 15937:1 15941:1 15942:1 15954:1 15961:1 15971:1 15978:1 15991:1 16019:1 16030:1 16035:1 16048:1 16052:1 16092:1 16112:1 16126:1 16149:1 16151:3 16156:1 16166:3 16178:1 16193:3 16198:1 16239:1 16243:1 16268:1 16272:1 16298:4 16304:1 16305:1 16319:1 16351:1 16355:1 16357:2 16358:2 16396:1 16408:1 16410:1 16412:1 16422:1 16430:1 16437:1 16506:3 16515:1 16521:1 16545:3 16547:2 16549:1 16553:1 16588:1 16594:1 16621:1 16629:1 16631:1 16660:1 16685:1 16703:1 16711:1 16720:1 16723:1 16747:1 16762:1 16768:1 16771:36 16808:2 16811:1 16822:1 16851:1 16865:1 16870:1 16876:1 16883:1 16901:1 16914:2 16919:1 16950:1 16981:1 16999:1 17029:1 17030:4 17036:1 17039:2 17040:1 17041:2 17046:1 17047:1 17053:1 17059:2 17065:1 17066:1 17069:1 17071:6 17072:1 17079:2 17086:1 17087:1 17125:2 17127:1 17130:1 17184:1 17185:1 17186:1 17215:5 17216:5 17236:1 17243:1 17249:1 17255:3 17270:1 17288:1 17319:1 17321:2 17335:1 17348:1 17360:3 17377:1 17382:1 17398:1 17405:1 17421:1 17423:1 17446:1 17469:2 17473:3 17477:1 17478:1 17500:1 17505:1 17507:6 17514:1 17521:1 17549:1 17557:1 17559:1 17562:1 17563:1 17570:1 17571:4 17593:1 17602:2 17608:1 17609:1 17622:1 17625:1 17632:1 17633:2 17637:1 17638:3 17639:2 17641:2 17643:1 17646:3 17647:1 17651:1 17653:1 17656:4 17658:1 17660:1 17662:5 17666:1 17678:1 17690:1 17695:3 17717:1 17731:1 17751:1 17784:1 17819:1 17864:1 17902:1 17932:1 17937:1 17987:1 18039:2 18054:1 18068:1 18099:1 18102:1 18105:1 18107:1 18115:2 18122:2 18123:1 18130:2 18141:1 18179:1 18192:2 18199:2 18202:2 18212:1 18225:2 18228:6 18238:2 18243:1 18260:1 18266:1 18277:2 18303:1 18310:1 18326:2 18328:1 18343:3 18347:1 18352:9 18355:2 18382:1 18409:2 18412:1 18418:2 18420:2 18429:2 18430:3 18454:2 18465:2 18488:2 18492:2 18494:2 18498:1 18519:1 18521:1 18531:1 18533:1 18537:1 18566:1 18569:1 18574:1 18575:1 18583:1 18587:1 18589:2 18594:1 18596:1 18597:2 18599:1 18608:1 18620:1 18623:1 18650:2 18684:1 18686:1 18694:3 18696:1 18709:1 18727:2 18730:1 18732:1 18736:1 18738:1 18750:3 18752:1 18765:2 18802:1 18804:1 18810:1 18817:1 18823:1 18839:1 18843:1 18847:1 18867:1 18872:1 18873:1 18890:1 18906:1 18913:1 18918:3 18928:2 18972:1 18975:1 18978:2 18982:1 18997:1 18998:1 19000:1 19001:1 19043:2 19044:2 19068:2 19078:2 19084:1 19087:1 19122:1 19130:1 19133:1 19137:1 19153:2 19157:1 19164:2 19183:1 19194:1 19205:1 19207:2 19212:1 19214:1 19222:1 19235:1 19249:6 19271:1 19286:1 19287:1 19292:3 19294:1 19319:2 19324:3 19350:1 19351:3 19353:1 19357:3 19369:1 19371:1 19372:1 19390:3 19391:2 19393:1 19408:1 19418:2 19428:1 19429:2 19437:2 19441:1 19443:6 19449:3 19450:2 19454:1 19463:1 19480:1 19486:1 19494:1 19496:1 19498:1 19518:8 19530:1 19549:2 19551:2 19561:1 19583:1 19595:1 19596:1 19601:2 19617:1 19642:1 19665:1 19698:1 19709:1 19711:1 19716:1 19720:1 19722:1 19736:1 19756:1 19762:1 19774:1 19781:1 19787:1 19792:2 19808:1 19824:1 19827:1 19837:1 19852:2 19862:1 19888:1 19946:3 19951:1 19981:8 19990:1 19992:2 19994:1 20000:1 20052:1 20059:1 20061:1 20067:1 20068:1 20105:1 20113:1 20190:1 20196:2327 20200:2 20218:3 20229:1 20232:1 20249:1 20252:1 20270:1 20284:1 20286:1 20289:1 20304:1 20316:1 20328:1 20339:1 20341:1 20347:2 20353:1 20386:1 20390:1 20398:1 20399:1 20412:1 20422:1 20423:1 20436:5 20444:2 20449:3 20451:3 20453:1 20463:2 20477:1 20482:1 20510:1 20524:1 20530:2 20555:1 20557:1 20604:1 20605:1 20633:1 20662:1 20673:1 20684:1 20696:3 20712:1 20757:1 20761:2 20781:1 20819:1 20832:2 20839:1 20850:1 20858:2 20897:1 20908:2 20914:1 20917:1 20954:1 20955:3 20978:4 21004:5 21015:1 21027:2 21041:3 21042:1 21056:1 21060:1 21066:1 21067:2 21105:1 21106:5 21119:1 21127:3 21129:1 21130:1 21136:1 21158:1 21167:8 21173:1 21192:1 21218:1 21229:1 21262:1 21267:1 21318:1 21323:1 21326:1 21360:1 21363:2 21374:1 21404:1 21406:1 21429:1 21434:2 21456:1 21465:1 21472:1 21475:1 21482:1 21491:3 21492:3 21500:4 21506:1 21515:1 21541:2 21542:1 21548:3 21560:1 21567:1 21590:1 21597:1 21603:2 21623:1 21626:1 21634:1 21658:1 21679:1 21680:1 21705:1 21721:1 21742:1 21747:1 21755:1 21763:16 21766:3 21769:1 21773:1 21792:1 21799:1 21806:1 21814:1 21815:1 21819:1 21823:1 21826:1 21827:1 21831:2 21852:2 21856:5 21867:2 21868:1 21873:2 21892:1 21894:1 21904:1 21915:2 21920:1 21922:1 21937:8 21944:3 21960:1 21971:1 21990:1 21991:1 22002:3 22010:1 22019:1 22025:2 22031:1 22047:1 22056:1 22068:1 22080:1 22098:1 22109:1 22112:1 22115:1 22150:1 22162:1 22184:3 22187:1 22194:2 22195:1 22204:1 22225:1 22228:6 22230:5 22240:1 22242:2 22243:1 22285:1 22302:1 22306:1 22311:1 22319:2 22325:1 22348:2 22351:1 22353:1 22384:1 22393:1 22396:1 22422:1 22434:1 22460:1 22461:1 22479:1 22482:1 22485:2 22502:1 22507:1 22515:1 22518:1 22521:1 22526:1 22528:1 22550:1 22554:1 22560:1 22564:1 22569:1 22581:1 22590:5 22610:1 22614:1 22626:1 22632:1 22639:2 22643:3 22646:1 22657:1 22666:1 22677:2 22716:1 22719:1 22734:4 22739:1 22786:1 22796:10 22803:2 22809:2 22813:1 22822:4 22834:1 22853:1 22861:1 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22901:1 22918:1 22928:1 22941:1 22951:2 22960:2 22972:1 22991:1 23005:1 23017:1 23063:1 23067:1 23092:5 23119:3 23131:1 23136:3 23137:1 23141:1 23146:2 23149:1 23185:1 23219:1 23228:1 23229:1 23234:1 23239:1 23249:1 23256:1 23257:2 23258:5 23260:1 23261:1 23264:1 23274:1 23275:1 23281:1 23307:1 23310:1 23322:1 23334:1 23338:1 23342:3 23349:1 23360:1 23377:1 23389:1 23396:2 23420:2 23436:2 23438:2 23442:3 23491:1 23500:2 23503:2 23515:3 23531:1 23532:1 23539:1 23551:1 23552:2 23555:1 23557:1 23558:2 23606:1 23613:1 23615:1 23617:1 23652:1 23664:1 23665:2 23676:1 23686:4 23687:3 23689:3 23696:1 23697:1 23700:1 23715:1 23718:3 23722:1 23731:1 23732:2 23746:1 23749:1 23765:2 23775:1 23796:1 23826:2 23862:1 23863:3 23872:1 23885:1 23893:1 23901:3 23905:2 23916:3 23935:1 23953:1 23977:2 23983:1 23992:1 23994:2 24025:1 24034:1 24042:1 24053:1 24054:1 24068:2 24070:1 24079:2 24087:1 24088:5 24093:1 24095:1 24126:1 24132:1 24148:1 24157:1 24161:3 24166:2 24172:1 24173:1 24175:2 24182:2 24218:1 24233:1 24244:1 24245:1 24261:1 24269:2 24272:1 24287:2 24294:1 24298:1 24311:2 24325:1 24326:1 24327:1 24343:1 24357:3 24361:1 24363:2 24375:3 24379:1 24394:1 24414:1 24425:1 24451:2 24452:1 24488:1 24489:1 24503:1 24506:1 24518:1 24534:3 24539:1 24544:1 24548:1 24563:1 24566:1 24584:1 24594:1 24599:2 24603:1 24610:2 24611:2 24612:2 24616:1 24617:1 24619:1 24625:1 24633:1 24638:1 24640:1 24652:3 24655:1 24664:2 24672:3 24687:1 24690:1 24714:2 24718:2 24725:1 24727:2 24731:1 24761:1 24766:1 24778:1 24786:1 24794:1 24819:3 24846:1 24865:4 24883:1 24913:3 24916:3 24957:2 24969:1 24981:1 24999:1 25005:1 25009:2 25018:1 25021:1 25079:1 25080:1 25140:1 25152:1 25166:1 25171:2 25185:3 25188:1 25193:4 25203:1 25204:1 25210:2 25226:1 25245:1 25247:1 25263:1 25266:1 25274:1 25276:3 25280:1 25294:3 25298:3 25305:1 25308:1 25346:1 25351:1 25359:1 25364:1 25372:1 25373:2 25394:1 25395:1 25396:2 25417:1 25421:1 25431:1 25438:1 25441:1 25453:2 25465:6 25469:1 25473:3 25490:1 25495:1 25498:1 25534:3 25559:1 25560:2 25566:1 25593:1 25606:1 25648:2 25649:1 25665:1 25684:3 25691:1 25705:1 25779:2 25802:1 25817:3 25865:1 25909:1 25910:8 25996:1 25997:1 26016:2 26050:2 26057:1 26058:1 26064:1 26071:1 26084:1 26098:1 26100:1 26111:2 26136:1 26142:1 26151:3 26160:1 26170:2 26172:7 26174:1 26177:1 26179:1 26197:1 26201:1 26202:1 26204:1 26215:1 26219:1 26221:2 26236:1 26245:1 26248:1 26270:1 26334:1 26347:1 26386:1 26397:1 26398:1 26399:1 26405:2 26406:1 26408:1 26409:1 26413:2 26427:1 26468:1 26470:2 26483:3 26485:1 26487:3 26489:1 26490:4 26496:2 26497:1 26510:1 26518:4 26535:5 26536:1 26552:1 26575:2 26576:1 26597:1 26603:1 26607:1 26608:1 26626:1 26631:2 26638:1 26645:2 26654:2 26657:1 26659:1 26678:1 26684:2 26719:1 26724:1 26750:1 26754:1 26783:1 26793:1 26799:2 26805:1 26829:1 26836:1 26844:1 26847:1 26858:1 26861:2 26870:1 26895:3 26900:1 26916:6 26958:1 26967:1 26968:1 26986:1 26991:6 26999:1 27000:1 27002:1 27005:1 27019:2 27043:2 27044:1 27137:1 27140:1 27195:1 27213:1 27242:3 27244:7 27245:1 27265:3 27276:1 27277:1 27290:2 27296:1 27297:1 27305:2 27353:1 27360:1 27384:1 27402:1 27408:1 27446:1 27457:1 27471:1 27472:1 27474:1 27482:1 27483:1 27507:1 27509:1 27510:1 27512:2 27518:1 27534:1 27544:1 27577:1 27584:1 27586:1 27599:1 27600:3 27614:1 27646:1 27647:1 27653:1 27673:1 27693:1 27713:1 27730:1 27734:1 27750:1 27758:1 27770:1 27777:1 27787:1 27801:5 27802:1 27804:6 27814:1 27869:2 27910:2 27930:1 27952:5 27956:1 27957:1 27976:1 27999:1 28013:1 28018:1 28057:1 28073:1 28076:2 28079:1 28091:1 28100:1 28105:1 28112:1 28119:1 28131:3 28150:1 28152:1 28154:1 28159:3 28164:1 28166:1 28180:1 28192:1 28208:1 28215:1 28219:1 28222:4 28235:1 28245:1 28276:2 28291:1 28308:7 28309:1 28326:3 28349:1 28366:1 28372:1 28391:3 28403:1 28405:2 28421:1 28429:2 28434:1 28462:1 28484:1 28495:1 28507:1 28511:1 28516:1 28517:2 28533:1 28554:1 28578:3 28581:2 28589:1 28600:1 28602:1 28607:1 28611:1 28615:1 28617:1 28619:2 28623:3 28624:1 28644:2 28664:2 28675:1 28678:1 28680:1 28687:2 28703:4 28726:1 28747:2 28756:2 28767:1 28782:1 28793:1 28803:1 28855:1 28867:1 28874:1 28901:1 28912:1 28916:2 28989:1 28991:1 29013:1 29021:1 29104:1 29109:1 29117:1 29142:1 29149:2 29150:1 29170:1 29209:1 29227:1 29243:1 29268:1 29274:1 29282:2 29288:1 29292:3 29306:1 29314:1 29315:2 29319:1 29325:1 29340:1 29342:2 29353:1 29355:1 29372:3 29387:1 29390:1 29391:1 29400:1 29403:1 29411:4 29417:1 29425:1 29468:1 29479:1 29482:6 29486:2 29489:1 29509:1 29520:2 29550:1 29560:1 29576:4 29587:2 29588:2 29596:2 29599:1 29601:3 29605:1 29615:1 29627:1 29635:1 29637:2 29653:1 29658:2 29667:1 29668:1 29679:1 29684:2 29686:2 29689:1 29694:1 29696:1 29697:1 29699:1 29706:1 29714:1 29718:1 29754:2 29760:1 29789:2 29790:1 29794:1 29795:1 29814:1 29816:3 29818:1 29828:1 29833:1 29848:1 29852:1 29862:1 29867:1 29916:1 29918:1 29931:1 29932:1 29934:2 29938:1 29956:4 29971:1 29979:1 29989:1 29991:2 29995:1 30016:2 30031:2 30041:1 30044:1 30045:6 30064:2 30067:1 30097:1 30149:1 30175:1 30188:2 30212:1 30240:3 30269:1 30282:1 30289:1 30319:3 30331:2 30336:1 30364:1 30368:1 30372:1 30390:4 30392:2 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30466:1 30479:20 30480:1 30502:1 30510:1 30530:1 30537:13 30543:1 30546:1 30548:1 30550:2 30581:1 30602:1 30623:1 30630:2 30646:1 30655:1 30661:1 30670:3 30675:3 30711:10 30713:1 30747:2 30764:2 30768:1 30805:2 30809:1 30810:2 30815:1 30818:1 30820:1 30846:2 30872:1 30876:1 30882:2 30888:1 30903:2 30924:1 30933:1 30956:1 30980:1 30988:1 30996:1 31026:1 31041:4 31043:3 31104:1 31114:1 31115:1 31118:1 31121:1 31125:2 31132:2 31133:1 31135:1 31143:1 31231:1 31253:4 31265:1 31267:1 31268:1 31272:10 31288:1 31290:1 31291:1 31306:1 31309:1 31310:3 31311:1 31316:1 31337:1 31342:1 31362:1 31369:2 31380:1 31413:1 31437:1 31439:1 31444:1 31458:1 31465:1 31477:1 31495:1 31496:1 31506:3 31514:2 31528:1 31550:1 31572:1 31612:2 31652:1 31659:1 31666:1 31667:4 31679:1 31681:1 31689:1 31705:1 31713:2 31718:1 31742:2 31750:1 31756:2 31765:1 31780:1 31781:1 31785:1 31794:5 31801:1 31802:1 31803:2 31815:1 31823:1 31826:1 31851:1 31852:1 31866:1 31873:1 31882:1 31886:1 31890:3 31891:2 31896:2 31898:4 31902:1 31905:2 31907:2 31911:1 31914:1 31934:1 31958:1 31962:3 31965:1 31970:1 31977:1 31978:1 31998:1 32007:1
20 9:1 18:1 21:1 23:1 24:1 26:2 30:1 31:1 46:1 61:1 75:1 78:1 90:7 95:1 103:1 111:1 120:1 123:1 158:1 169:1 181:1 184:1 193:1 197:1 211:1 233:1 253:3 261:2 274:2 278:1 289:1 290:3 292:1 307:2 331:1 355:2 358:1 385:1 404:1 406:2 421:1 448:1 468:1 482:1 489:3 536:1 540:2 564:1 596:1 602:1 622:1 623:3 625:1 631:1 635:1 652:2 664:2 668:1 696:2 701:1 704:3 755:1 770:1 794:1 822:1 892:1 897:1 913:1 956:2 959:1 963:1 965:1 971:2 977:1 990:1 991:1 995:1 996:4 1000:1 1011:1 1018:1 1025:1 1034:3 1054:1 1057:1 1062:1 1063:3 1064:1 1066:1 1067:5 1069:5 1079:1 1095:1 1098:1 1108:4 1124:1 1135:3 1136:3 1143:2 1149:1 1158:1 1167:1 1198:1 1200:2 1205:2 1226:1 1255:1 1262:1 1281:1 1292:5 1305:4 1339:1 1341:2 1350:1 1353:1 1366:1 1368:2 1371:1 1380:1 1389:1 1402:1 1406:1 1407:1 1420:1 1426:1 1427:1 1430:1 1446:1 1458:1 1491:1 1511:1 1533:1 1549:1 1563:1 1576:1 1582:3 1594:2 1599:1 1608:1 1610:1 1630:1 1631:1 1633:4 1641:3 1651:5 1662:1 1668:1 1670:1 1671:1 1678:2 1691:3 1719:14 1722:2 1725:7 1729:1 1737:4 1741:1 1746:1 1756:2 1757:2 1759:2 1778:2 1799:1 1800:1 1805:1 1811:9 1818:1 1827:1 1829:1 1840:1 1842:1 1855:1 1863:1 1876:1 1877:1 1882:1 1903:2 1945:1 1967:1 1968:5 1973:2 1976:1 1987:2 1994:1 2015:1 2026:1 2035:2 2061:1 2064:1 2070:1 2086:1 2088:1 2105:2 2113:3 2116:2 2127:1 2138:2 2145:1 2161:1 2163:1 2166:1 2208:1 2210:2 2229:1 2245:4 2260:1 2264:1 2284:1 2285:4 2291:1 2295:1 2296:1 2301:1 2341:1 2354:6 2357:1 2379:1 2389:1 2395:2 2397:2 2403:1 2433:2 2435:8 2438:8 2442:1 2443:1 2450:1 2451:3 2452:3 2454:3 2455:2 2458:1 2463:1 2469:1 2471:1 2472:2 2475:4 2500:2 2505:1 2507:2 2509:1 2512:2 2513:1 2514:4 2516:1 2517:1 2520:1 2525:2 2530:1 2531:3 2533:2 2535:3 2539:3 2542:3 2544:2 2546:2 2549:2 2552:1 2554:2 2557:1 2574:1 2576:1 2579:1 2582:1 2599:1 2607:1 2616:1 2629:1 2639:1 2645:1 2650:1 2658:1 2673:1 2676:1 2677:1 2718:1 2723:1 2741:1 2757:1 2762:1 2767:1 2772:1 2773:1 2795:1 2801:1 2831:1 2833:1 2839:1 2853:1 2869:1 2870:1 2875:1 2886:1 2893:3 2898:1 2902:1 2914:1 2923:1 2937:1 2948:1 2961:1 2963:2 2965:1 2970:2 2975:1 2977:1 2986:3 2995:1 3012:2 3015:1 3021:1 3029:1 3037:1 3045:1 3050:1 3056:1 3063:1 3084:1 3087:3 3095:1 3105:1 3120:1 3128:1 3159:6 3164:1 3168:11 3169:2 3171:2 3181:1 3184:2 3185:3 3195:1 3201:1 3204:1 3214:12 3250:1 3288:2 3320:1 3327:1 3347:2 3354:1 3361:1 3422:4 3427:1 3453:1 3463:1 3501:1 3507:1 3514:1 3537:1 3553:1 3597:1 3598:1 3607:3 3615:1 3625:4 3628:1 3660:3 3674:1 3695:3 3706:1 3711:1 3712:1 3719:1 3722:1 3723:1 3751:1 3752:1 3780:1 3825:1 3835:1 3840:1 3846:1 3873:1 3885:2 3893:1 3901:2 3931:1 3944:1 3949:1 3950:1 3952:7 3966:2 3970:2 3977:1 3991:2 4006:1 4009:1 4013:1 4015:1 4024:6 4042:1 4056:1 4059:1 4063:1 4065:1 4070:1 4075:4 4118:2 4126:2 4127:4 4160:1 4175:6 4176:1 4187:1 4202:1 4207:1 4211:6 4213:1 4261:1 4264:2 4279:2 4296:1 4306:1 4317:6 4335:1 4345:2 4346:2 4366:1 4370:1 4375:1 4379:1 4391:1 4392:2 4395:1 4406:1 4414:2 4420:1 4423:3 4425:1 4443:1 4454:1 4472:1 4482:1 4508:1 4517:1 4535:2 4562:1 4575:1 4587:1 4593:1 4598:1 4626:1 4641:1 4699:1 4702:1 4727:1 4730:1 4735:1 4736:1 4768:1 4771:1 4776:1 4777:2 4780:1 4791:1 4794:1 4803:1 4836:2 4838:1 4859:1 4860:1 4870:1 4872:1 4887:1 4917:1 4923:1 4958:1 4959:2 4993:1 4997:1 4999:2 5012:1 5027:2 5046:2 5055:1 5067:1 5078:2 5084:1 5086:1 5106:4 5122:1 5130:2 5131:1 5136:2 5184:1 5186:1 5189:1 5196:1 5215:1 5227:1 5245:1 5247:1 5283:1 5291:1 5296:1 5306:1 5332:19 5333:1 5345:1 5349:1 5364:1 5372:1 5396:1 5444:3 5448:7 5466:3 5467:2 5470:1 5472:1 5475:1 5476:2 5479:1 5480:1 5485:1 5487:3 5488:2 5490:4 5492:3 5495:1 5496:1 5508:2 5547:1 5576:1 5577:1 5607:1 5619:1 5662:1 5678:4 5683:1 5693:1 5706:1 5710:1 5715:1 5720:1 5745:3 5748:1 5767:1 5775:1 5800:2 5825:1 5839:1 5864:3 5877:1 5901:1 5916:2 5918:1 5924:1 5929:1 5931:4 5962:1 5977:1 5992:1 5997:2 5998:1 6018:1 6038:1 6039:2 6049:1 6057:2 6077:1 6086:1 6089:1 6095:1 6101:2 6107:1 6117:1 6120:1 6127:2 6137:3 6158:3 6189:1 6225:2 6243:1 6244:2 6249:1 6250:1 6268:3 6279:1 6280:1 6312:1 6319:1 6321:1 6323:1 6326:2 6350:1 6351:1 6359:1 6362:1 6375:1 6379:1 6387:2 6394:3 6400:2 6444:4 6445:3 6463:2 6467:2 6476:1 6477:2 6532:1 6542:1 6571:1 6584:1 6596:1 6609:6 6612:1 6631:1 6652:2 6664:1 6670:2 6674:1 6675:1 6682:1 6702:1 6709:1 6711:1 6721:1 6727:2 6772:3 6779:1 6783:3 6829:1 6830:1 6841:1 6851:1 6856:3 6858:1 6869:1 6874:1 6890:1 6898:2 6910:1 6932:3 6933:2 6937:1 6949:3 6950:1 6951:1 6959:3 6961:1 6963:1 6966:1 6967:1 6971:4 6973:3 6977:2 6979:5 6980:2 6982:4 7005:1 7029:1 7034:1 7036:1 7077:4 7097:1 7105:4 7120:2 7146:1 7169:1 7170:1 7187:1 7201:1 7215:1 7231:1 7236:2 7262:1 7307:2 7324:1 7328:1 7333:1 7344:2 7345:2 7353:1 7359:1 7361:2 7362:1 7368:1 7391:1 7392:1 7396:1 7399:1 7401:1 7406:2 7430:2 7432:1 7433:1 7439:1 7448:1 7456:1 7457:1 7461:1 7486:1 7489:3 7503:1 7566:1 7567:1 7580:3 7581:1 7601:1 7615:3 7624:1 7628:2 7634:1 7657:1 7688:1 7713:1 7717:2 7757:1 7763:1 7781:1 7799:9 7801:1 7813:1 7824:2 7826:2 7862:2 7879:1 7900:2 7937:1 7940:1 7941:1 7951:1 7971:2 7976:1 8000:1 8013:1 8019:1 8025:1 8051:1 8063:1 8064:1 8069:1 8088:1 8093:3 8122:4 8124:1 8128:4 8142:1 8144:2 8153:1 8154:2 8172:1 8192:1 8196:1 8201:1 8207:2 8214:1 8223:1 8231:1 8241:1 8245:1 8250:1 8264:1 8276:1 8283:2 8285:1 8289:1 8290:1 8301:1 8304:1 8342:1 8349:2 8376:1 8377:5 8383:1 8390:1 8391:11 8400:1 8410:2 8414:1 8416:4 8417:1 8443:1 8448:1 8457:36 8487:8 8490:13 8502:1 8518:1 8537:1 8541:2 8554:2 8555:1 8558:1 8568:1 8629:1 8636:1 8639:1 8699:1 8707:1 8717:1 8720:3 8721:1 8731:1 8765:1 8777:2 8787:3 8797:3 8803:1 8816:1 8818:1 8851:1 8862:1 8863:1 8888:1 8896:1 8903:1 8907:2 8916:1 8929:1 8940:9 8947:2 8950:1 8955:1 8958:1 8960:1 8983:1 9005:1 9019:27 9045:1 9072:1 9075:1 9089:1 9102:1 9151:1 9164:1 9175:1 9205:1 9222:1 9226:1 9249:1 9258:5 9276:2 9279:1 9285:4 9293:1 9294:1 9296:1 9299:3 9323:1 9329:1 9343:1 9348:1 9363:1 9383:2 9391:1 9393:3 9398:2 9399:4 9401:1 9402:1 9408:2 9413:5 9423:1 9425:1 9428:2 9455:1 9480:2 9490:2 9493:2 9495:1 9496:1 9518:1 9554:3 9559:1 9590:1 9595:1 9643:1 9644:1 9658:1 9682:1 9683:1 9698:2 9707:2 9724:2 9736:3 9751:1 9763:1 9767:1 9769:1 9771:1 9772:4 9798:1 9808:2 9816:1 9817:1 9850:1 9851:1 9864:1 9869:1 9876:1 9885:2 9895:1 9898:2 9928:1 9931:2 9936:6 9940:4 9944:1 9948:1 9960:3 9971:1 9974:1 9978:1 10002:2 10016:1 10018:1 10028:1 10037:1 10043:3 10054:1 10061:1 10086:1 10093:1 10114:1 10121:1 10147:1 10178:1 10182:1 10190:3 10193:1 10207:1 10212:1 10214:1 10215:1 10222:1 10237:1 10294:1 10297:1 10313:1 10334:1 10354:3 10363:1 10373:1 10381:1 10386:1 10393:4 10394:1 10405:1 10411:1 10423:1 10431:4 10449:1 10457:1 10458:1 10461:2 10474:3 10495:1 10504:1 10521:1 10534:1 10547:4 10559:1 10563:3 10568:6 10583:3 10603:1 10625:1 10649:2 10651:1 10663:2 10667:1 10678:2 10700:12 10709:1 10714:1 10715:1 10717:1 10725:1 10732:1 10740:1 10743:1 10749:1 10762:1 10764:1 10775:2 10781:1 10856:2 10864:1 10871:3 10872:1 10878:2 10895:1 10903:1 10925:2 10927:1 10929:2 10944:2 10962:1 10966:1 10972:1 10978:2 10986:2 11056:1 11071:2 11080:1 11082:2 11085:1 11112:1 11116:1 11124:1 11140:1 11145:1 11187:2 11196:2 11217:1 11218:2 11228:1 11277:1 11284:1 11285:1 11292:2 11326:1 11335:1 11337:1 11351:3 11363:1 11390:1 11416:4 11418:7 11425:1 11426:1 11448:1 11466:1 11493:2 11497:1 11514:1 11517:2 11521:3 11523:1 11536:1 11548:3 11556:1 11557:1 11587:3 11599:1 11606:4 11608:1 11612:1 11615:1 11620:1 11625:1 11626:1 11629:1 11630:2 11641:1 11642:1 11647:1 11671:3 11673:2 11690:1 11714:3 11723:1 11728:1 11734:1 11736:2 11738:2 11740:2 11744:4 11746:9 11785:1 11803:2 11818:1 11822:1 11829:1 11834:1 11835:4 11845:1 11848:1 11849:3 11877:1 11913:1 11926:1 11932:1 11937:1 11952:1 11958:4 11961:2 11964:1 11968:1 12015:1 12024:3 12031:1 12053:2 12063:1 12070:4 12084:1 12085:1 12094:1 12099:3 12101:1 12103:1 12105:1 12124:1 12126:1 12160:6 12166:2 12169:3 12192:1 12197:1 12221:1 12243:1 12256:1 12268:3 12273:2 12308:1 12309:1 12323:1 12334:1 12338:1 12339:1 12347:2 12359:1 12374:2 12377:2 12406:1 12422:1 12441:2 12445:7 12451:1 12461:1 12490:1 12492:1 12512:2 12521:2 12524:2 12525:1 12539:1 12542:1 12545:3 12546:1 12584:1 12589:1 12590:1 12606:1 12621:1 12640:1 12646:2 12654:1 12669:1 12675:1 12682:7 12684:3 12688:1 12706:1 12707:1 12721:2 12727:1 12730:1 12732:1 12739:1 12740:1 12743:1 12744:1 12746:1 12748:1 12750:1 12753:2 12755:1 12758:1 12761:1 12764:1 12769:2 12772:1 12791:1 12798:1 12799:1 12821:1 12822:1 12823:5 12839:3 12848:8 12894:1 12896:1 12903:1 12909:1 12910:1 12917:1 12920:11 12966:1 12999:1 13015:1 13025:1 13035:1 13042:2 13055:4 13057:1 13071:1 13076:1 13089:1 13093:1 13114:1 13116:1 13121:3 13143:1 13159:1 13160:1 13178:3 13202:2 13215:1 13216:2 13226:4 13227:4 13230:1 13231:1 13240:1 13242:2 13247:3 13250:3 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13352:1 13354:1 13364:2 13386:3 13392:3 13404:1 13426:1 13432:1 13437:1 13455:1 13468:1 13470:1 13519:1 13539:3 13547:1 13568:1 13600:1 13620:1 13651:1 13656:2 13693:1 13732:2 13751:1 13809:1 13813:10 13816:2 13827:2 13839:1 13845:1 13858:1 13871:1 13879:1 13899:11 13906:1 13926:1 13933:2 13960:2 13984:2 14023:1 14024:1 14101:1 14104:1 14113:1 14119:1 14121:4 14126:1 14138:1 14140:2 14160:2 14178:1 14208:1 14230:2 14235:1 14257:4 14269:1 14272:1 14274:3 14280:3 14296:3 14303:8 14305:1 14307:1 14341:1 14345:1 14352:1 14369:1 14371:3 14399:3 14400:2 14431:1 14445:1 14446:8 14455:1 14464:1 14468:14 14471:1 14475:1 14505:1 14512:1 14520:1 14553:1 14567:4 14590:1 14618:2 14622:1 14632:2 14638:1 14655:1 14662:1 14680:1 14692:1 14704:1 14709:2 14714:2 14719:1 14744:1 14749:2 14790:1 14800:1 14864:1 14866:1 14868:1 14871:5 14872:1 14874:1 14875:1 14879:1 14897:3 14913:1 14931:1 14941:1 14947:1 14983:10 14995:1 14996:2 15018:1 15036:1 15037:2 15038:2 15067:2 15078:1 15091:2 15092:1 15094:1 15095:1 15096:3 15104:1 15117:1 15171:5 15174:2 15196:3 15223:1 15225:1 15232:2 15236:1 15237:2 15297:1 15305:1 15308:2 15322:1 15344:2 15355:1 15387:1 15395:1 15401:1 15435:1 15446:2 15448:1 15455:1 15460:1 15464:1 15465:1 15472:2 15474:1 15519:1 15522:1 15552:1 15561:1 15572:1 15593:1 15597:1 15598:2 15600:2 15604:1 15605:3 15615:1 15616:1 15620:1 15623:1 15631:1 15647:1 15648:1 15650:1 15654:2 15680:1 15698:1 15699:1 15702:4 15740:4 15757:1 15762:1 15781:1 15804:1 15807:1 15815:1 15821:3 15830:1 15835:5 15848:2 15849:1 15860:1 15872:1 15873:1 15892:2 15903:1 15910:1 15926:2 15937:1 15941:1 15942:1 15954:1 15961:1 15971:1 15978:1 15991:1 16019:1 16030:1 16035:2 16048:1 16052:1 16092:1 16112:1 16126:1 16149:1 16151:3 16156:1 16166:4 16178:1 16193:3 16198:1 16239:1 16243:1 16268:1 16272:1 16298:4 16304:1 16305:1 16319:1 16351:1 16355:1 16357:2 16358:2 16396:1 16408:1 16410:1 16412:1 16422:1 16430:1 16437:1 16506:3 16515:1 16521:1 16539:1 16545:3 16547:2 16549:1 16553:1 16588:1 16594:1 16621:1 16629:1 16631:1 16660:1 16685:1 16703:1 16711:1 16720:1 16723:1 16747:1 16762:1 16768:1 16771:37 16808:2 16811:1 16822:1 16851:1 16865:1 16870:2 16876:1 16883:1 16901:1 16914:2 16919:1 16950:1 16981:1 16999:1 17029:1 17030:4 17036:1 17039:2 17040:1 17041:2 17046:1 17047:1 17053:1 17059:2 17065:1 17066:1 17069:1 17071:6 17072:1 17079:2 17086:1 17087:1 17125:3 17127:1 17130:1 17184:1 17185:1 17186:1 17215:5 17216:5 17236:1 17243:1 17249:1 17255:3 17270:1 17288:1 17319:1 17321:2 17335:1 17348:1 17360:3 17377:1 17382:1 17398:1 17405:1 17421:1 17423:1 17446:1 17469:2 17473:3 17477:1 17478:1 17500:1 17505:1 17507:6 17514:1 17521:1 17549:1 17557:1 17559:1 17562:1 17563:1 17570:1 17571:4 17593:1 17602:2 17608:1 17609:1 17622:1 17625:1 17632:1 17633:2 17637:1 17638:3 17639:2 17641:2 17643:1 17646:3 17647:1 17651:1 17653:1 17656:4 17658:1 17660:1 17662:5 17666:1 17678:1 17690:1 17695:3 17717:1 17731:1 17751:1 17784:1 17819:1 17864:1 17902:1 17932:1 17937:1 17987:1 18039:2 18054:1 18068:1 18099:1 18102:1 18105:1 18107:1 18115:2 18122:2 18123:1 18130:2 18141:1 18149:1 18179:1 18192:2 18199:2 18202:2 18212:1 18225:2 18228:6 18238:2 18243:1 18260:1 18266:1 18277:2 18303:1 18310:1 18326:2 18328:1 18343:3 18347:1 18352:9 18355:2 18367:1 18382:1 18409:2 18412:1 18418:2 18420:2 18429:2 18430:3 18454:2 18465:2 18488:2 18492:2 18494:2 18498:1 18519:1 18521:1 18531:1 18533:1 18537:1 18566:1 18569:1 18574:2 18575:1 18583:1 18587:1 18589:2 18594:1 18596:1 18597:2 18599:1 18608:1 18620:1 18623:1 18650:2 18684:1 18686:1 18694:3 18696:1 18709:1 18727:2 18730:1 18732:1 18736:1 18738:1 18750:3 18752:1 18765:2 18802:1 18804:1 18810:1 18817:1 18823:1 18839:1 18843:1 18847:1 18867:1 18872:1 18873:1 18890:1 18906:1 18913:1 18918:3 18928:2 18972:1 18975:1 18978:2 18982:1 18997:1 18998:1 19000:1 19001:1 19043:2 19044:2 19064:1 19068:2 19078:2 19084:1 19087:1 19122:1 19130:1 19133:1 19137:1 19153:2 19157:1 19164:2 19183:1 19194:1 19205:1 19207:2 19212:1 19214:1 19222:1 19235:1 19249:6 19271:1 19286:1 19287:1 19292:3 19294:1 19319:2 19324:3 19350:1 19351:3 19353:1 19357:3 19369:1 19371:1 19372:1 19390:3 19391:2 19393:1 19408:1 19418:2 19428:1 19429:2 19437:2 19441:1 19443:6 19449:3 19450:2 19454:1 19463:1 19480:1 19486:1 19494:1 19496:1 19498:1 19518:8 19530:1 19549:2 19551:2 19561:1 19583:1 19595:1 19596:1 19601:2 19617:1 19642:1 19665:1 19698:1 19709:1 19711:1 19716:1 19720:1 19722:1 19736:1 19756:1 19762:1 19774:1 19781:1 19787:1 19792:2 19808:1 19824:1 19827:1 19837:1 19852:2 19862:2 19888:1 19946:3 19951:1 19981:8 19990:1 19992:2 19994:1 20000:1 20052:1 20059:1 20061:1 20067:1 20068:1 20105:1 20113:1 20190:1 20196:2409 20200:2 20218:3 20229:1 20232:1 20249:1 20252:1 20270:1 20284:1 20286:1 20289:1 20304:1 20316:1 20328:1 20339:1 20341:1 20347:2 20353:1 20386:1 20390:1 20398:1 20399:1 20412:1 20422:1 20423:1 20436:5 20444:2 20449:3 20451:3 20453:1 20463:2 20477:1 20482:1 20510:1 20524:1 20530:2 20555:1 20557:1 20604:1 20605:1 20633:1 20662:1 20673:1 20684:1 20696:3 20712:1 20757:1 20761:2 20781:1 20819:1 20832:2 20839:1 20850:1 20858:2 20897:1 20908:2 20914:1 20917:1 20954:1 20955:3 20978:4 21004:5 21015:1 21027:2 21041:3 21042:1 21056:1 21060:1 21066:1 21067:2 21105:1 21106:5 21119:1 21127:3 21129:1 21130:1 21136:1 21158:1 21167:8 21173:1 21192:1 21218:1 21229:1 21262:1 21267:1 21318:1 21323:1 21326:1 21360:1 21363:2 21374:1 21404:1 21406:1 21429:1 21434:2 21456:1 21465:1 21472:1 21475:1 21482:1 21491:3 21492:3 21500:4 21506:1 21515:1 21541:2 21542:1 21548:3 21560:1 21567:1 21590:1 21597:1 21603:2 21623:1 21626:1 21634:1 21658:1 21679:1 21680:1 21705:1 21721:1 21742:1 21747:1 21755:1 21763:17 21766:3 21769:1 21773:1 21792:1 21799:1 21806:1 21814:1 21815:1 21819:1 21823:1 21825:1 21826:1 21827:1 21831:2 21852:2 21856:5 21867:2 21868:1 21873:2 21892:1 21894:1 21904:1 21915:2 21920:1 21922:1 21937:8 21944:3 21960:1 21971:1 21990:1 21991:1 22002:3 22010:1 22019:1 22025:2 22031:1 22047:1 22056:1 22061:1 22068:1 22080:1 22098:1 22109:1 22112:1 22115:1 22150:1 22162:1 22184:3 22187:1 22194:2 22195:1 22204:1 22225:1 22228:6 22230:5 22240:1 22242:2 22243:1 22285:1 22302:1 22306:1 22311:1 22319:2 22325:1 22346:1 22348:2 22351:1 22353:1 22384:1 22393:1 22394:1 22396:1 22422:1 22434:1 22460:1 22461:1 22479:1 22482:1 22485:2 22502:1 22507:1 22515:1 22518:1 22521:1 22526:1 22528:1 22550:1 22554:1 22560:1 22564:1 22569:1 22581:1 22590:5 22610:1 22614:1 22626:1 22632:1 22639:2 22643:3 22646:1 22657:1 22666:1 22677:2 22716:1 22719:2 22734:4 22739:1 22786:1 22796:10 22803:2 22809:2 22813:1 22822:4 22834:1 22853:1 22861:1 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22901:1 22918:1 22928:1 22941:1 22951:2 22960:2 22972:1 22991:1 23005:1 23017:1 23063:1 23067:1 23092:5 23119:3 23131:2 23136:3 23137:1 23141:1 23146:2 23149:1 23185:1 23219:1 23228:1 23229:1 23234:1 23239:1 23249:1 23256:1 23257:2 23258:5 23260:1 23261:1 23264:1 23274:1 23275:1 23281:1 23307:1 23310:1 23322:1 23334:1 23338:1 23342:3 23349:1 23360:1 23377:1 23389:1 23396:2 23420:2 23436:2 23438:2 23442:3 23491:1 23500:2 23503:2 23515:3 23531:1 23532:1 23539:1 23551:1 23552:2 23555:1 23557:1 23558:2 23606:1 23613:1 23615:1 23617:1 23652:1 23664:1 23665:2 23676:1 23686:4 23687:3 23689:3 23696:1 23697:1 23700:2 23715:1 23718:3 23722:1 23731:1 23732:2 23746:1 23749:1 23765:2 23775:1 23796:1 23826:2 23862:1 23863:3 23872:1 23885:1 23893:1 23901:3 23905:2 23916:3 23935:1 23953:1 23977:2 23983:1 23992:1 23994:2 24025:1 24034:1 24042:1 24053:1 24054:1 24068:2 24070:1 24079:2 24087:1 24088:5 24093:1 24095:1 24126:1 24132:1 24148:1 24157:1 24161:3 24166:2 24172:1 24173:1 24175:2 24182:2 24218:1 24233:1 24244:1 24245:1 24261:1 24269:2 24272:1 24287:2 24294:1 24298:1 24311:2 24325:2 24326:1 24327:1 24343:1 24357:3 24361:1 24363:2 24375:3 24379:1 24394:1 24414:1 24425:1 24427:1 24451:2 24452:1 24488:1 24489:1 24503:1 24506:1 24518:1 24534:3 24539:1 24544:1 24548:1 24563:1 24566:1 24584:1 24594:1 24599:2 24603:1 24610:2 24611:2 24612:2 24616:1 24617:1 24619:1 24625:1 24633:1 24638:1 24640:1 24652:3 24655:1 24664:2 24672:3 24687:1 24690:1 24714:2 24718:2 24725:1 24727:2 24731:1 24761:1 24766:1 24778:1 24786:1 24794:1 24819:3 24846:1 24865:4 24883:1 24913:3 24916:3 24957:2 24969:1 24981:1 24999:1 25005:1 25009:2 25018:1 25021:1 25079:1 25080:1 25140:1 25152:1 25166:1 25171:2 25185:3 25188:1 25193:4 25203:1 25204:1 25210:2 25226:1 25245:1 25247:1 25263:1 25266:1 25274:1 25276:3 25280:1 25294:3 25298:3 25305:1 25308:1 25346:1 25351:1 25359:1 25363:1 25364:1 25372:1 25373:2 25394:1 25395:1 25396:2 25417:1 25421:1 25431:1 25438:2 25441:1 25449:1 25453:2 25465:6 25469:1 25473:3 25490:1 25495:1 25498:1 25534:3 25559:1 25560:2 25566:1 25593:1 25606:1 25648:2 25649:1 25665:1 25684:3 25691:1 25705:1 25779:2 25802:1 25817:3 25865:1 25909:1 25910:8 25996:1 25997:1 26016:2 26050:2 26057:1 26058:1 26064:1 26071:1 26084:1 26098:1 26100:1 26111:2 26136:1 26142:1 26151:3 26160:1 26170:2 26172:7 26174:1 26177:1 26179:1 26197:1 26201:1 26202:1 26204:2 26215:1 26219:1 26221:2 26236:1 26245:1 26248:1 26270:1 26334:1 26347:1 26386:1 26397:1 26398:1 26399:1 26405:3 26406:1 26408:1 26409:1 26413:2 26427:1 26468:1 26470:2 26483:3 26485:1 26487:3 26489:1 26490:5 26496:2 26497:1 26510:1 26518:4 26535:5 26536:1 26552:1 26575:2 26576:1 26577:1 26597:1 26603:1 26607:1 26608:1 26626:1 26631:2 26638:1 26645:2 26654:2 26657:1 26659:1 26678:1 26684:2 26719:1 26724:1 26750:1 26754:1 26783:1 26793:1 26799:2 26805:1 26829:1 26836:1 26844:1 26847:1 26858:1 26861:2 26870:1 26895:3 26900:1 26916:6 26953:1 26958:1 26967:1 26968:1 26986:1 26991:6 26999:1 27000:1 27002:1 27005:1 27019:2 27043:2 27044:1 27137:1 27138:1 27140:1 27195:1 27213:1 27242:3 27244:7 27245:1 27265:3 27276:1 27277:2 27290:2 27296:1 27297:1 27305:2 27353:1 27360:1 27384:1 27402:1 27408:1 27446:1 27457:1 27471:1 27472:1 27474:1 27482:1 27483:1 27507:1 27509:1 27510:1 27512:2 27518:1 27534:1 27544:2 27577:1 27584:1 27586:1 27599:1 27600:3 27614:1 27646:1 27647:1 27653:1 27673:1 27693:1 27713:1 27730:1 27734:1 27750:1 27758:1 27770:1 27777:1 27787:1 27801:5 27802:1 27804:6 27814:1 27869:2 27910:2 27930:1 27952:5 27956:1 27957:1 27976:1 27999:1 28011:1 28013:1 28018:1 28057:1 28064:1 28073:1 28076:2 28079:1 28091:1 28100:1 28105:1 28112:1 28119:1 28131:3 28150:1 28152:1 28154:1 28159:3 28164:1 28166:2 28180:1 28192:1 28208:1 28215:1 28219:1 28222:4 28235:1 28245:1 28276:2 28291:1 28308:7 28309:1 28326:3 28349:1 28366:1 28372:1 28391:4 28403:1 28405:2 28421:1 28429:2 28434:1 28462:1 28484:1 28495:1 28507:1 28511:1 28516:1 28517:2 28533:1 28554:1 28578:3 28581:2 28589:1 28600:1 28602:1 28607:1 28611:1 28615:1 28617:1 28619:2 28623:3 28624:1 28644:2 28664:2 28675:1 28678:1 28680:1 28687:2 28703:4 28726:1 28747:2 28756:2 28767:1 28782:1 28793:1 28803:1 28855:1 28867:1 28874:1 28901:1 28912:1 28916:2 28989:1 28991:1 29013:1 29021:1 29104:1 29109:1 29117:1 29142:1 29149:2 29150:1 29170:1 29209:1 29227:1 29243:1 29268:1 29274:1 29282:2 29288:1 29292:3 29306:1 29314:1 29315:2 29319:1 29325:1 29340:1 29342:2 29353:1 29355:1 29372:3 29387:1 29390:1 29391:1 29400:1 29403:1 29411:4 29417:1 29425:1 29468:1 29479:1 29482:6 29486:2 29489:1 29509:1 29520:2 29550:1 29560:1 29576:4 29587:2 29588:2 29596:2 29599:1 29601:4 29605:1 29615:1 29627:1 29635:1 29637:2 29653:1 29658:2 29667:1 29668:1 29679:1 29684:2 29686:2 29689:1 29694:1 29696:1 29697:1 29699:1 29706:1 29714:1 29718:1 29754:2 29760:1 29789:2 29790:1 29794:1 29795:1 29814:1 29816:3 29818:1 29828:1 29833:1 29848:1 29852:1 29862:1 29867:1 29916:1 29918:1 29931:1 29932:1 29934:2 29938:1 29956:4 29971:1 29979:1 29989:1 29991:2 29995:1 30016:2 30031:2 30041:1 30044:1 30045:6 30064:2 30067:1 30097:1 30149:1 30175:1 30188:2 30212:1 30240:3 30248:1 30269:1 30282:1 30289:1 30319:3 30331:2 30336:1 30364:1 30368:1 30372:1 30390:4 30392:2 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30466:1 30479:20 30480:1 30502:1 30510:1 30530:1 30537:13 30543:1 30546:1 30548:1 30550:2 30581:1 30602:1 30623:1 30630:2 30646:1 30655:1 30661:1 30670:3 30675:3 30711:10 30713:1 30747:2 30764:2 30768:1 30805:2 30809:1 30810:2 30815:1 30818:1 30820:1 30846:2 30872:1 30876:1 30882:2 30888:1 30903:2 30924:1 30933:1 30956:1 30980:1 30988:1 30996:1 31026:1 31041:4 31043:4 31104:1 31114:1 31115:1 31118:1 31121:1 31125:2 31132:2 31133:1 31135:1 31143:1 31231:1 31253:4 31265:1 31267:1 31268:1 31272:10 31284:1 31288:1 31290:1 31291:1 31306:1 31309:1 31310:3 31311:1 31316:1 31337:1 31342:1 31362:1 31369:2 31380:1 31413:1 31437:1 31439:1 31444:1 31458:1 31465:1 31477:1 31495:1 31496:1 31506:3 31514:2 31528:1 31550:1 31572:1 31612:2 31652:1 31659:1 31666:1 31667:4 31679:1 31681:1 31689:1 31705:1 31713:2 31718:1 31742:2 31750:1 31756:2 31765:1 31780:1 31781:1 31785:1 31794:5 31801:1 31802:1 31803:2 31815:1 31823:1 31826:1 31851:1 31852:1 31866:1 31873:1 31882:1 31886:1 31890:3 31891:2 31896:2 31898:4 31899:1 31902:1 31905:2 31907:2 31911:1 31914:1 31934:1 31958:1 31962:3 31965:1 31970:1 31977:1 31978:1 31998:1 32007:1
20 9:1 18:1 21:1 23:1 24:1 26:2 30:1 31:1 46:1 61:1 75:1 78:1 90:7 95:1 103:1 111:1 120:1 123:1 158:1 169:1 181:1 184:1 193:1 197:1 211:1 233:1 253:3 261:2 274:2 278:1 289:1 290:3 292:1 306:1 307:2 331:1 355:2 358:1 385:1 404:2 406:2 421:1 448:1 468:1 482:1 489:3 536:1 540:2 564:1 596:1 602:1 622:1 623:3 625:1 631:1 635:1 652:2 664:2 668:1 696:2 701:1 704:3 755:1 770:1 794:1 822:1 892:1 897:1 913:1 949:1 956:2 959:2 963:1 965:1 971:3 977:1 990:1 991:2 995:1 996:4 1000:1 1011:1 1018:1 1025:1 1034:3 1054:1 1057:1 1062:1 1063:3 1064:1 1066:1 1067:5 1069:5 1079:1 1095:1 1098:1 1108:5 1124:1 1135:3 1136:3 1143:2 1149:1 1158:1 1167:1 1198:1 1200:2 1205:2 1226:1 1255:1 1262:1 1263:1 1281:1 1292:5 1305:4 1339:1 1341:2 1350:1 1353:1 1366:1 1368:2 1371:1 1380:1 1389:1 1402:1 1405:1 1406:1 1407:1 1420:1 1426:1 1427:1 1430:1 1446:1 1458:1 1491:1 1511:1 1533:1 1549:1 1563:1 1576:1 1578:1 1582:3 1594:2 1599:1 1608:1 1610:1 1630:1 1631:1 1633:4 1641:3 1651:6 1662:1 1668:1 1670:1 1671:1 1678:2 1691:3 1719:14 1722:2 1725:7 1729:1 1737:4 1741:1 1746:1 1756:3 1757:2 1759:2 1778:2 1799:1 1800:1 1805:1 1811:9 1818:1 1827:1 1829:1 1840:1 1842:1 1855:1 1863:1 1876:1 1877:1 1882:1 1903:2 1945:1 1967:1 1968:5 1973:2 1976:1 1987:2 1994:1 2015:1 2026:1 2035:2 2061:1 2064:1 2070:1 2086:1 2088:1 2105:2 2113:3 2116:2 2127:1 2138:2 2145:1 2161:1 2163:1 2166:1 2208:1 2210:2 2229:1 2245:4 2260:1 2264:1 2284:1 2285:4 2291:1 2295:1 2296:1 2301:1 2341:1 2354:6 2357:1 2379:1 2389:1 2395:2 2397:2 2403:1 2433:2 2435:8 2438:8 2442:1 2443:1 2450:1 2451:4 2452:3 2454:3 2455:2 2458:1 2463:1 2469:1 2471:1 2472:2 2475:4 2500:2 2505:1 2507:2 2509:1 2512:2 2513:1 2514:4 2516:1 2517:1 2520:1 2525:2 2530:1 2531:3 2533:2 2535:3 2539:3 2542:4 2544:2 2546:2 2549:2 2552:1 2554:2 2557:1 2574:1 2576:1 2579:1 2582:1 2599:1 2607:1 2616:1 2629:1 2639:1 2645:1 2650:1 2658:1 2673:1 2676:1 2677:1 2718:1 2723:1 2741:1 2757:1 2762:1 2767:1 2772:1 2773:1 2795:1 2801:1 2831:1 2833:1 2839:1 2853:1 2869:1 2870:1 2875:1 2886:1 2893:3 2898:1 2902:1 2914:1 2923:1 2937:1 2940:1 2948:1 2961:1 2963:2 2965:1 2970:2 2975:1 2977:1 2986:4 2995:1 3012:2 3015:1 3021:1 3029:1 3037:1 3040:1 3045:1 3050:1 3056:1 3063:1 3084:1 3087:3 3095:1 3105:1 3120:1 3128:1 3159:6 3164:1 3168:11 3169:2 3171:2 3181:1 3184:2 3185:3 3195:1 3201:1 3204:1 3214:12 3250:1 3288:2 3320:1 3327:1 3347:2 3354:1 3361:1 3422:4 3427:1 3453:1 3463:1 3501:1 3507:1 3514:1 3537:1 3553:1 3597:1 3598:1 3607:4 3615:1 3625:4 3628:1 3660:3 3674:1 3695:3 3706:1 3711:1 3712:1 3719:1 3722:1 3723:1 3751:1 3752:1 3780:1 3825:1 3835:1 3840:1 3846:1 3873:1 3885:2 3893:1 3901:2 3931:1 3944:1 3949:1 3950:2 3952:7 3966:2 3970:3 3977:1 3991:2 4006:1 4009:1 4013:1 4015:1 4024:6 4031:1 4042:1 4056:1 4059:1 4063:1 4065:1 4070:1 4075:4 4118:2 4126:2 4127:4 4160:1 4175:6 4176:1 4187:1 4202:1 4207:1 4211:7 4213:1 4261:1 4264:2 4279:2 4296:1 4306:1 4317:6 4334:1 4335:1 4345:2 4346:2 4366:1 4370:1 4375:2 4379:1 4391:1 4392:2 4395:1 4406:1 4414:2 4420:1 4423:3 4425:1 4443:1 4454:1 4472:1 4482:1 4508:1 4517:1 4535:2 4562:1 4575:1 4587:1 4593:1 4598:1 4626:1 4641:1 4699:1 4702:1 4727:1 4730:1 4735:1 4736:1 4768:1 4771:1 4776:1 4777:2 4780:1 4791:1 4794:1 4803:1 4822:1 4836:2 4838:1 4859:1 4860:1 4870:1 4872:1 4887:1 4917:1 4923:1 4958:1 4959:2 4993:1 4997:1 4999:2 5012:1 5027:2 5046:2 5055:1 5067:1 5078:2 5084:1 5086:1 5106:4 5122:1 5130:3 5131:1 5136:2 5184:1 5186:1 5189:1 5196:1 5214:1 5215:1 5227:1 5245:1 5247:1 5283:1 5291:1 5296:1 5306:1 5332:20 5333:1 5345:1 5349:1 5364:1 5372:1 5396:1 5444:3 5448:7 5466:3 5467:2 5470:1 5472:1 5475:1 5476:2 5479:1 5480:1 5485:1 5487:3 5488:2 5490:4 5492:3 5495:1 5496:1 5508:2 5547:1 5576:1 5577:1 5607:1 5619:1 5662:1 5678:4 5683:1 5693:1 5706:1 5710:1 5715:1 5720:1 5745:3 5748:1 5754:1 5767:1 5775:1 5800:2 5825:1 5839:1 5864:3 5877:1 5901:1 5916:3 5918:1 5924:1 5929:1 5931:4 5962:1 5977:1 5992:1 5997:2 5998:1 6018:1 6023:1 6038:1 6039:2 6049:1 6057:2 6077:1 6086:1 6089:1 6095:1 6101:2 6107:1 6117:1 6120:1 6127:2 6137:3 6158:3 6189:1 6225:2 6243:1 6244:2 6249:1 6250:1 6268:3 6279:1 6280:1 6312:1 6319:1 6321:1 6323:1 6326:2 6350:1 6351:1 6359:1 6362:1 6375:1 6379:1 6387:2 6394:3 6400:2 6444:4 6445:3 6451:1 6463:2 6467:2 6476:1 6477:2 6532:1 6542:1 6571:1 6584:1 6596:1 6609:6 6612:1 6631:1 6652:2 6664:1 6670:2 6674:1 6675:1 6682:1 6697:1 6702:1 6709:1 6711:1 6721:1 6727:2 6772:3 6779:1 6783:3 6829:1 6830:1 6841:1 6851:1 6856:4 6858:1 6869:1 6874:1 6890:1 6898:2 6910:1 6932:3 6933:2 6937:1 6949:3 6950:1 6951:1 6959:3 6961:2 6963:1 6966:1 6967:1 6971:4 6973:3 6977:2 6979:5 6980:2 6982:4 7005:1 7029:1 7034:1 7036:1 7077:4 7097:1 7105:4 7120:2 7146:1 7169:1 7170:1 7187:1 7201:1 7215:1 7231:1 7234:1 7236:2 7262:1 7307:2 7324:1 7328:1 7333:1 7344:2 7345:3 7353:1 7359:1 7361:2 7362:1 7368:1 7391:1 7392:1 7396:1 7399:1 7401:1 7406:2 7430:2 7432:1 7433:1 7439:1 7448:1 7456:1 7457:1 7461:1 7486:1 7489:3 7503:1 7506:1 7512:1 7566:1 7567:1 7580:3 7581:1 7601:1 7615:3 7624:1 7628:2 7634:1 7657:1 7688:1 7713:1 7717:2 7757:1 7763:1 7781:1 7799:9 7801:1 7813:1 7824:2 7826:2 7862:2 7879:1 7900:2 7937:1 7940:1 7941:1 7951:1 7971:2 7976:1 8000:1 8013:1 8019:1 8025:1 8051:1 8063:1 8064:1 8069:1 8088:1 8093:3 8122:4 8124:1 8128:4 8142:1 8144:2 8153:1 8154:2 8172:1 8173:1 8192:1 8196:1 8201:1 8207:2 8214:1 8223:1 8231:1 8241:1 8245:1 8250:1 8264:1 8276:1 8283:2 8285:1 8289:1 8290:1 8301:1 8304:1 8342:1 8349:2 8376:1 8377:5 8383:1 8390:1 8391:11 8400:1 8410:2 8414:1 8416:5 8417:1 8443:1 8448:1 8457:37 8467:1 8487:8 8490:13 8496:1 8502:1 8518:1 8537:1 8541:2 8554:2 8555:1 8558:1 8568:1 8629:1 8636:1 8639:1 8654:1 8699:1 8707:1 8717:1 8720:4 8721:1 8731:1 8765:1 8777:2 8787:3 8797:3 8803:1 8816:1 8818:1 8851:1 8862:1 8863:1 8888:1 8896:1 8903:1 8907:2 8916:1 8929:1 8940:9 8947:2 8950:1 8955:1 8958:1 8960:1 8983:1 9005:1 9019:28 9045:1 9072:1 9075:1 9089:1 9102:1 9151:1 9164:1 9175:1 9205:1 9222:1 9226:1 9249:1 9258:5 9276:2 9279:1 9285:4 9293:1 9294:1 9296:1 9299:3 9323:1 9329:1 9343:1 9348:1 9363:1 9383:2 9391:1 9393:3 9398:2 9399:4 9401:1 9402:1 9408:2 9413:5 9423:1 9425:1 9428:2 9455:1 9480:2 9490:2 9493:2 9495:1 9496:1 9518:1 9554:3 9559:1 9590:1 9595:1 9643:1 9644:1 9658:1 9682:1 9683:1 9698:2 9707:2 9724:2 9736:3 9751:1 9763:1 9767:2 9769:1 9771:1 9772:4 9798:1 9808:2 9816:1 9817:1 9850:1 9851:1 9864:1 9869:1 9876:1 9885:2 9895:1 9898:2 9928:1 9931:2 9936:6 9940:4 9944:1 9948:1 9960:3 9971:1 9974:1 9978:1 10002:2 10016:1 10018:1 10028:1 10037:1 10043:4 10054:1 10061:1 10086:1 10093:1 10114:1 10121:1 10147:1 10178:1 10182:1 10190:3 10193:1 10207:1 10212:1 10214:2 10215:1 10222:1 10237:1 10294:1 10297:1 10313:1 10334:1 10354:3 10363:1 10373:1 10381:1 10386:1 10393:4 10394:1 10405:1 10411:1 10423:1 10431:4 10449:1 10457:1 10458:1 10461:2 10474:3 10495:1 10504:1 10521:1 10534:1 10547:4 10559:1 10563:3 10568:6 10583:3 10603:1 10625:1 10649:2 10651:1 10663:2 10667:1 10678:2 10700:12 10709:1 10714:1 10715:1 10717:1 10725:1 10732:1 10740:1 10743:1 10749:1 10762:1 10764:1 10775:2 10781:1 10856:2 10864:1 10871:3 10872:1 10878:2 10895:1 10903:1 10925:2 10927:1 10929:2 10944:2 10962:1 10966:1 10972:1 10978:2 10986:2 11056:1 11071:2 11080:1 11082:2 11085:1 11112:1 11116:1 11124:1 11140:1 11145:1 11187:2 11196:2 11217:1 11218:2 11228:1 11277:1 11284:1 11285:1 11292:2 11326:1 11335:1 11337:1 11351:3 11363:1 11390:1 11416:4 11418:7 11425:1 11426:1 11448:1 11466:1 11493:2 11497:1 11514:1 11517:2 11521:3 11523:1 11536:1 11548:3 11556:1 11557:1 11587:3 11599:1 11606:4 11608:1 11612:1 11615:1 11620:1 11625:1 11626:1 11629:1 11630:2 11641:1 11642:1 11647:1 11671:3 11673:2 11690:1 11714:3 11723:1 11728:1 11734:1 11736:3 11738:2 11740:2 11744:4 11746:9 11752:1 11785:1 11793:1 11803:2 11818:1 11822:1 11829:1 11834:1 11835:4 11845:1 11848:1 11849:3 11877:1 11913:1 11926:1 11932:1 11937:1 11952:1 11958:4 11961:2 11964:1 11968:1 12015:1 12024:3 12031:1 12053:2 12063:1 12070:4 12084:1 12085:1 12094:1 12099:3 12101:1 12103:1 12105:1 12113:1 12124:1 12126:1 12160:6 12166:2 12169:3 12192:1 12197:1 12221:1 12243:1 12256:1 12268:3 12273:2 12308:1 12309:1 12323:1 12334:1 12335:1 12338:1 12339:1 12347:2 12359:1 12374:2 12377:2 12406:1 12422:1 12441:2 12445:8 12451:1 12461:1 12490:1 12492:1 12512:2 12521:2 12524:3 12525:1 12539:1 12542:1 12545:3 12546:1 12584:1 12589:1 12590:1 12606:1 12621:1 12640:1 12646:2 12654:1 12669:1 12675:1 12682:7 12684:3 12688:1 12706:1 12707:1 12721:2 12727:1 12730:1 12732:1 12739:2 12740:1 12743:1 12744:1 12746:1 12748:1 12750:1 12753:2 12755:1 12758:1 12761:1 12764:1 12769:2 12772:1 12791:1 12798:1 12799:1 12821:1 12822:1 12823:5 12839:3 12848:8 12894:1 12896:1 12903:1 12909:1 12910:1 12917:1 12920:11 12966:1 12999:1 13015:1 13025:1 13035:1 13042:2 13055:4 13057:1 13071:1 13076:1 13089:1 13093:1 13114:1 13116:1 13121:3 13143:1 13159:1 13160:1 13178:3 13202:2 13215:1 13216:2 13226:4 13227:4 13230:1 13231:1 13240:1 13242:2 13247:3 13250:4 13251:1 13260:1 13281:1 13288:1 13304:1 13321:1 13337:1 13352:1 13354:1 13364:2 13386:3 13392:3 13404:1 13426:1 13432:1 13437:1 13455:1 13468:1 13470:1 13519:1 13539:3 13547:1 13568:1 13600:1 13620:1 13628:1 13651:1 13656:2 13693:1 13732:2 13751:1 13809:1 13813:10 13816:2 13827:2 13839:1 13845:1 13858:1 13871:1 13879:1 13899:11 13906:1 13926:1 13933:2 13960:2 13984:2 14023:1 14024:1 14101:1 14104:1 14113:1 14119:1 14121:4 14126:1 14138:1 14140:2 14160:2 14178:1 14208:1 14230:2 14235:1 14257:4 14269:1 14272:1 14274:5 14280:3 14296:3 14303:8 14305:1 14307:1 14341:1 14345:1 14352:1 14369:1 14371:3 14399:3 14400:3 14431:2 14445:1 14446:8 14455:2 14464:1 14468:14 14471:1 14475:1 14505:1 14512:1 14520:1 14553:1 14567:4 14590:1 14618:2 14622:1 14632:2 14638:1 14655:2 14662:1 14680:1 14692:1 14704:1 14709:2 14714:2 14719:1 14744:1 14749:2 14762:1 14790:1 14800:1 14864:1 14866:1 14868:1 14871:5 14872:1 14874:1 14875:1 14879:1 14897:3 14913:1 14931:1 14941:1 14947:1 14983:11 14995:1 14996:2 15018:1 15036:1 15037:2 15038:2 15067:2 15078:1 15091:2 15092:1 15094:1 15095:1 15096:3 15104:1 15117:1 15171:5 15174:2 15196:3 15223:1 15225:1 15232:2 15236:1 15237:2 15297:1 15305:1 15308:2 15322:1 15344:2 15355:1 15387:1 15395:1 15401:1 15435:1 15446:2 15448:1 15450:1 15455:1 15460:1 15464:1 15465:1 15472:2 15474:1 15519:1 15522:1 15552:1 15561:1 15572:3 15593:1 15597:1 15598:2 15600:2 15604:1 15605:3 15615:1 15616:1 15620:1 15623:1 15631:1 15640:1 15647:1 15648:1 15650:1 15654:2 15680:1 15698:1 15699:1 15702:4 15740:4 15757:1 15762:1 15781:1 15804:1 15807:1 15815:1 15821:3 15830:1 15835:5 15848:2 15849:1 15860:1 15872:1 15873:1 15892:2 15903:1 15910:1 15926:2 15937:1 15941:1 15942:1 15954:1 15961:1 15971:1 15978:1 15991:1 16019:1 16030:1 16035:3 16048:1 16052:1 16092:1 16112:1 16126:1 16149:1 16151:3 16156:1 16166:4 16178:1 16193:3 16198:1 16239:1 16243:1 16268:1 16272:1 16298:4 16304:1 16305:1 16319:1 16351:1 16355:1 16357:2 16358:2 16396:1 16408:1 16410:1 16412:1 16422:1 16430:1 16437:1 16506:3 16515:1 16521:1 16539:1 16545:3 16547:2 16549:1 16553:1 16588:1 16594:1 16621:1 16629:1 16631:1 16660:1 16685:1 16703:1 16711:1 16720:1 16723:1 16747:1 16762:1 16768:1 16771:38 16793:1 16808:2 16811:1 16822:1 16851:1 16865:1 16870:2 16876:1 16883:1 16901:1 16914:2 16919:1 16950:1 16969:1 16981:1 16999:1 17029:1 17030:4 17036:1 17039:2 17040:1 17041:2 17046:1 17047:1 17053:1 17059:2 17065:1 17066:1 17069:1 17071:6 17072:1 17079:2 17086:1 17087:1 17125:4 17127:1 17130:1 17184:1 17185:1 17186:1 17215:5 17216:5 17236:1 17243:1 17249:1 17255:3 17270:1 17288:1 17319:1 17321:2 17335:1 17348:1 17360:3 17377:1 17382:1 17398:2 17405:1 17421:1 17423:1 17446:1 17469:2 17473:3 17477:1 17478:1 17482:1 17500:1 17505:1 17507:6 17514:1 17521:1 17549:1 17557:1 17559:1 17562:1 17563:1 17570:1 17571:4 17593:1 17602:2 17608:1 17609:1 17622:1 17625:2 17632:1 17633:2 17637:1 17638:3 17639:2 17641:2 17643:2 17646:3 17647:1 17651:1 17653:1 17656:4 17658:1 17660:1 17662:5 17666:1 17678:1 17690:1 17695:3 17717:1 17731:1 17751:1 17784:1 17819:1 17864:1 17902:1 17932:1 17937:1 17987:1 18039:2 18054:1 18068:1 18099:1 18102:1 18105:1 18107:1 18115:3 18122:2 18123:1 18130:2 18141:1 18149:1 18179:1 18192:2 18199:2 18202:2 18212:1 18225:2 18228:6 18238:2 18243:1 18260:1 18266:1 18277:2 18303:1 18310:1 18326:2 18328:1 18343:3 18347:1 18352:9 18355:2 18367:1 18382:1 18409:2 18412:1 18418:2 18420:2 18429:2 18430:3 18454:2 18465:2 18488:2 18492:2 18494:2 18498:1 18519:1 18521:1 18531:1 18533:1 18537:1 18566:1 18569:1 18574:2 18575:1 18583:1 18587:1 18589:2 18594:1 18596:1 18597:2 18599:1 18608:1 18620:1 18623:1 18650:2 18668:1 18684:1 18686:1 18694:3 18696:1 18709:1 18727:2 18730:1 18732:1 18736:1 18738:1 18750:3 18752:1 18765:2 18802:1 18804:1 18810:1 18817:1 18823:1 18839:1 18843:1 18847:1 18867:1 18872:1 18873:1 18890:1 18906:1 18913:1 18918:4 18928:2 18942:1 18972:1 18975:1 18978:2 18982:1 18997:1 18998:1 19000:2 19001:1 19043:2 19044:2 19064:1 19068:2 19078:2 19084:1 19087:1 19122:1 19130:2 19133:1 19137:1 19153:2 19157:1 19164:2 19183:1 19194:1 19205:1 19207:2 19212:1 19214:1 19222:1 19235:1 19249:6 19271:1 19286:1 19287:1 19292:3 19294:1 19319:2 19324:3 19350:1 19351:3 19353:1 19357:3 19369:1 19371:1 19372:1 19390:3 19391:2 19393:1 19408:1 19418:2 19428:1 19429:2 19437:2 19441:1 19443:6 19449:3 19450:3 19454:1 19463:1 19480:1 19486:1 19494:1 19496:1 19498:1 19518:8 19530:1 19549:2 19551:2 19561:1 19583:1 19595:1 19596:1 19601:2 19617:1 19642:1 19665:1 19671:1 19698:1 19709:1 19711:1 19716:1 19720:1 19722:1 19736:1 19756:1 19762:1 19771:1 19774:1 19781:1 19787:1 19792:3 19808:1 19824:1 19827:1 19837:1 19852:2 19862:2 19888:1 19946:3 19951:1 19981:9 19990:1 19992:2 19994:1 20000:1 20052:1 20059:1 20061:1 20067:1 20068:1 20105:1 20113:1 20190:1 20196:2463 20200:3 20218:3 20229:1 20232:1 20246:1 20249:1 20252:1 20270:1 20284:1 20286:1 20289:1 20304:1 20316:1 20328:1 20338:1 20339:1 20341:1 20347:2 20353:1 20386:1 20390:1 20398:1 20399:1 20412:1 20422:1 20423:1 20436:5 20444:2 20449:3 20451:3 20453:1 20463:2 20477:1 20482:1 20510:1 20524:1 20530:2 20555:1 20557:1 20604:1 20605:1 20633:1 20662:1 20673:1 20684:1 20696:4 20712:1 20757:1 20761:3 20781:1 20819:1 20832:2 20839:1 20850:1 20858:2 20897:1 20908:2 20914:1 20917:1 20954:1 20955:3 20978:4 21004:5 21015:1 21027:2 21041:3 21042:1 21056:1 21060:1 21066:1 21067:2 21105:1 21106:5 21119:1 21127:3 21129:1 21130:1 21136:1 21158:1 21167:8 21173:1 21192:1 21218:1 21229:1 21262:1 21267:1 21318:1 21323:1 21326:1 21360:1 21363:2 21374:1 21404:1 21406:1 21429:1 21434:2 21456:1 21465:1 21472:1 21475:2 21482:1 21491:3 21492:3 21500:4 21506:1 21515:1 21541:2 21542:1 21548:3 21560:1 21567:1 21590:1 21597:1 21603:2 21623:1 21626:1 21634:1 21658:1 21679:1 21680:1 21705:1 21721:1 21742:1 21747:1 21755:1 21763:17 21766:3 21769:1 21773:2 21782:1 21792:1 21799:1 21806:1 21814:1 21815:1 21819:1 21823:1 21825:1 21826:1 21827:1 21831:2 21852:2 21856:5 21867:2 21868:1 21873:2 21892:1 21894:1 21904:2 21915:2 21920:1 21922:1 21937:8 21944:3 21960:1 21971:1 21990:1 21991:1 22002:3 22010:1 22019:1 22025:2 22031:1 22047:1 22056:1 22061:1 22068:1 22080:1 22098:1 22109:1 22112:1 22115:1 22150:1 22162:1 22184:3 22187:1 22194:2 22195:1 22204:1 22225:1 22228:6 22230:5 22240:1 22242:2 22243:1 22285:1 22302:1 22306:1 22311:1 22319:3 22325:1 22346:1 22348:2 22351:1 22353:1 22384:1 22393:1 22394:1 22396:1 22422:1 22434:1 22460:1 22461:1 22479:1 22482:1 22485:2 22502:1 22507:1 22515:1 22518:1 22521:1 22526:1 22528:1 22550:1 22554:1 22560:1 22564:1 22569:1 22581:1 22590:5 22610:1 22614:1 22626:1 22632:1 22639:2 22643:3 22646:1 22657:1 22666:1 22677:2 22706:1 22716:1 22719:3 22734:4 22739:1 22786:1 22796:11 22803:2 22809:2 22813:1 22822:4 22834:1 22853:1 22861:1 22868:1 22877:1 22883:1 22888:1 22891:1 22892:1 22901:1 22918:1 22928:1 22941:1 22951:2 22960:2 22969:1 22972:1 22983:1 22991:1 23005:1 23017:1 23063:1 23067:1 23092:5 23119:3 23131:3 23136:3 23137:2 23141:1 23146:2 23149:1 23185:1 23219:1 23228:1 23229:1 23234:1 23239:1 23249:1 23256:1 23257:2 23258:6 23260:1 23261:1 23264:1 23274:1 23275:1 23281:1 23307:1 23310:1 23322:1 23334:1 23338:1 23342:3 23349:1 23360:1 23377:1 23389:1 23396:2 23420:2 23436:2 23438:2 23442:3 23491:1 23500:2 23503:2 23515:3 23531:1 23532:1 23539:1 23551:1 23552:3 23555:1 23557:1 23558:2 23606:1 23613:1 23615:1 23617:1 23652:1 23664:1 23665:2 23676:1 23686:4 23687:3 23689:3 23696:1 23697:1 23700:2 23715:1 23718:3 23722:1 23731:1 23732:2 23746:1 23749:1 23765:2 23775:1 23796:1 23820:1 23826:2 23862:1 23863:3 23872:1 23885:1 23893:1 23901:3 23905:2 23916:3 23935:1 23953:1 23977:2 23983:1 23992:1 23994:2 24025:1 24034:1 24042:1 24053:1 24054:1 24068:2 24070:1 24079:2 24087:1 24088:6 24093:1 24095:1 24126:1 24132:1 24148:1 24157:1 24161:3 24166:2 24172:1 24173:1 24175:2 24182:2 24218:1 24223:1 24233:1 24241:1 24244:1 24245:1 24261:1 24269:2 24272:1 24287:2 24294:1 24298:1 24311:2 24325:2 24326:1 24327:1 24343:1 24357:3 24361:1 24363:4 24375:3 24379:1 24394:1 24408:1 24414:1 24425:1 24427:1 24451:2 24452:1 24488:1 24489:1 24503:1 24506:1 24514:1 24518:1 24534:3 24539:1 24544:1 24548:1 24563:1 24566:1 24584:1 24594:1 24599:2 24603:1 24610:2 24611:2 24612:2 24616:1 24617:1 24619:1 24625:1 24633:1 24638:1 24640:1 24652:3 24655:1 24664:2 24672:3 24687:1 24690:1 24714:2 24718:2 24725:1 24727:2 24731:2 24761:1 24766:1 24778:1 24786:1 24794:1 24819:3 24846:1 24865:5 24883:1 24913:3 24916:3 24957:2 24969:1 24981:1 24999:1 25005:1 25009:2 25011:1 25018:1 25021:1 25079:1 25080:1 25140:1 25152:1 25166:1 25171:2 25175:1 25185:3 25188:1 25193:4 25203:1 25204:1 25210:2 25226:1 25245:1 25247:1 25263:1 25266:1 25274:1 25276:3 25280:1 25294:3 25298:3 25305:1 25308:1 25346:1 25351:1 25359:1 25363:1 25364:1 25372:1 25373:2 25394:1 25395:1 25396:2 25417:1 25421:1 25431:1 25438:2 25441:1 25449:1 25453:2 25465:6 25469:1 25473:3 25490:1 25495:1 25498:1 25534:3 25559:1 25560:2 25566:2 25593:1 25606:1 25648:2 25649:1 25665:1 25684:3 25691:1 25705:1 25779:3 25802:1 25817:3 25865:1 25909:2 25910:8 25996:1 25997:1 26016:3 26050:2 26057:1 26058:1 26064:1 26071:1 26084:1 26098:1 26100:1 26111:2 26136:1 26142:1 26151:3 26160:1 26170:2 26172:7 26174:1 26177:1 26179:1 26197:1 26201:1 26202:1 26204:3 26215:1 26219:1 26221:2 26236:1 26245:1 26248:1 26270:1 26334:1 26347:1 26386:1 26397:1 26398:1 26399:1 26405:3 26406:1 26408:1 26409:1 26413:2 26427:1 26468:1 26470:2 26483:3 26485:1 26487:3 26489:1 26490:5 26496:2 26497:1 26510:1 26518:4 26535:5 26536:1 26552:1 26575:2 26576:1 26577:1 26597:1 26603:1 26607:1 26608:1 26626:1 26631:2 26638:1 26645:2 26654:2 26657:1 26659:1 26678:1 26684:2 26719:1 26724:1 26750:1 26754:1 26783:1 26793:1 26799:2 26805:1 26829:1 26836:1 26844:1 26847:1 26858:1 26861:2 26870:1 26895:3 26900:1 26916:6 26953:1 26958:1 26967:1 26968:1 26986:1 26991:6 26999:1 27000:1 27002:1 27005:1 27019:2 27043:2 27044:1 27137:1 27138:1 27140:1 27195:1 27213:1 27242:3 27244:7 27245:1 27265:4 27276:1 27277:3 27290:2 27296:1 27297:1 27305:2 27353:1 27360:1 27384:1 27402:1 27408:1 27446:1 27457:1 27471:1 27472:1 27474:1 27482:1 27483:1 27507:1 27509:1 27510:1 27512:2 27518:1 27534:1 27544:2 27556:1 27577:1 27584:1 27586:1 27599:1 27600:3 27609:1 27614:1 27646:1 27647:1 27653:1 27673:1 27693:1 27713:1 27730:1 27734:1 27750:1 27758:1 27770:1 27777:1 27787:1 27801:5 27802:1 27804:7 27814:1 27869:2 27910:2 27930:1 27952:5 27956:1 27957:1 27976:1 27999:1 28011:1 28013:1 28018:1 28057:1 28064:1 28073:1 28076:2 28079:1 28091:1 28100:1 28105:1 28112:1 28119:1 28131:3 28150:1 28152:1 28154:1 28159:3 28161:1 28164:1 28166:2 28180:1 28192:1 28208:1 28215:1 28219:1 28222:4 28235:1 28245:1 28276:2 28291:1 28308:8 28309:1 28326:3 28349:1 28366:1 28372:1 28382:1 28391:4 28403:1 28405:2 28421:1 28429:2 28434:1 28462:1 28484:1 28495:1 28507:1 28511:1 28516:1 28517:2 28533:1 28554:1 28578:3 28581:2 28589:1 28600:1 28602:1 28607:1 28611:1 28615:1 28617:1 28619:2 28623:3 28624:1 28644:2 28664:2 28675:1 28678:1 28680:1 28687:2 28703:4 28721:1 28726:1 28747:2 28756:2 28767:1 28782:1 28793:1 28803:1 28855:1 28867:1 28874:1 28901:1 28912:1 28916:2 28989:1 28991:1 29013:1 29021:1 29104:1 29109:1 29117:1 29142:1 29149:2 29150:1 29170:1 29209:1 29227:1 29243:1 29257:1 29268:1 29274:1 29282:2 29288:1 29292:3 29306:1 29314:1 29315:2 29319:1 29325:1 29340:1 29342:2 29353:1 29355:1 29372:3 29387:1 29390:2 29391:1 29400:1 29403:1 29411:4 29417:1 29425:1 29468:1 29479:1 29482:6 29486:2 29489:1 29509:1 29520:2 29550:1 29560:1 29576:4 29587:2 29588:2 29596:2 29599:1 29601:4 29605:1 29615:1 29627:1 29635:1 29637:2 29653:1 29658:2 29667:1 29668:1 29679:1 29684:2 29686:2 29689:1 29694:1 29696:1 29697:1 29699:1 29706:1 29714:1 29718:1 29754:2 29760:1 29789:2 29790:1 29794:1 29795:1 29814:1 29816:3 29818:1 29828:1 29833:1 29848:1 29852:1 29862:1 29867:1 29916:1 29918:1 29931:1 29932:1 29934:2 29938:1 29956:4 29971:1 29979:1 29989:1 29991:2 29995:1 30016:2 30031:2 30041:1 30044:1 30045:6 30064:2 30067:1 30097:1 30149:1 30175:1 30188:3 30212:1 30240:3 30248:1 30269:1 30282:1 30289:1 30319:3 30331:2 30336:1 30364:1 30368:1 30372:1 30390:5 30392:2 30419:1 30444:1 30445:1 30450:1 30457:1 30459:1 30466:1 30479:20 30480:1 30502:1 30510:1 30530:1 30537:13 30543:1 30546:1 30548:1 30550:2 30568:1 30581:1 30602:1 30623:1 30630:2 30646:1 30655:1 30661:1 30670:3 30675:3 30711:10 30713:1 30747:2 30764:2 30768:1 30805:2 30809:1 30810:2 30815:1 30818:1 30820:2 30846:2 30872:1 30876:1 30882:2 30888:1 30903:2 30924:1 30933:1 30956:1 30980:1 30988:1 30996:1 31026:1 31041:4 31043:4 31104:1 31114:1 31115:1 31118:1 31121:1 31125:2 31132:2 31133:1 31135:1 31143:1 31231:1 31253:4 31265:1 31267:1 31268:1 31272:10 31284:1 31288:1 31290:1 31291:1 31306:1 31309:1 31310:3 31311:1 31316:1 31337:1 31342:1 31362:1 31369:2 31380:1 31413:1 31437:1 31439:1 31444:1 31458:1 31465:1 31477:1 31495:1 31496:1 31506:3 31514:2 31528:1 31550:1 31572:1 31612:2 31636:1 31652:1 31659:1 31666:1 31667:5 31679:1 31681:1 31689:1 31705:1 31713:3 31718:1 31742:2 31750:1 31756:2 31765:1 31780:1 31781:1 31785:1 31794:5 31801:1 31802:1 31803:2 31815:1 31823:1 31826:1 31851:1 31852:1 31866:1 31873:1 31882:1 31886:1 31890:3 31891:2 31896:2 31898:5 31899:1 31902:1 31905:2 31907:2 31911:1 31914:1 31934:1 31958:1 31962:3 31965:1 31970:1 31977:1 31978:1 31998:1 32007:1
|
bbaf2bab1b0804466ab47f741c08f9c8acd2394c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2642/CH9/EX9.9/Ex9_9.sce | 920d6a9fcd1ff3aeff478bd5b8e91e6801ed019a | [] | 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,380 | sce | Ex9_9.sce | // FUNDAMENTALS OF ELECTICAL MACHINES
// M.A.SALAM
// NAROSA PUBLISHING HOUSE
// SECOND EDITION
// Chapter 9 : SYNCHRONOUS GENERATOR
// Example : 9.9
clc;clear; // clears the console and command history
// Given data
kVA = 200 // kVA ratings
V_t = 33*10^3 // terminal voltage in V
R_a = 0.54 // armature resistance in ohm
V_L = 415 // voltage between lines for SC test in V
I_sh = 25 // short circuit current in A
// caclulations
phi = acosd(0.9) // since power factor in 0.9
V_P = V_L/sqrt(3) // phase voltage during short circuit test in V
Z_s = V_P/I_sh // synchronous impedance in ohm
X_s = sqrt(Z_s^2 - R_a^2) // synchronous reactance in ohm
I_a = kVA/(sqrt(3)*V_t*10^-3) // full loa current in A
V_ta = V_t/sqrt(3) // voltage per phase alternator
E_f = sqrt((V_ta*cosd(phi)+I_a*R_a)^2+(V_ta*sind(phi)+I_a*X_s)^2) // no-load voltage per phase in V
VR = ((E_f-V_ta)/V_ta)*100 // voltage regulation
// display the result
disp("Example 9.9 solution");
printf(" \n Synchronous impedance \n Z_s = %.1f ohm \n", Z_s );
printf(" \n Synchronous reactance is \n X_s = %.2f ohm \n", X_s );
printf(" \n Voltage regulation is \n VR = %.2f percent \n", VR );
printf(" \n NOTE : error in calculation, R_a is taken instead of X_s in E_f calculation \n");
|
03f0830382f7f5505a789fd35a94010f35dcc703 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3428/CH3/EX1.3.17/Ex1_3_17.sce | 44b7c183a88c20db778e668d84cdcd5d15906855 | [] | 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 | 400 | sce | Ex1_3_17.sce | //Section-1,Example-2,Page no.AC-266
//To calculate the amount of lime required for softening of given hard water sample.
clc;
C_Eq1=144*(100/146) //CaCO3 equi.of Mg(HCO3)2
C_Eq2=25*(100/162) //CaCO3 equi.of Ca(HCO3)2
C_Eq3=95*(100/95) //CaCO3 equi.of MgCl2
V_1=5000 //Given solution of hard water
L_R=(74/100)*(2*C_Eq1+C_Eq2+C_Eq3)*V_1*10^-5
disp(L_R,'Lime requirement(kg)')
|
b33e01b3ada428b5f954ab96ed1c3f7822802ebb | 449d555969bfd7befe906877abab098c6e63a0e8 | /1985/CH10/EX10.6/Chapter10_example6.sce | 3e56d7197cfc781322a50e8d6452644ddbb23a25 | [] | 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 | 708 | sce | Chapter10_example6.sce | clc
clear
//Input data
mH=2.01478//Mass of Hydrogen (1H2) in a.m.u
mHe=4.00388//Mass of Helium (He4) in a.m.u
n=20//Efficiency in percent
O=10000//Output of the reactor in kW
e=1.6*10^-19//Charge of electron in Coulumb
A=6.023*10^23//Avagadros number
//Calculations
md=(2*mH-mHe)//Mass defect in a.m.u
E=(md*931.48)//Energy released in MeV
O1=(O*1000)//Output of the reactor in J/s
E1=(O1*24*60*60)//Energy released by the reactor in one day in J
I=(E1/n)*100//Useful input in J
N=(I*2/(E*10^6*e))//Number of deuterons required to release an energy of 'I' J
m=((2*N)/A)//Mass of 'N' atoms of 1H2 in gm
//Output
printf('The reactor consumes %3.3f*10^-3 kg of deuteron in one day',m)
|
0947832b1b6ce3f70e90eb474dcf17a4056cffb3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1364/CH8/EX8.3.4/8_3_4.sce | a63b8a3abcfd331f0f57bb1dcc1deb47977a7d46 | [] | 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 | 293 | sce | 8_3_4.sce | clc
//initialisation of variables
g= 32.2 //ft/sec^2
l= 2.54 //cm
g= 32.2 //ft/sec^2
v= 3.22 //centi-poise
f= 0.01
p= 1.74 //lbf/in^2
w= 100 //rev
//CALCULATIONS
V= v*l/(453.6*g*12)
R= f*p*60/(%pi*2*%pi*w*V)
//RESULTS
printf (' relevant ratio of diameter to clearance= %.1f ',R)
|
b427aebc56baa6fc500247e197b4b2307b922784 | 43189f8cf8a25fedb6e184447f423f71938ef93c | /chips/Mul16.tst | a8b1e9e881146a1de5e0202e966ad8ee80a39774 | [] | no_license | srishtidoi/Nand2Tetris | b648834ad416b5f91972f660dd4560521618915e | f7790f971133008aa8dad55600b64e0df593c42b | refs/heads/master | 2022-12-05T16:36:46.649379 | 2020-08-12T15:55:39 | 2020-08-12T15:55:39 | 275,914,875 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 121 | tst | Mul16.tst | load Mul16.hdl,
output-file Mul.out,
output-list in%B3.1.3 out%B1.16.1;
set in 1,
eval,
output;
set in 0,
eval,
output; |
357b9f1c6f8c32f2bdbd9a6e34404eda733e9699 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1754/CH1/EX1.13/Exa1_13.sce | 823ee865026977750e622293b1d8babaa307da77 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 316 | sce | Exa1_13.sce | //Exa 1.13
clc;
clear;
close;
//Given data
format('v',6);
R=0.90;//in A/W
Pop=1;//in mW
//Part (i)
IP=R*Pop;//in mA
disp(IP,"Power of incident light 1mW, Photocurrent in mA is :");
//Part (ii)
disp("Here IP is not proportional to Pop(for Pop>1.5mW)");
disp("Hence Photourrent can not be calculated.");
|
781fe4df40c261a1cce7d5e0ba7f3a540fdf206a | 449d555969bfd7befe906877abab098c6e63a0e8 | /887/CH15/EX15.3/15_3.sce | bd8dc2d1604d2beb9843e3a4c7e2b0cf420ecc62 | [] | 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 | 826 | sce | 15_3.sce | clc
//ex15.3
M_r=5000; //relative permeability
R=10*10^-2;
r=2*10^-2;
N=100; //number of turns
//complex number 'i' is used as a symbol here
I=2*%i; //here 'i' represents sin(200*%pi*t), not as a complex number
M_o=4*%pi*10^-7; //permeability of free space
M=M_r*M_o; //permeability of the core material
phi=M*N*I*r^2/(2*R); //flux
FL=N*phi; //flux linkages
printf(" All the values in the textbook are approximated hence the values in this code differ from those of Textbook")
disp('In the below two values,i represents sin(200*%pi*t)') //t-time
disp(phi,'flux in webers')
disp(FL,'flux linkages in weber turns')
//differentiating 'λ' with respect to t
disp('In the below answer, i represents cos(200*%pi*t)')
disp(FL*200*%pi,'Voltage induced in the coil in volts')
|
53f5436e63b5acaac761406a25e79631420b163d | e25bb3040c96f9782aab0493e05ba22f5bf50ccf | /ex3/ex3d.sce | 4fff785684d3bbc642ff6355b672703e4b9f2417 | [] | no_license | gpioblink/aizu-spls-exercise | c13258d46f50ed2db7797693a097b0fb75d24eaf | 6c0b9326ba8e4b52378cfe777e82a2bfcdecc9b9 | refs/heads/master | 2022-09-14T06:09:44.774157 | 2020-05-31T07:43:26 | 2020-05-31T07:43:26 | 263,856,972 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 357 | sce | ex3d.sce | [x,Fs] = wavread('abc.wav')
k = 4 * x
y = k - 0.25
nc = length(y)
for i = 0:nc
if i > 10
z(i) = y(i-10)
end
end
s = ((rand(length(x),1).^2000)-(rand(length(x),1).^2000))
r = z + s
wavwrite(r,Fs, 'abc_r.wav')
plot(r);
xlabel('t');
ylabel('amplitude');
a=get("current_axes");
set(a,"x_location","origin")
set(a,"y_location","origin")
|
5383b0438da78fff95d012c965ba8bb3a19b911b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1199/CH2/EX2.34/2_34.sci | c5cb4da0857d4da368559a20a94ce42d55acc143 | [] | 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 | 281 | sci | 2_34.sci | // 2.34
clc;
clear
th=20;
Vz=2.73+th*10*10^-3;
Voffset=-2.73;
Vout=Vz+Voffset;
Rbias=(5-0.2)/10^-3;
Rzero=500;
th=50;
Vz=2.73+th*10*10^-3;
VmaxT=Vz+Voffset;
Vsupply=5;
Rl=(VmaxT*Rbias)/(Vsupply-VmaxT);
printf("Value of resistance R1=%.2f ohm",Rl)
disp('value of resistance RL>>Rl') |
30b3939884e01e85efc245c31ab441cfcb5af2bc | 449d555969bfd7befe906877abab098c6e63a0e8 | /132/CH9/EX9.3/Example9_3.sce | bfc51fddaec27f68c78fbb3897111df02481e2c7 | [] | 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 | 991 | sce | Example9_3.sce | //Example 9.3
//Program to Calculate Gain in dB at Cutoff Frequencies and
//Plot Frequency Response Curve
clear;
clc ;
close ;
//Given Data
A=100;
f1=400;
f2=25*10^3;
f3=80;
f4=40*10^3;
//Calculation
Adb=20*log10(A);
Adbc=Adb-3; //Lower by 3dB
//Displaying The Results in Command Window
printf("\n\t The Gain at Cutoff Frequencies is, Adb (at Cutoff Frequencies) = %f dB",Adbc);
//Plotting the Frequency Response Curve
x = [f3 f1 f2 f4];
x1= [1 1 1 1];
y = [Adbc Adb Adb Adbc];
gainplot(y,x1);
a = gca();
a.y_location = 'left';
a.x_location = 'bottom';
a.x_label.text = ' f3 f1 Frequency(Hz) f2 f4';
a.y_label.text = ' AdB 37';
a.title.text = 'FREQUENCY RESPONSE CURVE';
plot2d(x,y);
r= [37 37];
q = [10 100000];
plot2d2(q,r,6);
r2= [37 40 40 37];
q2 = [f3 f1 f2 f4];
plot2d3(q2,r2,6); |
813f2afecf0e7de9323f376bf79a8f976ed47035 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2243/CH8/EX8.12/Ex8_12.sce | 6ac2898dbf58e05625d5e4126788d597773b3044 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 309 | sce | Ex8_12.sce | clc();
clear;
//Given :
T_half = 8 ; // iodine 131 haf life in days
lambda = 0.693/T_half ; // decay constant in decays/day
N0 = 20 ; // mass in mg
t = 48; // time in days
N = N0*exp(-lambda*t); // in mg
printf("Original amount : %d mg \n",N0);
printf("Remaining amount after 48 days : %.3f mg",N);
|
334538874e7c71a6dac1ee71a233229ddce12193 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2045/CH7/EX7.5/Ex7_5.sce | 3f9e0e09986d8742eae9df245d9bea656315e73e | [] | 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 | Ex7_5.sce | //pagenumber 373 example 5
clear
idss=10*10^-3;//ampere
pinvol=-1;//volt
ids=6.4*10^-3;//ampere
vgs=-(sqrt(ids/idss)-(1))*pinvol;
r=pinvol/ids;
disp("source resistance = "+string(abs(r))+"ohm");
|
a7e72f9809eb660cda05fd974d762a3f04cfedd3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3574/CH1/EX1.8/EX1_8.sce | dff0305b4c57501afa5eece348a27b59d87d1d25 | [] | 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 | 730 | sce | EX1_8.sce | // Example 1.8
// Computation of (a) Number of cycles per revolution (b) Number of electrical
// degrees per revolution (c) Frequency in hertz
// Page No. 31
clc;
clear all;
close;
// Given data
P=80; // Number of poles
rpers=20; // Revolutions per second
// (a) Number of cycles per revolution
n=P/2;
// (b) Number of electrical degrees per revolution
Elecdeg=360*P/2;
// (c) Frequency in hertz
f=P*rpers/2;
//Display result on command window
printf("\n Number of cycles per revolution = %0.0f cycles ",n);
printf("\n Number of electrical degrees per revolution = %0.0f ",Elecdeg);
printf("\n Frequency in hertz = %0.0f Hz ",f);
|
0330dc3d33360f723258d878d5206452afd1b751 | ad80426c97c2d8e39219c996aed6730d7bdbbf10 | /Assets/StreamingAssets/Scenario Maps/Zenko.sce | a715cc1229d36d11734935a9290b14142a23b4db | [] | no_license | tongxingyang/FlyingWhales | 5b84b1aceeb9bfea9a2838eea2410684f1176373 | c176a97b4a6e93d8de2f2f18bbc262a7be699bd7 | refs/heads/master | 2023-03-21T14:31:09.845319 | 2020-12-23T15:36:54 | 2020-12-23T15:36:54 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 85,836 | sce | Zenko.sce | {
"worldMapSave": {
"worldMapTemplate": {
"regionCount": 4,
"worldMapWidth": 14,
"worldMapHeight": 12,
"regions": [
{
"Key": 0,
"Value": [
{
"width": 7,
"height": 6
},
{
"width": 7,
"height": 6
}
]
},
{
"Key": 1,
"Value": [
{
"width": 7,
"height": 6
},
{
"width": 7,
"height": 6
}
]
}
]
},
"hextileSaves": [
{
"persistentID": "e949574d-a7d3-4ac8-ad37-b05cddadb82d",
"id": 0,
"xCoordinate": 0,
"yCoordinate": 0,
"tileName": "Struhor",
"elevationNoise": 0.5765786,
"moistureNoise": 0.4170362,
"temperature": 1.065284,
"biomeType": "FOREST",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "ab5e5cd2-a99a-4371-926f-f46696636ddc",
"id": 1,
"xCoordinate": 0,
"yCoordinate": 1,
"tileName": "Ployiare",
"elevationNoise": 0.5176012,
"moistureNoise": 0.4053721,
"temperature": 0.9537684,
"biomeType": "FOREST",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "f78c0cf0-f0b8-4260-bb18-84df0af61053",
"id": 2,
"xCoordinate": 0,
"yCoordinate": 2,
"tileName": "Annethial",
"elevationNoise": 0.3753585,
"moistureNoise": 0.3900738,
"temperature": 0.7432793,
"biomeType": "FOREST",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "4e90f37e-fe0d-4e34-b0b5-b9144a944946",
"id": 3,
"xCoordinate": 0,
"yCoordinate": 3,
"tileName": "Kresaran",
"elevationNoise": 0.4557149,
"moistureNoise": 0.3791572,
"temperature": 0.5467911,
"biomeType": "FOREST",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "e9e6ce7b-6856-4144-b4cf-6af558fdd826",
"id": 4,
"xCoordinate": 0,
"yCoordinate": 4,
"tileName": "Bledra",
"elevationNoise": 0.4269312,
"moistureNoise": 0.389861,
"temperature": 0.385407,
"biomeType": "FOREST",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "d13e7be5-a0dc-4f87-af2c-efb38de53525",
"id": 5,
"xCoordinate": 0,
"yCoordinate": 5,
"tileName": "Teath",
"elevationNoise": 0.4917292,
"moistureNoise": 0.3852291,
"temperature": 0.2453387,
"biomeType": "FOREST",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "6a06bbd3-1910-4769-a4b7-14115f5244f7",
"id": 6,
"xCoordinate": 0,
"yCoordinate": 6,
"tileName": "Bruleana",
"elevationNoise": 0.6368566,
"moistureNoise": 0.6633378,
"temperature": 0.1624708,
"biomeType": "SNOW",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "e0e16988-13ae-49a2-ba64-e6838573eeba",
"id": 7,
"xCoordinate": 0,
"yCoordinate": 7,
"tileName": "Fliodor",
"elevationNoise": 0.3480405,
"moistureNoise": 0.4529509,
"temperature": 0.3108754,
"biomeType": "SNOW",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "52ad6711-97fa-42cf-af93-9cd162f5ed8a",
"id": 8,
"xCoordinate": 0,
"yCoordinate": 8,
"tileName": "Sianarim",
"elevationNoise": 0.5833328,
"moistureNoise": 0.6665595,
"temperature": 0.4357829,
"biomeType": "SNOW",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "2aec64d8-a3a0-46c0-99e1-adbe5c84b425",
"id": 9,
"xCoordinate": 0,
"yCoordinate": 9,
"tileName": "Ximelodu",
"elevationNoise": 0.4329881,
"moistureNoise": 0.5184984,
"temperature": 0.5999014,
"biomeType": "SNOW",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "9fcb8991-2026-448c-b941-c612ad26446e",
"id": 10,
"xCoordinate": 0,
"yCoordinate": 10,
"tileName": "Grahea",
"elevationNoise": 0.7975262,
"moistureNoise": 0.1779589,
"temperature": 0.7825526,
"biomeType": "SNOW",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "7b705be7-82db-4f78-996a-1334508029c9",
"id": 11,
"xCoordinate": 0,
"yCoordinate": 11,
"tileName": "Choreary",
"elevationNoise": 0.437737,
"moistureNoise": 0.5157245,
"temperature": 0.8872924,
"biomeType": "SNOW",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "b3384a87-ad0d-472e-86b3-f6431585b630",
"id": 12,
"xCoordinate": 1,
"yCoordinate": 0,
"tileName": "Caepe",
"elevationNoise": 0.3194149,
"moistureNoise": 0.4815857,
"temperature": 0.9814996,
"biomeType": "FOREST",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "96ce0ebb-ad72-4f0c-ae7d-f15e04a1090d",
"id": 13,
"xCoordinate": 1,
"yCoordinate": 1,
"tileName": "Creapiar",
"elevationNoise": 0.4123838,
"moistureNoise": 0.568444,
"temperature": 0.8340307,
"biomeType": "FOREST",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "c174982d-58a8-41a2-9647-08c0c9866c6e",
"id": 14,
"xCoordinate": 1,
"yCoordinate": 2,
"tileName": "Rummaren",
"elevationNoise": 0.450751,
"moistureNoise": 0.3793502,
"temperature": 0.6329545,
"biomeType": "FOREST",
"elevationType": "PLAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "InhabitedFeature"
}
],
"landmarkType": "HOUSES"
},
{
"persistentID": "bc5ecfbc-fbb2-4cd3-a937-89381375843b",
"id": 15,
"xCoordinate": 1,
"yCoordinate": 3,
"tileName": "Waephea",
"elevationNoise": 0.4584391,
"moistureNoise": 0.4533483,
"temperature": 0.4865687,
"biomeType": "FOREST",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "d9b6ae48-4ad6-4580-962d-5a1cf966e108",
"id": 16,
"xCoordinate": 1,
"yCoordinate": 4,
"tileName": "Zeaxoque",
"elevationNoise": 0.01861156,
"moistureNoise": 0.3191278,
"temperature": 0.3795962,
"biomeType": "FOREST",
"elevationType": "WATER",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "68cd0840-4c2d-45a6-a4e1-c4daf364ebe6",
"id": 17,
"xCoordinate": 1,
"yCoordinate": 5,
"tileName": "Krimian",
"elevationNoise": 0.2869608,
"moistureNoise": 0.5733642,
"temperature": 0.2733177,
"biomeType": "FOREST",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "a587f4de-b848-4d07-9622-319100be97be",
"id": 18,
"xCoordinate": 1,
"yCoordinate": 6,
"tileName": "Anniastre",
"elevationNoise": 0.4254052,
"moistureNoise": 0.5449415,
"temperature": 0.1958786,
"biomeType": "SNOW",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "75784dc8-c37b-4af0-94ac-c251097731bc",
"id": 19,
"xCoordinate": 1,
"yCoordinate": 7,
"tileName": "Grannia",
"elevationNoise": 0.6521012,
"moistureNoise": 0.3951379,
"temperature": 0.3478674,
"biomeType": "SNOW",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "2d96e41d-6840-442c-87c4-f985294329f2",
"id": 20,
"xCoordinate": 1,
"yCoordinate": 8,
"tileName": "Sledorim",
"elevationNoise": 0.5337047,
"moistureNoise": 0.3781731,
"temperature": 0.4973379,
"biomeType": "SNOW",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "dacb5764-19fb-461b-827e-3d75f4974a73",
"id": 21,
"xCoordinate": 1,
"yCoordinate": 9,
"tileName": "Bruleah",
"elevationNoise": 0.1079005,
"moistureNoise": 0.3065754,
"temperature": 0.6767684,
"biomeType": "SNOW",
"elevationType": "WATER",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "c5580eae-6e4c-4984-8fb1-f8233b401b2d",
"id": 22,
"xCoordinate": 1,
"yCoordinate": 10,
"tileName": "Gruspeas",
"elevationNoise": 0.2705222,
"moistureNoise": 0.4495171,
"temperature": 0.8401037,
"biomeType": "SNOW",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "fce95052-688d-424f-ba6a-b7ea98bf44c9",
"id": 23,
"xCoordinate": 1,
"yCoordinate": 11,
"tileName": "Edrene",
"elevationNoise": 0.4647449,
"moistureNoise": 0.6074257,
"temperature": 0.9061935,
"biomeType": "SNOW",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "a8d92749-0be9-4be0-88be-731fb19458af",
"id": 24,
"xCoordinate": 2,
"yCoordinate": 0,
"tileName": "Stanial",
"elevationNoise": 0.3785922,
"moistureNoise": 0.4410188,
"temperature": 0.9042841,
"biomeType": "FOREST",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "d0ee0542-f8ce-49f3-af7f-2c7808962850",
"id": 25,
"xCoordinate": 2,
"yCoordinate": 1,
"tileName": "Greanare",
"elevationNoise": 0.4542454,
"moistureNoise": 0.3884395,
"temperature": 0.7392566,
"biomeType": "FOREST",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "a55b06c7-5b5b-43c9-89c1-a119c9f19fb4",
"id": 26,
"xCoordinate": 2,
"yCoordinate": 2,
"tileName": "Zemmeas",
"elevationNoise": 0.5608739,
"moistureNoise": 0.3901313,
"temperature": 0.5647892,
"biomeType": "FOREST",
"elevationType": "PLAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "InhabitedFeature"
}
],
"landmarkType": "LUMBERYARD"
},
{
"persistentID": "14684ca7-5388-4397-8daf-b9cd2a75ad3e",
"id": 27,
"xCoordinate": 2,
"yCoordinate": 3,
"tileName": "Rioreata",
"elevationNoise": 0.4988656,
"moistureNoise": 0.4014538,
"temperature": 0.4745001,
"biomeType": "FOREST",
"elevationType": "PLAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "InhabitedFeature"
}
],
"landmarkType": "HOUSES"
},
{
"persistentID": "97a65318-9bee-4efd-abdc-58d942178665",
"id": 28,
"xCoordinate": 2,
"yCoordinate": 4,
"tileName": "Padragan",
"elevationNoise": 0.4251449,
"moistureNoise": 0.366203,
"temperature": 0.4203825,
"biomeType": "FOREST",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "a1680be9-0f07-4ce0-a8cf-69f596a41ad9",
"id": 29,
"xCoordinate": 2,
"yCoordinate": 5,
"tileName": "Kreommea",
"elevationNoise": 0.6823918,
"moistureNoise": 0.2642716,
"temperature": 0.3347957,
"biomeType": "FOREST",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "4e2ea306-bcea-49d7-bee7-b66084595d1d",
"id": 30,
"xCoordinate": 2,
"yCoordinate": 6,
"tileName": "Tial",
"elevationNoise": 0.4493523,
"moistureNoise": 0.4871144,
"temperature": 0.2436674,
"biomeType": "SNOW",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "MAGE_TOWER"
},
{
"persistentID": "91f5bab6-949f-4564-96f3-085dc829f42a",
"id": 31,
"xCoordinate": 2,
"yCoordinate": 7,
"tileName": "Umulanne",
"elevationNoise": 0.479888,
"moistureNoise": 0.492678,
"temperature": 0.3876119,
"biomeType": "SNOW",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "aebcaf94-c5b1-4760-8de1-eadd6c8e324c",
"id": 32,
"xCoordinate": 2,
"yCoordinate": 8,
"tileName": "Breaspe",
"elevationNoise": 0.592514,
"moistureNoise": 0.278385,
"temperature": 0.5606558,
"biomeType": "SNOW",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "MONSTER_LAIR"
},
{
"persistentID": "9d96cad7-c538-49de-acae-7710a556e2d3",
"id": 33,
"xCoordinate": 2,
"yCoordinate": 9,
"tileName": "Dreocran",
"elevationNoise": 0.3130674,
"moistureNoise": 0.5547216,
"temperature": 0.7554883,
"biomeType": "SNOW",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "e1daa3d6-1d65-4a16-88ac-3eedce32a34c",
"id": 34,
"xCoordinate": 2,
"yCoordinate": 10,
"tileName": "Chiagare",
"elevationNoise": 0.4683015,
"moistureNoise": 0.6582414,
"temperature": 0.8989058,
"biomeType": "SNOW",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "f18962b4-5274-4c96-afdd-0ff9631763f6",
"id": 35,
"xCoordinate": 2,
"yCoordinate": 11,
"tileName": "Zeadala",
"elevationNoise": 0.4685158,
"moistureNoise": 0.1614201,
"temperature": 0.9254782,
"biomeType": "SNOW",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "efbab2b0-af55-44d6-9d64-f7364284838e",
"id": 36,
"xCoordinate": 3,
"yCoordinate": 0,
"tileName": "Meaqupia",
"elevationNoise": 0.2643122,
"moistureNoise": 0.2976874,
"temperature": 0.9046434,
"biomeType": "FOREST",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "6f907ccd-72f7-4069-a149-513e052aa6aa",
"id": 37,
"xCoordinate": 3,
"yCoordinate": 1,
"tileName": "Zeaheah",
"elevationNoise": 0.4888812,
"moistureNoise": 0.5652832,
"temperature": 0.7376602,
"biomeType": "FOREST",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "c8d030b8-7e18-48fd-9edb-2ea84ac00f2e",
"id": 38,
"xCoordinate": 3,
"yCoordinate": 2,
"tileName": "Olalaere",
"elevationNoise": 0.8284727,
"moistureNoise": 0.3930129,
"temperature": 0.5832917,
"biomeType": "FOREST",
"elevationType": "PLAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "InhabitedFeature"
}
],
"landmarkType": "FARM"
},
{
"persistentID": "31c496bf-5b0e-4eee-852c-9e7dabb7535d",
"id": 39,
"xCoordinate": 3,
"yCoordinate": 3,
"tileName": "Jiathear",
"elevationNoise": 0.4386827,
"moistureNoise": 0.5331931,
"temperature": 0.5238712,
"biomeType": "FOREST",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "33fd45af-4da5-448d-a9af-daa5a9fbc553",
"id": 40,
"xCoordinate": 3,
"yCoordinate": 4,
"tileName": "Craecann",
"elevationNoise": 0.3330471,
"moistureNoise": 0.1745111,
"temperature": 0.4924697,
"biomeType": "FOREST",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "4b0e8484-b5a9-43e9-9769-826af36416f2",
"id": 41,
"xCoordinate": 3,
"yCoordinate": 5,
"tileName": "Heota",
"elevationNoise": 0.6337801,
"moistureNoise": 0.6639761,
"temperature": 0.3914532,
"biomeType": "FOREST",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "15a757d1-c29e-40ac-a1d7-790f6d5a421a",
"id": 42,
"xCoordinate": 3,
"yCoordinate": 6,
"tileName": "Crataer",
"elevationNoise": 0.2811819,
"moistureNoise": 0.4088278,
"temperature": 0.2564006,
"biomeType": "SNOW",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "7e85f39d-b990-4868-9006-22c9a1400929",
"id": 43,
"xCoordinate": 3,
"yCoordinate": 7,
"tileName": "Yidrath",
"elevationNoise": 0.3265619,
"moistureNoise": 0.4670336,
"temperature": 0.3737656,
"biomeType": "SNOW",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "6f98dcb5-1350-419f-b071-a69fc565d02e",
"id": 44,
"xCoordinate": 3,
"yCoordinate": 8,
"tileName": "Bleanion",
"elevationNoise": 0.6016488,
"moistureNoise": 0.3387784,
"temperature": 0.5564858,
"biomeType": "SNOW",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "c5e915e7-6f85-4da2-87b8-5b7b2d28e280",
"id": 45,
"xCoordinate": 3,
"yCoordinate": 9,
"tileName": "Vreastia",
"elevationNoise": 0.7590371,
"moistureNoise": 0.8919675,
"temperature": 0.7645704,
"biomeType": "SNOW",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "80e1407a-74b4-4880-a3db-423dc7b7b278",
"id": 46,
"xCoordinate": 3,
"yCoordinate": 10,
"tileName": "Sialiona",
"elevationNoise": 0.5650638,
"moistureNoise": 0.3238794,
"temperature": 0.9112875,
"biomeType": "SNOW",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "6f872a00-8588-4c0b-ae39-6817c5dcf8a3",
"id": 47,
"xCoordinate": 3,
"yCoordinate": 11,
"tileName": "Meappean",
"elevationNoise": 0.4627834,
"moistureNoise": 0.04437688,
"temperature": 0.9306662,
"biomeType": "SNOW",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "4b8b35ac-60c0-4982-95cc-75756c944b7e",
"id": 48,
"xCoordinate": 4,
"yCoordinate": 0,
"tileName": "Meassara",
"elevationNoise": 0.49824,
"moistureNoise": 0.6261605,
"temperature": 0.9728473,
"biomeType": "FOREST",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "98171caf-59df-4366-9a06-ab35a1757d33",
"id": 49,
"xCoordinate": 4,
"yCoordinate": 1,
"tileName": "Zemolas",
"elevationNoise": 0.383231,
"moistureNoise": 0.3575162,
"temperature": 0.8067706,
"biomeType": "FOREST",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "4fda2295-ffe9-4aee-b183-2233f5d63394",
"id": 50,
"xCoordinate": 4,
"yCoordinate": 2,
"tileName": "Cranath",
"elevationNoise": 0.5512944,
"moistureNoise": 0.3127186,
"temperature": 0.6552328,
"biomeType": "FOREST",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "0441668a-5c74-4f49-9c54-cd97e010ebe9",
"id": 51,
"xCoordinate": 4,
"yCoordinate": 3,
"tileName": "Luveann",
"elevationNoise": 0.3351789,
"moistureNoise": 0.1257949,
"temperature": 0.5988451,
"biomeType": "FOREST",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "48c37935-c9b0-4f19-a929-14e9c4952814",
"id": 52,
"xCoordinate": 4,
"yCoordinate": 4,
"tileName": "Slarunia",
"elevationNoise": 0.4731693,
"moistureNoise": 0.6492696,
"temperature": 0.5626472,
"biomeType": "FOREST",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "9dcb9c50-868b-4951-bf8f-175f88fd5d58",
"id": 53,
"xCoordinate": 4,
"yCoordinate": 5,
"tileName": "Eolan",
"elevationNoise": 0.6841772,
"moistureNoise": 0.5783405,
"temperature": 0.4211947,
"biomeType": "FOREST",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "9edf62c6-e895-4dde-970c-edf3c17d3c88",
"id": 54,
"xCoordinate": 4,
"yCoordinate": 6,
"tileName": "Vreahea",
"elevationNoise": 0.4812873,
"moistureNoise": 0.1133458,
"temperature": 0.2270719,
"biomeType": "SNOW",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "00bf6813-b2d6-42b0-8049-fe904b37d23e",
"id": 55,
"xCoordinate": 4,
"yCoordinate": 7,
"tileName": "Tiar",
"elevationNoise": 0.6570056,
"moistureNoise": 0.7302948,
"temperature": 0.3085074,
"biomeType": "SNOW",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "6c61116f-76e7-441e-98a6-616fea4637fb",
"id": 56,
"xCoordinate": 4,
"yCoordinate": 8,
"tileName": "Heacrann",
"elevationNoise": 0.2647724,
"moistureNoise": 0.4900821,
"temperature": 0.4884055,
"biomeType": "SNOW",
"elevationType": "PLAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "InhabitedFeature"
}
],
"landmarkType": "HOUSES"
},
{
"persistentID": "d9bf2487-d2f6-490d-a0ce-445912b068a6",
"id": 57,
"xCoordinate": 4,
"yCoordinate": 9,
"tileName": "Ihoriata",
"elevationNoise": 0.358067,
"moistureNoise": 0.2763199,
"temperature": 0.7074313,
"biomeType": "SNOW",
"elevationType": "PLAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "InhabitedFeature"
}
],
"landmarkType": "HOUSES"
},
{
"persistentID": "47b12331-e8da-4a7e-89d6-8d2dac25d2ef",
"id": 58,
"xCoordinate": 4,
"yCoordinate": 10,
"tileName": "Umunior",
"elevationNoise": 0.161222,
"moistureNoise": 0.7797022,
"temperature": 0.8793964,
"biomeType": "SNOW",
"elevationType": "WATER",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "4d943661-3700-4fc3-9d11-713f892c4199",
"id": 59,
"xCoordinate": 4,
"yCoordinate": 11,
"tileName": "Meagra",
"elevationNoise": 0.3497605,
"moistureNoise": 0.6715687,
"temperature": 0.9223806,
"biomeType": "SNOW",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "902520e5-4daf-40b7-8a3d-5248e08bd73e",
"id": 60,
"xCoordinate": 5,
"yCoordinate": 0,
"tileName": "Zealary",
"elevationNoise": 0.5876434,
"moistureNoise": 0.674933,
"temperature": 1.012624,
"biomeType": "FOREST",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "e3ebc6a9-5485-4928-b0b1-e1674517876c",
"id": 61,
"xCoordinate": 5,
"yCoordinate": 1,
"tileName": "Teacrah",
"elevationNoise": 0.3186364,
"moistureNoise": 0.3054812,
"temperature": 0.8705171,
"biomeType": "FOREST",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "734ecbb0-a55a-459f-b422-699f9c9b988a",
"id": 62,
"xCoordinate": 5,
"yCoordinate": 2,
"tileName": "Abbianial",
"elevationNoise": 0.3804855,
"moistureNoise": 0.7169189,
"temperature": 0.7330697,
"biomeType": "FOREST",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "4e59a588-dd6b-4d2d-8745-2088117b5819",
"id": 63,
"xCoordinate": 5,
"yCoordinate": 3,
"tileName": "Ceagrith",
"elevationNoise": 0.5052365,
"moistureNoise": 0.5018528,
"temperature": 0.6672443,
"biomeType": "FOREST",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "350b6822-9f8f-42b8-99eb-228982ff4b95",
"id": 64,
"xCoordinate": 5,
"yCoordinate": 4,
"tileName": "Sleaheas",
"elevationNoise": 0.3747866,
"moistureNoise": 0.4157717,
"temperature": 0.6104292,
"biomeType": "FOREST",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "a2bfe231-526b-4c9b-a599-4a18bf6d14c0",
"id": 65,
"xCoordinate": 5,
"yCoordinate": 5,
"tileName": "Eossala",
"elevationNoise": 0.4409809,
"moistureNoise": 0.1720673,
"temperature": 0.4391968,
"biomeType": "FOREST",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "4dd08245-3f0a-4d68-abec-ef2112c822b4",
"id": 66,
"xCoordinate": 5,
"yCoordinate": 6,
"tileName": "Padiocia",
"elevationNoise": 0.6933805,
"moistureNoise": 0.5124012,
"temperature": 0.2164804,
"biomeType": "SNOW",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "36b64fd0-b51f-4d4f-9a68-de73432ab73f",
"id": 67,
"xCoordinate": 5,
"yCoordinate": 7,
"tileName": "Acliodory",
"elevationNoise": 0.4463292,
"moistureNoise": 0.3374619,
"temperature": 0.2804282,
"biomeType": "SNOW",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "4ab6d00f-e026-40e4-825a-8d3baf7d0e2a",
"id": 68,
"xCoordinate": 5,
"yCoordinate": 8,
"tileName": "Aclian",
"elevationNoise": 0.569356,
"moistureNoise": 0.3251584,
"temperature": 0.4506724,
"biomeType": "SNOW",
"elevationType": "PLAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "InhabitedFeature"
}
],
"landmarkType": "FARM"
},
{
"persistentID": "59d33c1c-5de4-4be1-81e6-d5bac6dbe24b",
"id": 69,
"xCoordinate": 5,
"yCoordinate": 9,
"tileName": "Sleaqion",
"elevationNoise": 0.4778341,
"moistureNoise": 0.4706777,
"temperature": 0.6674327,
"biomeType": "SNOW",
"elevationType": "PLAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "InhabitedFeature"
}
],
"landmarkType": "LUMBERYARD"
},
{
"persistentID": "386487e8-71e9-4a5b-9c44-dedc25574bd7",
"id": 70,
"xCoordinate": 5,
"yCoordinate": 10,
"tileName": "Jiagania",
"elevationNoise": 0.2529798,
"moistureNoise": 0.5605645,
"temperature": 0.8522308,
"biomeType": "SNOW",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "b91e3951-db79-4a22-abad-602fba30ebbc",
"id": 71,
"xCoordinate": 5,
"yCoordinate": 11,
"tileName": "Pepeamos",
"elevationNoise": 0.4744884,
"moistureNoise": 0.3778245,
"temperature": 0.9140178,
"biomeType": "SNOW",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "94c86508-1c8a-4aff-82b7-2d2e4329f62e",
"id": 72,
"xCoordinate": 6,
"yCoordinate": 0,
"tileName": "Ceassar",
"elevationNoise": 0.4832719,
"moistureNoise": 0.3106038,
"temperature": 0.9826254,
"biomeType": "FOREST",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "7b010258-09f1-4aea-bcda-986482427b0b",
"id": 73,
"xCoordinate": 6,
"yCoordinate": 1,
"tileName": "Slanneth",
"elevationNoise": 0.4040838,
"moistureNoise": 0.5733291,
"temperature": 0.896037,
"biomeType": "FOREST",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "605f6fd6-4097-453c-9894-3948a4141c0e",
"id": 74,
"xCoordinate": 6,
"yCoordinate": 2,
"tileName": "Cisiran",
"elevationNoise": 0.166173,
"moistureNoise": 0.6551482,
"temperature": 0.7877663,
"biomeType": "FOREST",
"elevationType": "WATER",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "d5af818d-1002-405c-8a6f-569d6eeeb17a",
"id": 75,
"xCoordinate": 6,
"yCoordinate": 3,
"tileName": "Ashorea",
"elevationNoise": 0.605462,
"moistureNoise": 0.8159909,
"temperature": 0.6926816,
"biomeType": "FOREST",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "52880e04-f327-4cc7-ba0c-da7f764e1db6",
"id": 76,
"xCoordinate": 6,
"yCoordinate": 4,
"tileName": "Cearelal",
"elevationNoise": 0.6700057,
"moistureNoise": 0.8456329,
"temperature": 0.5932638,
"biomeType": "FOREST",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "1f519da0-3531-4782-bb96-b7dbf6534e24",
"id": 77,
"xCoordinate": 6,
"yCoordinate": 5,
"tileName": "Eolarth",
"elevationNoise": 0.4304041,
"moistureNoise": 0.6445183,
"temperature": 0.4239408,
"biomeType": "FOREST",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "543bcb93-9176-4aee-9432-b8bc5570dad0",
"id": 78,
"xCoordinate": 6,
"yCoordinate": 6,
"tileName": "Ceararel",
"elevationNoise": 0.5601377,
"moistureNoise": 0.3007105,
"temperature": 0.2413927,
"biomeType": "SNOW",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "55e4d5a5-521d-4628-b8d2-8354fd493f87",
"id": 79,
"xCoordinate": 6,
"yCoordinate": 7,
"tileName": "Heocra",
"elevationNoise": 0.6560978,
"moistureNoise": 0.5212684,
"temperature": 0.3295327,
"biomeType": "SNOW",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "6eff47ce-a526-40ac-b3ac-2f9fe6bb9d47",
"id": 80,
"xCoordinate": 6,
"yCoordinate": 8,
"tileName": "Aereaqior",
"elevationNoise": 0.5252017,
"moistureNoise": 0.7759832,
"temperature": 0.4809303,
"biomeType": "SNOW",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "42bfaab6-d183-499c-9752-4a4a4de65903",
"id": 81,
"xCoordinate": 6,
"yCoordinate": 9,
"tileName": "Teagann",
"elevationNoise": 0.6055276,
"moistureNoise": 0.3383292,
"temperature": 0.6718811,
"biomeType": "SNOW",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "e5a0a140-0eb0-45da-9e87-34dc911c53e9",
"id": 82,
"xCoordinate": 6,
"yCoordinate": 10,
"tileName": "Ecean",
"elevationNoise": 0.6835518,
"moistureNoise": 0.3704562,
"temperature": 0.8425391,
"biomeType": "SNOW",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "d643b7a1-34ec-4dde-b59f-2f028c4f1846",
"id": 83,
"xCoordinate": 6,
"yCoordinate": 11,
"tileName": "Aerelond",
"elevationNoise": 0.3899623,
"moistureNoise": 0.3251543,
"temperature": 0.9082181,
"biomeType": "SNOW",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "c9933b5b-c812-447d-ada4-3c9151613bce",
"id": 84,
"xCoordinate": 7,
"yCoordinate": 0,
"tileName": "Olasial",
"elevationNoise": 0.4146376,
"moistureNoise": 0.3698451,
"temperature": 0.9221751,
"biomeType": "DESERT",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "5944d1ab-e4a6-4c54-8465-c0393850a059",
"id": 85,
"xCoordinate": 7,
"yCoordinate": 1,
"tileName": "Greothas",
"elevationNoise": 0.7342054,
"moistureNoise": 0.3493995,
"temperature": 0.8854575,
"biomeType": "DESERT",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "14dc31e6-2abd-44fb-a7a2-8e8c0924c439",
"id": 86,
"xCoordinate": 7,
"yCoordinate": 2,
"tileName": "Bleddea",
"elevationNoise": 0.6247279,
"moistureNoise": 0.339583,
"temperature": 0.7968062,
"biomeType": "DESERT",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "795b0683-220d-4f11-a69e-477bc8491d18",
"id": 87,
"xCoordinate": 7,
"yCoordinate": 3,
"tileName": "Zeasiria",
"elevationNoise": 0.4907601,
"moistureNoise": 0.345842,
"temperature": 0.6613421,
"biomeType": "DESERT",
"elevationType": "PLAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "GameFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "db5f3085-0358-441e-acc2-d37f3d326326",
"id": 88,
"xCoordinate": 7,
"yCoordinate": 4,
"tileName": "Heodorea",
"elevationNoise": 0.5810211,
"moistureNoise": 0.3994846,
"temperature": 0.5140424,
"biomeType": "DESERT",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "fc56188a-e2db-4c4c-9b35-b918ecaba27a",
"id": 89,
"xCoordinate": 7,
"yCoordinate": 5,
"tileName": "Meathean",
"elevationNoise": 0.3252989,
"moistureNoise": 0.5468681,
"temperature": 0.3691155,
"biomeType": "DESERT",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "58e1d4b3-ee2e-44d8-a754-088c97c42646",
"id": 90,
"xCoordinate": 7,
"yCoordinate": 6,
"tileName": "Kriacond",
"elevationNoise": 0.2873968,
"moistureNoise": 0.8094902,
"temperature": 0.2665091,
"biomeType": "GRASSLAND",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "c6d524fc-c948-4619-908b-eb045d98fa87",
"id": 91,
"xCoordinate": 7,
"yCoordinate": 7,
"tileName": "Ihomiare",
"elevationNoise": 0.3145843,
"moistureNoise": 0.6353171,
"temperature": 0.402989,
"biomeType": "GRASSLAND",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "d1dbf68e-ff96-477b-8a6e-1542d89294ad",
"id": 92,
"xCoordinate": 7,
"yCoordinate": 8,
"tileName": "Aerelalis",
"elevationNoise": 0.3814559,
"moistureNoise": 0.2388524,
"temperature": 0.5336508,
"biomeType": "GRASSLAND",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "0b8d45a0-28e8-4c4a-8fb8-2be57e992ba9",
"id": 93,
"xCoordinate": 7,
"yCoordinate": 9,
"tileName": "Olassata",
"elevationNoise": 0.321606,
"moistureNoise": 0.2589687,
"temperature": 0.6909741,
"biomeType": "GRASSLAND",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "acff2d46-2295-485e-bc87-5e2538d29960",
"id": 94,
"xCoordinate": 7,
"yCoordinate": 10,
"tileName": "Krealare",
"elevationNoise": 0.5026155,
"moistureNoise": 0.8633091,
"temperature": 0.8385751,
"biomeType": "GRASSLAND",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "b157a81d-bee0-4675-91ae-ac042a2731fd",
"id": 95,
"xCoordinate": 7,
"yCoordinate": 11,
"tileName": "Iociory",
"elevationNoise": 0.6290658,
"moistureNoise": 0.4839429,
"temperature": 0.9032471,
"biomeType": "GRASSLAND",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "43e4aa33-7b82-47f2-973f-715ffccbd4b3",
"id": 96,
"xCoordinate": 8,
"yCoordinate": 0,
"tileName": "Vreommea",
"elevationNoise": 0.5120466,
"moistureNoise": 0.4996758,
"temperature": 0.8996264,
"biomeType": "DESERT",
"elevationType": "PLAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "FertileFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "b267e0e9-653b-4ca9-8c3b-488aa6bca83c",
"id": 97,
"xCoordinate": 8,
"yCoordinate": 1,
"tileName": "Olarenet",
"elevationNoise": 0.338149,
"moistureNoise": 0.5630141,
"temperature": 0.875302,
"biomeType": "DESERT",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "0e86ff72-746b-4431-9d1c-77358e15ac00",
"id": 98,
"xCoordinate": 8,
"yCoordinate": 2,
"tileName": "Blearian",
"elevationNoise": 0.7612351,
"moistureNoise": 0.46007,
"temperature": 0.7812302,
"biomeType": "DESERT",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "fed5ebdd-8277-46e3-b651-074deb07fabe",
"id": 99,
"xCoordinate": 8,
"yCoordinate": 3,
"tileName": "Zealione",
"elevationNoise": 0.4298888,
"moistureNoise": 0.3685977,
"temperature": 0.6137044,
"biomeType": "DESERT",
"elevationType": "PLAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "StoneSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "3451454f-4922-4fb3-b1d5-02ad98b0ecd5",
"id": 100,
"xCoordinate": 8,
"yCoordinate": 4,
"tileName": "Gruniana",
"elevationNoise": 0.3045771,
"moistureNoise": 0.651238,
"temperature": 0.4351122,
"biomeType": "DESERT",
"elevationType": "PLAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "InhabitedFeature"
}
],
"landmarkType": "HOUSES"
},
{
"persistentID": "d688a228-3256-41dc-af9d-6f06e0a0694e",
"id": 101,
"xCoordinate": 8,
"yCoordinate": 5,
"tileName": "Vreatata",
"elevationNoise": 0.8247213,
"moistureNoise": 0.6416128,
"temperature": 0.306399,
"biomeType": "DESERT",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "67457a84-4cb4-4ab8-ac3d-02a43c3ed86b",
"id": 102,
"xCoordinate": 8,
"yCoordinate": 6,
"tileName": "Funia",
"elevationNoise": 0.4119156,
"moistureNoise": 0.5936293,
"temperature": 0.2564453,
"biomeType": "GRASSLAND",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "27c9842b-bf80-4de2-883d-163f8044e2e1",
"id": 103,
"xCoordinate": 8,
"yCoordinate": 7,
"tileName": "Sleanian",
"elevationNoise": 0.4439413,
"moistureNoise": 0.3698092,
"temperature": 0.424765,
"biomeType": "GRASSLAND",
"elevationType": "PLAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "InhabitedFeature"
}
],
"landmarkType": "HOUSES"
},
{
"persistentID": "789c30f7-de3a-4d6d-b1ac-b9293dd8660b",
"id": 104,
"xCoordinate": 8,
"yCoordinate": 8,
"tileName": "Globedre",
"elevationNoise": 0.5629017,
"moistureNoise": 0.4369596,
"temperature": 0.5419624,
"biomeType": "GRASSLAND",
"elevationType": "PLAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "InhabitedFeature"
}
],
"landmarkType": "FARM"
},
{
"persistentID": "7f6e01ae-8c17-4465-85de-34975dbaa8a9",
"id": 105,
"xCoordinate": 8,
"yCoordinate": 9,
"tileName": "Ialanias",
"elevationNoise": 0.1287995,
"moistureNoise": 0.2121321,
"temperature": 0.6810759,
"biomeType": "GRASSLAND",
"elevationType": "WATER",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "e4a51fdf-82f8-43d3-9005-1f4b83073d35",
"id": 106,
"xCoordinate": 8,
"yCoordinate": 10,
"tileName": "Teah",
"elevationNoise": 0.6760682,
"moistureNoise": 0.8099849,
"temperature": 0.8232433,
"biomeType": "GRASSLAND",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "4270b26b-d4a5-4361-bc56-e8f9f58a6b5d",
"id": 107,
"xCoordinate": 8,
"yCoordinate": 11,
"tileName": "Mealias",
"elevationNoise": 0.4645309,
"moistureNoise": 0.1674276,
"temperature": 0.8966201,
"biomeType": "GRASSLAND",
"elevationType": "PLAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "FertileFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "232337eb-1c11-4166-8756-b2f015c33c5f",
"id": 108,
"xCoordinate": 9,
"yCoordinate": 0,
"tileName": "Dreonath",
"elevationNoise": 0.4259692,
"moistureNoise": 0.4166964,
"temperature": 0.9443443,
"biomeType": "DESERT",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "9da1af2f-1892-4722-b6c2-ba14dffc2cba",
"id": 109,
"xCoordinate": 9,
"yCoordinate": 1,
"tileName": "Choriare",
"elevationNoise": -0.06411402,
"moistureNoise": 0.4667763,
"temperature": 0.8980134,
"biomeType": "DESERT",
"elevationType": "WATER",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "4c63efa2-2ed6-436e-adca-4c7b63bd7fd8",
"id": 110,
"xCoordinate": 9,
"yCoordinate": 2,
"tileName": "Crithias",
"elevationNoise": 0.4284282,
"moistureNoise": 0.3901457,
"temperature": 0.78067,
"biomeType": "DESERT",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "MAGE_TOWER"
},
{
"persistentID": "f15d149f-755a-4939-b90b-0b10dc476f60",
"id": 111,
"xCoordinate": 9,
"yCoordinate": 3,
"tileName": "Mealal",
"elevationNoise": 0.6321887,
"moistureNoise": 0.3442792,
"temperature": 0.5996982,
"biomeType": "DESERT",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "4ab8ab75-4f24-4d4f-9e59-b6f057371db5",
"id": 112,
"xCoordinate": 9,
"yCoordinate": 4,
"tileName": "Ialariar",
"elevationNoise": 0.3344357,
"moistureNoise": 0.5805058,
"temperature": 0.4119069,
"biomeType": "DESERT",
"elevationType": "PLAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "InhabitedFeature"
}
],
"landmarkType": "HOUSES"
},
{
"persistentID": "e907c34d-9a06-49c8-8fe7-bb2b039b9e67",
"id": 113,
"xCoordinate": 9,
"yCoordinate": 5,
"tileName": "Riotare",
"elevationNoise": 0.5007147,
"moistureNoise": 0.4242867,
"temperature": 0.2706307,
"biomeType": "DESERT",
"elevationType": "PLAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "InhabitedFeature"
}
],
"landmarkType": "HOUSES"
},
{
"persistentID": "e0ef9fed-55c7-4d59-944c-3c3d234e2f28",
"id": 114,
"xCoordinate": 9,
"yCoordinate": 6,
"tileName": "Ugragara",
"elevationNoise": 0.1893877,
"moistureNoise": 0.6097991,
"temperature": 0.2090282,
"biomeType": "GRASSLAND",
"elevationType": "WATER",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "55e72323-22b6-4e77-866c-b45f1696ffd2",
"id": 115,
"xCoordinate": 9,
"yCoordinate": 7,
"tileName": "Zeaddira",
"elevationNoise": 0.4463232,
"moistureNoise": 0.4066114,
"temperature": 0.3702196,
"biomeType": "GRASSLAND",
"elevationType": "PLAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "InhabitedFeature"
}
],
"landmarkType": "HOUSES"
},
{
"persistentID": "5805df25-9106-45f6-bd7b-f7002912ec20",
"id": 116,
"xCoordinate": 9,
"yCoordinate": 8,
"tileName": "Zemmel",
"elevationNoise": 0.563912,
"moistureNoise": 0.6381775,
"temperature": 0.4832562,
"biomeType": "GRASSLAND",
"elevationType": "PLAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "InhabitedFeature"
}
],
"landmarkType": "HOUSES"
},
{
"persistentID": "2a086f15-98a2-4cae-9b52-84177e811237",
"id": 117,
"xCoordinate": 9,
"yCoordinate": 9,
"tileName": "Siararth",
"elevationNoise": 0.3408582,
"moistureNoise": 0.5600427,
"temperature": 0.6273667,
"biomeType": "GRASSLAND",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "563b8daa-c04c-477a-aa1d-521bf8c5dfb5",
"id": 118,
"xCoordinate": 9,
"yCoordinate": 10,
"tileName": "Tiatarea",
"elevationNoise": 0.4877041,
"moistureNoise": 0.2830349,
"temperature": 0.7906871,
"biomeType": "GRASSLAND",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "c69cb682-0813-43a8-819b-0b03abaf6bd3",
"id": 119,
"xCoordinate": 9,
"yCoordinate": 11,
"tileName": "Oseocean",
"elevationNoise": 0.4619805,
"moistureNoise": 0.3427097,
"temperature": 0.887466,
"biomeType": "GRASSLAND",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "MONSTER_LAIR"
},
{
"persistentID": "e0e0161b-2249-4672-b55a-7623e16481ec",
"id": 120,
"xCoordinate": 10,
"yCoordinate": 0,
"tileName": "Teatoppe",
"elevationNoise": 0.5832533,
"moistureNoise": 0.5419452,
"temperature": 1.020697,
"biomeType": "DESERT",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "MONSTER_LAIR"
},
{
"persistentID": "8c2d91f5-97a4-4c21-b5b2-69bab9981df1",
"id": 121,
"xCoordinate": 10,
"yCoordinate": 1,
"tileName": "Tiarias",
"elevationNoise": 0.2531154,
"moistureNoise": 0.3857239,
"temperature": 0.9335791,
"biomeType": "DESERT",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "bc160106-58ca-48ac-9f82-9ffd124a8fa1",
"id": 122,
"xCoordinate": 10,
"yCoordinate": 2,
"tileName": "Teagadre",
"elevationNoise": 0.6951735,
"moistureNoise": 0.5588696,
"temperature": 0.7764087,
"biomeType": "DESERT",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "79078923-134f-4547-baef-3c0382cb6797",
"id": 123,
"xCoordinate": 10,
"yCoordinate": 3,
"tileName": "Breocial",
"elevationNoise": 0.3405279,
"moistureNoise": 0.3810335,
"temperature": 0.5824599,
"biomeType": "DESERT",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "324d8bc0-13e1-41de-a55b-9a3dc2616d05",
"id": 124,
"xCoordinate": 10,
"yCoordinate": 4,
"tileName": "Kreodia",
"elevationNoise": 0.3161081,
"moistureNoise": 0.3914419,
"temperature": 0.3911049,
"biomeType": "DESERT",
"elevationType": "PLAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "InhabitedFeature"
}
],
"landmarkType": "HOUSES"
},
{
"persistentID": "1e468460-453a-47b6-9df9-65129252beaf",
"id": 125,
"xCoordinate": 10,
"yCoordinate": 5,
"tileName": "Cealania",
"elevationNoise": 0.689748,
"moistureNoise": 0.6660919,
"temperature": 0.231012,
"biomeType": "DESERT",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "f4ede10b-0baa-4280-93b8-6e6c1868d712",
"id": 126,
"xCoordinate": 10,
"yCoordinate": 6,
"tileName": "Gratha",
"elevationNoise": 0.6514289,
"moistureNoise": 0.5848165,
"temperature": 0.1459271,
"biomeType": "GRASSLAND",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "a0846eaf-8dc3-4bb1-867a-10f811696071",
"id": 127,
"xCoordinate": 10,
"yCoordinate": 7,
"tileName": "Heariana",
"elevationNoise": 0.4484742,
"moistureNoise": 0.3179943,
"temperature": 0.2964567,
"biomeType": "GRASSLAND",
"elevationType": "PLAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "GameFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "d16e1451-daea-4c30-81aa-dcfacf25c330",
"id": 128,
"xCoordinate": 10,
"yCoordinate": 8,
"tileName": "Slaere",
"elevationNoise": 0.5808531,
"moistureNoise": 0.6536968,
"temperature": 0.4126352,
"biomeType": "GRASSLAND",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "6c8e4a7b-e84a-42b5-8309-a807e4fce69a",
"id": 129,
"xCoordinate": 10,
"yCoordinate": 9,
"tileName": "Innethas",
"elevationNoise": 0.5045346,
"moistureNoise": 0.4571537,
"temperature": 0.5640842,
"biomeType": "GRASSLAND",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "06936dbb-ce6f-42a3-87d9-8d0f45b31662",
"id": 130,
"xCoordinate": 10,
"yCoordinate": 10,
"tileName": "Craheren",
"elevationNoise": 0.4153038,
"moistureNoise": 0.5927911,
"temperature": 0.7412219,
"biomeType": "GRASSLAND",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "bd98df2d-ed61-4cb4-aae3-94d182c7eadc",
"id": 131,
"xCoordinate": 10,
"yCoordinate": 11,
"tileName": "Zeaniana",
"elevationNoise": 0.4925681,
"moistureNoise": 0.7617984,
"temperature": 0.8549677,
"biomeType": "GRASSLAND",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "069ecd4b-55c1-476a-8b13-5f57e821293b",
"id": 132,
"xCoordinate": 11,
"yCoordinate": 0,
"tileName": "Yidraere",
"elevationNoise": 0.3284539,
"moistureNoise": 0.6064189,
"temperature": 1.110137,
"biomeType": "DESERT",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "a242f6bd-6691-44a1-9a6b-4196a5b86551",
"id": 133,
"xCoordinate": 11,
"yCoordinate": 1,
"tileName": "Klodiary",
"elevationNoise": 0.7819442,
"moistureNoise": 0.5147905,
"temperature": 0.9664429,
"biomeType": "DESERT",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "4d192c1d-b19d-4f33-b41f-e175d09a7616",
"id": 134,
"xCoordinate": 11,
"yCoordinate": 2,
"tileName": "Riorear",
"elevationNoise": 0.2398191,
"moistureNoise": 0.4082882,
"temperature": 0.7448934,
"biomeType": "DESERT",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "d35090b4-7d22-4ac8-b039-c237cd00ffd6",
"id": 135,
"xCoordinate": 11,
"yCoordinate": 3,
"tileName": "Pepeania",
"elevationNoise": 0.4804266,
"moistureNoise": 0.3016928,
"temperature": 0.5281476,
"biomeType": "DESERT",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "d2bec651-b3c0-4055-9a06-2f48e677feef",
"id": 136,
"xCoordinate": 11,
"yCoordinate": 4,
"tileName": "Heokkel",
"elevationNoise": 0.5158798,
"moistureNoise": 0.5241147,
"temperature": 0.3338627,
"biomeType": "DESERT",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "a24fbd87-cd4d-4d7d-82e4-4cff9c211f70",
"id": 137,
"xCoordinate": 11,
"yCoordinate": 5,
"tileName": "Goglarth",
"elevationNoise": 0.5201451,
"moistureNoise": 0.5217719,
"temperature": 0.1641445,
"biomeType": "DESERT",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "4cd5b138-feea-43ac-8ab9-24baf7268bb0",
"id": 138,
"xCoordinate": 11,
"yCoordinate": 6,
"tileName": "Waedra",
"elevationNoise": 0.3503996,
"moistureNoise": 0.4750569,
"temperature": 0.07920419,
"biomeType": "GRASSLAND",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "637be93c-6f2a-43ba-a17e-30095d4cc73e",
"id": 139,
"xCoordinate": 11,
"yCoordinate": 7,
"tileName": "Teadial",
"elevationNoise": 0.4829575,
"moistureNoise": 0.2041568,
"temperature": 0.2458223,
"biomeType": "GRASSLAND",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "47237500-07fc-4186-9fc3-dac96f6ae14f",
"id": 140,
"xCoordinate": 11,
"yCoordinate": 8,
"tileName": "Sleal",
"elevationNoise": 0.4715257,
"moistureNoise": 0.5340887,
"temperature": 0.3823555,
"biomeType": "GRASSLAND",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "37d8e4c7-b784-4dbc-938e-54882d3685ff",
"id": 141,
"xCoordinate": 11,
"yCoordinate": 9,
"tileName": "Caerelar",
"elevationNoise": 0.5630252,
"moistureNoise": 0.4052567,
"temperature": 0.5286506,
"biomeType": "GRASSLAND",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "ce345415-ee78-4ebf-80b2-beda31237e6c",
"id": 142,
"xCoordinate": 11,
"yCoordinate": 10,
"tileName": "Ugranian",
"elevationNoise": 0.774541,
"moistureNoise": 0.5804536,
"temperature": 0.6711099,
"biomeType": "GRASSLAND",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "b885783b-ebe3-455f-bee9-f05074e970a5",
"id": 143,
"xCoordinate": 11,
"yCoordinate": 11,
"tileName": "Krealana",
"elevationNoise": 0.5688473,
"moistureNoise": 0.6267505,
"temperature": 0.7668926,
"biomeType": "GRASSLAND",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "MAGE_TOWER"
},
{
"persistentID": "a330c4be-4301-4162-808f-0c71df9800fb",
"id": 144,
"xCoordinate": 12,
"yCoordinate": 0,
"tileName": "Hearear",
"elevationNoise": 0.3361138,
"moistureNoise": 0.4114281,
"temperature": 1.149675,
"biomeType": "DESERT",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "70f58dd1-5e97-44ac-8105-97e8c14315e1",
"id": 145,
"xCoordinate": 12,
"yCoordinate": 1,
"tileName": "Chus",
"elevationNoise": 0.8092132,
"moistureNoise": 0.6539139,
"temperature": 0.9842449,
"biomeType": "DESERT",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "0df18b69-ddfc-4bbf-aabf-42c458e5c6de",
"id": 146,
"xCoordinate": 12,
"yCoordinate": 2,
"tileName": "Sleatan",
"elevationNoise": 0.3946709,
"moistureNoise": 0.4652341,
"temperature": 0.7234356,
"biomeType": "DESERT",
"elevationType": "PLAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "StoneSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "6b160995-59f4-4619-b3f5-ddb75b04557a",
"id": 147,
"xCoordinate": 12,
"yCoordinate": 3,
"tileName": "Ceapiar",
"elevationNoise": 0.3404826,
"moistureNoise": 0.457303,
"temperature": 0.4903043,
"biomeType": "DESERT",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "73364a03-fb3a-4ba9-8160-5d16ec41f102",
"id": 148,
"xCoordinate": 12,
"yCoordinate": 4,
"tileName": "Brussus",
"elevationNoise": 0.5155994,
"moistureNoise": 0.7714027,
"temperature": 0.293506,
"biomeType": "DESERT",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "bf397f38-c3a4-4635-92c5-46465ebb5c36",
"id": 149,
"xCoordinate": 12,
"yCoordinate": 5,
"tileName": "Starth",
"elevationNoise": 0.4652666,
"moistureNoise": 0.2240022,
"temperature": 0.1197453,
"biomeType": "DESERT",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "a5203f94-97fa-4131-9a08-9fd94c6971ab",
"id": 150,
"xCoordinate": 12,
"yCoordinate": 6,
"tileName": "Creacone",
"elevationNoise": 0.4289764,
"moistureNoise": 0.5714865,
"temperature": 0.04936492,
"biomeType": "GRASSLAND",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "d367a4a4-c434-4d11-9d96-f453e898e8ad",
"id": 151,
"xCoordinate": 12,
"yCoordinate": 7,
"tileName": "Chiaphea",
"elevationNoise": 0.4669419,
"moistureNoise": 0.5226404,
"temperature": 0.2484337,
"biomeType": "GRASSLAND",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "TEMPLE"
},
{
"persistentID": "a94369bf-32ca-43b0-9f0c-11864b6979c3",
"id": 152,
"xCoordinate": 12,
"yCoordinate": 8,
"tileName": "Cratas",
"elevationNoise": 0.02034025,
"moistureNoise": 0.6037805,
"temperature": 0.415876,
"biomeType": "GRASSLAND",
"elevationType": "WATER",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "b1764140-f9ef-4226-89ff-e28e8506a55f",
"id": 153,
"xCoordinate": 12,
"yCoordinate": 9,
"tileName": "Zeamolal",
"elevationNoise": 0.3680129,
"moistureNoise": 0.472622,
"temperature": 0.5493822,
"biomeType": "GRASSLAND",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "1954a07b-0c2b-401d-9284-120eeafa21e1",
"id": 154,
"xCoordinate": 12,
"yCoordinate": 10,
"tileName": "Slare",
"elevationNoise": 0.5224852,
"moistureNoise": 0.3725432,
"temperature": 0.6274858,
"biomeType": "GRASSLAND",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "c8e96310-49b2-4024-9c9f-cb457c068ac7",
"id": 155,
"xCoordinate": 12,
"yCoordinate": 11,
"tileName": "Jiassara",
"elevationNoise": 0.2895004,
"moistureNoise": 0.5914699,
"temperature": 0.6839481,
"biomeType": "GRASSLAND",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
},
{
"tileFeatureName": "GameFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "32f60311-5cca-493c-803f-340b4bd7f667",
"id": 156,
"xCoordinate": 13,
"yCoordinate": 0,
"tileName": "Sleah",
"elevationNoise": 0.3487507,
"moistureNoise": 0.5121241,
"temperature": 1.117452,
"biomeType": "DESERT",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "THE_PORTAL"
},
{
"persistentID": "779f3132-fe18-46b6-b359-14c4959dc89b",
"id": 157,
"xCoordinate": 13,
"yCoordinate": 1,
"tileName": "Aclisia",
"elevationNoise": 0.5565437,
"moistureNoise": 0.3438556,
"temperature": 0.9875346,
"biomeType": "DESERT",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "5dacce59-878f-4079-a3d1-8bb9639da26d",
"id": 158,
"xCoordinate": 13,
"yCoordinate": 2,
"tileName": "Ialisia",
"elevationNoise": 0.3366646,
"moistureNoise": 0.4889363,
"temperature": 0.7430857,
"biomeType": "DESERT",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "8d8eb09f-8d1e-48be-b6ba-d5e5e3eec17b",
"id": 159,
"xCoordinate": 13,
"yCoordinate": 3,
"tileName": "Iodorim",
"elevationNoise": 0.5665599,
"moistureNoise": 0.5993418,
"temperature": 0.5116362,
"biomeType": "DESERT",
"elevationType": "PLAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "FertileFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "3ea4bf1b-447d-4e7b-b575-5def273ff58d",
"id": 160,
"xCoordinate": 13,
"yCoordinate": 4,
"tileName": "Aereadrel",
"elevationNoise": 0.4361083,
"moistureNoise": 0.561408,
"temperature": 0.3121337,
"biomeType": "DESERT",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "34187174-ad6f-4d3b-b61c-fe559a921b86",
"id": 161,
"xCoordinate": 13,
"yCoordinate": 5,
"tileName": "Blearias",
"elevationNoise": 0.4238231,
"moistureNoise": 0.345931,
"temperature": 0.1308557,
"biomeType": "DESERT",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "58c487be-ad31-4bb1-ae4f-39e33002928b",
"id": 162,
"xCoordinate": 13,
"yCoordinate": 6,
"tileName": "Heotara",
"elevationNoise": 0.6288975,
"moistureNoise": 0.5487521,
"temperature": 0.06603839,
"biomeType": "GRASSLAND",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "f9da905f-1a48-4fc6-9ff0-9635ead9bcd4",
"id": 163,
"xCoordinate": 13,
"yCoordinate": 7,
"tileName": "Vreociar",
"elevationNoise": 0.4460543,
"moistureNoise": 0.3763414,
"temperature": 0.2873304,
"biomeType": "GRASSLAND",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
},
{
"persistentID": "c57e83d8-d0de-49f6-9eb5-408c5310b9f0",
"id": 164,
"xCoordinate": 13,
"yCoordinate": 8,
"tileName": "Meannias",
"elevationNoise": 0.3454039,
"moistureNoise": 0.8504282,
"temperature": 0.479075,
"biomeType": "GRASSLAND",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "d32e061c-d6fb-45df-ba02-023ad8368096",
"id": 165,
"xCoordinate": 13,
"yCoordinate": 9,
"tileName": "Padirian",
"elevationNoise": 0.6131455,
"moistureNoise": 0.5178775,
"temperature": 0.6045623,
"biomeType": "GRASSLAND",
"elevationType": "MOUNTAIN",
"tileFeatureSaveData": [
{
"tileFeatureName": "MetalSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "dfc300ef-a862-4672-a3f8-a72b68fe442d",
"id": 166,
"xCoordinate": 13,
"yCoordinate": 10,
"tileName": "Eachere",
"elevationNoise": 0.3391963,
"moistureNoise": 0.725879,
"temperature": 0.6368657,
"biomeType": "GRASSLAND",
"elevationType": "TREES",
"tileFeatureSaveData": [
{
"tileFeatureName": "WoodSourceFeature"
}
],
"landmarkType": "NONE"
},
{
"persistentID": "2bfdc632-cff1-482e-a7fb-5464835b1c1b",
"id": 167,
"xCoordinate": 13,
"yCoordinate": 11,
"tileName": "Headdion",
"elevationNoise": 0.4684893,
"moistureNoise": 0.2158625,
"temperature": 0.6673545,
"biomeType": "GRASSLAND",
"elevationType": "PLAIN",
"tileFeatureSaveData": [],
"landmarkType": "NONE"
}
]
},
"villageSettlementTemplates": [
{
"hexTiles": [
{
"X": 1,
"Y": 2
},
{
"X": 2,
"Y": 2
},
{
"X": 2,
"Y": 3
},
{
"X": 3,
"Y": 2
}
],
"structureSettings": [
{
"resource": "WOOD",
"structureType": "CITY_CENTER"
},
{
"resource": "WOOD",
"structureType": "DWELLING"
},
{
"resource": "WOOD",
"structureType": "DWELLING"
},
{
"resource": "WOOD",
"structureType": "LUMBERYARD"
},
{
"resource": "WOOD",
"structureType": "DWELLING"
},
{
"resource": "WOOD",
"structureType": "DWELLING"
},
{
"resource": "WOOD",
"structureType": "HOSPICE"
},
{
"resource": "WOOD",
"structureType": "DWELLING"
},
{
"resource": "WOOD",
"structureType": "FARM"
},
{
"resource": "WOOD",
"structureType": "DWELLING"
},
{
"resource": "WOOD",
"structureType": "DWELLING"
},
],
"minimumVillagerCount": 0,
"factionRace": "ELVES",
"settlementType": "Default_Elf"
},
{
"hexTiles": [
{
"X": 8,
"Y": 4
},
{
"X": 9,
"Y": 4
},
{
"X": 9,
"Y": 5
},
{
"X": 10,
"Y": 4
}
],
"structureSettings": [
{
"resource": "STONE",
"structureType": "CITY_CENTER"
},
{
"resource": "STONE",
"structureType": "DWELLING"
},
{
"resource": "STONE",
"structureType": "DWELLING"
},
{
"resource": "STONE",
"structureType": "CEMETERY"
},
{
"resource": "STONE",
"structureType": "DWELLING"
},
{
"resource": "STONE",
"structureType": "MAGE_QUARTERS"
},
{
"resource": "STONE",
"structureType": "DWELLING"
},
{
"resource": "STONE",
"structureType": "DWELLING"
},
{
"resource": "STONE",
"structureType": "MINE_SHACK"
},
{
"resource": "STONE",
"structureType": "DWELLING"
},
{
"resource": "STONE",
"structureType": "DWELLING"
},
],
"minimumVillagerCount": 0,
"factionRace": "HUMANS",
"settlementType": "Default_Human"
},
{
"hexTiles": [
{
"X": 4,
"Y": 8
},
{
"X": 4,
"Y": 9
},
{
"X": 5,
"Y": 8
},
{
"X": 5,
"Y": 9
}
],
"structureSettings": [
{
"resource": "WOOD",
"structureType": "CITY_CENTER"
},
{
"resource": "WOOD",
"structureType": "DWELLING"
},
{
"resource": "WOOD",
"structureType": "DWELLING"
},
{
"resource": "WOOD",
"structureType": "HOSPICE"
},
{
"resource": "WOOD",
"structureType": "DWELLING"
},
{
"resource": "WOOD",
"structureType": "FARM"
},
{
"resource": "WOOD",
"structureType": "DWELLING"
},
{
"resource": "WOOD",
"structureType": "DWELLING"
},
{
"resource": "WOOD",
"structureType": "LUMBERYARD"
},
{
"resource": "WOOD",
"structureType": "DWELLING"
},
{
"resource": "WOOD",
"structureType": "DWELLING"
},
],
"minimumVillagerCount": 0,
"factionRace": "ELVES",
"settlementType": "Default_Elf"
},
{
"hexTiles": [
{
"X": 8,
"Y": 7
},
{
"X": 8,
"Y": 8
},
{
"X": 9,
"Y": 7
},
{
"X": 9,
"Y": 8
}
],
"structureSettings": [
{
"resource": "STONE",
"structureType": "CITY_CENTER"
},
{
"resource": "STONE",
"structureType": "DWELLING"
},
{
"resource": "STONE",
"structureType": "DWELLING"
},
{
"resource": "STONE",
"structureType": "FARM"
},
{
"resource": "STONE",
"structureType": "DWELLING"
},
{
"resource": "STONE",
"structureType": "DWELLING"
},
{
"resource": "STONE",
"structureType": "MINE_SHACK"
},
{
"resource": "STONE",
"structureType": "DWELLING"
},
{
"resource": "STONE",
"structureType": "MAGE_QUARTERS"
},
{
"resource": "STONE",
"structureType": "DWELLING"
},
{
"resource": "STONE",
"structureType": "DWELLING"
},
],
"minimumVillagerCount": 0,
"factionRace": "HUMANS",
"settlementType": "Default_Human"
}
]
} |
26d5949fbe3e7144a37c2ebcb3c20ced3f9944f9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2762/CH10/EX10.4.2/10_4_2.sce | dd3551a3db8ee76043df63a0e0d9a67be53f8912 | [] | 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,213 | sce | 10_4_2.sce | //Transport Processes and Seperation Process Principles
//Chapter 10
//Example 10.4-2
//Stage and continuous Gas-liquid Seperation Processes
//given data from the graph mentioned in the example
yastar=0.052;
xal=0.1;//bulk concn of A in liquid phase
yag=0.38;//bulk concn of A in gas phase
yai=0.197;//concn of A at interface
xai=0.247;//yai=f(xai)
kdy=1.465/1000;//gas phase mass transfer coefficient
kdx=1.967/1000;//liq phase mass transfer coefficient
md=(yai-yastar)/(xai-xal);//graphical correlation
yaim=((1-yai)-(1-yag))/((log((1-yai)/(1-yag)))/log(2.71828183))+1;//graphical correlation
xaim=((1-xal)-(1-xai))/((log((1-xal)/(1-xai)))/log(2.71828183))+1;//graphical correlation
yam=((1-yastar)-(1-yag))/((log((1-yastar)/(1-yag)))/log(2.71828183))+1;//graphical correlation
//(1/(Kdy(1-yam)))=(1/(kdy/(1-yaim)))+(md/(kdx/(1-xaim)))
A=(1/(kdy/(1-yaim)));
B=(md/(kdx/(1-xaim)));
Kdy=((A+B)^(-1))*(1-yam);
R=(A/(A+B))*100;//
Na=(Kdy/(1-yam))*(yastar-yag);
mprintf("overall mass transfer coefficient= %f kg mol/s m2",Kdy)
mprintf(" percentage resistace in gas film= %f percent",R)
mprintf(" percentage resistace in liquid film= %f percent",(100-R))
mprintf(" Flux= %f kg mol/s m2",Na)
|
5842afbaf9b34a5544419db5c39d302bb98673af | 8028c77435920a39892a421fca1e444a5fd9eacc | /apps/fm/test_and_ground/asist/image/FMRENAMESTRESS.TST | 07beb1af338d9aa75cec8d62761acca5c5cc30dc | [
"NASA-1.3"
] | permissive | WindhoverLabs/airliner | fc2b2d59c73efc8f63c6fb8b3c4e00c5fddcc7c7 | 2ab9c8717e0a42d40b0d014a22dbcc1ed7ec0eb1 | refs/heads/integration | 2023-08-04T06:01:53.480641 | 2023-07-31T03:22:06 | 2023-07-31T03:22:06 | 332,887,132 | 9 | 2 | null | 2023-07-31T02:58:48 | 2021-01-25T21:21:52 | C | UTF-8 | Scilab | false | false | 1,279 | tst | FMRENAMESTRESS.TST | This is the test file for the fm_filerename_stress test
Garbage to follow...
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
KHAKJFSHSH SAFKHASKJNJfnkjasf nahjlfsNJl Ffakfnanmalksfkla
|
135d5133ddd98f1266c29f32dea11f88369af128 | 97135f725c599527ba0fd95a5289373c755daf3b | /Examples/test-suite/scilab/allowexcept_runme.sci | eda7415b4d4d2ca6afa4fbacc682c74a3686206a | [] | no_license | maqalaqil/swag-c- | b8880cfc92424d5bbca1fe15ed98663a41063f27 | 6fd1ba2bf1d353f24c116a3c89a8540292b86a7d | refs/heads/master | 2020-07-06T21:02:08.949652 | 2019-09-01T07:56:55 | 2019-09-01T07:56:55 | 203,137,066 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 85 | sci | allowexcept_runme.sci | exec("alaqiltest.start", -1);
// TODO: add tests here
exec("alaqiltest.quit", -1);
|
f835640568cdeddd9282dabab5e7b4d7b71d8d96 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2360/CH3/EX3.12/ex3_12.sce | 8543f792874f04bee0ab3b3d2b48a7b21a7ac958 | [] | 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 | 323 | sce | ex3_12.sce | // Exa 3.12
format('v',7);clc;clear;close;
// Given data
Im = 50;//current in µA
Im = Im * 10^-6;// in A
S = 1/Im;// in ohm/V
V = 500;// in V
Rm = 200;//internal resistance in ohm
Rs = (S*V) - Rm;//multiplier resistance in ohm
Rs = Rs * 10^-6;// in Mohm
disp(Rs,"The value of multiplier resistance in MΩ is");
|
e214f11d8f6399d560b3d128b7c6d2fca9a1cc0b | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set6/s_Electric_Machines_-_I_M._Verma_And_V._Ahuja_695.zip/Electric_Machines_-_I_M._Verma_And_V._Ahuja_695/CH3/EX3.30/Ex3_30.sce | e775ba45fa740047e2af71dbce6b575f30c12602 | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 519 | sce | Ex3_30.sce | errcatch(-1,"stop");mode(2);//Caption:Find the Efficiency and voltage regulation of transformer
//Exa:3.30
;
;
P_i=100;//in watts
V2=400;//in volts
P_sc=200;//in watts
I_2=11.4;//in amperes
R_O2=P_sc/I_2^2;//in ohms
KVA=5;
I_2fl=KVA*1000/V2;
P_cu=I_2fl^2*R_O2;
pf=0.9;
Eff=KVA*1000*pf/(KVA*1000*pf+P_cu+P_i);
disp(Eff*100,'Efficiency (in %)=');
V_2sc=40;//in volts
Z_O2=V_2sc/I_2;
X_O2=sqrt(Z_O2^2-R_O2^2);
VR=I_2fl*(R_O2*pf+X_O2*sqrt(1-pf^2))/V2;
disp(VR*100,'Voltage Regulation (in %)=')
exit();
|
3d72b2d461e5db47e985ae82b20c5814cb1f7700 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2438/CH1/EX1.15/Ex1_15.sce | 43fd937ddafbe3b3ed2ee34dc361b3c76b2f3033 | [] | 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 | 708 | sce | Ex1_15.sce | //=======================================================================
// Chapter 1 example 15
clc;
clear;
// input data
d = 3.84 *10^-10; //spacing between planes in m
theta = 45; //glancing angle in degrees
m = 1.67*10^-27; //mass ef electron
h = 6.62*10^-34; // planck's constant
n = 1; //braggg reflextion
v = 5.41*10^-10;
//calculation
//lamda = 2*d*(1/sqrt(2));
lamda = h/(m*v);
//result
mprintf('wavelength of neutron =%3.2e m\n',lamda);
mprintf(' Note:calculation mistake in text book in calculating wavelength ')
//========================================================================
|
497149b7a2d31e87173891bb9c4810bd21cd4d86 | 449d555969bfd7befe906877abab098c6e63a0e8 | /45/CH10/EX10.9/example_10_9.sce | d59245d489823fe898387b03045213d86d98c335 | [] | 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,470 | sce | example_10_9.sce | //example 10.9
clc;
clear;
close;
c = [0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0]; //taking the values for a mod -6 counter
q = [0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0];
a = [0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0];
b = [0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 1 1 1 1 0];
y1=q;
y2=a;
y3=b;
y11p=1;
y22p=1;
y33p=1;
y44p=1;
cp=1;
yf1p=1;
for i=1:25 // making arrays to draw the output
if y1(i)==1 then
for o=1:100
y11(y11p)=1;
y11p=y11p+1;
end
else
for o=1:100
y11(y11p)=0;
y11p=y11p+1;
end
end
if y2(i)==1 then
for o=1:100
y21(y22p)=1;
y22p=y22p+1;
end
else
for o=1:100
y21(y22p)=0;
y22p=y22p+1;
end
end
if y3(i)==1 then
for o=1:100
y31(y33p)=1;
y33p=y33p+1;
end
else
for o=1:100
y31(y33p)=0;
y33p=y33p+1;
end
end
if c(i)==1 then
for o=1:100
c1(cp)=1;
cp=cp+1;
end
else
for o=1:100
c1(cp)=0;
cp=cp+1;
end
end
end
z=[2 2];
subplot(4,1,1); //ploting the out put
title('Timing Diagram');
plot(c1);
plot(z);
ylabel('C');
subplot(4,1,2);
plot(y11);
ylabel('Q');
plot(z);
subplot(4,1,3);
plot(y21);
ylabel('A');
plot(z);
subplot(4,1,4);
plot(z);
ylabel('B');
plot(y31);
|
c8ce292d2049e083ada6ba191bca7ce1bad6bc46 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2795/CH12/EX12.2/Ex12_02.sce | 88c38cd6473a5c1ea5423162feaf797c78e2d6fa | [] | 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,326 | sce | Ex12_02.sce | // Scilab Code Ex12.2: Page-436 (2014)
clc; clear;
c = 3.00e+008; // Speed of light, m/s
e = 1.602e-019; // Energy equivalent of 1 eV, J
m_e = 0.511; // Rest mass energy of electron, MeV
m_p = 938.3; // Rest mass energy of proton, MeV
h = 6.62e-034; // Planck's constant, Js
A = 40; // Mass number of Ca-40
r0 = 1.2; // Nuclear radius constant, fm
R = r0*A^(1/3); // Radius of Ca-40 nucleus, fm
printf("\nThe radius of Ca-40 nucleus = %3.1f fm", R);
lambda = 2.0; // de-Broglie wavelength to distinguish a distance at least half the radius, fm
// Electron energy
E = ceil(sqrt(m_e^2+(h*c/(lambda*e*1e+006*1e-015))^2)); // Total energy of the probing electron, MeV
K = E - m_e; // Kinetic energy of probing electron, MeV
printf("\nThe kinetic energy of probing electron = %3d MeV", ceil(K));
// Proton energy
E = ceil(sqrt(m_p^2+(h*c/(lambda*e*1e+006*1e-015))^2)); // Total energy of the probing electron, MeV
K = E - m_p; // Kinetic energy of probing electron, MeV
printf("\nThe kinetic energy of probing proton = %3d MeV", ceil(K));
// Result
//The radius of Ca-40 nucleus = 4.1 fm
// The kinetic energy of probing electron = 620 MeV
// The kinetic energy of probing proton = 187 MeV
// The answers are deviated due to the approximations used in the textbook |
524fe00270d5ce42c1ee604303fe26abc9e11f72 | 717ddeb7e700373742c617a95e25a2376565112c | /839/CH22/EX22.6/Example_22_6.sce | 326e3f8e9ca979385cb977d406056763bd74813f | [] | 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,584 | sce | Example_22_6.sce | //clear//
clear;
clc;
//Example 22.6
//Solution
rho_m = 62.2/18; //[mol/ft^3]
//kya = 0.025*Gy^0.7*Gx^0.25
H2ObySO2 = 2*0.98964/0.01036;
//and
xb = 1/(H2ObySO2+1);
//The molal mass velocity of the feed gas Gm is
Gm_in = 200/29*(1/0.8); //[mol/ft^2-h]
SO2_in = Gm_in*0.2; //[mol/ft^2-h]
Air_in = Gm_in*0.8; //[mol/ft^2-h]
Air_out = Air_in; //[mol/ft^2-h]
SO2_out = Air_out*(0.005/(1-0.005)); //[mol/ft^2-h]
SO2_abs = SO2_in-SO2_out; //[mol/ft^2-h]
H2O_in = H2ObySO2*SO2_abs; //[mol/ft^2-h]
//Operating line
x = 0:6;
x = x/10^3;
A = x./(1-x);
B = H2O_in/Air_in*A+(0.005/0.995);
y = B./(B+1);
plot(x,y)
xgrid();
xlabel('x');
ylabel('y');
//legend('20C','30C','40C');
title('x vs y');
Gxbar = H2O_in*18.02+SO2_abs*64.1/2; //[lb/ft^2-h]
kxa = 0.131*Gxbar^0.82; //[mol/ft^3-h]
//The gas film coefficients are calculated for the bottom
//and the top of the tower:
//At bottom:
Gy_B = (Air_in*29)+(SO2_in*64.1); //[lb/ft^2-h]
kya_B = 0.025*Gy_B^0.7*Gx^0.25; //[mol/ft^3-h]
//At top:
Gy_T = (Air_out*29)+(SO2_out*64.1); //[lb/ft^2-h]
kya_T = 0.025*Gy_T^0.7*Gx^0.25; //[mol/ft^3-h]
//Assuming
yLbar = 0.82
C = kxa*yLbar/kya_B;
//a line from (yb,xb) with a slope of -C, gives
yi = 0.164;
yLbar = 0.818;
m = 20.1
Kya_prime = 1/(yLbar/kya_B+m/kxa); //[mol/ft^3-h]
//The fraction of the total resistance that is in the liquid is
Rf = m/kxa/(1/Kya_prime);
//For different values of y1
y1 =[0.2,0.15,0.1,0.05,0.02,0.005]';
delta_y1 = [0.103,0.084,0.062,0.034,0.015,0.005]';
y1i = [0.164,0.118,0.074,0.034,0.012,0.002]';
delta_yi = y1-y1i;
|
a2a66b338a16d896b7687cc17d0da5dcac25a1f5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2360/CH2/EX2.17/ex2_17.sce | 7672c0352c4d27a571bf0fbd5ac3c05e8c046086 | [] | 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_17.sce | // Exa 2.17
format('v',7);clc;clear;close;
// Given data
// Values of resistances
R1 = 36;// in ohm
R2 = 75;// in ohm
R_T = (R1*R2)/(R1+R2);// in ohm
// Error in resistance
e1 = 5;// in %
e_1 = e1+e1;// in % assumed
e2 = ( ((R1/(R1+R2))*e1) + ((R2/(R1+R2))*e1) );// in %
e_T = e_1+e2;//limiting error in %
// Per_e_T= del_R_T/R_T*100;
del_R_T= e_T*R_T/100;//limiting error in Ω
disp("The limiting error (in percentage) is : ± "+string(e_T)+" %")
disp("The limiting error (in ohm) is : ± "+string(del_R_T)+" Ω")
|
e7bc2d005f9a2bd2a48876e9b019fcfb1d950440 | 449d555969bfd7befe906877abab098c6e63a0e8 | /278/CH8/EX8.1/ex_8_1.sce | 42b9b3ac497110930a6e9ae7f68957a51228d843 | [] | 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,499 | sce | ex_8_1.sce |
clc
//solution
//given
di=200//mm
ri=100//mm
t=50//mm
p=5//N/mm^2
ro=ri+t//mm
//f=[p*(ri)^2]*[1+ro^2/x^2]*[1/(ro^2-ri^2)]
//x is radius at which stress is found out
//f=4*[1+(ro^2/(x^2))]//N/mm^2//tangential stress at distance x
f1=4*[1+(150^2/(100^2))]//N/mm^2
f2=4*[1+(150^2/(110^2))]//N/mm^2
f3=4*[1+(150^2/(120^2))]//N/mm^2
f4=4*[1+(150^2/(130^2))]//N/mm^2
f5=4*[1+(150^2/(140^2))]//N/mm^2
f6=4*[1+(150^2/(150^2))]//N/mm^2
//f=4*[1-(ro^2/(x^2))]//radial stress at distance x
r1=4*[1-(150^2/(100^2))]//N/mm^2
r2=4*[1-(150^2/(110^2))]//N/mm^2
r3=4*[1-(150^2/(120^2))]//N/mm^2
r4=4*[1-(150^2/(130^2))]//N/mm^2
r5=4*[1-(150^2/(140^2))]//N/mm^2
r6=4*[1-(150^2/(150^2))]//N/mm^2
printf("the tangential stress at distance x=100mm is,%f N/mm^2\n",f1)
printf("the tangential stress at distance x=110mm is,%f N/mm^2\n",f2)
printf("the tangential stress at distance x=120mm is,%f N/mm^2\n",f3)
printf("the tangential stress at distance x=130mm is,%f N/mm^2\n",f4)
printf("the tangential stress at distance x=140mm is,%f N/mm^2\n",f5)
printf("the tangential stress at distance x=150mm is,%f N/mm^2\n",f6)
printf("the radial stress at distance x=100mm is,%f N/mm^2\n ",r1)
printf("the radial stress at distance x=110mm is,%f N/mm^2\n ",r2)
printf("the radial stress at distance x=120mm is,%f N/mm^2\n ",r3)
printf("the radial stress at distance x=130mm is,%f N/mm^2\n ",r4)
printf("the radial stress at distance x=140mm is,%f N/mm^2\n ",r5)
printf("the radial stress at distance x=150mm is,%f N/mm^2\n ",r6) |
45865549603d42ad9a22d6b39c7d45880726774d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1076/CH12/EX12.10/12_10.sce | 5fa8598b51c3df2330a1ba70a5d7e0f9e9fa4a5a | [] | 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 | 914 | sce | 12_10.sce | clear;
clc;
ef=10000;
Zc=400;
iF=ef/Zc
mprintf("\n(a)\nIncident Wave magnitude= %d A",iF)
R=1000
et=ef*(R*2)/(R+Zc);
it=et/R;
er=et-ef;
mprintf("\n(b)\nSurge Voltage Reflected= %.3f KV",er/1000)
ir=-1*er/Zc
mprintf("\nSurge Current Reflected= %.3f A",ir)
edr=et*it;
mprintf("\nRate of dissipation of energy= %.2f KW",edr/1000)
err=er*-ir;
mprintf("\nRate of reflection of energy= %.3f KW",err/1000)
mprintf("\n(c)\nfor complete dissipation, R=Zc= %.0f ohm",Zc);
R=50
et=ef*(R*2)/(R+Zc);
mprintf("\n(d)\nSurge Voltage Transmitted= %.3f KV",et/1000)
it=et/R;
mprintf("\nSurge Current Transmitted= %.2f A",it)
er=et-ef;
mprintf("\nSurge Voltage Reflected= %.3f kV",er/1000)
ir=-1*er/Zc
mprintf("\nSurge Current Reflected= %.3f A",ir)
edr=et*it;
mprintf("\nRate of dissipation of energy= %.2f KW",edr/1000)
err=er*-ir;
mprintf("\nRate of reflection of energy= %.2f KW",err/1000)
|
84094c9265daa70c9912715e309c5b8e074a623a | 6b85d1958ff11075634ed9e0f6dbef2de9548f1b | /ANN_Toolbox/demos/enc838_m.sci | 6213c12a4d750b5272c6f6a877684ddb3856882b | [
"Unlicense"
] | permissive | ademarazn/REDES_NEURAIS | 8a048c13aab33daa4068f52e18b263cc8325884f | a9a35744476d1f7e8405df04d5e4a9f8e4ed4595 | refs/heads/master | 2021-05-06T13:09:56.514632 | 2018-04-25T18:49:30 | 2018-04-25T18:49:30 | 113,248,743 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 829 | sci | enc838_m.sci | // Tight 8-3-8 encoder
// on a backpropagation ANN with biases and momentum
rand('seed',0);
// network def.
// - neurons per layer, including input
N = [8,3,8];
// inputs
x = [1,0,0,0,0,0,0,0;
0,1,0,0,0,0,0,0;
0,0,1,0,0,0,0,0;
0,0,0,1,0,0,0,0;
0,0,0,0,1,0,0,0;
0,0,0,0,0,1,0,0;
0,0,0,0,0,0,1,0;
0,0,0,0,0,0,0,1]';
// targets, at training stage is acts as identity network
t = x;
// learning parameter
lp = [1.5, 0.07, 0.8, 0.1];
// init randomize weights between:
r = [-10,15];
rb = r;
W = ann_FF_init(N,r,rb);
Delta_W_old = hypermat(size(W)');
// 500 epochs are enough to ilustrate
T = 500;
[W,Delta_W_old] = ann_FF_Mom_online(x,t,N,W,lp,T,Delta_W_old);
// full run
ann_FF_run(x,N,W)
// encoder
encoder = ann_FF_run(x,N,W,[2,2])
// decoder
decoder = ann_FF_run(encoder,N,W,[3,3])
|
03a6c2f3c905c93901b5375e642b34e8e6e2296c | 475a9e3173cbf116c786e8a60b1323f29f10a134 | /ampmod.sci | 104d4591f0081497dc782df334e99e47c95ab7e3 | [] | no_license | jatinmandav/Sci-Lab-Implementations | bee5e375735ca0ebee9fd7afa69ddddbdadb5e3c | d1f65da040022b785763fe74d4b49468dc6078f3 | refs/heads/master | 2020-03-10T06:35:07.107772 | 2018-04-12T19:13:37 | 2018-04-12T19:13:37 | 129,242,875 | 4 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 887 | sci | ampmod.sci | /*
* By: Jatin Kumar Mandav
*
* Amplitude Modulation
*
* Inputs: Amplitude of Carrier Wave, Frequency of Carrier Wave
* Amplitude of Message Wave, Frequency of Message Wave
* Sampling Frequency or Sampling/sec
*
*/
function [] = amp_mod(amp_carrier, freq_carrier, amp_message, freq_message, sampling_freq)
t = 0:1/sampling_freq:2
message_signal = amp_message*sin(2*%pi*freq_message*t)
carrier_signal = amp_carrier*sin(2*%pi*freq_carrier*t)
modulated_signal = (amp_carrier + message_signal).*(carrier_signal/amp_carrier)
subplot(3, 1, 1)
plot(message_signal)
title("Message Signal")
subplot(3, 1, 2)
plot(carrier_signal)
title("Carrier Signal")
subplot(3, 1, 3)
plot(modulated_signal)
title("Amplitude Modulated Signal")
endfunction
|
eae073eae5a0b69df9edddc4362c51c506ce3af5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /896/CH2/EX2.3/3.sce | 1c289941b8ddc4612caa28697a527c42129dfb18 | [] | 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 | 374 | sce | 3.sce | clc
//gauge pressure=(density)*(acc. due to gravity)*(depth)
rho_oil=55;//lbm/ft^3
g=32.2;//ft/s^2
d=60;//ft (depth of oil cylinder)
gauge_pressure=rho_oil*g*d/32.2;//lbf/ft^2
disp("Gauge pressure is")
disp(gauge_pressure)
disp("lbf/ft^2")
//1 ft=12 in
gauge_pressure=gauge_pressure/144;//lbf/in^2
disp("Gauge pressure is")
disp(gauge_pressure)
disp("lbf/in^2") |
b5b37d6ac8dea07e9e6ba7338d36df9faa91ea4f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3638/CH13/EX13.4/Ex13_4.sce | a003023f1e8526f74ed23e29d8ea1cd5e9498e8f | [] | 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 | 688 | sce | Ex13_4.sce | //Introduction to Fiber Optics by A. Ghatak and K. Thyagarajan, Cambridge, New Delhi, 1999
//Example 13.4
//OS=Windows XP sp3
//Scilab version 5.5.2
clc;
clear;
//given
Rl=500;//Value of load resistor Rl in Ohms
kB=1.38e-23;//Boltzmann constant in SI Units
Deltaf=100e6;//Bandwidth of detection in Hz
T=300;//Temperature in K
//Let the root mean square shot noise current be Ins
Ins=sqrt(4*kB*T*Deltaf/Rl);//As the root mean square shot noise current is the square root of mean square shot noise current in A
mprintf("\n The rms shot noise current = %.2e A",Ins);
mprintf("\n The mean square shot noise current = %.2e A^2",Ins^2)//The answers vary due to round off error
|
2d1f44e7b4a48fa70ce8a052888ca439aadbeb6f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2282/CH3/EX3.10/ex3_10.sce | 7b90b7f6da42ed2fbb06a8731ac53fae87d6095d | [] | 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 | 353 | sce | ex3_10.sce | // Example 3.9, page no-98
clear
clc
//IntelSat-VI location= 37 W
// IntelSat-VII location=74 E
theta=37+74 // angular separation between two satellites
D=42164 //circular equilateral geostationary orbit in km
k=cosd(theta)
//printf("%f\n",k)
k=-0.357952
d=sqrt(2*D^2*(1-k))
printf("Inter-satellite distance is %.2f km",d)
|
19f624d57675baffde3f84dadb2f405e3b42222b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2969/CH6/EX6.3/Ex6_3.sce | a8bde58d912f3c39ebee0ebaf4c9fc0f872c5050 | [] | 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 | 821 | sce | Ex6_3.sce | clc
clear
//DATA GIVEN
Mc=1250; //quantity of coal in kg consumed in 24 hours
Mw=13000; //mass of water evaporated in kg
MEPs=7; //mean effective pressure of steam in bar
Tfw=40; //feed water temp. in deg celsius
h=2570.7; //enthalpy of steam at 7 bar in kJ/kg
C=30000; //calorific value of coal in kJ/kg
Ma=Mw/Mc; //mass of water actually evaporated per kg of fuel
hf1=4.18*(Tfw-0);
hfg=2257; //in kJ/kg
Me=Ma*(h-hf1)/hfg; //in kg
eta=Ma*(h-hf1)/C; //boiler efficiency
printf(' (i) The equivalent evaporation per kg of coal, Me is: %5.3f kg. \n',Me);
printf(' (ii) The efficiency of boiler, eta is: %1.3f or %2.1f percent. ',eta,eta*100);
|
ce5fe1ce5432313c6cd2f6d97d842a50d8b94ee5 | 7ca4d14804b833145ecf38070ff4e4b399cf4bfb | /tst/prio.sce | ad4a1b39836a862ef9dabffc0dc20a91aeb4b548 | [] | no_license | gsz050769/jsqsce | 6154e5d9fcd5b7884df7463963b982d26ba57942 | eb6881fa08ec6f8eea3355d689f3be91afd7bbfe | refs/heads/master | 2023-08-21T06:30:18.493109 | 2021-10-21T13:23:27 | 2021-10-21T13:23:27 | 343,663,868 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,886 | sce | prio.sce | // Commands, syntax:
// STATUS: = get status message
// S_MSG: = setMsg <sip_id>|<a_msg_id>|<prio>|<ttl>|text|
// S_MSG_FILE: = setMsg <sip_id>|<a_msg_id>|<file>| setMsg from <file>
// D_MSG: = delMsg <sip_id>|<a_msg_id>
// POS_BLE: = ble position req <sip_id>
// POS_BLE: = dect position req <sip_id>
// WAIT: = sleep <seconds>
// RESTART: = start script again
// END: = end scenrio here
// LOG: = free text for console log outputput <text>
+++++++++++++++++++++++++++
LOG: prio test cases start
LOG: a) create messages prio 9 ... 1
LOG: b) delete reverse direction 1 ..9
+++++++++++++++++++++++++++
WAIT: 1
+++++++++++++++++++++++++++
LOG:determine api status
+++++++++++++++++++++++++++
STATUS:
WAIT: 2
+++++++++++++++++++++++++++
LOG:delete message
+++++++++++++++++++++++++++
D_MSG:4021|4021_1|
WAIT: 1
D_MSG:4021|4021_2|
WAIT: 1
D_MSG:4021|4021_3|
WAIT: 1
D_MSG:4021|4021_4|
WAIT: 1
D_MSG:4021|4021_5|
WAIT: 1
D_MSG:4021|4021_6|
WAIT: 1
D_MSG:4021|4021_7|
WAIT: 1
D_MSG:4021|4021_8|
WAIT: 1
D_MSG:4021|4021_9|
WAIT: 1
D_MSG:4021|4021_10|
WAIT: 2
+++++++++++++++++++++++++++
LOG:new prio 9 text=coffee message for 4021 mel high
+++++++++++++++++++++++++++
S_MSG_FILE:4021|4021_1|./tst/msg/tst_14.json|
+++++++++++++++++++++++++++
WAIT: 15
+++++++++++++++++++++++++++
LOG:new prio 8 text=coffee message for 4021 mel high
+++++++++++++++++++++++++++
S_MSG_FILE:4021|4021_2|./tst/msg/tst_13.json|
+++++++++++++++++++++++++++
WAIT: 15
+++++++++++++++++++++++++++
LOG:new prio 7 text=coffee message for 4021 mel high
+++++++++++++++++++++++++++
S_MSG_FILE:4021|4021_3|./tst/msg/tst_12.json|
+++++++++++++++++++++++++++
WAIT: 15
+++++++++++++++++++++++++++
LOG:new prio 6 text=coffee message for 4021 mel high
+++++++++++++++++++++++++++
S_MSG_FILE:4021|4021_4|./tst/msg/tst_11.json|
+++++++++++++++++++++++++++
WAIT: 15
+++++++++++++++++++++++++++
LOG:new prio 5 text=coffee message for 4021 mel high
+++++++++++++++++++++++++++
S_MSG_FILE:4021|4021_5|./tst/msg/tst_10.json|
+++++++++++++++++++++++++++
WAIT: 15
+++++++++++++++++++++++++++
LOG:new prio 4 text=coffee message for 4021 mel high
+++++++++++++++++++++++++++
S_MSG_FILE:4021|4021_6|./tst/msg/tst_9.json|
+++++++++++++++++++++++++++
WAIT: 15
+++++++++++++++++++++++++++
LOG:new prio 3 text=coffee message for 4021 mel high
+++++++++++++++++++++++++++
S_MSG_FILE:4021|4021_7|./tst/msg/tst_8.json|
+++++++++++++++++++++++++++
WAIT: 15
+++++++++++++++++++++++++++
LOG:new prio 2 text=coffee message for 4021 mel high
+++++++++++++++++++++++++++
S_MSG_FILE:4021|4021_8|./tst/msg/tst_7.json|
+++++++++++++++++++++++++++
WAIT: 15
+++++++++++++++++++++++++++
LOG:new prio 1 text=coffee message for 4021 mel high
+++++++++++++++++++++++++++
S_MSG_FILE:4021|4021_9|./tst/msg/tst_6.json|
+++++++++++++++++++++++++++
WAIT: 15
+++++++++++++++++++++++++++
LOG:del message prio 1
+++++++++++++++++++++++++++
D_MSG:4021|4021_9|
WAIT: 15
+++++++++++++++++++++++++++
LOG:del message prio 2
+++++++++++++++++++++++++++
D_MSG:4021|4021_8|
WAIT: 15
+++++++++++++++++++++++++++
LOG:del message prio 3
+++++++++++++++++++++++++++
D_MSG:4021|4021_7|
WAIT: 15
+++++++++++++++++++++++++++
LOG:del message prio 4
+++++++++++++++++++++++++++
D_MSG:4021|4021_6|
WAIT: 15
+++++++++++++++++++++++++++
LOG:del message prio 5
+++++++++++++++++++++++++++
D_MSG:4021|4021_5|
WAIT: 15
+++++++++++++++++++++++++++
LOG:del message prio 6
+++++++++++++++++++++++++++
D_MSG:4021|4021_4|
WAIT: 15
+++++++++++++++++++++++++++
LOG:del message prio 7
+++++++++++++++++++++++++++
D_MSG:4021|4021_3|
WAIT: 15
+++++++++++++++++++++++++++
LOG:del message prio 8
+++++++++++++++++++++++++++
D_MSG:4021|4021_2|
WAIT: 15
+++++++++++++++++++++++++++
LOG:del message prio 9
+++++++++++++++++++++++++++
D_MSG:4021|4021_1|
WAIT: 15
+++++++++++++++++++++++++++
LOG:end test case prios
+++++++++++++++++++++++++++
END:
|
e279d96d35fb66f8e9bb305e73f361c0f5d212d1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2015/CH8/EX8.5/8_5.sce | c7c5e961bd349fc61246022f8153c46567f8acda | [] | 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 | 572 | sce | 8_5.sce | clc
//initialisation of variables
h1=176.48 //under -25 degrees temp in kj/kg
s1=0.7127 //under -25 degrees temp in kj/kgk
h2=215.17 //under 58 degrees temp in kj/kg
h3=79.71 //under 45 degrees temp in kj/kg
h4=79.71 //under 45 degrees temp in kj/kg
no=20 // number of tons
//CALCULATIONS
w=h2-h1
re=h1-h4
cop=re/w
ha=no*3.5164
cr=ha/re
pr=cr*w
//RESULTS
printf('the refrigeration effect is %2fkj/kg',re)
printf('\ncoefficient of performance is %2f',cop)
printf('\npower required is %2fkw',pr)
printf('\ncirculating rate of refrigerant is %2fkg/s',cr)
|
6b87ef4f99ca3e9b7e3e02b16f2128e8d1380eff | a5f0fbcba032f945a9ee629716f6487647cafd5f | /Machine_Learning/demos/Class rebalancing_Demo.sce | 2585f76734dfe78b5c5d3f8a5fe3f244e8305f04 | [
"BSD-2-Clause"
] | permissive | SoumitraAgarwal/Scilab-gsoc | 692c00e3fb7a5faf65082e6c23765620f4ecdf35 | 678e8f80c8a03ef0b9f4c1173bdda7f3e16d716f | refs/heads/master | 2021-04-15T17:55:48.334164 | 2018-08-07T13:43:26 | 2018-08-07T13:43:26 | 126,500,126 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 317 | sce | Class rebalancing_Demo.sce | // Demo script for median
getd('../macros')
// Data preparation
M = csvRead('Datasets/titanic.csv')
x = M(:, [6, 8]);
y = M(:, 2)
y(or(isnan(x),'c'),:) = []
x(or(isnan(x),'c'),:) = []
disp(tabul(y))
[xnew, ynew] = rebalanceOver(x, y);
disp(tabul(ynew))
[xnew, ynew] = rebalanceCluster(x, y, 3);
disp(tabul(ynew)) |
c6a92c45303977fa9d09cf5993fbb381edb3231f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1439/CH6/EX6.3/6_3.sce | b62b93bb023669e718531bca642a36f3296f60cf | [] | 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 | 231 | sce | 6_3.sce | clc
//initialisation of variables
T= 0 //C
H= 79.7 //cal g^-1
vd= -9.06*10^-5 //l g^-1
R= 0.04129 //l-atm cal^-1
//CALCULATIONS
r= H*R/((273.15+T)*vd)
//RESULTS
printf ('change in pressure per degree= %.f atm deg^-1',r)
|
5c3acc8440d55d1989ef39a9684cd539599a7ffb | 5c3c77ebd04dfec23026ec2f7fe0be63be48176b | /Guassian_elimination.sce | c230a06f174679dee9de4bdb8dfe5aef902c4949 | [] | no_license | Jagadish-Rathod/Scilab-Assignment1 | 89248a09ac71d59bb3845d778f53f06f6827d54c | 9b3a9cfda12dff0842c1b1f6e4d816d2360b18ce | refs/heads/master | 2020-12-31T10:23:06.391194 | 2020-04-09T14:43:41 | 2020-04-09T14:43:41 | 238,998,568 | 0 | 2 | null | 2020-03-30T16:46:49 | 2020-02-07T18:38:11 | Scilab | UTF-8 | Scilab | false | false | 964 | sce | Guassian_elimination.sce | // example for Guassian Elimination method:
clc
funcprot(0)
format('v',10)
A = input("Enter the coefficient matrix[NxN]: ")
b = input("Enter the constant matrix[Nx1]: ")
function [x] = gaussianelimination(A,b)
//base condition
[n,n1] = size(A);
[m1,p] = size(b);
if n~= n1 then
error('for gaussian_elimination Matrix A must be square')
abort;
elseif n~= m1
error('Incompatible Dimensions of A and b');
abort;
end
aug = [A b];
n = length(b)
for j=1:n-1
for i=j+1:n
aug(i,j:n+1) = aug(i,j:n+1) - aug(i,j)/aug(j,j)*aug(j,j:n+1)
end
end
x = zeros(n,1)
x(n) = aug(n,n+1)/aug(n,n);
for i=n-1:-1:1
x(i) = (aug(i,n+1) - aug(i,i+1:n)*x(i+1:n))/aug(i,i);
end
disp('The values of x , y, z are --> ')
endfunction
|
caa7c1d576b91fca030f0302c12a0ce916f774bf | 527c41bcbfe7e4743e0e8897b058eaaf206558c7 | /Positive_Negative_test/Netezza-Base-DateFunctions/FLDateToInt-NZ-01.tst | b15fa417e9d66fe881432bf39b67a66dbb870ab6 | [] | no_license | kamleshm/intern_fuzzy | c2dd079bf08bede6bca79af898036d7a538ab4e2 | aaef3c9dc9edf3759ef0b981597746d411d05d34 | refs/heads/master | 2021-01-23T06:25:46.162332 | 2017-07-12T07:12:25 | 2017-07-12T07:12:25 | 93,021,923 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,841 | tst | FLDateToInt-NZ-01.tst | -- Fuzzy Logix, LLC: Functional Testing Script for DB Lytix functions on Teradata
--
-- Copyright (c): 2014 Fuzzy Logix, LLC
--
-- NOTICE: All information contained herein is, and remains the property of Fuzzy Logix, LLC.
-- The intellectual and technical concepts contained herein are proprietary to Fuzzy Logix, LLC.
-- and may be covered by U.S. and Foreign Patents, patents in process, and are protected by trade
-- secret or copyright law. Dissemination of this information or reproduction of this material is
-- strictly forbidden unless prior written permission is obtained from Fuzzy Logix, LLC.
-- Functional Test Specifications:
--
-- Test Category: Date Functions
--
-- Test Unit Number: FLDateToInt-TD-01
--
-- Name(s): FLDateToInt
--
-- Description: Scalar function converts DATE to a number of days since 1990/01/01
--
-- Applications:
--
-- Signature: FLDateToInt(pDate DATE)
--
-- Parameters: See Documentation
--
-- Return value: INTEGER
--
-- Last Updated: 01-29-2014
--
-- Author: <Zhi.Wang@fuzzyl.com>
--
-- BEGIN: TEST SCRIPT
-- .run file=../PulsarLogOn.sql
-- .set width 2500
-- set session dateform = ANSIDATE;
SELECT COUNT(*) AS CNT,
CASE WHEN CNT = 0 THEN ' Please Load Test Data!!! ' ELSE ' Test Data Loaded ' END AS TestOutcome
FROM tblTestDate a;
-- BEGIN: POSITIVE TEST(s)
---- Positive Test 1: Manual Example
--- Same Output, Good
SELECT a.ObsID,
a.DateIN1,
FLDateToInt(a.DateIN1) FLDateToInt
FROM tblTestDate a
ORDER BY 1;
---- Positive Test 2: Test for lower bound of Input DateTS
SELECT Date '0001-01-01' AS DateIN1,
FLDateToInt(DateIN1) FLDateToInt;
---- Positive Test 3: Test for upper bound of Input DateTS
SELECT Date '9999-12-31' AS DateIN1,
FLDateToInt(DateIN1) FLDateToInt;
---- Positive Test 4: Test for turn of Input DateTS
SELECT Date '1990-01-01' AS DateIN1,
FLDateToInt(DateIN1) FLDateToInt;
---- Positive Test 5:
SELECT SUM(b.DiffErr) AS Err, CASE WHEN Err = 0 THEN 'Date-FT-FLDateToInt-Netezza-01: PASSED' ELSE 'Date-FT-FLDateToInt-Netezza-01: FAILED' END AS Msg
FROM
(
SELECT a.DateIN1,
FLDateToInt(a.DateIN1) AS FLDateToInt,
a.DateIN1 - Date('1990-01-01') AS TDDateToInt,
CASE WHEN FLDateToInt = TDDateToInt THEN 0 ELSE 1 END AS DiffErr
FROM tblTestDate a
) AS b;
-- END: POSITIVE TEST(s)
-- BEGIN: NEGATIVE TEST(s)
---- Negative Test 1: Invalid Input For Date
--- Return expected error msg, Good
SELECT a.ObsID,
a.DateIN1,
FLDateToInt(a.DateTS1) AS FLDateToInt
FROM tblTestDate a
ORDER BY 1;
SELECT a.ObsID,
a.DateTS1,
FLDateToInt(NULL) AS FLDateToInt
FROM tblTestDate a
ORDER BY 1;
SELECT FLDateToInt('2010') AS FLDateToInt;
-- END: NEGATIVE TEST(s)
-- END: TEST SCRIPT
|
d6cd921df141eb56eecfd10964f32fcdef5a2771 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1394/CH8/EX8.5.4/Ex8_5_4.sce | 2ec89501c7c420929f496ff8f7265c386b812c4e | [] | 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 | 683 | sce | Ex8_5_4.sce |
clc
//initialization of variables
H1 = 75 // henrys constant for ammonia in atm
H2 = 41000 // henrys constant for methane in atm
p = 2.2 // pressure in atm
kya = 18 // product of m.t.c and packing area per tower volume in lb-mol/hr-ft^3
kxa = 530 //product of m.t.c and packing area per tower volume in lb-mol/hr-ft^3
//calcuations
Kya1 = 1/((1/kya) + (H1/p)/kxa) //The overall coefficient for ammonia in lb-mol/hr-ft^3
Kya2 = 1/((1/kya) + (H2/p)/kxa) //The overall coefficient for methane in lb-mol/hr-ft^3
//Results
printf("The overall coefficient for ammonia is %.1f lb-mol/hr-ft^3",Kya1)
printf("\n The overall coefficient for methane is %.2f lb-mol/hr-ft^3",Kya2)
|
78752b9e0f8561078e102495bd919802036fc64d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3754/CH14/EX14.12/14_12.sce | b23370a59395ddd3e7c70a2afc3878414113f8df | [] | 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 | 576 | sce | 14_12.sce | clear//
//Variables
alpha = 0.98 //common base current gain
ICO = 5 * 10**-3 //Leakage current (in milli-Ampere)
IB = 100 * 10**-3 //Base current (in milli-Ampere)
//Calculation
IC = (alpha * IB + ICO)/ (1 - alpha) //Collector current (in milli-Ampere)
IE = IC + IB //Emitter current (in milli-Ampere)
//Result
printf("\n Value of collector current is %0.3f mA.\nValue of emitter current is %0.3f mA.",IC,IE)
|
a17f122d417caff0736c72669f5c3d8acd5bfebd | 449d555969bfd7befe906877abab098c6e63a0e8 | /3718/CH13/EX13.13/Ex13_13.sce | ced9eafecbbb95568e82be5b5bde09208fba4a7c | [] | 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 | 640 | sce | Ex13_13.sce | //Chapter 13: Fuel and Combustions
//Problem: 13
clc;
//Declaration of Variables
C = 81 // %
H = 8 // %
N = 2 // %
O = 5 // %
// Solution
mprintf("In 1kg coal,\n")
wt_C = C * 10
wt_H = H * 10
wt_N = N * 10
wt_O = O * 10
wt_ash = 100 - (wt_O + wt_N + wt_H + wt_C)
wt_a = ((wt_C * 32 / 12. + wt_H * 16 / 2. - wt_O) * 100 / 23.) / 1000.
mprintf(" Weight of air required for complete combustion of 10kg coal = %.2f kg\n",wt_a * 10)
HCV = 1 / 100. * (8080 * C + 34500 * (H - O / 8.))
LCV = HCV - 0.09 * H * 587
mprintf(" HCV is %d kcal/kg\n",HCV)
mprintf(" LCV is %d kcal/kg\n",LCV)
|
400517c2c08a56e8738eeee3a6c62d50af7bf7e6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1187/CH11/EX11.3/3.sce | a17acd6c773a0b3ca14c4364891d3d5575f50eb1 | [] | 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 | 216 | sce | 3.sce | clc
M1=1.8;
theta1=20.73; // degrees
theta2=30.73; // degrees
M2=2.162;
p1=50; // kPa
y=1.4;
p2=p1*((1+(y-1)/2*M1^2)/(1+(y-1)/2*M2^2))^(y/(y-1));
disp("Pressure after the bend =")
disp(p2)
disp("kPa") |
4b09878a5ea02e2bcf93766be39769df178b9322 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2699/CH13/EX13.71/Ex13_71.sce | 4406869b4a5255edfd3e2dbcbacf4bf31fde29d4 | [] | 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,874 | sce | Ex13_71.sce | //EX13_71 Pg-13.43
clc
clear
printf(" Decimal subtraction in 8-4-2-1 BCD using 9''s complement method")
printf("\n\n 79-26 = 53 =")
//given decimal number
x=79;
y=26;
//we separate each of the digit in the decimal number
x1=7; x2=9;
y1=2; y2=6;
//first we take 9's complement of the second number
// ie 2 and 6
y1=9-y1 //9's complement of y1
y2=9-y2 //9's complement of y2
//then we add each of the digit of the number together
//ie x1+y1 and x2+y2
z1=x1+y1; z2=x2+y2;
//if z2>9(=1001 in binary) then we should add
//6(=0110 in binary) to z2 and add the carry to z1
if (z2>9) then
z2=z2+6;
m=bitget(z2,5)
if (m==1) then
z1=z1+m
z2=bitset(z2,5,0)
end
end
//again if z1>9(=1001 in binary) then we should add the
//6(=0110 in binary) to z1 and add the carry to z2
if (z1>9) then
z1=z1+6;
m=bitget(z1,5)
if (m==1) then
z2=z2+m
z1=bitset(z1,5,0)
end
end
//decimal to binary conversion
z3=dec2bin(z1)
z4=dec2bin(z2)
printf(" 0%s 00%s ",z3,z4)
printf("\n\n 89-54 = 35 =")
//given decimal number
x=89;
y=54;
//we separate each of the digit in the decimal number
x1=8; x2=9;
y1=5; y2=4;
//first we take 9's complement of the second number
// ie 2 and 6
y1=9-y1 //9's complement of y1
y2=9-y2 //9's complement of y2
//then we add each of the digit of the number together
//ie x1+y1 and x2+y2
z1=x1+y1; z2=x2+y2;
//if z2>9(=1001 in binary) then we should add
//6(=0110 in binary) to z2 and add the carry to z1
if (z2>9) then
z2=z2+6;
m=bitget(z2,5)
if (m==1) then
z1=z1+m
z2=bitset(z2,5,0)
end
end
//again if z1>9(=1001 in binary) then we should add the
//6(=0110 in binary) to z1 and add the carry to z2
if (z1>9) then
z1=z1+6;
m=bitget(z1,5)
if (m==1) then
z2=z2+m
z1=bitset(z1,5,0)
end
end
//decimal to binary conversion
z3=dec2bin(z1)
z4=dec2bin(z2)
printf(" 00%s 0%s ",z3,z4)
|
9da74aac53599d9cc025f7da36cf6cdde2018f06 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3480/CH8/EX8.2/Ex8_2.sce | fc2ff9b222778bb884014d3276b386b00f9769d3 | [] | 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,612 | sce | Ex8_2.sce | //Example 8.2
clc
r1=15//in cm
r2=-15 //in cm
d=3//in cm
n=1//in cm
n1=1.62500//in cm
n2=1//in cm
for h = 2:2:7 //the calculations for h=0 is 0, the textbook ans is wrong
sin_ph=h/r1
sin_ph1=(sin_ph)*(n/n1)
ph= asind(sin_ph)
ph_1=asind(sin_ph1)
theta=ph_1-ph
angle=r1*(sin_ph/sin(theta))
s1=sin_ph/sin(theta)
s2=d-s1
sin_ph2=(1+(s2/r2))*sin(theta)
sin_ph3=(sin_ph2)*(n1/n2)
ph_2=asind((1+(s2/r2))*sin(theta))
ph_3=asind((sin_ph2)*(n1/n2))
theta1=ph_3+theta-ph_2
angle1=r2*(sin_ph3/sin(theta))
printf("\n \n")
printf("\n For h=%d, sin_ph=%f ",h,sin_ph)
printf("\n \n")
printf("\n For h=%d, sin_ph1=%f ",h,sin_ph1)
printf("\n \n")
printf("\n \n")
printf("\n For h=%d, ph=%f ",h,ph)
printf("\n \n")
printf("\n For h=%d, ph_1=%f ",h,ph_1)
printf("\n \n")
printf("\n For h=%d, theta=%f ",h,theta)
printf("\n \n")
printf("\n For h=%d, angle=%f ",h,angle)
printf("\n \n")
printf("\n For h=%d, s2=%f ",h,s2)
printf("\n \n")
printf("\n For h=%d, sin_ph2=%f ",h,sin_ph2)
printf("\n \n")
printf("\n For h=%d, sin_ph3=%f ",h,sin_ph3)
printf("\n \n")
printf("\n \n")
printf("\n For h=%d, ph_2=%f ",h,ph_2)
printf("\n \n")
printf("\n For h=%d, ph_3=%f ",h,ph_3)
printf("\n \n")
printf("\n For h=%d, theta1=%f ",h,theta1)
printf("\n \n")
printf("\n For h=%d, angle1=%f ",h,angle1)
end
|
a2efc9da267ccf26fc3f9b80ccdb3d7612616eba | 9cb37875b74a713c93c09fa50ccc70ac0f71ecdb | /CostHriFunction/Justin/SCNARIOS_PRESENTATION/Justin_ICRA_tmp.sce | 25322980aa5fb0be343a0b17a8fdf7cac9611540 | [] | no_license | jmainpri/move3d-assets | a5b621daaedaaf8784fed0da1e80d029c83f3983 | 939db49d17a14e052bb58324b70e6112803d3105 | refs/heads/master | 2021-01-16T17:48:56.669119 | 2016-02-16T14:04:09 | 2016-02-16T14:04:09 | 20,237,987 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 6,592 | sce | Justin_ICRA_tmp.sce | #************************************************************
# Scenario of Ikea
#
# date : Thu Aug 23 16:11:25 2012
#************************************************************
p3d_sel_desc_name P3D_ENV Ikea
p3d_sel_desc_name P3D_ROBOT HUMAN_ACHILE
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.600000 -1.630000 0.760000 -0.060000 0.830000 59.620000 0.000000 0.000000 14.540000 -30.350000 9.770000 7.740000 25.700000 22.460000 24.390000 98.000000 34.110000 -148.270000 -8.210000 -76.970000 30.000000 -4.790000 -34.400000 0.000000 -100.420000 0.000000 4.320000 -80.930000 8.000000 84.360000 0.000000 0.000000 0.000000 4.760000 -83.140000 -0.210000 94.570000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT JUSTIN_ROBOT
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.020000 -0.440000 -53.460000 -50.040000 -5.210000 64.550000 -59.340000 -1.327433 3.871682 -45.000000 -94.000000 -50.000000 115.000000 2.000000 14.000000 40.000000 76.518418 -92.143554 -80.340000 32.254157 99.896771 -10.951267 0.189110 0.783198 -0.719509 1.010585 39.769628 1.155261 -119.466998 0.649215 -1.699076 1.108827 19.781196 -3.989486 140.637340
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.020000 -0.440000 -53.460000 6.170000 -8.760000 69.782708 -61.022708 -1.327433 3.871682 -45.000000 -94.000000 -50.000000 115.000000 2.000000 14.000000 40.000000 16.384129 -108.538328 17.335817 67.811943 -3.786142 -1.941572 38.796726 1.111057 -0.781904 1.000693 23.800492 32.870845 -69.953339 1.921458 -1.077431 0.926239 14.450283 8.030738 -163.832093
p3d_constraint p3d_kuka_arm_ik 6 10 11 13 14 15 16 1 29 0 3 12 1 3
p3d_constraint p3d_kuka_arm_ik 6 18 19 21 22 23 24 1 30 0 3 20 -1 1
p3d_set_cntrt_Tatt 1 -0.982797 0.018403 -0.183754 -0.036039 -0.003530 0.992963 0.118341 -0.346482 0.184640 0.116955 -0.975819 -0.017708
p3d_constraint p3d_fixed_jnt 1 29 0 6 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0
p3d_constraint p3d_min_max_dofs 0 2 4 3 2 0.000000 135.000000 0
p3d_constraint p3d_lin_rel_dofs 1 5 2 3 4 3 -1.000000 -1.000000 0.000000 0
p3d_constraint p3d_fixed_jnt 1 1 0 3 1.020000 -0.440000 -53.460000 0
p3d_constraint p3d_fixed_jnt 1 7 0 1 -1.327433 0
p3d_constraint p3d_fixed_jnt 1 8 0 1 3.871682 0
p3d_constraint p3d_fixed_jnt 1 10 0 1 -45.000000 0
p3d_constraint p3d_fixed_jnt 1 11 0 1 -94.000000 0
p3d_constraint p3d_fixed_jnt 1 12 0 1 -50.000000 0
p3d_constraint p3d_fixed_jnt 1 13 0 1 115.000000 0
p3d_constraint p3d_fixed_jnt 1 14 0 1 2.000000 0
p3d_constraint p3d_fixed_jnt 1 15 0 1 14.000000 0
p3d_constraint p3d_fixed_jnt 1 16 0 1 40.000000 0
p3d_constraint p3d_fix_jnts_relpos 1 29 1 16 0 0
p3d_constraint p3d_fix_jnts_relpos 1 30 1 24 0 0
p3d_set_cntrt_Tatt 16 -0.982795 -0.003528 0.184639 -0.033370 0.018406 0.992963 0.116959 0.346768 -0.183752 0.118344 -0.975820 0.017099
p3d_set_object_base_and_arm_constraints 29 1 0 2 0 1
p3d_set_arm_data 0 3 29
p3d_set_arm_data 1 3 30
p3d_sel_desc_name P3D_ROBOT Lampe
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.260000 -1.150000 0.770000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT Assiette
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.020000 -1.470000 0.787611 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT Pommes
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.442478 -1.622419 0.762537 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT Verre
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT Tabouret
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -0.360000 0.220000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT sailLamp1
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.060000 -0.690000 2.950000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT sailLamp2
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.060000 -0.390000 2.950000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT sailLamp3
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.060000 -0.090000 2.950000 0.000000 0.000000 -19.300000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_camera_pos 0.961468 -1.161210 1.106093 2.700105 5.283810 0.785000 0.000000 0.000000 1.000000 0.000000
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.