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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
efce6d9e073882523aef5d665c87d07b9c1cae20 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2702/CH6/EX6.12/Ex_6_12.sce | ab997c503aa1ed1a64561316d99c5f4d29d2ddc8 | [] | 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 | 448 | sce | Ex_6_12.sce | // Exa 6.12
clc;
clear;
close;
// Given data
L= 50;// in µH
L= L*10^-6;// in H
C1= 300;// in pF
C1= C1*10^-12;// in F
C2= 100;// in pF
C2= C2*10^-12;// in F
C_eq= C1*C2/(C1+C2);// in F
f= 1/(2*%pi*sqrt(L*C_eq));// in Hz
disp(f*10^-6,"Frequency of oscillations in MHz is : ")
Bita= C2/C1;
// (iii)
// A*Bita >=1, so A*Bita= 1 (for sustained oscillations)
Amin= 1/Bita;
disp(Amin,"Minimum gain to substain oscillations is : ")
|
4b44caed63998c27bb4c7fa3aa0693f03b685715 | 07b24003442d27bad5942901ac61406505e95f60 | /AP187_act7_nonparamseg.sce | 0add9f817a5a1d45d64df8e88a7e884f62db94e4 | [] | no_license | jbadelino/Applied-Physics-186-Activity-7 | 3b957ca1470215faa7a8694bb4b78084b584080e | e81d4af1d5dfad95a4c32753de4c63d29cfda6bf | refs/heads/master | 2020-08-08T13:07:08.149399 | 2019-10-09T06:24:46 | 2019-10-09T06:24:46 | 213,837,511 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,402 | sce | AP187_act7_nonparamseg.sce | stacksize("max");
img = double(imread('C:\Users\Asus\Documents\Applied Physics 186\act 7\cancer.jpg'));
R = img(:,:,1);
G = img(:,:,2);
B = img(:,:,3);
//chromaticity coordinates
I = R+G+B;
I(find(I==0))=100000;
r = R./I; //red NCC
g = G./I;//green NCC
b = B./I; //blue NCC
//ROI
ROI = double(imread('C:\Users\Asus\Documents\Applied Physics 186\act 7\cancerROI.jpg'))
R_ROI = ROI(:,:,1); //red component
G_ROI = ROI(:,:,2); //green component
B_ROI = ROI(:,:,3); // blue component
I_ROI = R_ROI + G_ROI + B_ROI;
I_ROI(find(I_ROI==0))=100000;
r_ROI = R_ROI./I_ROI; //red NCC
g_ROI = G_ROI./I_ROI;//green NCC
//histogram
BINS = 32;
r_int = round(r_ROI*(BINS-1)+1);
g_int = round(g_ROI*(BINS-1)+1);
colors = g_int(:) + (r_int(:)-1)*BINS;
hist = zeros(BINS, BINS);
for row = 1:BINS
for col = 1:(BINS-row+1)
hist(row,col) = length(find(colors == (((col+(row-1)*BINS)))));
end;
end;
imwrite(hist,'C:\Users\Asus\Documents\Applied Physics 186\act 7\hist_cancer.jpg' )
//backprojection
imsize = size(img);
NPS_ROI = zeros(imsize(1), imsize(2));
for i=1:imsize(1)
for j=1:imsize(2)
r_new = round(r(i,j)*(BINS-1) +1);
g_new = round(g(i,j)*(BINS-1) +1);
NPS_ROI(i,j) = hist(r_new, g_new);
end;
end;
imshow(NPS_ROI);
imwrite(NPS_ROI, 'C:\Users\Asus\Documents\Applied Physics 186\act 7\cancerNPS.jpg' )
|
d07308000bb84f20f10d82a31d02cd37c67e488f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3761/CH4/EX4.7/Ex4_7.sce | b3c7233534b25c4f9536d6c697b4c7cd47485881 | [] | 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,816 | sce | Ex4_7.sce | disp("Example 4.7")
disp("M20 Grade of concrete and Fe250steel","sigmast=130MPa","Sigmacbc=7 MPa","dd = 50mm","d=550mm","b=300mm","Given:")
b=300
d=550
dd=50 //Mentioning the top cover d' as dd throughout the example
sigmacbc=7
sigmast=130
disp("Transformed Section Properties")
m=13.33 //(280/(3*sigmacbc))
disp("Neutral Axis Depth, here in this case k=kb, corresponding to balanced section")
disp("For a balanced (WSM) section, kb= 280/(280+3*sigmast)")
kb=280/(280+(3*sigmast))
disp(kb,"kb=")
kbd=kb*d
disp("mm",kbd,"kb d=")
disp("Considering moments of areas about the neutral axis,")
disp("b*kb d^2/2 + CSA*(kb d-dd) = mAst*(d-kb d)")
disp("On replacing values stated above we get equation as : Ast = (0.8Asc + 1856)mm^2")
disp("Asc is to be determined using equation 4.39 as stated")
disp("M= Cc(d-kb d/3)+Cs(d-dd)")
disp("Cc=0.5*fc*b*(kb.d)")
disp("Cs=(1.5*m-1)*Asc*fc*((kd-dd)/kd)")
M=175*10^6
fc=7
Cc=0.5*fc*b*(kbd)
Cs1=(1.5*m-1)*fc*((kbd-dd)/kbd)
Asc=(M-(Cc*(d-kbd/3)))/(Cs1*(d-dd))
disp("mm^2",Asc,"Therefore, Asc=")
Ast=(0.8*Asc+1856)
disp("mm^2", Ast,"Therefore, Ast=")
disp("Alternate Solution to Example 4.7")
disp("Calculating Mwb=0.5*kb*(1-kb/3)*sigmacbc*b*d*d")
Mwb=0.5*kb*(1-kb/3)*sigmacbc*b*d*d/10^6
disp("kNm",Mwb,"Mwb=")
disp("Calculating Ast1=Mwb/(sigmast*d*(1-kb/3)")
Ast1=(Mwb*10^6)/(sigmast*d*(1-kb/3))
disp("mm^2",Ast1,"Ast1=")
disp("Calculating Ast2, Ast2= (M-Mwb)/(sigmast*(d-dd))")
Ast2= (M-Mwb*10^6)/(sigmast*(d-dd))
disp("mm^2",Ast2,"Ast2=")
disp("Therefore, Ast= Ast1+Ast2")
Astf=Ast1+Ast2
disp("mm^2",Astf,"Therefore, final Ast=")
disp("Calculating fcsc=sigmacbc*(1-dd/kbd)")
fcsc=sigmacbc*(1-dd/kbd)
disp(fcsc)
disp("Calculating Asc=(M-Mwb)/(1.5*m-1)*fcsc*(d-dd)")
Asc=(M-Mwb*10^6)/((1.5*m-1)*fcsc*(d-dd))
disp("mm^2",Asc,"Asc=")
|
779ee27121255fc8aa84b4d311d1801394055c17 | 449d555969bfd7befe906877abab098c6e63a0e8 | /70/CH1/EX1.5.1/1_5_1.sci | f702bbf129f87b2b018dc4b6a31f9f8096c74122 | [] | 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 | 163 | sci | 1_5_1.sci | //page 34
clear;
close;
clc;
A=[1 2;3 8];
disp(A,'A=')
[L,U]=lu(A);
disp(L,'L=');
disp(U,'U=')
disp('LU=')
disp(L*U)
disp('This shows that LU=A')
//end |
2443c3a1708f6135a4faf395bb30bd847b4fa9f1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1133/CH5/EX5.29/Example5_29.sce | 6e68a977d790965fe40de7a62d8e196ad8cf400f | [] | 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 | Example5_29.sce | //Example 5.29
clc
disp("BCD-to-common anode 7-segment decoder")
disp("Digit A B C D a b c d e f g")
disp(" 0 0 0 0 0 0 0 0 0 0 0 1")
disp(" 1 0 0 0 1 1 0 0 1 1 1 1")
disp(" 2 0 0 1 0 0 0 1 0 0 1 0")
disp(" 3 0 0 1 1 0 0 0 0 1 1 0")
disp(" 4 0 1 0 0 1 0 0 0 1 1 0")
disp(" 5 0 1 0 1 0 1 0 0 1 0 0")
disp(" 6 0 1 1 0 0 1 0 0 0 0 0")
disp(" 7 0 1 1 1 0 0 0 1 1 1 1")
disp(" 8 1 0 0 0 0 0 0 0 0 0 0")
disp(" 9 1 0 0 1 0 0 0 0 1 0 0")
|
f758b904c5e451ca19e3db4a903117dd38cfafa0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3648/CH19/EX19.4/Ex19_4.sce | 9c2fc8c919eaefac64e08a1de706e42959017aac | [] | 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 | 123 | sce | Ex19_4.sce | //Example 19_4
clc();
clear;
//To Calculate the value of selfinductance
printf("The Self Inductance is L=Uo*n^2*D*A")
|
d5666740bbde5081b2621f15350481e2644376e6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2096/CH7/EX7.21/ex_7_21.sce | 40ef30e5c388043fe3a2141f61e8dd83629ca108 | [] | 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 | 930 | sce | ex_7_21.sce |
// Example 7.21 : principle strains , principal stess ,maximum shreat stress and location of principle planes
clc, clear
// given :
e1=60; // in microstrain
e2=48; // in microstrain
e3=-12; // in microstrain
E=200*10^9; // in N/m^2
mu=0.3;
e_max=((e1+e3)/2)+(1/sqrt(2))*sqrt((e1-e2)^2+(e2-e3)^2);
e_min=((e1+e3)/2)-(1/sqrt(2))*sqrt((e1-e2)^2+(e2-e3)^2);
a_max=E*(e1+e3)/(2*(1-mu))+((E/(sqrt(2)*(1+mu)))*sqrt((e1-e2)^2+(e2-e3)^2));
a_min=E*(e1+e3)/(2*(1-mu))-((E/(sqrt(2)*(1+mu)))*sqrt((e1-e2)^2+(e2-e3)^2));
tau_max=(E/(sqrt(2)*(1+mu)))*sqrt((e1-e2)^2+(e2-e3)^2);
A=atand((2*e2-e1-e3)/(e1-e3));
B=A/2;
disp(e_max*10^-6,"principle strain (e_max)")
disp(e_min*10^-6,"principle strain (e_min)")
disp(a_max*10^-12,"principle stresses (a_max) in MN/m^2")
disp(a_min*10^-12,"principle stresses (a_min)in MN/m^2")
disp(tau_max*10^-12,"maximm shear stress (tau_max) in MN/m^2")
disp(B,"location of the princinple planes (B) in degree")
|
ad94eaa2469c6f83c0f56a8844410186a2a31b8e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2384/CH5/EX5.8/ex5_8.sce | b54f2c247d19c4896f9f6403739950487274c287 | [] | 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 | 287 | sce | ex5_8.sce | // Exa 5.8
clc;
clear;
close;
format('v',6)
// Given data
W1 = 375;// in W
W2 = -50;// in W
// tan(phi) = sqrt(3)*((W1-W2)/(W1+W2));
phi = atand(sqrt(3)*((W1-W2)/(W1+W2)));// in degree
// power factor
pf= cosd(phi);// lag
disp("The power factor is : "+string(pf)+" lag.");
|
b9b0ae36cb07299aeb0fcbe1d97f28dd4b943416 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1085/CH3/EX3.29/ex3_29.sce | 49bfb4a44342aa3fe58d2f50934d1df24b5e91f7 | [] | 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 | 271 | sce | ex3_29.sce | //Exam:3.29
clc;
clear;
close;
n_1=1;//1st order reflection index
angle_1=10;//1st order reflection angle
n_3=3;//3rd order reflection index
//sind(angle_1)/sind(angle_3)=n_1/n_3
angle_3=asind(n_3*sind(angle_1)/n_1);//
disp(angle_3,'3rd order reflection angle=') |
09195f1228933a8b7d0a59f941984eb522190702 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1544/CH1/EX1.14/Ch01Ex14.sce | 19b5fa17481cd1c7384285fbc89a1ca9a6a11e37 | [] | 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 | 466 | sce | Ch01Ex14.sce | // Scilab code Ex1.14: Pg 20 (2008)
clc; clear;
P = 12.5; // Power of the machine, kW
t = 8.5; // Time for which the machine is operated, h
W = P*t; // Electric energy, kWh
// Cost per unit = 7.902 p, therefore calulating the cost of 106.25 units
cost = ( W*7.902 ); // Cost for operating machine, p
printf("\nThe cost of operating the machine = %4.2f pounds", cost*1e-02)
// Result
// The cost of operating the machine = 8.40 pounds
|
f4b243ac87e20f5cf380826c2a157585f9fe4537 | 66106821c3fd692db68c20ab2934f0ce400c0890 | /test/interpreter/include02.tst | cad357b1c592854a5ca45fc9dd4319c0bf83ede0 | [] | no_license | aurelf/avrora | 491023f63005b5b61e0a0d088b2f07e152f3a154 | c270f2598c4a340981ac4a53e7bd6813e6384546 | refs/heads/master | 2021-01-19T05:39:01.927906 | 2008-01-27T22:03:56 | 2008-01-27T22:03:56 | 4,779,104 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 141 | tst | include02.tst | ; @Harness: simplifier
; @Purpose: "Test generation of .include directive"
; @Result: "IncludeFileNotFound @ 5:10"
.include "include02.inc"
|
4de528a68815eb6e287f1204689dd2f68c4bd55e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2090/CH15/EX15.2/Chapter15_example2.sce | 2286badfb1af730b12f3ef1632bdcf54c169aeeb | [] | 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,487 | sce | Chapter15_example2.sce | clc
clear
//Input data
p=1.013;//The pressure at the sea level in bar
T=283;//The temperature at the sea level in K
bp=275;//Brake power in kW
N=1800;//The speed of the engine in rpm
a=20;//Air fuel ratio
R=287;//The real gas constant in J/kgK
bsfc=0.24;//Brake specific fuel consumption in kg/kWh
nv=80;//Volumetric efficiency in percent
p2=0.75;//The atmospheric pressure at altitude in bar
P=9;//The power consumed by supercharger of the total power produced by the engine in percent
T2=303;//The temperature of air leaving the supercharger in K
//Calculations
mf=[bsfc*bp]/60;//Mass of fuel consumed in kg/min
ma1=mf*(a);//Mass of air used in kg/min
ma=(2/N)*ma1;//Actual mass of air taken in per cycle in kg/cycle
dai=(p*10^5)/(R*T);//The density of air in kg/m^3
Vd=(ma/(dai*(nv/100)));//Volume displaced by the piston in m^3
pmb=(bp*2*60*1000)/(Vd*N*10^5);//Brake mean effective pressure in bar
GP=bp/(1-0.09);//Gross power in kW
ma2=(ma1/bp)*GP;//The mass flow rate of air for gross power in kg/min
ma1=(ma2*2)/N;//Mass of air required for gross power per cycle in kg/cycle
p21=[(R*T2*ma1)/((nv/100)*Vd)]/10^5;//The pressure at the outlet condition of the supercharger in bar
pi=p21-p2;//Increase in air pressure required in the supercharger in bar
//Output
printf('(a) The engine capacity Vd = %3.4f m^3 \n The bmep of the unsupercharged engine = %3.3f bar \n (b) Increase in air pressure required in the supercharged = %3.3f bar ',Vd,pmb,pi)
|
5e16c2860a746066934b322511b63d5b970d86d7 | b4bbf9b2a475b5cf299b30bf5e0c621e32f6c832 | /test/assign1/bridge.tst | 41ce62559545e3600dde552baf88d9fac34a140a | [] | no_license | apetresc/castro | 1ec1ac1307542487aa1be14c335170f7a1347bf2 | 843165af7c946188a2dd772384cd2d579723c99d | refs/heads/master | 2022-02-20T14:28:41.962893 | 2019-10-07T08:41:59 | 2019-10-07T08:41:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 139 | tst | bridge.tst | boardsize 4
play w a1
play b b1
play w a2
play b b2
play w a3
play b b3
1 havannah_winner
#? [none]
play w a4
2 havannah_winner
#? [white]
|
88f0660c398bed6e2ac35f9ce9d396e30cdb6afd | 3b9a879e67cbab4a5a4a5081e2e9c38b3e27a8cc | /Pack/Exame comentado/q4.sce | 97e4ce66993f7669e8fdcaf06557f0fc1d02bf3d | [
"MIT"
] | permissive | JPedroSilveira/numerical-calculus-with-scilab | 32e04e9b1234a0a82275f86aa2d6416198fa6c81 | 190bc816dfaa73ec2efe289c34baf21191944a53 | refs/heads/master | 2023-05-10T22:39:02.550321 | 2021-05-11T17:17:09 | 2021-05-11T17:17:09 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 88 | sce | q4.sce | tamx = 386
tama = 386
n = 386
ax = n^2
xtx = n
flops = xtx + ax + 386 + xtx
disp(flops)
|
cb7521edd24cdc6dc5335c829524f77ac46cdbd6 | 31cc146b7597c1571ad100fc4dd888898b1b4eb0 | /misc/sparse_to_csc.sce | 1a405817f26f09c7afcb696f5eb17bed57e3a611 | [] | no_license | rigid1980/gpp_scilab | a525ae046722e7ba52ebea6003ce712b51631ff6 | fadb75dea26cf341e6dc60874efd88c016df4f3b | refs/heads/master | 2016-09-11T08:37:44.538715 | 2014-03-26T08:37:35 | 2014-03-26T08:37:35 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 376 | sce | sparse_to_csc.sce | function [cp,ri,val,m] = sparse_to_csc(A)
[m,n] = size(A);
nz = nnz(A);
[I,J,V] = find(A);
ri = zeros(nz,1);
val = zeros(nz,1);
cp = zeros(n+1,1);
for i = 1:nz
cp(J(i)+1) = cp(J(i)+1)+1;
end
cp = cumsum(cp);
for i=1:nz
val(cp(J(i))+1) = V(i);
ri(cp(J(i))+1) = I(i);
cp(J(i)) = cp(J(i))+1;
end
for i = m:-1:1
cp(i+1) = cp(i);
end
cp(1) = 0;
cp = cp+1;
|
d481871cc6a3449ac7df89c53eccf87c9ac156d2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /409/CH18/EX18.5/Example18_5.sce | fbd346e404bb15b1d4f888ae2ae87dd5b02bd377 | [] | 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,889 | sce | Example18_5.sce | clear ;
clc;
// Example 18.5
printf('Example 18.5\n');
//Page No.547
// Solution fig.E18.5
// Given data
//Basis: F = 29.76 lb mol
F = 29.76 ;// amount of entering moist air -[lb mol]
F_rh = 90/100 ;// Relative humidity
T_in = 100 + 460 ;// Temperature of entering moist air-[Rankine]
P_in = 29.76 ;//Pressure of entering moist air -[in. of Hg]
psat_in = 1.93 ;// Saturation pressure from steam table-[in. of Hg]
T_out = 120 + 460 ;// Temperature of exiting dry air-[Rankine]
P_out = 131.7 ;//Pressure of exiting dry air -[in. of Hg]
psat_out = 3.45 ;// Saturation pressure from steam table-[in. of Hg]
mol_V = 22.4 ;// Molar volume of gas at standard condition-[m^3]
mw_H2O = 18.02 ;// Mol. wt. of water -[lb]
mw_air = 29 ;// Mol. wt. of air -[lb]
p_H2O_in = F_rh*psat_in ;// Partial pressure of water vapour at inlet--[in. of Hg]
p_air_in = P_in-p_H2O_in ;// Partial pressure of air at inlet--[in. of Hg]
// Assume condensation takes place , therefore output gas P is saturated,
P_rh = 1;// Relative humidity of output gas
p_H2O_out = P_rh*psat_out ;// Partial pressure of water vapour at outlet--[in. of Hg]
p_air_out = P_out-p_H2O_out ;// Partial pressure of air at outlet--[in. of Hg]
// Get W and P from balance of air and water
P = (p_air_in*F/P_in)/(p_air_out/P_out) ;// From air balance-[ lb mol]
W = (p_H2O_in*F/P_in)-(P*p_H2O_out/P_out);// From water balance -[lb mol]
W_ton = (W*mw_H2O*2000)/(p_air_in*mw_air) ;// Moles of water condenses per ton dry air-[lb mol]
W_m = mw_H2O*W_ton ;// Mass of water condenses per ton dry air-[lb]
// Since W is positive our assumption(condensation takes place ) is right .
printf('\n(a) Yes water condense out during compression ,since W(%.3f lb mol) is positive our assumption(condensation takes place ) is right .\n',W);
printf('(b) Amount of water condenses per ton dry air is %.1f lb mol i.e %.0f lb water.\n',W_ton,W_m);
|
51ef079f711493150f61bb082ae6479c83dcaa95 | 449d555969bfd7befe906877abab098c6e63a0e8 | /389/CH7/EX7.6/Example7_6.sce | 009a721efe50e9ad96a861fa63bb1c47d228904e | [] | 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,784 | sce | Example7_6.sce | clear;
clc;
// Illustration 7.6
// Page: 234
printf('Illustration 7.6 - Page: 234\n\n');
// solution
//****Data****//
// A = water vapour; B = air
TempG = 55;// [OC]
P = 1.0133*10^(5);// [N/square m]
Y_prime = 0.030;// [kg water/kg dry air]
//******//
MA = 18.02;// [kg/kmol]
MB = 28.97;// [kg/kmol]
// Percent Humidity
// From psychrometric chart, at 55 OC
Ys_prime = 0.115;// [kg water/kg dry air]
percent_Humidity = (Y_prime/Ys_prime)*100;
printf("The sample has percent Humidity = %f %%\n",percent_Humidity);
// Molal Absolute Humidity
Y = Y_prime*(MB/MA);// [kmol water/kmol dry air]
printf("Molal Absolute Humidity of the sample is %f kmol water/kmol dry air\n",Y);
// Partial Pressure
pA = Y*P/(1+Y);// [N/square m]
printf("The Partial Pressure Of Water is %f N/square m\n",pA);
// Relative Humidity
pa = 118*133.3;// [vapour pressure of water at 55 OC,N/square m]
relative_Humidity = (pA/pa)*100;
printf("The sample has relative Humidity = %f %%\n",relative_Humidity);
// Dew Point
// From psychrometric chart,
dew_point = 31.5;// [OC]
printf("Dew point Of the Sample is %f Oc\n",dew_point);
// Humid Volume
// At 55 OC
vB = 0.93;// [specific volume of dry air,cubic m/kg]
vsB = 1.10;// [specific volume of saturated air,cubic m/kg]
vH = vB+((vsB-vB)*(percent_Humidity/100));// [cubic m/kg]
printf("The Humid Volume of the Sample is %f cubic m/kg\n",vH);
// Humid Heat
CB = 1005;// [J/kg.K]
CA = 1884;// [J/kg.K]
Cs = CB+(Y_prime*CA);// [J/kg]
printf("The Humid Heat is %f J/kg dry air.K\n",Cs);
// Enthalpy
HA = 56000;// [J/kg dry air]
HsA = 352000;// [J/kg dry air]
H_prime = HA+((HsA-HA)*(percent_Humidity/100));// [J/kg dry air]
printf("The Enthalphy of the sample is %f J/kg dry air\n",H_prime); |
bfde8156248859c6d302e8dbe48b01ddc85c3d64 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3440/CH10/EX10.1/Ex10_1.sce | e51f5af2b9dbed00721d0606613557425052eb3b | [] | 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 | 240 | sce | Ex10_1.sce | clc
Popt=5*10^12//phtons/sec
n=0.8
un=2500//cm^2/Vs
epsilon=5000//V/cm
L=10*10^-4//cm
q=1.6*10**-19 //C
tau=5*10^-10//sec
Ip=q*n*Popt*(un*tau*epsilon)/L
disp(Ip,"Ip in A is= ")
gain=(un*tau*epsilon)/L
disp(gain,"gain is= ")
|
b660751966ed60ccb0a557e18e70fd5ceeef70b4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /34/CH3/EX3.4/Ch3Exa4.sci | f2afc4cb29ba8f48922a3acb93919ea48444dc41 | [] | 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 | 361 | sci | Ch3Exa4.sci |
m= 9.1*(10^(-31)); //mass, kg
L= 0.10; //length of box, nm
L= L*(10^(-9)); //convert to m
h= 6.63*(10^(-34)); //Planck's constant, J.s
for n= 1:5; //for energy levels 1 to 5
En=(n^2)*(h^2)/(8*m*(L^2)); //Permitted energies, J
disp(n,"for level:")
disp(En,"Permitted ernergis (in J) : ")
En=38*(n^2);
disp(En, "Permitted energies (in eV) : ")
end
|
a55df1b65dc7231f5cb54f472593b6108ae7b889 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set5/s_Electrical_Machines_M._V._Despande_833.zip/Electrical_Machines_M._V._Despande_833/CH3/EX3.1/Ex3_1.sce | 8e70847b9af61b3d18f2c57f2402a5cee3608c39 | [] | 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 | 624 | sce | Ex3_1.sce | errcatch(-1,"stop");mode(2);//Caption: Find Secondary line voltage,Line Current,and output power for (a)delta/delta (b)star/star (c)delta/star (d)star/delta
//Exa:3.1
;
;
V=6600//Supplied voltage(in volts)
I=20//Supplied current(in A)
n=15//Number of turns per phase
V_la=V/n
I_la=n*I
disp(V_la,I_la,'(a)(in A),(in volts)=')
V_lb=V/n
I_lb=I*n
disp(V_lb,I_lb,'(b)(in A),(in volts)=')
V_lc=(V*(3^0.5))/(n)
I_lc=(n*I)/(3^0.5)
disp(V_lc,I_lc,'(c)(in A),(in volts)=')
V_ld=V/(n*(3^0.5))
I_ld=(3^0.5)*I*n
disp(V_ld,I_ld,'(d)(in A),(in volts)=')
P=(3^0.5)*V*I/1000
disp(P,'(d)Output Power (in KVA)=')
exit();
|
3272c7627fcd04ef39f75f9292d02ff568a278fd | 449d555969bfd7befe906877abab098c6e63a0e8 | /1004/CH3/EX3.4/Ch03Ex4.sci | a8f42fe9bf9e51a02c368774f4a2762a47e990fa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 410 | sci | Ch03Ex4.sci | // Scilab code: Ex3.4 : Momentum of an electron: Pg: 78 (2008)
m = 9.1e-031; // Mass of an electron, kg
E = 1.6e-010; // Kinetic energy of an electron, joule
// Since E = p^2/2*m; // Kinetic energy of an electron, joule
p = sqrt(2*m*E); // Momentum of an electron, kg-m/s
printf("\nThe momentum of an electron = %3.1e kg-m/s", p);
// Result
// The momentum of an electron = 1.7e-020 kg-m/s |
7e37a1cad9d14d3db71d8b349935ca580d61a81b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3547/CH10/EX10.5/EX10_5.sce | 19e0023728acc7321e668154f2df8c546cb2c1ed | [] | 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,482 | sce | EX10_5.sce | // Example 10.5
// Calculate the efficiency of the non-degenerate FWM tone at −2Δf if (a) beta2 = −4ps^2/km, (b) beta2 = 0ps^2/km.
// Page no 453
clc;
clear;
close;
//Given data
f=50*10^9; // The bandwidth
alpha= 0.046*10^-3; // The fiber loss coefficient
L=40*10^3; // The fiber length
Leff=(1-exp(-(alpha*L)))/alpha; // Effective fiber length
// (a) Calculate the efficiency of the non-degenerate FWM tone at −2Δf beta2 = −4ps^2/km
bet21=-4*10^(-12);
j=-1;
k=0;
l=1;
n=j+k-l;
bet1=bet21*10^(-12)/10^(3)*(2*%pi*f)^2*n;
//The efficiency of the non-degenerate FWM tone
neta1=(alpha^2+4*exp(-alpha*L*10^3)*(sind(bet1*(L*10^3)/2))/Leff^2)/(alpha^2+bet1^2);
//Displaying results in the command window
printf("\n The efficiency of the non-degenerate FWM tone at −2Δf (beta2 = −4ps^2/km) = %0.1f X 10^(-3) ",neta1*10^3);
// (b) Calculate the efficiency of the non-degenerate FWM tone at −2Δf beta2 = 0ps^2/km
bet22=0*10^(-12);
j=-1;
k=0;
l=1;
n=j+k-l;
bet2=bet22*10^(-12)/10^(3)*(2*%pi*f)^2*n;
//The efficiency of the non-degenerate FWM tone
neta2=(alpha^2+4*exp(-alpha*L*10^3)*(sind(bet2*(L*10^3)/2))/Leff^2)/(alpha^2+bet2^2);
//Displaying results in the command window
printf("\n\n The efficiency of the non-degenerate FWM tone at −2Δf (beta2 = 0ps^2/km) = %0.0f ",neta2);
|
f625145ab5e6ceec433b9075c93bcce0de769a33 | 449d555969bfd7befe906877abab098c6e63a0e8 | /68/CH5/EX5.9/ex9.sce | 7454b78cdc60dec332499a5cc674814a811b93a1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 677 | sce | ex9.sce | // Example 5.9 :Analyse the circuit to find node voltages and branch currents
// assuming that the transistor is saturated
V_CC=-5; // (V)
V_EE=5; // (V)
R_B=10000; // (ohm)
R_C=10000; // (ohm)
R_E=1000; // (ohm)
V_EB=0.7; // (V)
V_ECsat=0.2; // (V)
// using the relation I_E=I_C+I_B
V_B=3.75/1.2; //(V)
disp(V_B,"Base voltage (V)")
V_E=V_B+V_EB;
disp(V_E,"Emitter voltage (V)")
V_C=V_E-V_ECsat;
disp(V_C,"Collector voltage (V)")
I_E=(V_EE-V_E)/R_E;
disp(I_E,"Emitter current (A)")
I_B=V_B/R_B;
disp(I_B,"Base current (A)")
I_C=(V_C-V_CC)/R_C;
disp(I_C,"Collector current (A)")
Bforced=I_C/I_B; // Value of forced beta
disp(Bforced, "Forced Beta value") |
8ea1b297bfcab9dd465d38ec4e9638d641cb3e51 | b3ea2513d73daaf7b2730f55e31e47011a885f52 | /POS tagging/test.sce | c1234876f7d3db0a32e7186eae5a476e04254c88 | [] | no_license | JoannaMisztalRadecka/Other-projects | e9975e81006d5c7d23de56c945b5e06f74c8e328 | 507e70f5bfbdadd28e83571abef78611b0c1d35e | refs/heads/master | 2021-01-10T16:33:29.845279 | 2015-10-05T09:59:12 | 2015-10-05T09:59:12 | 43,676,805 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,339 | sce | test.sce | test = list()
test(1) = list("Kasia","robi","herbatę")
test(2) = list("ktoś","dzwoni")
test(3) = list("ona","ma","dzieci")
test(4) = list("Wojtek","jest","uczniem")
test(5) = list("chorzy","coś","robią")
test(6) = list("oni","są","zadowoleni")
test(7) = list("on","ma","lekcje")
test(8) = list("on","cię","lubi")
test(9) = list("Wacek","jest","uczniem")
test(10) = list("ktoś","robi","herbatę")
test(11) = list("oni","robią","coś","bez","ciebie")
test(12) = list("on","woli","pierogi")
test(13) = list("Kasia","lubi","brata")
test(14) = list("mama","ma","dużo","dzieci")
test(15) = list("Kasia","piła","wodę")
test(16) = list("piła","jest","bardzo","ostra")
parts = list()
parts(1) = list(1,3,1)
parts(2) = list(5,3)
parts(3) = list(5,3,1)
parts(4) = list(1,3,1)
parts(5) = list(1,5,3)
parts(6) = list(5,3,2)
parts(7) = list(5,3,1)
parts(8) = list(5,5,3)
parts(9) = list(1,3,1)
parts(10) = list(5,3,1)
parts(11) = list(5,3,5,7,5)
parts(12) = list(5,3,1)
parts(13) = list(1,3,1)
parts(14) = list(1,3,4,1)
parts(15) = list(1,3,1)
function err = makeTest()
err=0
nr=0
for i=1:length(test)
result = findSequence(test(i))
nr = nr+length(test(i))
for j=1:length(result)
if result(j)<>parts(i)(j) then
err=err+1
end
end
end
err = err/nr
endfunction |
65880abe4256851c2c64cf73824c8ae88001a519 | 935d5880888b1ef01c8dddaf85af2be07d7940e2 | /AdaptiveSwarmRobotsSimulation-ASRS/stages/StageLabyrinth.sce | 80a8b792bb0ce6a88062b487fa3d8eb90e17868f | [] | no_license | google-code/asrs | c3b35545bce8ae38c8184de002e93e18a67461ee | c9a828a4eb2fbf076116f3c51c44da45a60f9feb | refs/heads/master | 2016-08-05T13:33:11.103066 | 2015-03-15T15:18:57 | 2015-03-15T15:18:57 | 32,267,209 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 103 | sce | StageLabyrinth.sce | _________
| ____ _|
|_| _| _|
|_ |_ _|
|_ _ _|
_| | | | |
| __| _| |
|_________|
|
d63415daebce785f6e745cc41c6db24d07662fbe | 449d555969bfd7befe906877abab098c6e63a0e8 | /662/CH4/EX4.19/ex4_19.sce | fec53238ee4b4cc86c50081490a4a1fd5270cb45 | [] | 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 | 159 | sce | ex4_19.sce | //Example 4.19
//reading and writing a line of text
line=input("Enter a line of text (upto 80 characters):","string");
printf("%s", line); |
c83871edd3adb253d74591117dd0ddb7208773b4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /896/CH2/EX2.1/1.sce | 17e908ce9c227a0514600fd066cec360c92cad99 | [] | 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 | 290 | sce | 1.sce | clc
g=32.2;//ft/s^2
rho_water=62.3;//lbm/ft^3
//specific weoight=(density)*(acceleration due to gravity)
specific_wt=rho_water*g;//lbm.ft/ft^3.s^2
//1 lbf=32.2 lbm.ft/s^2
specific_wt=specific_wt/32.2;//lbf/ft^3
disp("Specific weight of water is")
disp(specific_wt)
disp("lbf/ft^3") |
8d3ac5df9c81261cba9083f7718b6aee3f86d0bd | 449d555969bfd7befe906877abab098c6e63a0e8 | /3772/CH2/EX2.13/Ex2_13.sce | b3769e93ad80780403ed01cdd794648896375df8 | [] | 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 | 409 | sce | Ex2_13.sce | // Problem no.2.13,Page no.38
clc;clear;
close;
d=90 //cm //Diameter of grindstone
t=10 //cm //thickness of grindstone
rho=0.0026 //Kg/cm**3 //Density
//calculations
//M=Mass of grindstone=Volume *Density=Area*Thickness*Density
M=%pi*4**-1*d**2*t*rho //Kg
R=d*2**-1 //cm //radius
I_g=M*R**2*2**-1 //Kg*m**2
k=R*(2**0.5)**-1 //cm //Radius of gyration
//Result
printf("Radius of gyration is %.2f cm",k)
|
2651828e146404a402d682ce1cc8950e449b28bf | 17d775a544e47ac1d2faf88f26b86d08afdcdf7c | /Rubik's Cube/Rubik's Solver/layouts/solved_tree.tst | 814b9f4fff672d233a0bf5869bfa07ede5ac96f1 | [] | no_license | PlenipotentSS/Python-Testing | fbe20bf9574b445da11b1abe844a402c7e51e2a0 | 3dcb029e08b751d38b799881bdff1135e236cb43 | refs/heads/master | 2021-01-23T03:53:24.574975 | 2014-03-16T20:30:15 | 2014-03-16T20:30:15 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,784 | tst | solved_tree.tst | ###TStar Version 05 Tree Description File
###USER=Unknown
###TIME=Fri Nov 27 01:18:04 2009
n=0;h=0;d=2;
v:op=0;n=1;h=0;d=2;
^
v:op=1;n=2;h=0;d=2;
^
v:op=2;n=3;h=0;d=2;
^
v:op=3;n=4;h=0;d=2;
^
v:op=4;n=5;h=0;d=2;
^
v:op=5;n=6;h=0;d=2;
^
v:op=6;n=7;h=0;d=2;
^
v:op=7;n=8;h=0;d=2;
^
v:op=8;n=9;h=0;d=2;
^
v:op=9;n=10;h=0;d=2;
^
v:op=10;n=11;h=0;d=2;
^
v:op=11;n=12;h=0;d=2;
^
v:op=12;n=13;h=0;d=2;
^
v:op=13;n=14;h=0;d=2;
^
v:op=14;n=15;h=0;d=2;
^
v:op=15;n=16;h=0;d=2;
v:op=0;n=19;h=0;d=2;
^
v:op=1;n=20;h=0;d=2;
^
v:op=2;n=21;h=0;d=2;
^
v:op=3;n=22;h=0;d=2;
^
v:op=4;n=23;h=0;d=2;
v:op=0;n=37;h=0;d=2;
^
v:op=1;n=38;h=0;d=2;
^
v:op=2;n=39;h=0;d=2;
^
v:op=3;n=40;h=0;d=2;
v:op=0;n=55;h=0;d=2;
^
v:op=1;n=56;h=0;d=2;
^
v:op=2;n=57;h=0;d=2;
^
v:op=3;n=58;h=0;d=2;
^
v:op=4;n=59;h=0;d=2;
^
v:op=5;n=60;h=0;d=2;
^
v:op=6;n=61;h=0;d=2;
^
v:op=7;n=62;h=0;d=2;
^
v:op=8;n=63;h=0;d=2;
^
v:op=9;n=64;h=0;d=2;
^
v:op=10;n=65;h=0;d=2;
^
v:op=11;n=66;h=0;d=2;
^
v:op=12;n=67;h=0;d=2;
^
v:op=13;n=68;h=0;d=2;
^
v:op=14;n=69;h=0;d=2;
^
v:op=15;n=70;h=0;d=2;
^
v:op=16;n=71;h=0;d=2;
^
v:op=17;n=72;h=0;d=2;
^
^
v:op=4;n=41;h=0;d=2;
^
v:op=5;n=42;h=0;d=2;
^
v:op=6;n=43;h=0;d=2;
^
v:op=7;n=44;h=0;d=2;
^
v:op=8;n=45;h=0;d=2;
^
v:op=9;n=46;h=0;d=2;
^
v:op=10;n=47;h=0;d=2;
^
v:op=11;n=48;h=0;d=2;
^
v:op=12;n=49;h=0;d=2;
^
v:op=13;n=50;h=0;d=2;
^
v:op=14;n=51;h=0;d=2;
^
v:op=15;n=52;h=0;d=2;
^
v:op=16;n=53;h=0;d=2;
^
v:op=17;n=54;h=0;d=2;
^
^
v:op=5;n=24;h=0;d=2;
^
v:op=6;n=25;h=0;d=2;
^
v:op=7;n=26;h=0;d=2;
^
v:op=8;n=27;h=0;d=2;
^
v:op=9;n=28;h=0;d=2;
^
v:op=10;n=29;h=0;d=2;
^
v:op=11;n=30;h=0;d=2;
^
v:op=12;n=31;h=0;d=2;
^
v:op=13;n=32;h=0;d=2;
^
v:op=14;n=33;h=0;d=2;
^
v:op=15;n=34;h=0;d=2;
^
v:op=16;n=35;h=0;d=2;
^
v:op=17;n=36;h=0;d=2;
^
^
v:op=16;n=17;h=0;d=2;
^
v:op=17;n=18;h=0;d=2;
^
^ |
6b08edfc0f4f071864ddf281be2f1e1bc0ce95fd | 449d555969bfd7befe906877abab098c6e63a0e8 | /380/CH11/EX11.8/11_8.txt | 5cd8b9cf92d466766c02cb9a4ef771fdcb3be1fd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 641 | txt | 11_8.txt | //Caption:Find (a)per unit power (b)critical fault clearing time
//Exa:11.8
clc;
clear;
close;
f=60;//in Hertzs
P=4;//no. of poles
P_m=0.9;
H=10;//in Joule/Volt-Amperee
N_s=f*120/P;//synchronous speed in (rpm)
w_s=2*%pi*N_s/f;//(in rad/sec)
P_dm=P_m/sind(18);
t_c=P/f;//fault clearing time (in sec)
delta_o=18*2*%pi/360;//in rad
delta_m=delta_o+((w_s/(P*H))*P_m*t_c^2);
P_d=P_dm*sin(delta_m);
disp(P_d,'(a) power generated (in per unit)=');
delta_2=%pi-delta_o;
delta_c=acos(((P_m/P_dm)*(delta_2-delta_o))+cos(delta_2));
t_cn=sqrt((delta_c-delta_o)*4*H/(w_s*P_m));
disp(t_cn,'(b) critical fault clearing time (in sec)='); |
25c4c35894732887ed6df813cbbb30cd0abab196 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2438/CH2/EX2.5/Ex2_5.sce | e1a895e5f089f98d68ba1afa08b3f3ea3b0e76e5 | [] | 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 | 770 | sce | Ex2_5.sce | // Chapter 2 example 5
clc;
clear;
// Variable declaration
a = 3*10^-10; // side of 2d square lattice in m
h = 6.63*10^-34; // plancks constant in J.s
e = 1.6*10^-19 // charge of electron in coulombs
m = 9.1*10^-31; // mass of electron in kg
// calculations
//p = h*k // momentum of the electron
k = %pi/a; // first Brillouin zone
p = (h/(2*%pi))*(%pi/a); //momentum of electron
E = (p^2)/(2*m*e) // Energyin eV
// Result
mprintf('Electron Momentum for first Brillouin zone appearance = %g\n Energy of free electron with this momentum = %4.1feV',p,E);
mprintf(" \n Note: in Textbook Momentum value is wrongly printed as 1.1*10^-10')
|
e542057479adadebee8b6eb36c5da35340e355fe | 46ffb5fda9448453eba4d6787a1568028b241d88 | /ABMLangangen/calibration/calibSimplexMeanSquares_04:34:20.906 PM 05-juin-2013.sci | d5fafde23dbb21feca556b1883740106cc6e7d4e | [] | no_license | JusteRaimbault/Models | f81f886dc050445dae68e933e0c052c7f9c0b59c | 52f9c28fe20c8e491fb83e22ef162256eb966d32 | refs/heads/master | 2016-09-10T23:23:05.419418 | 2013-07-30T22:02:34 | 2013-07-30T22:02:34 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 10,572 | sci | calibSimplexMeanSquares_04:34:20.906 PM 05-juin-2013.sci | ms=[];incomemean=[];bref=[];bnorm=[];
ms(1)=53180.1819728015;
incomemean(1)=5000;
bref(1)=5000;
bnorm(1)=5000;
ms(2)=13000;
incomemean(2)=5000;
bref(2)=5500;
bnorm(2)=5000;
ms(3)=11947.753521255074;
incomemean(3)=5000;
bref(3)=5000;
bnorm(3)=5500;
ms(4)=53180.1819728015;
incomemean(4)=5500;
bref(4)=5000;
bnorm(4)=5000;
ms(5)=10012.709973781062;
incomemean(5)=5333.333333333334;
bref(5)=4500;
bnorm(5)=5333.333333333334;
ms(6)=12465.020892283537;
incomemean(6)=5500.000000000002;
bref(6)=4000;
bnorm(6)=5500.000000000002;
ms(7)=9175.649949280265;
incomemean(7)=5555.555555555558;
bref(7)=4666.666666666668;
bnorm(7)=5555.555555555558;
ms(8)=7362.3121510092105;
incomemean(8)=5833.333333333339;
bref(8)=4500.000000000004;
bnorm(8)=5833.333333333339;
ms(9)=7283.212985210486;
incomemean(9)=5277.777777777783;
bref(9)=4333.333333333336;
bnorm(9)=6111.111111111117;
ms(10)=10212.492065343828;
incomemean(10)=5166.666666666673;
bref(10)=4000.0000000000036;
bnorm(10)=6666.666666666677;
ms(11)=15256.085396825189;
incomemean(11)=5962.962962962974;
bref(11)=3888.888888888894;
bnorm(11)=6018.518518518527;
ms(12)=7898.022128099182;
incomemean(12)=5240.740740740744;
bref(12)=4722.2222222222235;
bnorm(12)=5629.629629629631;
ms(13)=6634.5881325833625;
incomemean(13)=5567.901234567913;
bref(13)=4537.037037037041;
bnorm(13)=6382.716049382727;
ms(14)=5979.0478983345865;
incomemean(14)=5685.185185185204;
bref(14)=4555.555555555562;
bnorm(14)=6907.407407407425;
ms(15)=8065.746186476619;
incomemean(15)=5956.790123456809;
bref(15)=4203.70370370371;
bnorm(15)=6938.271604938291;
ms(16)=8399.071466764723;
incomemean(16)=5419.75308641976;
bref(16)=4592.592592592595;
bnorm(16)=5956.790123456796;
ms(17)=7887.247270145792;
incomemean(17)=5759.259259259272;
bref(17)=4527.777777777783;
bnorm(17)=6370.370370370382;
ms(18)=5950.7732248403945;
incomemean(18)=5462.962962962974;
bref(18)=4638.888888888892;
bnorm(18)=6268.518518518528;
ms(19)=6879.825918259352;
incomemean(19)=5481.481481481494;
bref(19)=4444.444444444449;
bnorm(19)=6509.259259259271;
ms(20)=6975.598828161488;
incomemean(20)=5327.160493827178;
bref(20)=4564.81481481482;
bnorm(20)=6753.086419753099;
ms(21)=8446.559759924014;
incomemean(21)=5435.185185185201;
bref(21)=4555.55555555556;
bnorm(21)=6657.40740740742;
ms(22)=6566.153535165875;
incomemean(22)=5395.061728395076;
bref(22)=4601.851851851856;
bnorm(22)=6510.802469135813;
ms(23)=6907.959398650752;
incomemean(23)=5574.074074074089;
bref(23)=4597.222222222227;
bnorm(23)=6587.962962962976;
ms(24)=6450.041927364079;
incomemean(24)=5472.2222222222335;
bref(24)=4541.666666666671;
bnorm(24)=6388.8888888889;
ms(25)=6725.831781948197;
incomemean(25)=5312.7572016461;
bref(25)=4591.049382716053;
bnorm(25)=6190.8436213991845;
ms(26)=7019.177836321539;
incomemean(26)=5378.086419753097;
bref(26)=4592.592592592596;
bnorm(26)=6290.123456790132;
ms(27)=7200.2819830847;
incomemean(27)=5429.012345679025;
bref(27)=4620.370370370374;
bnorm(27)=6389.66049382717;
ms(28)=5895.089627659454;
incomemean(28)=5387.860082304537;
bref(28)=4614.969135802472;
bnorm(28)=6229.681069958857;
ms(29)=6462.445709005549;
incomemean(29)=5467.592592592604;
bref(29)=4590.277777777781;
bnorm(29)=6328.7037037037135;
ms(30)=5282.7709788642605;
incomemean(30)=5449.931412894388;
bref(30)=4609.053497942389;
bnorm(30)=6161.608367626895;
ms(31)=7289.648145200139;
incomemean(31)=5460.390946502071;
bref(31)=4603.395061728398;
bnorm(31)=6047.582304526757;
ms(32)=6513.896403641807;
incomemean(32)=5399.5770461819975;
bref(32)=4651.663237311387;
bnorm(32)=6111.168267032477;
ms(33)=5421.840365644195;
incomemean(33)=5450.588705989952;
bref(33)=4605.624142661182;
bnorm(33)=6274.319844535905;
ms(34)=5867.470007628595;
incomemean(34)=5395.957171162945;
bref(34)=4580.875628715136;
bnorm(34)=6175.2210028959125;
ms(35)=6886.140036054262;
incomemean(35)=5476.458111060321;
bref(35)=4582.066377076665;
bnorm(35)=6177.75174008029;
ms(36)=6292.636278965082;
incomemean(36)=5410.009589493483;
bref(36)=4606.7434461210205;
bnorm(36)=6216.698737489215;
ms(37)=6694.7618673536135;
incomemean(37)=5418.895747599463;
bref(37)=4612.011316872431;
bnorm(37)=6195.644718792876;
ms(38)=6660.726172401107;
incomemean(38)=5422.9442920286665;
bref(38)=4594.964563328763;
bnorm(38)=6168.414685261404;
ms(39)=6286.845817490591;
incomemean(39)=5450.26005944217;
bref(39)=4607.338820301786;
bnorm(39)=6217.9641060814;
ms(40)=6527.872020859308;
incomemean(40)=5463.194761977353;
bref(40)=4595.559937509527;
bnorm(40)=6169.680053853588;
ms(41)=6446.002708740499;
incomemean(41)=5485.979864180608;
bref(41)=4613.003607173704;
bnorm(41)=6197.753666446515;
ms(42)=6667.162807919936;
incomemean(42)=5460.919462367427;
bref(42)=4624.037346102391;
bnorm(42)=6215.20403958295;
ms(43)=7834.914366074849;
incomemean(43)=5462.625937074871;
bref(43)=4602.679289657743;
bnorm(43)=6181.061050285929;
ms(44)=6376.440638024835;
incomemean(44)=5456.56308743587;
bref(44)=4602.306717725958;
bnorm(44)=6165.644210740242;
ms(45)=5142.899130532591;
incomemean(45)=5467.955638537498;
bref(45)=4611.028552558047;
bnorm(45)=6179.681017036705;
ms(46)=5464.23915275232;
incomemean(46)=5450.0957361682795;
bref(46)=4608.196159122088;
bnorm(46)=6189.786236854148;
ms(47)=6996.841471815676;
incomemean(47)=5455.425437630905;
bref(47)=4616.545422022394;
bnorm(47)=6188.406203604925;
ms(48)=7095.140635830164;
incomemean(48)=5456.278674984629;
bref(48)=4605.866393800067;
bnorm(48)=6171.334708956412;
ms(49)=7026.3560833112815;
incomemean(49)=5458.943525715943;
bref(49)=4610.041025250218;
bnorm(49)=6170.6446923318;
ms(50)=7470.382909949327;
incomemean(50)=5462.259362986684;
bref(50)=4606.667635142003;
bnorm(50)=6172.662613888473;
ms(51)=7411.571794218645;
incomemean(51)=5459.025687352889;
bref(51)=4609.612355840067;
bnorm(51)=6184.733626945426;
ms(52)=7013.559385439555;
incomemean(52)=5461.690538084204;
bref(52)=4613.786987290217;
bnorm(52)=6184.043610320814;
ms(53)=6700.051877710137;
incomemean(53)=5466.700780872212;
bref(53)=4613.625354225587;
bnorm(53)=6171.512586180783;
ms(54)=7171.301129755365;
incomemean(54)=5471.954445946669;
bref(54)=4615.586237465684;
bnorm(54)=6186.180116693733;
ms(55)=6538.117614002625;
incomemean(55)=5462.196255773624;
bref(55)=4611.427328304084;
bnorm(55)=6174.528548422283;
ms(56)=7644.777240719713;
incomemean(56)=5469.544578704688;
bref(56)=4610.267169434928;
bnorm(56)=6166.437824105698;
ms(57)=6452.768969815221;
incomemean(57)=5463.654048239325;
bref(57)=4612.907032826395;
bnorm(57)=6179.6421637670355;
ms(58)=6324.474731844346;
incomemean(58)=5462.503180828087;
bref(58)=4609.949921566765;
bnorm(58)=6184.388566636564;
ms(59)=6951.469571335976;
incomemean(59)=5467.212322629652;
bref(59)=4611.163009663389;
bnorm(59)=6187.945949871253;
ms(60)=6766.609416986224;
incomemean(60)=5463.450272487631;
bref(60)=4611.361248643911;
bnorm(60)=6177.882898784526;
ms(61)=7043.834616814067;
incomemean(61)=5465.075947155561;
bref(61)=4611.227940431065;
bnorm(61)=6177.104782729494;
ms(62)=6036.706787765635;
incomemean(62)=5465.804843388411;
bref(62)=4611.967792692221;
bnorm(62)=6179.661590401871;
ms(63)=7699.329741785168;
incomemean(63)=5465.229409682793;
bref(63)=4610.489237062406;
bnorm(63)=6182.034791836635;
ms(64)=6036.38691827341;
incomemean(64)=5467.328209704856;
bref(64)=4612.3269533918165;
bnorm(64)=6175.596801608748;
ms(65)=7388.519571793496;
incomemean(65)=5468.983180598285;
bref(65)=4612.320925330325;
bnorm(65)=6179.52148996872;
ms(66)=5615.976004523228;
incomemean(66)=5466.0527555162425;
bref(66)=4611.50118665588;
bnorm(66)=6177.708959539301;
ms(67)=6038.888801783047;
incomemean(67)=5468.419559117323;
bref(67)=4611.270002378273;
bnorm(67)=6175.6629283879665;
ms(68)=6230.788421486436;
incomemean(68)=5466.4585223206395;
bref(68)=4611.793345113734;
bnorm(68)=6178.661924898395;
ms(69)=5441.11008787684;
incomemean(69)=5467.00419702687;
bref(69)=4611.264869606963;
bnorm(69)=6178.6949882880035;
ms(70)=7338.861274305078;
incomemean(70)=5466.880240962955;
bref(70)=4611.4981726251335;
bnorm(70)=6179.671303719288;
ms(71)=5960.331773006111;
incomemean(71)=5467.641924121177;
bref(71)=4611.6777529749315;
bnorm(71)=6177.638909322726;
ms(72)=7667.800384639104;
incomemean(72)=5468.18759882741;
bref(72)=4611.149277468159;
bnorm(72)=6177.671972712336;
ms(73)=7290.809909277509;
incomemean(73)=5467.207080429069;
bref(73)=4611.41094883589;
bnorm(73)=6179.17147096755;
ms(74)=5874.988183930947;
incomemean(74)=5467.860759361296;
bref(74)=4611.236501257402;
bnorm(74)=6178.171805464071;
ms(75)=6972.0670626189385;
incomemean(75)=5467.571805829268;
bref(75)=4610.675529306675;
bnorm(75)=6180.059631203128;
ms(76)=7465.374963839319;
incomemean(76)=5467.6243945482;
bref(76)=4611.4271970578675;
bnorm(76)=6178.244089792826;
ms(77)=5450.483598817776;
incomemean(77)=5467.479917782184;
bref(77)=4611.146711082505;
bnorm(77)=6179.188002662355;
ms(78)=7253.628968287841;
incomemean(78)=5467.908198949397;
bref(78)=4611.132526907724;
bnorm(78)=6178.926411250388;
ms(79)=6774.984406325934;
incomemean(79)=5467.7987813293375;
bref(79)=4611.353152766489;
bnorm(79)=6178.659963179716;
ms(80)=5888.378250855818;
incomemean(80)=5467.581359483283;
bref(80)=4611.21975069697;
bnorm(80)=6179.426244002132;
ms(81)=6789.073589307184;
incomemean(81)=5467.545829205974;
bref(81)=4610.91019012519;
bnorm(81)=6180.203545954413;
ms(82)=6041.765340555421;
incomemean(82)=5467.735543298497;
bref(82)=4611.242412106164;
bnorm(82)=6179.045858873391;
ms(83)=9225.546935860213;
incomemean(83)=5467.609067236814;
bref(83)=4611.020930785514;
bnorm(83)=6179.817650260742;
ms(84)=7080.042420318932;
incomemean(84)=5467.703924283076;
bref(84)=4611.187041776002;
bnorm(84)=6179.238806720228;
ms(85)=5738.2465040902935;
incomemean(85)=5467.717778159841;
bref(85)=4611.087631820275;
bnorm(85)=6179.4345098495305;
ms(86)=8238.669843281106;
incomemean(86)=5467.768499010391;
bref(86)=4611.124151627508;
bnorm(86)=6179.553630519418;
ms(87)=5655.149941080354;
incomemean(87)=5467.8455909179975;
bref(87)=4611.135482332105;
bnorm(87)=6179.363437955048;
ms(88)=6463.078893120705;
incomemean(88)=5467.910839399834;
bref(88)=4611.043626179445;
bnorm(88)=6179.43234604144;
ms(89)=5461.988468186013;
incomemean(89)=5467.875254302473;
bref(89)=4611.06375754146;
bnorm(89)=6179.462667160933;
ms(90)=5803.708979667535;
incomemean(90)=5468.066544345471;
bref(90)=4611.064229800801;
bnorm(90)=6179.570238252258;
ms(91)=5902.8683029699005;
incomemean(91)=5467.804969706249;
bref(91)=4611.081781315406;
bnorm(91)=6179.468441950212;
ms(92)=7442.448636683573;
incomemean(92)=5467.83670834867;
bref(92)=4611.0580921891615;
bnorm(92)=6179.557763443117;
|
3fa0d8d0b7bfd3c9b41461900fefc59da46ae2d5 | 8ea401b354e99fe129b2961e8ee6f780dedb12bd | /macros/sort_values.sci | ef0861adc37ab8a748723b46c485b1cc964bef34 | [
"BSD-2-Clause"
] | permissive | adityadhinavahi/SciPandas | 91340ca30e7b4a0d76102a6622c97733a28923eb | b78b7571652acf527f877d9f1ce18115f327fa18 | refs/heads/master | 2022-12-20T04:04:35.984747 | 2020-08-19T16:10:51 | 2020-08-19T16:10:51 | 288,765,541 | 0 | 1 | null | 2020-08-19T15:35:04 | 2020-08-19T15:14:46 | Python | UTF-8 | Scilab | false | false | 575 | sci | sort_values.sci | function sort_values()
// Sort by the values along either axis.
//
// Syntax
// dfr.sort_values(input_string)
//
// Parameters
// input_string : String containing the index/column to sort with
// // For additional information on parameters, see https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.sort_values.html?#pandas.DataFrame.sort_values
// Returns : DataFrame
//
// Examples
// // Sort by name
// dfr.sort_values("by=["+""'Name''"+"]")
//
// Authors
// Aditya Dhinavahi
// Sundeep Akella
endfunction |
cfa908a866ca85f0f773663b2fe04d2fda1d6bfc | 449d555969bfd7befe906877abab098c6e63a0e8 | /2498/CH3/EX3.7/ex3_7.sce | 806ce537538e759357d301e08246623492794791 | [] | 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 | 395 | sce | ex3_7.sce | // Exa 3.7
clc;
clear;
close;
format('v',5)
// Given data
R_L = 1;// in k ohm
R_L = R_L * 10^3;// in ohm
R = 270;// in ohm
V = 18;// in V
V_Z= 10;// in V
V_L = (R_L/(R_L+R))*V;// in V
if V_L > V_Z then
disp("As the value of V_L ("+string(V_L)+" V) is greater than the value of V_Z ("+string(V_Z)+" V), So")
disp("The zener diode is operating in the breakdown region.");
end
|
f5288e84bb53c9b4960356ec0997baa625861fcc | 449d555969bfd7befe906877abab098c6e63a0e8 | /716/CH2/EX2.6/MatLab_ProgEx2_6.sce | dc430d10e43bf5d142fb1061ad503c639ae4311c | [] | 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 | 532 | sce | MatLab_ProgEx2_6.sce | //Perform Convolution of x1(t)=1 for 1<t<10 & x2(t)=1 for 2<t<10
clc;
t=0:0.01:15;
x1=1.*(t>1&t<10);
x2=1.*(t>2&t<10);
y=convol(x1,x2);
n=length(y);//setting time vector for y
ty=0:1:(n-1);
subplot(131)
plot2d(t,x1);//first signal
xtitle('first signal x1(t)=1 for 1<t<10','time t','x1(t)');
subplot(132)
plot2d(t,x2);//second signal
xtitle('second signal x2(t)=1 for 2<t<10','time t','x2(t)');
subplot(133)
plot2d(ty,y);//output signal after convolution
xtitle('convolution of x1 & x2','time t','x1(t)*x2(t)'); |
92275d4eb50aa94a4170c88a9ada6c4effc5364a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2774/CH3/EX3.3/Ex3_3.sce | 01efeb1ae2abdf0dcf3affd6dde1235d97371107 | [] | 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 | 514 | sce | Ex3_3.sce | clc
//initialization of variables
P1=200 // initial pressure in kPa
V1=2 //initial volume in m^3
P2=100 //final pressure in kPa
C=P1*V1// isothermal process i.e P.V=constant
// find final volume
V2=P1*V1/P2 // final volume by P1.V1=P2.V2
function[p]=pressure(v) // expressing pressure as function of volume
p=C/v;
endfunction
W=integrate('C/v','v',V1,V2) //itegrating over volume to get work
printf("The Work done by gas is %.0f kJ",W) // answer is approximated in textbook
|
73f0b79e79dd9b4284f9868bb59b5c24369ef8c6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3432/CH7/EX7.23/Ex7_23.sce | c2e1d2e46bb76621f6559e157bc8de780e6f0af1 | [] | 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,980 | sce | Ex7_23.sce | //Example 7.23
// SRL Design for an Inverted Pendulum
xdel(winsid())//close all graphics Windows
clear;
clc;
//------------------------------------------------------------------
//Transfer function model of Inverted Pendulum.
s=poly(0,'s');
nums=-(s+2);
dens=(s^2-1)
num_s=-(-s+2);
den_s=((-s)^2-1)
G0s=syslin('c',nums/dens); //G0(s)
G0_s=syslin('c',num_s/den_s); //G0(-s)
sysGG=G0s*G0_s;
evans(sysGG)
title('Symmetric root locus for Inverted Pendulum')
zoom_rect([-3 -2 3 2])
f=gca();
f.x_location = "origin"
f.y_location = "origin"
xset("color",2);
h=legend('');
h.visible = "off"
//Title, labels and grid to the figure
exec .\fig_settings.sci; // custom script for setting figure properties
title('Symmetric root locus for the inverted pendulum','fontsize',3);
//------------------------------------------------------------------
//Root locus design
//choose rho=1 that places pole at -1.36+-j0.606
rho=1;
p=[-1.36+0.606*%i, -1.36-0.606*%i];
sig=real(p);
omega=imag(p);
plot(sig,omega,'ro')
xstring(-1.25,0.5,["pole locations at";"$\rho=1$"])
//------------------------------------------------------------------
//pole-placement design;
Ac=[0 1;1 0];Bc=[0 -1]'; Cc=[2 1];Dc=0;
exec('./acker_dk.sci', -1);
K=acker_dk(Ac,Bc,p);
disp(K,"K=",spec(Ac-Bc*K),"Closed loop eigen values");
//input gain calculation
n=sqrt(length(Ac));
A=[Ac Bc;Cc Dc];
N=A\[zeros(1,n) 1]';
Nx=N(1:n);
Nu=N(n+1);
//feedforward gain (input gain)
Ntilde=Nu+K*Nx;
//Step respose
t=0:0.1:4.5;
syscl=syslin('c',(Ac-Bc*K),Bc*Ntilde, Cc, Dc)
[y x]=csim('step',t,syscl); //closed loop response
figure,
plot(t,y);
//Title, labels and grid to the figure
exec .\fig_settings.sci; // custom script for setting figure properties
title('Step response for inverted pendulum','fontsize',3);
xlabel('Time t (sec.)','fontsize',2);
ylabel(["Position","$x_1$"],'fontsize',2);
//------------------------------------------------------------------
|
5f24c7f350a341f6493ece2ace258bcfb3c1c532 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3411/CH5/EX5.12.u1/Ex5_12_u1.sce | a07b9e963871bb39dfa1196cd6e3db9255950d50 | [] | 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,699 | sce | Ex5_12_u1.sce | //Example 5_12_u1
clc();
clear;
//To determine the cubic structure of element and lattice constant and to identify element
//Diffraction data
theta21=40 //units in degrees
theta22=58 //units in degrees
theta23=73 //units in degrees
theta24=86.8 //units in degrees
theta25=100.4 //units in degrees
theta26=114.7 //units in degrees
theta1=theta21/2 //units in degrees
theta2=theta22/2 //units in degrees
theta3=theta23/2 //units in degrees
theta4=theta24/2 //units in degrees
theta5=theta25/2 //units in degrees
theta6=theta26/2 //units in degrees
//sin^2(theta) values
sin1=(sin(theta1*%pi/180))^2
sin2=(sin(theta2*%pi/180))^2
sin3=(sin(theta3*%pi/180))^2
sin4=(sin(theta4*%pi/180))^2
sin5=(sin(theta5*%pi/180))^2
sin6=(sin(theta6*%pi/180))^2
//sin^2(theta)/0.111 value
temp1=sin1/sin1
temp2=sin2/sin1
temp3=sin3/sin1
temp4=sin4/sin1
temp5=sin5/sin1
temp6=sin6/sin1
//(h,k,l) values are determined such that the sum h^2+k^2+l^2=temp value in that manner hence we have to select the (h,k,l) values
//(h,k,l) values
hkl1=100 //As h^2+k^2+l^2=1
hkl2=110 //As h^2+k^2+l^2=2
hkl3=111 //As h^2+k^2+l^2=3
hkl4=200 //As h^2+k^2+l^2=4
hkl5=210 //As h^2+k^2+l^2=5
hkl6=211 //As h^2+k^2+l^2=6
printf("unit cell Dimensions when 2*theta=%.1f is (%d) where sin^2(theta)/0.0111 is %d\n",theta21,hkl1,temp1 )
printf("unit cell Dimensions when 2*theta=%.1f is (%d) where sin^2(theta)/0.0111 is %d\n",theta22,hkl2,temp2 )
printf("unit cell Dimensions when 2*theta=%.1f is (%d) where sin^2(theta)/0.0111 is %d\n",theta23,hkl3,temp3 )
printf("unit cell Dimensions when 2*theta=%.1f is (%d) where sin^2(theta)/0.0111 is %d\n",theta24,hkl4,temp4 )
printf("unit cell Dimensions when 2*theta=%.1f is (%d) where sin^2(theta)/0.0111 is%d\n",theta25,hkl5,temp5 )
printf("unit cell Dimensions when 2*theta=%.1f is (%d) where sin^2(theta)/0.0111 is %d\n",theta26,hkl6,temp6 )
ratio=sin1/sin2
printf("The ratio of sin(theta)^2 values for first and second angles is %.2f\n Hence the crystal structure is bcc\n",ratio)
lamda=0.154 //units in nm
//As we have used ratio of angles of 2*theta=40 degrees and 58 degrees above we use h=1,k=1,l=0 and a^2=(lamda/2)*sqrt(sqrt(h^2+k^2+l^2)/sin^2(theta))
h=2
k=0
l=0
theta=20 //units in degrees
a=(lamda/2)*(sqrt(sqrt(h^2+k^2+l^2)/sin(theta*(%pi/180))^2)) //units in nm
printf("Lattice constant a=%.3fnm \n And the element is tungsten Since Tungsten has lattice constant of %.3fnm and crystallizes in bcc structure",a,a)
//Given in textbook to find lattice constant h=1,k=1,l=1 but the correct answer is h=2,k=0,l=0
|
1ea7e8d5249fd4a8bb6d498cd8feb314740e62df | 449d555969bfd7befe906877abab098c6e63a0e8 | /3557/CH17/EX17.13/Ex17_13.sce | b834d1147d2312dbc118142398e8e24a79354615 | [] | 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 | 204 | sce | Ex17_13.sce | //Example 17.13//
ue=0.070;//Electron Mobility CdTe (From table 17.5)
uh=0.007;//holes Mobility CdTe (From table 17.5)
fe=ue/(ue+uh)
mprintf("fe = %f ",fe)
fh=uh/(ue+uh)
mprintf("\nfh = %f ",fh)
|
5f87745b1f87f4a88b37978ac47e337aba98620c | c0c48c5a363ac2c0bf21e72833d72a99771dc6ce | /AMPL_Codes/endsem/SCILAB_18i190002/takehome2.sce | 29e644d7b48fcbf5095fb6f0ba13cecbcb88f122 | [] | no_license | shubham1166/Operarions_Research_Projects | 3b6664b83d89b2a005b5194489bfd0d95cafe3d8 | 8f28eea93d9e4ff3d6a8e95160c3f9464ce2fc34 | refs/heads/main | 2023-03-14T02:48:42.359247 | 2021-03-03T05:51:28 | 2021-03-03T05:51:28 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 791 | sce | takehome2.sce | //SHUBHAM SHARMA
//Roll no:18i190002
//Msc PhD OR
clc,clear
lambda=0.1
mu=0.2
N=30000
A=grand(N+1,1,"exp",1/lambda);
idle_time=zeros(N+1,1)
J=grand(1,1,"exp",1/mu)
i=1;
Y(1,1)=10; //Y(i,1) is the no of customers seen by the i th customer at his arriaval
CAT=A(1,1); // cumulative arriaval time
CST=J(1,1); // cumulative service time
while i<=N
while CAT<=CST
Y(i+1,1)=Y(i,1)+1;
i=i+1;
CAT=CAT+A(i,1)
end
while CAT>CST & Y(i,1)>0
Y(i,1)=Y(i,1)-1;
CST=CST+grand(1,1,"exp",1/mu)
end
if CAT>=CST & Y(i,1)==0
idle_time(i,1)=CAT - CST;
CST=CAT;
CST=CST+grand(1,1,"exp",1/mu)
end
end
disp("stationary expected number of customers "+string(mean(Y)))
disp("fraction of time server is busy "+string(1-sum(idle_time)/CAT))
//Taken help from Dasari Jeevan Swaroop
|
3ab465e39361386f2a49b7bf067ab18797915617 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1760/CH2/EX2.109/EX2_109.sce | 690c4065a61997d88496bf6a58e1bfaff4ae4635 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 543 | sce | EX2_109.sce | //EXAMPLE 2-109 PG NO-146
V=200;
I=10;
W=314;
Z=V/I;
disp('i) IMPEDANCE (Z) is = '+string (Z) +' ohm ');
R=Z*0.707;
disp('ii) RESISTANCE (R) is = '+string (R) +' ohm ');
XC=Z*0.707;
disp('iv) INDUCTANCE (XC) is = '+string (XC) +' ohm ');
C=1/(W*XC);
disp('iv) CAPACITOR (C) is = '+string (C) +' F ');
P=V*I*0.707;
disp('i) Active Power (P) is in polar form = '+string (P) +' W ');
Q=V*I*0.707;
disp('i) Reactive Power (Q) is in polar form = '+string (Q) +' Var ');
|
614c1055b39175b1e64c6e4c3e0b84f9c5e6a16c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1409/CH8/EX8.21/8_21.sce | af866dfb89f43dce138923122bdd7c00ff59b66a | [] | 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 | 8_21.sce | clc;
//page no 8-61
//Example 8.21
C=0.01*10^(-6);//in farads
Rc=5*10^3;//in ohms
fm=1*10^3;//in Hz
Mmax=1/sqrt(1+(2*%pi*fm*C*Rc)^2);
disp(Mmax,'Mmax=');
|
b25dcd9100292f9f108b33f78cd292a1cbb0afa0 | b73e9d989ebb6c74535238e10eede063a5d7e66b | /assignment1_part5final.sce | e415e700823e1d9f7afa41e71941ba82784e7866 | [] | no_license | ParthaSurve/CODES_SEM_VI | 930a520ccdbc7cb389dac6b6f03900674b5e1a6b | 1f6afa9b92ad8263d0773ce0f90f9ffa5943b8e4 | refs/heads/master | 2021-01-21T05:13:44.089655 | 2017-02-25T17:46:44 | 2017-02-25T17:46:44 | 83,149,933 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,798 | sce | assignment1_part5final.sce | // Assigment 1 Computational Methods for compressible flow
//--------------------------------------------------------//
// Submition date : 27-01-2017
// Contour Plot of the error between Analytical solution using series method and Explicit Forward Time Central Space scheme (FTSC) soluton for solving PDEs. Diffusion Coefficient is kept constant
// Author: Partha Surve (SC14B036, Aerospace Engineering 3rd Year, IIST)
clc;
clear;
clf;
//initializing the parameters
L = 1 //length of the domain
t_max = 1 //end time
n_x = 8 // No of nodes
n_t = 101 // time steps
dx = L/(n_x-1); //spacial step size
dt = t_max/(n_t-1);//temporal step size
alpha = 0.001; //diffusion term
t=0.01
T=zeros(100,n_t,n_x);//initializing an array
//Analytical Solution//
//=========================================================//
//the 'n' value can be varied to increase the accuracy
for k=1:1:100
for j=2:1:n_t
for i = 1:n_x
T_ana(k,j,i)=0
for n = 1:1:13// tolerance value of 10e-08
U(n)= (40*(1-(-1)^n)/(n*%pi))*sin(n*%pi*(i-1)*dx/L)*%e^(-alpha*k*( j-1)*dt*(n*%pi/L)^2)
T_ana(k,j,i)=T_ana(k,j,i)+U(n)
end
end
end
end
//===========================================================//
//Numerical Solution using Explicit Method
//============================================================//
//Boundary condition
T(:,1,:) = 20;
T(:,:,1) = 0; //dirichlet at the tip and end node
T(:,:,n_x) = 0;
T_ana(:,1,:) = 20;
T_ana(:,:,1) = 0;
T_ana(:,:,n_x) = 0;
//initial condition at all the elements
//solving using FTCS
for k = 1:1:100
for j = 1:1:n_t-1
for i = 2:1:n_x-1
T(k,j+1,i) = T(k,j,i)+(alpha*k*dt/(dx*dx)).*(T(k,j,i-1)-2.*T(k,j,i)+T(k,j,i+1));
end
end
end
//================================================================//
// Evaluating and ploting the Error contour
//================================================================//
//constant diffusion coefficient
for k = 1:1:100
for j = 1:1:n_t
for i = 1:1:n_x
err(k,j,i)=T_ana(k,j,i)-T(k,j,i)
end
end
end
//keeping the diffusion term constant and varying the time and spatial step
for j = 1:1:n_t
for i = 1:1:n_x
err1(j,i)=err(100,j,i)
end
end
//varying the diffusion term and keeping the time step at 0.5
for k = 1:1:100
for i = 1:1:n_x
err2(k,i)=err(k,50,i)
end
end
//keeping the spatial step constant
for k = 1:1:100
for j = 1:1:n_t
err3(k,j)=err(k,j,n_x/2)
end
end
j = [1:1:n_t]
i = [1:1:n_x]
k = [1:1:100]
// turn on the required plot by turning off the comment
//plot3d1(j,i,err1(j,i))
//plot3d1(k,i,err2(k,i))
plot3d1(k,j,err3(k,j))
|
c5765cd15c03a0fa9866845367eb9faabd7952ae | 67ba0a56bc27380e6e12782a5fb279adfc456bad | /STAMPER_PROG_7.4/OUT_OF_DATE/SlicePolyline_Old.sci | 1b4021c35a0ca729fec872a6c7002bf859ede66d | [] | no_license | 2-BiAs/STAMPER_PROG | 8c1e773700375cfab0933fc4c2b0f5be0ab8e8f0 | 4fdc0bcdaef7d6d11a0dcd97bd25a9463b9550d0 | refs/heads/master | 2021-01-18T19:30:06.506977 | 2016-11-10T23:32:40 | 2016-11-10T23:32:40 | 71,999,971 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,053 | sci | SlicePolyline_Old.sci | function listOutput = SlicePolyline(plInput, plBoundary, bRightHanded)
iBoundaryIntersections = PolylineIntersectionPairs(plInput, plBoundary);
//Build Boundary Intersection Point Buffer
pInt = [,];
for i=2:size(iBoundaryIntersections, 1)
//Get Indicies for intersecting line segments
iPInt = iBoundaryIntersections(i, 1);
iBInt = iBoundaryIntersections(i, 2);
//Build intersecting segments
lnP = plInput(iPInt:iPInt + 1, :);
lnB = plBoundary(iBInt:iBInt + 1, :);
//Find intersection point
[pInt(i,1), pInt(i,2)] = IntersectionPoint(lnP, lnB);
end
//pause;
//SuperPlot(list(pInt), list('rx'));
//iOutputPolylineCount = size(iBoundaryIntersections, 1) - iStartOffset - 2;
pInt(1,1:2) = plInput(1,:);
pInt($+1,1:2) = plInput($,:);
iBoundaryIntersections(1, 1) = 1;
iBoundaryIntersections($+1, 1) = size(plInput,1);
//the problem lies here somewhere
listOutputBuffer = list();
for i = 1:size(pInt, 1) - 1
iSubBufferStart = iBoundaryIntersections(i, 1) + 1;
iSubBufferEnd = iBoundaryIntersections(i + 1, 1);
listOutputBuffer(i) = ...
[pInt(i, :); plInput(iSubBufferStart:iSubBufferEnd, :); pInt(i + 1, :)];
end
disp(size(pInt))
//if point one is not on the boundary and point one falls on the same side of the boundary as the boundary segment normal RHR
//then point 1 is with"in" the boundary
lnB = plBoundary(1:2,:);
vB = lnB(2,:) - lnB(1,:);
vB_N = ([0 -1; 1 0]*vB')';
pB_N = plBoundary(1,:) + vB_N;
bStartPointInBoundary = Same(lnB, pB_N, plInput(1,:)) >= 0;
//pause;
listOutput = list();
if bStartPointInBoundary ~= bRightHanded then
for i = 1:2:size(listOutputBuffer)
listOutput($+1) = listOutputBuffer(i);
end
else
for i = 2:2:size(listOutputBuffer)
listOutput($+1) = listOutputBuffer(i);
end
end
endfunction
|
f1467548b5cd08d324fa326893302a51d24c86ec | 449d555969bfd7befe906877abab098c6e63a0e8 | /2102/CH1/EX1.9/exa_1_9.sce | ff945256c45a4d543a5b231035746585841a91ae | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 430 | sce | exa_1_9.sce | // Exa 1.9
clc;
clear;
close;
// Given data
format('v',13)
rho= 0.5;// in Ω-m
miu_c= 0.4;// in m^2/v-sec
J=100;//in A/m^2
distance=10;// µm
distance=distance*10^-6;//in sec
// V= miu_c*E = miu_c*J/sigma = miu_c*J*rho
V= miu_c*J*rho ;// in m/sec
disp(V,"Drift velocity in m/sec is : ")
T= distance/V;// in second
disp(T,"The time taken by the electron to travel 10 micro meter in the crystal in second is : ")
|
85e513f9d630614fe0b51734f6b1d924b65cd781 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3841/CH7/EX7.2/Ex7_2.sce | 60ff1bb4343087046c7cc8670c3b2a2490261f24 | [] | 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 | 211 | sce | Ex7_2.sce | clear
//given
//find out what is torque produced by and engine
N=850.
bhp=62.
//by writting terms in equation
//5250 is dividing equation
T=5250*bhp/(N)
printf("\n \n torque produced by an engine %.2f lb-ft",T)
|
2f148fdd364b9a2c96b245e5adad9330c2e6bfa5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1466/CH3/EX3.11/3_11.sce | 1088d5bd1728e5a15f8fe40932c9730a4585b64f | [] | 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 | 279 | sce | 3_11.sce |
clc
//initialisation of variables
r= 3 //in
v= 20 //ft/sec
P= 30 //Lb/in^2
r1= 6 //in
w= 62.4 //lbft/sec^2
g= 32.2 //ft/sec^2
//CALCULATIONS
C= v*r/12
P2= P-(w/144)*(C^2/(2*g))*((1/(r1/12)^2)-(1/(r/12)^2))
//RESULTS
printf (' pressure at 6 in = %.2f Lb/in^2 ',P2)
|
f680910451009801e55618b67103877fcddcafb8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3812/CH1/EX1.7.e/1_7_e.sce | 38db62da22816b39210455b29df5dc77c3c512df | [] | 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 | 238 | sce | 1_7_e.sce | //Example 1.7<e>
//draw the waveform of the signal x1(t)=r(-3t)
clc;
clear all;
t=-10:.001:10;
for i=1:length(t)
if t(i)>=0 then
x(i)=-3*t(i);
else
x(i)=0;
end
end
//figure
plot2d(x,t);
xtitle('Required figure','t','x(t)')
|
2dabbf0aa3b63d03ac0a4f024fe1b90d2c4b7f02 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3718/CH7/EX7.7/Ex7_7.sce | 4290243c6936a44941b0f181c68a08312e288948 | [] | 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 | 359 | sce | Ex7_7.sce | //Chapter 7: Solid State
//Problem: 7
clc;
//Declaration of Variables
r = 174.6 // pm
// Solution
a = r * sqrt(8)
mprintf("For 200 plane: h = 2, k = 0, l = 0\n")
d200 = a / sqrt(2 ** 2)
mprintf(" d200 = %.1f pm\n",d200)
mprintf(" For 200 plane: h = 2, k = 2, l = 0\n")
d220 = a / sqrt(2 ** 2 + 2 ** 2)
mprintf(" d220 = %.1f pm", d220)
|
fcfbcaf0ee6ef995001454abe0e87291db3d63c6 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.3/Unix-Windows/scilab-2.3/macros/util/c_sort.sci | ea27dfc4cd71af3915c87f7d7089e95bbcff4ce7 | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain",
"MIT"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 100 | sci | c_sort.sci | function [p,q]=c_sort(A,flag)
//Utility function for column sorting
[p,q]=sort(A',"r");
p=p';q=q';
|
679726e7af7ad4429353c14eb3568305955f84b5 | f5b5eb0883c7795cf090ef64be0e5f9a59596d8d | /instruction.sce | 429b2e7c76fbfab0774952e39c68f96e903c3a71 | [] | no_license | scottb/balljudgement | 97bd2278177d3791840e4344be1c69eb354a9373 | 83635642df25dc3e4b9419e8381a3bee61d82d54 | refs/heads/master | 2016-09-06T17:44:10.199040 | 2011-02-17T03:44:39 | 2011-02-17T03:44:39 | 1,548,423 | 0 | 1 | null | null | null | null | ISO-8859-1 | Scilab | false | false | 4,420 | sce | instruction.sce | scenario = "instruction for ball movement judgment";
no_logfile = true;
scenario_type = trials;
active_buttons = 1;
button_codes = 99;
screen_width = 1024;
screen_height = 768;
screen_bit_depth = 16;
default_font_size = 18;
begin;
picture {} default;
bitmap { filename = "ball1wob.bmp"; } ball1;
bitmap { filename = "ball2wob.bmp"; } ball2;
bitmap { filename = "corr_wob.bmp"; width = 80; height = 80; } correct;
bitmap { filename = "err_wob.bmp"; width = 80; height = 80; } error;
bitmap { filename = "miss_wob.bmp"; width = 80; height = 80; } miss;
box { height = 500; width = 7; color = 200,200,200; } wall;
text { caption = "Welche Kugel?"; } question;
text { caption = "jetzt antworten..."; font_color = 200,200,0; font_size = 16; } comment1;
text { caption = "linke Taste"; font_color = 200,200,0; font_size = 16; } comment2;
text { caption = "Kugel 1 ist Gewinner - linke Taste war richtig"; font_color = 200,200,0; font_size = 16;} comment3;
text { caption = "RICHTIG"; font_size = 20; } feed_txt;
picture {
box { height = 15; width = 3; color = 180,180,180; };
x = 0; y = 0;
box { height = 3; width = 15; color = 180,180,180; };
x = 0; y = 0;
} fixcross;
trial {
trial_type = first_response;
trial_duration = forever;
picture {
text { caption = "I N S T R U K T I O N\n\nSie sehen ausschnittsweise die Flugbahnen zweier Kugeln.\n\nBitte schätzen Sie ab,\nwelche der Kugeln zuerst die Wand durchquert.\n\nlinke Taste = Kugel 1 rechte Taste = Kugel 2\n(obere Bahn) (untere Bahn)\n\n\nBitte antworten Sie erst, wenn Sie dazu aufgefordert werden (\"Welche Kugel?\").\n\nSie bekommen eine Rückmeldung, ob Sie richtig geantwortet haben:\n\n richtig falsch keine Antwort\n\n\n\n\nALLE RÜCKMELDUNGEN ENTSPRECHEN DER WAHRHEIT\n(auch wenn sie bei schwierigen Durchgängen manchmal unglaubwürdig erscheinen mögen)\n\nWeiter zur Demonstration mit SPACE..."; };
x = 0; y = 0;
bitmap correct;
x = -200; y = -150;
bitmap error;
x = 0; y = -150;
bitmap miss;
x = 200; y = -150;
bitmap ball1;
x = -173; y = 63;
bitmap ball2;
x = 210; y = 63;
};
time = 0;
};
trial { picture fixcross; time = 0; duration = 2000; };
LOOP $i 100;
trial {
picture {
bitmap ball1;
x = '-300 + ($i * 1.5)'; y = 100;
bitmap ball2;
x = '-200 + $i'; y = -100;
box wall;
x = 500; y = 0;
};
deltat = 1;
duration = next_picture; # one frame
};
ENDLOOP;
trial {
picture {
text question;
x = 0; y = 0;
text comment1;
x = 0; y = -200;
};
time = 0;
duration = 1000;
picture {
text question;
x = 0; y = 0;
text comment2;
x = 0; y = -200;
};
deltat = 1000;
duration = 1000;
picture {
bitmap correct;
x = 0; y = 0;
text comment3;
x = 0; y = -200;
};
deltat = 2500;
duration = 3000;
};
trial {
trial_type = first_response;
trial_duration = forever;
picture {
text { caption = "Alles klar?\nBei Fragen wenden Sie sich bitte\nan den Versuchsleiter.\n\nWeiter mit SPACE..."; };
x = 0; y = 0;
};
time = 0;
};
LOOP $i 510;
trial {
picture {
text { caption = "Viel Spaß!"; font_color = 'abs(255-$i)','int($i/2)',0; };
x = 0; y = 0;
bitmap ball1;
x = '200 * cos($i/100)'; y = '200 * sin($i/100)';
bitmap ball2;
x = '200 * cos($i/100)'; y = '200 * sin($i/100)';
bitmap ball1;
x = '200 * cos(($i-78)/100)'; y = '200 * sin(($i-78)/100)';
bitmap ball2;
x = '200 * cos(($i-157)/100)'; y = '200 * sin(($i-157)/100)';
bitmap ball1;
x = '200 * cos(($i-236)/100)'; y = '200 * sin(($i-236)/100)';
bitmap ball2;
x = '200 * cos(($i-314)/100)'; y = '200 * sin(($i-314)/100)';
bitmap ball1;
x = '200 * cos(($i-392)/100)'; y = '200 * sin(($i-392)/100)';
bitmap ball2;
x = '200 * cos(($i-471)/100)'; y = '200 * sin(($i-471)/100)';
bitmap ball1;
x = '200 * cos(($i-549)/100)'; y = '200 * sin(($i-549)/100)';
bitmap correct;
x = '300 * sin($i/100)'; y = '300 * cos($i/100)';
bitmap error;
x = '300 * sin(($i-419)/100)'; y = '300 * cos(($i-419)/100)';
bitmap miss;
x = '300 * sin(($i-209)/100)'; y = '300 * cos(($i-209)/100)';
};
deltat = 1;
duration = next_picture; # one frame
};
ENDLOOP;
|
6b5320a0199c158ff98464105e292f936317e460 | 25033eda4e7cd13f945f94c5dc35f15825066b42 | /ExactCure/Uzawa/test2.sce | 12580a2523987967c936ac0ff46aa01b1cf23e09 | [] | no_license | julienguegan/Internships | a26cb9efa2f1715832511a7aa94d25bfc675388b | ad51d5845ed8fd41e29259c95e8beff80bac65cf | refs/heads/master | 2020-12-20T21:54:29.099157 | 2020-01-25T19:20:10 | 2020-01-25T19:20:10 | 236,217,889 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,198 | sce | test2.sce | clear all
exec('C:\Users\Julien Guégan\Desktop\PFE\affichage.sce',-1)
function alpha = backtracking(f,x,d,grad)
alpha = 1
w = 10^-4
cpt = 0
fx = f(x) //une seule evaluation
while(f(x+alpha*d)>(fx+alpha*w*(grad'*d)))
alpha = alpha/2
cpt = cpt+1
end
endfunction
function [L,dLx] = lagrangien(f,g,mu,x)
S = 0
dS = 0
G = g(x)
F = f(x)
df = numderivative(f,x)
dg = numderivative(g,x)
for j = 1:size(G,1)
S = S + mu(j).*G(j)
dS = dS + mu(j).*dg(j,:)
end
L = F + S
dLx = df' + dS'
endfunction
function xn = uzawa(f,tol,x0,g)
xn = x0
for j = 1:length(g(x0))
mun(j) = 1
end
n = 1
cdtarret = %T
while (cdtarret) then
[L,dLx] = lagrangien(f,g,mun,xn)
function y=Lx(x)
y=lagrangien(f,g,mun,x)
endfunction
function y=Ll(l)
y=lagrangien(f,h,g,l,mun,x)
endfunction
//disp(Lx(xn-0.01*dLx));disp((Lx(xn)-(10^-4)*0.01*(dLx'*dLx)))
//rhox = backtracking(Lx,xn,-dLx,dLx)
xnp1 = xn - rhox*dLx
//rhom = backtracking(Ll,xn,g(xnp1),g(xnp1))
munp1 = max(0, mun + rho*g(xnp1))
plot([xnp1(1) xn(1)],[xnp1(2) xn(2)],'k-')
cdtarret = norm(xn-xnp1)>tol
mun = munp1
xn = xnp1
n = n+1
end
endfunction
function z = cout(x)
z = 0.05*x(1)^4+ 0.1*x(2)^4 + 10*x(1)*x(2)+20*x(1)
endfunction
function g = inegalite(x)
g1 = x(1)-6
g2 = -x(1)-6
g3 = -x(2)-6
g4 = x(2)-4
g = [g1;g2;g3;g4]
endfunction
clf()
affiche(cout,10,-10,10,-10,'contour')
xlabel('$x_1$','fontsize',4)
ylabel('$x_2$','fontsize',4)
//exec('C:\Users\Julien Guégan\Desktop\PFE\Algorithmes\cercle.sce',-1);ellipse(0,0,5,5,0)
x = [-10:0.1:10]'
plot(x,-6*ones(length(x),1),'b-.');plot(x,4*ones(length(x),1),'b-.');plot(-6*ones(length(x),1),x,'b-.');plot(6*ones(length(x),1),x,'b-.')
tol = 0.0001
x0 = [-2;-6]
fonction = cout
plot(x0(1),x0(2),'k.')
xstring(x0(1),x0(2),'$x_0$')
gce().font_size=3
plot(-7.2630161,5.6626344,'b.')
plot(5.3864445,-5.1256305,'b.')
sol = uzawa(fonction,tol,x0,inegalite)
disp('le minimum est x = ')
disp(sol)
plot(sol(1),sol(2),'k.')
|
3d43344dace0d5bdb8ba6e90a1de113d844f5c99 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1883/CH1/EX1.3.5/Example1_7.sce | 757390f8ff9c282b42a897b89bbecbc475c9f3a6 | [] | 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 | 756 | sce | Example1_7.sce | //Chapter-1,Example1_3_5,pg 1-24
wavelength=6*10^-5 //wavelength of light
B=0.1 //fringe width(as there are 10 fringes)
u=1 //refractive index of air wedge
a=wavelength/(2*u*B) //as fringe spacing is 'B = wavelength/(2*a*u)'
dist=10 //distance of plane of rectangular pieces from wire
d=a*dist //as for small angle 'tan(a) = a = d/dist'
printf("\nThe diameter of wire is d = %.3f cm\n",d)
|
6308d090a7299403203feb6955094e9a85d83caf | 449d555969bfd7befe906877abab098c6e63a0e8 | /620/CH10/EX10.13/example10_13.sce | b67fa970cd869140a72e5e018d08af58b5e1fb49 | [] | 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 | 296 | sce | example10_13.sce | hfe=200;
hoe=100*10^3;
rc=10*10^3;
vs=0.02;
ib=10*10^(-6);
disp("Part a");
ic=hfe*ib*hoe/(hoe+rc);
disp("the output current (in mA) is"); disp(ic*10^3);
disp("Part b");
vo=ic*rc;
disp("output voltage (in V) is"); disp(vo);
disp("Part c");
av=vo/vs;
disp("voltage gain is"); disp(av); |
a157cefbcc8b77902058b51f6bff865df36db158 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1847/CH2/EX2.15/Ch02Ex15.sce | 2b62b3419144058b3b06690c4741294a8be0a538 | [] | 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 | 569 | sce | Ch02Ex15.sce | // Scilab Code Ex2.15:: Page-2.14 (2009)
clc; clear;
d1 = 5e-01; // First distance between images of the slit, cm
d2 = 2.25e-01; // Second distance between images of the slit, cm
lambda = 5896e-008; // Wavelength of the light used, cm
D = 120; // Distance between screen and the slits, cm
d = sqrt(d1*d2); // Geometric mean of distance between the two slits, cm
b = lambda*D/d; // Distance between interference bands, cm
printf("\nThe distance between interference bands = %5.3e cm", b);
// Result
// The distance between interference bands = 2.109e-02 cm
|
627258cea9d8a865c338c434d7c79f49b03c59fe | 449d555969bfd7befe906877abab098c6e63a0e8 | /2744/CH2/EX2.7/Ex2_7.sce | 9579b162029cedb44ba8cb3dc2cd073ac42693d6 | [] | 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 | 279 | sce | Ex2_7.sce | clear;
clc;
a = 2;//inches
l = 6;//inches
E = 13000;//tons/In^2
m = 1/0.3;
P = 20;//tons
p_1 = P/a^2;//tons/in^2
p_2 = p_1/(2*(m-1));//tons/in^2
e_1 = (5-0.6*p_2)/E;//tons/in^2
del_l = e_1*l;//inches
printf('The contraction in the length del_l = %.5f inches',del_l);
|
f1de37293db784d86045283f8990eaee41141bef | 449d555969bfd7befe906877abab098c6e63a0e8 | /3537/CH7/EX7.15/Ex7_15.sce | 9f9198572ae3557f44611a5c59b300b7ed515a08 | [] | 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 | 163 | sce | Ex7_15.sce | //Example 7_15
clc();
clear;
//To calculate the numerical aperture
n1=1.55
n2=1.50
n0=1
NA=sqrt(n1^2-n2^2)/n0
printf("The numerical aperture is %.2f",NA)
|
125c15d278661088f7aee2658d14c19ab87e29a6 | f78a758dc17a311b355e12366d1315f7a9c2b763 | /Volkswagen/VW 80000 2009/4.9 E-09 Reset behavior 3.tst | f8e2dc6533e0fbf2e2d1282592cccf1be5ac8812 | [] | no_license | CZPFOX/Standards | 9dbf036f7e3e5767c23872c884ae7da83e66f81c | af34157e6e447d1a2b39136b9f3734feb663d9bb | refs/heads/master | 2020-06-18T12:58:06.033918 | 2019-07-11T02:55:42 | 2019-07-11T02:55:42 | 196,309,147 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 11,291 | tst | 4.9 E-09 Reset behavior 3.tst | <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AutoTestC version="2.0.0">
<Pulse>CUSTOM WAVE</Pulse>
<Title>Test sequence 1 pulse d</Title>
<Organization>Volkswagen</Organization>
<Standard>VW 80000 2009</Standard>
<Item>4.9 E-09 Reset behavior</Item>
<voltage>14</voltage>
<count>1</count>
<wave id="0">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="1">
<type>0</type>
<dspin id="0">9.3</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="2">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="3">
<type>0</type>
<dspin id="0">8.8</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="4">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="5">
<type>0</type>
<dspin id="0">8.3</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="6">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="7">
<type>0</type>
<dspin id="0">7.8</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="8">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="9">
<type>0</type>
<dspin id="0">7.3</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="10">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="11">
<type>0</type>
<dspin id="0">6.8</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="12">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="13">
<type>0</type>
<dspin id="0">6.3</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="14">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="15">
<type>0</type>
<dspin id="0">6</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="16">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="17">
<type>0</type>
<dspin id="0">5.8</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="18">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="19">
<type>0</type>
<dspin id="0">5.6</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="20">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="21">
<type>0</type>
<dspin id="0">5.4</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="22">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="23">
<type>0</type>
<dspin id="0">5.2</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="24">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="25">
<type>0</type>
<dspin id="0">5</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="26">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="27">
<type>0</type>
<dspin id="0">4.8</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="28">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="29">
<type>0</type>
<dspin id="0">4.6</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="30">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="31">
<type>0</type>
<dspin id="0">4.4</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="32">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="33">
<type>0</type>
<dspin id="0">4.2</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="34">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="35">
<type>0</type>
<dspin id="0">4</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="36">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="37">
<type>0</type>
<dspin id="0">3.8</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="38">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="39">
<type>0</type>
<dspin id="0">3.6</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="40">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="41">
<type>0</type>
<dspin id="0">3.4</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="42">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="43">
<type>0</type>
<dspin id="0">3.2</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="44">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="45">
<type>0</type>
<dspin id="0">3</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="46">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="47">
<type>0</type>
<dspin id="0">2.8</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="48">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="49">
<type>0</type>
<dspin id="0">2.6</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="50">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="51">
<type>0</type>
<dspin id="0">2.4</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="52">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="53">
<type>0</type>
<dspin id="0">2.2</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="54">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="55">
<type>0</type>
<dspin id="0">2</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="56">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="57">
<type>0</type>
<dspin id="0">1.8</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="58">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="59">
<type>0</type>
<dspin id="0">1.6</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="60">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="61">
<type>0</type>
<dspin id="0">1.4</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="62">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="63">
<type>0</type>
<dspin id="0">1.2</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="64">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="65">
<type>0</type>
<dspin id="0">1</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="66">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="67">
<type>0</type>
<dspin id="0">0.8</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="68">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="69">
<type>0</type>
<dspin id="0">0.6</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="70">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="71">
<type>0</type>
<dspin id="0">0.4</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="72">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="73">
<type>0</type>
<dspin id="0">0.2</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="74">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="75">
<type>0</type>
<dspin id="0">0</dspin>
<time>5</time>
<timeUnit>0</timeUnit>
</wave>
<wave id="76">
<type>0</type>
<dspin id="0">9.8</dspin>
<time>10</time>
<timeUnit>0</timeUnit>
</wave>
</AutoTestC>
|
4010a080500122a051e17f40151b75bccd9d8279 | 449d555969bfd7befe906877abab098c6e63a0e8 | /380/CH6/EX6.1/Ex6_1.sce | 8eafc9c7c2e9a8bbff21b0a6c8c909d779040c86 | [] | 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 | 918 | sce | Ex6_1.sce | //Caption:Find (a)armature current at rated load (b)efficiency at full load (c)no. of turns per pole (d) new speed of motor and driving torque when armature current reduces to 16.67A
//Exa:6.1
clc;
clear;
close;
P_o=10*746;//output power (in Watts)
V_s=220;
P_rot=1040;//rotational loss (in Watts)
R_a=0.75;//armature resistance (in ohms)
R_s=0.25;//series winding resistance (in ohms)
N_m= 1200;//(in rpm)
P_d=P_o+P_rot;
function y=root (a,b,c);
y=((-b)-sqrt((b^2)-(4*a*c)))/(2*a);
endfunction;
I_a=root(1,-220,8500);
disp(I_a,'(a) armature current at rated load (in Amperes)=');
P_in=V_s*I_a;
disp((P_o/P_in)*100,'(b) Efficiency at full load (%)=');
N_s=150/I_a;
disp(N_s,'(c) no. of turns per pole=');
I_an=16.67;
E_an=V_s-(I_an*(R_a+R_s));
N_mn=(E_an*N_m)/90;
disp(int (N_mn),'(d) new speed of motor (in rpm)=');
T_dn=(E_an*I_an)/283.9;
disp(T_dn,'driving torque (in Newton-meter)='); |
ccf9156967fb53ebbb902cbd5ce035a5c1fd0159 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1055/CH14/EX14.11/ch14_11.sce | 415ed451cec523e84f8f5aa8eff258d8ec6cafeb | [] | 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 | 120 | sce | ch14_11.sce | // To determine the VA output of CT .
clear
clc;
o.p=5*5*(.1+.1) +5;
mprintf(" VA output of CT =%.0f VA\n ",o.p);
|
6d9dbf1e0d2eadfa3b490184c6a07ad8c231fa1d | 449d555969bfd7befe906877abab098c6e63a0e8 | /842/CH4/EX4.7/Example4_7.sce | 973c2ab93514db1f5c57fe0260b96c296dea0b59 | [] | 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 | 810 | sce | Example4_7.sce | //clear//
//Example 4.7
// Continuous Time Fourier Transforms of
// Sinusoidal waveforms (a)sin(Wot) (b)cos(Wot)
clear;
clc;
close;
// CTFT
T1 = 2;
T = 4*T1;
Wo = 2*%pi/T;
W = [-Wo,0,Wo];
ak = (2*%pi*Wo*T1/%pi)/sqrt(-1);
XW = [-ak,0,ak];
ak1 = (2*%pi*Wo*T1/%pi);
XW1 =[ak1,0,ak1];
//
figure
a = gca();
a.y_location ="origin";
a.x_location ="origin";
plot2d3('gnn',W,imag(XW),2);
poly1 = a.children(1).children(1);
poly1.thickness = 3;
xlabel(' W');
title('CTFT of sin(Wot)')
//
figure
a = gca();
a.y_location ="origin";
a.x_location ="origin";
plot2d3('gnn',W,XW1,2);
poly1 = a.children(1).children(1);
poly1.thickness = 3;
xlabel(' W');
title('CTFT of cos(Wot)')
|
e97e5577011edb55e503d5767ef743fdcb6b252f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2159/CH8/EX8.4/84.sce | 04d34d30a68cf5c5549fa768c1227a379a455ad8 | [] | 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 | 84.sce | // problem 8.4
d=0.02
V=20
x=15
g=9.81
p1=1000
w=g*p1
a=3.142*d*d/4
W=(w*a*V*V)/(g*sind(x))
F1=(w*a*V*V)/(2*g)
disp(W,"weight of the plate in N")
disp(F1,"force in N required at the lower edge of the plate")
|
9e2729d62af22abcdb759141eefff732760b3db2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /196/CH8/EX8.6/example_8_6.sce | b55c8c2cb909f053a45006ef1881ee7dbdb85e0d | [] | 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 | 201 | sce | example_8_6.sce | //Chapter 8
//Example 8-6
//ProbOnCollectorVoltage
//Page 226,227, Figure 8-9(b)
clear;clc;
//Given
Vout = 5 ; //Output Voltage
Vce = Vout ;
printf ( "\n\n Collector Voltage = %.4f V ", Vce ) |
16e634aedc198d1e1b3a20bef13ab2c03622f371 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1808/CH7/EX7.19/Chapter7_Exampl19.sce | 4e92de16b3dccfe95c91044313414c8127dbefcd | [] | 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,569 | sce | Chapter7_Exampl19.sce | clc
clear
//INPUT DATA
t1=12;//dry bulb temperature in Degree c
t4=40;//dry bulb temperature in Degree c
x1=0.9;//realtive humidity in percentage
t41=25;//wet bulb temperature in Degree c
x3=0.8;//realtive humidity in percentage
ps1=10.503;//Saturation temperature in mm Hg
pv4a=23.74;//Saturation temperature in mm Hg
t3=22.5;//dry bulb temperature in Degree c
cp=1.005;//specific pressure
p=760;//pressure in mm of Hg
t5=20.8;//dry bulb temperature in Degree c
//CALCULATIONS
pv1=x1*ps1;//Saturation temperature in mm Hg
w1=0.622*(pv1/(p-pv1));//Specific humidity in kg w.v./kg d.a
pv4=(pv4a-((p-pv4a)*(t4-t41)*1.8)/(2800-(1.3*(1.8*t4+32))));//Saturation pressure in mm Hg
ps3=pv4/x3;//Saturation temperature in mm Hg
w3=0.622*(pv4/(p-pv4));//Specific humidity in kg w.v./kg d.a
h3=cp*t3+w3*(2500+1.88*t3);//Enthalpy of air per kg of dry air in kJ/kg d.a.
t2=(h3-(w1*2500))/1.0191;//dry bulb temperature in Degree c
h4=cp*t4+w3*(2500+1.88*t4);//Enthalpy of air per kg of dry air in kJ/kg d.a.
h1=cp*t1+w1*(2500+1.88*t1);//Enthalpy of air per kg of dry air in kJ/kg d.a.
ht=(h4-h1);//Enthalpy of air per kg of dry air in kJ/kg d.a.
mw=(w3-w1);//Additional water required in the air washer in kg w.v./kg d.a.
nh=((t2-t3)/(t2-t5))*100;//humidifier efficiency in percentage
//OUTPUT
printf('(a)Temperature at the end of the preheating is %3.2f Degree c \n (b)Total heat required is %3.2f kJ/kg d.a.\n (c)Additional heat required in the air washeer is %3.6f kg w.v./kg d.a.\n (d)humidifier efficiency is %3.2f percentage',t2,ht,mw,nh)
|
83d4319db2244a50c801a3e339471bacb6522868 | 449d555969bfd7befe906877abab098c6e63a0e8 | /243/CH11/EX11.6/11_06.sce | 67fe0383b9584e8abfb795724f42524571e76a8e | [] | 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 | 299 | sce | 11_06.sce | //Example No. 11_06
//Three Point Central Difference formula
//Pg No. 359
clear ;close ;clc ;
T = 5:9 ;
s = [10 14.5 19.5 25.5 32 ];
h = T(2)-T(1);
deff('A = a(t)','A = [ s( find( T == (t+h) ) ) - 2*s( find( T == t) ) + s( find( T == (t-h) ) ) ]/h^2')
a_7 = a(7)
disp(a_7,'a(7) = ') |
87598a2c8c8b0681c9e8c9c094ce6a04fea5161d | 449d555969bfd7befe906877abab098c6e63a0e8 | /773/CH3/EX3.16/3_16.sci | c3bc6686590a1d01c73576ee03bfd474023389f3 | [] | 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 | 338 | sci | 3_16.sci | //laplace//
syms t s;
x=6-4*%e^(-5*t)/5+%e^(-3*t) //Given step Response of the system
printf("Derivative of step response gives impulse response \n")
y=diff(x,t); //Derivative of step response
printf("Laplace Transform of Impulse Response gives the Transfer Function \n ")
p=laplace(y,t,s);
disp(p,"Transfer Function=")
|
9d8234f0c105c720b948de4c646e5c49c38e171f | 449d555969bfd7befe906877abab098c6e63a0e8 | /944/CH5/EX5.34/example5_34_TACC.sce | 44bb57ffe6c217e808406ffa95b747d6543137b5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 326 | sce | example5_34_TACC.sce | //example 5.34
clear;
clc;
//Given:
x=0.28;//mole fraction of solute
R=8.314;//Universal gas constant[J/K/mol]
T=298;//temperature[K]
//To find the reduction in chemical potential
du=R*T*log(1-x);//reduction in chemical potential[J/mol]
printf("The reduction in chemical potential is %f J/mol",-du);
|
ca441413d338a3c5e51fb314281aef69eac1e09f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1332/CH13/EX13.4/13_4.sce | bd42bdd24ccceb12b83f588b2485b0c1309705b4 | [] | 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 | 721 | sce | 13_4.sce | //Example 13.4
//Newton's Backward Difference Formula
//Page no. 425
clc;close;clear;
printf(' x\t\t y\t\t d\t\t d2\t\t d3\t\t d4\n')
printf('------------------------------------------------------------------------------------------')
h=0.02;
z=[0.96,1.8025;0.98,1.7939;1.00,1.7851;1.02,1.7763;1.04,1.7673];
deff('y=f1(x,s)','y=(z(x,3)+(s+1/2)*z(x,4))/h')
for i=3:6
for j=1:7-i
z(j,i)=z(j+1,i-1)-z(j,i-1)
end
end
printf('\n')
for i=1:5
for j=1:6
if z(i,j)==0 then
printf(' \t')
else
printf('%.7f\t',z(i,j))
end
end
printf('\n')
end
printf('\n\ny1(1) = %g',f1(2,0))
printf('\n\ny1(1.03) = %g',f1(4,0.5)) |
5242dc59f1e754f138827318080105b3babd4492 | ab26412087eaa8082853ac528899ad2c8be5cee8 | /school_topology.sce | 0229c6ed936194e299b993fb81a1a5bb3806e1f1 | [] | no_license | RohaanoaZoro/NetworkingProject | 2c749c1279f9172e7ca2e67d7da411e107cbc8ab | d2ed5689bc933352386523e8794b66d5de968003 | refs/heads/master | 2021-09-17T21:02:16.374134 | 2018-07-05T11:29:52 | 2018-07-05T11:29:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,629 | sce | school_topology.sce | clear;
clc;
//1. create and Display School Topology
NameOfNetwork='School Topology';// Name of your network
NumberOfNodes=input("Enter number of nodes");//Number of Nodes in the network
ConnectionEndingNode=[1 2]; //Ending Nodes of the connection lines
ConnectionStartingNode=[1 2];//Starting Nodes of the connection lines
x=(NumberOfNodes/2)*100;//the initial position of the first node
k=300;//a variable used later for incrementing so that we can get the next x position of the node
n=modulo(NumberOfNodes,2);//The remainder of the nodes when divided by 2
if(n==0) then
y=NumberOfNodes/2-1;//calculater half the number of nodes if n is 0
b=NumberOfNodes/2-1;//calculater half the number of nodes if n is 0
x=(NumberOfNodes/2-1)*100;//calculater starting position on the x axis
else,
y=NumberOfNodes/2-1;//calculater half the number of nodes if n is not 0
b=NumberOfNodes/2;//calculater half the number of nodes if n is not 0
x=((NumberOfNodes-1)/2)*100;//calculater starting position on the x axis
end
u=100;
XCoordinatedOfNodes=[u 200];// X-Coordinates of the nodes
YCoordinatedOfNodes=[600 600];//Y-Cordinates of the nodes
//3. insert new nodes in the specified edge
for i=1:NumberOfNodes//adding the connections to each node ie the node previous to the present node are connected to each other
ConnectionEndingNode($+1)=i;//adding connection starting node
ConnectionStartingNode($+1)=i;//adding connection ending node
end
for i=1:y//adding half the nodes on the top at y position 600
XCoordinatedOfNodes($+1)=k;//adding the x position of node
YCoordinatedOfNodes($+1)=600;//adding the y position of node
k=k+100;//incrementing variable for new position of next node
end
l=k-100;//decrementing the variable for new node row position
//4. inserting new edges
for i=1:b//adding nodes the remaining nodes at y position 200
XCoordinatedOfNodes($+1)=l;//adding the x position of node
YCoordinatedOfNodes($+1)=200;//adding the y position of node
l=l-100;//incrementing variable for new position of next node
end
[TopologyGraph]=NL_G_MakeGraph(NameOfNetwork,NumberOfNodes,ConnectionEndingNode,ConnectionEndingNode,XCoordinatedOfNodes,YCoordinatedOfNodes)//Creates the School topoplogy
WindowIndex=1;//Graph Window Number
[VisualizeGraph1] = NL_G_ShowGraph(TopologyGraph,WindowIndex);// Visualize the Graph
NodeColor=5; // Node Colour 2:[Blue],3:[Green], 5:[Red]
BorderThickness=5; // Node Border thickness
NodeDiameter=25; //Node diameter
WindowIndex=2;//window index
ListOfNodes=[1 2];//list of starting nodes
z=input("Enter no of Labs")//Entern the number of labs
z=z-3;
for i=3:(z+3)//adding connections
ListOfNodes($+1)=i;//connection the previous node and the present node
end
//list of nodes
[NodeHighlight,VisualizeGraph1]=NL_G_HighlightNodes(TopologyGraph,ListOfNodes,NodeColor,BorderThickness,NodeDiameter,WindowIndex);// Highlight the specified nodes(labs) in red color
WindoeIndex=3; //Graph Window Number
[VisualizeGraph2] = NL_G_ShowGraphNE(TopologyGraph,WindoeIndex);// Visualize the Graph along with indices for Nodes and Edges
//Display the number of nodes and edges
[ExtractNode,ExtractEdge]=NL_G_GraphSize(TopologyGraph);//Extract the number of nodes and edges
disp(ExtractNode,ExtractEdge); //display the number of nodes and edges
EdgeIndex=7;//edge index
NewNodeQuantity=z;//quantity of new nodes
[go]=NL_G_SplitEdge(TopologyGraph,EdgeIndex,NewNodeQuantity);//application of NL_G_SplitEdge
WindowIndex=3;//window index
VisualizeGraph1=NL_G_ShowGraphNE(go,WindowIndex)//visualise graph
NewEdgeHeadVector=[1 2];//head vector of new edges
for i=3:NumberOfNodes//insert nodes in the headVector
NewEdgeHeadVector($+1)=i;//adding the nodes to headVector
end
NewEdgeTailVector=[2 3];//tail vector of new edges
for i=4:NumberOfNodes//insert nodes in the tailVector
NewEdgeTailVector($+1)=i;//adding the nodes to tailVector
end
NewEdgeTailVector($+1)=1;//adding the nodes to tailVector
NewEdgeNameVector=['e5' 'e6' 'e7' 'e8'];//name vector of new edges
[TopologyGraph] = NL_G_AddEdges(go,NewEdgeHeadVector,NewEdgeTailVector,NewEdgeNameVector);//Add edges to graph
WindowIndex=4;//window index
VisualizeGraph1=NL_G_ShowGraphNE(TopologyGraph,WindowIndex);//display graph
// Display the number of nodes and edges again after adding the nodes and edges.
[ExtractNode,ExtractEdge]=NL_G_GraphSize(TopologyGraph);//Extract the number of nodes and edges
disp(ExtractNode,ExtractEdge); //display the number of nodes and edges
|
7616ca8b673613b60b2c7faf076a1c4cc60a29b7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1332/CH6/EX6.10/6_10.sce | 91de51dfbc81fab859c9770367ee948e44ee0091 | [] | 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 | 264 | sce | 6_10.sce | //Example 6.10
//Solving Matrices
//Page no. 244
clc;close;clear;
warning('off')
for i=1:7
s=0;
for j=1:7
A(i,j)=360360/(i+j)
end
B(i,1)=1;
end
X=inv(A)*B
disp(360360*X,'The Solution by 360360*X= ')
disp(X,'Final Solution = ') |
cc8aa40e7e5c6a3b4328d82577882681c30b9df9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /662/CH14/EX14.2/Example14_2.sci | 1dcaeffa704758a06cd137e2046f42eb962ec047 | [] | 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 | 879 | sci | Example14_2.sci | //Example 14.2
//Generating Fibonacci Numbers
function[] = main()
n=23;
loopmax = 10000000;
//tag the starting time
realtimeinit(1);
realtime(0);
start = now();
//do multiple loops
for loop = 1:loopmax
f1 = 1;
f2 = 1;
//generate the first n fibonacci numbers
for count = 1:n
if (count < 3) then
f = 1;
else
f = f1+f2;
end
f2 = f1;
f1 = f;
end
end
//adjust the counter and tag the completion time
count =count-1;
finish = now();
difference = finish - start;
//display the output
printf("i = %d F = %d\n", count, f);
printf("elapsed time: %.01f seconds", difference);
endfunction
//calling main()
funcprot(0);
main(); |
14f4e8e8a5b17e35fab28079131ab48a9f6ccfd5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2534/CH1/EX1.15/Ex1_15.sce | fa2c3e6c7abd0e4b34de4eaca84c8d28eaa95855 | [] | 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 | 503 | sce | Ex1_15.sce | //Ex1.15
clc
ni = 1.52*10^10 //intrinsic concentration
e=1.6*10^-19 //charge of electron
micro_n = 1350; micro_p = 480 // charge mobility
disp("e = "+string(e)+"C")
disp("ni = pi ="+string(ni)+"/cm.cube")
disp("micro_n = "+string(micro_n)+"cm.sq/V-s")
disp("micro_p = "+string(micro_p)+"cm.sq/V-s")
disp("sigma = e(micro_n*ni + micro_p*pi ) ="+string(e*(micro_n*ni + micro_p*ni))+"mho/cm") //conductivity
disp("rho = 1/sigma ="+string(1/(e*(micro_n*ni + micro_p*ni)))+"ohm-cm") //resistivity
|
7b0ec4a78a68b9d82c7d375735cc010736f91599 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2330/CH5/EX5.6/ex5_6.sce | 3283b1c19dc7223173f324e150012a9be2e76879 | [] | 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 | 381 | sce | ex5_6.sce | // Example 5.6
format('v',6)
clc;
clear;
close;
// given data
V_BE= 0.7;// in V
R2= 1*10^3;//in Ω
R1= 3.9*10^3;//in Ω
R_E= 100;// in Ω
R_C= 150;// in kΩ
V_CC= 25;// in V
Vz= R2*V_CC/(R1+R2);// in V
V_E= Vz-V_BE;// in V
I_E= V_E/R_E;// in A
I_C= I_E;// in A
// The collector voltage
V_C= V_CC-I_C*R_C;// in V
disp(V_C,"The collector voltage in volts is : ")
|
feb15e202acf3f26fa4a3c434bd5facd3cb7471b | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/PW70FNV/ATWM1_Working_Memory_MRI_PW70FNV/ATWM1_Working_Memory_MRI_Salient_Uncued_Run1.sce | 2ce8c03650e03028fd22f11bccd0562412880b4d | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 12,235 | sce | ATWM1_Working_Memory_MRI_Salient_Uncued_Run1.sce | # ATWM1 MRI Experiment
scenario = "ATWM1_Working_Memory_MRI_salient_uncued_run1";
scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
#scenario_type = trials;
scan_period = 2000; # TR
pulses_per_scan = 1;
pulse_code = 1;
#pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 28;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
#write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 300; width = 300; color = 0, 0, 0;} frame1;
box { height = 290; width = 290; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 290; width = 290; color = 128, 128, 128;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# baselinePre (at the beginning of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
}default;
time = 0;
duration = 9400;
mri_pulse = 1;
code = "BaselinePre";
#port_code = 1;
};
TEMPLATE "ATWM1_Working_Memory_MRI.tem" {
trigger_volume_encoding trigger_volume_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
6 12 292 292 399 125 11543 2992 14342 fixation_cross gabor_140 gabor_122 gabor_010 gabor_180 gabor_140_alt gabor_122 gabor_010_alt gabor_180 "1_1_Encoding_Working_Memory_MRI_P3_LR_Salient_NoChange_CuedRetrieval_300_300_399_11601_3000_14400_gabor_patch_orientation_140_122_010_180_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_010_framed gabor_circ blank blank blank blank fixation_cross_white "1_1_Retrieval_Working_Memory_MRI_P3_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_010_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
21 27 292 292 399 125 11543 2992 14342 fixation_cross gabor_020 gabor_059 gabor_104 gabor_042 gabor_020 gabor_059 gabor_104_alt gabor_042_alt "1_2_Encoding_Working_Memory_MRI_P3_LR_Salient_NoChange_CuedRetrieval_300_300_399_11601_3000_14400_gabor_patch_orientation_020_059_104_042_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_104_framed gabor_circ blank blank blank blank fixation_cross_white "1_2_Retrieval_Working_Memory_MRI_P3_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_104_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
36 42 292 292 399 125 11543 2992 14342 fixation_cross gabor_042 gabor_018 gabor_101 gabor_127 gabor_042_alt gabor_018 gabor_101 gabor_127_alt "1_3_Encoding_Working_Memory_MRI_P3_LR_Salient_DoChange_CuedRetrieval_300_300_399_11601_3000_14400_gabor_patch_orientation_042_018_101_127_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_079_framed blank blank blank blank fixation_cross_white "1_3_Retrieval_Working_Memory_MRI_P3_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_079_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
51 56 292 292 399 125 9543 2992 14342 fixation_cross gabor_003 gabor_020 gabor_172 gabor_037 gabor_003_alt gabor_020 gabor_172 gabor_037_alt "1_4_Encoding_Working_Memory_MRI_P3_LR_Salient_DoChange_CuedRetrieval_300_300_399_9601_3000_14400_gabor_patch_orientation_003_020_172_037_target_position_1_4_retrieval_position_1" gabor_053_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_4_Retrieval_Working_Memory_MRI_P3_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_053_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
65 71 292 292 399 125 11543 2992 12342 fixation_cross gabor_029 gabor_082 gabor_064 gabor_049 gabor_029_alt gabor_082 gabor_064 gabor_049_alt "1_5_Encoding_Working_Memory_MRI_P3_LR_Salient_DoChange_UncuedRetriev_300_300_399_11601_3000_12400_gabor_patch_orientation_029_082_064_049_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_111_framed gabor_circ blank blank blank blank fixation_cross_white "1_5_Retrieval_Working_Memory_MRI_P3_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_111_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
79 85 292 292 399 125 11543 2992 14342 fixation_cross gabor_127 gabor_159 gabor_041 gabor_021 gabor_127_alt gabor_159_alt gabor_041 gabor_021 "1_6_Encoding_Working_Memory_MRI_P3_LR_Salient_DoChange_CuedRetrieval_300_300_399_11601_3000_14400_gabor_patch_orientation_127_159_041_021_target_position_1_2_retrieval_position_1" gabor_082_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_6_Retrieval_Working_Memory_MRI_P3_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_082_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
94 99 292 292 399 125 9543 2992 12342 fixation_cross gabor_039 gabor_014 gabor_172 gabor_094 gabor_039 gabor_014_alt gabor_172_alt gabor_094 "1_7_Encoding_Working_Memory_MRI_P3_LR_Salient_NoChange_CuedRetrieval_300_300_399_9601_3000_12400_gabor_patch_orientation_039_014_172_094_target_position_2_3_retrieval_position_2" gabor_circ gabor_014_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_7_Retrieval_Working_Memory_MRI_P3_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_014_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
107 112 292 292 399 125 9543 2992 12342 fixation_cross gabor_095 gabor_141 gabor_021 gabor_065 gabor_095 gabor_141_alt gabor_021 gabor_065_alt "1_8_Encoding_Working_Memory_MRI_P3_LR_Salient_NoChange_CuedRetrieval_300_300_399_9601_3000_12400_gabor_patch_orientation_095_141_021_065_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_065_framed blank blank blank blank fixation_cross_white "1_8_Retrieval_Working_Memory_MRI_P3_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_065_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
120 126 292 292 399 125 11543 2992 12342 fixation_cross gabor_133 gabor_014 gabor_149 gabor_061 gabor_133_alt gabor_014 gabor_149_alt gabor_061 "1_9_Encoding_Working_Memory_MRI_P3_LR_Salient_NoChange_CuedRetrieval_300_300_399_11601_3000_12400_gabor_patch_orientation_133_014_149_061_target_position_1_3_retrieval_position_1" gabor_133_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_9_Retrieval_Working_Memory_MRI_P3_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_133_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
134 139 292 292 399 125 9543 2992 12342 fixation_cross gabor_112 gabor_175 gabor_147 gabor_127 gabor_112 gabor_175_alt gabor_147 gabor_127_alt "1_10_Encoding_Working_Memory_MRI_P3_LR_Salient_NoChange_UncuedRetriev_300_300_399_9601_3000_12400_gabor_patch_orientation_112_175_147_127_target_position_2_4_retrieval_position_1" gabor_112_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_10_Retrieval_Working_Memory_MRI_P3_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_112_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
147 152 292 292 399 125 9543 2992 12342 fixation_cross gabor_097 gabor_056 gabor_143 gabor_177 gabor_097 gabor_056 gabor_143_alt gabor_177_alt "1_11_Encoding_Working_Memory_MRI_P3_LR_Salient_DoChange_CuedRetrieval_300_300_399_9601_3000_12400_gabor_patch_orientation_097_056_143_177_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_008_framed gabor_circ blank blank blank blank fixation_cross_white "1_11_Retrieval_Working_Memory_MRI_P3_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_008_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
160 165 292 292 399 125 9543 2992 14342 fixation_cross gabor_156 gabor_016 gabor_121 gabor_089 gabor_156_alt gabor_016 gabor_121_alt gabor_089 "1_12_Encoding_Working_Memory_MRI_P3_LR_Salient_NoChange_UncuedRetriev_300_300_399_9601_3000_14400_gabor_patch_orientation_156_016_121_089_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_089_framed blank blank blank blank fixation_cross_white "1_12_Retrieval_Working_Memory_MRI_P3_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_089_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
174 179 292 292 399 125 9543 2992 12342 fixation_cross gabor_139 gabor_069 gabor_088 gabor_114 gabor_139_alt gabor_069 gabor_088 gabor_114_alt "1_13_Encoding_Working_Memory_MRI_P3_LR_Salient_NoChange_CuedRetrieval_300_300_399_9601_3000_12400_gabor_patch_orientation_139_069_088_114_target_position_1_4_retrieval_position_1" gabor_139_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_13_Retrieval_Working_Memory_MRI_P3_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_139_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
187 192 292 292 399 125 9543 2992 14342 fixation_cross gabor_111 gabor_144 gabor_175 gabor_002 gabor_111_alt gabor_144 gabor_175_alt gabor_002 "1_14_Encoding_Working_Memory_MRI_P3_LR_Salient_DoChange_CuedRetrieval_300_300_399_9601_3000_14400_gabor_patch_orientation_111_144_175_002_target_position_1_3_retrieval_position_1" gabor_063_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_14_Retrieval_Working_Memory_MRI_P3_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_063_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
201 207 292 292 399 125 11543 2992 14342 fixation_cross gabor_010 gabor_074 gabor_125 gabor_093 gabor_010_alt gabor_074 gabor_125 gabor_093_alt "1_15_Encoding_Working_Memory_MRI_P3_LR_Salient_DoChange_CuedRetrieval_300_300_399_11601_3000_14400_gabor_patch_orientation_010_074_125_093_target_position_1_4_retrieval_position_1" gabor_145_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_15_Retrieval_Working_Memory_MRI_P3_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_145_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 20600;
code = "BaselinePost";
#port_code = 2;
}; |
98c18bae68e5efc3cc263a0832c953b667ade66d | 4fb238a760c6455db1aff7bb230317e175011b4a | /ScilabFichiers/graphDiesel.sce | 8bb0b5e086d9bcd64c59e3561da400105ff0f73c | [] | no_license | Abdel-Malik/scilabBSFC | 90feaf817c2bb1367fc2a8b97399b1b9fc3693ba | 2b5ffe850f8b66af6e387672ef5d805e963746ec | refs/heads/master | 2020-12-02T16:25:39.167882 | 2017-07-25T16:11:56 | 2017-07-25T16:11:56 | 96,550,494 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,546 | sce | graphDiesel.sce | //Acquisition des points
nbPoints = 11;
nbPtsConso = 10;
//Points pour moindres carrés
K = [178,196,214,230,246,261,263,264,265,264,261];
ptsConso = [193,190,189,188,189,191,193,195,198,201];
function X = moindresCarres(x,y,n)
A = [x,ones(size(x,1),1)];
xT = x;
for i = (2:1:n)
xT = xT.*x;
A = [xT A]
end
X = inv(A'*A)*A'*y;
endfunction
function res = donnees(n,K)
for i = linspace(1,n,n)
res1(i) = 1000+(100*i);
res2(i) = K(i);
end
res = [res1 res2];
endfunction
function y = afficheCourbe1(a,n)
plot(a(:,1),a(:,2));
zoom_rect([400 0 2600 300]);
endfunction
function y = fMC(x,X)
l = size(X,1)
y = zeros(1,size(x,2))
xT = ones(1,size(x,2))
for i = linspace(l,1,l)
y = y+xT*X(i);
xT = xT.*x;
end
endfunction
//calcul courbe de degré d par les moindres carrés
matConsoMdreCre = donnees(nbPtsConso,ptsConso);
matPuissMdreCre = donnees(nbPoints,1000*K);
x = matConsoMdreCre(:,1);
x2 = matPuissMdreCre(:,1);
y = matConsoMdreCre(:,2);
y2 = matPuissMdreCre(:,2);
degre = 2;
X = moindresCarres(x,y,degre);
X2 = moindresCarres(x2,y2,degre);
//afficheCourbe1(matPuissMdreCre,nbPoints)
//ech = linspace(0,2500,500);
//couple = ((30/%pi)*fMC(ech,X2))./ech;
//plot(ech,fMC(ech,X2),'g')
//plot(ech,couple,'b')
function res = ff(x,y)
res = 200+((x/1100-1).^2)+15*(1670/Y)+(x.*(y/1500))/1900;
endfunction
rpm = linspace(0,2500,200)
c = linspace(0,1700,200);
x = rpm;
y = c;
[X,Y] = meshgrid(x,y);
Z = ff(X,Y);
grayplot(x,y,Z);
|
1623eb9b365bdc3342bdbf9ab044c1195eb2867e | 449d555969bfd7befe906877abab098c6e63a0e8 | /42/CH14/EX14.1/sadiku_14_1.sce | 4b5cc8994d2f86b7d7e4dba154c83bf59a11b344 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 262 | sce | sadiku_14_1.sce | clear;
clc;
S11=.85*(cosd(-30)+%i*sind(-30));
S12=.07*(cosd(56)+%i*sind(56));
S21=1.68*(cosd(120)+%i*sind(120));
S22=.85*(cosd(-40)+%i*sind(-40));
Zl=75,Zo=75;
Tl=(Zl-Zo)/(Zl+Zo);
Ti=S11+ (S12*S21*Tl)/(1-S22*Tl);
disp(Ti,'Input reflection coefficient=') |
ef3e41d019cc8ce4fce4ca398aaf58bdb6abedd8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /162/CH7/EX7.2/example72.sce | fbfbcf00e0e67884436d1e7cb3c7683e5d697c48 | [] | 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 | 209 | sce | example72.sce | //Example 7.2
//Convolution of two periodic signals
clc;
x1=[1,2,3,4];
x2=[3,1,1,3];
X1=fft(x1,-1);
X2=fft(x2,-1);
X3=X1.*X2;
x3=fft(X3,1);
disp(x3,'Convolution of the two given periodic signals is'); |
aa05148d9bc59babf9b43160a01a4bdb4095e7bf | 449d555969bfd7befe906877abab098c6e63a0e8 | /14/DEPENDENCIES/pucalc.sci | c63d3c0c6cea7922369cba58fae9de8075f54f00 | [] | 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 | 266 | sci | pucalc.sci | //x2 = pucalc(pu_Z_given,base_kV_given,base_kV_new,base_kVA_new,base_kVA_given)
function [X11]=pucalc(pu_Z_given,base_kV_given,base_kV_new,base_kVA_new,base_kVA_given)
X11=(pu_Z_given * (base_kV_given/base_kV_new)^2 * (base_kVA_new/base_kVA_given));
endfunction
|
ac23ed1e73ee3dc7f3f5e82a4b2fdd23646a09f6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /10/CH9/EX3/cha9_3.sce | 6597395f636348e09962487d19353c39a5edd4e3 | [] | 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 | 802 | sce | cha9_3.sce | Xd=0.9;Vt=1;Ia=1;Xd1=0.4;Xd2=0.2;Ta=0.2;
Td1=4;Td2=0.6;t=0.1;
function[x,y]=polar2rect(r,theta)
x=r*cos(theta*%pi/180);
y=r*sin(theta*%pi/180);
endfunction
[x,y]=polar2rect(Ia,-25.8)
X=x+%i*y
[x1,y1]=polar2rect(Xd,90)
X1=x1+%i*y1
A=Vt+(X*X1)
function[x,y]=polar2rect(r,theta)
x=r*cos(theta*%pi/180);
y=r*sin(theta*%pi/180);
endfunction
[Ei,Angle]=rect2polar(1.39,0.81)
[x,y]=polar2rect(Ia,-25.8)
X=x+%i*y
[x2,y2]=polar2rect(Xd1,90)
X2=x2+%i*y2
[Ei2,Angle1]=rect2polar(1.17,0.36)
[x,y]=polar2rect(Ia,-25.8)
X=x+%i*y
[x3,y3]=polar2rect(Xd2,90)
X3=x3+%i*y3
[Ei2,Angle2]=rect2polar(1.08,0.10)
Idc=sqrt(2)*(Ei2/Xd2)
Td1=(Xd1/Xd)*Td1
Td2=(Xd2/Xd1)*Td2
Isc=sqrt(2)*(Td1+1.29*%e^(-0.562*0.1)+2.42*%e^(-3.3*0.1))+7.78*%e^(-5*0.1)
|
2da5604ed9047169f5085d66193eb2a1f9fba8c2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2318/CH2/EX2.10/ex_2_10.sce | f36917a9f07e2496257b36cf20abe2e6f04ba3c5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 685 | sce | ex_2_10.sce | //Example 2.10://load impedance and combination impedance
clc;
clear;
close;
v3=80;//volts
i=4;//amperes
zl=v3/i;//ohms
v1=140;//volts
z=v1/i;//ohms
disp(zl,"load impedance in ohm is")
disp(z,"impedance of combination in ohm is")
v2=75;//volts (it is given 72 in the textbook)
r=v2/i;//
pl=((v1^2-v2^2-v3^2)/(2*r));//watts
pr=i^2*r;//watts
disp(pl,"power absorbed by the load is,(W)=")
disp(pr,"power absorbed by the non inductive resistor is,(W)=")
pfl=((v1^2-v2^2-v3^2)/(2*v2*v3));//power factor of the load
tp=pr+pl;//total power in watts
pfc=tp/(v1*i);//power factor
format('v',5)
disp(pfl,"power factor of load is")
format('v',4)
disp(pfc,"power factor of the whole circuit is")
|
d1f57ea1d10ff0566fe9ea70b109c8a3395eb123 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1385/CH13/EX13.14/13_14.sce | 20f3c269129fe6cb9d4277322676764210ae7535 | [] | 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 | 270 | sce | 13_14.sce | clc
//initialisation of variables
T= 25 //C
F= 1160 //cal
P= 0.1 //atm
P1= 1 //atm
R= 2 //cal/mole K
//CALCULATIONS
F1= F+R*(273+T)*log(P/P1^2)
F2= F+R*(273+T)*log(P1/P^2)
//RESULTS
printf (' value of F = %.f cal',F1)
printf (' \n value of F = %.f cal',F2)
|
d39c493550a72eaea214e058b62f0eddb31553a4 | c4dc71508b28a2e15187e1b742173168eda9ab86 | /rango.sce | 970a7f0570dc82a742edfc98aa59ba9e6a9e4286 | [] | no_license | ximarx/calcolo-numerico | 103fc59093a2688e8d6224ecdf21d0ce9f3768e3 | bca493091417b8f27131a59a2b3a20c30e31b90f | refs/heads/master | 2020-06-06T05:34:35.065166 | 2012-06-23T06:39:27 | 2012-06-23T06:39:27 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 739 | sce | rango.sce | function n=rango(A)
// calcola il rango di una matrice generica utilizzando la scomposizione
// LU con pivot (solo se necessario)
// INPUT:
// - A: matrice
// OUTPUT:
// - n: valore del rango
[L,U,P] = fatt_lu_pivot_gen(A)
// in realta mi serve solo U per calcolare il rango
// il rango e' uguale al numero righe nn nulle
// di una matrice a scalini
[rows,cols] = size(U)
n=0
for k=1:rows
[v,p]=max(abs(U(k,1:cols)))
if v ~= 0,
// se la riga nn e' vuota, allora rango++
n=n+1
else
// se la riga e' vuota, allora tutte le altre
// righe sono indifferenti al fine del calcolo
// del rango (poiche U e' a scalini)
break;
end
end
endfunction |
26bf4c4a06e1796b465d2376516aba0db280a1fd | 449d555969bfd7befe906877abab098c6e63a0e8 | /2510/CH13/EX13.12/Ex13_12.sce | 412ce1ace68cdf1e36029bd9d249e29052bcec8a | [] | 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 | 329 | sce | Ex13_12.sce | //Variable declaration:
//From example 13.11:
W_in = 40.0 //Change in enthalpy across the compressor (kJ/kg)
QC = 160.0 //Heat absorbed by the evaporator (kJ/kg)
//Calculation:
COP = QC/W_in //Refrigerator’s C.O.P.
//Result:
printf("the refrigerators C.O.P. is : %.0f .",COP)
|
c53f2337cd62a13ceb8b2f05916a0a071ccd4b43 | 449d555969bfd7befe906877abab098c6e63a0e8 | /671/CH2/EX2.10/2_10.sce | db054fd7e5b717e4cb7c3c1a17648e8962c63740 | [] | 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 | 150 | sce | 2_10.sce | //converting 9v voltage source to current source
I=9/0.45
I=I-7
//KCLs
A=[1/0.45+1/10,-1/10 ; 0.2-1/10,1/10-0.2]
V=inv(A)*[-18;5]
disp(V(2)) |
403cbb579a15fb8b8cb3b963bec07d79aaf4556b | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.11_16.tst | 65993511abf2a215ddc5e47fd692f9cbdcc3f8fe | [] | 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 | 803,051 | tst | 5.11_16.tst | 11 1:1 60:1 148:1 627:1 984:1 1130:1 1437:1 1480:1 1726:2 1730:1 1739:1 1883:2 1980:1 2019:1 2073:1 2263:1 2269:1 2381:1 2482:1 2587:1 2647:2 2720:1 2753:1 2821:1 3080:1 3353:1 3379:1 3578:1 3769:1 3930:1 3990:1 4011:1 4245:1 4289:1 4306:1 4351:1 4667:1 4684:1 4767:2 5365:1 5369:1 5562:2 5596:1 5718:1 5750:2 5898:1 6181:1 6305:1 6418:1 6508:1 7211:1 7218:1 7435:1 7535:1 7574:1 7745:1 7912:1 8155:1 8277:1 8302:1 8631:1 8702:1 8728:1 8886:1 8909:1 9221:1 9507:1 9544:1 9642:1 9842:1 10027:2 10376:1 10517:1 10752:1 11030:1 11067:1 11188:1 11231:1 11276:1 11302:1 11383:1 11488:1 11842:1 12039:1 12109:1 12154:1 12274:1 12935:1 13142:1 13220:1 13473:1 13718:1 14318:1 14518:1 14640:1 14858:1 15039:1 15125:1 15293:1 15429:1 15489:1 15811:1 16433:1 17187:1 17448:1 17479:1 17673:1 17860:1 18053:1 18195:1 18214:1 18319:1 18738:1 18777:1 18785:1 18919:1 19062:1 19320:1 19452:1 19583:1 19666:1 19776:1 19809:1 19850:1 20007:1 21047:97 21173:1 21827:1 21921:1 22095:1 22301:1 22617:1 22815:1 23002:1 23415:1 23736:1 23773:1 23927:1 24024:1 24262:1 24366:1 24493:1 24504:1 24542:1 24636:1 24698:1 24933:2 25133:1 25156:1 25245:1 25526:1 25595:1 25674:1 26019:1 26158:1 26263:1 26502:1 27196:1 27226:1 27484:1 27530:1 27603:1 27797:1 27821:1 27876:1 28635:1 28673:1 28926:1 29421:1 29559:1 29704:1 29904:1 29974:1 30297:1 30504:1 30602:1 30664:1 30704:1 30775:1 31216:1 31324:1 31665:1 31670:1 31680:2 31846:1 31877:1 32229:1 32303:1 32551:1 33148:1
11 1:1 55:1 60:1 148:1 265:1 294:1 296:1 546:1 582:1 627:1 956:1 979:1 984:1 1069:1 1130:1 1376:1 1405:1 1437:1 1480:1 1514:1 1539:1 1664:1 1726:2 1730:1 1739:1 1883:2 1980:1 1999:1 2019:1 2073:2 2098:1 2138:1 2263:1 2269:1 2301:1 2381:1 2399:1 2482:1 2553:1 2587:1 2618:1 2640:1 2647:2 2720:1 2739:1 2753:1 2821:1 2951:1 3080:1 3097:1 3116:1 3353:1 3379:1 3578:1 3755:1 3769:1 3857:1 3930:1 3990:1 4011:1 4105:1 4245:1 4289:1 4306:1 4351:1 4574:1 4667:1 4684:1 4767:2 4888:1 5045:1 5287:1 5365:1 5369:1 5562:3 5596:1 5718:1 5750:3 5898:1 6038:1 6181:1 6305:1 6418:1 6508:1 6610:1 6776:1 7211:1 7218:1 7435:1 7535:1 7574:1 7599:1 7628:1 7659:1 7745:1 7912:1 8027:1 8075:1 8155:1 8247:1 8277:2 8302:1 8432:1 8499:1 8631:1 8702:3 8728:1 8810:1 8886:1 8891:1 8901:1 8909:1 8960:1 9048:1 9186:1 9221:1 9232:2 9507:1 9544:1 9561:1 9623:1 9642:1 9654:1 9788:1 9842:1 10027:2 10349:1 10376:1 10422:1 10517:1 10554:1 10666:1 10752:1 10828:1 10846:1 11030:1 11052:1 11067:1 11188:1 11231:1 11276:1 11291:1 11302:1 11383:1 11488:1 11607:2 11842:1 11906:1 11914:1 11949:1 12039:1 12109:1 12154:1 12169:1 12274:1 12618:1 12766:1 12923:1 12935:1 13027:1 13142:1 13220:1 13473:1 13718:1 14039:1 14267:1 14318:1 14518:1 14640:1 14858:1 15039:1 15125:1 15293:1 15429:1 15483:1 15489:1 15780:1 15811:2 15820:1 16433:1 16606:1 16940:1 17045:1 17187:1 17423:1 17448:1 17479:1 17673:1 17860:1 17953:1 18049:2 18053:1 18195:1 18214:1 18234:1 18302:1 18319:1 18322:1 18332:1 18738:1 18777:1 18785:1 18821:1 18919:1 19062:1 19320:1 19452:1 19583:1 19666:1 19677:1 19776:1 19809:1 19850:1 20007:1 20104:1 20220:1 20225:1 20540:1 20742:1 20803:1 20851:1 21047:198 21173:1 21644:1 21827:1 21921:1 22095:1 22301:1 22617:1 22815:1 23002:1 23160:1 23415:1 23580:1 23736:1 23773:1 23901:1 23927:1 24024:2 24098:1 24262:1 24366:1 24493:1 24504:1 24542:1 24636:1 24698:1 24933:2 25011:1 25133:1 25156:1 25233:1 25245:1 25300:1 25337:2 25526:1 25595:1 25674:1 26019:1 26046:1 26158:1 26263:1 26320:1 26403:1 26502:1 26873:1 26967:1 26977:1 27196:1 27198:1 27226:1 27436:1 27479:1 27484:1 27530:2 27603:1 27664:2 27797:1 27821:1 27876:1 27890:1 28024:1 28064:1 28110:1 28501:1 28635:1 28643:1 28673:1 28833:1 28926:1 28948:1 29005:1 29330:1 29421:1 29515:1 29559:1 29605:1 29704:1 29904:1 29974:1 30199:1 30297:1 30471:1 30504:1 30602:1 30664:1 30704:1 30718:1 30775:1 30834:1 30867:1 30868:1 31195:1 31216:2 31324:1 31531:1 31625:1 31665:3 31670:1 31680:2 31846:1 31877:1 31962:1 32172:1 32229:1 32241:1 32244:1 32303:1 32476:1 32491:1 32551:1 33001:1 33148:1 33171:1
11 1:1 55:1 60:2 148:1 265:1 294:1 296:1 546:1 582:1 627:1 764:1 956:1 979:1 984:1 1069:1 1083:1 1118:1 1130:1 1376:1 1405:1 1437:1 1458:1 1480:1 1514:1 1539:1 1664:1 1726:2 1730:1 1739:2 1883:2 1892:1 1980:1 1999:1 2019:1 2062:1 2073:2 2098:1 2138:1 2263:1 2269:1 2301:1 2381:1 2399:1 2482:2 2521:1 2553:1 2578:1 2587:1 2618:1 2625:1 2640:1 2647:2 2720:1 2739:1 2753:1 2821:1 2896:1 2951:1 2962:1 3080:1 3097:1 3116:1 3302:1 3353:2 3379:1 3578:2 3755:1 3769:1 3857:1 3930:1 3990:1 4011:1 4047:1 4105:1 4122:1 4245:1 4289:1 4306:1 4351:1 4536:1 4574:1 4663:1 4667:1 4684:1 4763:1 4767:2 4888:1 5045:1 5143:1 5246:1 5287:1 5365:1 5369:1 5562:5 5596:1 5718:1 5735:1 5750:3 5898:1 6038:1 6150:1 6181:1 6305:1 6407:1 6418:1 6508:1 6610:1 6776:1 6795:1 7204:1 7211:1 7218:1 7435:2 7535:1 7539:1 7574:1 7599:1 7628:1 7659:1 7745:1 7879:1 7912:1 8027:1 8075:1 8089:1 8155:1 8247:1 8277:2 8302:1 8432:1 8499:1 8624:1 8630:1 8631:1 8659:1 8702:5 8728:2 8810:1 8886:1 8891:1 8901:1 8909:1 8935:2 8960:1 8982:1 9048:1 9143:1 9186:1 9221:1 9232:3 9473:1 9507:1 9544:1 9561:1 9623:1 9642:1 9648:1 9654:1 9788:1 9842:1 10027:2 10349:1 10362:1 10376:1 10389:1 10422:1 10517:1 10554:1 10666:1 10752:1 10828:1 10846:1 10972:1 11030:1 11052:1 11067:1 11188:1 11231:1 11276:1 11291:1 11302:1 11383:1 11488:1 11607:2 11656:1 11842:1 11858:1 11906:1 11914:1 11949:1 12039:1 12109:1 12154:1 12169:1 12274:1 12310:1 12379:1 12580:1 12618:1 12766:1 12923:1 12935:1 12988:1 13027:1 13142:1 13151:2 13162:2 13220:1 13264:1 13410:1 13473:1 13517:1 13718:1 13873:1 14039:1 14183:1 14267:1 14318:1 14468:1 14518:1 14640:1 14688:1 14793:1 14858:1 14870:1 15039:1 15125:1 15293:1 15333:1 15429:1 15480:1 15483:1 15489:1 15728:1 15780:1 15811:2 15820:1 16030:1 16178:1 16433:1 16606:1 16684:1 16940:1 17045:1 17187:1 17423:1 17448:1 17479:1 17586:1 17673:1 17860:1 17953:1 18049:2 18053:1 18195:1 18214:1 18234:1 18302:1 18315:1 18319:1 18322:1 18332:1 18699:1 18738:1 18777:2 18785:1 18821:1 18919:1 19062:1 19320:1 19357:1 19452:1 19583:1 19666:1 19677:1 19776:1 19809:1 19849:1 19850:1 19910:1 20007:1 20104:1 20220:1 20225:1 20237:1 20540:1 20742:1 20803:1 20814:1 20851:1 21047:271 21068:1 21173:1 21515:1 21644:1 21790:1 21808:1 21827:1 21918:1 21921:1 22020:1 22095:1 22301:1 22423:1 22617:1 22815:1 22870:1 23002:1 23160:1 23243:1 23415:1 23580:1 23736:1 23773:1 23901:1 23927:1 24024:3 24098:1 24262:1 24358:1 24366:1 24386:1 24493:1 24504:1 24542:1 24636:1 24698:1 24854:1 24933:2 25011:1 25133:1 25156:1 25233:1 25245:1 25300:1 25337:2 25494:1 25526:1 25595:1 25674:1 26019:1 26046:1 26062:1 26158:1 26263:1 26320:1 26403:1 26502:1 26872:1 26873:1 26967:1 26977:1 27196:1 27198:1 27226:1 27265:1 27436:1 27471:1 27479:1 27484:1 27489:1 27530:2 27603:1 27664:2 27797:2 27821:1 27876:1 27890:1 28024:1 28064:1 28110:1 28348:1 28501:1 28635:1 28643:1 28673:1 28833:1 28926:1 28948:1 29005:1 29330:1 29421:1 29483:1 29515:1 29559:1 29605:1 29704:1 29831:1 29904:1 29974:1 30199:1 30213:1 30297:1 30471:1 30504:3 30602:1 30664:1 30704:1 30718:1 30775:1 30776:1 30798:1 30834:1 30867:1 30868:1 30869:1 31195:1 31216:2 31324:1 31392:1 31452:1 31531:1 31625:1 31649:1 31665:4 31670:1 31680:2 31846:1 31877:1 31962:1 32117:1 32172:1 32229:1 32241:1 32244:2 32303:1 32476:1 32491:1 32551:1 33001:1 33084:1 33148:1 33171:1 33226:1
11 1:1 39:1 55:1 60:2 99:1 148:1 265:1 294:1 296:1 403:1 411:1 446:1 507:1 546:1 582:1 627:1 764:1 790:1 815:1 937:1 956:1 979:1 984:1 1069:1 1083:1 1118:1 1130:1 1236:1 1244:1 1376:1 1392:1 1393:1 1405:1 1415:1 1437:1 1458:1 1465:1 1480:1 1514:1 1539:1 1664:1 1726:2 1730:2 1739:3 1751:1 1793:1 1808:1 1837:1 1839:1 1883:2 1892:1 1980:1 1999:1 2019:1 2061:1 2062:1 2073:2 2098:1 2113:1 2118:1 2138:1 2195:1 2263:1 2269:1 2301:1 2381:1 2399:1 2482:2 2521:1 2553:1 2555:1 2578:1 2587:1 2618:1 2625:1 2640:1 2647:2 2648:1 2657:2 2662:1 2720:1 2739:1 2753:1 2784:1 2821:1 2868:1 2896:1 2918:1 2951:1 2962:1 3051:1 3059:1 3080:2 3097:1 3116:1 3157:1 3284:1 3295:1 3302:1 3352:1 3353:2 3364:1 3377:1 3379:1 3408:1 3578:2 3683:1 3726:1 3755:1 3769:1 3822:1 3857:1 3930:1 3968:1 3990:1 4011:1 4047:1 4105:1 4122:1 4160:1 4245:1 4253:1 4288:3 4289:1 4306:2 4332:1 4351:1 4536:1 4574:1 4609:1 4663:1 4667:1 4684:1 4727:1 4763:1 4767:2 4888:1 4989:1 5045:1 5143:2 5168:1 5198:1 5246:1 5287:1 5340:1 5365:1 5369:1 5562:9 5596:1 5718:1 5735:1 5750:3 5752:1 5811:1 5868:1 5898:1 6038:1 6150:1 6169:1 6181:1 6305:2 6385:1 6397:1 6407:1 6412:1 6418:2 6428:1 6459:3 6480:1 6508:2 6558:1 6581:1 6610:1 6688:1 6776:1 6795:1 6944:1 7196:1 7204:1 7207:1 7210:1 7211:2 7218:1 7435:2 7535:1 7539:1 7574:1 7599:1 7628:1 7659:1 7745:1 7879:1 7912:1 8027:1 8075:1 8089:1 8155:1 8247:1 8277:2 8302:1 8340:1 8417:1 8432:1 8499:1 8624:1 8630:1 8631:1 8659:1 8688:1 8689:1 8702:9 8726:1 8728:2 8810:1 8886:1 8891:1 8901:1 8909:1 8935:3 8960:1 8982:1 9048:1 9143:1 9186:1 9221:2 9232:4 9473:1 9507:1 9544:1 9561:1 9623:1 9642:1 9644:1 9648:1 9654:1 9788:1 9842:1 9901:1 10027:2 10307:2 10349:1 10362:1 10376:1 10389:1 10422:1 10436:1 10517:1 10554:1 10648:1 10666:1 10752:1 10828:1 10846:1 10972:1 11030:1 11052:1 11067:1 11170:1 11188:1 11231:1 11276:1 11291:1 11302:1 11342:1 11383:2 11488:1 11517:1 11607:2 11656:1 11690:1 11784:1 11842:1 11858:1 11906:1 11914:1 11949:1 12015:1 12039:1 12109:1 12154:1 12169:1 12274:1 12310:1 12336:3 12379:1 12580:1 12618:2 12766:1 12805:1 12865:1 12923:1 12935:1 12988:1 13027:1 13050:1 13089:1 13128:2 13142:1 13151:3 13162:4 13196:1 13220:1 13231:1 13264:1 13302:1 13308:1 13410:1 13443:1 13473:2 13517:1 13527:1 13553:1 13606:1 13718:1 13742:1 13873:1 14039:1 14183:1 14267:1 14281:1 14318:2 14319:1 14345:1 14468:1 14473:1 14489:1 14518:1 14581:1 14640:1 14688:1 14781:1 14793:1 14854:1 14858:1 14870:1 14891:1 14907:1 14935:1 14975:1 15039:1 15125:1 15281:1 15293:1 15333:1 15429:1 15480:1 15483:1 15489:1 15728:1 15780:1 15811:2 15820:1 15960:1 16021:1 16030:1 16043:1 16178:1 16189:1 16330:1 16355:1 16411:1 16433:1 16508:1 16559:1 16566:1 16606:1 16684:1 16846:1 16940:1 17045:1 17187:1 17423:3 17448:1 17479:1 17586:1 17673:1 17689:1 17695:1 17729:1 17758:1 17830:1 17860:1 17880:1 17953:2 18049:2 18053:1 18148:1 18195:2 18214:1 18234:1 18236:1 18281:1 18302:1 18315:1 18319:2 18322:1 18332:1 18697:1 18699:1 18738:1 18777:2 18785:1 18821:1 18919:1 19029:2 19062:2 19103:1 19276:1 19320:1 19357:1 19452:1 19583:1 19666:1 19677:1 19758:1 19776:1 19781:1 19809:1 19843:1 19849:1 19850:1 19872:1 19910:1 19951:1 20007:2 20104:1 20220:1 20225:1 20237:1 20309:1 20525:1 20540:1 20742:1 20803:1 20814:1 20851:1 20895:1 21047:377 21068:1 21173:2 21205:1 21291:1 21515:1 21585:1 21601:1 21644:1 21709:1 21790:1 21808:1 21827:1 21874:1 21883:1 21895:1 21918:1 21921:2 21966:1 22020:1 22045:1 22072:3 22095:1 22138:1 22235:1 22301:1 22404:1 22423:1 22503:1 22617:1 22815:1 22870:1 22889:1 23002:1 23147:1 23160:1 23243:1 23415:1 23416:1 23490:1 23556:1 23580:1 23736:1 23773:1 23901:1 23927:1 23985:1 24024:4 24098:1 24205:1 24262:2 24289:1 24358:1 24366:2 24386:1 24493:1 24504:1 24542:1 24550:1 24636:1 24685:1 24698:1 24854:1 24933:2 24969:1 25011:1 25133:1 25156:1 25167:1 25233:1 25245:1 25300:1 25337:2 25364:1 25454:1 25494:1 25526:1 25552:1 25569:1 25595:1 25674:1 26019:1 26032:1 26046:1 26062:1 26088:1 26158:1 26263:1 26320:1 26329:1 26403:1 26502:2 26581:1 26689:1 26872:1 26873:1 26967:1 26977:1 27196:2 27198:1 27226:1 27265:1 27300:1 27436:1 27466:1 27471:1 27479:1 27484:1 27489:1 27508:1 27530:2 27603:1 27664:2 27692:1 27797:3 27799:1 27821:1 27876:1 27890:1 28024:1 28064:1 28110:1 28348:1 28382:3 28501:1 28533:1 28593:1 28635:1 28643:1 28673:1 28809:1 28833:1 28884:1 28926:1 28948:1 29005:1 29330:1 29351:1 29421:1 29483:1 29485:1 29515:1 29559:1 29605:1 29654:1 29704:1 29735:1 29745:1 29831:1 29839:1 29904:1 29974:1 30040:1 30199:1 30213:1 30297:1 30380:1 30471:1 30504:3 30602:1 30664:2 30704:1 30710:1 30718:1 30775:1 30776:1 30789:1 30798:1 30834:1 30867:1 30868:1 30869:1 30968:1 31042:1 31057:1 31107:1 31130:1 31195:1 31216:2 31324:1 31392:1 31452:1 31459:1 31531:2 31625:1 31649:1 31665:4 31670:1 31680:2 31750:1 31846:1 31877:1 31962:1 31998:1 32070:1 32117:1 32172:1 32229:1 32241:1 32244:2 32303:1 32451:1 32476:1 32491:1 32551:1 32625:1 32661:1 32713:1 32722:1 32824:1 32900:1 32956:1 33001:1 33075:1 33084:1 33143:1 33148:1 33155:1 33171:1 33211:1 33220:1 33226:1
11 1:1 39:1 55:1 60:2 86:1 99:1 148:1 265:1 294:1 296:1 401:1 403:1 411:2 446:1 507:1 546:1 582:1 627:1 764:1 790:1 815:1 937:1 956:1 979:1 984:1 1003:1 1069:1 1083:1 1118:1 1130:2 1211:1 1236:1 1244:1 1376:1 1392:1 1393:1 1405:1 1415:1 1437:1 1452:1 1458:1 1465:1 1480:1 1514:1 1539:1 1664:1 1726:2 1730:3 1739:4 1751:1 1793:1 1807:1 1808:1 1837:1 1839:2 1883:2 1892:1 1980:1 1999:1 2019:1 2061:1 2062:1 2073:2 2098:1 2113:1 2118:1 2138:1 2169:1 2195:1 2263:1 2269:1 2279:1 2301:1 2355:1 2381:1 2399:1 2482:2 2521:1 2553:1 2555:1 2578:2 2583:1 2587:1 2618:1 2623:1 2625:1 2631:1 2640:1 2647:2 2648:1 2657:2 2662:1 2720:1 2739:1 2753:1 2774:1 2784:1 2821:1 2868:1 2896:1 2918:1 2951:1 2962:1 2993:1 3051:1 3059:1 3080:2 3097:1 3116:1 3157:1 3284:1 3295:1 3302:2 3352:1 3353:2 3364:1 3377:1 3379:1 3408:1 3550:1 3578:2 3683:1 3726:1 3755:1 3769:1 3816:1 3822:1 3857:1 3930:1 3942:1 3968:1 3990:1 4011:1 4047:2 4105:1 4122:1 4160:1 4193:1 4195:1 4245:1 4253:2 4288:3 4289:1 4306:2 4332:1 4351:1 4511:1 4536:1 4545:2 4574:1 4609:1 4637:1 4663:1 4667:1 4684:1 4727:1 4763:2 4767:2 4888:1 4936:1 4989:1 5045:1 5143:3 5162:1 5168:1 5198:1 5246:1 5269:1 5287:1 5340:1 5365:1 5369:1 5562:10 5596:1 5689:1 5718:1 5735:1 5750:3 5752:1 5770:1 5811:1 5868:1 5898:1 6038:1 6108:1 6150:2 6169:1 6181:1 6305:2 6335:1 6345:1 6385:1 6397:1 6407:1 6412:1 6418:2 6428:1 6459:3 6480:1 6508:2 6558:1 6581:2 6610:1 6688:1 6776:1 6795:1 6806:1 6816:1 6944:1 7196:1 7204:1 7207:1 7210:1 7211:2 7218:2 7435:2 7535:1 7539:1 7574:1 7599:1 7628:1 7659:1 7745:1 7867:1 7879:2 7912:1 7956:1 8027:1 8075:1 8089:2 8155:1 8247:1 8277:2 8302:1 8340:1 8413:1 8417:2 8432:1 8499:1 8562:1 8611:1 8624:2 8630:1 8631:1 8659:1 8688:1 8689:1 8702:12 8726:1 8728:2 8767:1 8810:1 8886:1 8891:1 8901:1 8909:1 8935:4 8960:1 8974:1 8982:2 9048:1 9143:1 9186:1 9221:2 9232:4 9473:1 9507:1 9544:1 9561:1 9623:1 9642:1 9644:1 9648:1 9654:1 9788:1 9842:1 9901:1 9942:1 10022:1 10027:2 10307:2 10349:1 10362:1 10376:1 10389:1 10422:1 10436:1 10517:1 10518:1 10554:1 10643:1 10648:1 10666:1 10732:1 10752:1 10828:1 10846:1 10972:1 11030:1 11052:1 11067:1 11119:1 11141:1 11170:1 11175:1 11188:1 11231:1 11276:1 11291:1 11302:1 11342:1 11383:2 11448:1 11488:1 11517:2 11607:2 11656:1 11660:1 11674:1 11690:1 11695:1 11784:1 11842:1 11858:1 11906:2 11914:1 11949:1 12015:1 12039:1 12109:1 12154:1 12169:2 12255:1 12274:1 12310:1 12327:1 12336:3 12339:1 12379:1 12580:1 12618:2 12766:1 12805:1 12814:1 12865:1 12923:1 12933:1 12935:1 12988:2 13015:1 13027:1 13050:1 13088:1 13089:1 13128:2 13142:1 13151:4 13162:5 13196:1 13220:1 13231:1 13264:1 13285:1 13302:1 13308:1 13410:1 13443:1 13448:1 13473:2 13517:1 13527:1 13553:2 13600:1 13606:2 13684:1 13685:1 13690:1 13718:1 13742:1 13873:1 14039:1 14183:1 14267:1 14281:1 14318:2 14319:1 14345:1 14380:1 14468:1 14473:2 14489:1 14518:1 14581:1 14640:1 14658:1 14688:1 14781:1 14793:2 14854:1 14858:1 14870:1 14877:1 14891:1 14907:1 14935:1 14975:1 14980:1 15039:2 15125:1 15215:1 15281:1 15293:1 15333:1 15429:1 15480:1 15483:1 15489:1 15543:1 15616:1 15728:2 15780:1 15811:2 15820:1 15959:1 15960:1 15996:1 16021:1 16030:1 16043:1 16178:1 16189:1 16254:1 16330:1 16355:1 16411:1 16433:1 16457:1 16508:1 16559:1 16566:1 16606:1 16684:2 16721:1 16832:1 16846:1 16860:1 16884:1 16904:1 16940:1 16990:1 17045:1 17046:1 17048:1 17187:1 17219:1 17379:1 17423:3 17448:1 17479:1 17586:1 17673:1 17689:1 17695:1 17729:1 17758:1 17784:1 17830:2 17860:1 17880:1 17953:2 18049:2 18053:1 18148:1 18195:2 18214:1 18234:1 18236:1 18273:1 18281:1 18302:1 18315:1 18319:2 18322:1 18332:1 18401:1 18697:1 18699:1 18738:1 18777:2 18785:1 18799:1 18821:1 18919:1 19029:2 19062:2 19069:1 19103:1 19248:1 19276:1 19320:1 19357:1 19452:1 19509:1 19583:1 19666:1 19677:1 19758:1 19772:2 19776:1 19781:1 19809:1 19843:1 19849:1 19850:1 19867:1 19872:1 19910:1 19951:1 20007:2 20085:1 20095:1 20104:1 20220:1 20225:1 20237:1 20239:1 20309:1 20391:1 20525:1 20540:1 20742:2 20803:1 20814:1 20851:1 20895:1 20949:1 21047:523 21068:2 21079:1 21173:2 21205:1 21291:1 21515:2 21571:1 21585:1 21601:1 21644:1 21709:1 21790:1 21808:1 21827:1 21874:1 21883:1 21895:1 21918:1 21921:2 21966:1 21992:1 22020:2 22045:1 22072:3 22095:1 22138:1 22235:1 22301:1 22404:1 22423:1 22503:1 22586:1 22617:1 22815:1 22870:1 22889:1 23002:1 23147:1 23160:1 23243:1 23390:1 23415:1 23416:1 23490:1 23504:1 23532:1 23550:1 23556:1 23580:1 23617:1 23736:1 23745:1 23773:1 23901:1 23917:1 23927:1 23985:1 24024:4 24098:1 24195:1 24205:1 24226:1 24262:2 24274:1 24289:1 24358:1 24366:2 24373:1 24386:1 24427:1 24493:2 24504:1 24542:2 24550:1 24636:1 24685:2 24698:1 24854:1 24907:1 24933:2 24943:1 24969:1 25011:1 25077:1 25133:1 25156:1 25167:1 25224:1 25233:1 25245:1 25300:1 25337:2 25364:1 25454:1 25494:2 25513:1 25526:1 25552:1 25569:1 25595:1 25600:1 25666:1 25674:1 25678:1 26019:1 26032:1 26046:1 26062:1 26088:1 26150:1 26158:1 26263:1 26320:1 26329:1 26403:1 26502:2 26557:1 26581:1 26584:1 26689:1 26726:1 26872:2 26873:1 26932:1 26967:1 26977:1 27100:1 27196:2 27198:1 27226:1 27265:1 27300:1 27336:1 27365:1 27429:1 27436:1 27460:1 27466:1 27471:1 27479:1 27484:1 27489:1 27496:1 27508:1 27530:2 27580:1 27603:1 27664:2 27692:1 27797:4 27799:1 27821:1 27876:1 27890:1 27912:1 27994:1 28024:1 28064:1 28110:1 28113:1 28348:2 28349:1 28382:3 28501:1 28533:1 28593:1 28635:1 28643:1 28673:1 28809:1 28833:1 28884:1 28926:1 28948:1 29005:1 29298:1 29330:1 29351:1 29421:1 29483:1 29485:1 29515:1 29535:1 29559:1 29605:1 29632:1 29654:1 29704:1 29735:1 29745:1 29831:2 29839:1 29904:1 29974:1 30040:1 30052:1 30156:1 30199:1 30213:2 30249:1 30297:1 30342:1 30380:1 30431:1 30471:1 30504:3 30602:1 30664:2 30685:1 30689:1 30704:1 30710:1 30718:1 30775:1 30776:1 30789:1 30798:2 30805:1 30834:1 30864:1 30867:1 30868:1 30869:1 30895:1 30908:2 30968:1 31042:1 31057:1 31107:1 31130:1 31161:1 31195:1 31216:2 31324:1 31360:1 31392:1 31404:1 31422:1 31452:2 31459:1 31531:2 31625:1 31649:1 31665:4 31670:1 31680:2 31686:1 31688:1 31750:1 31834:1 31846:1 31877:1 31962:1 31998:1 32009:1 32070:1 32117:1 32172:1 32229:1 32241:1 32244:2 32303:1 32407:1 32451:1 32476:1 32491:1 32551:1 32625:1 32661:1 32713:1 32722:1 32824:1 32885:1 32900:1 32956:1 33001:1 33059:1 33075:1 33084:1 33143:1 33148:1 33155:1 33171:1 33211:1 33220:1 33226:1 33267:1
11 1:1 39:1 55:1 60:2 86:1 99:1 148:1 187:1 238:1 265:1 294:1 296:1 401:1 403:1 411:2 446:1 507:1 546:1 582:1 627:1 759:1 764:1 790:1 815:1 937:1 956:1 979:1 984:1 1003:1 1069:1 1083:1 1103:1 1118:1 1130:2 1211:1 1236:1 1239:1 1244:1 1262:1 1376:1 1392:1 1393:1 1405:1 1415:1 1437:1 1452:1 1458:1 1465:1 1480:1 1504:1 1514:1 1539:1 1664:1 1726:3 1730:5 1739:6 1751:1 1793:1 1807:1 1808:1 1837:2 1839:2 1878:1 1883:3 1892:1 1980:1 1999:1 2019:1 2061:1 2062:1 2073:2 2098:1 2113:1 2118:1 2119:1 2138:1 2169:1 2195:1 2263:1 2269:1 2279:1 2301:1 2317:1 2355:1 2381:1 2399:1 2482:3 2502:1 2521:1 2525:1 2530:1 2553:1 2555:1 2558:1 2562:1 2578:2 2583:1 2587:1 2618:1 2623:1 2625:1 2631:1 2640:1 2647:3 2648:1 2657:2 2662:1 2720:1 2739:1 2753:1 2774:1 2784:1 2801:1 2821:1 2868:1 2896:1 2905:1 2918:1 2951:1 2962:1 2993:1 3033:1 3051:1 3059:1 3080:2 3097:1 3116:1 3157:1 3173:1 3284:1 3295:1 3302:2 3352:1 3353:2 3364:1 3369:1 3377:1 3379:1 3408:1 3550:1 3578:2 3683:1 3726:1 3755:1 3769:1 3816:1 3822:1 3857:1 3930:1 3942:1 3968:1 3990:1 4011:1 4012:1 4035:1 4047:2 4074:1 4105:1 4122:1 4160:1 4193:2 4195:1 4245:1 4253:2 4288:3 4289:1 4306:2 4332:1 4351:1 4511:1 4536:1 4545:2 4574:1 4609:1 4637:1 4663:1 4667:1 4684:1 4727:1 4763:2 4767:3 4888:1 4936:1 4989:1 5045:1 5143:3 5162:1 5168:1 5198:1 5246:1 5269:1 5287:1 5340:1 5365:1 5369:1 5562:10 5596:1 5689:1 5718:2 5735:1 5744:1 5750:3 5752:1 5770:1 5811:1 5814:2 5868:1 5898:1 6038:1 6108:1 6115:1 6150:2 6169:1 6181:1 6305:2 6335:1 6345:1 6385:1 6397:1 6407:1 6412:1 6418:2 6428:1 6459:3 6480:1 6508:2 6558:1 6581:2 6610:1 6688:2 6776:1 6795:1 6806:1 6816:1 6888:1 6944:1 7025:1 7038:1 7062:1 7101:1 7196:1 7204:2 7207:1 7210:1 7211:2 7218:2 7406:1 7435:2 7535:1 7539:1 7552:1 7574:1 7599:1 7613:1 7628:1 7659:1 7745:1 7766:1 7794:1 7867:1 7879:2 7912:1 7956:1 8027:1 8075:1 8089:2 8143:1 8155:1 8247:1 8277:2 8302:1 8340:1 8413:1 8417:2 8432:1 8498:1 8499:1 8562:1 8573:1 8611:1 8624:2 8630:1 8631:1 8659:1 8688:1 8689:1 8702:13 8726:1 8728:2 8767:1 8810:1 8886:1 8891:1 8901:1 8909:1 8935:4 8960:1 8974:1 8982:2 9048:1 9143:1 9186:1 9221:2 9232:6 9430:1 9473:1 9507:1 9508:1 9540:1 9544:1 9561:1 9623:1 9642:1 9644:1 9648:2 9654:1 9788:1 9842:1 9901:2 9942:1 10008:1 10022:1 10027:2 10275:1 10307:2 10331:1 10349:1 10362:1 10376:1 10389:1 10422:1 10436:1 10502:1 10517:1 10518:1 10554:1 10643:1 10648:1 10666:1 10732:1 10752:2 10792:1 10806:1 10828:1 10846:1 10948:1 10972:1 11030:1 11052:1 11067:1 11119:1 11133:1 11141:1 11170:1 11175:1 11188:1 11231:1 11276:1 11288:1 11291:1 11302:1 11324:1 11342:1 11383:2 11438:1 11445:1 11448:1 11488:1 11517:2 11607:2 11656:1 11660:1 11674:1 11690:1 11695:1 11784:1 11820:1 11842:1 11858:1 11906:3 11914:1 11949:1 12015:1 12039:1 12050:1 12109:1 12154:1 12169:2 12255:1 12274:1 12310:1 12319:1 12327:1 12336:3 12339:1 12379:1 12580:1 12618:2 12647:1 12766:1 12805:1 12814:1 12862:1 12865:1 12923:1 12928:1 12933:1 12935:1 12988:2 13015:1 13027:1 13050:1 13088:1 13089:1 13128:2 13142:1 13151:4 13162:5 13196:1 13220:2 13231:1 13264:1 13285:1 13302:1 13308:1 13365:1 13391:1 13410:1 13443:1 13448:1 13473:2 13517:1 13527:1 13553:2 13600:1 13606:2 13621:1 13684:2 13685:2 13690:1 13718:1 13742:1 13873:1 14039:1 14061:1 14183:1 14267:1 14281:1 14318:2 14319:1 14345:1 14380:1 14468:1 14473:2 14489:1 14518:1 14581:1 14633:1 14640:1 14658:1 14688:1 14697:1 14781:1 14793:2 14854:1 14858:1 14870:1 14877:1 14891:1 14895:1 14907:1 14935:2 14957:1 14975:1 14980:1 15039:2 15054:1 15125:1 15215:1 15217:2 15281:1 15293:1 15333:1 15429:1 15480:1 15483:1 15489:2 15543:1 15616:1 15728:2 15780:1 15811:2 15820:1 15959:1 15960:1 15974:1 15986:1 15996:1 16000:1 16021:1 16030:1 16043:1 16178:1 16189:1 16227:1 16254:1 16330:1 16355:1 16411:1 16433:1 16457:1 16508:1 16559:1 16566:1 16606:1 16684:2 16721:1 16723:1 16787:1 16832:2 16846:1 16860:1 16884:1 16904:1 16936:1 16940:1 16990:1 17045:1 17046:1 17048:1 17187:1 17219:1 17379:1 17423:3 17448:1 17479:1 17586:1 17673:1 17689:2 17695:1 17699:1 17729:1 17758:1 17784:1 17830:2 17860:1 17880:1 17953:2 18008:1 18049:2 18053:1 18148:1 18187:1 18195:2 18214:1 18234:1 18236:1 18273:1 18281:2 18302:1 18315:1 18319:2 18321:1 18322:1 18332:1 18342:1 18401:1 18697:1 18699:1 18738:1 18777:2 18785:1 18799:1 18821:1 18919:1 19005:1 19029:2 19062:2 19069:1 19103:1 19200:1 19248:1 19276:1 19320:1 19329:1 19352:1 19357:1 19452:1 19509:1 19583:1 19622:1 19666:1 19677:1 19685:1 19707:1 19758:1 19772:2 19776:1 19781:1 19809:1 19843:1 19849:1 19850:1 19867:1 19872:1 19910:1 19951:1 20007:2 20081:1 20085:1 20095:1 20104:1 20174:1 20220:1 20225:1 20237:1 20239:1 20309:1 20391:1 20492:2 20525:1 20540:1 20635:1 20645:1 20682:1 20697:1 20742:3 20803:1 20814:1 20851:1 20895:1 20949:1 21004:1 21047:642 21068:2 21079:1 21173:2 21205:1 21291:1 21515:2 21571:1 21585:1 21601:1 21644:1 21709:1 21790:1 21808:1 21827:1 21861:1 21874:1 21883:1 21895:1 21918:1 21921:2 21952:1 21966:1 21992:1 22020:2 22045:1 22072:3 22095:1 22138:1 22235:1 22301:1 22404:1 22423:1 22503:1 22586:1 22617:1 22737:1 22815:1 22852:1 22870:1 22889:1 22992:1 23002:1 23059:1 23108:1 23147:1 23160:1 23172:1 23243:1 23390:1 23415:1 23416:1 23463:1 23490:1 23504:1 23532:1 23550:1 23556:1 23580:1 23617:1 23736:1 23745:1 23773:1 23861:1 23901:1 23917:1 23927:1 23985:1 24024:4 24098:1 24133:1 24195:1 24205:1 24226:1 24255:1 24262:2 24274:1 24289:1 24323:1 24358:1 24359:1 24366:2 24373:1 24386:1 24427:1 24493:2 24504:1 24542:2 24550:1 24636:1 24685:2 24698:1 24706:1 24727:1 24854:1 24907:1 24916:1 24925:1 24933:2 24943:1 24969:1 24972:1 25011:1 25077:1 25133:1 25139:2 25156:1 25167:1 25197:1 25224:1 25233:1 25245:1 25300:1 25337:2 25364:1 25369:1 25454:1 25494:2 25513:1 25526:1 25552:1 25569:1 25595:1 25600:1 25666:1 25674:1 25678:1 25865:1 26019:1 26032:1 26046:1 26056:2 26062:1 26088:1 26150:1 26158:1 26263:1 26269:1 26278:1 26320:1 26329:1 26390:1 26403:1 26502:2 26557:1 26581:1 26584:1 26679:1 26689:1 26726:1 26872:2 26873:1 26932:1 26967:1 26977:1 27100:1 27116:1 27144:1 27196:2 27198:1 27226:1 27247:1 27265:1 27299:2 27300:1 27335:1 27336:1 27365:1 27429:1 27436:1 27460:1 27466:1 27471:1 27479:1 27484:1 27486:1 27489:1 27496:1 27498:1 27508:1 27530:2 27580:1 27603:1 27664:2 27692:1 27797:6 27799:1 27821:1 27871:1 27876:1 27890:1 27912:1 27994:1 28024:1 28064:1 28110:1 28113:1 28348:2 28349:1 28382:3 28501:1 28533:2 28593:1 28635:1 28643:1 28673:1 28694:1 28759:1 28803:1 28809:1 28833:1 28884:1 28926:1 28948:1 29005:1 29298:1 29305:1 29330:1 29351:1 29421:2 29483:1 29485:1 29515:1 29535:1 29559:1 29567:1 29605:1 29632:1 29654:1 29704:1 29728:1 29735:1 29745:1 29831:2 29839:1 29904:1 29974:1 30040:1 30052:1 30149:1 30156:1 30199:1 30213:2 30249:1 30297:1 30327:1 30342:1 30380:1 30431:1 30471:1 30504:3 30589:1 30602:1 30664:2 30685:1 30689:2 30704:1 30710:1 30718:1 30775:1 30776:1 30789:1 30798:2 30805:2 30834:1 30864:1 30867:1 30868:1 30869:1 30895:1 30908:2 30968:1 31042:1 31057:1 31107:1 31130:1 31161:1 31195:1 31216:2 31324:1 31360:1 31392:1 31404:1 31422:1 31452:2 31459:1 31461:1 31485:1 31531:2 31625:1 31649:1 31665:4 31670:1 31674:1 31680:2 31686:1 31688:1 31704:1 31750:1 31834:1 31846:1 31877:1 31897:1 31962:1 31998:1 32009:1 32047:1 32070:1 32117:1 32172:1 32229:1 32241:1 32244:2 32303:1 32407:1 32451:1 32476:1 32491:1 32551:1 32625:1 32661:1 32713:1 32722:1 32824:1 32885:1 32900:1 32956:1 33001:1 33056:1 33059:1 33075:1 33084:1 33143:1 33148:1 33155:1 33171:1 33211:1 33220:1 33226:1 33267:1
11 1:1 39:1 55:1 60:2 86:1 99:1 148:1 170:1 187:1 238:2 265:1 294:1 296:1 401:1 403:1 411:2 446:1 507:1 546:1 582:1 627:1 654:1 698:1 717:1 759:2 764:1 765:1 790:1 815:1 937:1 956:1 971:1 979:1 984:1 1003:2 1069:1 1071:1 1083:1 1103:1 1118:1 1130:2 1141:1 1211:1 1236:1 1239:1 1244:1 1262:1 1284:1 1318:1 1376:1 1392:1 1393:1 1405:1 1415:1 1437:1 1445:1 1452:1 1456:1 1458:1 1465:1 1480:1 1504:1 1514:1 1539:1 1664:1 1726:3 1730:5 1739:6 1749:1 1751:1 1793:1 1807:1 1808:1 1837:2 1839:2 1869:1 1878:1 1883:3 1892:1 1957:1 1963:1 1980:1 1999:1 2019:1 2061:1 2062:1 2073:2 2098:1 2113:1 2118:1 2119:1 2138:1 2169:1 2195:1 2214:1 2263:1 2269:1 2279:1 2301:1 2317:1 2355:1 2381:1 2399:1 2422:1 2482:4 2502:1 2521:1 2525:1 2530:1 2553:1 2555:2 2558:1 2562:1 2578:2 2579:2 2583:1 2587:1 2618:2 2623:1 2625:1 2631:1 2640:1 2647:3 2648:1 2657:2 2662:1 2681:1 2720:1 2739:1 2753:1 2774:1 2784:1 2801:1 2821:1 2868:1 2896:1 2905:1 2918:1 2951:1 2962:1 2993:1 3033:1 3051:1 3059:1 3080:2 3097:1 3116:1 3157:1 3171:1 3173:1 3284:2 3295:2 3302:2 3352:1 3353:2 3364:1 3369:1 3377:1 3379:1 3408:1 3475:1 3550:1 3578:2 3683:1 3702:1 3726:1 3755:1 3769:1 3816:1 3822:1 3857:1 3930:1 3942:1 3968:1 3990:1 4005:1 4011:1 4012:1 4035:1 4047:2 4074:1 4105:1 4122:1 4160:1 4193:2 4195:1 4245:1 4253:3 4288:4 4289:1 4306:2 4332:1 4351:1 4484:1 4511:1 4536:1 4545:2 4574:1 4581:1 4609:1 4637:1 4663:1 4667:1 4684:1 4727:1 4730:1 4763:2 4767:3 4872:2 4888:1 4907:1 4936:1 4959:1 4989:1 5045:1 5066:1 5143:3 5162:1 5168:1 5198:1 5246:1 5269:1 5287:1 5340:1 5365:1 5369:2 5562:10 5596:1 5689:1 5717:1 5718:3 5722:1 5735:1 5744:1 5750:3 5752:2 5770:1 5811:1 5814:2 5868:1 5898:1 6038:1 6084:1 6108:1 6115:1 6150:2 6169:1 6181:1 6305:2 6335:2 6345:1 6372:1 6385:1 6388:1 6397:1 6407:1 6412:1 6418:2 6428:1 6459:3 6480:1 6508:2 6540:1 6558:1 6581:2 6610:1 6688:2 6776:1 6793:1 6795:1 6806:1 6816:1 6888:1 6897:2 6944:1 7025:1 7038:1 7062:1 7101:1 7196:1 7204:2 7207:1 7209:1 7210:1 7211:2 7218:2 7221:1 7406:1 7435:2 7535:1 7539:2 7552:1 7574:1 7599:1 7613:1 7628:1 7659:1 7662:1 7671:1 7676:1 7691:1 7705:1 7745:1 7766:1 7794:1 7867:1 7879:2 7912:1 7956:1 7993:1 8027:1 8043:1 8075:1 8089:2 8129:1 8143:1 8155:1 8247:1 8277:3 8302:1 8340:1 8389:1 8413:1 8417:2 8426:1 8432:1 8454:1 8498:1 8499:1 8562:1 8573:1 8611:1 8624:2 8630:1 8631:1 8633:1 8659:1 8688:1 8689:1 8702:14 8726:2 8728:2 8767:1 8810:1 8886:1 8891:1 8901:1 8909:1 8923:1 8935:4 8957:1 8960:1 8974:1 8982:2 9048:1 9143:1 9186:1 9221:2 9232:8 9267:1 9276:1 9430:1 9473:1 9507:1 9508:1 9540:1 9542:1 9544:1 9561:1 9623:1 9642:1 9644:1 9648:3 9654:1 9788:1 9806:1 9810:1 9815:1 9842:1 9901:2 9942:1 9976:1 9988:1 10008:1 10022:1 10027:2 10150:1 10275:1 10282:1 10307:2 10331:1 10332:1 10349:1 10362:1 10376:1 10389:1 10422:1 10436:1 10502:1 10517:1 10518:1 10554:1 10643:1 10648:1 10666:1 10732:1 10752:2 10792:1 10806:1 10828:1 10846:1 10867:1 10948:1 10970:1 10972:1 11030:1 11052:1 11067:1 11119:1 11133:1 11141:1 11170:1 11175:1 11188:1 11222:1 11231:1 11234:1 11265:1 11276:1 11288:1 11291:1 11302:1 11324:1 11342:1 11383:2 11438:1 11445:1 11448:1 11488:1 11517:2 11607:2 11656:1 11660:1 11674:1 11690:1 11695:1 11717:1 11784:1 11820:1 11822:1 11842:1 11858:1 11906:3 11914:1 11949:1 11955:1 12015:1 12039:1 12050:1 12109:1 12154:1 12169:2 12255:1 12274:1 12310:1 12319:1 12327:1 12336:4 12339:1 12352:1 12377:1 12379:1 12477:1 12580:1 12618:2 12647:1 12766:1 12805:1 12814:1 12862:1 12865:1 12893:1 12923:1 12928:1 12933:1 12935:1 12988:2 13015:1 13027:1 13050:1 13088:1 13089:1 13128:2 13142:1 13151:4 13162:5 13196:1 13220:2 13231:1 13264:1 13285:1 13302:1 13308:1 13365:1 13391:1 13410:1 13427:1 13434:1 13443:1 13448:1 13473:2 13517:1 13527:1 13553:2 13600:1 13606:2 13621:1 13674:1 13684:2 13685:2 13690:1 13718:1 13742:1 13778:1 13815:1 13821:1 13873:1 14039:1 14061:1 14183:1 14267:1 14281:1 14318:2 14319:1 14345:2 14356:1 14370:1 14380:1 14443:1 14468:1 14473:2 14489:1 14518:1 14541:1 14581:1 14633:1 14640:1 14658:1 14688:1 14697:1 14781:1 14793:2 14854:1 14858:1 14870:1 14877:1 14891:1 14895:1 14907:1 14935:2 14957:1 14975:1 14980:1 15039:2 15054:1 15125:1 15215:1 15217:3 15281:1 15293:1 15325:1 15333:1 15429:1 15477:1 15480:1 15483:1 15489:2 15543:1 15616:1 15728:2 15780:1 15811:2 15820:1 15959:1 15960:1 15974:1 15986:1 15996:1 16000:1 16021:1 16030:1 16040:1 16043:1 16067:1 16178:2 16189:1 16227:1 16254:1 16330:1 16355:1 16393:1 16411:1 16433:1 16448:1 16457:1 16508:1 16559:1 16566:1 16606:1 16684:2 16721:1 16723:1 16787:1 16832:2 16846:1 16860:1 16884:1 16904:1 16936:1 16940:1 16990:1 17045:1 17046:1 17048:1 17187:1 17219:1 17379:1 17423:5 17448:1 17479:1 17581:1 17586:1 17673:1 17689:2 17695:1 17699:1 17700:1 17709:1 17715:1 17729:1 17758:1 17784:1 17830:2 17860:1 17880:1 17953:2 18008:1 18049:2 18053:1 18141:1 18148:1 18187:1 18195:2 18214:1 18234:1 18236:1 18273:1 18281:2 18302:1 18308:1 18315:1 18319:2 18321:1 18322:1 18330:1 18332:1 18340:1 18342:1 18401:1 18697:1 18699:1 18717:1 18738:1 18739:1 18777:2 18785:1 18799:1 18807:1 18821:1 18911:1 18919:1 19000:1 19005:1 19029:2 19062:2 19069:1 19103:1 19200:1 19216:1 19248:1 19276:1 19320:2 19329:1 19352:1 19357:1 19398:1 19452:1 19509:1 19583:1 19622:1 19634:1 19643:1 19666:1 19677:1 19685:1 19707:1 19758:1 19772:2 19776:1 19781:1 19809:1 19843:1 19849:1 19850:1 19867:1 19872:1 19910:1 19951:1 20007:2 20020:1 20081:1 20085:1 20095:1 20104:1 20174:1 20220:1 20225:1 20237:1 20239:1 20241:1 20309:1 20391:1 20405:1 20492:2 20525:1 20540:1 20635:1 20645:1 20682:1 20697:1 20742:3 20803:1 20814:1 20851:1 20895:1 20949:1 20970:1 21004:1 21041:1 21047:753 21068:2 21079:1 21173:2 21205:1 21291:1 21308:1 21372:1 21382:1 21515:2 21551:1 21571:1 21585:1 21601:1 21644:1 21709:1 21790:1 21808:1 21813:1 21827:1 21861:2 21874:1 21883:1 21895:1 21918:1 21921:3 21952:1 21953:1 21966:1 21992:1 22020:2 22045:1 22072:4 22095:1 22138:1 22173:1 22227:1 22235:1 22281:1 22301:1 22311:1 22404:1 22423:1 22503:1 22548:1 22586:1 22617:1 22737:1 22815:1 22829:1 22837:1 22852:1 22870:1 22889:1 22992:1 23002:1 23059:1 23108:2 23147:1 23160:1 23172:1 23243:1 23257:1 23281:1 23353:1 23363:1 23367:1 23390:1 23415:1 23416:1 23463:1 23490:1 23504:1 23532:1 23550:1 23556:1 23572:1 23580:1 23617:1 23658:1 23736:1 23745:1 23765:1 23773:1 23861:1 23901:1 23917:1 23919:1 23927:1 23985:1 24024:4 24098:1 24133:1 24166:1 24195:1 24205:1 24226:2 24229:1 24255:1 24262:2 24274:1 24289:1 24323:1 24358:1 24359:1 24366:3 24373:1 24386:1 24427:1 24493:2 24504:1 24542:2 24550:1 24636:1 24650:1 24681:1 24685:2 24692:1 24698:1 24706:2 24727:1 24854:1 24907:1 24916:2 24925:1 24933:2 24943:1 24966:1 24969:1 24972:1 25011:1 25077:1 25093:1 25127:1 25133:1 25139:2 25156:1 25167:1 25197:1 25224:1 25233:1 25245:2 25300:1 25337:2 25364:1 25369:1 25454:1 25494:2 25513:1 25526:1 25552:1 25569:1 25595:1 25600:1 25666:1 25674:1 25678:1 25724:1 25865:1 26019:1 26032:1 26046:1 26056:3 26062:1 26088:1 26110:1 26150:1 26158:1 26218:1 26243:1 26263:1 26269:1 26270:1 26278:1 26279:1 26320:1 26328:1 26329:1 26390:1 26403:1 26423:1 26502:2 26557:1 26581:1 26584:1 26679:1 26689:1 26726:1 26872:2 26873:1 26932:1 26967:1 26977:1 27100:1 27115:1 27116:1 27133:1 27144:1 27196:2 27198:1 27226:1 27247:1 27265:1 27299:2 27300:1 27335:1 27336:1 27365:1 27408:1 27429:1 27436:1 27460:1 27466:1 27471:1 27479:1 27484:1 27486:1 27487:1 27489:1 27496:1 27498:1 27508:1 27511:1 27530:2 27539:2 27580:1 27603:1 27622:1 27655:1 27664:2 27692:1 27797:7 27799:1 27821:2 27871:1 27876:1 27890:1 27912:1 27994:1 28024:1 28064:1 28110:1 28113:1 28294:1 28319:1 28348:2 28349:1 28382:3 28501:1 28533:2 28593:1 28635:1 28643:1 28658:1 28673:1 28694:1 28722:1 28759:1 28787:1 28803:2 28809:1 28833:1 28884:1 28926:1 28948:1 29005:2 29298:1 29305:1 29330:1 29351:1 29421:2 29448:1 29483:1 29485:1 29515:1 29535:1 29559:1 29567:1 29605:1 29632:1 29654:1 29704:2 29728:1 29735:1 29745:1 29783:1 29831:2 29839:1 29847:1 29904:1 29958:1 29974:1 29977:1 30040:1 30052:1 30105:1 30149:1 30156:1 30199:1 30213:2 30249:1 30297:1 30327:1 30342:1 30380:1 30431:1 30471:1 30504:3 30589:1 30602:1 30664:2 30685:1 30689:2 30704:2 30710:1 30718:1 30775:1 30776:1 30789:1 30798:2 30802:1 30805:2 30834:1 30864:1 30867:1 30868:1 30869:1 30895:1 30908:2 30968:1 31020:1 31042:1 31057:1 31107:1 31130:1 31142:1 31161:1 31195:1 31216:3 31227:1 31324:1 31360:1 31392:1 31404:1 31422:1 31452:2 31459:1 31461:1 31485:1 31531:2 31590:1 31625:1 31649:1 31665:5 31670:1 31674:1 31680:2 31686:1 31688:1 31704:1 31750:1 31834:2 31846:1 31877:1 31897:1 31962:1 31998:2 32009:1 32047:1 32070:1 32117:1 32142:1 32172:1 32207:1 32229:1 32241:1 32244:2 32280:1 32303:1 32407:1 32451:1 32476:1 32491:1 32551:1 32552:1 32625:1 32651:1 32661:1 32713:1 32722:1 32795:1 32824:1 32885:1 32900:1 32956:1 32963:1 33001:1 33056:1 33059:1 33075:1 33084:1 33143:1 33148:1 33155:1 33171:1 33211:1 33220:1 33225:1 33226:1 33267:1
11 1:1 34:1 39:1 55:1 60:2 86:1 93:1 99:1 148:1 170:1 187:1 238:2 265:1 282:1 294:1 296:1 401:1 403:1 411:2 446:1 507:1 546:1 582:1 621:1 627:1 654:1 698:1 717:2 759:2 764:1 765:1 790:1 815:1 937:1 956:1 971:1 979:1 984:1 1003:2 1022:1 1049:1 1069:1 1071:1 1083:1 1103:1 1118:1 1130:3 1141:1 1211:1 1220:1 1236:1 1239:1 1244:1 1262:1 1284:1 1318:1 1376:1 1392:1 1393:1 1405:1 1415:1 1437:1 1445:1 1452:1 1456:1 1458:1 1465:1 1480:1 1504:1 1514:1 1539:1 1664:1 1719:1 1726:3 1730:5 1739:6 1745:1 1749:1 1751:1 1793:1 1807:1 1808:1 1837:3 1839:2 1869:1 1878:1 1883:3 1892:1 1943:1 1955:1 1957:1 1963:1 1980:1 1999:1 2019:1 2061:1 2062:1 2073:2 2098:1 2113:1 2118:1 2119:1 2137:1 2138:1 2169:1 2177:1 2195:1 2214:1 2263:1 2269:1 2279:1 2301:1 2317:1 2355:1 2381:1 2397:1 2399:1 2421:1 2422:1 2482:4 2502:2 2521:1 2525:1 2530:1 2553:1 2555:2 2558:2 2562:1 2578:2 2579:2 2583:1 2587:1 2618:3 2620:1 2623:1 2625:1 2631:1 2640:1 2647:3 2648:1 2657:2 2662:1 2663:1 2681:1 2720:1 2739:1 2753:1 2774:1 2784:1 2801:1 2821:1 2868:1 2896:1 2905:1 2918:1 2951:1 2962:1 2993:1 3033:1 3051:1 3059:1 3080:2 3097:1 3116:1 3157:1 3171:1 3173:1 3263:1 3284:2 3295:2 3302:2 3336:2 3352:1 3353:2 3364:1 3369:1 3377:1 3379:1 3386:1 3408:1 3464:1 3475:1 3482:1 3550:1 3578:2 3683:1 3702:1 3726:1 3755:1 3769:1 3816:1 3822:2 3857:2 3930:1 3942:1 3951:1 3968:1 3990:1 4005:1 4011:1 4012:1 4035:1 4047:2 4074:1 4105:1 4122:1 4160:1 4193:2 4195:1 4245:1 4253:3 4288:4 4289:1 4306:2 4332:1 4334:1 4351:1 4477:1 4484:1 4511:1 4533:1 4536:1 4545:2 4574:1 4581:1 4609:1 4628:1 4637:1 4663:1 4667:1 4684:1 4727:1 4730:1 4763:2 4767:3 4773:1 4872:2 4888:1 4906:1 4907:1 4936:1 4959:1 4989:1 5000:1 5022:1 5033:1 5045:1 5066:1 5136:1 5143:3 5162:1 5168:1 5198:1 5246:1 5269:1 5287:1 5340:2 5365:1 5369:2 5562:12 5564:1 5596:1 5671:1 5689:1 5717:1 5718:3 5722:1 5731:1 5735:1 5744:1 5750:3 5752:2 5766:1 5770:1 5811:1 5814:2 5844:1 5868:1 5898:1 6038:1 6084:1 6108:1 6115:1 6150:2 6169:1 6181:1 6233:1 6237:1 6305:2 6335:2 6345:1 6372:1 6385:1 6388:1 6397:1 6407:1 6412:1 6418:2 6428:1 6459:3 6480:1 6508:2 6531:1 6540:1 6558:1 6581:2 6610:1 6688:3 6776:1 6793:1 6795:1 6806:1 6816:1 6884:1 6888:1 6897:2 6944:1 6980:1 7025:1 7038:1 7062:1 7087:1 7101:1 7196:1 7200:1 7204:2 7207:1 7209:1 7210:1 7211:2 7218:2 7221:1 7222:1 7406:1 7435:2 7469:1 7535:1 7539:2 7552:1 7574:1 7599:1 7613:1 7628:1 7659:1 7662:1 7671:1 7676:1 7691:1 7705:1 7741:1 7745:1 7766:1 7794:1 7822:1 7867:1 7879:2 7912:1 7956:1 7993:1 8027:1 8043:1 8075:1 8089:2 8129:1 8143:1 8155:1 8230:1 8247:1 8277:3 8302:1 8340:1 8387:1 8389:1 8413:1 8417:2 8426:1 8432:1 8454:1 8474:1 8498:1 8499:1 8531:1 8560:1 8562:1 8573:1 8599:1 8611:1 8624:2 8630:1 8631:1 8633:3 8659:1 8688:1 8689:1 8702:16 8726:2 8728:2 8767:1 8810:1 8815:1 8886:1 8891:1 8901:1 8909:1 8923:1 8935:4 8957:1 8960:1 8974:1 8982:2 9048:1 9143:1 9186:1 9203:1 9221:2 9232:9 9267:1 9276:1 9381:1 9430:1 9473:1 9507:1 9508:1 9540:1 9542:1 9544:2 9561:1 9623:1 9632:1 9642:1 9644:1 9648:3 9654:1 9781:1 9788:1 9806:1 9810:1 9815:1 9836:1 9842:1 9901:2 9942:1 9945:1 9974:1 9976:1 9988:1 10008:2 10022:1 10027:2 10150:1 10275:1 10282:1 10307:2 10331:1 10332:1 10349:1 10362:1 10374:1 10376:1 10389:1 10422:1 10436:1 10502:1 10517:1 10518:1 10554:1 10643:1 10648:1 10666:1 10709:1 10732:1 10752:2 10792:1 10804:1 10806:1 10828:1 10846:1 10867:1 10948:1 10970:1 10972:1 10973:1 11011:1 11030:1 11052:1 11067:1 11119:1 11133:2 11141:1 11163:1 11170:1 11175:1 11188:1 11200:1 11222:1 11226:1 11231:1 11234:1 11265:1 11276:1 11288:1 11291:1 11302:1 11324:1 11342:1 11383:2 11438:1 11445:1 11448:1 11488:1 11517:2 11603:1 11607:2 11656:1 11660:1 11674:1 11690:1 11695:1 11717:1 11784:1 11820:1 11822:1 11842:1 11858:1 11906:3 11914:1 11949:1 11955:1 12015:1 12039:2 12050:2 12109:1 12154:1 12169:2 12255:1 12274:1 12310:1 12319:1 12327:1 12336:4 12339:1 12352:1 12377:1 12379:1 12448:1 12477:1 12580:1 12618:2 12647:1 12766:1 12805:1 12814:1 12862:1 12865:1 12893:1 12910:1 12923:1 12928:1 12933:1 12935:1 12988:2 13015:1 13027:1 13050:2 13061:1 13088:1 13089:1 13128:2 13142:1 13151:4 13152:1 13153:1 13162:5 13196:1 13220:2 13231:1 13264:1 13285:1 13302:1 13308:1 13365:1 13391:1 13410:1 13427:1 13434:1 13443:1 13448:1 13473:2 13480:1 13517:1 13527:1 13553:2 13600:1 13606:2 13621:1 13653:1 13674:1 13684:2 13685:2 13690:1 13718:1 13742:1 13778:1 13815:1 13821:1 13873:1 13896:1 13921:1 14039:1 14061:1 14162:1 14183:1 14267:1 14281:1 14318:2 14319:1 14345:2 14356:1 14370:1 14380:1 14443:1 14468:1 14472:1 14473:2 14483:1 14489:1 14518:1 14541:1 14581:1 14592:1 14620:1 14633:1 14640:1 14658:1 14688:1 14697:1 14781:1 14793:2 14854:2 14858:1 14859:1 14870:1 14877:2 14891:1 14895:1 14907:2 14935:2 14957:1 14958:1 14975:1 14980:1 15039:2 15054:1 15125:1 15215:1 15217:3 15278:1 15281:1 15293:1 15325:1 15333:1 15429:1 15477:1 15480:1 15483:1 15489:2 15513:1 15543:1 15616:1 15728:2 15780:1 15811:2 15820:1 15861:1 15959:1 15960:1 15974:1 15986:1 15990:1 15996:1 16000:1 16021:1 16030:1 16040:1 16043:1 16067:1 16098:1 16178:2 16189:1 16227:2 16254:1 16289:1 16330:1 16355:1 16390:1 16393:1 16411:1 16433:1 16448:1 16457:1 16484:1 16508:1 16559:1 16566:2 16606:1 16684:2 16721:1 16723:1 16783:1 16787:1 16832:2 16846:1 16860:1 16884:1 16904:1 16936:1 16940:1 16973:1 16988:1 16990:1 17045:1 17046:1 17048:1 17053:1 17063:1 17105:1 17187:1 17219:1 17379:1 17423:5 17448:1 17479:1 17581:1 17586:1 17673:1 17689:2 17695:1 17699:1 17700:1 17709:1 17715:1 17729:1 17731:1 17752:1 17758:1 17776:1 17784:2 17805:1 17830:2 17860:1 17880:1 17888:1 17953:2 18008:1 18049:2 18053:1 18108:1 18141:1 18148:1 18157:1 18187:1 18195:2 18214:1 18234:1 18236:1 18273:1 18281:2 18302:1 18308:1 18315:1 18319:3 18321:1 18322:1 18330:1 18332:1 18340:1 18342:1 18372:1 18401:1 18492:1 18697:1 18699:1 18702:1 18717:1 18738:1 18739:1 18777:2 18785:1 18799:1 18807:1 18821:1 18842:1 18911:1 18919:1 19000:1 19005:1 19029:2 19062:2 19069:1 19081:1 19103:1 19200:1 19216:1 19248:2 19276:1 19320:3 19329:1 19352:1 19357:1 19398:1 19452:1 19509:1 19583:1 19622:1 19634:1 19643:1 19666:1 19677:2 19685:1 19707:1 19758:1 19763:1 19772:2 19776:1 19781:1 19809:1 19843:1 19849:1 19850:1 19867:1 19872:1 19910:1 19951:1 20007:2 20020:1 20081:1 20085:1 20095:1 20104:1 20110:1 20123:1 20166:1 20174:1 20202:1 20220:1 20225:1 20237:1 20239:1 20241:1 20309:1 20341:1 20391:1 20405:1 20492:2 20525:1 20540:1 20635:1 20645:1 20682:1 20697:1 20742:3 20803:2 20814:1 20851:1 20895:1 20949:1 20970:1 21004:1 21041:1 21047:939 21068:2 21079:2 21173:2 21205:1 21291:1 21308:1 21355:1 21372:1 21382:1 21515:2 21518:1 21551:1 21571:1 21585:1 21601:1 21644:1 21709:1 21735:1 21790:1 21808:1 21812:1 21813:1 21827:2 21861:2 21874:1 21883:1 21895:1 21918:1 21921:3 21952:1 21953:1 21966:1 21992:1 22020:2 22045:1 22072:4 22095:2 22138:1 22162:1 22173:1 22227:1 22235:1 22281:1 22301:1 22311:1 22325:1 22404:1 22423:2 22503:1 22508:1 22540:1 22545:1 22548:1 22565:1 22586:1 22617:1 22681:1 22737:2 22766:1 22815:1 22829:1 22837:1 22852:1 22870:1 22889:1 22992:1 23002:1 23059:1 23108:2 23129:1 23147:1 23160:1 23172:1 23243:1 23257:1 23279:1 23281:1 23353:1 23363:1 23367:1 23390:1 23415:1 23416:1 23444:1 23456:1 23463:1 23490:1 23504:2 23518:1 23521:1 23532:1 23550:1 23556:1 23572:1 23580:1 23617:1 23657:1 23658:1 23736:1 23745:1 23765:1 23773:1 23861:1 23901:1 23917:1 23919:1 23927:1 23985:1 24024:4 24090:1 24098:1 24133:1 24166:1 24195:1 24205:1 24226:2 24229:1 24250:1 24255:1 24262:2 24274:1 24276:1 24289:1 24323:1 24358:1 24359:1 24366:3 24369:1 24373:1 24386:1 24417:1 24427:1 24493:2 24504:1 24542:2 24550:1 24636:1 24650:1 24681:1 24685:2 24692:1 24698:1 24706:2 24727:1 24854:1 24907:1 24916:2 24925:1 24933:2 24943:1 24966:1 24969:1 24972:1 25011:1 25041:1 25077:1 25093:1 25127:1 25133:1 25139:2 25156:1 25167:1 25197:1 25224:2 25233:1 25245:2 25300:1 25306:2 25337:2 25364:2 25369:1 25454:1 25494:2 25508:1 25513:1 25526:1 25548:1 25552:1 25569:1 25595:1 25600:1 25624:1 25659:1 25666:1 25674:1 25678:1 25724:1 25865:1 26019:1 26032:1 26046:1 26056:3 26062:1 26088:1 26110:1 26150:1 26158:1 26188:1 26218:1 26243:1 26263:1 26269:1 26270:1 26278:1 26279:1 26286:1 26320:1 26324:1 26328:1 26329:1 26390:1 26403:1 26423:1 26434:1 26437:1 26502:2 26549:1 26557:1 26581:1 26584:1 26679:1 26689:1 26726:1 26839:1 26872:2 26873:1 26897:1 26932:1 26954:1 26967:1 26977:1 27063:1 27065:1 27100:1 27115:1 27116:1 27133:1 27134:1 27144:1 27182:1 27196:2 27198:1 27223:1 27226:1 27247:1 27265:1 27299:2 27300:1 27305:1 27335:1 27336:2 27365:1 27376:1 27408:1 27429:1 27436:1 27460:1 27466:1 27471:1 27479:1 27484:1 27486:1 27487:2 27489:1 27496:1 27498:1 27508:1 27511:1 27530:2 27539:2 27580:1 27603:1 27622:1 27655:1 27664:2 27691:1 27692:1 27797:7 27799:1 27821:3 27839:1 27864:1 27871:1 27876:1 27890:1 27912:1 27994:1 28024:1 28030:1 28046:1 28064:1 28101:1 28110:1 28113:1 28294:1 28303:1 28319:1 28348:2 28349:1 28382:3 28401:1 28501:1 28527:1 28533:2 28536:1 28593:1 28614:1 28635:1 28643:1 28658:1 28673:1 28694:2 28722:1 28759:1 28773:1 28787:1 28803:2 28809:1 28833:1 28847:1 28884:1 28926:1 28944:1 28948:2 29005:2 29136:1 29152:1 29233:1 29279:1 29298:1 29305:1 29330:1 29351:1 29356:1 29421:2 29448:1 29483:1 29485:1 29515:2 29535:1 29559:1 29567:1 29605:1 29632:1 29643:1 29654:1 29704:2 29724:1 29728:1 29735:1 29745:1 29783:1 29831:2 29839:1 29847:1 29904:1 29958:1 29974:2 29977:1 30040:1 30052:1 30105:1 30149:1 30156:2 30199:1 30213:2 30249:1 30297:1 30327:1 30330:1 30331:1 30342:1 30370:1 30380:1 30431:1 30471:1 30475:1 30504:3 30589:2 30602:1 30664:2 30685:1 30689:2 30704:2 30710:1 30718:1 30775:1 30776:1 30789:1 30798:2 30802:1 30805:2 30834:1 30864:1 30867:1 30868:2 30869:1 30895:1 30908:2 30968:1 30971:1 30994:1 31020:1 31042:1 31057:1 31107:1 31130:1 31142:1 31144:1 31158:1 31161:1 31195:1 31216:3 31227:1 31322:1 31324:1 31360:1 31392:1 31404:1 31422:1 31452:2 31459:1 31461:1 31485:1 31531:2 31590:1 31625:1 31649:1 31665:6 31670:1 31674:1 31680:2 31686:1 31688:2 31704:1 31721:1 31750:1 31783:1 31827:1 31834:3 31846:1 31877:1 31897:1 31932:1 31962:1 31998:2 32009:1 32027:1 32047:1 32070:1 32085:1 32105:1 32117:1 32142:1 32172:1 32207:1 32229:1 32241:2 32244:3 32280:1 32303:1 32407:1 32451:1 32476:1 32491:2 32499:1 32551:1 32552:1 32625:1 32651:1 32656:1 32661:1 32713:1 32722:1 32795:1 32824:1 32834:1 32885:1 32899:1 32900:1 32944:1 32956:1 32963:1 33001:1 33041:1 33056:1 33059:1 33075:1 33084:1 33143:2 33148:2 33155:2 33171:2 33211:1 33220:1 33225:1 33226:1 33267:1
11 1:1 34:1 39:1 55:1 60:2 86:1 93:1 99:1 148:1 170:1 187:1 238:3 265:1 282:1 294:1 296:2 401:1 403:1 411:2 446:1 507:1 546:2 582:1 621:1 627:1 654:1 698:1 717:2 759:2 764:1 765:1 790:1 815:1 937:1 956:1 971:1 979:1 984:1 1003:2 1022:1 1049:1 1069:1 1071:1 1083:1 1103:1 1118:1 1125:1 1130:4 1141:1 1161:1 1211:1 1220:1 1236:1 1239:1 1244:1 1262:1 1284:1 1318:1 1376:1 1378:1 1392:1 1393:1 1405:1 1415:1 1437:1 1445:1 1452:1 1454:1 1456:1 1458:1 1465:1 1480:1 1496:1 1504:1 1514:1 1539:1 1664:3 1719:1 1726:3 1730:5 1739:6 1745:1 1749:1 1751:1 1793:1 1807:1 1808:1 1837:3 1839:2 1869:1 1878:1 1883:3 1892:1 1943:1 1955:1 1957:1 1963:1 1980:1 1999:1 2019:1 2061:1 2062:1 2073:2 2098:1 2113:1 2118:1 2119:1 2133:1 2135:1 2137:1 2138:1 2169:1 2177:1 2180:1 2195:2 2214:1 2223:1 2263:1 2269:1 2279:1 2301:1 2317:1 2355:1 2373:1 2381:1 2397:1 2399:1 2421:1 2422:1 2482:4 2502:2 2521:1 2525:1 2530:1 2553:1 2555:2 2558:2 2562:1 2578:2 2579:2 2583:1 2587:1 2618:3 2620:1 2623:1 2624:1 2625:1 2631:1 2634:1 2640:2 2647:3 2648:1 2657:2 2662:2 2663:1 2681:1 2720:1 2739:1 2753:1 2774:1 2784:1 2801:1 2821:1 2831:1 2868:1 2896:1 2905:2 2918:1 2951:1 2962:1 2993:1 3033:1 3051:1 3059:1 3080:2 3097:1 3106:1 3116:2 3145:1 3157:1 3165:1 3171:1 3173:1 3263:1 3284:2 3294:1 3295:2 3302:2 3336:2 3352:1 3353:2 3364:1 3369:1 3377:1 3379:1 3386:1 3408:1 3464:1 3475:1 3482:1 3539:1 3549:1 3550:1 3578:2 3683:1 3702:1 3726:1 3755:1 3769:1 3816:1 3822:2 3857:2 3930:2 3936:1 3942:1 3951:1 3968:1 3990:1 4005:1 4011:1 4012:1 4018:1 4035:1 4040:1 4047:2 4074:1 4105:1 4122:1 4160:1 4193:2 4195:1 4245:1 4253:3 4271:1 4288:4 4289:1 4306:2 4332:1 4334:1 4351:1 4477:1 4484:1 4511:1 4533:1 4536:1 4545:2 4574:1 4581:1 4609:1 4628:1 4637:1 4663:1 4667:1 4684:1 4727:1 4730:1 4763:2 4767:3 4773:1 4793:1 4872:2 4888:1 4906:1 4907:1 4936:2 4959:1 4989:1 5000:1 5022:1 5033:1 5045:1 5066:1 5136:1 5143:3 5162:1 5168:1 5198:1 5246:1 5269:1 5287:1 5340:4 5365:1 5369:2 5562:13 5564:1 5596:1 5671:1 5689:1 5717:1 5718:4 5722:1 5731:1 5735:1 5744:1 5750:3 5752:2 5766:1 5770:1 5811:1 5814:2 5844:1 5853:1 5868:1 5898:1 6038:1 6084:1 6108:1 6115:1 6150:2 6169:1 6181:1 6233:1 6237:1 6305:2 6319:1 6335:2 6345:1 6372:1 6385:1 6388:1 6397:1 6407:1 6412:1 6418:2 6428:1 6435:1 6459:3 6480:1 6508:2 6509:1 6531:1 6540:1 6558:1 6581:2 6610:1 6688:3 6776:1 6793:1 6795:1 6806:1 6816:1 6884:1 6888:1 6890:1 6897:2 6944:1 6961:1 6980:1 7025:1 7038:1 7062:1 7087:1 7101:1 7196:1 7200:1 7201:1 7204:2 7207:1 7209:1 7210:1 7211:2 7218:3 7221:1 7222:2 7406:1 7435:2 7469:1 7497:1 7535:1 7539:2 7552:1 7574:1 7599:1 7613:1 7628:1 7659:1 7662:1 7671:1 7676:1 7691:1 7705:2 7741:1 7745:1 7766:1 7794:1 7822:1 7867:1 7879:2 7912:1 7956:1 7993:1 8027:1 8043:1 8075:1 8089:2 8129:1 8143:1 8155:1 8230:1 8247:1 8277:3 8302:1 8340:1 8387:1 8389:1 8413:1 8417:2 8426:1 8432:1 8454:1 8474:1 8498:1 8499:1 8531:1 8560:1 8562:1 8570:1 8573:1 8599:1 8611:1 8624:2 8630:1 8631:2 8633:3 8659:1 8688:1 8689:1 8702:20 8726:2 8728:2 8767:1 8810:1 8815:1 8886:1 8891:1 8901:1 8909:1 8923:1 8935:4 8957:1 8960:1 8974:1 8982:2 9048:1 9143:1 9186:1 9203:1 9221:2 9232:9 9267:1 9276:1 9279:1 9381:1 9430:1 9473:1 9507:1 9508:1 9540:2 9542:1 9544:2 9561:1 9623:1 9632:1 9642:1 9644:1 9648:3 9654:1 9781:1 9788:1 9806:1 9810:1 9815:1 9836:1 9842:1 9901:2 9931:1 9942:1 9945:1 9974:1 9976:1 9988:1 9994:1 10008:2 10022:1 10027:2 10150:1 10152:1 10197:1 10209:1 10275:1 10282:1 10307:2 10331:1 10332:1 10345:1 10349:1 10362:1 10371:1 10374:1 10376:1 10389:1 10422:1 10436:1 10465:1 10502:1 10517:1 10518:1 10540:1 10554:1 10621:1 10623:1 10643:1 10648:1 10666:2 10709:2 10732:1 10752:2 10764:1 10792:1 10804:1 10806:1 10828:1 10846:1 10867:1 10948:1 10970:1 10972:1 10973:1 11011:1 11030:1 11052:1 11067:1 11079:1 11119:1 11133:2 11141:1 11163:1 11170:1 11175:1 11188:1 11200:1 11222:1 11226:1 11231:1 11234:1 11265:1 11276:2 11288:1 11291:1 11302:1 11324:1 11331:1 11342:1 11376:1 11383:2 11438:1 11445:1 11448:1 11488:1 11517:2 11588:1 11603:1 11607:2 11656:1 11660:1 11674:1 11690:1 11695:1 11717:1 11744:1 11784:1 11820:1 11822:1 11842:1 11858:1 11906:3 11914:2 11949:1 11955:1 12015:1 12026:1 12039:2 12050:2 12109:1 12154:1 12169:2 12255:1 12274:1 12310:1 12319:1 12327:1 12336:4 12339:1 12352:2 12377:1 12379:1 12438:1 12448:1 12477:1 12552:1 12580:1 12618:2 12647:1 12743:1 12766:1 12805:1 12814:1 12862:1 12865:1 12877:1 12893:1 12910:1 12923:1 12928:1 12933:1 12935:1 12988:2 13005:1 13015:1 13027:1 13050:2 13061:1 13088:1 13089:1 13128:3 13142:1 13151:4 13152:1 13153:1 13162:5 13196:1 13220:2 13231:1 13264:1 13285:1 13302:1 13308:1 13365:1 13391:1 13410:1 13427:1 13434:1 13443:1 13448:1 13456:1 13473:2 13480:1 13517:1 13527:1 13553:2 13600:1 13606:2 13621:1 13653:1 13662:1 13674:1 13684:2 13685:2 13690:1 13718:1 13742:1 13778:1 13815:1 13821:1 13873:1 13895:1 13896:1 13921:1 14039:1 14061:1 14162:1 14183:1 14267:1 14281:1 14318:2 14319:1 14345:2 14356:1 14370:2 14380:1 14416:1 14443:1 14468:1 14472:1 14473:2 14480:1 14483:1 14489:1 14518:1 14541:1 14581:1 14592:1 14620:1 14633:1 14640:1 14658:1 14688:1 14697:1 14781:1 14793:2 14854:2 14858:1 14859:1 14870:1 14877:2 14891:1 14895:1 14907:2 14915:1 14935:2 14949:1 14957:1 14958:1 14975:1 14980:1 15039:2 15054:1 15125:1 15215:1 15217:3 15246:1 15278:1 15281:1 15293:1 15325:1 15333:1 15429:1 15477:1 15480:1 15483:2 15489:2 15513:1 15543:1 15616:1 15728:2 15740:1 15780:1 15811:2 15820:2 15861:1 15959:1 15960:1 15974:2 15986:1 15990:1 15996:1 16000:1 16021:1 16030:1 16040:1 16042:1 16043:1 16067:1 16098:1 16178:2 16189:1 16227:2 16237:1 16254:1 16270:1 16289:1 16330:1 16355:1 16390:1 16393:2 16411:1 16433:1 16448:1 16457:1 16484:1 16508:1 16559:1 16566:3 16606:1 16608:1 16650:1 16684:2 16721:1 16723:1 16783:1 16787:1 16832:2 16846:1 16860:1 16884:1 16904:1 16936:2 16940:1 16973:1 16988:1 16990:1 17045:1 17046:1 17048:1 17053:1 17056:1 17063:1 17105:1 17187:1 17194:1 17219:1 17246:1 17379:1 17423:5 17448:1 17479:1 17514:1 17516:1 17581:1 17586:1 17661:1 17673:1 17689:3 17695:1 17699:1 17700:1 17709:1 17710:1 17715:1 17729:1 17731:1 17752:1 17758:1 17771:1 17776:1 17784:2 17805:1 17830:2 17860:1 17880:1 17888:1 17953:2 18008:1 18049:2 18053:1 18108:1 18141:1 18148:1 18157:2 18187:1 18195:2 18214:1 18234:1 18236:1 18273:1 18281:2 18302:1 18308:1 18315:1 18319:3 18321:1 18322:1 18330:1 18332:1 18340:1 18342:1 18372:1 18375:1 18401:1 18492:1 18697:1 18699:1 18702:1 18717:1 18738:1 18739:2 18777:2 18785:1 18799:1 18807:1 18821:1 18842:1 18911:1 18919:1 19000:1 19005:1 19024:1 19029:2 19062:2 19069:1 19081:1 19089:1 19103:1 19200:1 19216:1 19233:1 19248:2 19276:1 19320:3 19329:1 19352:1 19357:1 19398:1 19452:1 19509:1 19583:1 19622:1 19634:1 19643:1 19666:1 19677:2 19685:1 19707:1 19758:1 19763:1 19772:2 19776:1 19781:1 19809:1 19816:1 19843:1 19849:1 19850:1 19867:1 19872:1 19910:1 19951:1 19966:1 20007:2 20020:1 20081:1 20085:1 20095:1 20104:1 20110:1 20123:1 20124:2 20136:1 20146:1 20166:1 20174:1 20202:1 20220:1 20225:1 20237:1 20239:1 20241:1 20309:1 20341:1 20391:1 20405:1 20441:1 20492:2 20525:1 20540:1 20569:1 20635:1 20645:1 20682:1 20697:1 20742:3 20803:2 20814:1 20851:1 20876:1 20895:1 20900:1 20949:1 20970:1 20996:1 21004:1 21041:1 21047:1033 21068:2 21079:2 21173:2 21205:1 21291:1 21308:1 21355:1 21372:1 21382:1 21449:1 21515:2 21518:1 21539:1 21551:1 21571:1 21585:1 21601:1 21644:1 21709:1 21735:2 21790:1 21808:1 21812:1 21813:1 21827:2 21861:2 21874:1 21883:1 21895:1 21918:1 21921:4 21952:1 21953:1 21966:1 21992:1 22020:2 22045:1 22072:4 22095:2 22138:1 22162:1 22173:2 22174:1 22227:1 22235:1 22281:1 22301:1 22311:1 22325:1 22344:1 22404:1 22423:2 22503:1 22508:1 22540:1 22545:1 22548:1 22565:1 22586:1 22617:1 22626:1 22644:2 22681:1 22737:2 22740:1 22766:1 22815:1 22829:1 22837:1 22852:1 22870:1 22889:1 22992:1 23002:1 23059:1 23108:2 23129:1 23147:1 23160:1 23172:1 23243:1 23257:1 23279:1 23281:1 23288:1 23353:1 23363:1 23367:1 23390:1 23415:1 23416:1 23444:1 23456:1 23463:1 23490:1 23504:2 23518:1 23521:1 23532:1 23550:1 23556:1 23572:1 23580:2 23612:1 23617:1 23649:1 23657:1 23658:1 23736:1 23745:1 23752:1 23765:1 23773:1 23861:1 23898:1 23901:1 23917:1 23919:2 23927:1 23985:1 24009:1 24024:4 24090:1 24098:1 24099:1 24133:1 24166:1 24195:1 24205:1 24214:1 24226:2 24229:1 24250:1 24255:1 24262:2 24274:1 24276:1 24289:1 24323:1 24358:1 24359:1 24366:3 24369:1 24373:1 24386:1 24417:1 24427:1 24493:3 24502:1 24504:1 24542:2 24550:1 24601:1 24636:1 24650:2 24681:1 24685:2 24692:1 24698:1 24706:2 24727:1 24854:1 24907:1 24916:2 24925:1 24933:2 24943:1 24966:1 24969:1 24972:1 25011:1 25041:1 25077:1 25093:1 25127:1 25133:1 25139:2 25156:1 25167:2 25197:1 25224:2 25233:1 25245:2 25300:1 25306:2 25337:2 25364:2 25369:1 25454:1 25494:2 25508:1 25513:1 25526:1 25548:1 25552:1 25569:1 25595:1 25600:1 25624:1 25659:1 25666:1 25669:1 25674:1 25678:2 25724:1 25732:1 25865:1 26002:1 26019:2 26032:1 26046:1 26056:3 26062:1 26088:1 26110:2 26150:1 26158:1 26188:1 26218:1 26243:1 26253:1 26263:1 26269:1 26270:1 26278:1 26279:1 26286:1 26320:1 26324:1 26328:1 26329:1 26390:1 26403:1 26423:1 26434:1 26437:1 26502:2 26549:1 26557:1 26581:1 26584:1 26679:1 26689:2 26726:1 26839:1 26872:2 26873:1 26897:1 26898:1 26932:1 26954:1 26966:1 26967:1 26977:1 27063:1 27065:1 27100:1 27115:1 27116:1 27133:1 27134:1 27144:1 27182:1 27196:2 27198:1 27223:1 27226:1 27227:1 27247:1 27265:1 27299:2 27300:1 27305:1 27335:1 27336:2 27365:1 27376:1 27408:1 27429:1 27436:1 27460:1 27466:1 27471:1 27479:1 27484:1 27486:1 27487:2 27489:1 27496:1 27498:1 27508:1 27511:1 27530:2 27539:2 27580:1 27603:1 27622:1 27655:1 27664:2 27691:1 27692:1 27713:1 27797:7 27799:1 27821:3 27839:1 27864:1 27871:1 27876:2 27890:1 27912:1 27994:1 28024:1 28030:1 28046:1 28064:1 28082:1 28101:1 28110:1 28113:1 28294:1 28303:1 28319:1 28348:2 28349:1 28382:5 28401:1 28413:1 28501:1 28527:1 28533:2 28536:1 28593:1 28614:2 28632:1 28635:1 28643:1 28658:1 28670:1 28673:1 28694:2 28722:1 28759:1 28773:1 28787:1 28803:2 28809:1 28833:1 28847:1 28884:1 28926:1 28944:1 28948:2 29005:2 29012:1 29136:1 29152:1 29233:1 29241:1 29263:1 29279:1 29298:1 29305:1 29313:1 29330:1 29342:1 29351:1 29356:1 29421:2 29448:1 29474:1 29483:1 29485:1 29515:2 29521:1 29535:1 29559:1 29567:1 29583:1 29605:2 29632:1 29643:1 29654:1 29704:2 29724:1 29728:1 29735:1 29745:1 29783:1 29831:2 29839:1 29847:1 29904:1 29958:1 29974:2 29977:1 30040:1 30052:1 30105:1 30149:2 30156:2 30199:1 30213:2 30231:1 30249:1 30297:1 30327:1 30330:1 30331:1 30342:1 30370:1 30380:1 30393:1 30431:1 30471:1 30475:1 30504:3 30587:2 30589:2 30602:1 30664:2 30685:1 30689:2 30704:3 30710:1 30718:1 30775:1 30776:1 30789:1 30798:2 30802:1 30805:2 30834:1 30843:1 30864:1 30867:1 30868:2 30869:1 30895:1 30908:2 30968:1 30971:1 30994:1 31020:1 31042:1 31046:1 31057:1 31107:1 31130:1 31142:1 31144:1 31158:1 31161:1 31195:1 31216:3 31227:1 31322:1 31324:1 31360:1 31392:1 31404:1 31422:1 31452:2 31459:1 31461:1 31484:1 31485:1 31531:2 31554:1 31590:1 31625:1 31649:1 31665:6 31670:1 31674:2 31680:2 31686:1 31688:2 31704:1 31721:1 31750:1 31761:1 31783:1 31827:1 31834:3 31846:1 31877:2 31897:1 31932:1 31962:1 31974:1 31998:2 32009:1 32027:1 32047:1 32070:1 32085:1 32105:1 32117:1 32142:1 32172:2 32207:1 32229:1 32241:2 32244:3 32280:1 32303:1 32407:1 32451:1 32471:1 32476:1 32491:2 32499:1 32551:1 32552:2 32625:1 32651:1 32656:1 32661:1 32713:1 32722:1 32795:1 32824:1 32834:1 32885:1 32899:1 32900:1 32944:2 32956:1 32963:1 33001:1 33041:1 33056:1 33059:1 33075:1 33084:1 33141:1 33143:2 33148:2 33155:4 33171:2 33211:1 33220:1 33225:1 33226:1 33267:1
11 1:1 34:1 39:1 55:1 60:2 86:1 93:1 99:1 148:1 166:1 170:1 187:1 232:1 238:3 265:1 282:1 294:1 296:2 401:1 403:1 411:2 446:1 507:2 546:2 582:1 621:1 627:1 654:1 698:1 717:2 731:1 745:1 759:2 764:1 765:1 790:1 815:1 937:1 956:1 971:1 979:1 984:1 1003:2 1022:1 1049:1 1057:1 1069:1 1071:1 1083:1 1103:1 1118:1 1125:1 1130:4 1141:1 1161:1 1211:1 1220:1 1236:1 1239:1 1244:1 1262:1 1284:1 1318:1 1376:1 1378:1 1392:1 1393:1 1405:1 1415:1 1437:1 1445:1 1452:1 1454:1 1456:1 1458:1 1465:1 1480:1 1496:1 1504:1 1514:1 1539:1 1664:3 1683:1 1691:1 1719:1 1726:3 1730:5 1739:6 1745:1 1749:1 1751:1 1793:1 1807:1 1808:1 1837:3 1839:2 1869:1 1878:1 1883:3 1892:1 1906:1 1943:1 1955:1 1957:1 1963:1 1980:1 1999:1 2019:1 2061:1 2062:1 2073:2 2098:1 2113:1 2118:1 2119:1 2133:1 2135:1 2137:1 2138:1 2169:1 2177:1 2180:1 2195:2 2214:1 2223:1 2263:1 2269:1 2279:1 2284:1 2301:1 2317:1 2355:1 2373:1 2381:1 2397:1 2399:1 2421:1 2422:1 2482:4 2502:2 2521:1 2525:1 2530:1 2553:1 2555:2 2558:3 2562:1 2578:2 2579:2 2583:1 2587:1 2618:3 2620:1 2623:1 2624:1 2625:1 2631:1 2634:1 2640:2 2647:3 2648:1 2657:2 2662:2 2663:1 2681:1 2720:1 2739:1 2753:1 2774:1 2784:1 2801:1 2821:1 2831:1 2868:1 2896:1 2905:2 2918:1 2951:1 2962:1 2993:1 3008:1 3033:1 3051:1 3059:1 3080:2 3097:1 3106:1 3116:2 3134:1 3145:1 3157:1 3165:1 3171:1 3173:1 3263:1 3283:1 3284:3 3294:1 3295:3 3302:2 3336:2 3352:1 3353:4 3364:1 3369:1 3377:1 3379:1 3386:1 3408:1 3464:1 3475:1 3482:1 3539:1 3549:1 3550:1 3578:2 3683:1 3702:1 3726:1 3755:1 3769:1 3816:1 3822:2 3857:2 3930:2 3936:1 3942:2 3951:1 3968:1 3990:1 4005:1 4011:1 4012:1 4018:1 4035:1 4040:1 4047:2 4074:1 4105:1 4122:1 4160:1 4193:2 4195:1 4245:1 4247:1 4253:3 4271:1 4288:4 4289:1 4306:2 4332:1 4334:1 4351:1 4477:1 4484:1 4511:1 4533:1 4536:2 4545:2 4574:1 4575:1 4581:1 4609:1 4628:1 4637:1 4663:1 4667:1 4684:1 4727:1 4730:1 4763:2 4767:3 4773:1 4785:1 4793:1 4872:2 4888:2 4906:1 4907:1 4936:2 4959:1 4989:1 5000:1 5022:1 5033:1 5045:1 5066:1 5136:1 5143:3 5162:1 5163:1 5168:1 5198:1 5239:1 5246:1 5269:1 5287:1 5340:4 5365:1 5369:2 5562:15 5564:1 5596:1 5671:1 5689:1 5717:1 5718:4 5719:1 5722:1 5725:1 5731:2 5735:1 5744:1 5750:3 5752:2 5766:1 5770:1 5811:1 5814:2 5844:1 5853:1 5855:1 5868:1 5898:1 5965:2 6038:1 6084:1 6108:1 6115:1 6150:2 6169:1 6181:1 6233:1 6237:1 6305:2 6319:1 6328:1 6335:2 6345:1 6372:1 6385:1 6388:1 6397:1 6407:1 6412:1 6418:2 6428:1 6435:1 6459:3 6480:1 6508:2 6509:1 6531:1 6540:1 6558:1 6581:2 6610:1 6624:1 6688:3 6776:1 6793:1 6795:1 6806:1 6816:1 6847:1 6884:1 6888:1 6890:1 6897:2 6944:1 6961:2 6980:1 7025:1 7038:1 7062:1 7087:1 7088:1 7101:1 7196:1 7200:1 7201:1 7204:2 7207:1 7209:1 7210:1 7211:2 7218:3 7221:1 7222:2 7279:1 7406:1 7435:2 7439:1 7469:1 7497:1 7535:1 7539:2 7552:1 7574:1 7599:1 7613:1 7628:1 7659:1 7662:1 7671:2 7676:1 7691:1 7705:2 7741:1 7745:1 7766:1 7794:1 7822:1 7867:1 7879:2 7912:2 7956:1 7993:1 8027:2 8043:1 8075:2 8089:2 8129:1 8143:1 8155:1 8230:1 8247:1 8277:3 8302:1 8340:1 8387:1 8389:1 8413:1 8417:2 8426:1 8432:1 8454:1 8474:1 8498:1 8499:1 8531:1 8560:1 8562:1 8570:1 8573:1 8599:1 8611:1 8624:2 8630:2 8631:2 8633:3 8653:1 8659:1 8688:1 8689:1 8702:20 8726:4 8728:4 8767:1 8810:1 8815:1 8886:1 8891:1 8901:1 8909:1 8923:1 8932:1 8935:6 8957:1 8960:1 8974:1 8982:3 8992:1 9048:1 9135:1 9143:1 9186:1 9203:1 9221:2 9232:9 9267:1 9276:1 9279:1 9381:1 9430:1 9473:1 9507:1 9508:1 9540:2 9542:1 9544:2 9561:1 9623:2 9632:1 9633:1 9638:1 9642:2 9644:1 9648:3 9654:1 9697:1 9743:1 9781:1 9788:1 9806:1 9810:1 9815:1 9836:1 9842:1 9901:2 9931:1 9937:1 9942:1 9945:1 9974:1 9976:1 9988:1 9994:1 10008:2 10022:1 10027:2 10070:1 10150:1 10152:1 10197:1 10209:1 10275:1 10282:1 10294:1 10307:2 10331:1 10332:1 10345:1 10349:1 10362:1 10371:1 10374:1 10376:1 10389:1 10422:1 10430:1 10436:1 10465:1 10502:1 10517:1 10518:1 10540:1 10554:1 10621:1 10623:1 10643:1 10648:1 10666:2 10709:2 10732:1 10752:2 10764:1 10792:1 10804:1 10806:1 10828:1 10846:1 10867:1 10948:3 10970:1 10972:1 10973:1 11011:1 11030:1 11052:1 11067:1 11079:1 11119:1 11133:2 11141:1 11163:1 11170:1 11175:1 11188:1 11200:1 11222:1 11226:1 11231:1 11234:1 11265:1 11276:2 11288:1 11291:1 11302:1 11309:1 11324:1 11331:1 11342:1 11376:2 11383:2 11438:1 11445:1 11448:1 11488:1 11517:2 11573:1 11588:1 11603:1 11607:2 11611:2 11656:1 11660:1 11674:1 11690:1 11695:1 11697:1 11717:1 11744:1 11784:1 11820:1 11822:3 11841:1 11842:1 11858:1 11906:3 11914:2 11949:1 11955:1 12015:1 12026:1 12039:2 12050:2 12109:1 12154:1 12169:2 12255:1 12274:1 12310:1 12319:1 12325:1 12327:1 12336:4 12339:1 12352:2 12377:1 12379:1 12438:1 12448:1 12477:1 12552:1 12580:1 12618:2 12630:2 12647:1 12743:1 12766:1 12776:1 12805:1 12811:2 12814:1 12862:1 12865:1 12877:1 12893:1 12910:1 12923:1 12928:1 12933:1 12935:1 12988:2 13005:1 13015:1 13027:1 13050:2 13061:1 13088:1 13089:1 13094:2 13128:3 13142:1 13151:6 13152:1 13153:1 13162:5 13196:1 13220:2 13231:1 13254:1 13264:1 13285:1 13302:1 13308:1 13365:1 13391:1 13410:1 13423:1 13427:1 13434:1 13443:1 13448:1 13456:1 13473:2 13480:1 13517:1 13527:1 13553:2 13600:1 13606:2 13621:1 13653:1 13662:1 13674:1 13684:2 13685:2 13690:1 13718:1 13742:1 13778:1 13815:1 13821:1 13873:2 13895:2 13896:1 13921:1 14039:1 14061:1 14162:1 14183:2 14214:2 14267:1 14281:1 14318:2 14319:1 14345:2 14356:1 14370:2 14380:1 14416:1 14443:1 14468:1 14472:1 14473:2 14480:1 14483:1 14489:1 14518:1 14541:1 14572:1 14581:1 14592:1 14620:1 14633:1 14640:1 14658:1 14688:1 14697:1 14781:1 14793:2 14854:2 14858:1 14859:1 14870:2 14873:1 14877:2 14891:1 14895:1 14907:2 14915:1 14935:2 14949:1 14957:1 14958:1 14975:1 14980:1 15039:2 15054:1 15082:1 15125:1 15131:1 15215:1 15217:3 15246:1 15278:1 15281:1 15293:1 15325:1 15333:1 15429:1 15477:1 15480:1 15483:2 15489:2 15513:1 15543:1 15616:1 15728:2 15740:1 15780:1 15811:2 15820:2 15861:1 15959:1 15960:1 15974:2 15986:1 15990:1 15996:1 15997:1 16000:1 16021:1 16030:1 16040:1 16042:1 16043:1 16067:1 16098:1 16178:2 16189:1 16227:2 16237:1 16254:1 16270:1 16289:1 16330:1 16355:1 16362:1 16390:1 16393:2 16411:1 16433:1 16448:1 16457:1 16484:2 16508:1 16559:1 16566:3 16606:1 16608:1 16630:1 16650:1 16684:2 16721:2 16723:1 16783:1 16787:1 16832:2 16846:1 16860:1 16884:1 16904:1 16936:2 16940:2 16971:2 16973:1 16988:1 16990:1 17012:2 17045:1 17046:1 17048:1 17053:1 17056:1 17063:1 17105:1 17187:1 17194:1 17219:1 17246:1 17379:1 17423:6 17448:1 17479:1 17514:1 17516:1 17581:1 17586:1 17661:1 17673:1 17689:3 17695:1 17699:1 17700:1 17709:1 17710:1 17715:1 17729:1 17731:1 17752:1 17758:1 17771:1 17776:1 17784:2 17805:1 17830:2 17860:1 17880:1 17888:2 17953:2 18008:1 18049:2 18053:1 18074:2 18108:1 18141:1 18148:1 18157:2 18187:1 18195:2 18214:1 18234:2 18236:1 18243:2 18258:1 18260:1 18273:1 18281:2 18302:1 18306:1 18308:1 18315:1 18319:3 18321:1 18322:1 18330:1 18332:1 18340:1 18342:1 18372:1 18375:1 18401:1 18492:1 18697:1 18699:1 18702:1 18717:1 18738:1 18739:2 18777:2 18785:1 18799:2 18807:1 18821:1 18842:1 18911:2 18919:2 19000:1 19005:1 19024:1 19029:2 19062:2 19069:1 19081:1 19089:1 19103:1 19165:2 19200:3 19216:1 19233:1 19248:2 19276:1 19320:4 19329:1 19352:1 19357:2 19398:1 19417:1 19443:1 19452:1 19509:1 19583:1 19622:1 19634:1 19643:1 19666:1 19677:2 19685:1 19707:1 19758:1 19763:2 19772:2 19774:1 19776:1 19781:1 19809:1 19816:1 19843:1 19849:2 19850:1 19867:1 19872:1 19910:1 19951:1 19962:1 19966:1 20007:2 20020:1 20081:1 20085:1 20095:1 20104:1 20110:1 20123:1 20124:2 20136:1 20146:1 20166:1 20174:1 20202:1 20220:1 20225:1 20237:1 20239:1 20241:1 20286:1 20287:1 20309:1 20341:1 20391:1 20405:1 20441:1 20492:2 20525:1 20540:1 20569:1 20635:1 20645:1 20682:1 20697:1 20742:3 20803:2 20814:2 20851:1 20876:1 20895:1 20900:1 20949:1 20970:1 20996:1 21004:1 21041:1 21047:1114 21068:2 21079:2 21173:2 21205:1 21291:1 21308:1 21355:1 21372:1 21382:1 21431:1 21449:1 21515:2 21518:1 21539:1 21551:1 21571:1 21585:1 21601:1 21644:1 21709:1 21735:2 21790:1 21808:1 21812:1 21813:1 21827:2 21861:2 21874:1 21883:1 21895:1 21918:1 21921:4 21952:1 21953:1 21966:1 21992:1 22020:2 22045:1 22072:4 22095:2 22138:1 22162:1 22173:2 22174:1 22227:1 22235:1 22281:1 22301:2 22311:1 22325:1 22344:1 22404:1 22423:3 22503:1 22508:1 22540:1 22545:1 22548:1 22562:1 22565:1 22573:1 22586:1 22617:1 22626:1 22644:2 22681:1 22737:2 22740:1 22750:1 22766:1 22815:2 22829:1 22837:1 22852:1 22870:2 22889:1 22992:1 23002:1 23055:1 23059:1 23108:2 23129:1 23147:1 23160:3 23172:1 23243:1 23257:1 23279:1 23281:1 23288:1 23353:1 23363:1 23367:1 23390:1 23415:2 23416:1 23444:3 23456:1 23463:1 23490:1 23504:2 23518:1 23521:1 23532:1 23544:2 23550:2 23556:1 23572:1 23580:2 23612:1 23617:1 23649:1 23657:1 23658:1 23736:1 23745:1 23752:1 23765:1 23773:1 23800:1 23861:1 23898:1 23901:1 23917:1 23919:2 23927:1 23985:1 24009:1 24024:4 24090:1 24098:1 24099:1 24133:1 24143:1 24166:1 24195:1 24205:1 24214:1 24226:2 24229:1 24250:1 24255:1 24262:2 24274:1 24276:2 24289:1 24323:1 24358:1 24359:1 24366:3 24369:1 24373:1 24386:1 24417:1 24427:1 24493:3 24502:1 24504:1 24542:2 24550:1 24587:1 24601:1 24636:1 24650:2 24678:1 24681:1 24685:2 24692:1 24698:1 24706:2 24727:1 24854:1 24907:1 24916:2 24925:1 24933:2 24943:1 24966:1 24969:1 24972:1 25011:1 25036:1 25041:1 25077:1 25093:1 25115:1 25127:1 25133:1 25139:2 25156:1 25167:2 25189:1 25197:1 25224:2 25233:1 25245:2 25300:1 25306:2 25337:2 25364:2 25369:1 25454:1 25494:2 25508:1 25513:1 25526:1 25545:2 25548:1 25552:1 25561:2 25569:1 25595:1 25600:1 25624:1 25635:1 25659:1 25666:1 25669:1 25674:2 25678:2 25724:1 25732:1 25865:1 26002:1 26019:2 26032:1 26035:1 26046:1 26056:3 26062:1 26088:1 26110:2 26150:1 26158:1 26188:1 26218:1 26243:1 26253:1 26263:1 26269:1 26270:1 26278:1 26279:1 26286:1 26320:1 26324:1 26328:1 26329:1 26390:1 26403:1 26423:1 26434:1 26437:1 26502:2 26549:1 26557:1 26581:1 26584:1 26606:1 26679:1 26689:2 26726:1 26839:1 26872:2 26873:1 26897:1 26898:1 26932:1 26954:1 26966:1 26967:1 26977:1 27063:1 27065:1 27100:1 27115:1 27116:1 27133:1 27134:1 27144:1 27182:1 27196:2 27198:1 27223:1 27226:1 27227:1 27231:1 27247:1 27265:1 27280:1 27299:2 27300:1 27305:1 27335:1 27336:2 27365:1 27376:1 27408:1 27429:1 27436:1 27460:1 27466:1 27471:1 27479:1 27484:1 27486:1 27487:3 27489:1 27496:1 27498:1 27508:1 27511:1 27527:1 27530:2 27539:2 27580:1 27603:1 27622:1 27655:1 27664:2 27674:1 27691:1 27692:1 27713:1 27797:7 27799:1 27821:4 27839:1 27864:1 27871:1 27876:2 27890:1 27912:1 27994:1 28024:1 28030:1 28046:1 28064:1 28082:1 28101:1 28110:1 28113:1 28275:1 28294:1 28303:1 28319:1 28348:2 28349:1 28382:5 28401:1 28413:1 28424:1 28501:1 28527:1 28533:2 28536:1 28593:1 28614:2 28632:1 28635:1 28643:1 28658:1 28670:1 28673:1 28685:1 28694:2 28722:1 28759:1 28773:1 28787:1 28803:2 28809:1 28833:1 28847:1 28884:1 28926:1 28944:1 28948:2 29005:2 29012:1 29042:1 29136:1 29152:1 29226:1 29233:1 29241:1 29263:1 29279:1 29298:1 29305:1 29313:1 29330:1 29339:1 29342:1 29351:1 29356:1 29421:3 29448:1 29474:1 29483:1 29485:1 29515:2 29521:1 29535:1 29559:1 29567:1 29583:1 29605:2 29632:1 29643:1 29654:1 29704:3 29724:1 29728:1 29735:1 29745:1 29783:1 29820:2 29831:2 29839:1 29847:1 29904:1 29958:1 29974:2 29977:1 30040:1 30052:1 30105:1 30149:2 30156:2 30199:1 30213:2 30231:1 30249:1 30297:1 30327:1 30330:1 30331:1 30342:1 30370:1 30380:1 30393:1 30431:1 30471:1 30475:3 30504:3 30510:1 30587:2 30589:2 30602:1 30664:2 30685:1 30689:2 30704:3 30710:1 30718:1 30775:1 30776:1 30789:1 30798:3 30802:1 30805:2 30834:1 30843:1 30864:1 30867:1 30868:2 30869:1 30895:1 30908:2 30968:1 30971:1 30994:1 31020:1 31042:1 31046:1 31057:1 31107:1 31130:1 31142:1 31144:1 31158:1 31161:1 31195:1 31216:3 31227:1 31322:1 31324:1 31360:1 31370:1 31392:2 31404:1 31422:1 31452:2 31459:1 31461:1 31484:1 31485:1 31531:2 31538:1 31554:1 31590:1 31625:1 31635:1 31649:1 31665:10 31667:1 31670:1 31674:2 31680:2 31686:1 31688:2 31704:3 31721:1 31750:1 31761:1 31783:1 31827:1 31834:3 31846:1 31877:2 31897:1 31932:1 31962:1 31974:1 31998:2 32009:1 32027:1 32047:1 32070:1 32085:1 32105:1 32117:1 32142:1 32172:2 32207:1 32229:1 32241:2 32244:3 32280:1 32303:1 32304:1 32407:1 32451:1 32471:1 32476:1 32491:2 32499:1 32551:1 32552:2 32625:1 32651:1 32656:1 32661:1 32713:1 32722:1 32795:1 32824:1 32834:1 32885:1 32899:1 32900:1 32944:2 32956:1 32963:1 33001:1 33041:1 33056:1 33059:1 33075:1 33084:1 33141:1 33143:2 33148:2 33155:4 33167:1 33171:2 33211:1 33220:1 33225:1 33226:1 33267:1
11 1:1 34:1 39:1 55:1 60:2 86:1 93:1 99:1 148:1 166:1 170:1 183:1 187:1 232:1 238:3 265:1 282:1 294:1 296:2 401:1 403:1 411:2 446:1 498:1 507:2 513:1 546:2 582:1 621:1 627:1 646:1 654:1 698:1 717:2 731:1 745:1 759:2 764:1 765:1 790:1 815:1 937:1 956:1 971:1 979:1 984:1 1003:2 1022:1 1049:1 1057:1 1067:1 1069:1 1071:1 1083:1 1103:1 1106:1 1118:1 1125:1 1130:4 1141:2 1161:1 1211:1 1220:1 1236:1 1239:1 1244:1 1262:1 1284:1 1318:1 1376:1 1378:1 1392:1 1393:1 1405:1 1415:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1465:1 1480:1 1496:1 1504:1 1514:1 1539:1 1664:3 1683:1 1691:1 1719:1 1726:4 1730:6 1739:7 1745:1 1749:1 1751:1 1793:1 1807:1 1808:1 1837:3 1839:3 1869:1 1878:2 1883:4 1892:1 1906:1 1943:1 1955:1 1957:1 1963:1 1980:1 1999:1 2019:1 2061:1 2062:1 2073:2 2098:1 2113:1 2118:1 2119:1 2133:1 2135:1 2137:1 2138:1 2169:1 2177:1 2180:1 2195:3 2214:1 2223:1 2263:1 2269:1 2279:1 2284:1 2301:1 2317:1 2322:1 2348:1 2355:1 2373:1 2381:1 2397:1 2399:1 2421:1 2422:1 2482:4 2502:2 2508:1 2521:1 2525:1 2530:1 2551:1 2552:1 2553:1 2555:2 2558:3 2562:1 2578:2 2579:2 2583:1 2587:1 2618:3 2620:1 2623:2 2624:1 2625:2 2631:1 2634:1 2640:2 2642:1 2647:4 2648:1 2657:2 2662:2 2663:1 2681:1 2720:1 2739:1 2753:1 2774:1 2784:1 2801:1 2821:1 2831:1 2868:1 2896:1 2905:2 2918:1 2951:1 2962:1 2993:1 3008:1 3033:1 3051:1 3059:1 3080:2 3097:1 3106:1 3116:2 3121:1 3134:2 3145:1 3157:1 3165:1 3171:1 3173:1 3182:1 3263:1 3283:1 3284:3 3294:1 3295:4 3302:2 3336:2 3352:1 3353:4 3364:1 3369:1 3377:1 3379:1 3386:1 3408:1 3464:1 3474:1 3475:1 3482:1 3539:1 3549:1 3550:1 3578:2 3625:1 3683:1 3702:1 3726:1 3755:1 3769:1 3816:1 3822:2 3857:2 3868:1 3930:2 3936:1 3942:2 3945:1 3951:1 3968:1 3990:1 4005:1 4011:1 4012:1 4018:1 4035:1 4040:1 4047:2 4074:1 4105:1 4122:1 4160:1 4174:1 4193:2 4195:1 4245:1 4247:1 4253:3 4271:1 4288:4 4289:1 4306:2 4332:1 4334:1 4351:1 4382:1 4477:1 4484:1 4511:1 4533:1 4536:2 4545:2 4574:1 4575:1 4581:1 4609:1 4628:1 4637:1 4663:1 4667:1 4684:1 4727:1 4730:1 4763:3 4767:3 4773:1 4785:1 4793:1 4842:1 4872:2 4888:2 4906:1 4907:1 4936:2 4959:1 4989:1 5000:1 5022:1 5033:1 5045:1 5066:1 5136:1 5143:3 5162:1 5163:1 5168:1 5171:1 5198:1 5239:1 5246:1 5269:1 5287:1 5340:4 5365:1 5369:2 5562:18 5564:1 5596:1 5671:1 5689:1 5717:1 5718:4 5719:1 5722:1 5725:1 5731:2 5735:1 5744:1 5750:3 5752:2 5766:1 5770:1 5811:1 5814:2 5844:1 5853:1 5855:1 5868:1 5898:1 5965:2 6038:1 6084:1 6089:1 6108:1 6115:1 6144:1 6150:2 6169:1 6181:1 6224:1 6233:1 6237:1 6305:2 6319:1 6328:1 6335:2 6345:1 6372:1 6385:1 6388:1 6397:1 6407:1 6412:1 6418:2 6428:1 6435:1 6459:3 6480:1 6506:1 6508:2 6509:1 6531:1 6540:1 6558:1 6581:3 6610:1 6624:1 6688:3 6776:1 6793:1 6795:1 6806:1 6816:1 6847:1 6884:1 6888:1 6890:1 6897:2 6944:1 6961:2 6980:1 7025:1 7038:1 7062:1 7087:1 7088:1 7101:1 7196:1 7200:2 7201:1 7204:2 7207:1 7209:1 7210:1 7211:2 7218:3 7221:1 7222:3 7279:1 7406:1 7435:2 7439:1 7469:1 7497:1 7535:1 7539:2 7552:1 7574:1 7599:1 7613:1 7628:1 7659:1 7662:1 7671:2 7676:1 7691:1 7705:2 7741:1 7745:1 7766:1 7794:1 7822:1 7855:1 7867:1 7879:2 7912:2 7956:1 7993:1 8007:1 8025:1 8027:2 8043:1 8075:3 8089:2 8129:1 8143:1 8155:1 8167:1 8230:1 8247:1 8277:3 8299:1 8302:1 8338:1 8340:1 8387:1 8389:1 8413:1 8417:2 8426:1 8432:1 8454:1 8474:1 8491:1 8498:1 8499:1 8531:1 8560:1 8562:1 8570:1 8573:1 8599:1 8611:1 8624:3 8630:2 8631:2 8633:3 8653:1 8659:1 8688:1 8689:1 8702:23 8726:4 8728:4 8767:1 8810:1 8815:2 8864:1 8886:1 8890:1 8891:1 8901:1 8909:1 8923:1 8932:2 8935:6 8957:1 8960:1 8974:1 8982:4 8992:1 9048:1 9135:1 9143:1 9186:1 9203:1 9221:2 9232:10 9267:1 9276:1 9279:1 9298:1 9381:1 9430:1 9473:1 9507:1 9508:1 9540:2 9542:1 9544:2 9561:1 9623:2 9632:1 9633:1 9638:1 9642:2 9644:1 9648:3 9654:1 9697:2 9743:1 9781:1 9788:1 9806:1 9807:1 9810:1 9815:1 9836:1 9842:1 9901:2 9931:1 9937:1 9942:1 9945:1 9974:1 9976:1 9988:1 9994:1 10008:2 10015:1 10022:1 10027:3 10070:1 10150:1 10152:1 10197:1 10209:1 10210:1 10275:1 10282:1 10294:1 10307:2 10331:1 10332:1 10345:1 10349:1 10362:1 10371:1 10374:1 10376:1 10389:1 10422:1 10430:1 10434:1 10436:1 10465:1 10502:1 10517:1 10518:1 10524:1 10540:1 10554:1 10619:1 10621:1 10623:1 10643:1 10648:1 10666:2 10709:2 10732:1 10752:2 10764:1 10792:1 10804:1 10806:1 10828:1 10846:1 10867:1 10948:3 10970:1 10972:1 10973:1 11011:1 11030:1 11052:1 11067:1 11079:1 11119:1 11133:2 11141:1 11163:1 11170:1 11175:1 11188:1 11200:1 11222:1 11226:1 11231:1 11234:1 11265:1 11266:1 11276:2 11288:1 11291:1 11302:1 11309:1 11324:1 11331:1 11342:1 11376:2 11383:2 11438:1 11445:1 11448:1 11488:1 11517:2 11573:1 11588:1 11603:1 11607:2 11611:2 11656:1 11660:1 11674:1 11690:1 11695:1 11697:1 11701:1 11717:1 11744:1 11784:1 11820:1 11822:3 11841:1 11842:1 11854:1 11858:1 11899:1 11906:3 11914:2 11930:1 11933:1 11949:1 11955:1 12015:2 12026:1 12039:2 12050:2 12109:1 12154:1 12169:2 12255:1 12274:1 12310:1 12319:1 12325:1 12327:1 12336:4 12339:1 12352:2 12377:1 12379:1 12438:1 12448:1 12477:1 12551:1 12552:1 12580:1 12618:2 12630:2 12647:1 12743:1 12766:1 12776:1 12805:1 12811:2 12814:1 12845:1 12862:1 12865:2 12876:1 12877:1 12893:1 12910:1 12923:1 12928:1 12933:1 12935:1 12988:2 13005:1 13015:1 13027:1 13050:2 13061:1 13085:1 13088:1 13089:1 13094:2 13128:4 13135:1 13142:1 13151:6 13152:1 13153:1 13156:1 13162:5 13196:1 13220:2 13231:1 13254:1 13264:1 13285:1 13302:1 13308:1 13365:1 13391:1 13410:1 13423:1 13427:1 13434:1 13443:1 13448:1 13456:1 13473:2 13480:1 13517:1 13527:1 13553:2 13600:1 13606:2 13621:1 13653:1 13662:1 13674:1 13684:2 13685:2 13690:1 13718:1 13742:1 13778:1 13815:1 13821:1 13873:2 13895:2 13896:1 13921:1 14039:1 14061:1 14162:1 14183:2 14214:2 14267:1 14281:1 14318:2 14319:1 14345:3 14356:1 14370:2 14380:1 14416:1 14443:1 14468:1 14472:1 14473:3 14480:1 14483:1 14489:1 14518:1 14520:1 14541:1 14572:1 14581:1 14592:1 14620:1 14633:1 14640:1 14658:1 14688:1 14697:1 14781:1 14793:3 14854:2 14858:1 14859:1 14870:2 14873:1 14877:2 14883:1 14891:1 14895:1 14907:2 14915:1 14935:2 14949:1 14957:1 14958:1 14975:1 14980:1 15033:1 15039:2 15040:1 15054:1 15082:1 15125:1 15131:1 15191:1 15215:1 15217:4 15246:1 15278:1 15281:1 15293:1 15322:1 15325:2 15333:1 15336:1 15429:1 15477:1 15480:1 15483:2 15489:2 15513:1 15543:1 15616:1 15622:1 15728:3 15734:1 15740:1 15780:1 15811:2 15820:2 15861:1 15959:1 15960:1 15962:1 15974:3 15986:1 15990:1 15996:1 15997:1 16000:1 16021:1 16030:1 16040:1 16042:1 16043:1 16067:1 16098:1 16178:2 16189:1 16227:2 16237:1 16254:1 16270:1 16289:1 16330:1 16355:1 16362:1 16390:1 16393:2 16411:1 16427:1 16433:1 16448:1 16457:1 16484:2 16508:1 16559:1 16566:3 16606:1 16608:1 16630:1 16650:1 16684:3 16721:2 16723:1 16783:1 16787:1 16832:2 16846:2 16860:1 16884:1 16904:1 16936:3 16940:2 16942:1 16971:2 16973:1 16988:2 16990:1 17012:2 17045:1 17046:1 17048:1 17053:1 17056:1 17063:1 17105:1 17155:1 17187:1 17194:1 17219:1 17246:1 17251:1 17379:1 17423:7 17448:1 17479:1 17514:1 17516:1 17581:1 17586:1 17661:1 17673:1 17689:3 17695:1 17699:1 17700:1 17709:1 17710:1 17715:1 17729:1 17731:1 17752:1 17758:1 17771:1 17775:1 17776:1 17784:2 17805:1 17830:2 17860:1 17880:1 17884:1 17888:2 17953:2 18008:1 18049:2 18053:1 18074:2 18108:1 18141:1 18148:1 18157:2 18187:1 18195:2 18214:1 18234:2 18236:1 18243:2 18258:1 18260:1 18273:1 18281:2 18302:1 18306:1 18308:1 18315:1 18319:3 18321:1 18322:1 18330:1 18332:2 18340:1 18342:1 18352:1 18372:1 18375:1 18401:1 18417:1 18492:2 18619:1 18697:1 18699:1 18702:1 18717:1 18738:1 18739:2 18777:2 18785:1 18799:2 18807:1 18821:1 18842:1 18911:2 18919:2 19000:1 19005:1 19024:1 19029:2 19062:2 19069:1 19081:1 19089:1 19103:1 19139:1 19165:2 19200:3 19216:1 19233:1 19248:2 19276:1 19320:5 19329:1 19352:1 19357:2 19398:1 19417:1 19443:1 19452:1 19471:1 19509:1 19583:1 19622:1 19634:1 19643:1 19655:1 19666:1 19677:3 19685:1 19707:1 19758:1 19763:2 19772:2 19774:1 19776:1 19781:1 19809:1 19816:1 19843:1 19849:2 19850:1 19867:1 19872:1 19910:1 19951:1 19962:1 19966:1 20007:2 20020:1 20081:1 20085:1 20095:1 20104:1 20110:1 20112:1 20123:1 20124:2 20136:1 20146:1 20166:1 20174:1 20181:1 20183:1 20202:1 20220:1 20225:1 20237:1 20239:1 20241:1 20286:1 20287:1 20309:1 20341:1 20391:1 20405:1 20412:1 20441:1 20492:2 20525:1 20540:1 20569:1 20635:1 20645:1 20682:1 20697:1 20742:3 20803:3 20814:2 20815:1 20851:1 20876:1 20895:1 20900:1 20949:1 20951:1 20970:1 20996:1 21004:1 21041:1 21047:1242 21068:2 21079:2 21173:2 21205:1 21279:1 21291:1 21292:1 21308:1 21355:1 21372:1 21382:1 21431:1 21449:1 21515:2 21518:1 21539:1 21551:1 21571:1 21585:1 21601:1 21644:1 21709:1 21735:2 21790:1 21808:1 21812:1 21813:1 21827:2 21861:2 21874:1 21883:1 21895:1 21918:1 21921:4 21952:1 21953:2 21961:1 21966:1 21992:1 22020:2 22041:1 22045:1 22072:4 22095:2 22138:1 22162:1 22173:2 22174:1 22227:1 22235:1 22240:1 22262:1 22281:1 22301:2 22311:1 22325:1 22344:1 22404:1 22423:3 22503:1 22508:1 22540:1 22545:1 22548:1 22562:1 22565:1 22573:1 22586:1 22617:1 22626:2 22644:2 22681:1 22737:2 22740:1 22750:1 22766:1 22815:2 22829:1 22837:1 22852:1 22870:2 22889:1 22992:1 23002:1 23046:1 23055:1 23059:1 23108:2 23129:1 23147:1 23160:3 23172:1 23243:1 23257:1 23279:1 23281:1 23288:1 23353:1 23363:1 23367:1 23390:1 23415:2 23416:1 23419:1 23444:3 23456:1 23463:1 23490:1 23504:2 23518:1 23521:1 23532:1 23544:2 23550:2 23556:1 23572:1 23580:2 23612:1 23617:1 23644:1 23649:1 23657:1 23658:1 23729:1 23736:1 23745:1 23752:1 23765:1 23773:1 23790:1 23800:1 23861:1 23898:1 23901:1 23917:1 23919:2 23927:1 23985:1 24009:1 24024:4 24032:1 24074:1 24082:1 24090:1 24098:1 24099:1 24114:1 24133:1 24143:1 24166:1 24195:1 24205:1 24214:1 24226:2 24229:1 24250:1 24255:1 24262:2 24274:1 24276:2 24289:1 24323:1 24358:1 24359:1 24366:3 24369:1 24373:1 24386:1 24417:1 24418:1 24425:1 24427:1 24493:3 24502:1 24504:1 24542:3 24550:1 24587:1 24601:1 24636:1 24650:2 24678:1 24681:1 24685:2 24687:1 24692:1 24698:1 24706:2 24727:1 24775:1 24788:1 24854:1 24858:1 24907:1 24916:3 24925:1 24933:2 24943:1 24966:1 24969:1 24972:2 25011:1 25036:1 25041:1 25077:1 25093:1 25115:1 25127:1 25133:1 25139:2 25156:1 25167:2 25189:1 25197:1 25224:2 25233:1 25245:2 25300:1 25306:2 25337:2 25356:1 25364:2 25369:1 25454:1 25494:3 25508:1 25510:1 25513:1 25526:1 25545:2 25548:1 25552:1 25561:2 25569:1 25595:2 25600:1 25624:1 25635:1 25659:2 25666:1 25669:1 25674:2 25678:2 25724:1 25732:1 25865:1 26002:1 26019:2 26025:1 26032:1 26035:1 26046:1 26056:4 26062:1 26088:1 26110:2 26150:1 26158:1 26188:1 26218:1 26243:1 26253:1 26263:1 26269:1 26270:1 26278:1 26279:1 26286:1 26320:1 26324:1 26328:1 26329:2 26354:1 26390:1 26403:1 26407:1 26423:1 26434:1 26437:1 26490:1 26502:2 26549:1 26557:1 26581:1 26584:1 26606:1 26679:1 26689:2 26705:1 26726:1 26839:1 26872:2 26873:1 26897:1 26898:1 26932:1 26954:1 26966:1 26967:1 26977:1 27063:1 27065:1 27076:1 27100:1 27115:1 27116:1 27133:1 27134:1 27144:1 27182:1 27196:2 27198:1 27223:1 27226:1 27227:1 27231:1 27247:1 27265:1 27280:1 27299:2 27300:1 27305:1 27335:1 27336:2 27351:1 27358:1 27365:1 27376:1 27383:1 27408:2 27429:1 27436:1 27460:1 27466:1 27471:1 27479:1 27484:1 27486:1 27487:3 27489:1 27490:1 27496:1 27498:1 27508:1 27511:1 27527:1 27530:2 27539:2 27580:1 27603:1 27622:1 27655:1 27664:2 27674:1 27691:1 27692:1 27713:1 27797:8 27799:1 27821:5 27839:1 27864:1 27871:1 27876:2 27890:1 27912:1 27915:1 27994:1 28024:1 28030:1 28046:1 28064:1 28082:1 28101:1 28110:1 28113:1 28275:1 28294:1 28303:1 28319:1 28348:2 28349:1 28382:5 28401:1 28413:1 28424:1 28430:1 28501:1 28527:1 28533:2 28536:1 28593:1 28614:2 28632:1 28635:1 28643:1 28658:1 28670:1 28673:1 28685:1 28694:2 28722:1 28759:1 28773:1 28787:1 28803:2 28809:1 28833:1 28847:1 28884:1 28926:1 28944:1 28948:2 28976:1 29005:2 29012:2 29032:1 29042:1 29136:1 29137:1 29152:1 29226:1 29233:1 29241:1 29263:1 29279:1 29298:1 29305:1 29313:1 29330:1 29339:1 29342:1 29351:1 29356:1 29421:3 29448:1 29474:1 29483:1 29485:1 29515:3 29521:1 29535:1 29559:1 29562:1 29567:1 29583:1 29605:2 29632:1 29643:2 29654:1 29676:1 29704:3 29724:1 29728:1 29735:1 29745:1 29783:1 29820:2 29831:2 29839:1 29847:1 29904:1 29958:1 29974:2 29977:1 29999:1 30040:1 30052:1 30105:1 30142:1 30149:2 30156:2 30168:1 30199:1 30213:2 30231:1 30249:1 30297:1 30327:1 30330:1 30331:2 30342:1 30357:1 30370:1 30380:1 30393:1 30431:1 30471:1 30475:3 30504:3 30510:1 30587:2 30589:2 30602:1 30664:2 30685:1 30689:2 30704:3 30710:1 30718:1 30775:1 30776:1 30789:1 30798:3 30802:1 30805:2 30809:1 30834:1 30843:1 30864:1 30867:1 30868:2 30869:1 30895:1 30908:2 30968:1 30971:1 30994:1 31020:1 31042:1 31046:1 31057:1 31107:1 31130:1 31142:1 31144:1 31158:1 31161:1 31172:1 31195:1 31216:3 31227:1 31322:1 31324:1 31360:1 31363:1 31370:1 31392:2 31404:1 31422:1 31448:1 31452:2 31459:1 31461:1 31484:1 31485:1 31531:2 31538:1 31554:1 31576:1 31590:1 31625:1 31635:1 31649:1 31665:10 31667:2 31670:1 31674:2 31680:3 31686:1 31688:2 31704:3 31721:2 31750:1 31761:2 31783:1 31827:1 31834:3 31846:1 31853:1 31877:2 31897:1 31932:1 31938:1 31962:1 31974:1 31998:2 32009:1 32027:1 32047:1 32070:1 32085:1 32105:1 32117:1 32142:1 32172:2 32207:1 32229:1 32241:2 32244:3 32280:2 32303:1 32304:1 32312:1 32407:1 32447:1 32451:1 32471:1 32476:1 32491:2 32499:1 32551:1 32552:2 32625:1 32651:1 32656:1 32661:1 32713:2 32722:1 32795:1 32824:1 32834:1 32885:1 32899:1 32900:1 32941:1 32944:2 32956:1 32963:1 33001:1 33019:1 33041:1 33056:1 33059:1 33075:1 33084:1 33141:1 33143:2 33148:2 33155:4 33167:2 33171:2 33211:1 33220:1 33225:1 33226:1 33267:1 33271:1
11 1:1 6:1 34:1 39:1 55:1 60:2 67:1 86:1 93:1 99:1 148:1 166:1 170:1 183:1 187:1 232:1 238:3 265:1 282:1 294:2 296:2 401:1 403:1 411:2 446:1 498:1 507:2 513:1 546:2 582:1 621:1 627:1 646:1 654:1 698:1 717:2 721:1 731:1 745:1 759:2 764:2 765:1 766:1 790:1 815:1 937:1 956:1 971:1 974:1 979:1 984:1 1003:2 1022:1 1049:1 1053:1 1057:1 1067:1 1069:1 1071:1 1083:1 1094:1 1103:1 1106:1 1118:1 1125:1 1127:1 1130:4 1141:2 1161:1 1211:1 1220:1 1236:1 1239:1 1244:1 1262:1 1284:1 1318:1 1376:1 1378:1 1392:1 1393:1 1405:1 1415:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1465:1 1480:1 1496:1 1504:1 1514:1 1539:1 1624:1 1664:3 1683:1 1691:1 1719:1 1726:4 1730:6 1739:8 1745:1 1749:1 1751:1 1793:1 1807:1 1808:1 1837:3 1839:3 1869:1 1878:2 1883:4 1892:1 1906:1 1943:1 1955:1 1957:1 1963:1 1980:1 1999:1 2019:1 2061:1 2062:1 2073:2 2098:1 2113:1 2118:1 2119:1 2133:1 2135:1 2137:1 2138:1 2169:1 2177:1 2180:1 2195:3 2214:1 2223:1 2263:1 2269:1 2279:1 2284:1 2301:1 2317:1 2322:1 2348:1 2355:1 2373:1 2381:1 2397:1 2399:1 2421:1 2422:1 2482:4 2502:3 2508:1 2521:1 2525:1 2530:1 2551:1 2552:1 2553:1 2555:3 2558:3 2562:1 2578:2 2579:2 2583:1 2587:1 2618:3 2620:1 2623:2 2624:1 2625:2 2631:1 2634:1 2640:2 2642:1 2647:4 2648:1 2657:2 2662:2 2663:1 2681:1 2720:1 2739:1 2753:1 2774:1 2784:1 2801:1 2821:1 2831:1 2864:1 2868:1 2896:1 2905:2 2918:1 2934:1 2951:1 2962:1 2993:1 3008:1 3033:1 3051:1 3059:1 3080:2 3097:1 3106:1 3116:2 3121:1 3134:2 3145:1 3157:1 3165:1 3171:1 3173:1 3182:1 3213:1 3263:2 3283:1 3284:3 3294:1 3295:5 3302:2 3336:3 3352:1 3353:4 3364:1 3369:1 3377:1 3379:1 3386:1 3408:1 3464:1 3474:1 3475:1 3482:1 3529:1 3539:1 3549:1 3550:1 3578:2 3588:1 3625:1 3683:1 3702:2 3726:1 3755:1 3769:1 3816:1 3822:2 3857:2 3868:1 3926:1 3930:2 3936:1 3942:2 3945:1 3951:1 3968:1 3990:1 4005:1 4011:1 4012:1 4018:1 4035:1 4040:1 4047:3 4074:1 4105:1 4122:1 4160:1 4174:1 4193:2 4195:1 4245:1 4247:1 4252:1 4253:4 4271:1 4288:4 4289:1 4303:1 4306:2 4332:1 4334:1 4351:2 4382:1 4477:1 4484:1 4511:1 4533:1 4536:2 4545:2 4573:1 4574:1 4575:1 4581:1 4609:1 4628:1 4637:1 4663:1 4667:1 4684:1 4727:1 4730:1 4763:4 4767:3 4773:1 4785:1 4793:2 4842:1 4872:4 4888:2 4906:1 4907:1 4936:2 4959:1 4989:1 5000:1 5022:1 5033:1 5045:1 5066:1 5136:1 5143:4 5162:1 5163:1 5168:1 5171:1 5198:1 5239:1 5246:1 5269:1 5287:1 5299:1 5312:1 5340:4 5365:1 5369:3 5562:19 5564:1 5596:1 5671:1 5689:1 5717:1 5718:4 5719:1 5722:1 5725:2 5731:2 5735:1 5744:1 5750:3 5752:2 5763:1 5766:1 5770:1 5811:1 5814:2 5844:1 5853:1 5855:1 5868:1 5898:1 5965:2 6038:1 6084:1 6089:1 6108:1 6115:1 6144:2 6150:3 6169:1 6181:1 6224:1 6233:1 6237:1 6305:2 6319:1 6328:1 6335:3 6345:1 6372:1 6385:1 6388:1 6397:1 6407:1 6412:1 6418:2 6428:1 6435:1 6459:4 6480:1 6506:1 6508:2 6509:1 6531:1 6540:1 6558:1 6581:3 6610:1 6624:1 6688:3 6692:1 6776:1 6793:1 6795:1 6806:1 6816:1 6847:1 6884:1 6888:1 6890:1 6897:4 6944:1 6961:2 6980:1 7025:1 7038:1 7062:1 7087:1 7088:1 7101:1 7193:1 7196:1 7200:2 7201:1 7204:2 7207:1 7209:1 7210:1 7211:2 7218:3 7221:1 7222:3 7279:1 7307:1 7406:1 7410:1 7435:2 7439:1 7469:1 7497:1 7535:1 7539:2 7552:1 7574:1 7599:1 7613:1 7628:1 7659:1 7662:1 7671:2 7676:1 7691:1 7705:2 7741:1 7745:1 7766:1 7794:1 7822:1 7855:1 7867:1 7879:3 7912:2 7949:1 7956:1 7993:1 8007:1 8025:1 8027:2 8043:1 8075:3 8089:2 8129:1 8143:2 8155:1 8167:1 8216:1 8230:1 8247:1 8258:1 8277:3 8299:1 8302:1 8338:1 8340:1 8387:1 8389:1 8413:1 8417:2 8426:1 8432:1 8454:1 8474:1 8491:1 8498:1 8499:1 8531:1 8560:1 8562:1 8570:1 8573:1 8599:1 8611:1 8615:1 8624:4 8630:2 8631:3 8633:3 8653:1 8659:1 8688:1 8689:1 8702:23 8726:4 8728:4 8767:1 8810:1 8815:2 8864:1 8886:1 8890:1 8891:1 8901:1 8909:1 8923:1 8932:2 8935:6 8957:1 8960:1 8974:1 8982:4 8992:1 9048:1 9135:1 9143:1 9186:1 9203:1 9221:2 9231:1 9232:11 9267:1 9276:1 9279:1 9298:1 9381:1 9430:1 9441:1 9473:1 9507:1 9508:1 9540:2 9542:1 9544:2 9561:1 9623:2 9632:1 9633:1 9638:1 9642:2 9644:1 9648:3 9654:1 9697:2 9743:1 9781:1 9788:1 9806:1 9807:1 9810:1 9815:1 9823:1 9836:1 9842:1 9901:2 9931:1 9937:1 9942:1 9945:1 9974:1 9976:1 9988:1 9994:1 10008:2 10015:1 10022:1 10027:3 10070:1 10150:1 10152:1 10197:1 10209:1 10210:1 10275:1 10282:1 10294:1 10307:2 10331:1 10332:1 10345:1 10349:1 10362:1 10371:1 10374:1 10376:1 10389:1 10422:1 10430:1 10434:1 10436:1 10465:1 10479:1 10502:1 10517:1 10518:1 10524:1 10540:1 10549:1 10554:1 10591:1 10619:1 10621:1 10623:1 10643:1 10648:1 10666:2 10709:3 10732:1 10752:2 10764:1 10792:1 10800:1 10804:1 10806:1 10828:1 10846:1 10867:1 10886:1 10913:1 10948:3 10970:1 10972:1 10973:1 11011:1 11030:1 11052:1 11067:1 11079:1 11119:1 11133:2 11141:1 11163:1 11170:1 11175:1 11178:1 11188:1 11200:1 11210:1 11222:1 11226:1 11231:1 11234:2 11265:1 11266:1 11276:3 11288:1 11291:1 11302:1 11309:1 11324:1 11331:1 11342:1 11376:2 11383:2 11438:1 11445:1 11448:1 11456:1 11488:1 11517:2 11573:1 11588:1 11603:1 11607:2 11611:2 11656:1 11660:1 11674:1 11677:1 11690:1 11695:1 11697:1 11701:1 11717:1 11744:1 11784:1 11820:1 11822:3 11841:1 11842:1 11854:1 11858:1 11899:1 11906:3 11914:2 11930:1 11933:1 11949:1 11955:1 12015:2 12026:1 12039:3 12050:2 12109:1 12154:1 12169:2 12255:1 12274:1 12310:1 12319:1 12325:1 12327:1 12336:4 12339:1 12352:2 12377:1 12379:1 12438:1 12448:1 12477:1 12551:1 12552:1 12580:1 12618:2 12630:2 12647:1 12743:1 12766:1 12776:1 12805:1 12811:2 12814:1 12836:1 12845:1 12862:1 12865:2 12876:1 12877:1 12893:1 12910:1 12923:1 12928:1 12933:1 12935:1 12970:1 12988:3 13000:1 13005:1 13015:1 13027:1 13050:2 13061:1 13085:1 13088:1 13089:1 13094:2 13128:4 13135:1 13138:1 13142:1 13151:6 13152:1 13153:1 13156:1 13162:5 13196:1 13220:2 13231:1 13254:1 13264:1 13285:1 13302:1 13308:1 13365:1 13391:1 13410:1 13423:1 13427:1 13434:1 13443:1 13448:2 13456:1 13473:2 13480:1 13517:1 13527:1 13553:2 13600:1 13606:2 13621:1 13653:1 13662:1 13674:1 13684:2 13685:2 13690:1 13718:1 13742:1 13778:1 13805:1 13815:1 13821:2 13830:1 13873:2 13895:2 13896:1 13921:1 13940:1 14039:1 14061:1 14162:1 14183:2 14214:2 14267:1 14281:1 14318:2 14319:1 14345:3 14353:1 14356:2 14361:1 14370:2 14380:1 14416:1 14443:1 14468:1 14472:1 14473:3 14480:1 14483:1 14489:1 14497:1 14518:1 14520:1 14541:1 14572:1 14581:1 14583:1 14592:1 14620:1 14633:1 14640:1 14658:1 14688:1 14697:1 14781:1 14793:4 14854:2 14858:1 14859:1 14870:2 14873:1 14877:2 14883:1 14891:1 14895:1 14896:1 14907:3 14915:1 14935:2 14949:1 14957:1 14958:1 14975:1 14980:1 15033:1 15039:2 15040:1 15054:1 15082:1 15125:1 15131:1 15191:1 15215:1 15217:4 15246:1 15278:1 15281:1 15293:1 15322:1 15325:2 15333:1 15336:1 15429:1 15477:1 15480:1 15483:2 15489:2 15513:1 15543:1 15616:1 15622:1 15728:4 15734:1 15740:1 15780:1 15811:2 15820:2 15861:1 15959:1 15960:1 15962:1 15974:3 15986:1 15990:1 15996:1 15997:1 16000:1 16021:1 16030:1 16040:2 16042:1 16043:1 16067:1 16098:1 16178:2 16189:1 16227:2 16237:1 16254:1 16270:1 16289:1 16330:1 16355:1 16362:1 16390:1 16393:2 16411:1 16427:1 16433:1 16448:1 16451:1 16457:1 16484:2 16508:1 16559:1 16566:3 16606:1 16608:1 16630:1 16642:1 16650:1 16674:1 16684:4 16721:2 16723:1 16782:8 16783:1 16787:1 16789:1 16832:2 16846:2 16860:1 16884:1 16904:1 16936:3 16940:2 16942:1 16944:1 16971:2 16973:1 16988:2 16990:1 17012:2 17045:1 17046:1 17048:1 17053:1 17056:1 17063:1 17098:1 17105:1 17155:1 17187:1 17194:1 17219:1 17246:1 17251:1 17379:1 17423:7 17448:1 17479:1 17499:1 17514:1 17516:1 17581:1 17586:1 17661:1 17673:1 17689:3 17695:1 17699:1 17700:1 17709:1 17710:1 17715:1 17729:1 17731:1 17752:1 17758:1 17771:1 17775:1 17776:1 17784:2 17805:1 17830:2 17860:1 17866:1 17871:1 17880:1 17884:1 17888:2 17953:2 18008:1 18049:2 18053:1 18074:2 18108:1 18141:1 18148:1 18157:2 18187:1 18195:2 18214:1 18234:2 18236:1 18243:2 18258:1 18260:1 18273:1 18281:2 18302:1 18306:1 18308:2 18315:1 18319:3 18321:1 18322:1 18330:1 18332:2 18340:2 18342:1 18352:1 18372:1 18375:1 18401:1 18417:1 18492:2 18619:1 18697:1 18699:1 18702:1 18708:1 18717:1 18738:1 18739:2 18777:2 18785:1 18799:2 18807:1 18821:1 18842:1 18911:2 18919:2 18928:1 19000:1 19005:1 19024:1 19029:2 19062:2 19069:1 19081:1 19089:1 19103:1 19139:1 19165:2 19200:3 19216:1 19233:1 19248:2 19276:1 19320:5 19329:1 19352:1 19357:2 19398:1 19417:1 19443:1 19452:1 19471:1 19509:1 19583:1 19622:1 19634:1 19643:1 19655:1 19666:1 19677:3 19685:1 19707:1 19758:1 19763:2 19772:2 19774:1 19776:1 19781:1 19809:1 19816:1 19843:2 19849:2 19850:1 19867:1 19872:1 19910:1 19951:1 19962:1 19966:1 20007:2 20020:1 20081:1 20085:1 20095:1 20104:1 20110:1 20112:1 20123:1 20124:2 20136:1 20146:1 20166:1 20174:1 20181:1 20183:1 20202:1 20220:1 20225:1 20237:1 20239:1 20241:1 20286:1 20287:1 20309:2 20341:1 20391:1 20405:1 20412:1 20441:1 20492:2 20525:1 20540:1 20569:1 20635:1 20645:1 20682:1 20697:1 20742:3 20803:3 20814:2 20815:1 20851:1 20876:1 20895:1 20900:1 20942:1 20949:1 20951:1 20970:1 20983:1 20996:1 21004:1 21041:1 21047:1322 21068:3 21079:2 21173:2 21205:1 21279:1 21291:1 21292:1 21308:1 21355:1 21372:1 21374:1 21382:1 21431:1 21444:1 21449:1 21512:1 21515:3 21518:1 21539:1 21551:1 21571:1 21585:1 21601:1 21644:1 21709:1 21735:2 21790:1 21808:1 21812:1 21813:1 21827:2 21861:2 21874:1 21883:1 21895:1 21918:1 21921:4 21952:1 21953:2 21961:1 21966:1 21992:1 22020:3 22041:1 22045:1 22072:4 22095:2 22138:1 22162:1 22173:2 22174:1 22227:1 22235:1 22240:1 22262:1 22271:1 22281:1 22301:2 22311:1 22325:1 22344:1 22375:1 22404:1 22423:3 22495:1 22503:1 22508:1 22540:1 22545:1 22548:1 22562:1 22565:1 22569:1 22573:1 22586:1 22617:1 22626:2 22644:2 22681:1 22737:2 22740:1 22750:1 22766:1 22815:2 22829:1 22837:1 22845:1 22852:1 22870:2 22889:1 22992:1 23002:1 23046:1 23055:1 23059:1 23108:2 23129:1 23147:1 23160:3 23172:1 23243:1 23257:1 23279:1 23281:1 23288:1 23353:1 23363:1 23367:1 23390:1 23415:2 23416:1 23419:1 23444:3 23456:1 23463:1 23490:1 23504:2 23518:1 23521:1 23523:1 23532:1 23544:2 23550:2 23556:1 23570:1 23572:1 23580:2 23612:1 23617:1 23644:1 23649:1 23657:1 23658:1 23729:1 23736:1 23745:1 23752:1 23765:1 23773:1 23790:1 23800:1 23861:1 23898:1 23901:1 23917:1 23919:2 23927:1 23985:1 24009:1 24024:4 24032:1 24074:1 24082:1 24090:1 24098:1 24099:1 24114:1 24133:1 24143:1 24166:1 24195:1 24205:1 24214:1 24226:2 24229:1 24250:1 24255:1 24262:2 24274:1 24276:2 24289:1 24323:1 24358:1 24359:1 24366:3 24369:1 24373:1 24386:1 24417:1 24418:1 24425:1 24427:1 24493:4 24502:1 24504:1 24542:3 24550:2 24587:1 24601:1 24636:1 24643:1 24650:2 24678:1 24681:1 24685:2 24687:1 24692:1 24698:1 24706:2 24727:1 24775:1 24788:1 24792:1 24847:1 24854:1 24858:1 24907:1 24916:3 24925:1 24933:2 24943:1 24959:1 24966:1 24969:1 24972:2 24974:1 25011:1 25036:1 25041:1 25077:1 25093:1 25115:2 25127:1 25133:1 25139:2 25156:1 25167:2 25189:1 25197:1 25224:2 25233:1 25245:2 25300:1 25306:2 25337:2 25356:1 25364:2 25369:1 25454:1 25494:4 25508:1 25510:1 25513:1 25526:1 25545:2 25548:1 25552:1 25561:2 25569:1 25595:2 25600:1 25624:1 25635:1 25659:2 25666:1 25669:1 25674:2 25678:2 25713:1 25724:1 25732:1 25865:1 25897:1 25920:1 26002:1 26017:1 26019:2 26025:1 26032:1 26035:1 26046:1 26056:4 26062:1 26073:1 26088:1 26110:2 26133:1 26150:1 26158:1 26188:1 26218:1 26223:1 26243:1 26253:1 26263:1 26269:1 26270:1 26278:1 26279:1 26286:1 26320:1 26324:1 26328:1 26329:2 26354:1 26390:1 26403:1 26407:1 26423:1 26434:1 26437:1 26442:1 26445:1 26490:1 26502:2 26549:1 26550:1 26557:1 26581:1 26584:1 26606:1 26679:1 26689:2 26705:1 26726:1 26768:1 26839:1 26872:2 26873:1 26897:1 26898:1 26932:1 26954:1 26966:1 26967:1 26977:1 27063:1 27065:1 27076:1 27100:1 27115:1 27116:1 27133:1 27134:1 27144:1 27182:1 27196:2 27198:1 27223:1 27226:1 27227:1 27231:1 27247:1 27265:1 27280:1 27299:2 27300:1 27305:1 27335:1 27336:2 27351:1 27358:1 27365:1 27376:1 27383:1 27408:2 27429:1 27436:2 27460:1 27466:1 27471:1 27479:1 27484:1 27486:1 27487:3 27489:1 27490:1 27496:1 27498:1 27508:1 27511:1 27527:1 27530:2 27539:2 27580:1 27603:1 27622:1 27655:1 27661:1 27664:2 27674:1 27687:1 27691:2 27692:1 27713:1 27797:9 27799:1 27821:5 27839:1 27864:1 27871:1 27876:2 27890:1 27912:1 27915:1 27994:1 28024:1 28030:1 28046:1 28064:1 28082:1 28101:1 28110:1 28113:1 28275:1 28294:1 28303:1 28319:1 28348:3 28349:1 28382:5 28401:1 28413:1 28424:1 28430:1 28501:1 28527:1 28533:2 28536:1 28593:1 28614:2 28632:1 28635:1 28643:1 28658:1 28670:1 28673:1 28685:1 28694:2 28722:1 28759:1 28773:1 28787:1 28803:2 28809:1 28833:1 28847:1 28884:1 28926:1 28944:1 28948:2 28976:1 29005:2 29012:2 29032:1 29042:1 29136:1 29137:1 29152:2 29226:1 29233:1 29241:1 29263:1 29279:1 29298:1 29305:1 29313:1 29330:1 29339:1 29342:1 29351:1 29356:1 29421:3 29448:1 29474:1 29483:1 29485:1 29515:3 29521:1 29535:1 29559:1 29562:1 29567:1 29583:1 29605:2 29632:1 29643:2 29654:1 29676:1 29704:3 29724:1 29728:1 29735:1 29745:1 29783:1 29820:2 29831:2 29839:1 29847:1 29904:1 29958:1 29974:2 29977:1 29999:1 30040:1 30052:1 30105:1 30142:1 30149:2 30156:2 30168:1 30199:1 30213:2 30231:1 30249:1 30297:1 30327:1 30330:1 30331:2 30342:1 30357:1 30370:1 30380:1 30393:1 30431:1 30471:1 30475:3 30504:3 30510:1 30532:1 30587:2 30589:3 30602:1 30653:1 30664:2 30685:1 30689:2 30704:3 30710:1 30718:1 30775:1 30776:1 30789:1 30798:3 30802:1 30805:2 30809:1 30834:1 30843:2 30864:1 30867:1 30868:2 30869:1 30895:1 30908:2 30968:1 30971:1 30994:1 31020:1 31042:1 31046:1 31057:1 31107:1 31130:1 31142:2 31144:1 31158:1 31161:1 31172:1 31195:1 31216:4 31227:1 31322:1 31324:1 31360:1 31363:1 31370:1 31392:2 31404:1 31422:1 31448:1 31452:3 31459:1 31461:1 31463:1 31484:1 31485:1 31531:2 31538:1 31554:1 31576:1 31590:1 31625:1 31635:1 31649:1 31665:10 31667:2 31670:1 31674:2 31680:3 31686:1 31688:2 31704:3 31721:2 31750:1 31761:2 31783:1 31827:1 31834:3 31846:1 31853:1 31877:3 31897:1 31932:1 31938:1 31962:1 31974:1 31998:2 32009:1 32027:1 32047:1 32070:1 32085:1 32105:1 32117:1 32142:1 32172:2 32207:1 32229:1 32241:2 32244:3 32280:2 32303:1 32304:1 32312:1 32407:1 32447:1 32451:1 32471:2 32476:1 32491:2 32499:1 32551:1 32552:2 32625:1 32651:1 32656:1 32661:1 32713:2 32722:1 32795:1 32824:1 32834:1 32885:1 32899:1 32900:1 32941:1 32944:2 32956:1 32963:1 33001:1 33019:1 33041:1 33056:1 33059:1 33075:1 33084:1 33141:1 33143:2 33146:1 33148:2 33155:4 33167:2 33168:1 33171:2 33211:1 33220:1 33224:1 33225:1 33226:1 33267:1 33271:1
11 1:1 6:1 27:1 34:1 39:1 55:1 60:2 67:1 86:1 93:1 99:1 148:1 166:1 170:1 183:1 187:1 232:1 238:3 265:1 282:1 283:1 294:2 296:2 313:1 401:1 403:1 411:2 446:1 498:1 507:2 513:1 523:1 546:2 582:2 621:1 627:1 646:1 654:1 698:1 717:2 721:1 731:1 745:1 759:2 764:2 765:1 766:1 790:1 815:1 937:1 956:1 971:1 974:1 979:1 984:1 1003:2 1022:2 1049:1 1053:1 1057:1 1067:1 1069:1 1070:1 1071:1 1083:1 1094:1 1103:1 1106:1 1118:1 1125:1 1127:1 1130:5 1141:2 1144:1 1161:1 1211:1 1220:1 1236:1 1239:1 1244:1 1262:1 1284:1 1318:1 1376:1 1378:1 1392:1 1393:1 1405:1 1415:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:1 1465:1 1480:1 1496:1 1504:1 1514:1 1539:1 1624:1 1664:3 1683:1 1691:1 1719:1 1726:4 1730:7 1739:8 1745:1 1749:1 1751:2 1793:1 1807:1 1808:1 1837:3 1839:3 1869:1 1878:2 1883:4 1892:1 1906:1 1943:1 1955:1 1957:1 1963:1 1977:1 1980:1 1999:1 2019:1 2061:1 2062:1 2073:2 2098:1 2113:1 2118:1 2119:1 2133:1 2135:1 2137:1 2138:1 2169:1 2177:1 2180:1 2195:3 2214:1 2223:1 2246:1 2263:1 2269:1 2279:1 2284:1 2301:1 2317:1 2322:1 2348:1 2355:1 2373:1 2381:1 2397:1 2399:1 2421:1 2422:1 2437:1 2482:4 2502:3 2508:1 2521:1 2525:1 2530:1 2551:1 2552:1 2553:1 2555:3 2558:3 2562:1 2576:1 2578:2 2579:2 2583:1 2587:1 2618:3 2620:1 2623:2 2624:1 2625:2 2631:1 2634:1 2635:1 2640:2 2642:1 2647:4 2648:1 2652:1 2657:2 2662:2 2663:1 2681:1 2720:1 2739:1 2753:1 2774:1 2784:1 2801:1 2821:1 2831:1 2864:1 2868:1 2896:1 2905:2 2918:1 2934:1 2951:1 2955:1 2962:1 2993:1 3008:1 3033:1 3039:1 3051:1 3059:1 3080:3 3097:1 3106:1 3116:2 3121:1 3134:2 3145:1 3157:1 3165:1 3171:1 3173:1 3182:1 3213:1 3263:2 3283:1 3284:4 3294:1 3295:5 3302:2 3336:3 3351:1 3352:1 3353:4 3360:1 3364:1 3369:1 3377:1 3379:1 3386:1 3408:1 3433:1 3464:1 3474:1 3475:1 3482:1 3529:1 3539:1 3549:1 3550:1 3578:2 3588:1 3625:1 3683:1 3702:2 3726:1 3755:1 3769:1 3772:1 3816:1 3822:2 3857:2 3868:1 3926:1 3930:2 3936:1 3942:2 3945:1 3951:1 3968:1 3990:1 4005:1 4011:1 4012:1 4018:1 4035:1 4040:1 4047:3 4074:1 4105:1 4122:1 4160:1 4174:1 4193:2 4195:1 4245:1 4247:1 4252:1 4253:4 4271:1 4288:4 4289:1 4303:1 4306:2 4332:1 4334:1 4351:2 4382:1 4470:1 4477:1 4484:1 4488:1 4511:1 4533:1 4536:2 4545:2 4573:1 4574:1 4575:1 4581:1 4609:1 4628:1 4637:1 4663:1 4667:1 4684:1 4727:1 4730:1 4763:4 4767:3 4773:1 4785:1 4793:2 4842:1 4872:4 4888:2 4906:1 4907:1 4936:2 4959:1 4989:1 5000:1 5022:1 5033:1 5045:1 5066:1 5098:1 5106:1 5136:1 5143:4 5162:1 5163:1 5168:1 5171:1 5198:1 5239:1 5246:1 5269:1 5287:1 5299:1 5312:1 5340:4 5365:1 5369:3 5562:21 5564:1 5596:1 5610:1 5671:1 5689:1 5717:1 5718:4 5719:2 5722:1 5725:2 5731:2 5735:1 5744:1 5750:3 5752:2 5763:1 5766:1 5770:1 5811:1 5814:2 5844:1 5853:1 5855:1 5868:1 5873:1 5898:1 5965:2 6038:1 6084:1 6089:1 6108:1 6115:1 6144:3 6150:3 6169:1 6181:1 6224:1 6233:1 6237:1 6305:2 6319:1 6328:1 6335:3 6345:1 6372:1 6385:1 6388:1 6397:1 6407:1 6412:1 6418:2 6428:1 6435:1 6459:4 6480:1 6506:1 6508:2 6509:1 6529:1 6531:1 6540:1 6558:1 6581:3 6610:1 6624:1 6688:3 6692:1 6706:1 6776:1 6793:1 6795:1 6806:1 6816:1 6847:1 6884:1 6888:1 6890:1 6897:4 6944:1 6961:3 6980:1 7025:1 7038:1 7062:1 7087:1 7088:1 7101:1 7193:1 7196:1 7200:2 7201:1 7204:2 7207:1 7209:1 7210:1 7211:2 7218:4 7221:1 7222:3 7279:1 7306:1 7307:1 7381:1 7406:1 7410:1 7435:2 7439:1 7469:1 7497:1 7535:1 7539:2 7543:1 7552:1 7574:1 7599:1 7613:1 7628:1 7659:1 7662:1 7671:2 7676:1 7691:1 7705:2 7741:1 7745:1 7766:1 7794:1 7822:1 7855:1 7867:1 7879:3 7912:2 7949:1 7956:1 7993:1 8007:1 8025:1 8027:2 8043:1 8075:3 8089:2 8129:1 8143:2 8155:1 8167:1 8216:1 8230:1 8247:1 8258:1 8277:3 8299:1 8302:1 8338:1 8340:1 8387:1 8389:1 8413:1 8417:2 8426:1 8432:2 8454:1 8474:1 8491:1 8498:1 8499:1 8531:1 8560:1 8562:1 8570:1 8573:1 8599:1 8611:1 8615:1 8624:4 8630:2 8631:3 8633:3 8653:1 8659:1 8688:1 8689:1 8702:25 8726:5 8728:4 8767:1 8810:1 8815:2 8864:1 8886:1 8890:1 8891:1 8901:1 8909:1 8923:1 8932:2 8935:6 8957:1 8960:1 8974:1 8982:4 8992:1 9048:1 9135:1 9143:1 9186:1 9203:1 9221:2 9231:1 9232:11 9267:1 9276:1 9279:1 9298:1 9299:1 9381:1 9430:1 9441:1 9473:1 9507:2 9508:1 9540:2 9542:1 9544:2 9561:1 9623:2 9632:1 9633:1 9638:1 9642:2 9644:1 9648:3 9654:1 9661:1 9697:2 9743:1 9781:1 9788:1 9806:1 9807:1 9810:1 9815:1 9823:1 9836:1 9842:1 9901:2 9923:1 9931:1 9937:1 9942:1 9945:1 9974:1 9976:1 9988:1 9994:1 10008:2 10015:1 10022:1 10027:3 10070:1 10092:1 10150:1 10152:1 10197:1 10209:1 10210:1 10275:1 10282:1 10294:1 10307:2 10331:1 10332:1 10340:1 10345:1 10349:1 10362:1 10371:1 10374:1 10376:1 10389:1 10422:1 10430:1 10434:1 10436:1 10465:1 10479:1 10502:1 10517:1 10518:1 10522:1 10524:1 10540:1 10549:1 10554:1 10591:1 10619:1 10621:1 10623:1 10643:1 10648:1 10666:2 10709:3 10732:1 10752:2 10764:1 10792:1 10800:1 10804:1 10806:1 10828:1 10846:1 10867:1 10877:1 10886:1 10913:1 10948:3 10970:1 10972:1 10973:1 11011:1 11030:1 11052:1 11067:1 11079:1 11119:1 11133:2 11141:1 11163:1 11170:1 11175:1 11178:1 11188:1 11200:1 11210:1 11222:1 11226:1 11231:1 11234:2 11265:1 11266:1 11276:4 11288:1 11291:1 11302:1 11309:1 11324:1 11331:1 11342:1 11376:3 11383:2 11433:1 11438:1 11445:1 11448:1 11450:1 11456:1 11488:1 11492:1 11517:2 11573:1 11588:1 11603:1 11607:2 11611:2 11656:1 11660:1 11674:1 11677:1 11690:1 11695:1 11697:1 11701:1 11717:1 11744:1 11784:1 11796:1 11820:1 11822:3 11841:1 11842:1 11854:1 11858:1 11899:1 11906:3 11914:2 11930:1 11933:1 11949:1 11955:1 12015:2 12026:1 12039:3 12050:2 12109:1 12154:1 12169:2 12255:1 12274:1 12310:1 12319:1 12325:1 12327:1 12336:4 12339:1 12352:2 12377:1 12379:1 12438:1 12448:1 12477:1 12487:1 12551:1 12552:1 12580:1 12618:2 12630:2 12647:1 12743:1 12766:1 12776:1 12805:1 12811:2 12814:1 12836:1 12845:1 12862:1 12865:2 12876:1 12877:1 12893:1 12910:1 12923:1 12928:1 12933:1 12935:1 12954:1 12970:1 12988:3 13000:1 13005:1 13015:1 13027:1 13050:2 13061:1 13064:1 13085:1 13088:1 13089:1 13094:2 13128:4 13135:1 13138:1 13142:1 13150:2 13151:6 13152:1 13153:1 13156:1 13162:5 13196:1 13220:2 13231:1 13254:1 13264:1 13285:1 13302:1 13308:1 13365:1 13391:1 13410:1 13423:2 13427:1 13434:1 13443:1 13448:2 13456:1 13473:2 13480:1 13515:1 13517:1 13527:1 13553:2 13600:1 13606:2 13621:1 13653:1 13662:1 13674:1 13684:2 13685:2 13690:1 13718:1 13742:1 13778:1 13805:1 13815:1 13821:2 13826:1 13830:1 13873:2 13895:2 13896:1 13921:1 13940:1 14039:1 14061:1 14146:1 14162:1 14183:2 14207:1 14210:1 14214:2 14267:1 14281:1 14318:2 14319:1 14345:3 14353:1 14356:2 14361:1 14370:2 14380:1 14416:1 14443:1 14468:1 14472:1 14473:3 14480:1 14483:1 14489:1 14497:1 14518:1 14520:1 14541:1 14572:1 14581:1 14583:1 14592:1 14620:1 14633:1 14640:1 14658:1 14688:1 14697:1 14781:1 14793:4 14854:2 14858:1 14859:1 14870:2 14873:1 14877:2 14881:1 14883:1 14891:1 14895:1 14896:1 14907:3 14915:1 14935:2 14949:1 14957:1 14958:1 14975:1 14980:1 15005:1 15033:1 15039:2 15040:1 15054:1 15082:1 15125:1 15131:1 15191:1 15215:1 15217:4 15246:1 15275:1 15278:1 15281:2 15293:1 15322:1 15325:2 15333:1 15336:1 15429:1 15477:1 15480:1 15483:2 15489:2 15513:1 15543:1 15616:1 15622:1 15728:4 15734:1 15740:1 15780:1 15811:2 15820:2 15840:1 15861:1 15959:1 15960:1 15962:1 15974:3 15986:1 15990:1 15996:1 15997:1 16000:2 16021:1 16030:1 16040:2 16042:1 16043:1 16046:1 16067:1 16098:1 16178:2 16189:1 16214:1 16227:2 16237:1 16254:1 16270:1 16284:1 16289:1 16330:1 16355:1 16362:1 16390:1 16393:2 16411:1 16427:1 16433:1 16448:1 16451:1 16457:1 16484:2 16508:2 16559:1 16566:3 16606:1 16608:1 16630:1 16642:1 16650:1 16674:1 16684:4 16721:2 16723:1 16782:8 16783:1 16787:1 16789:1 16832:2 16846:2 16860:1 16884:1 16904:1 16936:3 16940:2 16942:1 16944:1 16971:2 16973:1 16988:2 16990:1 16999:1 17012:2 17045:1 17046:1 17048:1 17053:1 17056:1 17063:1 17098:1 17105:1 17155:1 17187:1 17194:1 17219:1 17246:1 17251:1 17379:1 17423:7 17448:1 17479:1 17499:1 17514:1 17516:1 17531:1 17539:1 17581:1 17586:1 17661:1 17673:1 17689:3 17695:1 17699:1 17700:1 17709:1 17710:1 17715:1 17729:1 17731:1 17752:1 17758:1 17771:1 17775:1 17776:1 17784:2 17805:1 17829:1 17830:2 17860:1 17866:1 17871:1 17880:1 17884:1 17888:2 17953:2 18008:1 18049:2 18053:1 18074:2 18108:1 18141:1 18148:1 18157:2 18187:1 18195:2 18214:2 18234:2 18236:1 18243:2 18258:1 18260:1 18273:1 18281:2 18302:1 18306:1 18308:2 18315:1 18319:3 18321:1 18322:1 18330:1 18332:2 18340:2 18342:1 18352:1 18372:1 18375:1 18401:1 18417:1 18492:2 18619:1 18635:1 18697:1 18699:1 18702:1 18708:1 18717:1 18738:1 18739:2 18777:2 18785:1 18799:2 18807:1 18821:1 18842:1 18911:2 18919:2 18928:1 18967:1 19000:1 19005:1 19024:1 19029:2 19062:2 19069:1 19081:1 19089:1 19103:1 19139:1 19165:2 19200:3 19216:1 19233:1 19248:2 19276:1 19320:5 19329:1 19352:1 19357:2 19398:1 19417:1 19443:1 19452:1 19471:1 19509:1 19583:1 19622:1 19628:1 19634:1 19643:1 19655:1 19666:1 19677:3 19685:1 19691:1 19707:1 19758:1 19763:2 19772:3 19774:1 19776:1 19781:1 19794:1 19809:1 19816:1 19843:2 19849:2 19850:1 19867:1 19872:1 19910:1 19919:1 19951:1 19962:1 19966:1 20007:2 20020:1 20081:2 20085:1 20095:1 20104:1 20110:1 20112:1 20123:1 20124:2 20136:1 20146:1 20166:1 20174:1 20181:1 20183:1 20202:1 20220:1 20225:1 20237:1 20239:1 20241:1 20286:1 20287:1 20309:2 20341:1 20391:1 20405:1 20412:1 20441:1 20460:1 20492:2 20525:1 20540:1 20569:1 20635:1 20645:1 20682:1 20697:2 20742:3 20803:4 20814:2 20815:1 20851:1 20876:1 20895:1 20900:1 20942:1 20949:1 20951:1 20970:1 20983:2 20996:1 21004:1 21016:1 21041:1 21047:1510 21068:3 21079:2 21173:2 21205:1 21279:1 21291:1 21292:1 21308:1 21355:1 21372:1 21374:1 21382:1 21431:1 21444:1 21449:1 21512:1 21515:3 21518:1 21539:1 21551:1 21566:1 21571:1 21585:1 21601:1 21644:1 21709:1 21735:2 21790:1 21808:1 21812:1 21813:1 21821:1 21827:2 21861:2 21874:1 21883:1 21895:1 21918:1 21921:4 21952:1 21953:2 21961:1 21966:1 21992:1 22020:3 22041:1 22045:1 22072:4 22095:2 22138:1 22162:1 22173:2 22174:1 22227:1 22235:1 22240:1 22262:1 22271:1 22281:1 22301:2 22311:1 22325:1 22344:1 22375:1 22404:1 22423:3 22459:1 22495:1 22503:1 22508:1 22540:1 22545:1 22548:1 22562:1 22565:2 22569:1 22573:1 22586:1 22617:1 22626:2 22644:2 22681:2 22737:2 22740:1 22750:1 22766:1 22774:1 22791:1 22815:2 22829:1 22837:1 22845:1 22852:1 22870:2 22889:1 22992:1 23002:1 23046:1 23055:1 23059:1 23108:2 23129:1 23147:1 23160:3 23172:1 23183:1 23243:1 23257:1 23279:1 23281:1 23288:1 23353:1 23363:1 23367:1 23390:1 23415:2 23416:1 23419:1 23444:3 23456:1 23463:1 23490:1 23504:2 23518:1 23521:1 23523:1 23532:1 23544:2 23550:2 23556:1 23570:1 23572:1 23580:2 23612:1 23617:1 23644:1 23649:1 23657:1 23658:1 23663:1 23723:1 23729:1 23736:1 23745:1 23752:1 23765:1 23773:1 23790:1 23800:1 23858:1 23861:1 23863:1 23898:1 23901:1 23917:1 23919:2 23927:1 23985:1 24009:1 24013:1 24024:4 24032:1 24058:1 24074:1 24082:1 24090:1 24098:1 24099:1 24114:1 24133:1 24143:1 24166:1 24195:1 24205:1 24214:1 24226:2 24229:1 24250:1 24255:2 24262:2 24274:1 24276:2 24289:1 24321:1 24323:1 24358:1 24359:1 24366:3 24369:1 24373:1 24386:1 24417:1 24418:1 24425:1 24427:1 24493:5 24502:1 24504:1 24527:1 24542:3 24550:2 24578:1 24587:1 24601:1 24636:1 24643:1 24650:2 24678:1 24681:1 24685:2 24687:1 24690:1 24692:1 24698:1 24706:2 24727:1 24775:1 24788:1 24792:1 24847:1 24854:1 24858:1 24907:1 24916:3 24925:1 24933:2 24943:1 24959:1 24966:1 24969:1 24972:2 24974:1 25011:1 25036:1 25041:1 25077:1 25093:1 25115:2 25127:1 25133:1 25139:2 25156:2 25167:2 25189:1 25197:1 25224:2 25233:1 25245:2 25300:1 25306:2 25337:2 25356:1 25364:2 25367:1 25369:1 25434:1 25454:1 25494:4 25508:1 25510:1 25513:1 25526:1 25545:2 25548:1 25552:1 25561:2 25569:1 25595:2 25600:1 25624:1 25635:1 25659:2 25666:1 25669:1 25674:2 25678:2 25713:1 25724:1 25732:1 25865:1 25897:1 25920:1 26002:1 26017:1 26019:2 26025:1 26032:1 26035:1 26036:1 26046:1 26056:4 26062:1 26073:1 26088:1 26110:2 26133:1 26150:1 26158:1 26188:1 26218:1 26223:1 26243:1 26253:1 26263:1 26269:1 26270:1 26278:1 26279:1 26286:1 26320:1 26324:1 26328:1 26329:2 26331:1 26354:2 26390:1 26403:1 26407:1 26423:1 26434:1 26435:1 26437:2 26442:1 26445:1 26490:1 26502:2 26549:1 26550:1 26557:1 26581:1 26584:1 26606:1 26679:1 26689:2 26705:1 26726:1 26768:1 26794:1 26839:1 26872:2 26873:1 26897:1 26898:1 26932:1 26954:1 26966:1 26967:1 26977:1 27020:1 27063:1 27065:1 27076:1 27100:1 27115:2 27116:1 27133:1 27134:1 27144:2 27151:1 27182:1 27196:2 27198:1 27223:1 27226:1 27227:1 27231:1 27247:1 27265:1 27280:1 27299:2 27300:1 27305:1 27335:1 27336:2 27351:1 27358:1 27365:1 27376:1 27383:1 27408:2 27429:2 27436:2 27460:1 27466:1 27471:1 27479:1 27484:1 27486:1 27487:4 27489:2 27490:1 27496:1 27498:1 27508:1 27511:1 27527:1 27530:3 27539:2 27580:1 27603:1 27622:1 27655:1 27661:1 27664:2 27674:1 27687:1 27691:2 27692:1 27713:1 27754:1 27797:9 27799:1 27821:5 27839:1 27864:1 27871:1 27876:2 27890:1 27912:1 27915:1 27986:1 27994:1 28024:1 28030:1 28046:1 28064:1 28082:1 28094:1 28101:1 28110:1 28113:1 28275:1 28294:1 28303:1 28308:1 28319:1 28348:3 28349:1 28382:5 28401:1 28413:1 28424:1 28430:1 28501:1 28527:1 28533:2 28536:1 28593:1 28614:2 28632:1 28635:2 28643:1 28658:1 28670:1 28673:1 28685:1 28694:2 28722:1 28736:1 28759:1 28773:1 28776:1 28787:1 28803:2 28809:1 28833:1 28847:1 28884:1 28926:1 28944:1 28948:2 28966:1 28976:1 29005:2 29012:2 29032:1 29042:1 29136:1 29137:1 29152:2 29226:1 29233:1 29241:1 29263:1 29279:1 29298:1 29305:1 29313:1 29330:1 29339:1 29342:1 29349:1 29351:1 29356:1 29421:3 29448:1 29474:1 29483:1 29485:1 29496:1 29515:4 29521:1 29535:1 29559:1 29562:1 29567:1 29583:1 29605:2 29632:1 29643:2 29654:1 29676:1 29704:3 29724:1 29728:1 29735:1 29745:1 29783:1 29820:2 29831:2 29839:1 29847:1 29904:1 29958:1 29974:2 29977:1 29999:1 30040:1 30044:1 30052:1 30105:1 30142:1 30149:2 30156:2 30168:1 30191:1 30199:1 30213:2 30231:1 30249:1 30297:1 30306:1 30327:1 30330:1 30331:2 30342:1 30357:1 30370:1 30380:1 30393:1 30431:1 30471:1 30475:3 30504:3 30510:1 30532:1 30587:2 30589:3 30602:1 30653:1 30664:2 30685:1 30689:2 30704:3 30710:1 30718:1 30775:1 30776:1 30789:1 30798:3 30802:1 30805:2 30809:1 30834:1 30843:2 30854:1 30864:1 30867:1 30868:2 30869:1 30880:1 30895:1 30908:2 30968:1 30971:1 30994:1 31020:1 31042:1 31046:1 31057:2 31107:1 31130:1 31142:2 31144:1 31158:1 31161:1 31172:1 31195:1 31216:5 31227:1 31306:1 31322:1 31324:1 31360:1 31363:1 31370:1 31392:2 31398:1 31404:1 31422:1 31448:1 31452:3 31459:1 31461:1 31463:1 31484:1 31485:2 31531:2 31538:1 31543:1 31554:1 31576:1 31590:1 31625:1 31635:1 31649:1 31665:10 31667:2 31670:1 31674:2 31680:3 31686:1 31688:2 31704:3 31721:2 31750:1 31761:2 31783:1 31827:1 31834:3 31846:1 31853:1 31877:3 31897:1 31932:1 31938:1 31962:1 31974:1 31998:2 32009:1 32027:1 32047:1 32070:1 32085:1 32105:1 32117:1 32125:1 32142:1 32153:1 32172:2 32181:1 32207:1 32229:1 32241:2 32244:3 32280:2 32299:1 32303:1 32304:1 32312:1 32407:1 32447:1 32451:1 32471:2 32476:1 32491:2 32499:1 32551:1 32552:2 32625:1 32651:1 32656:2 32661:1 32713:2 32719:1 32722:1 32795:1 32824:1 32834:1 32885:1 32899:1 32900:1 32941:1 32944:2 32956:1 32963:1 33001:1 33019:1 33041:1 33056:2 33059:1 33075:1 33084:1 33141:1 33143:2 33146:1 33148:2 33155:4 33167:3 33168:1 33171:2 33211:1 33220:1 33224:1 33225:1 33226:1 33267:1 33271:1
11 1:1 6:1 27:1 34:1 39:1 55:1 60:2 67:1 86:1 93:1 99:1 148:1 166:1 170:1 183:1 187:1 232:1 238:3 265:1 282:1 283:1 294:2 296:2 313:1 401:1 403:2 411:2 446:1 455:1 498:1 507:3 513:1 523:1 546:2 582:2 621:1 627:1 646:1 654:1 698:1 717:2 721:1 731:2 745:1 759:2 764:2 765:1 766:1 790:1 795:1 815:1 937:1 956:1 971:1 974:1 979:1 984:1 1003:2 1022:3 1049:1 1053:1 1057:1 1067:1 1069:1 1070:1 1071:2 1083:1 1094:1 1103:1 1106:1 1118:1 1125:1 1127:1 1130:5 1141:2 1144:1 1161:1 1211:1 1220:1 1236:1 1239:1 1244:1 1262:1 1284:1 1316:1 1318:1 1376:1 1378:1 1392:1 1393:1 1405:1 1415:1 1421:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:1 1465:1 1480:1 1487:1 1496:1 1504:1 1514:1 1539:1 1624:1 1664:3 1683:2 1691:1 1719:1 1726:4 1730:7 1739:8 1745:1 1749:1 1751:2 1793:1 1807:1 1808:1 1837:3 1839:3 1869:1 1878:2 1883:4 1892:1 1906:1 1943:1 1955:1 1957:1 1963:1 1977:1 1980:1 1999:1 2003:1 2019:1 2061:1 2062:1 2073:2 2098:1 2113:1 2118:1 2119:1 2133:1 2135:1 2137:1 2138:1 2169:1 2177:1 2180:1 2195:3 2214:1 2223:1 2246:1 2263:1 2269:1 2279:1 2284:2 2301:1 2317:1 2322:1 2348:1 2355:1 2372:1 2373:1 2381:1 2397:1 2399:1 2421:1 2422:1 2437:1 2482:5 2502:3 2508:1 2521:1 2525:1 2529:1 2530:1 2551:2 2552:1 2553:1 2555:3 2558:3 2562:1 2576:1 2578:2 2579:2 2583:1 2587:1 2618:3 2620:1 2623:2 2624:1 2625:2 2631:1 2634:1 2635:1 2640:2 2642:1 2647:4 2648:1 2652:1 2657:2 2662:2 2663:1 2681:1 2720:1 2739:1 2753:1 2774:1 2784:1 2801:1 2821:1 2831:1 2864:1 2868:1 2896:1 2905:2 2918:1 2934:1 2951:1 2955:1 2962:1 2993:1 3008:1 3033:1 3039:1 3051:1 3059:1 3080:3 3097:1 3106:1 3116:2 3121:1 3134:2 3145:1 3157:1 3165:2 3171:1 3173:1 3182:1 3213:1 3263:2 3283:1 3284:4 3291:1 3294:1 3295:5 3302:2 3336:4 3350:1 3351:1 3352:1 3353:5 3360:1 3364:1 3369:1 3377:1 3379:1 3386:1 3408:1 3433:1 3464:1 3474:1 3475:1 3482:1 3504:1 3529:1 3539:1 3549:1 3550:1 3578:2 3588:1 3625:1 3683:1 3702:2 3726:1 3755:1 3769:1 3772:1 3799:1 3816:1 3822:2 3853:1 3857:2 3868:1 3926:1 3930:2 3936:1 3942:2 3945:1 3951:1 3968:1 3990:1 4005:1 4011:1 4012:1 4018:1 4035:1 4040:1 4047:3 4074:1 4105:1 4122:1 4160:2 4174:1 4193:2 4195:1 4245:1 4247:1 4252:1 4253:4 4271:1 4288:4 4289:1 4303:1 4306:2 4332:1 4334:1 4351:2 4382:1 4470:1 4477:1 4484:1 4488:1 4511:1 4529:1 4533:1 4536:2 4545:2 4573:1 4574:1 4575:1 4581:1 4609:1 4628:1 4637:1 4663:1 4667:1 4684:1 4727:1 4730:1 4763:4 4767:3 4773:1 4785:1 4793:3 4842:2 4872:4 4888:2 4906:1 4907:1 4936:2 4959:1 4989:1 5000:1 5022:1 5033:1 5045:1 5066:1 5098:1 5106:1 5136:1 5143:4 5162:1 5163:1 5168:1 5171:1 5198:1 5239:1 5246:1 5269:1 5287:2 5299:1 5312:1 5340:4 5365:1 5369:3 5562:23 5564:2 5596:1 5610:1 5671:1 5689:1 5690:1 5717:1 5718:4 5719:2 5722:1 5725:2 5731:2 5735:1 5744:1 5750:5 5752:3 5763:1 5766:1 5770:1 5811:1 5814:2 5844:1 5853:1 5855:1 5868:1 5873:1 5898:1 5965:2 6038:1 6084:1 6089:1 6108:1 6115:1 6144:3 6150:3 6169:1 6181:1 6224:1 6233:1 6237:1 6305:2 6319:1 6328:1 6335:3 6345:1 6372:2 6385:1 6388:1 6397:1 6407:1 6412:1 6418:2 6428:1 6435:1 6459:4 6469:1 6480:2 6506:1 6508:2 6509:1 6529:1 6531:1 6540:1 6558:2 6581:3 6610:1 6624:1 6688:3 6692:1 6706:1 6707:1 6776:1 6793:1 6795:1 6806:1 6816:1 6847:1 6884:1 6888:1 6890:1 6897:4 6944:1 6961:3 6980:1 7025:1 7038:1 7062:1 7087:1 7088:1 7101:1 7132:1 7190:1 7192:1 7193:1 7196:1 7197:1 7200:2 7201:1 7204:2 7207:1 7209:1 7210:1 7211:2 7218:4 7221:1 7222:3 7279:1 7306:1 7307:1 7381:1 7406:1 7410:1 7435:2 7439:1 7469:1 7497:1 7535:1 7539:2 7543:1 7552:1 7574:1 7599:1 7613:1 7628:1 7637:1 7659:1 7662:1 7671:2 7676:1 7691:1 7705:2 7724:1 7741:1 7745:1 7748:1 7766:1 7794:1 7822:1 7855:1 7867:1 7879:3 7912:2 7949:1 7956:1 7993:1 8007:1 8025:1 8027:2 8043:1 8075:3 8089:2 8129:1 8143:2 8155:1 8167:1 8216:1 8230:1 8247:1 8258:1 8277:3 8299:1 8302:1 8328:1 8338:1 8340:1 8387:1 8389:1 8413:1 8417:2 8426:1 8432:2 8454:1 8474:1 8491:1 8498:1 8499:1 8531:1 8560:1 8562:1 8570:1 8573:1 8599:1 8611:1 8615:1 8624:4 8630:3 8631:3 8633:3 8653:1 8659:1 8688:1 8689:1 8702:25 8726:5 8728:5 8767:1 8783:1 8810:1 8815:2 8864:1 8886:1 8890:1 8891:1 8901:1 8909:1 8923:1 8932:2 8935:6 8957:1 8960:1 8974:1 8982:5 8992:1 9048:1 9059:1 9135:1 9143:1 9186:1 9203:1 9221:2 9231:1 9232:11 9267:1 9276:1 9279:1 9298:1 9299:1 9381:1 9430:1 9441:1 9473:1 9507:2 9508:1 9540:2 9542:1 9544:2 9561:1 9623:2 9632:1 9633:1 9638:1 9642:2 9644:1 9648:3 9654:1 9661:1 9697:2 9743:1 9746:1 9781:1 9788:1 9806:1 9807:1 9810:1 9815:1 9823:1 9836:1 9842:1 9901:2 9923:1 9931:1 9937:1 9942:1 9945:1 9974:1 9976:1 9988:1 9994:1 10008:2 10015:1 10022:1 10027:3 10070:1 10092:1 10117:1 10150:1 10152:1 10197:1 10209:2 10210:2 10275:1 10282:1 10294:1 10307:2 10331:1 10332:1 10340:1 10345:1 10349:1 10362:1 10371:1 10374:1 10376:1 10389:1 10422:1 10430:1 10434:1 10436:1 10445:1 10465:1 10479:1 10502:1 10517:1 10518:1 10522:1 10524:1 10540:1 10549:1 10554:1 10584:1 10591:1 10619:1 10621:1 10623:1 10643:1 10648:1 10666:2 10709:3 10732:1 10752:2 10764:1 10792:1 10800:1 10804:1 10806:1 10828:1 10846:1 10867:1 10877:1 10886:1 10913:1 10948:5 10970:1 10972:1 10973:1 11011:1 11030:1 11052:1 11067:1 11079:1 11119:1 11133:2 11141:1 11163:1 11170:1 11175:1 11178:1 11188:1 11200:1 11210:1 11222:1 11226:1 11231:1 11234:2 11265:1 11266:1 11276:4 11288:1 11291:1 11302:1 11309:1 11324:1 11331:1 11342:1 11376:3 11383:2 11433:1 11438:1 11445:1 11448:1 11450:1 11456:1 11488:1 11492:1 11517:2 11573:1 11588:1 11603:1 11607:2 11611:2 11656:1 11660:1 11674:1 11677:1 11690:1 11695:1 11697:1 11701:1 11717:1 11744:1 11784:2 11796:1 11820:1 11822:3 11841:1 11842:1 11854:1 11858:1 11899:1 11906:3 11914:2 11930:1 11933:1 11949:1 11955:1 12015:2 12026:1 12039:3 12050:2 12109:1 12154:1 12169:2 12255:1 12274:1 12310:1 12319:1 12325:1 12327:1 12336:4 12339:1 12352:2 12369:1 12377:1 12379:1 12438:1 12448:1 12477:1 12487:1 12551:1 12552:1 12580:1 12618:2 12630:2 12647:1 12743:1 12766:1 12776:1 12805:1 12811:2 12814:1 12836:1 12845:1 12862:1 12865:3 12876:1 12877:1 12893:1 12910:1 12923:1 12928:2 12933:1 12935:1 12954:1 12970:1 12988:3 13000:1 13005:1 13015:1 13018:1 13027:1 13050:2 13061:1 13064:1 13073:1 13085:1 13088:1 13089:1 13094:2 13128:6 13135:1 13138:1 13142:1 13150:2 13151:6 13152:1 13153:1 13156:1 13162:5 13196:1 13220:2 13231:1 13254:1 13264:1 13285:1 13302:1 13308:1 13365:1 13391:1 13410:1 13423:2 13427:1 13434:1 13443:1 13448:2 13456:1 13473:2 13480:1 13515:1 13517:1 13527:1 13553:2 13600:1 13606:2 13621:1 13653:2 13662:1 13674:1 13684:2 13685:2 13690:1 13718:1 13742:1 13778:1 13805:1 13815:1 13821:2 13826:1 13830:1 13873:3 13895:2 13896:1 13921:1 13940:1 14021:1 14039:1 14061:1 14119:1 14146:1 14162:1 14183:2 14207:1 14210:1 14214:2 14267:1 14281:1 14318:2 14319:1 14345:3 14353:1 14356:2 14361:1 14370:2 14380:1 14416:1 14443:1 14468:1 14472:1 14473:3 14480:1 14483:1 14489:1 14497:1 14518:1 14520:1 14541:1 14545:1 14572:1 14581:1 14583:1 14592:1 14620:1 14633:1 14640:1 14658:1 14688:1 14697:1 14781:1 14793:4 14854:2 14858:1 14859:1 14870:2 14873:1 14877:2 14881:1 14883:1 14891:1 14895:1 14896:1 14907:4 14915:1 14935:2 14949:2 14957:1 14958:1 14975:1 14980:1 15005:1 15033:1 15039:2 15040:1 15054:1 15082:1 15125:1 15131:1 15191:1 15215:1 15217:4 15246:1 15275:1 15278:1 15281:2 15293:1 15322:1 15325:2 15333:1 15336:1 15429:1 15477:1 15480:1 15483:2 15489:2 15496:1 15513:1 15543:1 15616:1 15622:1 15728:4 15734:1 15740:1 15780:1 15811:2 15820:2 15840:1 15861:1 15959:1 15960:1 15962:1 15974:3 15986:1 15990:1 15996:1 15997:1 16000:3 16021:1 16030:1 16040:2 16042:1 16043:1 16046:1 16067:1 16098:1 16178:2 16189:1 16214:1 16227:2 16229:1 16237:1 16254:1 16270:1 16284:1 16289:1 16330:2 16355:1 16362:1 16390:1 16393:2 16411:1 16427:1 16433:1 16448:1 16451:1 16457:1 16484:2 16508:2 16559:1 16566:3 16606:1 16608:1 16630:1 16642:1 16650:1 16674:1 16684:4 16721:2 16723:1 16782:8 16783:1 16787:1 16789:1 16832:2 16846:2 16860:1 16884:1 16904:1 16936:3 16940:2 16942:1 16944:1 16971:2 16973:1 16988:2 16990:1 16999:1 17012:2 17045:2 17046:1 17048:1 17053:1 17056:1 17063:1 17098:1 17105:1 17155:1 17187:1 17194:1 17219:1 17246:1 17251:1 17297:1 17324:1 17370:1 17379:1 17423:7 17448:1 17479:1 17499:1 17514:1 17516:1 17531:1 17539:1 17581:1 17586:1 17661:1 17673:1 17689:4 17695:1 17699:1 17700:1 17709:1 17710:2 17714:1 17715:1 17729:1 17731:1 17752:1 17758:1 17771:1 17775:1 17776:1 17784:2 17805:2 17829:1 17830:2 17857:1 17860:1 17866:1 17871:1 17880:1 17884:1 17888:3 17953:2 18008:1 18049:2 18053:1 18074:2 18108:1 18141:1 18148:1 18157:2 18187:1 18195:2 18214:2 18226:1 18234:2 18236:1 18243:2 18258:1 18260:1 18273:1 18281:2 18302:1 18306:1 18308:2 18315:1 18319:3 18321:1 18322:1 18330:1 18332:2 18340:2 18342:1 18352:1 18372:1 18375:1 18401:1 18417:1 18492:2 18619:1 18635:1 18697:1 18699:1 18702:1 18708:1 18717:1 18738:1 18739:2 18777:2 18785:1 18799:2 18807:1 18821:1 18842:1 18911:2 18919:2 18928:1 18966:1 18967:1 19000:1 19005:1 19024:1 19029:2 19062:2 19069:1 19081:1 19089:2 19103:1 19139:1 19155:1 19165:2 19182:1 19200:4 19216:1 19233:1 19248:2 19276:1 19320:5 19329:1 19351:1 19352:1 19357:3 19398:1 19417:1 19443:1 19448:1 19452:1 19471:1 19508:1 19509:1 19583:1 19622:1 19628:1 19634:1 19643:1 19655:1 19663:1 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19758:1 19763:2 19772:3 19774:1 19776:1 19781:1 19794:1 19809:1 19816:1 19843:2 19849:2 19850:1 19867:1 19872:1 19910:1 19919:1 19951:1 19962:1 19966:1 20007:2 20020:1 20045:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:1 20123:2 20124:2 20136:1 20146:1 20166:1 20174:1 20181:1 20183:1 20202:1 20220:1 20225:1 20237:1 20239:1 20241:1 20286:1 20287:1 20309:2 20341:1 20391:1 20394:1 20405:1 20412:1 20441:1 20460:1 20492:2 20525:1 20540:1 20569:1 20635:1 20645:1 20682:1 20697:2 20742:3 20803:5 20814:2 20815:1 20851:1 20876:1 20895:1 20900:1 20942:1 20949:1 20951:1 20970:1 20983:2 20996:1 21004:1 21016:1 21041:1 21047:1616 21068:3 21079:2 21087:1 21096:1 21173:2 21205:1 21279:1 21291:1 21292:1 21308:1 21355:1 21372:1 21374:1 21382:1 21401:1 21431:1 21444:1 21449:1 21512:1 21515:3 21518:1 21539:1 21551:1 21566:1 21571:1 21585:1 21601:1 21644:1 21689:1 21709:1 21735:3 21790:1 21808:1 21812:1 21813:1 21821:1 21827:2 21861:2 21874:1 21883:1 21895:1 21918:1 21921:4 21952:1 21953:3 21961:1 21966:1 21992:1 22020:3 22041:1 22045:1 22072:4 22095:2 22138:1 22162:1 22173:2 22174:1 22227:1 22235:1 22240:1 22262:1 22267:1 22271:1 22281:1 22301:2 22311:1 22325:1 22344:1 22375:1 22404:1 22423:3 22459:1 22479:1 22495:1 22503:2 22508:1 22540:1 22545:1 22548:1 22562:1 22565:2 22569:1 22573:1 22586:1 22617:1 22626:2 22644:2 22681:2 22737:2 22740:1 22750:1 22766:1 22774:1 22791:1 22793:1 22815:2 22829:1 22837:1 22845:1 22852:1 22870:3 22889:1 22984:1 22992:1 23002:1 23046:1 23055:1 23059:1 23108:3 23129:1 23147:1 23160:4 23172:1 23183:1 23243:1 23257:1 23279:1 23281:1 23288:1 23353:1 23363:1 23367:1 23390:1 23415:2 23416:1 23419:1 23444:3 23456:1 23463:1 23490:1 23504:2 23518:1 23521:1 23523:1 23532:1 23544:2 23550:2 23556:1 23570:1 23572:1 23580:2 23612:1 23617:1 23622:1 23644:1 23649:1 23657:1 23658:1 23663:1 23723:1 23729:1 23736:1 23745:1 23752:2 23765:1 23773:1 23790:1 23800:1 23858:1 23861:1 23863:1 23898:1 23901:1 23917:1 23919:2 23927:1 23931:1 23955:1 23985:1 24009:1 24013:1 24024:4 24032:1 24039:1 24058:1 24074:1 24082:1 24090:1 24098:1 24099:1 24114:1 24133:1 24143:1 24144:1 24166:1 24195:1 24205:2 24214:1 24226:2 24229:1 24250:1 24255:2 24262:2 24274:1 24276:2 24289:1 24321:1 24323:1 24358:1 24359:1 24366:3 24369:1 24373:1 24386:1 24417:1 24418:1 24425:1 24427:1 24493:5 24502:1 24504:1 24527:1 24542:3 24550:2 24578:1 24587:1 24601:2 24636:1 24643:1 24650:2 24678:1 24681:1 24685:2 24687:1 24690:1 24692:1 24698:1 24706:2 24727:1 24775:1 24788:1 24792:1 24847:1 24854:1 24858:1 24907:1 24916:3 24921:1 24925:1 24933:3 24943:1 24959:1 24966:1 24969:1 24972:2 24974:1 25011:1 25036:1 25041:1 25077:1 25093:1 25115:2 25127:1 25133:1 25139:2 25156:2 25167:2 25189:1 25197:1 25224:2 25233:1 25245:2 25300:1 25306:2 25337:2 25356:1 25364:2 25367:1 25369:1 25434:1 25454:1 25494:4 25508:1 25510:1 25513:1 25526:1 25545:2 25548:1 25552:2 25561:2 25569:1 25595:2 25600:1 25624:1 25635:1 25659:3 25666:1 25669:1 25674:2 25678:2 25713:1 25724:1 25732:1 25841:1 25865:1 25884:1 25897:1 25920:1 26002:2 26017:1 26019:3 26025:1 26032:1 26035:1 26036:1 26046:1 26056:4 26062:1 26073:1 26088:1 26110:2 26133:1 26150:1 26158:1 26188:1 26218:1 26223:1 26243:1 26253:1 26263:1 26269:1 26270:1 26278:1 26279:1 26286:1 26320:1 26324:1 26328:1 26329:2 26331:1 26354:2 26390:1 26403:1 26407:1 26423:1 26434:1 26435:1 26437:2 26442:1 26445:1 26490:1 26502:2 26549:1 26550:1 26557:1 26581:1 26584:1 26606:1 26679:1 26689:2 26705:1 26726:1 26768:1 26794:1 26839:1 26872:2 26873:1 26897:1 26898:1 26932:1 26954:1 26966:1 26967:1 26977:1 27020:1 27063:1 27065:1 27076:1 27100:2 27115:2 27116:1 27133:1 27134:1 27144:3 27151:1 27182:1 27196:2 27198:1 27223:1 27226:1 27227:1 27231:1 27247:1 27265:1 27280:1 27299:3 27300:1 27305:1 27335:1 27336:2 27351:1 27358:1 27365:1 27376:1 27383:1 27408:2 27429:2 27436:2 27460:1 27466:1 27471:1 27479:1 27483:1 27484:1 27486:1 27487:4 27489:2 27490:1 27496:1 27498:1 27508:1 27511:1 27527:1 27530:3 27539:2 27580:1 27603:1 27622:1 27654:1 27655:1 27661:1 27664:2 27674:1 27687:1 27691:2 27692:1 27713:1 27754:1 27797:9 27799:1 27821:5 27839:1 27864:1 27871:1 27876:2 27890:1 27892:1 27912:1 27915:2 27986:1 27994:1 28003:1 28024:1 28030:1 28046:1 28064:1 28082:1 28094:1 28101:1 28110:1 28113:1 28275:1 28294:1 28303:1 28308:1 28319:1 28348:3 28349:1 28382:5 28401:1 28413:1 28424:1 28430:1 28501:1 28527:1 28533:2 28536:1 28593:1 28614:3 28632:1 28635:2 28643:1 28658:1 28670:1 28673:1 28685:1 28694:2 28722:1 28736:1 28759:1 28773:1 28776:1 28787:1 28803:2 28809:1 28833:1 28847:1 28884:1 28926:1 28944:1 28948:2 28966:1 28976:1 28995:1 29005:2 29012:2 29032:1 29042:1 29136:1 29137:1 29152:2 29226:1 29233:1 29241:1 29263:2 29279:1 29298:1 29305:1 29313:1 29330:1 29339:1 29342:1 29349:1 29351:1 29356:1 29421:4 29448:1 29474:1 29483:1 29485:1 29496:1 29515:5 29521:1 29529:1 29535:1 29559:1 29562:1 29567:1 29583:1 29605:2 29632:1 29643:2 29654:1 29676:1 29704:3 29711:1 29724:1 29728:1 29735:1 29745:1 29783:1 29800:1 29820:2 29831:2 29839:1 29845:1 29847:1 29904:1 29958:2 29974:2 29977:1 29999:1 30035:1 30040:1 30044:1 30052:1 30100:1 30105:1 30142:1 30149:2 30156:2 30168:1 30191:1 30199:1 30213:2 30231:1 30249:1 30297:1 30306:1 30327:1 30330:1 30331:2 30342:1 30357:1 30370:1 30380:2 30393:1 30431:1 30471:1 30475:3 30504:3 30510:1 30532:1 30572:1 30587:2 30589:3 30602:1 30653:1 30664:2 30685:1 30689:2 30704:3 30710:1 30718:1 30775:1 30776:1 30789:1 30798:3 30802:1 30805:2 30809:1 30834:1 30843:3 30854:1 30864:1 30867:1 30868:2 30869:1 30880:1 30895:1 30908:2 30968:1 30971:2 30994:2 31020:1 31042:1 31046:1 31057:2 31065:1 31107:1 31130:1 31142:2 31144:1 31158:1 31161:1 31172:1 31195:1 31216:5 31227:1 31306:1 31322:1 31324:1 31360:1 31363:1 31370:1 31392:2 31398:1 31404:1 31422:1 31448:1 31452:3 31459:1 31461:1 31463:1 31484:1 31485:3 31494:1 31531:3 31538:1 31543:1 31554:1 31576:1 31590:1 31625:1 31635:1 31649:1 31665:10 31667:2 31670:1 31674:2 31680:3 31686:1 31688:2 31704:5 31721:3 31750:1 31761:2 31783:1 31827:1 31834:3 31846:1 31853:1 31877:3 31897:1 31932:1 31938:1 31962:1 31974:1 31998:2 32009:1 32027:1 32047:1 32070:1 32085:1 32105:1 32117:1 32125:1 32142:1 32153:1 32172:2 32181:1 32207:1 32229:1 32241:2 32244:3 32280:2 32299:1 32303:1 32304:1 32312:1 32407:1 32433:1 32447:1 32451:1 32471:3 32476:1 32491:2 32499:1 32551:1 32552:2 32625:1 32651:1 32656:2 32660:1 32661:1 32713:2 32719:1 32722:1 32795:1 32824:1 32834:1 32885:1 32899:1 32900:1 32941:2 32944:2 32956:1 32963:1 33001:1 33019:1 33041:2 33056:3 33059:1 33075:1 33084:1 33141:1 33143:2 33146:1 33148:2 33155:4 33167:3 33168:1 33171:3 33211:1 33220:1 33224:1 33225:1 33226:1 33267:1 33271:1
11 1:1 6:1 27:1 34:1 39:1 55:1 60:2 67:1 86:1 93:1 99:1 148:1 159:1 166:1 170:1 181:1 183:1 187:1 232:1 238:3 265:1 282:1 283:1 294:2 296:2 313:1 401:1 403:2 411:2 446:1 455:1 498:1 507:3 513:1 523:1 546:2 582:2 621:1 627:1 646:1 654:1 698:1 717:2 721:1 731:2 745:1 759:2 764:2 765:1 766:1 774:1 790:1 795:1 815:1 937:1 956:1 971:1 974:1 979:1 984:1 1003:2 1022:3 1049:1 1053:1 1057:1 1067:1 1069:1 1070:1 1071:2 1083:1 1094:1 1103:1 1106:1 1118:1 1125:1 1127:1 1130:5 1141:2 1144:1 1161:1 1211:1 1220:1 1236:1 1239:1 1244:1 1262:1 1284:1 1316:1 1318:1 1376:1 1378:1 1392:1 1393:1 1405:1 1415:1 1421:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:1 1465:1 1480:1 1481:1 1487:1 1496:2 1504:1 1514:1 1539:1 1624:1 1650:1 1664:3 1683:2 1690:1 1691:1 1719:1 1726:4 1730:7 1739:8 1745:1 1749:1 1751:2 1793:1 1807:1 1808:1 1837:3 1839:3 1869:1 1878:2 1883:5 1892:1 1906:1 1943:1 1955:1 1957:1 1963:1 1977:1 1980:1 1999:1 2003:1 2019:1 2061:1 2062:1 2073:2 2098:1 2113:1 2118:1 2119:1 2133:1 2135:1 2137:1 2138:1 2169:1 2177:1 2180:1 2195:4 2214:1 2223:1 2237:1 2246:1 2255:1 2263:1 2269:1 2279:1 2284:2 2301:1 2317:1 2322:1 2348:1 2355:1 2372:1 2373:1 2381:1 2397:1 2399:1 2421:1 2422:1 2437:1 2441:1 2482:5 2502:3 2508:1 2521:1 2525:1 2529:1 2530:1 2551:2 2552:1 2553:1 2555:3 2558:3 2562:1 2576:1 2578:2 2579:3 2583:1 2587:1 2616:1 2618:3 2620:1 2623:2 2624:1 2625:2 2631:1 2634:1 2635:1 2640:2 2642:2 2647:4 2648:1 2652:1 2657:3 2662:2 2663:1 2681:1 2720:1 2739:1 2753:1 2774:1 2784:1 2801:1 2821:1 2831:1 2864:1 2868:1 2896:1 2905:2 2918:1 2934:1 2951:1 2955:1 2962:1 2993:1 3008:1 3033:1 3039:1 3049:1 3051:1 3059:1 3080:3 3097:1 3106:2 3116:2 3121:1 3134:2 3145:1 3157:1 3165:2 3171:1 3173:1 3182:1 3213:1 3257:1 3263:2 3283:1 3284:4 3291:1 3294:1 3295:5 3302:2 3336:4 3350:2 3351:1 3352:1 3353:5 3360:1 3364:1 3369:1 3377:1 3379:1 3386:1 3408:1 3411:1 3433:2 3464:1 3474:1 3475:1 3482:1 3504:1 3529:1 3539:1 3549:1 3550:1 3578:2 3588:1 3625:1 3683:1 3702:2 3726:1 3755:1 3758:1 3769:1 3772:1 3799:1 3816:1 3821:1 3822:2 3853:1 3857:2 3868:1 3926:1 3930:2 3936:1 3942:2 3945:1 3951:1 3968:1 3990:1 4005:1 4011:1 4012:1 4018:1 4035:1 4040:1 4047:3 4074:1 4105:1 4122:1 4160:2 4174:1 4193:2 4195:1 4245:1 4247:1 4252:1 4253:5 4271:1 4288:4 4289:1 4292:1 4303:1 4306:2 4332:1 4334:1 4351:2 4382:1 4470:1 4477:1 4484:1 4488:1 4511:1 4529:1 4533:1 4536:3 4545:2 4573:1 4574:1 4575:1 4581:2 4609:1 4628:1 4637:1 4663:1 4667:1 4684:1 4727:1 4730:1 4763:4 4767:4 4773:1 4785:1 4793:3 4842:2 4872:4 4888:2 4906:1 4907:1 4936:2 4959:1 4974:1 4989:1 5000:1 5022:1 5033:1 5045:1 5066:1 5098:1 5106:1 5136:1 5143:4 5162:1 5163:1 5168:1 5171:1 5198:1 5239:1 5246:1 5269:1 5287:2 5299:1 5312:1 5340:4 5365:1 5369:3 5562:25 5564:2 5596:1 5610:1 5671:1 5689:1 5690:1 5717:1 5718:4 5719:2 5722:1 5725:2 5731:3 5735:1 5744:1 5750:5 5752:3 5763:1 5766:1 5770:1 5811:1 5814:2 5844:1 5853:1 5855:1 5868:1 5873:1 5898:1 5965:2 6038:1 6084:1 6089:1 6108:1 6115:1 6144:3 6150:3 6169:1 6181:1 6224:1 6233:1 6237:1 6283:1 6292:1 6305:2 6319:1 6322:1 6328:1 6335:3 6345:1 6372:2 6385:1 6388:1 6395:1 6397:1 6407:1 6412:1 6418:2 6428:1 6435:1 6459:4 6469:1 6480:2 6496:1 6506:1 6508:2 6509:1 6529:1 6531:1 6540:1 6558:2 6581:3 6584:1 6610:1 6624:1 6688:3 6692:1 6706:1 6707:1 6776:1 6793:1 6795:1 6806:1 6816:1 6843:1 6847:2 6884:1 6888:1 6890:1 6897:4 6944:1 6961:3 6980:1 7025:1 7038:1 7062:1 7087:1 7088:1 7101:1 7132:1 7190:1 7192:1 7193:1 7196:1 7197:1 7200:2 7201:1 7204:2 7207:1 7209:1 7210:1 7211:2 7218:4 7221:1 7222:3 7279:1 7306:1 7307:1 7381:1 7406:1 7410:1 7429:1 7435:2 7439:1 7469:1 7497:1 7535:1 7539:2 7543:1 7552:1 7574:1 7589:1 7599:1 7613:1 7628:1 7637:1 7659:1 7662:1 7671:2 7676:1 7691:1 7705:2 7724:1 7741:1 7745:1 7748:1 7766:1 7794:1 7822:1 7855:1 7867:1 7879:3 7912:2 7949:1 7954:1 7956:1 7984:1 7993:1 8007:1 8025:1 8027:2 8043:1 8064:1 8075:4 8089:2 8129:1 8143:2 8155:1 8167:1 8216:1 8230:1 8247:1 8258:1 8277:3 8299:1 8302:1 8328:1 8338:1 8340:1 8347:1 8387:1 8389:1 8413:1 8417:2 8426:1 8432:2 8454:1 8474:1 8491:1 8498:1 8499:1 8531:1 8560:1 8562:1 8570:1 8573:1 8599:1 8611:1 8615:1 8624:4 8630:3 8631:3 8633:3 8653:1 8659:1 8688:1 8689:1 8702:27 8726:6 8728:5 8767:1 8783:1 8796:1 8810:1 8815:2 8864:1 8886:1 8890:1 8891:1 8901:1 8909:1 8923:1 8932:2 8935:6 8957:1 8960:1 8974:1 8982:5 8992:1 9048:1 9059:1 9135:1 9143:1 9168:1 9186:1 9203:1 9221:2 9231:1 9232:12 9267:1 9276:1 9279:1 9298:1 9299:1 9381:1 9394:1 9430:1 9441:1 9466:1 9473:1 9507:2 9508:1 9540:2 9542:1 9544:2 9561:1 9623:2 9632:1 9633:1 9638:1 9642:2 9644:1 9648:3 9649:1 9654:1 9661:1 9697:2 9743:1 9746:1 9781:1 9788:1 9806:1 9807:1 9810:1 9815:1 9823:1 9836:1 9842:1 9882:1 9901:2 9923:1 9931:1 9937:1 9942:1 9945:1 9974:1 9976:1 9988:1 9994:1 10008:2 10015:1 10022:1 10027:3 10070:1 10092:1 10117:1 10150:1 10152:1 10197:1 10209:2 10210:2 10275:1 10282:1 10294:1 10307:2 10331:1 10332:1 10340:1 10345:2 10349:1 10362:1 10371:1 10374:1 10376:1 10389:1 10422:1 10430:1 10434:1 10436:1 10445:1 10465:1 10479:1 10502:1 10517:1 10518:1 10522:2 10524:1 10540:1 10549:1 10554:1 10584:1 10591:1 10619:1 10621:1 10623:1 10627:1 10643:1 10648:1 10666:2 10709:3 10732:1 10752:2 10764:1 10792:1 10800:1 10804:1 10806:1 10828:1 10846:1 10867:1 10877:1 10886:1 10913:1 10948:5 10970:1 10972:1 10973:1 11011:1 11030:1 11052:1 11067:1 11079:1 11119:2 11133:2 11141:1 11163:1 11170:2 11175:1 11178:1 11188:1 11200:1 11210:1 11222:1 11226:1 11231:1 11234:2 11242:1 11265:1 11266:1 11276:4 11288:1 11291:1 11302:1 11309:1 11324:1 11331:1 11342:1 11376:3 11383:2 11433:1 11438:1 11445:1 11448:1 11450:1 11456:1 11488:1 11492:1 11517:2 11573:1 11588:1 11603:1 11607:2 11611:2 11637:1 11656:1 11660:1 11674:1 11677:1 11690:1 11695:1 11697:1 11701:1 11717:1 11744:1 11784:2 11796:1 11820:1 11822:4 11841:1 11842:1 11846:1 11854:1 11858:1 11899:1 11906:3 11914:2 11930:1 11933:1 11949:1 11955:1 12015:2 12026:1 12039:3 12050:2 12109:1 12154:1 12169:2 12255:1 12274:1 12310:1 12319:1 12325:1 12327:2 12329:1 12336:4 12339:1 12352:2 12356:1 12369:1 12377:1 12379:1 12406:1 12438:1 12448:1 12477:1 12487:1 12551:1 12552:1 12580:1 12618:2 12630:2 12647:1 12743:1 12766:1 12776:1 12805:1 12811:2 12814:1 12836:1 12845:1 12862:1 12865:3 12876:1 12877:1 12893:1 12910:1 12923:1 12928:2 12933:1 12935:1 12954:1 12970:1 12988:3 13000:1 13005:1 13015:1 13018:1 13027:1 13050:2 13061:1 13064:1 13073:1 13085:2 13088:1 13089:2 13094:2 13116:1 13128:6 13135:1 13138:2 13142:1 13150:2 13151:6 13152:1 13153:1 13156:1 13162:5 13196:1 13220:2 13231:1 13254:1 13264:1 13285:1 13302:1 13308:1 13365:1 13391:1 13410:1 13423:2 13427:1 13434:1 13443:1 13448:2 13456:1 13473:2 13480:1 13515:1 13517:1 13527:1 13553:2 13600:1 13606:2 13616:1 13621:1 13653:2 13662:1 13674:1 13684:2 13685:2 13690:1 13718:1 13742:1 13778:1 13805:1 13815:1 13821:2 13826:1 13830:1 13873:3 13895:2 13896:1 13921:1 13940:1 14021:1 14039:1 14061:1 14119:1 14146:1 14162:1 14183:2 14207:1 14210:1 14214:2 14267:1 14281:1 14318:2 14319:1 14345:3 14353:1 14356:2 14361:1 14370:2 14380:1 14384:1 14402:1 14416:1 14443:1 14468:1 14472:1 14473:3 14480:1 14483:1 14489:1 14497:1 14518:1 14520:1 14541:1 14545:1 14572:1 14581:1 14583:1 14592:1 14620:1 14633:1 14640:1 14652:1 14658:2 14688:1 14697:1 14781:1 14793:4 14831:1 14854:2 14858:1 14859:1 14870:2 14873:1 14877:2 14881:1 14883:1 14891:1 14895:1 14896:1 14907:4 14915:1 14935:2 14949:2 14957:1 14958:1 14975:1 14980:1 15005:1 15033:1 15039:2 15040:1 15054:1 15082:1 15125:1 15131:1 15191:1 15215:1 15217:4 15246:1 15251:1 15275:1 15278:1 15281:2 15293:1 15322:1 15325:2 15333:1 15336:1 15429:1 15477:1 15480:1 15483:2 15489:2 15496:1 15513:1 15543:1 15551:1 15616:1 15622:1 15645:1 15728:4 15734:1 15740:1 15780:1 15811:2 15820:2 15840:1 15861:1 15959:1 15960:1 15962:1 15974:3 15986:1 15990:1 15996:2 15997:1 16000:3 16021:1 16030:1 16040:2 16042:1 16043:1 16046:1 16067:1 16098:1 16178:2 16189:1 16197:1 16214:1 16227:2 16229:1 16237:1 16254:1 16270:1 16284:1 16289:1 16330:2 16355:1 16362:1 16390:1 16393:2 16411:1 16422:1 16427:1 16428:1 16433:1 16448:1 16451:1 16457:1 16484:2 16508:2 16559:1 16566:3 16606:1 16608:1 16630:1 16642:1 16650:1 16674:1 16684:4 16721:2 16723:1 16782:8 16783:1 16787:1 16789:1 16832:2 16835:1 16846:2 16860:1 16884:1 16904:1 16936:3 16940:2 16942:1 16944:1 16971:2 16973:1 16988:2 16990:1 16999:1 17012:2 17045:2 17046:1 17048:1 17053:2 17056:1 17063:1 17098:1 17105:1 17140:1 17155:1 17187:1 17194:1 17219:1 17246:1 17251:1 17297:1 17324:1 17370:1 17379:1 17423:8 17448:1 17479:1 17499:1 17514:1 17516:1 17531:1 17539:1 17581:1 17586:1 17661:1 17673:1 17681:1 17689:4 17695:1 17699:1 17700:1 17709:1 17710:2 17714:1 17715:1 17729:1 17731:1 17752:1 17758:1 17771:1 17775:1 17776:1 17784:2 17805:2 17829:1 17830:2 17857:1 17860:1 17866:1 17871:1 17880:1 17884:1 17888:3 17953:2 17955:1 17989:1 18008:1 18049:2 18053:1 18074:2 18108:1 18111:1 18141:1 18148:1 18157:2 18187:1 18195:2 18214:2 18226:1 18234:2 18236:1 18243:2 18258:1 18260:1 18273:1 18281:2 18302:1 18306:1 18308:2 18313:1 18315:1 18319:3 18321:1 18322:1 18330:1 18332:2 18340:2 18342:1 18352:2 18372:1 18375:1 18401:1 18417:1 18492:2 18619:1 18635:2 18683:1 18697:1 18699:1 18702:1 18708:1 18717:1 18732:1 18738:1 18739:2 18777:2 18785:1 18794:1 18799:2 18807:1 18821:1 18842:1 18911:2 18919:2 18928:1 18966:1 18967:1 19000:1 19005:1 19024:1 19029:2 19062:2 19069:1 19081:1 19089:2 19103:1 19135:1 19139:1 19155:1 19165:2 19182:1 19200:4 19216:1 19233:1 19248:2 19276:1 19320:5 19329:1 19351:1 19352:1 19357:3 19398:1 19417:1 19443:1 19448:1 19452:1 19471:1 19508:1 19509:1 19583:1 19622:1 19628:1 19634:1 19643:1 19655:1 19663:1 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19758:1 19763:2 19772:3 19774:1 19776:1 19781:1 19784:1 19794:1 19809:1 19816:1 19843:2 19849:2 19850:1 19867:1 19872:1 19910:1 19919:1 19951:1 19962:1 19966:1 20007:2 20020:1 20045:1 20077:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:1 20123:2 20124:2 20136:1 20146:1 20166:1 20174:1 20181:1 20183:1 20202:1 20220:1 20225:1 20237:1 20239:1 20241:1 20286:1 20287:1 20309:2 20341:1 20391:1 20394:1 20400:1 20405:1 20407:1 20412:1 20441:1 20460:1 20492:2 20516:1 20525:1 20540:1 20569:1 20635:2 20645:1 20682:1 20697:2 20742:3 20803:5 20814:2 20815:1 20851:1 20876:1 20895:1 20900:1 20942:1 20949:1 20951:1 20970:1 20983:3 20996:1 21004:1 21016:1 21041:1 21047:1712 21068:3 21079:2 21087:1 21096:1 21173:2 21205:1 21279:1 21291:1 21292:1 21308:1 21355:1 21372:1 21374:1 21382:1 21401:1 21431:1 21444:1 21449:1 21512:1 21515:3 21518:1 21539:1 21551:1 21566:1 21571:1 21585:1 21601:1 21644:1 21689:1 21709:2 21735:3 21790:1 21808:1 21812:1 21813:1 21821:1 21827:2 21861:2 21874:1 21883:1 21895:1 21918:1 21921:4 21952:1 21953:4 21961:1 21966:1 21992:1 22020:3 22029:1 22041:1 22045:1 22072:4 22095:2 22138:1 22162:1 22173:2 22174:1 22227:1 22235:1 22240:1 22262:1 22267:1 22271:1 22281:1 22301:2 22311:1 22325:1 22344:1 22364:1 22375:1 22404:1 22423:3 22459:1 22479:2 22495:1 22503:2 22508:1 22540:1 22545:1 22548:1 22562:1 22565:2 22569:1 22573:1 22586:1 22617:1 22626:2 22644:2 22681:2 22737:2 22740:1 22750:1 22766:1 22774:1 22791:1 22793:1 22815:2 22829:1 22837:1 22845:1 22852:1 22870:3 22889:1 22984:2 22992:1 23002:1 23046:1 23055:1 23059:1 23108:3 23129:1 23147:1 23160:4 23172:1 23183:1 23243:1 23257:1 23279:1 23281:1 23288:1 23290:1 23353:1 23363:1 23367:1 23390:1 23415:2 23416:1 23419:1 23444:3 23456:1 23463:1 23490:1 23504:2 23518:1 23521:1 23523:1 23532:1 23544:2 23550:3 23556:1 23561:1 23570:1 23572:1 23580:2 23583:1 23612:1 23617:1 23622:1 23644:1 23649:1 23657:1 23658:1 23663:1 23723:1 23729:1 23736:1 23745:1 23752:2 23765:1 23773:1 23790:1 23800:1 23858:1 23861:1 23863:1 23898:1 23901:1 23917:1 23919:2 23927:1 23931:1 23955:1 23985:1 24009:1 24013:1 24024:4 24032:1 24039:1 24058:1 24074:1 24082:1 24090:1 24098:1 24099:1 24113:1 24114:1 24133:1 24143:1 24144:1 24166:1 24195:1 24205:2 24214:1 24226:2 24229:1 24250:1 24255:2 24262:2 24263:1 24274:1 24276:2 24289:1 24321:1 24323:1 24358:1 24359:1 24366:3 24369:1 24373:1 24386:1 24417:1 24418:1 24425:1 24427:1 24493:5 24502:1 24504:1 24527:1 24542:3 24550:2 24578:1 24587:1 24601:2 24618:1 24636:1 24643:1 24650:2 24678:1 24681:1 24685:2 24687:1 24690:1 24692:1 24698:1 24706:2 24727:1 24775:1 24788:1 24792:1 24805:2 24840:1 24841:1 24847:1 24854:1 24858:1 24907:1 24916:3 24921:1 24925:1 24933:3 24943:1 24959:1 24966:1 24969:1 24972:2 24974:1 25011:1 25036:1 25041:1 25077:2 25093:1 25115:2 25127:1 25133:1 25139:2 25156:2 25167:2 25184:1 25189:1 25197:1 25224:2 25233:1 25245:2 25300:1 25306:2 25337:2 25356:1 25364:2 25367:1 25369:1 25434:1 25454:1 25474:2 25494:4 25508:1 25510:1 25513:1 25526:1 25545:2 25548:1 25552:2 25561:2 25569:1 25595:2 25600:1 25624:1 25635:1 25659:3 25666:1 25669:1 25674:2 25678:2 25713:1 25724:1 25732:1 25841:1 25865:1 25884:1 25897:1 25920:1 26002:3 26017:1 26019:3 26025:1 26032:1 26035:1 26036:1 26046:1 26056:4 26062:1 26073:1 26088:1 26110:2 26133:1 26150:1 26158:1 26188:1 26195:1 26218:1 26223:1 26243:1 26253:1 26263:1 26269:1 26270:1 26278:1 26279:1 26286:1 26320:1 26324:1 26328:1 26329:2 26331:1 26354:2 26390:1 26403:1 26407:1 26423:1 26434:1 26435:1 26437:2 26442:1 26445:1 26490:1 26502:2 26549:1 26550:1 26557:2 26581:1 26582:1 26584:1 26606:1 26679:1 26689:2 26705:1 26726:1 26768:1 26794:1 26839:1 26872:2 26873:1 26897:1 26898:1 26932:1 26954:1 26966:1 26967:1 26977:1 27020:2 27063:1 27065:1 27076:1 27100:2 27115:2 27116:1 27133:1 27134:1 27144:3 27151:1 27182:1 27186:1 27196:2 27198:1 27223:1 27226:1 27227:2 27231:1 27233:1 27247:1 27265:1 27280:1 27299:3 27300:1 27305:1 27335:1 27336:2 27351:1 27358:1 27365:1 27376:1 27383:1 27408:2 27412:1 27429:2 27436:2 27460:1 27466:1 27471:1 27479:1 27483:1 27484:1 27486:1 27487:4 27489:2 27490:1 27496:1 27498:1 27508:1 27511:1 27527:1 27530:3 27539:2 27580:1 27603:1 27622:1 27654:1 27655:1 27661:1 27664:2 27674:1 27681:1 27687:1 27691:2 27692:1 27713:1 27754:1 27797:9 27799:1 27821:5 27839:1 27864:1 27871:1 27876:2 27890:1 27892:1 27912:2 27915:2 27986:1 27994:1 28003:1 28024:1 28030:1 28046:1 28064:1 28082:1 28094:1 28101:1 28110:1 28113:2 28275:1 28294:1 28303:1 28308:1 28319:1 28348:3 28349:2 28382:5 28401:1 28402:1 28413:1 28424:1 28430:1 28501:1 28527:1 28533:2 28536:1 28593:1 28614:3 28632:1 28635:2 28643:1 28658:1 28670:2 28673:1 28685:1 28694:2 28722:1 28736:1 28759:2 28773:1 28776:1 28787:1 28803:2 28809:1 28833:1 28847:1 28884:1 28926:1 28944:1 28948:2 28966:1 28976:1 28995:1 29005:2 29012:2 29032:1 29042:1 29136:1 29137:1 29152:2 29226:1 29233:1 29241:1 29263:2 29279:1 29298:1 29305:1 29313:1 29330:1 29339:1 29342:1 29349:1 29351:1 29356:1 29421:4 29448:1 29474:1 29483:1 29485:1 29496:1 29515:5 29521:1 29529:1 29535:1 29559:1 29562:1 29567:1 29583:1 29605:2 29632:1 29643:2 29654:1 29676:1 29704:3 29711:1 29724:1 29728:1 29735:1 29745:1 29775:1 29783:1 29800:1 29820:2 29831:2 29839:1 29845:1 29847:1 29904:1 29916:1 29958:2 29969:1 29974:3 29977:1 29999:1 30035:1 30040:1 30044:1 30052:1 30100:1 30105:1 30142:1 30149:2 30156:2 30168:1 30191:1 30199:1 30213:2 30231:1 30249:1 30297:1 30306:1 30327:1 30330:1 30331:2 30342:1 30357:1 30370:1 30380:2 30393:1 30431:1 30471:1 30475:3 30504:3 30510:1 30532:1 30572:1 30587:2 30589:3 30602:1 30653:1 30664:2 30685:1 30689:2 30697:1 30704:3 30710:1 30718:1 30775:1 30776:1 30789:1 30798:3 30802:2 30805:2 30809:1 30834:1 30843:3 30854:2 30864:1 30867:1 30868:2 30869:1 30880:1 30895:1 30908:2 30968:1 30971:2 30994:2 31020:1 31042:1 31046:3 31057:2 31065:1 31107:1 31125:1 31130:1 31142:2 31144:1 31158:1 31161:1 31172:1 31184:1 31195:1 31216:5 31227:1 31306:1 31322:1 31324:1 31360:1 31363:1 31370:1 31392:3 31398:1 31404:1 31422:2 31440:1 31448:1 31452:3 31459:1 31461:1 31463:1 31484:1 31485:3 31494:1 31531:3 31538:1 31543:1 31554:1 31576:1 31590:1 31625:1 31635:1 31649:1 31665:11 31667:2 31670:1 31674:2 31680:3 31686:1 31688:2 31704:5 31721:3 31750:1 31761:2 31783:1 31827:1 31834:3 31846:1 31853:1 31877:3 31897:1 31921:1 31932:1 31938:1 31962:1 31974:1 31998:2 32009:1 32027:1 32047:1 32070:1 32083:1 32085:1 32105:1 32117:1 32125:1 32142:1 32153:1 32172:2 32181:1 32207:1 32229:1 32241:2 32244:3 32277:1 32280:2 32299:1 32303:1 32304:1 32312:1 32407:1 32433:1 32447:1 32451:1 32471:3 32476:1 32491:2 32499:1 32551:1 32552:2 32625:1 32651:1 32656:2 32660:1 32661:1 32693:1 32713:2 32719:1 32722:1 32791:1 32795:1 32803:1 32824:1 32834:1 32846:1 32885:1 32899:1 32900:1 32941:2 32944:2 32956:1 32963:1 33001:1 33019:1 33041:2 33056:3 33059:1 33075:1 33084:1 33141:1 33143:2 33146:1 33148:2 33155:4 33167:3 33168:1 33171:3 33211:1 33220:1 33224:1 33225:1 33226:1 33267:1 33271:1
11 1:1 6:1 27:1 34:1 39:1 55:1 60:2 67:1 86:1 93:1 99:1 148:1 159:1 166:1 170:1 181:1 183:1 187:1 232:1 238:4 265:1 282:1 283:1 294:2 296:2 313:1 401:1 403:2 411:2 446:1 455:1 498:1 507:3 513:1 523:1 546:2 582:2 586:1 621:1 627:1 646:1 654:1 698:1 717:2 721:1 731:2 745:1 759:2 764:2 765:1 766:1 774:1 790:1 795:1 815:1 937:1 956:1 971:1 974:1 979:1 984:1 1003:2 1022:3 1049:1 1053:1 1057:1 1067:1 1069:1 1070:1 1071:3 1083:1 1094:1 1103:1 1106:1 1118:1 1125:1 1127:1 1130:5 1141:2 1144:1 1161:1 1211:1 1220:1 1236:1 1239:1 1244:1 1262:1 1284:1 1316:1 1318:1 1376:1 1378:1 1392:1 1393:1 1405:1 1413:1 1415:1 1421:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:1 1465:1 1480:1 1481:1 1487:1 1496:2 1504:1 1514:1 1539:1 1547:1 1624:1 1650:1 1664:3 1683:2 1690:1 1691:1 1719:1 1726:4 1730:7 1739:8 1745:1 1749:1 1751:2 1793:1 1807:1 1808:1 1837:3 1839:3 1869:1 1878:2 1883:5 1892:1 1906:1 1943:1 1955:1 1957:1 1963:1 1977:1 1980:1 1999:1 2003:1 2019:1 2061:1 2062:1 2073:2 2098:1 2113:1 2118:1 2119:1 2133:2 2135:1 2137:1 2138:2 2157:1 2169:1 2177:1 2180:1 2195:4 2214:1 2223:1 2237:1 2241:1 2246:1 2249:1 2255:1 2263:1 2269:1 2279:1 2284:2 2301:1 2317:1 2322:1 2348:1 2355:1 2372:1 2373:1 2381:1 2397:1 2399:1 2421:1 2422:1 2437:1 2441:1 2482:5 2502:3 2508:1 2521:1 2525:1 2529:1 2530:1 2551:2 2552:1 2553:1 2555:3 2558:4 2562:1 2576:1 2578:2 2579:3 2583:1 2587:1 2616:1 2618:3 2620:1 2623:2 2624:1 2625:2 2630:1 2631:2 2634:1 2635:2 2640:2 2642:2 2647:4 2648:1 2652:1 2657:3 2662:2 2663:1 2681:1 2720:1 2739:1 2753:1 2774:1 2784:1 2801:1 2821:1 2831:1 2864:1 2868:1 2896:1 2905:2 2918:1 2934:1 2951:1 2955:1 2962:1 2993:1 3008:1 3033:1 3039:1 3042:1 3049:1 3051:1 3059:1 3080:3 3097:1 3106:3 3116:2 3121:1 3134:2 3145:1 3157:1 3165:2 3171:1 3173:1 3182:1 3213:1 3257:1 3263:2 3283:1 3284:4 3291:1 3294:1 3295:5 3302:2 3336:4 3350:2 3351:1 3352:1 3353:5 3360:1 3364:1 3369:1 3377:1 3379:1 3386:1 3408:1 3411:2 3433:2 3464:1 3474:1 3475:1 3482:1 3504:1 3529:1 3539:1 3549:1 3550:1 3578:2 3588:1 3625:1 3683:1 3702:2 3726:1 3755:1 3758:1 3769:1 3772:1 3799:1 3816:1 3821:1 3822:2 3853:1 3857:2 3868:1 3926:1 3930:2 3936:1 3942:2 3945:1 3951:1 3968:1 3990:1 4005:1 4011:1 4012:1 4018:1 4035:1 4040:1 4047:3 4074:1 4105:1 4122:1 4160:2 4174:1 4193:2 4195:1 4245:1 4247:1 4252:1 4253:6 4271:1 4288:4 4289:1 4292:1 4303:1 4306:2 4332:2 4334:1 4351:2 4378:1 4382:1 4470:1 4477:1 4484:1 4488:1 4511:1 4529:1 4533:1 4536:3 4545:2 4573:1 4574:1 4575:1 4581:2 4609:1 4628:1 4637:1 4663:1 4667:1 4684:1 4727:1 4730:1 4763:4 4767:4 4773:1 4785:1 4793:3 4842:2 4872:4 4888:2 4906:1 4907:1 4936:2 4959:1 4974:1 4989:1 4991:1 5000:1 5022:1 5025:1 5033:2 5045:2 5066:1 5098:1 5106:1 5136:1 5143:4 5162:1 5163:1 5168:1 5171:1 5198:1 5239:1 5246:1 5269:1 5287:2 5299:1 5312:1 5340:4 5365:1 5369:3 5562:25 5564:2 5596:1 5610:1 5671:1 5689:1 5690:2 5717:1 5718:4 5719:3 5722:1 5725:2 5731:3 5735:1 5744:1 5750:5 5752:3 5763:1 5766:1 5770:1 5811:1 5814:2 5844:1 5853:1 5855:1 5868:1 5873:1 5898:1 5965:2 6027:1 6038:1 6084:1 6089:1 6108:1 6115:1 6144:3 6150:3 6169:1 6181:1 6224:1 6233:1 6237:1 6283:1 6292:1 6305:2 6319:2 6322:1 6328:1 6335:3 6345:1 6372:2 6385:1 6388:1 6395:1 6397:1 6407:1 6412:1 6418:2 6428:1 6435:1 6459:5 6469:1 6480:2 6496:1 6506:1 6508:2 6509:1 6529:1 6531:1 6540:1 6558:2 6581:3 6584:1 6610:1 6624:1 6688:3 6692:2 6706:1 6707:1 6776:1 6793:1 6795:1 6806:1 6816:1 6843:1 6847:2 6884:1 6888:1 6890:2 6897:4 6944:1 6961:3 6980:1 7012:1 7025:1 7038:1 7044:1 7062:1 7087:1 7088:1 7101:1 7132:1 7190:1 7192:1 7193:1 7196:1 7197:1 7200:2 7201:1 7204:2 7207:1 7209:1 7210:1 7211:2 7218:7 7221:1 7222:3 7279:1 7303:1 7306:1 7307:1 7381:1 7406:1 7410:1 7429:1 7435:2 7439:1 7469:1 7497:1 7535:1 7539:2 7543:1 7552:1 7574:1 7589:1 7599:1 7613:1 7628:1 7637:1 7648:1 7659:1 7662:1 7671:2 7672:1 7676:1 7691:1 7705:3 7724:1 7741:1 7745:1 7748:1 7766:1 7794:1 7822:1 7855:1 7867:1 7879:3 7912:2 7949:1 7954:1 7956:1 7961:1 7984:1 7993:1 8007:1 8025:1 8027:2 8043:1 8064:1 8075:4 8089:2 8129:1 8143:2 8155:1 8167:1 8216:1 8230:1 8247:1 8258:1 8277:4 8299:1 8302:1 8328:1 8338:1 8340:1 8347:1 8387:1 8389:1 8413:1 8417:2 8426:1 8432:2 8454:1 8474:1 8491:1 8498:1 8499:1 8531:1 8560:1 8562:1 8570:1 8573:1 8599:1 8611:1 8615:1 8619:1 8624:4 8630:3 8631:3 8633:3 8653:1 8659:1 8688:2 8689:1 8702:30 8726:6 8728:5 8767:1 8783:1 8796:1 8810:1 8815:2 8864:1 8886:1 8890:1 8891:1 8901:1 8909:1 8923:1 8932:2 8935:6 8957:1 8960:1 8974:1 8982:5 8992:1 9048:1 9059:1 9135:1 9143:1 9168:1 9186:1 9203:1 9221:2 9231:1 9232:13 9267:1 9276:1 9279:1 9298:1 9299:1 9381:1 9394:1 9430:1 9441:1 9466:1 9473:1 9507:2 9508:1 9540:2 9542:1 9544:2 9561:1 9623:2 9632:1 9633:1 9638:1 9642:2 9644:1 9648:3 9649:1 9654:1 9661:1 9697:2 9743:1 9746:1 9781:1 9788:1 9806:1 9807:1 9810:1 9815:1 9823:1 9836:1 9842:1 9882:1 9901:2 9923:1 9931:1 9937:1 9942:1 9945:1 9974:1 9976:1 9988:1 9994:1 10008:2 10015:1 10022:1 10027:3 10070:1 10092:1 10117:1 10150:1 10152:1 10197:1 10209:2 10210:2 10275:1 10282:1 10294:1 10307:2 10331:1 10332:1 10340:1 10345:3 10349:1 10362:1 10371:1 10374:1 10376:1 10389:1 10422:1 10430:1 10434:3 10436:1 10445:1 10465:1 10479:1 10502:1 10517:1 10518:1 10522:2 10524:1 10540:1 10549:1 10554:1 10584:1 10591:1 10602:1 10619:1 10621:1 10623:1 10627:1 10643:1 10648:1 10666:2 10709:3 10732:1 10752:2 10764:1 10792:1 10800:1 10804:1 10806:1 10828:1 10846:1 10867:1 10877:1 10886:1 10913:1 10948:5 10969:1 10970:1 10972:1 10973:1 11011:1 11029:1 11030:1 11052:1 11067:1 11079:1 11119:2 11133:2 11141:1 11163:1 11170:2 11175:1 11178:1 11188:1 11200:1 11210:1 11214:2 11222:1 11226:1 11231:1 11232:1 11234:2 11242:2 11265:1 11266:1 11276:4 11288:1 11291:1 11302:1 11309:1 11324:1 11331:1 11342:1 11376:3 11383:2 11433:1 11438:1 11445:1 11448:1 11450:1 11456:1 11488:1 11492:1 11499:1 11517:2 11573:1 11588:1 11603:1 11607:2 11611:2 11637:1 11656:1 11660:1 11674:1 11677:1 11690:1 11695:1 11697:1 11701:1 11717:1 11744:1 11784:2 11796:1 11820:1 11822:4 11841:1 11842:1 11846:1 11854:1 11858:1 11899:1 11906:3 11914:2 11930:1 11933:1 11949:1 11955:1 11966:1 12015:2 12026:1 12039:3 12050:2 12109:1 12154:1 12162:1 12169:2 12197:1 12255:1 12274:1 12310:1 12319:1 12325:1 12327:2 12329:1 12336:4 12339:1 12352:2 12356:1 12369:1 12377:1 12379:1 12406:1 12438:1 12448:1 12477:1 12487:1 12551:1 12552:1 12580:1 12618:2 12630:2 12647:1 12743:1 12766:1 12776:1 12805:1 12811:2 12814:1 12836:1 12845:1 12862:1 12865:5 12876:1 12877:1 12893:1 12910:1 12923:1 12928:2 12933:1 12935:1 12954:1 12970:1 12988:3 13000:1 13005:1 13015:1 13018:1 13027:1 13050:2 13061:1 13064:1 13073:1 13085:2 13088:2 13089:2 13094:2 13116:1 13128:6 13135:1 13138:2 13142:1 13150:2 13151:6 13152:1 13153:1 13156:1 13162:5 13196:1 13220:2 13231:1 13254:1 13264:1 13285:1 13302:1 13308:1 13365:1 13391:1 13410:1 13423:2 13427:1 13434:1 13443:1 13448:2 13456:1 13463:1 13473:2 13480:1 13515:1 13517:1 13527:1 13552:1 13553:2 13590:1 13600:1 13606:2 13616:1 13621:1 13653:2 13662:1 13674:1 13684:2 13685:2 13690:1 13718:1 13742:1 13750:1 13778:1 13805:1 13815:1 13821:2 13826:1 13830:1 13873:3 13895:2 13896:1 13921:1 13940:1 14021:1 14039:1 14061:1 14119:1 14146:1 14162:1 14183:2 14207:1 14210:1 14214:2 14256:1 14267:1 14281:1 14318:2 14319:1 14345:3 14353:1 14356:2 14361:1 14370:2 14380:1 14384:1 14402:1 14416:1 14443:1 14468:1 14472:1 14473:3 14480:1 14483:1 14489:1 14497:1 14518:1 14520:1 14541:1 14545:1 14572:1 14581:1 14583:1 14592:1 14620:1 14633:1 14640:1 14652:1 14658:2 14688:1 14697:1 14781:1 14793:4 14831:1 14854:2 14858:1 14859:1 14870:2 14873:1 14877:2 14881:2 14883:1 14891:1 14895:1 14896:1 14907:4 14915:1 14935:2 14949:2 14957:1 14958:1 14975:1 14980:1 15005:1 15033:1 15039:2 15040:1 15054:1 15082:1 15125:1 15131:1 15191:1 15215:1 15217:5 15246:1 15251:1 15275:1 15278:1 15281:2 15293:1 15322:1 15325:2 15333:1 15336:1 15374:1 15381:1 15429:1 15443:1 15477:1 15480:1 15483:2 15489:2 15496:1 15513:1 15543:1 15551:1 15616:1 15622:1 15645:1 15666:1 15728:4 15734:3 15740:1 15780:1 15811:2 15820:2 15840:1 15861:1 15900:1 15959:1 15960:1 15962:1 15974:3 15986:1 15990:1 15996:2 15997:1 16000:3 16021:1 16030:1 16040:2 16042:1 16043:1 16046:1 16067:1 16098:1 16178:2 16189:1 16197:1 16214:1 16227:2 16229:1 16237:1 16254:1 16270:1 16284:1 16289:1 16321:1 16330:2 16355:1 16362:1 16390:1 16393:2 16411:1 16422:1 16427:1 16428:1 16433:1 16448:1 16451:1 16457:1 16484:2 16508:2 16534:1 16559:1 16566:3 16606:1 16608:1 16630:1 16642:1 16650:1 16674:1 16684:4 16721:2 16723:1 16782:8 16783:1 16787:1 16789:1 16793:1 16832:2 16835:1 16846:2 16860:1 16884:1 16904:1 16936:3 16940:2 16942:1 16944:1 16971:2 16973:1 16988:2 16990:1 16999:1 17012:2 17045:2 17046:1 17048:1 17053:2 17056:1 17063:1 17098:1 17105:1 17140:1 17155:1 17187:1 17194:1 17219:1 17246:1 17251:1 17297:1 17324:1 17370:1 17379:1 17423:9 17448:1 17479:1 17499:1 17514:1 17516:1 17531:1 17539:1 17581:1 17586:1 17596:1 17661:1 17673:1 17681:1 17689:4 17695:1 17699:1 17700:1 17709:1 17710:2 17714:1 17715:1 17718:1 17729:1 17731:1 17752:1 17758:1 17771:1 17775:2 17776:1 17784:2 17805:2 17824:1 17829:1 17830:2 17857:1 17860:1 17866:1 17871:1 17880:1 17884:1 17888:3 17953:2 17955:1 17989:1 18008:1 18049:2 18053:1 18074:2 18108:1 18111:1 18141:1 18148:1 18157:2 18187:1 18195:2 18214:2 18226:1 18234:2 18236:1 18243:2 18258:1 18260:1 18273:1 18281:2 18302:1 18306:1 18308:2 18313:1 18315:1 18319:3 18321:1 18322:1 18327:1 18330:1 18332:2 18340:2 18342:1 18352:2 18372:1 18375:1 18401:1 18417:1 18492:2 18584:1 18619:1 18635:2 18683:1 18697:1 18699:1 18702:1 18708:1 18717:1 18727:1 18732:1 18738:1 18739:2 18777:2 18785:1 18794:1 18799:2 18807:1 18821:1 18842:1 18911:2 18919:2 18928:1 18966:1 18967:1 19000:1 19005:1 19024:1 19029:2 19050:1 19062:2 19069:1 19081:1 19089:2 19103:1 19135:1 19139:3 19155:1 19165:2 19182:1 19200:4 19208:1 19216:1 19233:1 19248:2 19276:1 19320:5 19329:1 19351:1 19352:1 19357:3 19398:1 19417:1 19443:1 19448:1 19452:1 19471:1 19508:1 19509:1 19583:1 19622:1 19628:1 19634:1 19643:1 19655:1 19663:1 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19758:1 19763:2 19772:3 19774:1 19776:1 19781:1 19784:1 19794:1 19809:1 19816:1 19843:2 19849:2 19850:1 19867:1 19872:1 19904:1 19910:1 19919:1 19951:1 19962:1 19966:1 20007:2 20020:1 20045:1 20077:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:1 20123:2 20124:3 20128:1 20136:1 20146:1 20166:2 20174:1 20181:1 20183:1 20202:1 20220:1 20225:1 20237:1 20239:1 20241:1 20286:1 20287:1 20300:1 20309:2 20341:1 20391:1 20394:1 20400:1 20405:1 20407:1 20412:1 20441:1 20460:1 20492:2 20516:1 20525:1 20540:1 20569:1 20635:2 20645:1 20682:1 20697:2 20742:3 20803:5 20814:2 20815:1 20831:1 20851:1 20876:1 20894:1 20895:1 20900:1 20942:1 20949:1 20951:1 20970:1 20983:3 20996:1 21004:1 21016:1 21041:1 21047:1793 21068:3 21079:2 21087:1 21096:1 21164:1 21173:2 21205:1 21279:1 21291:1 21292:1 21308:1 21355:1 21372:1 21374:1 21382:1 21401:1 21431:1 21444:1 21449:1 21487:1 21512:1 21515:3 21518:1 21539:1 21551:1 21566:1 21571:1 21585:1 21601:1 21644:1 21689:1 21709:2 21735:3 21790:1 21808:1 21812:1 21813:1 21821:1 21827:2 21861:2 21874:1 21877:1 21883:1 21895:1 21918:1 21921:4 21952:1 21953:4 21961:1 21966:1 21992:1 22020:3 22029:1 22041:1 22045:1 22072:4 22082:1 22095:2 22138:1 22162:1 22173:3 22174:1 22178:1 22227:1 22235:1 22240:1 22262:1 22267:1 22271:1 22281:1 22301:2 22311:1 22325:1 22344:1 22364:1 22375:1 22404:1 22423:3 22459:1 22479:2 22495:1 22503:2 22508:1 22540:1 22545:1 22548:2 22562:1 22565:2 22569:1 22573:1 22586:1 22617:1 22626:3 22644:2 22681:2 22737:2 22740:1 22750:1 22766:1 22774:1 22791:1 22793:1 22815:2 22829:1 22834:1 22837:1 22845:1 22852:1 22870:3 22889:1 22984:2 22992:1 23002:1 23046:1 23055:1 23059:1 23108:3 23129:1 23147:1 23160:4 23169:1 23172:1 23183:1 23243:1 23257:1 23279:1 23281:1 23288:1 23290:1 23353:1 23359:1 23363:1 23367:1 23390:1 23415:2 23416:1 23419:1 23444:3 23447:1 23456:1 23463:1 23490:2 23504:2 23518:1 23521:1 23523:1 23532:1 23544:2 23550:3 23556:1 23561:1 23570:1 23572:1 23580:2 23583:1 23612:1 23617:1 23622:1 23644:1 23649:1 23657:1 23658:1 23663:1 23723:1 23729:1 23736:1 23745:1 23751:1 23752:2 23765:1 23773:1 23790:1 23800:1 23858:1 23861:1 23863:1 23898:1 23901:1 23917:1 23919:2 23927:1 23931:1 23951:1 23955:2 23985:1 24009:1 24013:1 24024:4 24032:1 24039:1 24058:1 24074:1 24082:1 24090:1 24098:1 24099:1 24113:1 24114:1 24133:1 24143:1 24144:1 24166:1 24195:1 24205:2 24214:1 24226:2 24229:1 24250:1 24255:2 24262:2 24263:1 24274:1 24276:2 24289:1 24321:1 24323:1 24358:1 24359:1 24366:3 24369:1 24373:1 24386:1 24417:1 24418:1 24425:1 24427:1 24449:1 24477:1 24478:2 24493:5 24502:1 24504:1 24527:1 24542:3 24550:2 24578:1 24587:1 24601:2 24618:1 24636:1 24643:1 24650:2 24678:1 24681:1 24685:2 24687:1 24690:2 24692:1 24698:1 24706:2 24727:1 24775:1 24788:1 24792:1 24805:2 24840:1 24841:1 24847:1 24854:1 24858:1 24907:1 24916:3 24921:1 24925:1 24933:3 24943:1 24959:1 24966:1 24969:1 24972:2 24974:1 25011:1 25036:1 25041:1 25077:2 25093:1 25115:2 25127:1 25133:1 25139:2 25156:2 25167:2 25170:1 25184:1 25189:1 25197:1 25224:2 25233:2 25245:2 25300:1 25306:3 25337:2 25356:1 25364:2 25367:2 25369:1 25434:1 25454:1 25474:2 25494:4 25508:1 25510:1 25513:1 25526:1 25545:2 25548:1 25552:2 25561:2 25569:1 25595:2 25600:1 25624:1 25635:1 25659:3 25666:1 25669:2 25674:2 25678:2 25713:1 25724:1 25732:1 25841:1 25865:1 25884:1 25897:1 25920:1 26002:3 26017:1 26019:3 26025:1 26032:1 26035:1 26036:1 26046:1 26056:4 26062:1 26073:1 26088:1 26110:2 26133:1 26150:1 26158:1 26188:1 26195:1 26218:1 26223:1 26239:1 26243:1 26253:1 26263:1 26269:1 26270:1 26278:1 26279:1 26286:2 26320:1 26324:1 26328:1 26329:2 26331:1 26354:2 26390:1 26403:1 26407:1 26423:2 26434:1 26435:1 26437:2 26442:1 26445:1 26490:1 26502:2 26549:1 26550:1 26557:2 26581:1 26582:1 26584:1 26606:1 26679:1 26689:2 26705:1 26726:1 26768:1 26794:1 26839:1 26872:2 26873:1 26897:1 26898:1 26932:1 26954:1 26966:1 26967:1 26977:1 27020:2 27063:1 27065:1 27076:1 27100:3 27115:2 27116:1 27133:1 27134:1 27144:3 27151:1 27182:1 27186:1 27196:2 27198:1 27223:1 27226:1 27227:3 27231:1 27233:1 27247:1 27265:1 27280:1 27299:3 27300:1 27305:1 27335:1 27336:2 27351:1 27358:1 27365:1 27376:1 27383:1 27408:2 27412:1 27429:2 27436:2 27460:1 27466:1 27470:2 27471:1 27479:1 27483:1 27484:1 27486:1 27487:4 27489:2 27490:1 27496:1 27498:1 27508:1 27511:1 27527:1 27530:3 27539:3 27580:1 27603:1 27622:1 27654:1 27655:2 27661:1 27664:2 27674:1 27681:1 27687:1 27691:2 27692:1 27713:1 27754:1 27797:9 27799:1 27821:5 27839:1 27864:1 27871:1 27876:2 27890:1 27892:1 27912:2 27915:3 27986:1 27994:1 28003:1 28024:1 28030:1 28046:1 28064:1 28082:1 28094:1 28101:1 28110:1 28113:2 28275:1 28294:1 28303:1 28308:1 28319:1 28348:3 28349:3 28369:1 28382:5 28401:1 28402:1 28413:1 28424:1 28430:1 28501:1 28527:1 28533:2 28536:1 28593:1 28614:3 28632:1 28635:2 28643:1 28658:1 28670:2 28673:1 28685:1 28694:2 28722:1 28736:1 28759:2 28773:1 28776:1 28787:1 28803:2 28809:1 28833:1 28847:1 28884:1 28926:1 28944:1 28948:2 28966:1 28976:1 28995:1 29005:2 29012:2 29032:1 29042:1 29136:1 29137:1 29152:2 29226:1 29233:1 29241:1 29263:2 29279:1 29283:1 29298:1 29305:1 29313:1 29330:1 29339:1 29342:1 29349:1 29351:1 29356:1 29421:4 29448:1 29474:1 29483:1 29485:1 29496:1 29515:6 29521:2 29529:1 29535:1 29547:1 29559:1 29562:1 29567:1 29583:1 29605:2 29612:1 29632:1 29643:2 29654:1 29676:2 29704:3 29711:1 29724:1 29728:1 29735:1 29745:1 29775:1 29783:1 29800:1 29820:2 29831:2 29839:1 29845:1 29847:1 29904:1 29916:1 29958:2 29969:1 29971:1 29974:3 29977:1 29999:1 30035:1 30040:1 30044:1 30052:1 30100:1 30105:1 30142:1 30149:2 30156:2 30168:1 30191:1 30199:1 30213:2 30231:1 30249:1 30297:1 30306:1 30327:1 30330:1 30331:2 30342:1 30357:1 30370:1 30380:2 30393:1 30431:1 30471:1 30475:3 30504:3 30510:1 30532:1 30548:1 30572:1 30587:3 30589:3 30602:1 30653:1 30660:1 30664:2 30685:1 30689:2 30697:1 30704:3 30710:1 30718:2 30775:1 30776:1 30789:1 30798:4 30802:2 30805:2 30809:2 30834:1 30843:3 30854:2 30864:1 30867:1 30868:2 30869:1 30880:1 30884:1 30895:1 30908:2 30968:1 30971:2 30994:2 30999:1 31020:1 31042:1 31046:3 31057:2 31065:1 31107:1 31125:1 31130:1 31142:2 31144:1 31158:1 31161:1 31172:1 31184:1 31191:1 31195:1 31216:5 31227:1 31306:1 31322:1 31324:1 31360:1 31363:1 31370:2 31392:3 31398:1 31404:1 31422:2 31440:1 31448:1 31452:3 31459:1 31461:1 31463:1 31484:2 31485:3 31494:1 31531:3 31538:1 31543:1 31554:1 31576:1 31590:1 31625:1 31635:1 31649:1 31665:11 31667:2 31670:1 31674:2 31680:3 31686:1 31688:2 31704:5 31721:3 31750:1 31761:3 31783:1 31827:1 31834:3 31846:1 31853:1 31877:3 31897:1 31910:1 31921:1 31932:1 31938:1 31954:1 31960:1 31962:1 31974:1 31998:2 32009:1 32027:1 32047:1 32070:1 32083:1 32085:1 32105:2 32117:1 32125:1 32142:1 32153:1 32172:2 32181:1 32207:1 32229:1 32241:2 32244:3 32277:1 32280:2 32299:1 32303:1 32304:1 32312:1 32407:1 32433:1 32447:1 32451:1 32471:3 32476:1 32491:2 32499:1 32551:1 32552:2 32625:1 32651:1 32656:2 32660:1 32661:1 32693:1 32713:2 32719:1 32722:1 32791:1 32795:1 32803:1 32824:1 32834:1 32846:1 32885:1 32899:1 32900:1 32941:2 32944:2 32956:1 32963:1 33001:2 33019:1 33041:2 33056:3 33059:1 33075:1 33084:1 33141:1 33143:2 33146:1 33148:2 33149:1 33155:4 33167:3 33168:1 33171:3 33211:1 33220:1 33224:1 33225:1 33226:1 33234:1 33267:1 33271:1
11 1:1 2:1 6:1 27:1 34:1 39:1 55:1 60:2 67:1 85:1 86:1 93:1 99:1 148:1 150:1 159:1 166:1 170:1 181:1 183:1 187:1 232:1 238:4 265:1 282:1 283:1 294:2 296:2 313:1 401:1 403:2 411:2 446:1 455:1 498:1 507:4 513:1 523:1 546:2 582:2 586:1 621:1 627:1 646:1 654:1 698:1 717:3 721:1 731:3 745:1 759:2 764:2 765:1 766:1 774:1 790:1 795:1 815:2 937:1 956:1 971:2 974:1 979:1 984:1 1003:2 1022:3 1049:1 1053:1 1057:1 1067:1 1069:1 1070:1 1071:3 1083:1 1094:1 1103:1 1106:1 1118:1 1125:1 1127:1 1130:5 1132:1 1134:1 1141:2 1144:1 1161:1 1211:1 1220:1 1236:2 1239:1 1244:1 1257:1 1262:1 1284:1 1316:1 1318:1 1376:1 1378:1 1388:1 1392:1 1393:1 1405:1 1413:1 1415:1 1421:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:1 1465:1 1480:1 1481:1 1487:1 1496:2 1504:1 1514:1 1539:1 1547:1 1588:1 1624:1 1635:1 1650:1 1658:1 1664:3 1683:2 1690:2 1691:1 1719:1 1726:4 1730:7 1739:9 1745:1 1749:1 1751:2 1793:1 1807:1 1808:1 1837:3 1839:3 1869:1 1878:2 1883:5 1892:1 1906:1 1943:1 1955:1 1957:1 1963:1 1977:1 1980:1 1999:1 2003:1 2019:1 2061:1 2062:1 2073:2 2098:1 2113:1 2118:1 2119:1 2133:2 2135:1 2137:1 2138:2 2141:1 2157:1 2169:1 2177:1 2180:1 2195:4 2214:1 2223:1 2237:1 2241:1 2246:1 2249:2 2255:1 2263:1 2269:1 2279:1 2284:2 2301:1 2317:1 2322:1 2348:1 2355:1 2372:1 2373:1 2381:1 2397:1 2399:1 2421:1 2422:1 2437:1 2441:1 2482:5 2502:3 2508:1 2521:1 2525:1 2529:1 2530:1 2551:2 2552:1 2553:1 2555:3 2558:4 2562:1 2576:2 2578:2 2579:3 2583:1 2587:1 2616:1 2618:3 2620:1 2623:2 2624:1 2625:2 2630:1 2631:3 2634:1 2635:2 2640:2 2642:2 2647:4 2648:1 2652:1 2657:3 2662:2 2663:1 2681:1 2720:1 2739:1 2753:1 2774:1 2784:1 2801:1 2821:1 2831:1 2832:1 2864:1 2868:1 2890:1 2896:1 2905:2 2918:2 2934:1 2951:1 2955:1 2962:1 2964:1 2993:1 3008:1 3033:1 3039:1 3042:1 3049:1 3051:1 3059:1 3080:3 3097:1 3106:3 3116:2 3121:1 3134:2 3145:1 3157:1 3165:3 3171:1 3173:1 3182:1 3213:1 3257:1 3263:2 3283:1 3284:5 3291:1 3294:1 3295:6 3302:2 3336:4 3350:2 3351:1 3352:1 3353:6 3360:1 3364:2 3369:1 3377:1 3379:1 3386:1 3408:1 3411:2 3418:1 3433:2 3464:1 3474:1 3475:1 3482:1 3504:1 3529:1 3539:1 3549:1 3550:1 3578:2 3588:1 3625:1 3683:1 3702:2 3726:1 3755:1 3758:1 3769:1 3772:1 3799:1 3816:1 3821:1 3822:2 3853:1 3857:2 3868:1 3926:1 3930:2 3936:1 3942:2 3945:1 3951:1 3968:1 3974:1 3990:1 4005:1 4011:1 4012:1 4018:1 4035:1 4040:1 4047:3 4074:1 4105:1 4122:1 4160:2 4174:1 4193:2 4195:1 4245:1 4247:1 4252:2 4253:8 4267:1 4271:1 4288:4 4289:2 4292:1 4303:1 4306:3 4332:3 4334:1 4351:3 4378:1 4382:1 4470:1 4477:1 4484:1 4488:1 4510:1 4511:1 4529:1 4531:1 4533:1 4536:3 4545:2 4573:1 4574:1 4575:1 4581:2 4609:1 4628:1 4637:1 4663:1 4667:1 4684:1 4714:1 4727:1 4730:1 4763:5 4767:4 4773:1 4785:1 4793:4 4824:1 4842:2 4872:4 4888:2 4906:1 4907:1 4936:2 4959:1 4974:1 4989:1 4991:1 5000:1 5022:1 5025:1 5033:2 5045:2 5066:1 5072:1 5098:1 5106:1 5136:1 5143:4 5162:1 5163:1 5168:1 5171:1 5198:1 5239:1 5246:1 5269:1 5287:2 5299:1 5312:1 5340:4 5365:1 5369:3 5516:1 5562:26 5564:2 5596:1 5610:1 5671:1 5689:1 5690:3 5717:1 5718:4 5719:3 5722:1 5725:2 5730:1 5731:3 5735:1 5740:1 5744:1 5750:5 5752:3 5763:1 5766:1 5770:1 5811:1 5814:2 5844:1 5853:1 5855:1 5868:1 5873:1 5898:1 5965:2 6027:1 6038:1 6084:1 6089:1 6108:1 6115:1 6144:3 6150:3 6165:2 6169:1 6181:1 6224:1 6233:1 6237:1 6283:1 6292:1 6299:1 6305:2 6319:2 6322:1 6328:1 6335:3 6345:1 6372:2 6385:1 6388:1 6395:1 6397:1 6407:1 6412:1 6418:2 6428:1 6435:1 6459:6 6469:1 6480:2 6496:1 6506:1 6508:2 6509:1 6529:1 6531:1 6540:1 6548:1 6558:2 6581:3 6584:1 6610:1 6624:1 6688:3 6692:2 6706:1 6707:1 6776:1 6793:1 6795:1 6806:1 6816:1 6843:1 6847:2 6884:1 6888:1 6890:2 6897:4 6944:1 6961:3 6980:1 7012:1 7025:1 7038:1 7044:1 7062:1 7087:1 7088:1 7089:1 7101:1 7132:1 7150:1 7190:1 7192:1 7193:1 7196:1 7197:1 7200:2 7201:1 7204:3 7207:2 7209:1 7210:1 7211:2 7218:7 7221:1 7222:3 7258:1 7279:1 7303:1 7306:1 7307:1 7381:1 7406:1 7410:1 7429:1 7435:2 7439:1 7469:1 7497:1 7535:1 7539:2 7543:1 7552:1 7574:1 7589:1 7599:1 7613:1 7628:1 7637:1 7648:1 7649:1 7659:1 7662:1 7671:3 7672:1 7676:1 7691:1 7705:4 7724:1 7741:1 7745:1 7748:1 7766:1 7792:1 7794:1 7822:1 7825:1 7855:1 7867:1 7879:3 7912:2 7949:1 7954:1 7956:1 7961:1 7984:1 7993:1 8007:2 8025:1 8027:2 8043:1 8054:1 8064:1 8075:4 8089:2 8105:1 8129:1 8143:2 8150:1 8155:1 8167:1 8216:1 8230:1 8247:1 8258:2 8277:4 8299:1 8302:1 8328:1 8338:1 8340:1 8347:1 8387:1 8389:1 8413:1 8417:2 8426:1 8432:2 8454:1 8474:1 8478:1 8491:1 8494:1 8498:1 8499:1 8531:1 8560:1 8562:1 8570:1 8573:1 8575:1 8599:1 8611:1 8615:1 8619:1 8624:5 8630:3 8631:3 8633:3 8653:1 8659:1 8663:1 8688:2 8689:1 8702:31 8716:1 8726:7 8728:5 8767:1 8783:1 8796:2 8810:1 8815:2 8864:1 8886:1 8890:1 8891:1 8901:1 8909:1 8923:1 8932:2 8935:6 8957:1 8960:1 8974:1 8982:5 8992:1 9048:1 9059:1 9094:2 9135:1 9143:1 9168:2 9186:1 9203:1 9221:2 9231:1 9232:14 9267:1 9276:1 9279:1 9289:1 9298:1 9299:1 9381:1 9394:1 9430:1 9441:1 9466:1 9473:1 9507:2 9508:1 9540:2 9542:1 9544:2 9561:1 9563:1 9623:2 9632:1 9633:1 9634:1 9638:1 9642:2 9644:1 9648:3 9649:1 9654:1 9661:1 9697:2 9743:1 9746:1 9781:1 9788:1 9806:1 9807:1 9810:1 9815:1 9823:1 9836:1 9842:1 9882:1 9901:2 9907:1 9923:1 9931:1 9937:1 9942:1 9945:1 9974:1 9976:1 9988:1 9994:1 9999:1 10008:2 10015:1 10022:1 10027:3 10070:1 10087:1 10092:1 10117:1 10124:1 10150:2 10152:1 10161:1 10197:1 10209:2 10210:2 10275:1 10282:1 10291:1 10294:1 10307:2 10331:1 10332:1 10340:1 10345:3 10349:1 10362:1 10371:1 10374:1 10376:1 10389:1 10422:1 10430:1 10434:4 10436:1 10445:1 10450:1 10459:1 10465:1 10479:1 10502:1 10517:1 10518:1 10522:2 10524:1 10540:1 10549:1 10554:1 10584:1 10591:1 10602:1 10619:1 10621:1 10623:1 10627:1 10643:1 10648:1 10666:2 10709:3 10732:1 10752:2 10764:1 10792:1 10800:1 10804:1 10806:1 10807:1 10828:1 10846:1 10867:2 10877:1 10886:1 10913:1 10948:5 10969:1 10970:1 10972:1 10973:1 11011:1 11029:1 11030:1 11052:1 11067:1 11079:1 11119:2 11133:2 11141:1 11163:1 11170:2 11172:1 11175:1 11178:1 11188:2 11200:1 11208:1 11210:2 11214:2 11218:1 11222:1 11226:1 11231:2 11232:1 11234:2 11242:2 11265:1 11266:1 11276:4 11288:1 11291:1 11302:1 11309:1 11324:1 11331:1 11342:1 11376:3 11383:2 11433:1 11438:1 11445:1 11448:1 11450:1 11451:1 11456:1 11464:1 11488:1 11492:1 11499:1 11517:2 11573:1 11588:1 11594:1 11603:1 11607:2 11611:2 11637:1 11656:1 11660:1 11674:1 11677:1 11690:1 11695:1 11697:1 11701:1 11717:1 11744:1 11784:2 11795:1 11796:1 11811:1 11820:1 11822:5 11841:1 11842:1 11846:1 11854:1 11858:1 11899:1 11906:3 11914:2 11930:1 11933:1 11949:1 11955:1 11966:1 12015:2 12026:1 12039:3 12050:2 12109:1 12154:1 12162:1 12169:2 12197:1 12255:1 12274:1 12310:1 12319:1 12325:1 12327:2 12329:1 12333:1 12335:1 12336:4 12339:1 12352:2 12356:1 12369:1 12377:1 12379:1 12406:1 12427:1 12438:1 12448:1 12477:1 12487:1 12551:1 12552:1 12580:1 12596:1 12618:3 12630:2 12640:1 12647:1 12741:1 12743:1 12766:1 12775:1 12776:1 12805:1 12811:2 12814:2 12836:1 12845:1 12862:1 12865:7 12876:1 12877:1 12893:1 12910:1 12915:1 12923:1 12928:2 12933:1 12935:1 12954:1 12970:1 12988:3 13000:1 13005:1 13015:1 13018:1 13027:1 13032:1 13050:2 13061:1 13064:1 13073:1 13085:2 13088:2 13089:2 13094:2 13116:1 13128:6 13135:1 13138:2 13142:2 13150:2 13151:6 13152:1 13153:1 13156:1 13162:5 13168:1 13196:1 13220:2 13228:1 13231:1 13254:1 13264:1 13285:1 13302:1 13308:1 13365:1 13391:1 13408:1 13410:1 13423:2 13427:1 13434:1 13443:1 13448:2 13456:1 13463:1 13473:2 13480:2 13515:1 13517:1 13527:1 13552:1 13553:2 13590:1 13600:1 13606:2 13616:1 13621:1 13653:2 13662:1 13674:1 13684:2 13685:2 13690:1 13700:1 13718:1 13742:1 13750:2 13778:1 13805:1 13815:1 13821:2 13826:1 13830:1 13873:3 13895:2 13896:1 13899:1 13921:1 13933:1 13940:1 14021:1 14030:1 14039:1 14061:1 14102:1 14119:1 14146:1 14162:1 14183:2 14207:1 14210:1 14214:2 14256:2 14267:1 14281:1 14318:2 14319:1 14341:1 14345:4 14353:1 14356:2 14361:1 14370:2 14380:1 14384:1 14402:1 14416:1 14421:1 14443:1 14468:1 14472:1 14473:3 14480:1 14483:1 14489:1 14497:1 14518:1 14520:1 14541:1 14545:1 14572:1 14581:1 14583:1 14592:1 14620:1 14633:1 14640:1 14652:1 14658:2 14688:1 14697:1 14781:1 14793:5 14831:1 14854:2 14858:1 14859:1 14870:2 14873:1 14877:2 14881:3 14883:1 14891:1 14895:1 14896:1 14907:4 14915:1 14935:2 14940:1 14949:2 14957:1 14958:1 14975:1 14980:1 15005:1 15028:1 15033:2 15039:3 15040:1 15054:1 15066:1 15082:1 15125:2 15131:1 15187:1 15191:1 15215:1 15217:5 15246:1 15251:1 15275:1 15278:1 15281:2 15293:1 15322:1 15325:3 15333:1 15336:1 15374:1 15381:2 15429:1 15443:1 15477:2 15480:1 15483:2 15489:2 15496:1 15513:1 15519:1 15543:1 15551:1 15616:2 15622:1 15645:1 15662:1 15666:1 15728:5 15734:4 15740:1 15780:1 15811:2 15820:2 15840:1 15861:1 15900:1 15934:1 15959:1 15960:1 15962:1 15974:3 15986:1 15990:1 15996:2 15997:1 16000:3 16021:1 16030:1 16040:2 16042:1 16043:1 16046:1 16067:1 16098:1 16178:2 16189:1 16197:1 16214:1 16227:2 16229:1 16237:1 16254:1 16270:1 16284:1 16289:1 16321:1 16330:2 16355:1 16362:1 16390:1 16393:2 16411:1 16422:1 16427:1 16428:1 16433:1 16448:1 16451:1 16457:1 16484:3 16508:2 16534:1 16538:1 16559:1 16566:3 16606:1 16608:1 16630:1 16634:1 16642:1 16650:1 16674:1 16684:5 16693:1 16721:2 16723:1 16782:8 16783:1 16787:1 16789:1 16793:1 16832:2 16835:1 16846:2 16860:1 16884:2 16904:1 16936:3 16940:2 16942:1 16944:1 16971:2 16973:1 16988:3 16990:1 16999:1 17012:2 17042:1 17045:2 17046:1 17048:1 17053:2 17056:1 17063:1 17098:1 17105:1 17140:1 17155:1 17187:1 17194:1 17219:1 17246:1 17251:1 17297:1 17318:1 17324:1 17370:1 17379:1 17423:9 17437:1 17448:1 17479:1 17499:1 17514:1 17516:1 17531:1 17539:1 17567:1 17581:1 17586:1 17596:1 17648:1 17661:1 17673:1 17681:1 17689:6 17695:1 17699:1 17700:1 17709:1 17710:3 17714:1 17715:1 17718:1 17729:1 17731:2 17752:1 17758:1 17771:1 17775:2 17776:1 17784:2 17805:2 17824:1 17829:1 17830:2 17857:1 17860:1 17866:1 17871:1 17880:1 17884:1 17888:3 17953:3 17955:1 17989:1 18008:1 18049:2 18053:2 18074:3 18108:1 18111:1 18114:1 18141:1 18148:1 18157:2 18187:1 18195:4 18214:3 18226:1 18234:2 18236:1 18243:2 18258:1 18260:1 18273:1 18281:2 18302:1 18306:1 18308:2 18313:1 18315:1 18319:3 18321:2 18322:1 18327:1 18330:1 18332:2 18340:2 18342:1 18352:2 18372:1 18375:1 18401:1 18417:1 18492:2 18561:1 18584:1 18619:1 18635:2 18683:1 18697:1 18699:1 18702:1 18708:1 18717:1 18727:1 18732:1 18738:1 18739:2 18777:2 18785:1 18794:1 18799:2 18807:1 18821:1 18842:1 18911:3 18919:3 18928:1 18966:1 18967:1 19000:1 19005:1 19024:1 19029:2 19043:1 19050:1 19062:2 19069:1 19081:1 19089:2 19103:2 19135:1 19139:4 19155:1 19165:2 19182:1 19200:4 19208:1 19216:1 19233:1 19248:2 19276:1 19320:5 19329:1 19351:1 19352:1 19357:3 19398:1 19417:1 19443:1 19448:1 19452:1 19471:1 19508:1 19509:1 19583:1 19622:1 19628:1 19634:1 19643:1 19655:1 19663:2 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19758:1 19763:3 19772:4 19774:1 19776:1 19781:2 19784:1 19794:1 19809:1 19816:1 19843:2 19849:2 19850:1 19867:1 19872:1 19904:1 19910:1 19919:1 19951:1 19962:1 19965:1 19966:1 20000:1 20007:2 20020:1 20045:1 20077:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:1 20123:2 20124:3 20128:1 20136:1 20146:1 20166:2 20174:1 20181:1 20183:1 20200:1 20202:1 20220:1 20225:1 20237:1 20239:1 20241:1 20286:1 20287:1 20300:1 20309:2 20341:1 20391:1 20394:1 20400:1 20405:1 20407:1 20412:1 20441:1 20460:1 20477:1 20492:2 20503:1 20516:1 20517:1 20525:1 20540:1 20569:1 20635:2 20645:1 20682:1 20697:2 20742:3 20792:1 20803:6 20814:2 20815:1 20831:1 20851:1 20876:1 20893:1 20894:1 20895:1 20900:2 20929:1 20942:1 20949:1 20951:1 20970:1 20983:3 20996:1 21004:1 21016:1 21041:1 21047:1988 21068:3 21079:2 21087:1 21096:1 21164:1 21173:2 21178:1 21205:1 21234:1 21279:1 21291:1 21292:1 21295:1 21308:1 21355:1 21372:1 21374:1 21382:1 21401:1 21431:1 21444:1 21449:1 21487:1 21512:1 21515:3 21518:1 21539:1 21551:1 21566:1 21571:1 21585:1 21601:1 21602:1 21644:1 21689:1 21709:2 21735:3 21790:1 21808:1 21812:1 21813:1 21821:1 21827:3 21861:2 21874:1 21877:1 21883:1 21895:1 21918:1 21921:5 21952:1 21953:4 21961:1 21966:1 21992:1 22020:3 22029:1 22041:1 22045:1 22072:4 22082:1 22095:2 22127:1 22138:1 22162:1 22173:3 22174:1 22178:1 22227:1 22235:1 22240:1 22262:1 22267:1 22271:1 22281:1 22294:1 22301:3 22311:1 22318:1 22325:1 22344:1 22364:1 22375:1 22404:1 22415:1 22423:3 22459:1 22479:2 22495:1 22503:2 22508:1 22526:1 22540:1 22545:1 22548:2 22562:1 22565:2 22569:1 22573:1 22586:1 22603:1 22615:1 22617:1 22626:3 22644:2 22681:2 22690:1 22698:1 22713:1 22737:2 22740:1 22750:1 22766:1 22774:1 22791:1 22793:1 22815:3 22829:1 22834:1 22837:1 22845:1 22852:1 22870:3 22877:1 22889:1 22954:1 22966:1 22984:2 22992:1 23002:1 23046:1 23055:1 23059:1 23108:3 23129:1 23147:1 23156:1 23160:4 23169:1 23172:1 23175:1 23183:1 23243:1 23257:1 23277:1 23279:1 23281:1 23288:1 23290:1 23353:1 23359:1 23363:1 23367:1 23390:1 23415:2 23416:1 23419:1 23444:3 23447:1 23456:1 23463:1 23490:3 23504:2 23518:1 23521:1 23523:1 23532:1 23544:2 23550:3 23556:1 23561:1 23570:1 23572:1 23580:2 23583:1 23612:1 23617:1 23622:1 23644:1 23649:1 23657:1 23658:1 23663:1 23669:1 23723:1 23729:1 23736:1 23745:2 23746:1 23751:1 23752:2 23765:1 23773:1 23782:1 23790:1 23800:1 23858:1 23861:1 23863:1 23898:1 23901:1 23917:1 23919:2 23927:1 23931:1 23951:1 23953:2 23955:2 23985:1 24009:1 24013:1 24024:4 24032:1 24039:1 24058:1 24074:1 24082:1 24090:1 24098:1 24099:1 24113:1 24114:1 24133:1 24143:1 24144:1 24166:1 24168:1 24194:1 24195:1 24205:2 24206:1 24214:1 24226:2 24229:1 24250:1 24255:2 24262:2 24263:1 24274:1 24276:2 24289:1 24308:1 24321:1 24323:1 24358:1 24359:2 24366:4 24368:1 24369:1 24373:1 24383:1 24386:1 24417:1 24418:1 24425:1 24427:1 24449:1 24477:1 24478:2 24493:5 24502:1 24504:1 24527:1 24542:3 24550:2 24578:1 24587:1 24601:2 24618:1 24636:1 24643:1 24650:2 24678:1 24681:1 24685:2 24687:1 24690:3 24692:1 24698:1 24706:2 24727:1 24742:1 24775:1 24788:1 24792:1 24805:2 24840:1 24841:1 24847:1 24854:1 24858:1 24904:1 24907:1 24916:3 24921:1 24925:1 24933:3 24943:1 24959:1 24966:1 24969:1 24972:2 24974:1 25011:1 25021:1 25036:1 25041:1 25077:2 25093:1 25115:2 25127:1 25133:1 25139:2 25156:3 25167:2 25170:1 25184:1 25189:1 25197:1 25224:2 25233:2 25245:2 25300:1 25306:3 25337:2 25356:1 25364:2 25367:3 25369:1 25416:1 25423:1 25434:1 25454:1 25464:1 25474:2 25494:5 25508:1 25510:1 25513:1 25526:1 25545:2 25548:1 25552:2 25561:2 25569:1 25595:2 25600:1 25624:1 25635:2 25659:3 25666:1 25669:2 25674:3 25678:2 25713:1 25724:1 25732:1 25841:1 25865:1 25884:1 25897:1 25920:1 25967:1 26002:3 26017:1 26019:3 26025:1 26032:1 26035:1 26036:1 26046:1 26056:4 26062:1 26073:1 26088:1 26110:2 26133:1 26150:1 26158:1 26188:1 26195:1 26218:1 26223:1 26239:1 26243:1 26253:1 26263:1 26269:1 26270:1 26278:1 26279:1 26286:2 26320:1 26324:1 26328:1 26329:2 26331:1 26354:2 26364:1 26390:1 26403:1 26407:1 26423:2 26434:1 26435:1 26437:2 26442:1 26445:1 26488:1 26490:2 26502:3 26549:1 26550:1 26557:2 26581:1 26582:1 26584:1 26606:1 26646:1 26679:1 26689:3 26705:1 26726:1 26768:1 26794:1 26839:1 26872:2 26873:1 26897:1 26898:1 26932:1 26954:1 26966:1 26967:1 26977:1 27020:2 27063:1 27065:2 27076:1 27100:3 27105:1 27115:2 27116:1 27133:1 27134:1 27144:3 27151:1 27182:1 27186:1 27196:2 27198:1 27222:1 27223:1 27226:1 27227:3 27231:1 27233:1 27247:1 27265:1 27280:1 27299:3 27300:1 27305:1 27335:1 27336:2 27351:1 27358:1 27365:1 27376:1 27383:1 27408:2 27412:1 27429:2 27436:2 27460:1 27466:1 27470:2 27471:1 27479:1 27483:1 27484:1 27486:1 27487:4 27489:2 27490:1 27496:1 27498:1 27508:2 27511:1 27527:1 27530:3 27539:3 27580:1 27603:1 27622:1 27654:1 27655:2 27661:1 27664:2 27674:1 27681:1 27687:1 27691:2 27692:1 27705:1 27711:1 27713:1 27754:1 27797:10 27798:1 27799:1 27821:5 27839:1 27864:1 27871:1 27876:3 27890:1 27892:1 27912:2 27915:3 27986:2 27994:1 28003:1 28024:1 28030:1 28046:1 28064:1 28082:1 28094:1 28101:1 28110:1 28113:2 28275:1 28294:1 28303:1 28308:1 28319:2 28348:3 28349:3 28369:1 28382:5 28401:1 28402:1 28413:1 28424:2 28430:1 28501:1 28527:1 28533:2 28536:1 28593:1 28614:3 28632:1 28635:3 28643:1 28658:1 28670:2 28673:1 28685:1 28694:2 28722:1 28730:1 28731:1 28736:1 28759:2 28773:1 28776:1 28787:1 28803:2 28809:1 28833:1 28847:1 28884:1 28926:1 28944:1 28948:2 28966:1 28976:1 28995:1 29005:2 29012:2 29032:1 29042:1 29136:1 29137:1 29149:1 29152:2 29225:1 29226:1 29233:1 29241:1 29263:2 29277:1 29279:1 29283:1 29298:1 29305:1 29313:1 29330:1 29339:1 29342:1 29345:1 29349:1 29351:1 29356:1 29421:4 29433:1 29448:1 29474:1 29483:1 29485:1 29496:1 29515:7 29521:2 29529:1 29535:1 29547:1 29559:1 29562:1 29567:1 29570:1 29583:1 29605:2 29612:1 29632:1 29643:2 29654:1 29676:3 29702:1 29704:3 29711:1 29724:1 29728:1 29729:1 29735:1 29745:1 29775:1 29783:1 29800:1 29820:2 29831:2 29839:1 29845:1 29847:1 29904:1 29916:1 29958:2 29969:1 29971:1 29974:3 29977:1 29999:1 30035:1 30040:1 30044:1 30052:1 30100:1 30105:1 30142:1 30149:2 30156:2 30168:1 30191:1 30199:1 30213:2 30231:2 30249:1 30297:1 30305:1 30306:1 30327:1 30330:1 30331:2 30342:1 30357:1 30370:1 30380:2 30393:1 30420:1 30431:1 30471:1 30475:3 30501:1 30504:3 30510:1 30532:1 30548:1 30572:1 30587:3 30589:3 30602:1 30653:1 30660:1 30664:3 30685:1 30689:2 30697:1 30704:3 30710:1 30718:2 30775:1 30776:1 30789:1 30798:4 30802:2 30805:2 30809:2 30834:1 30843:4 30846:1 30854:2 30864:1 30867:1 30868:2 30869:1 30880:1 30884:1 30895:1 30908:2 30956:1 30967:1 30968:1 30971:2 30977:1 30994:2 30999:1 31009:1 31020:1 31042:1 31046:3 31057:2 31065:1 31107:1 31125:1 31130:1 31142:2 31144:1 31158:1 31161:1 31172:1 31184:1 31191:1 31195:1 31216:6 31227:1 31306:1 31322:1 31324:1 31360:1 31363:1 31370:2 31392:3 31398:1 31404:1 31422:2 31440:1 31448:1 31452:3 31459:1 31461:2 31463:1 31484:2 31485:3 31494:1 31531:3 31538:1 31543:1 31554:1 31576:1 31590:1 31625:1 31635:1 31640:1 31649:1 31665:12 31667:2 31670:1 31674:2 31680:3 31686:1 31688:2 31704:5 31721:3 31750:1 31761:3 31763:1 31783:1 31827:1 31834:3 31846:1 31853:1 31877:3 31897:1 31910:1 31921:1 31932:1 31938:1 31954:1 31960:1 31962:1 31974:1 31998:2 32009:1 32027:1 32035:1 32047:1 32070:1 32083:1 32085:1 32105:2 32117:1 32125:1 32142:1 32153:1 32172:2 32181:1 32201:1 32207:1 32229:1 32241:2 32244:3 32277:1 32280:2 32299:1 32303:1 32304:1 32312:1 32403:1 32407:1 32433:1 32447:1 32451:1 32456:1 32471:4 32476:1 32491:2 32499:1 32551:1 32552:2 32625:1 32651:1 32656:2 32660:1 32661:1 32693:1 32713:2 32719:1 32722:1 32750:1 32791:1 32795:1 32803:1 32818:1 32824:1 32834:1 32846:1 32885:1 32899:1 32900:1 32910:2 32941:2 32944:2 32956:1 32963:1 33001:2 33019:1 33041:2 33056:3 33059:1 33075:1 33084:1 33108:1 33138:1 33141:1 33143:2 33146:1 33148:2 33149:1 33155:4 33164:1 33167:3 33168:1 33171:3 33211:1 33220:1 33224:1 33225:1 33226:1 33232:1 33234:2 33267:1 33271:1
11 1:1 2:1 6:1 27:1 34:1 39:1 55:1 60:2 67:1 85:1 86:1 93:1 99:1 148:1 150:1 159:1 166:1 170:1 181:1 183:1 187:2 232:1 238:4 265:1 282:1 283:1 294:2 296:2 313:1 401:1 403:3 411:2 446:1 455:1 498:1 507:5 513:1 523:1 546:2 582:2 586:1 621:1 627:1 646:1 654:1 698:1 717:3 721:1 731:3 745:1 759:2 764:2 765:1 766:1 774:1 790:1 795:1 815:2 937:1 956:1 971:2 974:1 979:1 984:1 1003:2 1022:3 1049:1 1053:1 1057:1 1067:2 1069:1 1070:1 1071:3 1083:1 1094:1 1103:1 1106:1 1118:1 1125:1 1127:1 1130:5 1132:1 1134:1 1141:2 1144:1 1161:1 1204:1 1211:1 1220:1 1236:2 1239:1 1244:1 1257:1 1262:1 1284:1 1316:1 1318:1 1321:1 1351:1 1376:1 1378:1 1388:1 1392:1 1393:1 1405:1 1413:1 1415:1 1421:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:1 1465:1 1480:1 1481:1 1487:1 1496:2 1504:1 1514:1 1539:1 1545:1 1547:1 1588:1 1624:1 1626:2 1635:1 1650:1 1658:1 1664:3 1683:2 1690:2 1691:1 1719:1 1726:4 1730:7 1739:9 1745:1 1749:1 1751:2 1793:1 1807:1 1808:1 1837:3 1839:3 1869:1 1878:2 1883:5 1892:1 1906:1 1943:1 1948:1 1955:1 1957:1 1963:1 1966:1 1977:1 1980:1 1999:1 2003:1 2019:1 2061:1 2062:1 2073:2 2098:1 2113:1 2118:1 2119:1 2133:2 2135:1 2137:2 2138:2 2141:1 2157:1 2169:1 2177:1 2180:1 2195:4 2214:1 2223:1 2237:1 2241:1 2246:1 2249:2 2255:1 2263:1 2269:1 2279:1 2284:2 2301:1 2317:1 2322:1 2348:1 2355:1 2372:1 2373:3 2381:1 2397:1 2399:1 2421:1 2422:1 2437:1 2441:1 2482:5 2502:3 2508:1 2521:1 2525:1 2529:1 2530:1 2551:2 2552:1 2553:1 2555:3 2558:4 2562:1 2563:1 2576:2 2578:2 2579:3 2583:1 2587:1 2616:1 2618:3 2620:1 2623:2 2624:2 2625:2 2630:1 2631:3 2634:1 2635:2 2640:2 2642:2 2647:4 2648:1 2652:1 2657:3 2662:2 2663:1 2681:1 2720:1 2739:1 2753:1 2774:1 2784:1 2801:1 2821:1 2831:1 2832:1 2864:1 2868:1 2890:1 2896:1 2905:2 2918:2 2934:1 2951:1 2955:1 2962:1 2964:1 2985:1 2993:1 3008:1 3033:1 3039:1 3042:1 3049:1 3051:1 3059:1 3071:1 3080:3 3097:1 3106:3 3116:2 3121:1 3134:2 3145:1 3157:1 3165:3 3171:1 3173:1 3182:1 3213:1 3257:1 3263:2 3283:1 3284:5 3291:1 3294:1 3295:6 3302:2 3314:1 3336:4 3350:2 3351:1 3352:1 3353:6 3360:1 3364:2 3369:1 3377:1 3379:1 3386:1 3408:1 3411:2 3418:1 3433:2 3464:1 3474:1 3475:1 3482:1 3504:1 3529:1 3539:1 3549:1 3550:1 3578:2 3588:1 3625:1 3645:1 3646:1 3683:1 3690:1 3702:2 3726:1 3744:1 3755:1 3758:1 3769:1 3772:1 3799:1 3816:1 3821:1 3822:2 3853:1 3857:2 3868:1 3926:1 3930:2 3936:1 3939:1 3942:2 3945:1 3951:1 3968:1 3974:1 3990:1 4005:1 4011:1 4012:1 4018:1 4035:2 4040:1 4047:3 4074:1 4105:1 4122:1 4160:3 4174:1 4193:2 4195:1 4245:1 4247:2 4252:2 4253:8 4267:1 4271:1 4288:4 4289:2 4291:1 4292:1 4303:1 4306:3 4332:3 4334:1 4351:3 4378:1 4382:1 4470:1 4477:1 4484:1 4488:1 4510:1 4511:1 4529:1 4531:1 4533:1 4536:3 4545:2 4547:1 4573:1 4574:1 4575:1 4581:2 4609:1 4628:1 4637:1 4663:1 4667:1 4684:1 4714:1 4727:1 4730:1 4763:5 4767:4 4773:1 4785:1 4792:1 4793:4 4824:2 4842:2 4872:4 4888:2 4906:1 4907:1 4936:2 4959:1 4974:1 4989:1 4991:1 5000:1 5022:1 5025:1 5033:2 5045:2 5066:1 5072:1 5098:1 5106:1 5136:2 5143:4 5162:1 5163:1 5168:1 5171:1 5198:1 5212:1 5239:1 5246:2 5269:1 5287:3 5299:1 5312:1 5340:5 5365:1 5369:3 5462:1 5516:1 5562:27 5564:2 5596:1 5610:1 5671:1 5689:1 5690:3 5717:1 5718:4 5719:3 5720:1 5722:1 5725:2 5730:1 5731:3 5735:1 5740:1 5744:1 5750:5 5752:3 5763:1 5766:1 5770:1 5811:1 5814:2 5844:1 5853:1 5855:1 5868:1 5873:1 5898:1 5965:2 6027:1 6038:1 6084:1 6089:1 6108:1 6115:1 6144:3 6150:3 6165:2 6169:1 6181:1 6186:1 6224:1 6233:1 6237:1 6283:1 6292:1 6299:1 6300:1 6305:3 6319:2 6322:1 6328:1 6335:3 6345:1 6372:2 6385:1 6388:1 6391:2 6395:1 6397:1 6407:1 6412:1 6418:2 6428:1 6435:1 6459:6 6469:1 6480:3 6496:1 6506:1 6508:2 6509:1 6529:1 6531:1 6540:1 6548:1 6558:3 6581:3 6584:1 6610:1 6624:1 6688:4 6692:2 6699:1 6706:1 6707:1 6776:1 6793:1 6795:1 6806:1 6816:1 6843:1 6847:2 6884:1 6888:1 6890:2 6897:4 6944:1 6961:3 6980:1 6994:1 7012:1 7025:1 7038:1 7044:1 7062:1 7087:1 7088:1 7089:1 7101:1 7132:1 7150:1 7190:1 7192:1 7193:1 7196:1 7197:1 7200:3 7201:1 7204:3 7207:2 7209:1 7210:1 7211:2 7217:1 7218:7 7221:1 7222:3 7258:1 7272:1 7279:1 7303:1 7306:1 7307:1 7381:1 7389:1 7406:1 7410:1 7429:1 7435:2 7439:1 7469:1 7497:1 7535:1 7539:2 7543:1 7552:1 7574:1 7589:1 7599:1 7602:1 7613:1 7628:1 7637:1 7648:1 7649:1 7659:1 7662:1 7671:3 7672:1 7676:1 7691:1 7705:4 7724:1 7741:1 7745:1 7748:1 7750:1 7766:1 7792:1 7794:1 7822:1 7825:1 7855:1 7867:1 7879:3 7912:2 7913:1 7927:1 7949:1 7954:1 7956:1 7961:1 7984:1 7993:1 8007:2 8025:1 8027:2 8043:1 8045:1 8054:1 8064:1 8075:4 8089:2 8105:1 8129:1 8139:1 8143:4 8150:1 8155:1 8167:1 8216:1 8230:1 8247:1 8258:2 8277:4 8299:1 8302:1 8328:1 8338:1 8340:1 8347:1 8387:1 8389:2 8413:1 8417:2 8426:1 8432:2 8454:1 8474:1 8478:1 8491:1 8494:1 8498:1 8499:1 8531:1 8560:1 8562:1 8570:1 8573:1 8575:1 8599:1 8609:4 8611:1 8615:1 8619:1 8624:5 8630:3 8631:3 8633:4 8653:1 8659:1 8663:1 8684:1 8688:2 8689:1 8702:32 8716:1 8726:7 8728:5 8767:1 8783:1 8796:2 8810:1 8815:2 8864:1 8886:1 8890:1 8891:1 8901:1 8909:1 8923:1 8932:2 8935:6 8957:1 8960:1 8974:1 8982:5 8992:1 9048:1 9059:1 9094:2 9135:1 9143:1 9168:2 9186:1 9203:1 9221:2 9231:1 9232:14 9267:1 9276:1 9279:1 9289:1 9298:1 9299:1 9381:1 9394:1 9430:1 9441:1 9466:1 9470:1 9473:1 9507:2 9508:1 9540:2 9542:1 9544:2 9561:1 9563:1 9623:2 9632:1 9633:1 9634:1 9638:1 9640:1 9642:2 9644:1 9648:3 9649:1 9654:2 9661:1 9697:2 9743:1 9746:1 9770:1 9781:1 9788:1 9806:1 9807:1 9810:1 9815:1 9823:1 9836:1 9842:1 9882:1 9901:2 9907:1 9923:1 9931:1 9937:2 9942:1 9945:1 9974:1 9976:1 9988:1 9994:1 9999:1 10008:2 10015:1 10022:1 10027:3 10070:1 10087:1 10092:1 10117:1 10124:1 10138:1 10142:1 10150:2 10152:1 10161:1 10197:1 10209:2 10210:2 10275:1 10282:1 10291:1 10294:1 10307:2 10331:1 10332:1 10340:1 10345:3 10349:1 10362:1 10371:1 10374:1 10376:1 10389:1 10407:1 10422:1 10430:1 10434:4 10436:1 10445:1 10450:1 10459:1 10465:1 10479:1 10502:1 10517:1 10518:1 10522:2 10524:1 10540:1 10549:1 10554:1 10583:1 10584:2 10591:1 10602:1 10619:1 10621:1 10623:1 10627:1 10643:1 10648:1 10666:2 10709:3 10732:1 10752:2 10764:1 10792:1 10800:1 10804:1 10806:1 10807:1 10822:1 10828:1 10846:1 10867:2 10877:1 10886:1 10913:1 10948:5 10969:1 10970:1 10972:1 10973:2 11011:1 11029:1 11030:1 11052:1 11063:1 11067:1 11079:1 11094:1 11119:2 11133:2 11141:1 11163:1 11170:2 11172:1 11175:1 11178:1 11188:2 11200:1 11208:1 11210:2 11214:2 11218:1 11222:1 11226:1 11231:2 11232:1 11234:2 11242:2 11265:1 11266:1 11276:4 11288:1 11291:1 11302:1 11309:1 11324:1 11331:1 11342:1 11376:3 11383:2 11433:1 11438:1 11445:1 11448:1 11450:1 11451:1 11456:1 11464:1 11488:1 11492:1 11499:1 11517:2 11573:1 11588:1 11594:1 11603:1 11607:2 11611:2 11637:1 11656:1 11660:1 11674:1 11677:1 11690:1 11695:1 11697:1 11701:1 11717:1 11744:1 11784:3 11795:1 11796:1 11811:1 11820:1 11822:5 11841:1 11842:1 11846:1 11854:1 11858:1 11899:1 11906:3 11912:1 11914:2 11930:1 11933:1 11949:1 11955:1 11966:1 12002:1 12015:2 12023:1 12026:1 12039:3 12050:2 12099:1 12109:1 12154:1 12162:1 12169:2 12197:1 12255:1 12274:1 12275:1 12310:1 12319:1 12325:1 12327:2 12329:1 12333:1 12335:1 12336:4 12339:1 12352:2 12354:1 12356:1 12369:1 12377:1 12379:1 12406:1 12427:1 12438:1 12448:1 12477:1 12487:1 12551:1 12552:1 12580:1 12596:1 12618:3 12630:2 12640:1 12647:1 12741:1 12743:1 12766:1 12775:1 12776:1 12805:1 12811:2 12814:2 12836:1 12845:1 12862:1 12865:7 12876:1 12877:1 12893:1 12910:1 12915:1 12923:1 12928:2 12933:1 12935:1 12954:1 12970:1 12977:1 12988:3 13000:1 13005:1 13015:1 13018:1 13027:1 13032:1 13050:2 13061:1 13064:1 13073:1 13085:2 13088:2 13089:2 13094:2 13111:1 13116:1 13128:6 13135:1 13138:2 13142:2 13148:1 13150:2 13151:6 13152:1 13153:1 13156:1 13162:5 13168:1 13196:1 13220:2 13228:1 13231:1 13254:1 13264:1 13285:1 13302:1 13308:1 13365:1 13391:1 13408:1 13410:2 13423:2 13427:1 13434:1 13443:1 13448:2 13456:1 13463:1 13473:3 13480:2 13515:2 13517:2 13527:1 13552:1 13553:2 13590:1 13592:1 13600:1 13606:2 13616:1 13621:1 13653:2 13662:1 13674:1 13684:2 13685:2 13690:1 13700:1 13718:1 13742:1 13750:2 13778:1 13805:1 13815:1 13821:2 13826:1 13830:1 13873:3 13895:2 13896:2 13899:1 13921:1 13933:1 13939:1 13940:1 14021:1 14030:1 14039:1 14061:1 14102:1 14119:1 14146:1 14162:1 14183:2 14207:1 14210:1 14214:2 14256:2 14267:1 14281:1 14318:2 14319:1 14341:1 14345:4 14353:1 14356:2 14361:1 14370:2 14376:1 14380:1 14384:1 14402:1 14416:1 14421:1 14443:1 14449:1 14468:1 14471:1 14472:1 14473:3 14480:1 14483:1 14489:1 14497:1 14518:1 14520:1 14541:1 14545:1 14572:1 14581:1 14583:1 14592:1 14620:1 14633:1 14640:1 14652:1 14658:2 14688:1 14697:1 14753:1 14781:1 14793:5 14806:1 14831:1 14854:2 14858:1 14859:1 14870:2 14873:1 14877:3 14881:4 14883:1 14891:1 14895:1 14896:1 14907:5 14915:1 14935:2 14940:1 14949:2 14957:1 14958:1 14975:1 14980:1 15005:1 15028:1 15033:2 15039:3 15040:1 15054:1 15066:1 15082:1 15087:1 15125:2 15131:1 15161:1 15187:1 15191:1 15215:1 15217:5 15246:1 15251:1 15275:1 15278:1 15281:2 15293:1 15311:1 15322:1 15325:3 15333:1 15336:1 15374:1 15381:2 15429:1 15443:1 15476:1 15477:2 15480:1 15483:2 15489:2 15496:1 15513:1 15519:1 15543:1 15551:1 15574:1 15616:2 15622:1 15645:1 15662:1 15666:2 15728:5 15734:4 15740:1 15780:1 15811:2 15820:2 15840:1 15855:1 15861:1 15900:1 15905:1 15923:1 15934:1 15959:1 15960:1 15962:1 15974:3 15986:1 15990:1 15996:2 15997:1 16000:3 16021:1 16030:1 16040:2 16042:1 16043:1 16046:1 16067:1 16092:1 16098:2 16152:1 16178:2 16189:1 16197:1 16214:1 16227:2 16229:1 16236:1 16237:1 16254:1 16270:1 16284:1 16289:1 16321:1 16330:3 16347:1 16350:1 16355:1 16362:1 16390:2 16393:2 16411:1 16422:1 16427:1 16428:1 16433:1 16448:1 16451:1 16457:1 16484:3 16508:2 16534:1 16538:1 16559:1 16566:3 16606:1 16608:1 16630:1 16634:1 16642:1 16650:1 16674:1 16684:5 16693:1 16721:2 16723:1 16782:8 16783:1 16787:1 16789:1 16793:1 16832:2 16835:1 16846:2 16860:1 16884:2 16904:1 16936:3 16940:2 16942:1 16944:1 16971:2 16973:1 16988:3 16990:1 16999:1 17012:2 17042:1 17045:2 17046:1 17048:1 17053:2 17056:1 17063:1 17098:1 17105:1 17140:1 17155:1 17187:1 17194:1 17219:1 17246:1 17251:1 17297:1 17318:1 17324:1 17370:1 17379:1 17423:9 17437:1 17448:1 17479:1 17499:1 17514:1 17516:1 17531:1 17539:1 17567:1 17581:1 17586:1 17596:1 17598:1 17648:1 17661:2 17673:1 17681:1 17689:6 17695:1 17699:1 17700:1 17709:1 17710:3 17714:1 17715:1 17718:1 17729:1 17731:2 17752:1 17758:1 17771:1 17775:2 17776:1 17784:2 17805:2 17824:1 17829:1 17830:2 17857:1 17860:1 17866:1 17871:1 17880:1 17884:1 17888:3 17953:3 17955:1 17989:1 18008:1 18049:2 18053:2 18074:3 18108:1 18111:1 18114:1 18141:1 18148:1 18157:2 18187:1 18195:5 18214:3 18226:1 18234:2 18236:1 18243:2 18258:1 18260:1 18273:1 18281:2 18302:1 18306:1 18308:2 18313:1 18315:1 18319:3 18321:2 18322:1 18327:1 18330:1 18332:2 18340:2 18342:1 18352:2 18372:1 18375:1 18401:1 18417:1 18492:2 18561:1 18584:1 18619:1 18635:2 18683:1 18697:1 18699:1 18702:1 18708:1 18717:1 18727:1 18732:1 18738:1 18739:2 18777:2 18785:1 18794:1 18799:2 18807:1 18821:1 18842:1 18896:1 18911:3 18919:3 18928:1 18966:1 18967:1 19000:1 19005:1 19024:1 19029:2 19043:1 19050:1 19062:2 19069:1 19081:1 19089:2 19103:2 19135:1 19139:4 19155:1 19165:2 19182:1 19200:4 19208:1 19209:1 19216:1 19233:1 19248:2 19276:1 19320:5 19329:1 19351:1 19352:1 19357:3 19398:1 19417:1 19443:1 19448:1 19452:1 19465:1 19471:1 19508:2 19509:1 19566:1 19583:1 19622:1 19628:1 19634:1 19643:1 19655:1 19663:2 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19758:1 19763:3 19772:4 19774:1 19776:1 19781:2 19783:1 19784:1 19794:1 19797:1 19809:1 19816:1 19843:2 19849:2 19850:1 19867:1 19872:1 19904:1 19910:1 19919:1 19951:1 19962:1 19965:1 19966:1 20000:1 20007:2 20020:1 20045:1 20077:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:1 20123:2 20124:3 20128:2 20136:1 20146:1 20166:2 20174:1 20181:1 20183:1 20200:1 20202:1 20220:1 20225:1 20237:1 20239:1 20241:1 20286:1 20287:1 20300:1 20309:2 20341:1 20391:1 20394:1 20400:1 20405:1 20407:1 20412:1 20441:1 20460:1 20477:1 20492:2 20503:1 20516:1 20517:1 20524:1 20525:1 20540:1 20561:1 20569:1 20635:2 20645:1 20682:1 20692:1 20697:2 20706:1 20742:3 20792:1 20803:7 20814:2 20815:1 20831:1 20851:1 20876:1 20893:1 20894:1 20895:1 20900:2 20929:1 20942:1 20949:1 20951:1 20970:1 20974:1 20983:3 20996:1 21004:1 21016:1 21041:1 21047:2141 21068:3 21079:2 21087:1 21096:1 21164:1 21173:2 21178:1 21205:1 21234:1 21241:1 21279:1 21291:1 21292:1 21295:1 21308:1 21355:1 21372:1 21374:1 21382:1 21401:1 21431:1 21444:1 21449:1 21478:1 21487:1 21512:1 21515:3 21518:1 21539:1 21551:1 21566:1 21571:1 21585:1 21601:1 21602:1 21644:1 21689:1 21709:2 21735:3 21790:1 21806:1 21808:1 21812:1 21813:1 21821:1 21827:3 21861:2 21874:1 21877:1 21883:1 21895:2 21907:1 21918:1 21921:5 21952:1 21953:4 21961:1 21966:1 21992:1 22020:3 22029:1 22041:1 22043:1 22045:1 22072:4 22082:1 22095:2 22107:1 22127:1 22138:1 22162:1 22173:3 22174:1 22178:2 22227:1 22235:1 22240:1 22262:1 22267:1 22271:1 22281:1 22294:1 22301:3 22311:1 22318:1 22325:1 22344:1 22364:1 22375:1 22382:1 22404:1 22415:1 22423:3 22459:1 22479:2 22483:1 22495:1 22503:2 22508:1 22526:1 22540:1 22545:1 22548:2 22562:1 22565:2 22569:1 22572:1 22573:2 22586:1 22603:1 22615:1 22617:1 22626:3 22644:2 22681:2 22690:1 22698:1 22713:1 22737:2 22740:1 22750:1 22766:1 22774:1 22791:1 22793:1 22815:3 22829:1 22834:1 22837:1 22845:1 22852:1 22870:3 22877:1 22889:1 22954:1 22966:1 22984:2 22992:1 23002:1 23005:1 23036:1 23046:1 23055:1 23059:1 23108:3 23113:1 23129:1 23147:1 23156:1 23160:4 23169:2 23172:1 23175:1 23183:1 23243:1 23257:1 23277:1 23279:1 23281:1 23288:1 23290:1 23353:1 23359:1 23363:1 23367:1 23390:1 23415:2 23416:1 23419:1 23444:3 23447:1 23456:1 23463:1 23490:3 23504:2 23518:1 23521:1 23523:1 23532:1 23544:2 23550:3 23556:1 23561:1 23570:1 23572:1 23580:2 23583:1 23612:1 23617:1 23622:1 23644:1 23649:1 23657:1 23658:1 23663:1 23669:2 23723:2 23729:1 23736:1 23745:2 23746:1 23751:1 23752:2 23765:1 23773:1 23782:1 23790:1 23800:1 23802:1 23858:1 23861:1 23863:1 23898:1 23901:1 23917:1 23919:2 23927:1 23931:1 23943:1 23951:1 23953:2 23955:2 23985:1 24009:1 24013:1 24024:4 24032:1 24039:1 24058:1 24074:1 24082:2 24090:1 24098:1 24099:1 24113:1 24114:1 24133:1 24143:1 24144:1 24151:1 24166:1 24168:1 24194:1 24195:1 24205:2 24206:1 24214:1 24217:1 24222:1 24226:2 24229:1 24250:1 24255:2 24262:2 24263:1 24274:1 24276:2 24289:1 24308:1 24314:1 24321:1 24323:1 24358:1 24359:2 24366:4 24368:1 24369:1 24373:1 24383:1 24386:1 24417:1 24418:1 24425:1 24427:1 24449:1 24474:1 24477:1 24478:2 24493:5 24502:1 24504:1 24527:1 24542:3 24550:2 24578:1 24587:1 24601:2 24618:1 24636:1 24643:1 24650:2 24678:1 24681:1 24685:2 24687:1 24690:3 24692:1 24698:1 24706:2 24727:1 24742:1 24775:1 24788:1 24792:1 24805:2 24840:1 24841:1 24847:1 24854:1 24857:1 24858:1 24904:1 24907:1 24916:3 24921:1 24925:1 24933:3 24943:1 24959:1 24966:1 24969:1 24972:2 24974:1 25003:1 25011:1 25021:1 25036:1 25041:1 25077:2 25093:1 25115:2 25127:1 25133:1 25134:1 25139:2 25156:3 25167:2 25170:1 25184:1 25189:1 25197:1 25224:3 25233:2 25245:2 25300:1 25306:3 25337:2 25356:1 25364:2 25367:4 25369:1 25416:1 25423:1 25434:2 25454:1 25464:1 25474:2 25494:5 25508:1 25510:1 25513:1 25526:2 25545:3 25548:1 25552:3 25557:1 25561:2 25569:1 25595:2 25600:1 25624:1 25635:2 25659:3 25666:1 25669:2 25674:3 25678:2 25713:1 25724:1 25732:1 25841:1 25865:1 25884:1 25897:1 25920:1 25967:1 26002:3 26017:1 26019:3 26025:1 26032:1 26035:1 26036:1 26046:1 26056:4 26062:1 26073:1 26084:1 26088:1 26110:2 26133:1 26150:1 26158:1 26188:1 26195:1 26218:1 26223:1 26239:1 26243:1 26253:1 26263:2 26269:1 26270:1 26278:1 26279:1 26286:2 26320:1 26324:1 26328:1 26329:2 26331:1 26354:2 26364:1 26390:1 26403:1 26407:1 26423:2 26434:1 26435:1 26437:2 26442:1 26445:1 26459:1 26482:1 26488:1 26490:2 26502:3 26530:1 26549:1 26550:1 26557:2 26565:1 26581:1 26582:1 26584:1 26606:1 26646:1 26679:1 26689:3 26705:1 26726:1 26729:1 26768:1 26794:1 26839:1 26872:2 26873:1 26897:1 26898:1 26932:1 26954:1 26966:1 26967:1 26977:1 26979:1 27020:2 27049:1 27063:1 27065:2 27075:2 27076:1 27100:3 27105:1 27115:2 27116:1 27133:1 27134:1 27144:3 27151:1 27182:1 27186:1 27196:2 27198:1 27222:1 27223:1 27226:1 27227:3 27231:1 27233:1 27247:1 27265:1 27280:1 27299:3 27300:1 27305:2 27335:1 27336:2 27351:1 27358:1 27365:1 27376:1 27383:1 27408:2 27412:1 27429:2 27436:2 27460:1 27466:1 27470:3 27471:3 27479:1 27483:1 27484:1 27486:1 27487:4 27489:2 27490:2 27496:1 27498:1 27508:2 27511:1 27519:1 27527:1 27530:3 27539:3 27580:1 27603:1 27612:1 27622:1 27654:1 27655:2 27661:1 27664:2 27674:1 27681:1 27683:1 27687:1 27691:2 27692:1 27705:1 27711:1 27713:1 27754:1 27797:10 27798:1 27799:1 27821:5 27835:1 27839:2 27864:1 27871:1 27876:3 27890:1 27892:1 27912:2 27915:3 27986:2 27994:1 28003:1 28024:1 28030:1 28046:1 28064:1 28065:1 28082:1 28094:1 28101:1 28110:1 28113:2 28133:1 28209:1 28275:1 28293:1 28294:1 28303:1 28308:1 28319:2 28348:3 28349:3 28369:1 28382:6 28401:1 28402:1 28413:1 28424:2 28425:1 28430:1 28501:1 28527:1 28533:2 28536:1 28593:1 28614:3 28632:1 28635:3 28643:1 28658:1 28670:2 28673:1 28685:1 28694:2 28722:1 28730:1 28731:1 28736:1 28759:2 28773:1 28776:1 28787:1 28803:2 28809:1 28833:1 28847:1 28884:1 28926:1 28944:1 28948:2 28966:1 28969:2 28976:1 28995:1 29005:2 29012:2 29032:1 29042:1 29136:1 29137:1 29149:1 29152:2 29225:1 29226:1 29233:1 29241:1 29263:2 29277:1 29279:1 29283:1 29298:1 29305:1 29313:1 29330:1 29339:1 29342:1 29345:1 29349:1 29351:1 29356:1 29359:1 29421:4 29433:1 29448:1 29474:1 29483:1 29485:1 29496:1 29515:8 29521:2 29529:1 29535:1 29547:1 29559:1 29562:1 29567:1 29570:1 29583:1 29605:2 29612:1 29632:1 29643:2 29654:1 29676:3 29702:1 29704:3 29711:1 29724:1 29728:1 29729:1 29735:1 29745:1 29775:1 29783:1 29800:1 29820:2 29831:2 29839:1 29841:1 29845:1 29847:1 29904:1 29916:1 29958:2 29969:1 29971:1 29974:3 29977:1 29995:1 29999:1 30035:1 30040:1 30044:1 30052:1 30100:1 30105:1 30142:1 30149:2 30156:2 30168:1 30191:1 30199:1 30213:2 30231:3 30249:1 30267:1 30297:1 30305:1 30306:1 30327:1 30330:1 30331:2 30342:1 30357:1 30370:1 30380:3 30393:1 30420:1 30431:1 30471:1 30475:3 30501:1 30504:3 30510:2 30532:1 30548:1 30572:2 30587:3 30589:3 30602:1 30653:1 30660:1 30664:3 30685:1 30689:2 30697:1 30704:3 30710:1 30718:2 30775:1 30776:1 30789:1 30798:5 30802:2 30805:2 30809:2 30834:1 30835:1 30843:4 30846:1 30854:2 30864:1 30867:1 30868:2 30869:1 30880:1 30883:1 30884:1 30892:1 30895:1 30908:2 30956:2 30967:1 30968:1 30971:2 30977:1 30994:2 30999:1 31009:1 31019:1 31020:1 31042:1 31046:3 31057:2 31065:1 31107:1 31125:1 31130:1 31142:2 31144:1 31158:1 31161:1 31172:1 31184:1 31191:1 31195:1 31206:1 31209:1 31216:7 31227:1 31306:1 31322:1 31324:1 31360:1 31363:1 31370:2 31391:1 31392:3 31398:1 31404:1 31422:2 31440:1 31448:1 31452:3 31459:1 31461:2 31463:1 31484:2 31485:3 31494:1 31531:4 31538:1 31543:1 31554:1 31576:1 31590:1 31625:1 31635:1 31640:1 31649:1 31665:14 31667:2 31670:1 31674:2 31680:3 31686:1 31688:2 31704:5 31721:3 31750:1 31761:3 31763:1 31783:1 31827:2 31834:3 31846:1 31853:1 31877:3 31897:1 31910:1 31921:1 31932:1 31938:2 31954:1 31960:1 31962:1 31974:1 31998:2 32009:1 32027:1 32035:1 32041:1 32047:1 32070:1 32083:1 32085:1 32105:2 32117:1 32125:1 32142:1 32153:1 32172:2 32181:1 32201:1 32207:1 32229:1 32241:2 32244:3 32277:1 32280:2 32299:1 32303:1 32304:1 32312:1 32319:1 32403:1 32407:1 32433:1 32447:1 32451:1 32456:1 32471:4 32476:1 32491:2 32499:1 32551:1 32552:2 32619:1 32625:1 32651:1 32656:2 32660:1 32661:1 32693:1 32713:2 32719:1 32722:1 32750:1 32791:1 32795:1 32803:1 32818:1 32824:1 32834:1 32846:1 32885:1 32899:1 32900:1 32910:2 32941:2 32944:2 32956:1 32963:1 33001:2 33019:1 33041:2 33056:3 33059:1 33075:1 33084:1 33108:1 33115:1 33138:1 33141:2 33143:2 33146:1 33148:2 33149:1 33155:5 33164:1 33167:3 33168:1 33171:4 33211:1 33220:1 33224:1 33225:1 33226:1 33232:1 33234:2 33267:1 33271:1
11 1:1 2:1 6:1 27:1 31:1 34:1 39:1 55:1 60:2 67:1 85:1 86:1 93:1 99:1 148:1 150:1 159:1 166:1 170:1 181:1 183:1 187:2 232:1 238:4 265:1 282:1 283:1 294:2 296:2 313:1 362:1 401:1 403:3 411:2 446:1 455:1 498:1 507:6 513:1 523:1 546:2 582:2 586:1 621:1 627:1 646:1 654:1 698:1 717:3 721:1 731:3 745:1 759:2 764:2 765:1 766:1 774:1 790:1 795:1 808:1 815:2 866:1 937:1 955:1 956:1 971:2 974:1 979:1 984:1 1003:2 1022:3 1049:1 1053:1 1057:1 1067:2 1069:1 1070:1 1071:3 1073:1 1083:1 1094:1 1103:1 1106:1 1118:1 1125:1 1127:1 1130:5 1132:1 1134:1 1141:2 1144:1 1161:1 1204:1 1211:1 1220:1 1236:2 1239:1 1244:1 1257:1 1262:1 1284:1 1311:1 1316:1 1318:1 1321:1 1351:1 1376:1 1378:1 1388:1 1392:1 1393:1 1405:1 1413:1 1415:1 1421:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:1 1465:1 1480:1 1481:1 1487:1 1496:2 1504:1 1509:1 1514:1 1539:1 1545:1 1547:1 1588:1 1624:1 1626:2 1635:1 1650:1 1658:1 1664:3 1683:2 1686:1 1690:2 1691:1 1719:1 1726:4 1730:8 1739:9 1745:1 1747:1 1749:1 1751:2 1793:1 1807:1 1808:1 1837:3 1839:3 1869:1 1878:2 1883:5 1892:1 1906:1 1917:1 1943:1 1948:1 1955:1 1957:1 1963:1 1966:1 1977:1 1980:1 1999:1 2003:1 2019:1 2037:1 2061:1 2062:1 2073:2 2098:1 2113:1 2118:1 2119:1 2133:2 2135:1 2136:1 2137:2 2138:2 2141:1 2157:1 2158:1 2169:1 2177:1 2180:1 2195:4 2214:1 2223:1 2237:1 2241:1 2246:1 2249:2 2255:1 2263:1 2269:1 2279:1 2284:2 2301:1 2317:1 2322:1 2348:1 2355:1 2372:1 2373:3 2381:1 2397:1 2399:1 2421:1 2422:1 2437:1 2441:1 2482:5 2502:3 2508:1 2521:1 2525:1 2529:1 2530:1 2551:2 2552:1 2553:1 2555:3 2558:4 2562:1 2563:1 2570:1 2573:1 2576:2 2578:2 2579:3 2583:1 2587:1 2616:1 2618:3 2620:1 2623:2 2624:2 2625:2 2626:1 2630:1 2631:3 2634:2 2635:2 2640:2 2642:2 2647:4 2648:1 2652:1 2657:3 2662:2 2663:1 2681:1 2720:1 2739:1 2753:1 2774:1 2784:1 2801:1 2821:1 2831:1 2832:1 2864:1 2868:1 2888:1 2890:1 2896:1 2905:2 2918:2 2934:1 2951:1 2955:1 2962:1 2964:1 2985:1 2993:1 3008:1 3033:1 3039:1 3042:1 3049:1 3051:1 3059:1 3071:1 3080:3 3097:1 3098:1 3106:4 3116:2 3121:1 3134:2 3145:1 3157:1 3165:3 3171:1 3173:1 3182:1 3213:1 3257:1 3263:2 3283:1 3284:5 3291:1 3294:1 3295:6 3302:2 3314:1 3318:1 3336:4 3350:2 3351:1 3352:1 3353:6 3360:1 3364:2 3369:1 3377:1 3379:1 3386:1 3397:1 3408:1 3411:2 3418:1 3433:2 3464:1 3474:1 3475:1 3482:1 3504:1 3517:1 3529:1 3539:1 3549:1 3550:1 3578:2 3588:1 3625:1 3645:1 3646:1 3683:1 3690:1 3702:2 3726:1 3744:1 3755:1 3758:1 3769:1 3772:1 3799:1 3816:1 3821:1 3822:2 3853:1 3857:2 3868:1 3917:1 3926:1 3930:2 3936:1 3939:1 3942:2 3945:1 3951:1 3968:1 3974:1 3990:1 4005:1 4011:1 4012:1 4018:1 4035:2 4040:1 4047:3 4074:1 4105:1 4122:1 4160:3 4174:1 4193:2 4195:1 4245:1 4247:2 4252:2 4253:8 4267:1 4271:1 4279:1 4288:4 4289:2 4291:1 4292:1 4303:1 4306:3 4332:3 4334:1 4351:3 4378:1 4382:1 4454:1 4470:1 4477:1 4484:1 4488:1 4510:1 4511:1 4529:1 4531:1 4533:1 4536:3 4545:2 4547:1 4573:1 4574:1 4575:1 4581:2 4609:1 4628:1 4637:1 4663:1 4667:1 4684:1 4714:1 4727:1 4730:1 4763:5 4767:4 4773:1 4785:1 4792:1 4793:4 4824:2 4842:2 4872:4 4888:2 4906:1 4907:1 4933:1 4936:2 4959:1 4974:1 4989:1 4991:1 5000:1 5020:1 5022:1 5025:1 5033:2 5045:2 5066:1 5072:1 5098:1 5106:1 5136:2 5143:4 5162:1 5163:1 5168:1 5171:1 5198:1 5212:1 5239:1 5246:2 5269:1 5287:3 5299:1 5312:1 5340:5 5365:1 5369:3 5397:1 5462:1 5516:1 5562:27 5564:2 5596:1 5610:1 5671:1 5689:1 5690:3 5717:2 5718:4 5719:3 5720:1 5722:1 5725:2 5730:1 5731:3 5735:1 5740:1 5744:1 5750:5 5752:3 5763:1 5766:1 5770:1 5811:1 5814:2 5844:1 5853:1 5855:1 5868:1 5873:1 5898:1 5965:2 6027:1 6038:1 6084:2 6089:1 6108:1 6115:1 6124:1 6144:3 6150:3 6165:2 6169:1 6181:1 6186:1 6224:1 6233:1 6237:1 6283:1 6292:1 6299:1 6300:1 6305:3 6319:2 6322:1 6328:1 6335:3 6345:1 6372:2 6385:1 6388:1 6391:2 6395:1 6397:2 6407:1 6412:1 6418:2 6428:1 6431:1 6435:1 6459:6 6469:1 6480:3 6496:1 6506:1 6508:2 6509:1 6529:1 6531:1 6540:1 6548:1 6558:3 6581:3 6584:1 6610:1 6624:1 6688:4 6692:2 6699:1 6706:1 6707:1 6776:1 6793:1 6795:1 6806:1 6816:1 6843:1 6847:2 6884:1 6888:1 6890:2 6897:4 6944:1 6961:4 6980:1 6994:1 7012:1 7025:1 7038:1 7044:1 7062:1 7087:1 7088:1 7089:1 7101:1 7114:1 7132:1 7150:1 7190:2 7192:1 7193:1 7196:1 7197:1 7200:3 7201:1 7204:3 7207:2 7209:1 7210:1 7211:2 7217:1 7218:7 7221:1 7222:3 7258:1 7272:1 7279:1 7303:1 7306:1 7307:1 7381:1 7389:1 7406:1 7410:1 7429:1 7435:2 7439:1 7463:1 7469:1 7497:1 7535:1 7539:2 7543:1 7552:1 7574:1 7589:1 7599:1 7602:1 7613:1 7628:1 7637:1 7648:1 7649:1 7659:1 7662:1 7671:3 7672:1 7676:1 7691:1 7705:4 7724:1 7741:1 7745:2 7748:1 7750:2 7766:1 7792:1 7794:1 7822:1 7825:1 7855:1 7867:1 7879:3 7912:2 7913:1 7927:1 7949:1 7954:1 7956:1 7961:1 7984:1 7993:1 8007:2 8025:1 8027:2 8043:1 8045:1 8054:1 8064:1 8075:4 8089:2 8090:1 8105:1 8129:1 8139:1 8143:4 8150:1 8155:1 8167:1 8216:1 8230:1 8247:1 8258:2 8277:4 8299:1 8302:1 8328:1 8338:1 8340:1 8347:1 8387:1 8389:3 8413:1 8417:2 8426:1 8432:2 8454:1 8474:1 8478:1 8491:1 8494:1 8498:1 8499:1 8531:1 8560:1 8562:1 8570:1 8573:1 8575:1 8599:1 8609:4 8611:1 8615:1 8619:1 8624:5 8630:3 8631:3 8633:4 8653:1 8659:1 8663:1 8684:1 8688:2 8689:1 8702:33 8716:1 8726:7 8728:5 8767:1 8783:1 8796:2 8810:1 8815:2 8864:1 8886:1 8890:1 8891:1 8901:1 8909:1 8923:1 8932:2 8935:6 8957:1 8960:1 8974:1 8982:5 8992:1 9048:1 9059:1 9094:2 9127:1 9135:1 9143:1 9157:1 9168:2 9186:1 9203:1 9221:2 9231:1 9232:14 9264:1 9267:1 9276:1 9279:1 9289:1 9298:1 9299:1 9324:1 9381:1 9394:1 9430:1 9441:1 9466:1 9470:1 9473:1 9507:2 9508:1 9540:2 9542:1 9544:2 9561:1 9563:1 9623:2 9632:1 9633:1 9634:1 9638:1 9640:1 9642:2 9644:1 9648:3 9649:1 9654:2 9661:1 9697:2 9743:1 9746:1 9770:1 9781:1 9788:1 9806:1 9807:1 9810:1 9815:1 9823:1 9833:1 9836:1 9842:1 9882:1 9901:2 9907:1 9923:1 9931:1 9937:2 9942:1 9945:1 9974:1 9976:1 9988:1 9994:1 9999:1 10008:2 10015:1 10022:1 10027:3 10070:1 10087:1 10092:1 10117:1 10124:1 10138:1 10142:1 10150:2 10152:1 10161:1 10197:1 10209:2 10210:2 10275:1 10282:1 10291:1 10294:1 10307:2 10331:1 10332:1 10338:1 10340:1 10345:4 10349:1 10362:1 10367:1 10371:1 10374:1 10376:1 10389:1 10407:1 10422:1 10430:1 10434:4 10436:1 10445:1 10450:1 10459:1 10465:1 10479:1 10497:1 10502:1 10517:1 10518:1 10522:2 10524:1 10540:1 10549:1 10554:1 10575:1 10583:1 10584:2 10591:1 10602:1 10619:1 10621:1 10623:1 10627:1 10643:1 10648:1 10666:2 10695:1 10709:3 10732:1 10752:2 10764:1 10792:1 10800:1 10804:1 10806:1 10807:2 10822:1 10828:1 10846:1 10867:2 10877:1 10886:1 10913:2 10948:5 10969:1 10970:1 10972:1 10973:2 11011:1 11029:1 11030:1 11052:1 11063:1 11067:1 11079:1 11094:1 11119:2 11133:2 11141:1 11163:1 11170:2 11172:1 11175:1 11178:1 11188:2 11200:1 11208:1 11210:2 11214:2 11218:1 11222:1 11226:1 11231:2 11232:1 11234:2 11242:2 11265:1 11266:1 11276:4 11288:1 11291:1 11302:1 11308:1 11309:1 11324:1 11331:1 11342:1 11376:4 11383:2 11433:1 11438:1 11445:1 11448:1 11450:1 11451:1 11456:1 11464:1 11488:1 11492:1 11499:1 11517:2 11573:1 11588:1 11594:1 11603:1 11607:2 11611:2 11637:1 11656:1 11660:1 11674:1 11677:2 11690:1 11695:1 11697:1 11701:1 11717:1 11741:1 11744:1 11778:1 11784:3 11795:1 11796:1 11811:1 11820:1 11822:5 11841:1 11842:1 11846:1 11854:1 11858:1 11860:1 11899:1 11906:3 11912:1 11914:2 11930:1 11933:1 11949:1 11955:1 11966:1 12002:1 12015:2 12023:1 12026:1 12039:3 12050:2 12099:1 12109:1 12154:1 12162:1 12169:2 12197:1 12214:1 12255:1 12274:1 12275:1 12307:1 12310:1 12319:1 12325:1 12327:3 12329:1 12333:1 12335:1 12336:4 12339:1 12352:2 12354:1 12356:1 12369:1 12377:1 12379:1 12406:1 12427:1 12434:1 12438:1 12448:1 12472:1 12477:1 12487:1 12551:1 12552:1 12580:1 12596:1 12618:3 12630:2 12640:1 12647:1 12741:1 12743:1 12766:1 12775:1 12776:1 12805:1 12811:2 12814:2 12819:1 12836:1 12845:1 12862:1 12865:7 12876:1 12877:1 12893:1 12910:2 12915:1 12923:1 12928:2 12933:1 12935:1 12952:1 12954:1 12970:1 12977:1 12988:3 13000:1 13005:1 13015:1 13018:1 13027:1 13032:1 13050:2 13061:1 13064:1 13073:1 13085:2 13088:2 13089:2 13094:2 13111:1 13116:1 13128:6 13135:1 13138:2 13142:2 13148:1 13150:2 13151:6 13152:1 13153:1 13156:1 13162:5 13168:1 13196:1 13202:1 13220:2 13228:1 13231:1 13254:1 13264:1 13285:1 13302:1 13308:1 13320:1 13365:1 13391:1 13408:1 13410:2 13423:2 13427:1 13434:1 13443:1 13448:2 13456:1 13463:1 13473:3 13480:2 13515:2 13517:2 13527:1 13552:1 13553:2 13556:1 13590:1 13592:1 13600:1 13606:2 13616:1 13621:1 13653:2 13654:1 13662:1 13674:1 13684:2 13685:2 13690:1 13700:1 13718:1 13742:1 13750:2 13778:1 13805:1 13815:1 13821:2 13826:2 13830:1 13873:3 13895:2 13896:2 13899:1 13921:1 13933:1 13939:1 13940:1 14018:1 14021:1 14030:1 14039:1 14061:1 14102:1 14119:1 14146:1 14162:2 14183:2 14207:1 14210:1 14214:2 14242:1 14256:2 14267:1 14281:1 14318:2 14319:1 14341:1 14345:4 14353:1 14356:2 14361:1 14370:2 14376:1 14380:1 14384:1 14402:1 14416:1 14421:1 14443:1 14449:1 14468:1 14471:1 14472:1 14473:3 14480:1 14483:1 14489:1 14497:1 14518:1 14520:1 14541:1 14545:1 14572:1 14577:1 14581:1 14583:1 14592:1 14620:1 14633:1 14640:1 14652:1 14658:2 14688:1 14697:1 14753:1 14781:1 14793:5 14806:1 14831:1 14841:1 14854:2 14858:1 14859:1 14870:2 14873:1 14877:3 14881:4 14883:1 14891:1 14895:1 14896:1 14904:1 14907:5 14915:1 14935:2 14940:1 14949:2 14957:1 14958:1 14960:1 14975:1 14980:1 15005:1 15028:1 15033:2 15039:3 15040:1 15054:1 15066:1 15082:1 15087:1 15122:1 15125:2 15131:1 15161:1 15187:1 15191:1 15215:1 15217:5 15246:1 15251:1 15275:1 15278:1 15281:2 15293:1 15311:1 15322:1 15325:3 15333:1 15336:1 15374:1 15381:2 15429:1 15443:1 15476:1 15477:2 15480:1 15483:2 15487:1 15489:2 15496:1 15508:1 15513:1 15519:1 15543:1 15551:1 15574:1 15616:2 15622:1 15645:1 15662:1 15666:2 15728:5 15734:4 15740:1 15780:1 15811:2 15820:2 15840:1 15855:1 15861:1 15900:1 15905:1 15923:1 15934:1 15959:1 15960:1 15962:1 15974:3 15986:1 15990:1 15996:2 15997:1 16000:3 16021:1 16030:1 16040:2 16042:1 16043:1 16046:1 16067:1 16092:1 16098:2 16145:1 16152:1 16178:2 16189:1 16197:1 16198:1 16214:1 16227:2 16229:1 16236:1 16237:1 16254:1 16270:1 16284:1 16289:1 16321:1 16330:3 16347:1 16350:1 16355:1 16362:1 16390:2 16393:2 16411:1 16422:1 16427:2 16428:1 16433:1 16448:1 16451:1 16457:1 16484:3 16508:2 16523:1 16534:1 16538:1 16559:1 16566:3 16606:1 16608:1 16630:1 16634:1 16642:1 16650:1 16674:1 16684:5 16693:1 16694:1 16721:2 16723:1 16753:1 16782:8 16783:1 16787:1 16789:1 16793:1 16832:2 16835:1 16846:2 16860:1 16884:2 16904:1 16936:3 16940:2 16942:1 16944:1 16971:2 16973:1 16988:3 16990:1 16999:1 17012:2 17042:1 17045:2 17046:1 17048:1 17053:2 17056:1 17063:1 17098:2 17105:1 17140:1 17155:1 17176:1 17187:1 17194:1 17214:1 17219:1 17246:1 17251:1 17297:1 17318:1 17324:1 17370:1 17379:1 17423:10 17437:1 17448:1 17479:1 17499:1 17514:1 17516:1 17528:1 17531:1 17539:1 17567:1 17581:1 17586:1 17596:1 17598:1 17648:1 17661:2 17673:1 17681:1 17689:6 17695:1 17699:1 17700:2 17709:1 17710:3 17714:1 17715:1 17718:1 17729:1 17731:2 17752:1 17758:1 17771:1 17775:2 17776:1 17784:2 17805:3 17824:1 17829:1 17830:2 17857:1 17860:1 17866:1 17871:1 17880:1 17884:1 17888:3 17953:3 17955:1 17989:1 18008:1 18049:2 18053:2 18074:3 18108:1 18111:1 18114:1 18141:1 18148:1 18157:2 18187:1 18195:5 18214:3 18226:1 18234:2 18236:1 18243:2 18258:1 18260:1 18273:1 18281:2 18302:1 18306:1 18308:2 18313:1 18315:1 18319:3 18321:2 18322:1 18327:1 18330:1 18332:2 18340:2 18341:1 18342:1 18352:2 18372:1 18375:1 18401:1 18417:1 18492:2 18561:1 18584:1 18619:1 18635:2 18683:1 18697:1 18699:1 18702:1 18708:1 18717:1 18727:1 18732:1 18738:1 18739:2 18777:2 18785:1 18794:1 18799:2 18807:1 18821:1 18842:1 18896:1 18911:3 18919:3 18928:1 18966:1 18967:1 19000:1 19005:1 19024:1 19029:2 19043:1 19050:1 19059:1 19062:2 19069:1 19081:1 19089:2 19103:2 19135:1 19139:4 19155:1 19165:2 19182:1 19200:4 19208:1 19209:1 19216:1 19233:1 19248:2 19276:1 19320:6 19329:1 19351:1 19352:1 19357:3 19398:1 19417:1 19443:1 19444:1 19448:1 19452:1 19465:1 19471:1 19503:1 19508:2 19509:1 19566:1 19583:1 19622:1 19628:1 19634:1 19643:1 19655:1 19663:2 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19758:1 19763:3 19772:4 19774:1 19776:1 19781:2 19783:1 19784:1 19794:1 19797:1 19809:1 19816:1 19843:2 19849:2 19850:1 19867:1 19872:1 19904:1 19910:1 19919:1 19951:1 19962:1 19965:1 19966:1 20000:1 20007:2 20020:1 20045:1 20077:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:1 20123:2 20124:3 20128:2 20136:1 20146:1 20166:2 20174:1 20181:1 20183:1 20200:1 20202:1 20220:1 20225:1 20231:1 20237:1 20239:1 20241:1 20286:1 20287:1 20300:1 20309:2 20341:1 20391:1 20394:1 20400:1 20405:1 20407:1 20412:1 20441:1 20460:1 20477:1 20492:2 20503:1 20516:1 20517:1 20524:1 20525:1 20540:1 20561:1 20569:1 20635:2 20645:1 20682:1 20692:1 20697:2 20706:1 20709:1 20742:3 20792:1 20803:7 20814:2 20815:1 20831:1 20851:1 20876:1 20893:1 20894:1 20895:1 20900:2 20929:1 20942:1 20949:1 20951:1 20970:1 20974:1 20983:3 20996:1 21004:1 21016:1 21041:1 21047:2247 21068:3 21079:2 21087:1 21096:1 21164:1 21173:2 21178:1 21205:1 21234:1 21241:1 21279:1 21291:1 21292:1 21295:1 21308:1 21355:1 21362:1 21372:1 21374:1 21382:1 21401:1 21431:1 21444:1 21449:1 21478:1 21487:1 21512:1 21515:3 21518:1 21539:1 21551:1 21566:1 21571:1 21585:1 21601:1 21602:1 21644:1 21689:2 21709:2 21735:3 21790:1 21802:1 21806:1 21808:1 21812:1 21813:1 21817:1 21821:1 21827:3 21861:2 21874:1 21877:1 21883:1 21895:2 21907:1 21918:1 21921:5 21952:1 21953:4 21961:1 21966:1 21976:1 21992:1 22020:3 22029:1 22041:1 22043:1 22045:1 22072:4 22082:1 22095:2 22107:1 22127:1 22138:1 22162:1 22173:3 22174:1 22178:3 22227:1 22235:1 22240:1 22262:1 22267:1 22271:1 22281:1 22294:1 22301:3 22311:1 22318:1 22325:1 22344:1 22364:1 22375:1 22382:1 22404:1 22415:1 22423:3 22459:1 22479:2 22483:1 22495:1 22503:2 22504:1 22508:1 22526:1 22540:1 22545:1 22548:2 22562:1 22565:2 22569:1 22572:1 22573:2 22586:1 22603:1 22615:1 22617:1 22626:3 22644:2 22681:3 22688:1 22690:1 22698:1 22713:1 22737:2 22740:1 22750:1 22766:1 22774:1 22791:1 22793:1 22815:3 22829:1 22834:1 22837:1 22845:1 22852:1 22870:3 22877:2 22889:1 22954:1 22966:1 22984:2 22992:1 23002:1 23004:1 23005:1 23036:1 23046:1 23055:1 23059:1 23108:3 23113:1 23129:1 23147:1 23156:1 23160:4 23169:2 23172:1 23175:1 23183:1 23243:1 23257:1 23277:1 23279:1 23281:1 23288:1 23290:1 23353:1 23359:1 23363:1 23367:1 23390:1 23415:2 23416:1 23419:1 23444:3 23447:1 23456:1 23463:1 23490:3 23504:2 23518:1 23521:1 23523:1 23532:1 23544:2 23550:3 23556:1 23561:1 23570:1 23572:1 23580:2 23583:1 23612:1 23617:1 23622:1 23644:1 23649:1 23657:1 23658:1 23663:1 23669:2 23723:2 23729:1 23736:1 23745:2 23746:1 23751:1 23752:2 23756:1 23765:1 23773:1 23782:1 23790:1 23800:1 23802:1 23853:1 23858:1 23861:1 23863:1 23898:1 23901:1 23917:1 23919:2 23927:1 23931:1 23943:1 23951:1 23953:2 23955:2 23985:1 23991:1 24009:1 24013:1 24024:4 24032:1 24039:1 24058:1 24074:1 24082:2 24090:1 24098:1 24099:1 24113:1 24114:1 24133:1 24143:1 24144:1 24151:1 24166:1 24168:1 24194:1 24195:1 24205:2 24206:1 24214:1 24217:1 24222:1 24226:2 24229:1 24250:1 24255:2 24262:2 24263:1 24274:1 24276:2 24289:1 24308:1 24314:1 24321:1 24323:1 24358:1 24359:2 24366:4 24368:1 24369:1 24373:1 24383:1 24386:1 24417:1 24418:1 24425:1 24427:1 24449:1 24474:1 24477:1 24478:2 24493:5 24502:1 24504:1 24527:1 24542:3 24550:2 24578:1 24587:1 24601:2 24618:1 24636:1 24643:1 24650:2 24678:1 24681:1 24685:2 24687:1 24690:3 24692:2 24698:1 24706:2 24727:1 24742:1 24775:1 24788:1 24792:1 24805:2 24840:1 24841:1 24847:1 24854:1 24857:1 24858:1 24887:1 24904:1 24907:1 24916:3 24921:1 24925:1 24933:3 24943:1 24959:1 24966:1 24969:1 24972:2 24974:1 25003:1 25011:1 25021:1 25027:1 25036:1 25041:1 25077:2 25093:1 25115:2 25127:1 25133:1 25134:1 25139:2 25156:3 25167:2 25170:1 25184:1 25189:1 25197:1 25224:3 25233:3 25245:2 25300:1 25306:3 25337:2 25356:1 25364:2 25367:4 25369:1 25416:1 25423:1 25434:2 25454:1 25464:1 25474:2 25494:5 25508:1 25510:1 25513:2 25526:2 25545:3 25548:1 25552:3 25557:1 25561:2 25569:1 25595:2 25600:1 25621:1 25624:1 25635:3 25659:3 25666:1 25669:2 25674:3 25678:2 25713:1 25724:1 25732:1 25841:1 25865:1 25884:1 25897:1 25916:1 25920:1 25967:1 26002:3 26017:1 26019:3 26025:1 26032:1 26035:1 26036:1 26046:1 26056:4 26062:1 26073:1 26084:1 26088:1 26110:2 26133:1 26150:1 26158:1 26188:1 26195:1 26218:1 26223:1 26239:1 26243:1 26253:1 26263:2 26269:1 26270:2 26278:1 26279:1 26286:2 26320:1 26324:1 26328:1 26329:2 26331:1 26354:2 26364:1 26390:1 26403:1 26407:1 26423:2 26434:1 26435:1 26437:2 26442:1 26445:1 26459:1 26482:1 26488:1 26490:2 26502:3 26530:1 26549:1 26550:1 26557:2 26565:1 26581:1 26582:1 26584:1 26605:1 26606:1 26646:2 26665:1 26679:1 26689:3 26705:1 26726:1 26729:1 26768:1 26794:1 26839:1 26872:2 26873:1 26897:1 26898:1 26932:1 26954:1 26966:1 26967:1 26977:1 26979:1 27020:2 27049:1 27063:1 27065:2 27075:2 27076:1 27100:3 27105:1 27115:2 27116:1 27133:1 27134:1 27144:3 27151:1 27182:1 27186:1 27196:2 27198:1 27222:1 27223:1 27226:1 27227:4 27231:1 27233:1 27247:1 27265:1 27280:1 27299:3 27300:1 27305:2 27335:1 27336:2 27351:1 27358:1 27365:1 27376:1 27383:1 27408:2 27412:1 27429:2 27436:2 27460:1 27466:1 27470:3 27471:3 27479:1 27483:1 27484:1 27486:1 27487:4 27489:2 27490:2 27496:1 27498:1 27508:2 27511:1 27519:1 27527:1 27530:3 27539:3 27580:1 27603:1 27612:1 27622:1 27654:1 27655:2 27661:1 27664:2 27674:1 27681:1 27683:1 27687:1 27689:1 27691:2 27692:1 27705:1 27711:1 27713:1 27754:1 27797:10 27798:1 27799:1 27821:6 27835:1 27839:2 27858:1 27864:1 27871:1 27876:3 27890:1 27892:1 27912:2 27915:3 27986:2 27994:1 28003:1 28024:1 28030:1 28046:1 28064:1 28065:1 28074:1 28082:1 28094:1 28101:1 28110:1 28113:2 28115:1 28133:1 28209:1 28275:1 28293:1 28294:1 28303:1 28308:1 28319:2 28348:3 28349:3 28369:1 28382:6 28393:1 28397:1 28401:1 28402:1 28413:1 28424:2 28425:1 28430:1 28501:1 28527:1 28533:2 28536:1 28593:1 28614:3 28632:1 28635:3 28643:1 28658:1 28670:2 28673:1 28685:1 28694:2 28722:1 28730:1 28731:1 28736:1 28759:2 28773:1 28776:1 28787:1 28803:2 28809:1 28833:1 28847:1 28884:1 28926:1 28944:1 28948:3 28966:1 28969:2 28976:1 28995:1 29005:2 29012:2 29032:1 29042:1 29136:1 29137:1 29149:1 29152:2 29211:1 29225:1 29226:1 29233:1 29241:1 29263:2 29277:1 29279:1 29283:1 29298:2 29305:1 29313:1 29330:1 29339:1 29342:1 29345:1 29349:1 29351:1 29356:1 29359:1 29421:4 29433:1 29448:1 29474:1 29483:1 29485:1 29496:1 29515:8 29521:2 29529:1 29535:1 29547:1 29559:1 29562:1 29567:1 29570:1 29583:1 29605:2 29612:1 29632:1 29643:2 29654:1 29676:3 29702:1 29704:3 29711:1 29724:1 29728:1 29729:1 29735:1 29745:1 29775:1 29783:1 29800:1 29820:2 29831:2 29839:1 29841:1 29845:1 29847:1 29899:1 29904:1 29916:1 29958:2 29969:1 29971:1 29974:3 29977:1 29995:1 29999:1 30035:1 30040:1 30044:1 30052:1 30059:1 30100:1 30105:1 30142:1 30149:2 30156:2 30168:1 30191:1 30199:1 30213:2 30231:3 30249:1 30267:1 30285:1 30297:1 30305:1 30306:1 30315:1 30327:1 30330:1 30331:2 30342:1 30357:1 30370:1 30380:3 30393:1 30420:1 30431:1 30445:1 30471:1 30475:3 30501:1 30504:3 30510:2 30532:1 30548:1 30572:2 30587:3 30589:3 30602:1 30638:1 30653:1 30660:1 30663:1 30664:3 30685:1 30689:2 30697:1 30704:4 30710:1 30718:2 30775:1 30776:1 30789:1 30798:5 30802:2 30805:2 30809:2 30834:1 30835:1 30843:4 30846:1 30854:2 30864:1 30867:1 30868:2 30869:1 30880:1 30883:1 30884:1 30892:1 30895:1 30908:2 30956:2 30967:1 30968:1 30971:2 30977:1 30994:2 30999:1 31009:1 31019:1 31020:1 31042:1 31046:3 31057:2 31062:1 31065:1 31107:1 31125:1 31130:1 31142:2 31144:1 31158:1 31161:1 31172:1 31184:1 31191:1 31195:1 31206:1 31209:1 31216:7 31227:1 31306:1 31315:1 31322:1 31324:1 31360:1 31363:1 31370:2 31391:1 31392:3 31398:1 31404:1 31422:2 31440:2 31448:1 31452:3 31459:1 31461:2 31463:1 31484:2 31485:3 31494:1 31531:4 31538:1 31543:1 31554:1 31566:1 31576:1 31590:1 31625:1 31635:1 31640:1 31649:1 31665:14 31667:2 31670:1 31674:2 31680:3 31686:1 31688:2 31704:5 31721:3 31750:1 31761:3 31763:1 31783:1 31827:2 31834:3 31846:1 31853:1 31877:3 31897:1 31910:1 31921:1 31932:1 31938:2 31954:1 31960:1 31962:1 31974:1 31998:2 32009:1 32027:1 32035:1 32041:1 32047:1 32070:1 32083:1 32085:1 32105:2 32117:1 32125:1 32140:1 32142:1 32153:1 32172:2 32181:1 32201:1 32207:1 32229:1 32241:3 32244:4 32277:1 32280:2 32299:1 32303:1 32304:1 32312:1 32319:1 32403:1 32407:1 32433:1 32443:1 32447:1 32451:1 32456:1 32471:4 32476:1 32491:2 32499:1 32551:1 32552:2 32579:1 32619:1 32625:1 32651:1 32656:2 32660:1 32661:1 32693:1 32713:2 32719:1 32722:1 32724:1 32750:2 32791:1 32795:1 32803:1 32818:1 32824:1 32834:1 32846:1 32885:1 32899:1 32900:1 32910:2 32941:2 32944:2 32956:1 32963:1 33001:2 33019:1 33038:1 33041:3 33056:3 33059:1 33075:1 33084:1 33108:1 33115:1 33138:1 33141:2 33143:2 33146:1 33148:2 33149:1 33155:5 33164:1 33167:4 33168:1 33171:4 33211:1 33220:1 33224:1 33225:1 33226:1 33232:1 33234:2 33267:1 33271:1
11 1:1 2:1 6:1 27:1 31:1 34:1 39:1 55:1 60:2 67:1 85:1 86:1 93:1 95:1 99:1 148:1 150:1 159:1 166:1 170:1 181:1 183:1 187:2 232:1 238:4 265:1 282:1 283:1 294:2 296:2 313:1 362:1 401:1 402:1 403:4 411:2 446:1 455:1 498:1 507:7 513:1 523:1 546:2 582:2 586:1 621:1 627:1 646:1 654:1 698:1 717:3 721:1 731:4 745:1 759:2 764:2 765:1 766:1 774:1 790:1 795:1 808:1 815:2 866:2 937:1 955:1 956:1 971:2 974:1 979:1 984:1 1003:2 1022:3 1049:1 1053:1 1057:1 1067:2 1069:1 1070:1 1071:3 1073:1 1083:1 1094:1 1103:1 1106:1 1118:1 1125:1 1127:1 1130:5 1132:1 1134:1 1141:2 1144:1 1161:1 1204:1 1211:1 1220:1 1236:2 1239:1 1244:1 1257:1 1262:1 1284:1 1311:1 1316:1 1318:1 1321:1 1351:1 1376:1 1378:1 1388:1 1392:1 1393:1 1403:1 1405:1 1413:1 1415:1 1421:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:1 1465:1 1480:1 1481:1 1487:1 1496:2 1504:1 1509:1 1514:1 1539:1 1545:1 1547:1 1588:2 1624:1 1626:2 1635:1 1650:1 1658:1 1664:3 1683:2 1686:1 1690:2 1691:1 1719:1 1726:4 1730:8 1739:9 1745:1 1747:1 1749:1 1751:2 1793:1 1807:1 1808:1 1837:3 1839:3 1869:1 1878:2 1883:5 1892:1 1899:1 1906:2 1917:2 1943:1 1948:1 1955:1 1957:1 1963:1 1966:1 1977:1 1980:1 1999:1 2003:1 2019:1 2037:1 2061:1 2062:1 2073:2 2098:1 2113:1 2118:1 2119:1 2133:3 2135:1 2136:1 2137:2 2138:2 2141:1 2157:1 2158:1 2169:1 2177:1 2180:1 2195:4 2214:1 2223:1 2237:1 2241:1 2246:1 2249:2 2255:1 2263:1 2269:1 2279:1 2284:2 2301:1 2317:1 2322:1 2348:1 2355:1 2372:1 2373:3 2381:1 2397:1 2399:1 2421:1 2422:1 2437:1 2441:1 2482:5 2502:3 2508:1 2521:1 2525:1 2529:1 2530:1 2547:1 2551:2 2552:1 2553:1 2555:4 2558:4 2562:1 2563:1 2570:1 2573:1 2576:2 2578:2 2579:3 2583:1 2587:1 2613:1 2616:1 2618:3 2620:1 2623:2 2624:2 2625:2 2626:1 2630:1 2631:3 2634:2 2635:2 2640:2 2642:2 2647:4 2648:1 2652:1 2657:3 2662:2 2663:1 2681:1 2720:1 2739:1 2753:1 2774:1 2784:1 2801:1 2821:1 2831:1 2832:1 2864:1 2867:1 2868:1 2888:1 2890:1 2896:1 2905:2 2918:2 2934:1 2951:1 2955:1 2962:1 2964:1 2985:1 2993:1 3008:1 3033:1 3039:1 3042:1 3049:1 3051:1 3059:1 3071:1 3080:3 3097:1 3098:1 3106:5 3116:2 3121:1 3134:2 3145:1 3157:1 3165:3 3171:1 3173:1 3182:2 3193:1 3201:1 3213:1 3257:1 3263:2 3283:1 3284:6 3291:1 3294:1 3295:7 3302:2 3314:1 3318:1 3336:4 3350:2 3351:1 3352:1 3353:8 3360:1 3364:2 3369:1 3377:1 3379:1 3386:1 3397:1 3408:1 3411:2 3418:1 3433:2 3464:1 3474:1 3475:1 3482:1 3504:1 3517:1 3529:1 3539:1 3549:1 3550:1 3578:2 3588:1 3625:1 3645:1 3646:1 3683:1 3690:1 3702:2 3726:1 3744:1 3755:1 3758:1 3769:1 3772:1 3799:1 3816:1 3821:1 3822:2 3853:1 3857:2 3868:1 3917:1 3926:1 3930:2 3936:1 3939:1 3942:2 3945:1 3951:1 3968:1 3974:1 3990:1 4005:1 4011:1 4012:1 4018:1 4033:1 4035:2 4040:1 4047:3 4074:1 4105:1 4122:1 4160:3 4174:1 4193:2 4195:1 4245:1 4247:2 4252:2 4253:9 4267:1 4271:1 4279:1 4288:4 4289:2 4291:1 4292:1 4303:1 4306:3 4332:4 4334:1 4351:3 4378:1 4382:1 4454:1 4470:1 4477:1 4484:1 4488:1 4510:1 4511:1 4529:1 4531:2 4533:1 4536:3 4540:1 4545:3 4547:1 4573:1 4574:1 4575:1 4581:2 4609:1 4628:1 4637:1 4663:1 4667:1 4684:1 4714:1 4727:1 4728:1 4730:1 4763:5 4767:4 4773:1 4785:1 4792:1 4793:4 4824:2 4842:2 4863:1 4872:5 4888:2 4906:1 4907:1 4933:1 4936:2 4959:1 4974:1 4989:1 4991:1 5000:1 5020:1 5022:1 5025:1 5033:2 5045:2 5066:1 5072:1 5082:1 5098:1 5106:1 5136:2 5143:4 5162:1 5163:1 5168:1 5171:1 5198:1 5212:1 5239:1 5246:3 5269:1 5287:3 5299:1 5312:1 5340:5 5365:1 5369:3 5397:1 5462:1 5490:1 5516:1 5562:27 5564:2 5596:1 5610:1 5671:1 5689:1 5690:3 5717:2 5718:4 5719:3 5720:1 5722:1 5725:2 5730:1 5731:3 5735:1 5740:1 5744:1 5750:5 5752:3 5763:1 5766:1 5770:1 5811:1 5814:2 5844:1 5853:1 5855:1 5868:1 5873:1 5898:1 5965:2 6027:1 6038:1 6084:2 6089:1 6108:1 6115:1 6124:1 6144:3 6150:3 6165:2 6169:1 6181:1 6186:1 6224:1 6233:1 6237:1 6283:1 6284:1 6292:1 6299:1 6300:1 6305:3 6319:3 6322:1 6327:1 6328:1 6335:3 6345:1 6372:2 6385:1 6388:1 6391:2 6395:1 6397:2 6400:1 6407:1 6412:1 6418:2 6428:1 6431:1 6435:1 6459:6 6469:1 6480:3 6496:1 6506:1 6508:2 6509:1 6529:1 6531:1 6537:1 6540:1 6547:1 6548:1 6558:4 6581:3 6584:1 6610:1 6624:1 6688:4 6692:2 6699:1 6706:1 6707:1 6750:1 6776:1 6793:1 6795:1 6806:1 6816:1 6843:1 6847:2 6884:1 6888:1 6890:2 6897:4 6944:1 6961:6 6980:1 6994:1 7012:1 7025:1 7038:1 7044:1 7062:1 7066:1 7081:1 7087:1 7088:2 7089:1 7101:1 7114:2 7132:1 7150:1 7190:2 7192:1 7193:1 7196:1 7197:1 7200:3 7201:1 7204:3 7207:2 7209:1 7210:1 7211:2 7217:1 7218:7 7221:1 7222:3 7258:1 7272:1 7279:1 7303:1 7306:1 7307:1 7381:1 7389:1 7406:1 7410:1 7429:1 7435:2 7439:1 7463:1 7469:1 7497:1 7535:1 7539:2 7543:1 7552:1 7574:1 7589:1 7599:1 7602:1 7613:1 7628:1 7637:1 7648:1 7649:1 7659:1 7662:1 7671:3 7672:1 7676:1 7691:1 7705:4 7724:1 7741:1 7745:2 7748:1 7750:2 7766:1 7776:1 7792:1 7794:1 7822:1 7825:1 7855:1 7867:1 7879:3 7912:2 7913:1 7927:1 7949:1 7954:1 7956:1 7961:1 7984:1 7993:1 8007:2 8025:1 8027:2 8043:1 8045:1 8054:1 8064:1 8075:4 8089:2 8090:1 8105:1 8129:1 8139:1 8143:4 8150:1 8155:1 8167:1 8216:1 8230:1 8247:1 8258:2 8277:4 8299:1 8302:1 8328:2 8338:1 8340:1 8347:1 8387:1 8389:3 8413:1 8417:2 8426:1 8432:2 8454:1 8474:1 8478:1 8491:1 8494:1 8498:1 8499:1 8531:1 8560:1 8562:1 8570:1 8573:1 8575:1 8599:1 8609:4 8611:1 8615:1 8619:1 8624:5 8630:3 8631:4 8633:4 8653:1 8659:1 8663:1 8684:1 8688:2 8689:1 8702:33 8716:1 8725:1 8726:8 8728:5 8767:1 8783:1 8796:2 8810:1 8815:2 8864:1 8880:1 8886:1 8890:1 8891:1 8901:1 8909:1 8923:1 8932:2 8935:6 8957:1 8960:1 8974:1 8982:5 8992:1 9048:1 9059:1 9094:2 9127:1 9135:1 9143:1 9157:2 9168:2 9179:1 9186:1 9203:1 9221:2 9231:1 9232:14 9264:1 9267:1 9276:1 9279:1 9289:1 9298:1 9299:1 9324:1 9381:1 9394:1 9430:1 9441:1 9466:1 9470:1 9473:1 9507:2 9508:1 9540:2 9542:1 9544:2 9561:1 9563:1 9623:2 9632:1 9633:1 9634:1 9638:1 9640:1 9642:2 9644:1 9648:3 9649:1 9654:2 9661:1 9665:1 9697:2 9743:1 9746:1 9770:1 9781:1 9788:1 9806:1 9807:1 9810:1 9815:1 9823:1 9833:1 9836:1 9842:1 9882:1 9901:2 9907:1 9923:1 9931:1 9937:2 9942:1 9945:1 9974:1 9976:1 9988:1 9994:1 9999:1 10008:2 10015:1 10022:1 10027:3 10035:1 10070:1 10087:1 10092:1 10117:1 10121:1 10124:1 10138:1 10142:1 10150:2 10152:1 10161:1 10197:1 10209:2 10210:2 10275:1 10282:1 10291:1 10294:1 10307:2 10331:1 10332:1 10338:1 10340:1 10345:5 10349:1 10362:1 10367:1 10371:1 10373:1 10374:1 10376:1 10389:1 10407:1 10422:1 10430:1 10434:4 10436:1 10445:1 10450:1 10459:1 10465:1 10479:1 10497:1 10502:1 10517:1 10518:1 10522:2 10524:1 10540:1 10549:1 10554:1 10575:1 10583:1 10584:2 10591:1 10598:1 10602:1 10619:1 10621:1 10623:1 10627:1 10643:1 10648:1 10666:2 10695:1 10709:3 10732:1 10752:2 10764:1 10792:1 10800:1 10804:1 10806:1 10807:2 10822:1 10828:1 10846:1 10867:2 10877:1 10886:1 10892:1 10913:2 10948:6 10969:1 10970:1 10972:1 10973:2 11011:1 11020:1 11029:1 11030:1 11052:1 11063:1 11067:1 11079:1 11094:1 11119:2 11133:2 11141:1 11163:1 11170:2 11171:1 11172:1 11175:1 11178:1 11188:3 11200:1 11208:1 11210:2 11214:2 11218:1 11222:1 11226:1 11231:2 11232:1 11234:2 11242:2 11265:1 11266:1 11276:4 11288:1 11291:1 11302:1 11308:1 11309:1 11324:1 11331:1 11342:1 11376:6 11383:2 11433:1 11438:1 11445:1 11448:1 11450:1 11451:1 11456:1 11464:1 11488:1 11492:1 11499:1 11517:2 11573:1 11588:1 11594:1 11601:1 11603:1 11607:2 11611:2 11637:1 11656:1 11660:1 11674:1 11677:2 11690:1 11695:1 11697:1 11701:1 11717:1 11741:1 11744:1 11778:1 11784:3 11795:1 11796:1 11811:1 11820:1 11822:5 11841:1 11842:1 11846:1 11854:1 11855:1 11858:1 11860:1 11899:1 11906:3 11912:1 11914:2 11930:1 11933:1 11949:1 11955:1 11966:1 12002:1 12015:3 12023:1 12026:1 12039:3 12050:2 12099:1 12109:1 12154:1 12162:1 12169:2 12197:1 12214:1 12255:1 12274:1 12275:1 12307:2 12310:1 12319:1 12325:1 12327:3 12329:1 12333:1 12335:1 12336:4 12339:1 12352:2 12354:1 12356:1 12369:1 12377:1 12379:1 12406:1 12427:1 12434:1 12438:1 12448:1 12472:1 12477:1 12487:1 12551:1 12552:1 12580:1 12596:1 12618:3 12630:2 12640:1 12647:1 12741:1 12743:1 12762:1 12766:1 12775:1 12776:1 12805:1 12811:2 12814:2 12819:1 12836:1 12845:1 12862:1 12865:7 12876:1 12877:1 12893:1 12910:2 12915:1 12923:1 12928:2 12933:1 12935:1 12952:1 12954:1 12970:1 12977:1 12988:3 13000:1 13005:1 13015:1 13018:2 13027:1 13032:1 13050:2 13061:1 13064:1 13073:1 13085:2 13088:3 13089:2 13094:2 13111:1 13116:1 13128:6 13135:1 13138:2 13142:2 13148:1 13150:2 13151:6 13152:1 13153:1 13156:1 13162:5 13168:1 13196:1 13202:1 13220:2 13228:1 13231:1 13244:1 13254:1 13264:2 13285:1 13302:1 13308:1 13320:2 13365:1 13391:1 13408:1 13410:3 13415:1 13423:2 13427:1 13434:1 13443:1 13448:2 13456:1 13463:1 13473:3 13480:2 13515:2 13517:3 13527:1 13552:1 13553:2 13556:1 13590:1 13592:1 13600:1 13606:2 13608:1 13616:1 13621:1 13653:2 13654:1 13662:1 13674:1 13684:2 13685:3 13690:1 13700:1 13718:1 13738:1 13742:1 13750:2 13778:1 13805:1 13815:1 13821:2 13826:2 13830:1 13873:4 13895:2 13896:2 13899:1 13921:1 13933:1 13939:1 13940:1 14018:1 14021:1 14030:1 14039:1 14061:1 14102:1 14119:1 14146:1 14162:2 14183:2 14207:1 14210:1 14214:2 14242:1 14256:2 14267:1 14281:1 14318:2 14319:1 14341:1 14345:5 14353:1 14356:2 14361:1 14370:2 14376:1 14380:1 14384:1 14402:1 14416:1 14421:1 14436:1 14443:1 14449:1 14468:1 14471:1 14472:1 14473:3 14480:1 14483:1 14489:1 14497:1 14518:1 14520:1 14541:1 14545:1 14572:1 14577:1 14581:1 14583:1 14589:1 14592:1 14620:1 14633:1 14640:1 14652:1 14658:2 14688:1 14697:1 14753:1 14781:1 14793:5 14806:1 14831:1 14841:1 14854:2 14858:1 14859:1 14870:2 14873:1 14877:4 14881:4 14883:1 14891:1 14895:1 14896:1 14904:1 14907:6 14915:1 14935:2 14940:1 14949:2 14957:1 14958:1 14960:1 14975:1 14980:1 15005:1 15028:1 15033:2 15039:4 15040:1 15054:1 15066:1 15082:1 15087:1 15122:1 15125:2 15131:1 15161:1 15187:1 15191:1 15215:1 15217:5 15246:1 15251:1 15275:1 15278:1 15281:2 15293:1 15311:1 15322:1 15325:3 15333:1 15336:1 15374:1 15381:2 15429:1 15443:1 15476:1 15477:2 15480:1 15483:2 15487:1 15489:2 15496:1 15508:1 15513:1 15519:1 15543:1 15551:1 15574:1 15616:3 15622:1 15645:1 15662:1 15664:1 15666:2 15728:5 15734:4 15740:1 15780:1 15811:2 15820:2 15840:1 15855:1 15861:1 15900:1 15905:1 15923:1 15934:1 15959:1 15960:1 15962:1 15974:3 15986:1 15990:1 15996:2 15997:1 16000:3 16021:1 16030:1 16040:2 16042:1 16043:1 16046:1 16067:1 16092:1 16098:2 16145:1 16152:1 16178:2 16189:1 16197:1 16198:1 16214:1 16227:2 16229:1 16236:1 16237:1 16254:1 16270:1 16284:1 16289:1 16321:1 16330:4 16347:1 16350:1 16355:1 16362:1 16390:2 16393:2 16411:1 16422:1 16427:2 16428:1 16433:1 16448:1 16451:1 16457:1 16484:3 16508:3 16523:1 16534:1 16538:1 16559:1 16566:3 16598:1 16606:1 16608:1 16630:1 16634:1 16642:1 16650:1 16674:1 16684:5 16693:1 16694:1 16721:2 16723:1 16739:1 16753:1 16782:8 16783:1 16787:1 16789:1 16793:1 16832:3 16835:1 16846:2 16860:1 16884:2 16904:1 16936:3 16940:2 16942:1 16944:1 16971:2 16973:2 16988:3 16990:1 16999:1 17012:2 17042:1 17045:2 17046:1 17048:1 17053:2 17056:1 17063:1 17098:2 17105:1 17127:1 17140:1 17155:1 17176:1 17187:1 17194:1 17214:1 17219:1 17246:1 17251:1 17297:1 17318:1 17324:1 17370:1 17379:1 17406:1 17423:11 17437:1 17448:1 17479:1 17499:1 17514:1 17516:1 17528:1 17531:1 17539:1 17543:1 17567:1 17581:1 17586:1 17596:1 17598:1 17648:1 17661:3 17673:1 17681:1 17689:7 17695:1 17699:1 17700:2 17709:1 17710:3 17714:1 17715:1 17718:1 17729:2 17731:2 17740:1 17752:1 17758:1 17771:1 17775:2 17776:1 17784:2 17805:3 17824:1 17829:1 17830:2 17857:2 17860:1 17866:1 17871:1 17880:1 17884:1 17888:3 17953:3 17955:1 17989:1 18008:1 18049:2 18053:2 18074:3 18108:1 18111:1 18114:1 18141:1 18148:1 18157:3 18187:1 18195:5 18214:3 18226:1 18234:2 18236:1 18243:2 18258:1 18260:1 18273:1 18281:2 18302:1 18306:1 18308:2 18313:1 18315:1 18319:3 18321:2 18322:1 18327:1 18330:1 18332:2 18340:2 18341:1 18342:1 18352:2 18372:1 18375:1 18401:1 18416:1 18417:1 18492:2 18561:1 18584:1 18619:1 18635:2 18683:1 18697:1 18699:1 18702:1 18708:1 18717:1 18727:1 18732:1 18738:1 18739:2 18777:2 18785:1 18794:1 18799:2 18807:1 18821:1 18842:1 18896:1 18911:3 18919:3 18928:1 18966:1 18967:1 19000:1 19005:1 19024:1 19029:2 19043:1 19050:1 19059:2 19062:2 19069:2 19081:1 19089:2 19103:2 19135:1 19139:4 19155:1 19165:2 19182:1 19200:4 19208:1 19209:1 19216:1 19233:1 19248:2 19276:1 19320:6 19329:1 19351:1 19352:1 19357:3 19362:1 19398:1 19417:1 19443:1 19444:1 19448:1 19452:1 19465:1 19471:1 19503:1 19508:2 19509:1 19566:1 19583:1 19622:1 19628:1 19634:1 19643:1 19655:1 19663:2 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19758:1 19763:3 19772:4 19774:1 19776:1 19781:2 19783:1 19784:1 19794:1 19797:1 19809:1 19816:1 19843:2 19849:2 19850:1 19867:1 19872:1 19897:1 19904:1 19910:1 19919:1 19951:1 19962:1 19965:1 19966:1 20000:1 20007:2 20020:1 20045:1 20077:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:1 20123:2 20124:4 20128:2 20136:1 20146:1 20166:2 20174:1 20181:1 20183:1 20200:1 20202:1 20220:1 20225:1 20231:1 20237:1 20239:1 20241:1 20286:1 20287:1 20300:1 20309:2 20341:1 20360:1 20391:1 20394:1 20400:1 20405:1 20406:1 20407:1 20412:1 20416:1 20441:1 20460:1 20477:1 20492:2 20503:1 20516:1 20517:1 20524:1 20525:1 20540:1 20561:1 20569:1 20635:2 20645:1 20682:1 20692:1 20697:2 20706:1 20709:1 20742:3 20792:1 20803:7 20814:2 20815:1 20831:1 20851:1 20876:1 20893:1 20894:1 20895:1 20900:2 20929:1 20942:1 20949:1 20951:1 20970:1 20974:1 20983:3 20996:1 21004:1 21016:1 21041:1 21047:2407 21068:3 21079:2 21087:1 21096:1 21164:1 21173:2 21178:1 21205:1 21234:1 21241:1 21279:2 21291:1 21292:2 21295:1 21308:1 21355:1 21362:1 21372:1 21374:1 21382:1 21401:2 21431:1 21444:1 21449:1 21466:1 21478:1 21487:1 21512:1 21515:3 21518:1 21539:1 21551:1 21566:1 21571:1 21585:1 21601:1 21602:1 21644:1 21689:2 21709:2 21729:1 21735:3 21790:1 21802:1 21806:1 21808:1 21812:1 21813:1 21817:1 21821:1 21827:3 21861:2 21874:1 21877:1 21883:1 21895:2 21907:1 21918:1 21921:5 21952:1 21953:4 21961:1 21966:1 21976:1 21992:1 22020:3 22029:1 22041:1 22043:1 22045:1 22072:4 22082:1 22095:2 22107:1 22127:1 22138:1 22162:1 22173:3 22174:1 22178:3 22227:1 22235:1 22240:1 22262:1 22267:1 22271:1 22281:1 22294:1 22301:3 22306:1 22311:1 22318:1 22325:1 22344:1 22364:1 22370:1 22375:1 22382:1 22404:2 22415:1 22423:3 22459:1 22479:2 22483:1 22495:1 22503:2 22504:1 22508:1 22526:1 22540:1 22545:1 22548:2 22562:1 22565:2 22569:1 22572:1 22573:2 22586:1 22603:1 22615:1 22617:1 22626:3 22644:2 22681:3 22688:1 22690:1 22698:1 22713:1 22737:2 22740:1 22750:1 22766:1 22774:1 22791:1 22793:1 22815:3 22824:1 22829:1 22834:1 22837:1 22845:1 22852:1 22870:4 22877:2 22889:1 22954:1 22966:1 22984:2 22992:1 23002:1 23004:1 23005:1 23036:1 23046:1 23055:1 23059:1 23108:3 23113:1 23129:1 23147:1 23156:1 23160:4 23169:2 23172:1 23175:1 23183:1 23243:1 23257:1 23277:1 23279:1 23281:1 23288:1 23290:1 23353:1 23359:1 23363:1 23367:1 23390:1 23415:2 23416:1 23419:1 23444:3 23447:1 23456:1 23463:1 23490:4 23504:2 23518:1 23521:1 23523:1 23532:1 23544:2 23550:3 23556:1 23561:1 23570:1 23572:1 23580:2 23583:1 23612:1 23617:1 23622:1 23644:1 23649:1 23657:1 23658:1 23663:1 23669:2 23723:2 23729:1 23736:1 23745:3 23746:1 23751:1 23752:2 23756:1 23765:1 23773:1 23782:1 23790:1 23800:1 23802:2 23853:1 23858:1 23859:1 23861:1 23863:1 23898:1 23901:1 23917:1 23919:2 23927:1 23931:1 23943:1 23951:1 23953:2 23955:2 23985:1 23991:1 24009:1 24013:1 24024:4 24032:1 24039:1 24058:1 24074:1 24082:2 24090:1 24098:1 24099:1 24113:1 24114:1 24133:1 24143:1 24144:1 24151:1 24166:1 24168:1 24194:1 24195:1 24205:3 24206:1 24214:1 24217:1 24222:1 24226:2 24229:1 24250:1 24255:2 24262:2 24263:1 24274:1 24276:2 24289:1 24308:1 24314:1 24321:1 24323:1 24358:1 24359:2 24366:4 24368:1 24369:1 24373:1 24379:1 24383:1 24386:1 24417:1 24418:1 24425:1 24427:1 24449:1 24474:1 24477:1 24478:2 24493:5 24502:1 24504:1 24527:1 24542:3 24550:2 24578:1 24587:1 24601:2 24618:1 24636:1 24643:1 24650:2 24678:1 24681:1 24685:2 24687:1 24690:3 24692:2 24695:1 24698:1 24706:2 24727:1 24742:1 24775:1 24788:1 24792:1 24805:2 24840:1 24841:1 24847:1 24854:1 24857:1 24858:1 24887:1 24904:1 24907:1 24916:3 24921:1 24925:1 24933:3 24943:1 24959:1 24966:1 24969:1 24972:2 24974:1 25003:1 25011:1 25021:1 25027:1 25032:1 25036:1 25041:1 25077:2 25093:1 25115:2 25127:1 25133:1 25134:1 25139:2 25156:3 25167:3 25170:1 25184:1 25189:1 25197:1 25224:4 25233:3 25245:2 25300:1 25306:3 25337:2 25356:1 25357:1 25364:2 25367:4 25369:1 25416:1 25423:1 25434:2 25454:1 25464:1 25474:2 25494:5 25508:1 25510:1 25513:2 25526:2 25545:3 25548:1 25552:3 25557:1 25561:2 25562:1 25569:1 25582:1 25595:2 25600:1 25621:1 25624:1 25635:4 25646:1 25659:3 25662:1 25666:1 25669:4 25674:3 25678:2 25713:1 25724:1 25732:1 25841:1 25865:2 25878:1 25884:1 25897:1 25916:1 25920:1 25967:1 26002:3 26017:1 26019:3 26025:1 26032:1 26035:1 26036:1 26046:1 26056:4 26062:1 26073:1 26084:1 26088:1 26110:2 26133:1 26150:1 26158:1 26188:1 26195:1 26218:1 26223:1 26239:1 26243:1 26253:1 26263:2 26269:1 26270:2 26278:1 26279:1 26286:2 26320:1 26324:1 26328:1 26329:2 26331:1 26354:2 26364:1 26390:1 26403:1 26407:1 26423:2 26434:1 26435:1 26437:2 26442:1 26445:1 26459:1 26482:1 26488:1 26490:2 26502:3 26530:1 26549:1 26550:1 26557:2 26565:1 26581:1 26582:1 26584:1 26605:1 26606:1 26646:2 26665:1 26675:1 26679:1 26689:3 26705:1 26718:1 26726:1 26729:1 26768:1 26794:1 26839:1 26872:2 26873:1 26879:1 26897:1 26898:1 26932:1 26954:1 26966:1 26967:1 26977:1 26979:1 26991:1 27020:2 27049:1 27063:1 27065:2 27075:2 27076:1 27100:3 27105:1 27115:2 27116:1 27133:1 27134:1 27144:3 27151:1 27182:1 27186:1 27196:2 27198:1 27211:1 27222:1 27223:1 27226:1 27227:5 27231:1 27233:1 27247:1 27265:1 27280:1 27299:3 27300:1 27305:2 27335:1 27336:2 27351:1 27357:1 27358:1 27365:1 27376:1 27383:1 27408:2 27412:1 27429:2 27436:2 27460:1 27466:1 27470:3 27471:3 27479:1 27483:1 27484:1 27486:1 27487:4 27489:2 27490:2 27496:1 27498:1 27508:2 27511:1 27519:1 27527:2 27530:3 27539:3 27580:2 27603:1 27612:1 27622:1 27654:1 27655:2 27661:1 27664:2 27674:1 27681:1 27683:1 27687:1 27689:1 27691:2 27692:1 27705:1 27711:1 27713:1 27754:1 27797:10 27798:1 27799:1 27821:6 27835:1 27839:2 27858:1 27864:1 27871:1 27876:3 27890:1 27892:1 27912:2 27915:3 27986:2 27994:1 28003:1 28024:1 28030:1 28046:1 28064:1 28065:1 28074:1 28082:1 28094:1 28101:1 28110:1 28113:2 28115:1 28133:1 28209:1 28275:1 28293:1 28294:1 28303:1 28308:1 28319:2 28348:3 28349:4 28369:1 28382:6 28384:1 28393:1 28397:1 28401:1 28402:1 28413:1 28424:2 28425:1 28430:1 28501:1 28527:1 28533:2 28536:1 28593:1 28614:3 28632:2 28635:3 28643:1 28658:1 28670:2 28673:1 28674:1 28685:1 28694:2 28722:1 28730:1 28731:1 28736:1 28759:2 28773:1 28776:1 28787:1 28803:2 28809:1 28833:1 28847:1 28884:1 28926:1 28944:1 28948:3 28966:1 28969:2 28976:1 28995:1 29005:2 29012:2 29032:1 29042:1 29136:1 29137:1 29149:1 29152:2 29211:1 29225:1 29226:1 29233:1 29241:1 29263:2 29277:1 29279:2 29283:1 29287:1 29290:1 29298:2 29305:1 29313:1 29330:1 29339:1 29342:1 29345:1 29346:1 29349:1 29351:1 29356:1 29359:1 29421:4 29433:1 29448:1 29474:1 29483:1 29485:1 29496:1 29515:8 29521:2 29529:1 29535:1 29547:1 29559:1 29562:1 29567:1 29570:1 29583:1 29605:2 29612:1 29623:1 29632:1 29643:2 29654:1 29676:3 29702:1 29704:3 29711:1 29721:1 29724:1 29728:1 29729:1 29735:1 29745:1 29775:1 29783:1 29800:1 29820:2 29826:1 29831:2 29839:1 29841:1 29845:1 29847:1 29899:1 29904:1 29916:1 29958:3 29969:1 29971:1 29974:3 29977:1 29995:1 29999:1 30002:1 30035:1 30040:1 30044:1 30052:1 30059:1 30100:1 30105:1 30142:1 30149:2 30156:2 30168:1 30191:1 30199:1 30213:2 30231:4 30249:1 30267:1 30285:1 30297:1 30305:1 30306:1 30315:1 30327:1 30330:1 30331:2 30342:1 30357:1 30370:1 30380:4 30393:1 30420:1 30431:1 30445:1 30471:1 30475:3 30501:1 30504:3 30507:1 30510:2 30532:1 30548:1 30552:1 30572:2 30587:4 30589:3 30602:1 30638:1 30653:1 30660:1 30663:1 30664:3 30685:1 30689:2 30697:1 30704:4 30710:1 30718:2 30775:1 30776:1 30789:1 30798:5 30802:2 30805:2 30809:2 30834:1 30835:1 30843:4 30846:1 30854:2 30864:1 30867:1 30868:2 30869:1 30875:1 30880:1 30883:1 30884:1 30892:1 30895:1 30908:2 30956:2 30967:1 30968:1 30971:2 30977:1 30994:2 30999:1 31009:1 31019:1 31020:1 31042:1 31046:3 31057:2 31062:1 31065:1 31107:1 31125:1 31130:1 31142:2 31144:1 31158:1 31161:1 31172:1 31184:1 31191:1 31195:1 31206:1 31209:1 31216:7 31227:1 31306:1 31315:1 31322:1 31324:1 31360:1 31363:1 31370:2 31391:1 31392:3 31398:1 31404:1 31422:2 31440:2 31448:1 31452:3 31459:1 31461:2 31463:1 31478:1 31484:2 31485:3 31494:1 31531:4 31538:1 31543:1 31547:1 31554:1 31566:1 31576:1 31590:1 31622:1 31625:1 31635:1 31640:1 31649:1 31665:14 31667:2 31670:1 31674:2 31680:3 31686:1 31688:2 31704:6 31721:3 31730:1 31750:1 31761:3 31763:1 31783:1 31790:1 31827:2 31834:3 31846:1 31853:1 31877:4 31897:1 31910:1 31921:1 31932:1 31938:2 31952:1 31954:1 31960:1 31962:1 31974:1 31998:2 32009:1 32027:1 32035:2 32041:1 32047:1 32070:1 32083:1 32085:1 32105:2 32117:1 32125:1 32140:1 32142:1 32153:1 32172:2 32181:1 32201:1 32207:1 32229:1 32241:3 32244:4 32277:1 32280:2 32299:1 32303:1 32304:1 32312:1 32319:1 32348:1 32403:1 32407:1 32433:1 32443:2 32447:1 32451:1 32456:1 32471:4 32476:1 32491:2 32499:1 32551:1 32552:2 32579:1 32619:1 32625:1 32651:1 32656:2 32660:1 32661:1 32693:1 32713:3 32719:1 32722:1 32724:1 32750:2 32791:1 32795:1 32803:1 32818:1 32824:1 32834:1 32846:1 32885:1 32899:1 32900:1 32910:2 32941:2 32944:3 32956:1 32963:1 33001:2 33019:1 33038:1 33041:4 33056:3 33059:1 33075:1 33084:1 33108:1 33115:1 33133:1 33138:1 33141:3 33143:2 33146:1 33148:2 33149:1 33155:5 33164:1 33167:4 33168:1 33171:4 33211:1 33220:1 33224:1 33225:1 33226:1 33232:1 33234:2 33267:1 33271:1
11 1:1 2:1 6:1 27:1 31:1 34:1 39:1 55:1 60:2 67:1 85:1 86:1 93:1 95:1 99:2 148:1 150:1 159:1 166:1 170:1 181:1 183:1 187:2 232:1 238:4 256:1 265:1 282:1 283:1 294:2 296:2 313:1 362:1 401:1 402:1 403:4 411:2 446:1 455:1 498:1 507:8 513:1 523:1 546:2 582:2 586:1 621:1 627:1 646:1 654:1 698:1 712:1 717:3 721:1 731:5 745:1 753:1 759:2 764:3 765:1 766:1 774:1 790:1 795:1 807:1 808:1 815:2 866:2 937:1 955:1 956:1 971:2 974:1 979:1 984:1 1003:2 1022:3 1049:1 1053:1 1057:1 1067:2 1069:1 1070:1 1071:3 1073:1 1083:1 1094:1 1103:1 1106:1 1118:1 1125:1 1127:1 1130:5 1132:1 1134:1 1141:2 1144:1 1158:1 1161:1 1168:1 1204:1 1211:1 1220:1 1236:3 1239:1 1244:1 1257:1 1262:1 1284:1 1311:2 1316:1 1318:1 1321:1 1351:1 1376:1 1378:1 1388:1 1392:1 1393:1 1403:1 1405:1 1413:1 1415:1 1421:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:1 1465:1 1480:1 1481:1 1487:1 1496:2 1504:1 1509:1 1514:1 1539:1 1545:1 1547:1 1588:2 1624:1 1626:2 1635:1 1650:1 1658:1 1664:3 1683:2 1686:1 1690:2 1691:1 1719:1 1726:4 1730:8 1739:10 1745:1 1747:1 1749:1 1751:2 1793:1 1807:1 1808:1 1837:3 1839:3 1869:1 1878:2 1883:5 1892:1 1899:1 1906:2 1917:3 1943:1 1948:1 1955:1 1957:1 1963:1 1966:1 1977:1 1980:1 1999:1 2003:1 2019:1 2037:1 2061:1 2062:1 2073:2 2078:1 2098:1 2113:1 2118:1 2119:1 2133:3 2135:1 2136:1 2137:2 2138:2 2141:1 2157:1 2158:1 2169:1 2177:2 2180:1 2195:4 2214:1 2223:1 2237:1 2241:1 2246:1 2249:2 2255:1 2263:1 2269:1 2279:1 2284:2 2301:1 2317:1 2322:1 2348:1 2355:1 2372:1 2373:3 2381:1 2397:1 2399:1 2421:1 2422:1 2437:1 2441:1 2482:5 2496:1 2502:3 2508:1 2521:1 2525:1 2529:1 2530:1 2547:1 2551:2 2552:1 2553:1 2555:4 2558:4 2562:1 2563:1 2570:1 2573:1 2576:2 2578:2 2579:3 2583:1 2587:1 2613:1 2616:1 2618:3 2620:1 2623:2 2624:2 2625:2 2626:1 2630:1 2631:3 2634:2 2635:2 2640:2 2642:2 2647:4 2648:1 2652:1 2657:3 2662:2 2663:1 2681:1 2720:1 2739:1 2753:1 2774:1 2784:1 2801:1 2821:1 2831:1 2832:1 2864:1 2867:1 2868:1 2878:1 2888:1 2890:1 2896:1 2905:2 2918:2 2934:1 2951:1 2955:1 2962:1 2964:1 2985:1 2993:1 3008:1 3033:1 3039:1 3042:1 3049:1 3051:1 3059:1 3071:1 3080:4 3097:1 3098:1 3106:5 3116:2 3121:1 3134:2 3145:1 3157:1 3165:3 3171:1 3173:1 3182:2 3193:1 3197:1 3201:1 3213:1 3257:1 3263:2 3283:1 3284:7 3291:1 3294:1 3295:7 3302:2 3314:1 3318:1 3336:4 3350:2 3351:1 3352:1 3353:8 3360:1 3364:2 3369:1 3377:1 3379:1 3386:1 3397:1 3408:1 3411:2 3418:2 3433:2 3464:1 3474:1 3475:1 3482:1 3504:1 3517:1 3529:1 3539:1 3549:1 3550:1 3578:2 3588:1 3625:1 3645:1 3646:1 3683:1 3690:1 3702:2 3726:1 3744:1 3755:1 3758:1 3769:1 3772:1 3799:1 3816:1 3821:1 3822:2 3853:1 3857:2 3868:1 3917:1 3926:1 3930:2 3936:1 3939:1 3942:2 3945:1 3951:1 3968:1 3974:1 3990:1 4005:1 4011:1 4012:1 4018:1 4033:1 4035:2 4040:1 4047:3 4074:1 4105:1 4122:1 4160:4 4174:2 4193:2 4195:1 4245:1 4247:2 4252:2 4253:9 4267:1 4271:1 4279:1 4288:4 4289:3 4291:1 4292:1 4303:1 4306:4 4308:1 4332:4 4334:1 4351:3 4378:1 4382:1 4454:1 4470:1 4477:1 4484:1 4488:1 4510:1 4511:1 4529:1 4531:2 4533:1 4536:3 4540:1 4545:3 4547:1 4573:1 4574:1 4575:1 4581:2 4609:1 4628:2 4637:1 4663:1 4667:1 4684:1 4714:1 4727:1 4728:1 4730:1 4763:5 4767:4 4773:1 4785:1 4792:1 4793:4 4824:2 4842:2 4863:1 4872:5 4888:2 4906:1 4907:1 4933:1 4936:2 4959:1 4974:1 4989:1 4991:1 5000:1 5020:1 5022:1 5025:1 5033:2 5045:2 5066:1 5072:1 5082:1 5098:1 5106:1 5136:2 5143:5 5162:1 5163:1 5168:1 5171:1 5198:1 5212:1 5239:1 5246:3 5269:1 5287:3 5299:1 5312:1 5340:5 5365:1 5369:3 5397:1 5462:1 5471:1 5490:1 5516:1 5562:27 5564:2 5596:1 5610:1 5671:1 5689:1 5690:3 5717:2 5718:6 5719:3 5720:1 5722:1 5725:2 5730:1 5731:3 5735:1 5740:1 5744:1 5750:5 5752:3 5763:1 5766:1 5770:1 5781:1 5811:1 5814:2 5844:1 5853:1 5855:1 5868:1 5873:1 5898:1 5965:3 6027:1 6038:1 6084:2 6089:1 6108:1 6115:1 6124:1 6144:3 6150:3 6165:2 6169:1 6181:1 6186:1 6224:1 6233:1 6237:1 6283:1 6284:1 6292:1 6299:1 6300:1 6305:3 6319:3 6322:1 6327:1 6328:1 6335:3 6345:1 6372:2 6385:1 6388:1 6391:2 6395:1 6397:2 6400:1 6407:1 6412:1 6418:2 6428:1 6431:1 6435:1 6459:6 6469:1 6480:4 6496:1 6506:1 6508:2 6509:2 6529:1 6531:1 6537:1 6540:1 6547:1 6548:1 6558:4 6581:3 6584:1 6610:1 6624:1 6688:4 6692:2 6699:1 6706:1 6707:1 6750:1 6776:1 6793:1 6795:1 6806:1 6816:1 6819:2 6843:1 6847:3 6884:1 6888:1 6890:2 6897:4 6944:1 6961:6 6980:1 6994:1 7012:1 7025:1 7038:1 7044:1 7059:1 7062:1 7066:1 7081:1 7087:1 7088:3 7089:1 7090:1 7101:1 7114:2 7132:1 7150:1 7190:2 7192:1 7193:1 7196:1 7197:1 7200:3 7201:1 7204:3 7207:3 7209:1 7210:1 7211:2 7217:1 7218:8 7221:1 7222:3 7258:1 7272:1 7279:1 7303:1 7306:1 7307:1 7381:1 7389:1 7406:1 7410:1 7429:1 7435:2 7439:1 7463:1 7469:1 7497:1 7535:1 7539:2 7543:1 7552:1 7574:1 7589:1 7599:1 7602:1 7613:1 7628:1 7637:1 7648:1 7649:1 7659:1 7662:1 7671:3 7672:1 7676:1 7691:1 7705:4 7724:1 7741:1 7745:2 7748:1 7750:2 7766:1 7776:1 7792:1 7794:1 7822:1 7825:1 7839:1 7855:1 7867:1 7879:3 7912:2 7913:1 7927:1 7949:1 7954:1 7956:1 7961:1 7984:1 7993:1 8007:2 8025:1 8027:2 8043:1 8045:1 8054:1 8064:1 8075:5 8089:2 8090:1 8105:1 8129:1 8139:1 8143:4 8150:1 8155:1 8167:1 8216:1 8230:1 8247:1 8258:2 8277:4 8299:1 8302:1 8328:2 8338:1 8340:1 8347:1 8387:1 8389:3 8413:1 8417:2 8426:1 8432:2 8454:1 8474:1 8478:1 8491:1 8494:1 8498:1 8499:1 8531:1 8560:1 8562:1 8570:1 8573:1 8575:1 8599:1 8609:4 8611:1 8615:1 8619:1 8624:5 8630:3 8631:4 8633:4 8653:1 8659:1 8663:1 8684:1 8688:2 8689:1 8702:33 8716:1 8725:1 8726:9 8728:5 8767:1 8783:1 8796:2 8810:1 8815:2 8864:1 8880:1 8886:1 8890:1 8891:1 8901:1 8909:1 8923:1 8932:2 8935:6 8957:1 8960:1 8974:1 8982:5 8992:1 9048:1 9059:1 9094:2 9127:1 9135:1 9143:1 9157:3 9168:2 9179:1 9186:1 9203:1 9221:2 9231:1 9232:14 9264:1 9267:1 9276:1 9279:1 9289:1 9298:1 9299:1 9324:1 9381:1 9394:1 9430:1 9441:1 9466:1 9470:1 9473:1 9484:1 9493:1 9507:2 9508:1 9540:2 9542:1 9544:2 9561:1 9563:1 9623:2 9632:1 9633:1 9634:2 9638:1 9640:1 9642:2 9644:2 9648:3 9649:1 9654:2 9661:1 9665:1 9697:2 9743:1 9746:1 9770:1 9781:1 9788:1 9806:1 9807:1 9810:1 9815:1 9823:1 9833:1 9836:1 9842:1 9882:1 9901:3 9907:1 9923:1 9931:1 9937:2 9942:1 9945:1 9974:1 9976:1 9988:1 9994:1 9999:1 10008:2 10015:1 10022:1 10027:3 10035:1 10070:1 10087:1 10092:1 10117:1 10121:1 10124:1 10138:1 10142:1 10150:2 10152:1 10161:2 10197:1 10209:2 10210:2 10275:1 10282:1 10291:1 10294:1 10307:2 10331:1 10332:1 10338:1 10340:1 10345:5 10349:1 10362:1 10367:1 10371:1 10373:1 10374:1 10376:1 10389:1 10407:1 10422:1 10430:1 10434:4 10436:1 10445:1 10450:1 10459:1 10465:1 10479:1 10497:1 10502:1 10517:1 10518:1 10522:2 10524:1 10540:1 10549:1 10554:1 10575:1 10583:1 10584:2 10591:1 10598:1 10602:1 10619:1 10621:1 10623:1 10627:1 10643:2 10648:1 10666:2 10695:1 10709:3 10732:1 10752:2 10764:1 10792:1 10800:1 10804:1 10806:1 10807:2 10822:1 10828:1 10846:1 10867:2 10877:1 10886:1 10892:1 10913:2 10948:6 10969:1 10970:1 10972:1 10973:2 11011:1 11020:1 11029:1 11030:1 11052:1 11063:1 11067:1 11079:1 11094:1 11119:2 11133:2 11141:1 11163:2 11170:2 11171:1 11172:1 11175:1 11178:1 11188:3 11200:1 11208:1 11210:2 11214:2 11218:1 11222:1 11226:1 11231:2 11232:1 11234:2 11242:2 11265:1 11266:1 11276:4 11288:1 11291:1 11302:1 11308:1 11309:1 11324:1 11331:1 11342:1 11376:6 11383:2 11431:1 11433:1 11438:1 11445:1 11448:1 11450:1 11451:1 11456:1 11464:1 11488:1 11492:1 11499:1 11517:2 11573:1 11588:1 11594:1 11601:1 11603:1 11607:2 11611:3 11637:1 11656:1 11660:1 11674:1 11677:2 11690:1 11695:1 11697:1 11701:1 11717:1 11741:1 11744:1 11778:1 11784:4 11795:1 11796:1 11811:1 11820:1 11822:6 11841:1 11842:1 11846:1 11854:1 11855:1 11858:1 11860:1 11899:1 11906:3 11912:1 11914:2 11930:1 11931:1 11933:1 11949:1 11955:1 11966:1 12002:1 12015:3 12023:1 12026:1 12031:1 12039:3 12050:2 12099:1 12109:1 12154:1 12162:1 12169:2 12197:1 12214:1 12255:1 12266:1 12274:1 12275:1 12307:2 12310:1 12319:1 12325:1 12327:3 12329:1 12333:1 12335:1 12336:4 12339:1 12352:2 12354:1 12356:1 12369:1 12377:1 12379:1 12406:1 12427:1 12434:1 12438:1 12448:1 12472:1 12477:1 12487:1 12551:1 12552:1 12580:1 12596:1 12618:4 12630:2 12640:1 12647:1 12741:1 12743:1 12762:1 12766:1 12775:1 12776:1 12805:1 12811:3 12814:2 12819:1 12836:1 12845:1 12862:1 12865:7 12876:1 12877:1 12893:1 12910:2 12915:1 12923:1 12928:2 12933:1 12935:1 12952:1 12954:1 12970:1 12977:1 12988:3 13000:1 13005:1 13015:1 13018:2 13027:1 13032:1 13050:2 13061:1 13064:1 13073:1 13085:2 13088:3 13089:2 13094:2 13111:1 13116:1 13128:6 13135:1 13138:2 13142:2 13148:1 13150:2 13151:6 13152:1 13153:1 13156:1 13162:5 13168:1 13196:1 13202:1 13220:2 13228:1 13231:1 13244:1 13254:1 13264:2 13285:1 13302:1 13308:1 13320:3 13365:1 13391:1 13408:1 13410:3 13415:1 13423:2 13427:1 13434:1 13443:1 13448:2 13456:1 13461:1 13463:1 13473:3 13480:2 13515:2 13517:3 13527:1 13552:1 13553:2 13556:1 13590:1 13592:1 13600:1 13606:2 13608:1 13611:1 13616:1 13621:1 13653:2 13654:1 13662:1 13674:1 13684:2 13685:3 13690:1 13700:1 13718:1 13738:1 13742:1 13750:2 13778:1 13805:1 13815:1 13821:2 13826:2 13830:1 13873:4 13895:2 13896:2 13899:1 13921:1 13933:1 13939:1 13940:1 14018:1 14021:1 14030:1 14037:1 14039:1 14061:1 14102:2 14119:1 14146:1 14162:2 14183:2 14207:1 14210:1 14214:2 14242:1 14256:2 14267:1 14281:1 14318:2 14319:1 14341:1 14345:5 14353:1 14356:2 14361:1 14370:2 14376:1 14380:1 14384:1 14402:1 14410:1 14416:1 14421:1 14436:1 14443:1 14449:1 14468:1 14471:1 14472:1 14473:3 14480:1 14483:1 14489:1 14497:1 14518:1 14520:1 14541:1 14545:1 14572:1 14577:1 14581:1 14583:1 14589:1 14592:1 14620:1 14633:1 14640:1 14652:1 14658:2 14688:1 14697:1 14753:1 14781:1 14793:5 14806:1 14831:1 14841:1 14854:2 14858:1 14859:1 14870:2 14873:1 14877:4 14881:4 14883:1 14891:1 14895:1 14896:1 14904:2 14907:6 14915:1 14921:2 14935:2 14940:1 14949:2 14957:1 14958:1 14960:1 14975:2 14980:1 14999:1 15005:1 15019:1 15028:1 15033:2 15039:5 15040:1 15054:1 15066:1 15082:1 15087:1 15122:1 15125:2 15131:1 15161:1 15187:1 15191:1 15215:1 15217:5 15246:1 15251:1 15275:1 15278:1 15281:2 15293:1 15311:1 15322:1 15325:3 15333:1 15336:1 15374:1 15381:2 15386:1 15429:1 15443:1 15476:1 15477:2 15480:1 15483:2 15487:1 15489:2 15496:1 15508:1 15513:1 15519:1 15543:1 15551:1 15574:1 15616:4 15622:1 15625:1 15645:1 15662:1 15664:1 15666:2 15728:5 15734:4 15740:1 15780:1 15811:2 15820:2 15840:1 15855:1 15861:1 15900:1 15905:1 15923:1 15934:1 15959:1 15960:1 15962:1 15974:3 15986:1 15990:1 15993:1 15996:2 15997:1 16000:3 16021:1 16030:1 16040:2 16042:1 16043:1 16046:1 16067:1 16092:1 16098:2 16145:1 16152:1 16178:2 16189:1 16197:1 16198:1 16214:1 16227:2 16229:1 16236:1 16237:1 16254:1 16270:1 16284:1 16289:1 16321:1 16330:4 16347:1 16350:2 16355:1 16362:1 16390:2 16393:2 16411:1 16422:1 16427:2 16428:1 16433:1 16448:1 16451:1 16457:1 16484:3 16508:3 16523:1 16534:1 16538:1 16559:2 16566:3 16598:1 16606:1 16608:1 16630:1 16634:1 16642:1 16650:1 16674:1 16684:5 16693:1 16694:1 16721:2 16723:1 16739:1 16753:1 16782:8 16783:1 16787:1 16789:1 16793:1 16832:3 16835:1 16846:2 16860:1 16884:2 16904:1 16936:3 16940:2 16942:1 16944:1 16971:3 16973:2 16988:3 16990:1 16999:1 17012:2 17042:1 17045:2 17046:1 17048:1 17053:2 17056:1 17063:1 17098:2 17105:1 17127:1 17140:1 17155:1 17176:1 17187:1 17194:2 17214:1 17219:1 17246:1 17251:1 17269:1 17297:1 17318:1 17324:1 17370:1 17379:1 17389:1 17406:1 17423:12 17437:1 17448:1 17479:1 17499:1 17514:1 17516:1 17528:1 17531:1 17539:1 17543:1 17567:1 17581:1 17586:2 17596:1 17598:1 17648:1 17661:3 17673:1 17681:1 17689:8 17695:1 17699:1 17700:2 17709:1 17710:3 17714:1 17715:1 17718:1 17729:2 17731:2 17740:1 17752:1 17758:1 17771:1 17775:2 17776:1 17784:2 17805:3 17824:1 17829:1 17830:2 17857:2 17860:1 17866:1 17871:1 17880:1 17884:1 17888:3 17953:4 17955:1 17989:1 18008:1 18049:2 18053:2 18074:4 18108:1 18111:1 18114:1 18141:1 18148:1 18157:3 18187:1 18195:6 18214:3 18226:1 18234:2 18236:1 18243:2 18258:1 18260:1 18273:1 18281:2 18302:1 18306:1 18308:2 18313:1 18315:1 18319:3 18321:2 18322:1 18327:1 18330:1 18332:2 18340:2 18341:1 18342:1 18352:2 18372:1 18375:1 18401:1 18416:1 18417:1 18492:2 18527:1 18561:1 18584:1 18619:1 18635:2 18683:1 18697:1 18699:1 18702:1 18708:1 18717:1 18727:1 18732:1 18738:1 18739:2 18777:2 18785:1 18794:1 18799:2 18807:1 18821:1 18842:1 18896:1 18911:3 18919:3 18928:1 18966:1 18967:1 19000:1 19005:1 19024:1 19029:3 19043:1 19050:1 19059:3 19062:2 19069:2 19081:1 19089:2 19103:2 19108:1 19135:1 19139:4 19155:1 19165:3 19182:1 19200:4 19208:1 19209:1 19216:1 19233:1 19248:2 19276:1 19320:6 19329:1 19351:1 19352:1 19357:3 19362:1 19398:1 19417:1 19443:1 19444:1 19448:1 19452:1 19465:1 19471:1 19503:1 19508:2 19509:1 19566:1 19583:1 19622:1 19628:1 19634:1 19643:1 19655:1 19663:2 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19758:1 19763:3 19772:4 19774:1 19776:1 19781:2 19783:1 19784:1 19794:1 19797:1 19809:1 19816:1 19843:2 19849:2 19850:1 19867:1 19872:1 19897:1 19904:1 19910:1 19919:1 19936:1 19951:1 19962:1 19965:1 19966:1 20000:1 20007:2 20020:1 20045:1 20077:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:1 20123:2 20124:4 20128:2 20136:1 20142:1 20146:1 20166:2 20174:1 20180:1 20181:1 20183:1 20200:1 20202:1 20220:1 20225:1 20231:1 20237:1 20239:1 20241:1 20286:1 20287:1 20300:1 20309:2 20341:1 20360:1 20391:1 20394:1 20400:1 20405:1 20406:1 20407:1 20412:1 20416:1 20441:1 20460:1 20477:1 20492:2 20503:1 20516:1 20517:1 20524:1 20525:1 20540:1 20561:1 20569:1 20635:2 20645:1 20682:1 20692:1 20697:2 20706:1 20709:1 20742:3 20792:1 20803:7 20814:2 20815:2 20831:1 20851:1 20876:1 20893:1 20894:1 20895:1 20900:2 20929:1 20942:1 20949:1 20951:1 20970:1 20974:1 20983:3 20996:1 21003:1 21004:1 21016:1 21041:1 21047:2515 21068:3 21079:2 21087:1 21096:1 21164:1 21173:2 21178:1 21205:1 21234:1 21241:1 21279:2 21291:1 21292:2 21295:1 21308:1 21355:1 21362:1 21372:1 21374:1 21382:1 21401:2 21431:1 21444:1 21449:1 21466:1 21478:1 21487:1 21512:1 21515:3 21518:1 21539:1 21551:1 21566:1 21571:1 21585:1 21601:1 21602:1 21644:1 21689:2 21709:2 21729:1 21735:3 21790:1 21802:1 21806:1 21808:1 21812:1 21813:1 21817:1 21821:1 21827:3 21856:1 21861:2 21874:1 21877:1 21883:1 21895:2 21907:1 21918:1 21921:5 21952:1 21953:4 21961:1 21966:1 21976:1 21992:1 22020:3 22025:1 22029:1 22041:1 22043:1 22045:2 22072:4 22082:1 22095:2 22107:1 22127:1 22138:1 22162:1 22173:3 22174:1 22178:3 22227:1 22235:1 22240:1 22245:2 22262:1 22267:1 22271:1 22281:1 22294:1 22301:3 22306:1 22311:1 22318:1 22325:1 22344:1 22351:1 22364:1 22370:1 22375:1 22382:1 22404:2 22415:1 22423:3 22459:1 22479:2 22483:1 22495:1 22503:2 22504:1 22508:1 22526:2 22530:1 22540:1 22545:1 22548:2 22562:1 22565:2 22569:1 22572:1 22573:2 22586:1 22603:1 22615:1 22617:1 22626:3 22644:2 22681:3 22688:1 22690:1 22698:1 22713:1 22737:2 22740:1 22750:1 22766:1 22774:1 22791:1 22793:1 22815:3 22824:1 22829:1 22834:1 22837:1 22845:1 22852:1 22870:4 22877:2 22889:2 22954:1 22966:1 22984:2 22992:1 23002:1 23004:1 23005:1 23036:1 23046:1 23055:1 23059:1 23100:1 23108:3 23113:1 23129:1 23147:1 23156:1 23160:4 23169:2 23172:1 23175:1 23183:1 23243:1 23257:1 23277:1 23279:1 23281:1 23288:1 23290:1 23353:1 23359:1 23363:1 23367:1 23390:1 23415:2 23416:1 23419:1 23444:4 23447:1 23456:1 23463:1 23490:4 23504:2 23518:1 23521:1 23523:1 23532:1 23544:2 23550:3 23556:1 23561:1 23570:1 23572:1 23580:2 23583:1 23612:1 23617:1 23622:1 23644:1 23649:1 23656:1 23657:1 23658:1 23663:1 23669:2 23723:2 23729:1 23736:1 23745:4 23746:1 23751:1 23752:2 23756:1 23765:1 23773:1 23782:1 23790:1 23800:1 23802:2 23852:1 23853:1 23858:1 23859:1 23861:1 23863:1 23898:1 23901:1 23917:1 23919:2 23927:1 23931:1 23943:1 23951:1 23953:2 23955:2 23985:1 23991:1 24009:1 24013:1 24024:4 24032:1 24039:1 24058:1 24074:1 24082:2 24090:1 24098:1 24099:1 24113:1 24114:1 24133:1 24143:1 24144:1 24151:1 24166:1 24168:1 24194:1 24195:1 24205:3 24206:1 24208:1 24214:1 24217:1 24222:1 24226:2 24229:1 24250:1 24255:2 24262:2 24263:1 24274:1 24276:2 24289:1 24308:1 24314:1 24321:1 24323:1 24358:1 24359:2 24366:4 24368:1 24369:1 24373:1 24379:1 24383:2 24386:1 24394:1 24417:1 24418:1 24425:1 24427:1 24449:1 24474:1 24477:1 24478:2 24493:6 24502:1 24504:1 24527:1 24542:3 24550:2 24578:1 24587:1 24601:2 24618:1 24636:1 24639:1 24643:1 24650:3 24660:1 24678:1 24681:1 24685:3 24687:1 24690:3 24692:2 24695:1 24698:1 24706:2 24727:1 24742:1 24775:1 24788:1 24792:1 24805:2 24840:1 24841:1 24847:1 24854:1 24857:1 24858:1 24887:1 24904:1 24907:1 24916:3 24921:1 24925:1 24933:3 24943:1 24959:1 24966:1 24969:1 24972:2 24974:1 25003:1 25011:1 25021:1 25027:1 25032:1 25036:1 25041:1 25077:2 25093:1 25115:2 25127:1 25133:1 25134:1 25139:2 25156:3 25167:3 25170:1 25173:1 25184:1 25189:1 25197:1 25224:5 25233:3 25245:2 25300:1 25306:3 25337:2 25356:1 25357:1 25364:2 25367:4 25369:1 25416:1 25423:1 25434:2 25454:1 25464:1 25474:2 25494:5 25508:1 25510:1 25513:2 25516:2 25526:2 25545:4 25548:1 25552:4 25557:1 25561:3 25562:1 25569:1 25582:1 25590:1 25595:2 25600:1 25621:1 25624:1 25635:4 25646:1 25659:3 25662:1 25666:1 25669:4 25674:3 25678:2 25713:1 25724:1 25732:1 25841:1 25865:2 25878:1 25884:1 25897:1 25916:1 25920:1 25967:1 26002:3 26017:1 26019:3 26025:1 26032:1 26035:1 26036:1 26046:1 26056:4 26062:1 26073:1 26084:1 26088:1 26110:2 26133:1 26150:1 26158:1 26188:1 26195:1 26218:1 26223:1 26239:1 26243:1 26253:1 26255:1 26263:2 26269:1 26270:2 26278:1 26279:1 26286:2 26320:1 26324:1 26328:1 26329:2 26331:1 26354:2 26364:1 26390:1 26403:1 26407:1 26423:2 26434:1 26435:1 26437:2 26442:2 26445:1 26459:1 26482:1 26488:1 26490:3 26502:4 26530:1 26549:1 26550:1 26557:2 26565:1 26581:1 26582:1 26584:1 26605:1 26606:1 26608:1 26646:2 26665:1 26675:1 26679:1 26689:3 26705:1 26718:1 26726:1 26729:1 26768:1 26793:1 26794:1 26839:1 26867:1 26872:2 26873:1 26879:1 26897:1 26898:1 26932:1 26954:1 26966:1 26967:1 26977:1 26979:1 26984:1 26991:1 27020:2 27049:1 27052:1 27063:1 27065:2 27075:2 27076:1 27100:3 27105:1 27115:2 27116:1 27133:1 27134:1 27144:3 27151:1 27182:1 27186:1 27196:2 27198:1 27211:1 27222:1 27223:1 27226:1 27227:5 27231:1 27233:1 27247:1 27265:1 27280:1 27299:3 27300:1 27305:2 27335:1 27336:2 27351:1 27357:1 27358:1 27365:1 27376:1 27383:1 27408:2 27412:1 27429:2 27436:2 27460:1 27466:1 27470:3 27471:3 27479:1 27483:1 27484:1 27486:1 27487:4 27489:2 27490:2 27496:1 27498:1 27508:2 27511:1 27519:1 27527:2 27530:3 27539:3 27580:2 27603:1 27612:1 27622:1 27654:1 27655:2 27661:1 27664:2 27674:1 27681:1 27683:1 27687:2 27689:1 27691:2 27692:1 27705:1 27711:1 27713:1 27754:1 27797:11 27798:1 27799:1 27821:6 27835:1 27839:2 27858:1 27862:1 27864:1 27871:1 27876:3 27890:1 27892:1 27912:2 27915:3 27986:2 27994:1 28003:1 28024:1 28030:1 28046:1 28064:1 28065:1 28074:1 28082:1 28094:1 28101:1 28110:1 28113:2 28115:1 28133:1 28209:1 28275:1 28293:1 28294:1 28303:1 28308:1 28319:2 28348:3 28349:4 28369:1 28382:6 28384:1 28393:1 28397:1 28401:1 28402:1 28413:1 28424:2 28425:1 28430:1 28501:1 28527:1 28533:2 28536:1 28593:1 28614:3 28632:3 28635:3 28643:1 28658:1 28670:2 28673:1 28674:1 28685:1 28694:2 28722:1 28730:1 28731:1 28736:1 28759:2 28773:1 28776:1 28787:1 28803:2 28809:1 28833:1 28847:1 28884:1 28926:1 28944:1 28948:3 28966:1 28969:2 28976:1 28983:1 28995:1 29005:2 29012:2 29032:1 29042:1 29136:1 29137:1 29149:1 29152:2 29211:1 29225:1 29226:2 29233:1 29241:1 29263:2 29277:1 29279:2 29283:1 29287:1 29290:1 29298:2 29305:1 29313:1 29330:1 29336:1 29339:1 29342:1 29345:1 29346:1 29349:1 29351:1 29356:1 29359:1 29421:4 29433:1 29448:1 29474:1 29483:1 29485:1 29496:1 29515:8 29521:2 29529:1 29535:1 29547:1 29559:1 29562:1 29567:1 29570:1 29583:1 29605:2 29612:1 29623:1 29632:1 29643:2 29649:1 29654:1 29676:3 29702:1 29704:3 29711:1 29721:1 29724:1 29728:1 29729:1 29735:1 29745:1 29775:1 29783:1 29800:1 29820:2 29826:1 29831:2 29839:1 29841:1 29845:1 29847:1 29899:1 29904:1 29916:1 29958:3 29969:1 29971:1 29974:3 29977:1 29995:1 29999:1 30002:1 30035:1 30040:1 30044:1 30052:1 30059:1 30100:1 30105:1 30142:1 30149:2 30156:2 30168:1 30191:1 30199:1 30204:1 30213:2 30231:5 30249:1 30267:1 30285:1 30297:1 30305:1 30306:1 30315:1 30327:1 30330:1 30331:2 30342:1 30357:1 30370:1 30380:4 30393:1 30420:1 30431:1 30445:1 30471:1 30475:4 30501:1 30504:3 30507:1 30510:2 30532:1 30548:1 30552:1 30572:2 30587:4 30589:3 30602:1 30638:1 30653:1 30660:1 30663:1 30664:4 30685:1 30689:2 30697:1 30704:4 30710:1 30718:2 30775:1 30776:1 30789:1 30798:5 30802:2 30805:2 30809:2 30834:1 30835:1 30843:4 30846:1 30854:2 30864:1 30867:1 30868:2 30869:1 30875:1 30880:1 30883:1 30884:1 30892:1 30895:1 30908:2 30956:2 30967:1 30968:1 30971:2 30977:2 30994:2 30999:1 31009:1 31019:1 31020:1 31042:1 31046:3 31057:2 31062:1 31065:1 31107:1 31125:1 31130:1 31142:2 31144:1 31158:2 31161:1 31172:1 31184:1 31191:1 31195:1 31197:1 31206:1 31209:1 31216:7 31227:1 31306:1 31315:1 31322:1 31324:1 31360:1 31363:1 31370:2 31391:1 31392:3 31398:1 31404:1 31422:2 31440:2 31448:1 31452:3 31459:1 31461:3 31463:1 31478:1 31484:2 31485:3 31494:1 31531:4 31538:1 31543:1 31547:1 31554:1 31566:1 31576:1 31590:1 31622:1 31625:1 31635:1 31640:1 31649:1 31665:15 31667:2 31670:2 31674:2 31679:1 31680:3 31686:1 31688:2 31704:6 31721:3 31730:1 31750:1 31761:3 31763:1 31783:1 31790:1 31827:2 31834:3 31846:1 31853:1 31877:4 31897:1 31910:1 31921:1 31932:1 31938:2 31952:1 31954:1 31960:1 31962:1 31974:1 31998:2 32009:1 32027:1 32035:2 32041:1 32047:1 32070:1 32083:1 32085:1 32105:2 32117:1 32125:1 32140:1 32142:1 32153:1 32172:2 32181:1 32201:1 32207:1 32229:1 32241:3 32244:4 32277:1 32280:2 32299:1 32303:1 32304:1 32312:1 32319:1 32335:2 32348:1 32403:1 32407:1 32433:1 32443:3 32447:1 32451:1 32456:1 32471:4 32476:1 32491:2 32499:1 32551:1 32552:2 32579:1 32619:1 32625:1 32651:1 32656:2 32660:1 32661:1 32693:1 32713:3 32719:1 32722:1 32724:1 32750:2 32791:1 32795:1 32803:1 32818:1 32824:1 32834:1 32846:1 32885:1 32899:1 32900:2 32910:2 32935:1 32941:2 32944:3 32956:2 32963:1 33001:2 33019:1 33025:1 33038:1 33041:4 33056:3 33059:1 33075:1 33084:1 33105:1 33108:1 33115:1 33133:1 33138:1 33141:3 33143:2 33146:1 33148:2 33149:1 33155:5 33164:1 33167:4 33168:1 33171:4 33211:1 33220:1 33224:1 33225:1 33226:1 33232:1 33234:2 33267:1 33271:1
11 1:1 2:1 6:1 27:1 31:1 34:1 39:1 49:1 55:1 60:2 67:1 84:1 85:1 86:1 93:1 95:1 99:2 126:1 148:1 150:1 159:1 166:1 170:1 181:1 183:1 187:2 232:1 238:4 256:1 265:1 282:1 283:1 294:3 296:2 313:1 362:1 401:1 402:1 403:4 411:2 446:1 455:1 498:1 507:8 513:1 523:1 546:2 582:2 586:1 621:1 627:1 646:1 654:1 698:1 712:1 717:3 721:1 731:6 745:1 753:1 759:2 764:3 765:1 766:1 774:1 790:1 795:1 807:1 808:1 815:2 866:2 937:1 955:1 956:1 971:2 974:1 979:1 984:1 1003:2 1022:3 1049:1 1053:1 1057:1 1067:2 1069:1 1070:1 1071:5 1073:1 1083:1 1094:1 1103:1 1106:1 1118:1 1125:1 1127:1 1130:5 1132:1 1134:1 1141:2 1144:1 1158:1 1161:1 1168:1 1199:1 1204:2 1211:1 1220:1 1236:3 1239:1 1244:1 1257:1 1262:1 1284:1 1311:2 1316:1 1318:1 1321:1 1351:1 1376:1 1378:1 1388:1 1392:1 1393:1 1403:1 1405:1 1413:1 1415:1 1421:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:1 1465:1 1480:1 1481:1 1487:1 1496:2 1504:1 1509:1 1514:1 1538:1 1539:1 1545:1 1547:1 1588:2 1624:1 1626:2 1630:1 1635:1 1650:1 1658:1 1664:4 1683:2 1686:1 1690:2 1691:1 1719:1 1726:4 1730:8 1739:10 1745:1 1747:1 1749:1 1751:2 1793:1 1807:1 1808:1 1837:3 1839:3 1869:1 1878:2 1883:5 1892:1 1899:1 1906:2 1917:4 1941:1 1943:1 1948:1 1955:1 1957:1 1963:1 1966:1 1977:1 1980:1 1999:1 2003:1 2019:1 2037:1 2061:1 2062:1 2073:2 2078:1 2098:1 2113:1 2118:1 2119:1 2133:3 2135:1 2136:1 2137:2 2138:2 2141:1 2157:1 2158:1 2169:1 2177:2 2180:1 2195:4 2209:1 2214:1 2223:1 2237:1 2241:1 2246:1 2249:2 2255:1 2263:1 2269:1 2279:1 2284:2 2301:1 2317:1 2322:1 2348:1 2355:1 2372:1 2373:3 2381:1 2397:1 2399:1 2421:1 2422:1 2429:1 2437:1 2441:1 2482:5 2496:1 2502:3 2508:1 2521:1 2525:1 2529:1 2530:1 2547:1 2551:2 2552:1 2553:1 2555:4 2558:4 2562:1 2563:1 2570:1 2573:1 2576:2 2578:2 2579:3 2583:1 2585:1 2587:1 2613:1 2616:1 2618:3 2620:1 2623:2 2624:2 2625:2 2626:1 2630:1 2631:3 2634:2 2635:2 2637:1 2640:2 2642:2 2647:5 2648:1 2652:1 2657:3 2662:2 2663:1 2681:1 2720:1 2739:1 2753:1 2774:1 2784:1 2801:1 2821:1 2831:2 2832:1 2864:1 2867:1 2868:1 2878:1 2888:1 2890:1 2896:1 2905:2 2918:2 2934:1 2951:1 2955:1 2962:1 2964:1 2985:1 2993:1 3008:1 3033:1 3039:1 3042:1 3049:1 3051:1 3059:1 3069:1 3071:1 3080:4 3097:1 3098:1 3106:5 3116:2 3121:1 3134:2 3145:1 3157:1 3165:3 3171:1 3173:1 3182:2 3193:1 3197:1 3201:1 3213:2 3257:1 3263:2 3283:1 3284:7 3291:1 3294:1 3295:7 3302:2 3314:1 3318:1 3336:4 3350:2 3351:1 3352:1 3353:8 3360:1 3364:2 3369:1 3377:1 3379:1 3386:1 3397:1 3408:1 3411:2 3418:2 3433:2 3464:1 3474:1 3475:1 3482:1 3504:1 3517:1 3529:1 3539:1 3549:1 3550:2 3578:2 3588:1 3625:1 3645:1 3646:1 3683:1 3690:2 3702:2 3726:1 3744:1 3755:1 3758:1 3769:1 3772:1 3790:1 3799:1 3816:1 3821:1 3822:2 3853:1 3857:2 3868:1 3917:1 3926:1 3930:2 3936:1 3939:1 3942:2 3945:1 3951:1 3968:1 3974:1 3978:1 3990:1 4005:1 4011:1 4012:1 4018:1 4033:1 4035:2 4040:1 4047:3 4074:1 4105:1 4115:1 4122:1 4160:4 4174:3 4193:2 4195:1 4207:1 4225:1 4245:1 4247:2 4252:3 4253:11 4267:1 4271:1 4279:1 4288:4 4289:3 4291:1 4292:1 4303:1 4306:5 4308:1 4332:4 4334:1 4351:3 4378:1 4382:1 4405:1 4454:1 4470:1 4477:1 4484:1 4487:1 4488:1 4510:1 4511:1 4512:1 4529:1 4531:2 4533:1 4536:3 4540:1 4545:3 4547:1 4573:1 4574:1 4575:1 4581:2 4585:1 4609:1 4628:2 4637:1 4663:1 4667:1 4684:1 4714:1 4727:1 4728:1 4730:1 4763:5 4767:4 4773:1 4785:1 4792:1 4793:4 4824:2 4842:2 4863:1 4872:5 4877:1 4888:2 4889:1 4906:1 4907:1 4933:1 4936:2 4959:1 4974:1 4989:1 4991:1 5000:1 5020:1 5022:1 5025:1 5033:2 5045:2 5066:1 5072:1 5082:1 5098:1 5106:1 5136:2 5143:5 5162:1 5163:1 5168:1 5171:1 5198:1 5212:1 5239:1 5246:3 5269:1 5287:3 5299:1 5312:1 5337:2 5340:5 5365:1 5369:3 5397:1 5462:1 5471:1 5490:1 5516:1 5562:27 5564:2 5596:1 5610:1 5671:1 5689:1 5690:3 5706:1 5717:3 5718:6 5719:3 5720:1 5722:1 5725:2 5730:1 5731:3 5735:2 5740:1 5744:1 5750:5 5752:3 5763:1 5766:1 5770:1 5781:1 5811:1 5814:2 5825:1 5844:1 5853:1 5855:1 5868:1 5873:1 5898:1 5907:1 5965:3 6027:1 6038:1 6084:2 6089:1 6108:1 6115:1 6124:1 6144:3 6150:3 6165:2 6169:1 6181:1 6186:1 6224:1 6233:1 6237:1 6283:1 6284:1 6292:1 6299:1 6300:1 6305:3 6319:3 6322:1 6327:1 6328:1 6335:3 6345:2 6372:2 6374:1 6385:1 6388:1 6391:2 6395:1 6397:2 6400:1 6407:1 6412:1 6418:2 6428:1 6431:1 6435:1 6454:1 6459:6 6469:1 6480:4 6496:1 6506:1 6508:2 6509:2 6529:1 6531:1 6533:1 6537:1 6540:1 6547:1 6548:1 6553:1 6558:4 6581:3 6584:1 6610:1 6624:1 6688:4 6692:2 6699:1 6706:1 6707:1 6750:1 6776:1 6793:1 6795:1 6806:1 6816:1 6819:2 6843:1 6847:3 6884:1 6888:2 6890:2 6897:4 6944:1 6961:6 6980:1 6994:1 7003:1 7012:1 7025:1 7038:1 7044:1 7059:1 7062:1 7066:1 7081:1 7087:1 7088:3 7089:1 7090:1 7091:1 7101:1 7114:2 7132:1 7150:1 7190:2 7192:1 7193:1 7196:1 7197:1 7200:3 7201:1 7204:3 7207:3 7209:1 7210:1 7211:2 7217:1 7218:8 7221:1 7222:3 7258:1 7272:1 7279:1 7303:1 7306:1 7307:1 7380:1 7381:1 7389:1 7406:1 7410:1 7429:1 7435:2 7439:1 7463:1 7469:1 7497:1 7535:1 7539:2 7543:1 7552:1 7574:1 7589:1 7599:1 7602:1 7613:1 7628:1 7637:1 7648:1 7649:1 7659:1 7662:1 7671:3 7672:1 7676:2 7691:1 7705:4 7707:1 7724:1 7741:1 7745:2 7748:1 7750:2 7766:1 7776:1 7792:1 7794:1 7822:1 7825:1 7839:1 7855:1 7867:1 7879:3 7912:2 7913:1 7927:1 7941:1 7949:1 7954:1 7956:1 7961:1 7984:1 7988:1 7993:1 8007:2 8025:1 8027:2 8043:1 8045:1 8054:1 8064:1 8075:5 8089:2 8090:1 8105:2 8129:1 8139:1 8143:4 8150:1 8155:1 8167:1 8196:1 8216:1 8230:1 8247:1 8258:2 8277:4 8299:1 8302:1 8328:2 8338:1 8340:1 8347:1 8387:1 8389:3 8413:1 8417:2 8426:1 8432:2 8454:1 8474:1 8478:1 8491:1 8494:1 8498:1 8499:1 8531:1 8560:1 8562:1 8570:1 8573:1 8575:1 8599:1 8609:4 8611:1 8615:1 8619:1 8624:5 8630:3 8631:4 8633:4 8653:1 8659:1 8663:1 8684:1 8688:2 8689:1 8702:35 8716:1 8717:1 8725:1 8726:9 8728:5 8767:1 8783:1 8796:2 8810:1 8815:2 8860:1 8864:1 8874:1 8880:1 8886:1 8890:1 8891:1 8901:1 8909:1 8923:1 8932:2 8935:6 8957:1 8960:1 8974:1 8982:5 8992:1 9048:1 9059:1 9094:2 9127:1 9135:1 9143:1 9157:4 9168:2 9179:1 9186:1 9203:1 9221:2 9222:1 9231:1 9232:16 9264:1 9267:1 9276:1 9279:1 9289:1 9298:1 9299:1 9324:1 9335:1 9381:1 9394:1 9425:1 9430:1 9435:1 9441:1 9466:1 9470:1 9473:1 9484:1 9493:1 9507:2 9508:1 9540:2 9542:1 9544:2 9561:1 9563:1 9623:2 9632:1 9633:1 9634:2 9638:1 9640:1 9642:2 9644:2 9648:3 9649:1 9654:2 9661:1 9665:1 9675:1 9688:1 9697:2 9742:1 9743:1 9746:1 9770:1 9781:1 9788:1 9806:1 9807:1 9810:1 9815:1 9823:1 9826:1 9833:1 9836:1 9842:2 9882:1 9901:3 9907:1 9923:1 9931:1 9937:2 9942:1 9945:1 9965:1 9974:1 9976:3 9988:1 9994:1 9999:1 10008:2 10015:1 10022:1 10027:3 10035:1 10070:1 10087:1 10092:1 10095:1 10117:1 10121:1 10124:1 10138:1 10142:1 10150:2 10152:1 10161:2 10197:1 10209:2 10210:2 10275:1 10282:1 10291:1 10294:1 10307:2 10331:1 10332:1 10338:1 10340:1 10345:5 10349:1 10362:1 10367:1 10371:1 10373:1 10374:1 10376:1 10389:1 10407:1 10422:1 10430:1 10434:4 10436:1 10445:1 10450:1 10459:1 10465:1 10479:1 10497:1 10502:1 10517:1 10518:1 10522:2 10524:1 10540:1 10549:1 10554:1 10575:1 10583:1 10584:2 10591:1 10598:1 10602:1 10619:1 10621:1 10623:1 10627:1 10643:2 10648:1 10666:2 10695:1 10709:3 10732:1 10752:2 10764:1 10765:1 10792:1 10800:1 10804:1 10806:1 10807:2 10822:1 10828:1 10846:1 10867:2 10877:1 10886:1 10892:1 10913:2 10948:6 10969:1 10970:1 10972:1 10973:3 11011:1 11020:1 11029:1 11030:1 11052:1 11063:1 11067:1 11079:1 11094:1 11119:2 11133:3 11141:1 11163:2 11170:2 11171:1 11172:1 11175:1 11178:2 11188:3 11200:1 11201:1 11208:1 11210:3 11214:2 11218:1 11222:1 11225:1 11226:1 11231:2 11232:1 11234:2 11242:2 11265:1 11266:1 11276:4 11288:1 11291:1 11302:1 11308:1 11309:1 11324:1 11331:1 11342:1 11362:1 11376:6 11383:2 11431:1 11433:1 11438:1 11445:1 11448:1 11450:1 11451:1 11456:1 11464:1 11488:1 11492:1 11499:1 11517:2 11526:1 11573:1 11588:1 11594:1 11601:1 11603:1 11607:3 11611:3 11637:1 11656:1 11660:1 11674:1 11677:2 11690:1 11695:1 11697:1 11701:2 11717:1 11730:1 11741:1 11744:1 11778:1 11784:4 11795:1 11796:1 11811:1 11820:1 11822:6 11841:1 11842:1 11846:1 11854:1 11855:1 11858:1 11860:1 11899:1 11906:3 11912:1 11914:3 11930:1 11931:1 11933:1 11949:1 11955:1 11966:1 12002:1 12015:3 12023:1 12026:1 12031:1 12039:3 12050:2 12099:1 12109:1 12145:1 12154:1 12162:1 12169:2 12197:1 12214:1 12255:1 12266:1 12274:1 12275:1 12307:2 12310:1 12319:1 12325:1 12327:3 12329:1 12333:1 12335:1 12336:4 12339:1 12352:2 12354:1 12356:1 12369:1 12377:1 12379:1 12406:1 12427:1 12434:1 12438:1 12448:1 12472:1 12477:1 12487:1 12551:1 12552:1 12580:1 12596:1 12618:4 12630:2 12640:1 12647:1 12741:1 12743:1 12762:1 12766:1 12770:1 12775:1 12776:1 12805:1 12811:3 12814:2 12819:1 12836:1 12845:1 12862:1 12865:7 12876:1 12877:1 12893:1 12910:2 12915:1 12923:1 12928:2 12933:1 12935:1 12952:1 12954:1 12970:1 12977:1 12988:3 13000:1 13005:1 13012:1 13015:1 13018:2 13027:1 13032:1 13050:2 13061:1 13064:1 13073:1 13085:2 13088:3 13089:2 13094:2 13111:1 13116:1 13128:6 13135:1 13138:2 13142:2 13148:1 13150:2 13151:6 13152:1 13153:1 13156:1 13162:5 13168:1 13196:1 13202:1 13220:2 13228:1 13231:1 13244:1 13254:1 13264:2 13285:1 13302:1 13308:1 13320:4 13365:1 13391:1 13408:1 13410:3 13415:1 13423:2 13427:1 13434:1 13443:1 13448:2 13456:1 13461:1 13463:1 13473:3 13476:1 13480:2 13486:1 13515:2 13517:3 13527:1 13552:1 13553:2 13556:1 13590:1 13592:1 13600:1 13606:2 13608:1 13611:1 13616:1 13621:1 13653:2 13654:1 13662:1 13674:1 13684:2 13685:3 13690:1 13700:1 13718:2 13738:1 13742:1 13750:2 13778:1 13805:1 13815:1 13821:2 13826:2 13830:1 13863:1 13873:4 13895:2 13896:2 13899:1 13921:1 13933:1 13939:1 13940:1 13976:1 14007:1 14018:1 14021:1 14030:1 14037:1 14039:1 14055:1 14061:1 14101:1 14102:2 14119:1 14146:1 14162:2 14180:1 14183:2 14207:1 14210:1 14214:2 14242:1 14256:2 14267:1 14281:1 14318:2 14319:1 14341:1 14345:5 14353:1 14356:2 14361:1 14370:2 14376:1 14380:1 14384:1 14402:1 14409:1 14410:1 14416:1 14421:1 14436:1 14443:1 14449:1 14468:1 14471:1 14472:1 14473:3 14480:1 14483:2 14489:1 14497:1 14518:1 14520:1 14541:1 14545:1 14572:1 14577:1 14581:1 14583:1 14589:1 14592:1 14620:1 14633:1 14640:1 14652:1 14658:2 14688:1 14697:1 14753:1 14781:1 14793:5 14806:1 14831:1 14841:1 14854:2 14858:1 14859:1 14870:2 14873:1 14877:6 14881:4 14883:1 14891:1 14895:1 14896:1 14904:2 14907:7 14915:1 14921:2 14935:2 14940:1 14949:2 14957:1 14958:1 14960:1 14975:2 14980:1 14999:1 15005:1 15019:1 15028:1 15033:2 15039:5 15040:1 15054:1 15066:1 15082:1 15087:1 15122:1 15125:3 15131:1 15161:1 15187:1 15191:1 15215:1 15217:5 15246:1 15251:1 15275:1 15278:1 15281:2 15293:1 15311:1 15322:1 15325:3 15333:1 15336:1 15374:1 15381:2 15386:1 15429:1 15443:1 15476:1 15477:2 15480:1 15483:2 15487:1 15489:2 15496:1 15508:1 15513:1 15519:1 15520:1 15523:1 15543:1 15551:1 15574:2 15616:4 15622:1 15625:1 15645:1 15662:1 15664:1 15666:2 15680:1 15725:1 15728:5 15734:4 15740:1 15780:1 15811:2 15820:2 15840:1 15855:1 15861:1 15900:1 15905:1 15923:1 15934:1 15945:1 15959:1 15960:1 15962:1 15974:3 15986:1 15990:1 15993:1 15996:2 15997:1 16000:3 16021:1 16030:1 16040:2 16042:1 16043:1 16046:1 16067:1 16092:1 16098:2 16145:1 16152:1 16178:2 16189:1 16197:1 16198:1 16214:1 16227:3 16229:1 16236:1 16237:1 16254:1 16270:1 16273:1 16284:1 16289:1 16321:1 16330:4 16347:1 16350:2 16355:1 16362:1 16390:2 16393:2 16411:1 16422:1 16427:2 16428:1 16433:1 16448:1 16451:1 16457:1 16463:1 16484:3 16508:3 16523:1 16534:1 16538:1 16559:2 16566:3 16598:1 16606:1 16608:1 16630:1 16634:1 16642:1 16650:2 16674:1 16684:5 16693:1 16694:1 16721:2 16723:1 16739:1 16753:1 16762:1 16782:8 16783:1 16787:1 16789:1 16793:1 16832:3 16835:1 16846:2 16860:1 16884:2 16904:1 16936:3 16940:2 16942:1 16944:1 16971:3 16973:2 16988:3 16990:1 16999:1 17012:2 17042:1 17045:3 17046:1 17048:1 17053:2 17056:1 17063:1 17098:2 17105:1 17127:1 17140:1 17155:1 17176:1 17187:1 17194:2 17214:1 17219:1 17224:1 17246:1 17251:2 17269:1 17289:1 17297:1 17314:1 17318:1 17324:1 17370:1 17379:1 17389:1 17406:1 17423:12 17437:1 17448:1 17479:2 17499:1 17514:1 17516:1 17528:1 17531:1 17539:1 17543:1 17567:1 17581:1 17586:2 17596:1 17598:1 17610:1 17648:1 17661:3 17673:1 17681:1 17689:10 17695:1 17699:1 17700:3 17709:1 17710:3 17714:1 17715:1 17718:1 17729:2 17731:2 17740:1 17752:1 17758:1 17771:1 17775:2 17776:1 17783:1 17784:2 17805:3 17824:1 17829:1 17830:2 17857:2 17860:1 17866:1 17871:1 17876:1 17880:1 17884:1 17888:4 17953:4 17955:1 17989:1 18008:1 18049:2 18053:3 18074:4 18108:1 18111:1 18114:1 18141:1 18148:1 18157:3 18187:1 18195:8 18214:3 18220:1 18226:1 18234:2 18236:1 18243:2 18258:1 18260:1 18273:1 18281:2 18302:1 18306:1 18308:2 18313:1 18315:1 18319:3 18321:2 18322:1 18327:1 18329:1 18330:1 18332:2 18340:2 18341:1 18342:3 18352:2 18372:1 18375:1 18401:1 18416:1 18417:1 18492:2 18527:1 18561:1 18584:1 18619:1 18635:2 18683:1 18697:1 18699:1 18702:1 18708:1 18717:1 18727:1 18732:1 18738:1 18739:2 18777:2 18785:1 18794:1 18799:2 18807:1 18821:1 18842:1 18896:1 18911:3 18919:3 18928:1 18966:1 18967:1 19000:1 19005:1 19024:1 19029:3 19043:1 19050:1 19059:4 19062:2 19069:2 19081:1 19089:2 19103:2 19108:1 19135:1 19139:4 19155:1 19165:3 19182:1 19200:4 19208:1 19209:1 19216:2 19233:1 19248:2 19276:1 19320:6 19329:1 19351:1 19352:1 19357:3 19362:1 19398:1 19417:1 19443:1 19444:1 19448:1 19452:1 19465:1 19471:1 19503:1 19508:2 19509:1 19566:1 19567:1 19583:1 19585:1 19622:1 19628:1 19634:1 19643:1 19655:1 19663:2 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19758:1 19763:3 19772:5 19774:1 19776:1 19781:2 19783:1 19784:1 19794:1 19797:1 19809:1 19816:1 19843:2 19849:2 19850:1 19867:1 19872:1 19897:1 19904:1 19910:1 19919:1 19936:1 19951:1 19962:1 19965:1 19966:1 20000:1 20007:2 20020:1 20045:1 20077:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:1 20123:2 20124:4 20128:2 20136:1 20142:1 20143:1 20146:1 20166:2 20174:1 20180:1 20181:1 20183:1 20200:1 20202:1 20220:1 20225:1 20231:1 20237:1 20239:1 20241:1 20243:1 20286:1 20287:1 20300:2 20309:2 20341:1 20360:1 20391:1 20394:1 20400:1 20405:1 20406:1 20407:2 20412:1 20416:1 20441:1 20460:1 20477:1 20492:2 20503:1 20516:1 20517:1 20518:1 20524:1 20525:1 20540:1 20561:1 20569:1 20635:2 20645:1 20682:1 20692:1 20697:2 20706:1 20709:1 20742:3 20792:1 20803:7 20814:2 20815:2 20831:1 20851:1 20876:1 20893:1 20894:1 20895:1 20900:2 20929:1 20942:2 20949:1 20951:1 20970:1 20974:1 20983:3 20996:1 21003:1 21004:1 21016:1 21041:1 21047:2654 21068:3 21070:1 21079:2 21087:1 21096:1 21164:1 21173:2 21178:1 21205:1 21234:1 21241:1 21279:2 21291:1 21292:2 21295:1 21308:1 21355:1 21362:1 21372:1 21374:1 21382:1 21401:2 21408:1 21431:1 21444:1 21449:1 21466:1 21478:1 21487:1 21512:1 21515:3 21518:1 21539:1 21551:1 21566:1 21571:1 21585:1 21601:1 21602:1 21644:1 21689:2 21709:2 21729:1 21735:3 21790:1 21802:1 21806:1 21808:1 21812:1 21813:1 21817:1 21821:2 21827:3 21833:1 21843:1 21856:1 21861:2 21874:1 21877:1 21883:1 21895:2 21907:1 21918:2 21921:5 21952:1 21953:5 21960:1 21961:1 21966:1 21976:1 21992:1 22001:2 22020:3 22025:1 22029:1 22041:1 22043:1 22045:2 22072:4 22082:1 22095:3 22107:1 22127:1 22138:1 22157:1 22162:1 22173:3 22174:1 22178:3 22227:1 22235:1 22240:1 22245:2 22262:1 22267:1 22271:1 22281:1 22294:1 22301:3 22306:1 22311:1 22318:1 22325:1 22344:1 22351:1 22364:1 22370:1 22375:1 22382:1 22404:2 22415:1 22423:3 22459:1 22479:2 22483:1 22495:1 22503:2 22504:1 22508:1 22526:2 22530:1 22540:1 22545:1 22548:3 22553:1 22562:1 22565:2 22569:1 22572:1 22573:2 22586:1 22603:1 22615:1 22617:1 22626:3 22644:2 22681:3 22688:1 22690:1 22698:1 22713:1 22737:2 22740:1 22750:1 22766:1 22774:1 22791:1 22793:1 22815:3 22824:1 22829:1 22834:1 22837:1 22845:1 22852:1 22870:4 22877:2 22889:2 22952:1 22954:1 22966:1 22984:2 22992:1 23002:1 23004:1 23005:1 23036:2 23046:1 23055:1 23059:1 23100:1 23108:3 23113:1 23129:1 23147:1 23156:1 23160:4 23169:2 23172:1 23175:1 23183:1 23243:1 23257:1 23277:1 23279:1 23281:1 23288:1 23290:1 23353:1 23359:1 23363:1 23367:1 23390:1 23415:2 23416:1 23419:1 23434:1 23444:4 23447:1 23453:1 23456:1 23463:1 23490:4 23504:2 23518:1 23521:1 23523:1 23532:1 23544:2 23550:3 23556:1 23561:1 23570:1 23572:1 23580:3 23583:1 23612:1 23617:1 23622:1 23644:2 23649:2 23656:1 23657:1 23658:1 23663:1 23669:2 23723:2 23728:1 23729:1 23736:1 23745:4 23746:1 23751:1 23752:2 23756:1 23765:1 23773:1 23782:1 23790:1 23800:1 23802:2 23852:1 23853:1 23858:1 23859:1 23861:1 23863:1 23898:1 23901:1 23917:1 23919:2 23927:1 23931:1 23943:1 23949:1 23951:1 23953:2 23955:2 23985:1 23991:1 24009:1 24013:1 24024:4 24032:1 24039:1 24058:1 24074:1 24082:2 24090:1 24098:1 24099:1 24113:1 24114:1 24133:1 24143:1 24144:1 24151:1 24166:1 24168:1 24194:1 24195:1 24198:1 24201:1 24205:3 24206:1 24208:1 24214:1 24217:1 24222:1 24226:2 24229:1 24250:1 24255:2 24262:2 24263:1 24274:1 24276:2 24289:1 24308:1 24314:1 24321:1 24323:1 24358:1 24359:2 24366:4 24368:1 24369:1 24373:1 24379:1 24383:2 24386:1 24394:1 24398:1 24401:1 24417:1 24418:1 24425:1 24427:1 24449:1 24474:1 24477:1 24478:2 24493:6 24502:1 24504:1 24527:1 24542:3 24550:2 24578:1 24587:1 24601:2 24618:1 24636:1 24639:1 24643:2 24650:3 24660:1 24678:1 24681:1 24685:3 24687:1 24690:3 24692:3 24695:1 24698:1 24706:2 24727:1 24742:1 24775:1 24788:1 24792:1 24805:2 24840:1 24841:1 24847:1 24854:1 24857:1 24858:1 24874:1 24887:1 24904:1 24907:1 24916:3 24921:1 24925:1 24933:3 24936:1 24943:1 24957:1 24959:1 24966:1 24969:1 24972:2 24974:1 25003:1 25011:1 25021:1 25027:1 25032:1 25036:1 25041:1 25077:2 25093:1 25115:2 25127:1 25133:1 25134:1 25139:2 25156:3 25167:3 25170:1 25173:1 25184:1 25189:1 25197:1 25224:6 25233:3 25238:1 25245:2 25300:1 25306:3 25337:3 25356:1 25357:1 25364:2 25367:4 25369:1 25401:1 25415:1 25416:1 25423:1 25434:2 25454:1 25464:1 25474:2 25494:5 25508:1 25510:1 25513:2 25516:2 25526:2 25545:4 25548:1 25552:4 25557:1 25561:3 25562:1 25569:1 25582:1 25590:1 25595:2 25600:1 25621:1 25624:1 25635:4 25646:1 25659:3 25662:1 25666:1 25669:4 25674:3 25678:2 25713:1 25724:1 25732:1 25841:1 25865:2 25878:1 25884:1 25897:1 25916:1 25920:1 25967:1 26002:3 26017:1 26019:3 26025:1 26032:1 26035:1 26036:1 26046:1 26056:4 26062:1 26073:1 26084:1 26088:1 26110:2 26133:1 26150:1 26158:1 26188:1 26195:1 26218:1 26223:1 26239:1 26243:1 26253:1 26255:1 26263:2 26269:1 26270:2 26278:1 26279:1 26286:2 26320:1 26324:1 26328:1 26329:2 26331:1 26354:2 26364:1 26390:1 26403:1 26407:1 26423:2 26434:1 26435:1 26437:2 26442:2 26445:1 26459:1 26482:1 26488:1 26490:3 26502:5 26530:1 26549:1 26550:1 26557:2 26565:1 26581:1 26582:1 26584:1 26605:1 26606:1 26608:1 26646:2 26665:1 26675:1 26679:1 26681:1 26689:3 26705:1 26718:1 26726:1 26729:1 26768:1 26793:1 26794:1 26839:1 26867:1 26872:2 26873:1 26879:1 26897:1 26898:1 26932:1 26954:1 26966:1 26967:1 26977:1 26979:1 26984:1 26991:1 26998:1 27020:2 27049:1 27052:1 27063:1 27065:2 27075:2 27076:1 27100:3 27105:1 27115:2 27116:1 27133:1 27134:1 27144:3 27151:1 27182:1 27186:1 27196:2 27198:1 27211:1 27222:1 27223:1 27226:1 27227:5 27231:1 27233:1 27245:2 27247:1 27265:1 27280:1 27299:3 27300:1 27305:2 27335:1 27336:2 27351:1 27357:1 27358:1 27365:1 27376:1 27383:1 27408:2 27412:1 27429:2 27436:2 27460:1 27466:1 27470:3 27471:3 27479:1 27481:1 27483:1 27484:1 27486:1 27487:4 27489:2 27490:2 27496:1 27498:1 27508:2 27511:1 27519:1 27527:2 27530:3 27539:3 27580:2 27586:1 27603:1 27612:1 27622:1 27654:1 27655:2 27661:1 27664:2 27674:1 27681:1 27683:1 27687:2 27689:1 27691:2 27692:1 27705:1 27711:1 27713:1 27754:1 27797:11 27798:1 27799:1 27821:6 27835:1 27839:3 27858:1 27862:1 27864:1 27871:1 27876:3 27890:1 27892:1 27912:2 27915:3 27986:2 27994:1 28003:1 28024:1 28030:1 28046:1 28064:1 28065:1 28074:1 28078:1 28082:1 28094:1 28101:1 28110:1 28113:2 28115:1 28133:1 28149:1 28209:1 28275:1 28293:1 28294:1 28303:1 28308:1 28319:2 28348:3 28349:4 28369:1 28382:6 28384:1 28393:1 28397:1 28401:1 28402:1 28413:1 28424:2 28425:1 28430:1 28501:1 28527:1 28533:2 28536:1 28593:1 28614:3 28632:3 28635:3 28643:1 28658:1 28670:2 28673:1 28674:1 28685:1 28694:2 28722:1 28730:1 28731:1 28736:1 28759:2 28773:1 28776:1 28787:1 28803:2 28809:1 28833:1 28847:1 28884:1 28926:1 28944:1 28948:4 28966:1 28969:2 28976:1 28983:1 28995:1 29005:2 29012:2 29032:1 29042:1 29136:1 29137:1 29149:2 29152:2 29211:1 29225:1 29226:2 29233:1 29241:1 29263:2 29277:1 29279:2 29283:1 29287:1 29290:1 29298:2 29305:1 29313:1 29330:1 29336:1 29339:1 29342:1 29345:1 29346:1 29349:1 29351:1 29356:1 29359:1 29378:1 29421:4 29433:1 29448:1 29474:1 29483:1 29485:1 29496:1 29515:8 29521:2 29529:1 29535:1 29547:1 29559:1 29562:1 29567:1 29570:1 29583:1 29605:3 29612:1 29623:1 29632:1 29643:2 29649:1 29654:1 29658:1 29676:4 29702:1 29704:3 29711:1 29721:1 29724:1 29728:1 29729:1 29735:1 29745:1 29775:1 29783:1 29800:1 29820:2 29826:1 29831:2 29839:1 29841:1 29845:1 29847:1 29899:1 29904:1 29916:1 29927:1 29958:3 29969:1 29971:1 29974:3 29977:1 29995:1 29999:1 30002:1 30015:1 30035:1 30040:1 30044:1 30052:1 30059:1 30100:1 30105:1 30142:1 30149:2 30156:2 30168:1 30169:1 30191:1 30199:1 30204:1 30213:2 30231:5 30249:1 30252:1 30267:1 30285:1 30297:1 30305:1 30306:1 30315:1 30327:1 30330:1 30331:2 30342:1 30357:1 30370:1 30380:4 30393:2 30420:1 30431:1 30445:1 30471:1 30475:4 30501:1 30504:3 30507:1 30510:2 30532:1 30548:1 30552:1 30572:2 30587:5 30589:3 30602:1 30638:1 30653:1 30660:1 30663:1 30664:5 30685:1 30689:2 30697:1 30704:5 30710:1 30718:2 30738:1 30775:1 30776:1 30789:1 30798:5 30802:2 30805:2 30809:2 30814:2 30834:1 30835:1 30843:4 30846:1 30854:2 30864:1 30867:1 30868:2 30869:1 30875:1 30880:1 30883:1 30884:1 30892:1 30895:1 30908:2 30956:2 30967:1 30968:1 30971:2 30977:2 30988:1 30994:2 30999:1 31009:1 31019:1 31020:1 31042:1 31046:3 31057:2 31062:1 31065:1 31107:1 31125:1 31130:1 31135:1 31142:2 31144:1 31158:2 31161:1 31172:1 31184:1 31191:1 31195:1 31197:1 31206:1 31209:1 31216:7 31221:1 31227:1 31306:1 31315:1 31322:1 31324:1 31360:1 31363:1 31370:2 31388:1 31391:1 31392:3 31398:1 31404:1 31422:2 31440:2 31448:1 31452:3 31459:1 31461:3 31463:1 31476:1 31478:1 31484:2 31485:3 31494:1 31531:4 31538:1 31543:1 31547:1 31554:1 31566:1 31576:2 31590:1 31622:1 31625:1 31635:1 31640:1 31649:1 31665:15 31667:2 31670:2 31674:2 31679:1 31680:3 31686:1 31688:2 31704:6 31721:3 31730:1 31750:1 31761:3 31763:1 31783:1 31790:1 31821:1 31827:2 31834:3 31842:1 31846:1 31853:1 31877:4 31897:1 31910:1 31921:1 31932:1 31938:2 31952:1 31954:1 31960:1 31962:1 31974:1 31976:1 31998:2 32009:1 32027:1 32035:2 32041:1 32047:1 32061:1 32070:1 32083:1 32085:1 32105:2 32117:1 32125:1 32128:1 32140:1 32142:1 32153:1 32171:1 32172:2 32181:1 32201:1 32207:1 32212:1 32229:1 32241:4 32244:5 32277:1 32280:2 32299:1 32303:1 32304:1 32312:1 32319:1 32335:2 32348:1 32403:1 32407:1 32433:1 32443:4 32447:1 32451:1 32456:1 32471:4 32476:1 32491:3 32499:1 32551:1 32552:2 32579:1 32619:1 32625:1 32651:1 32656:2 32660:1 32661:1 32693:1 32713:3 32719:1 32722:1 32724:1 32750:2 32791:1 32795:1 32803:1 32818:1 32824:1 32834:1 32846:2 32885:1 32899:1 32900:2 32910:2 32935:1 32941:2 32944:3 32956:2 32963:1 33001:2 33019:1 33025:1 33038:1 33041:4 33056:3 33059:1 33075:1 33084:1 33105:1 33108:1 33115:1 33133:1 33138:1 33141:3 33143:2 33146:1 33148:2 33149:1 33155:7 33164:1 33167:4 33168:1 33171:4 33211:1 33220:2 33224:1 33225:1 33226:1 33232:1 33234:2 33267:1 33271:2
11 1:1 2:1 6:1 27:1 31:1 34:1 39:1 49:1 53:1 55:1 60:2 67:1 84:1 85:1 86:1 93:1 95:1 99:2 106:1 126:1 148:1 150:1 159:1 166:1 170:1 181:1 183:1 187:2 215:1 232:1 238:4 256:1 265:1 282:1 283:1 294:3 296:2 299:1 313:1 344:1 362:1 401:1 402:1 403:4 411:2 427:1 446:1 455:1 498:1 507:8 513:1 523:1 546:2 582:2 586:1 621:1 627:1 646:1 654:1 698:1 712:1 717:3 721:1 731:6 745:1 753:1 759:2 764:3 765:1 766:1 774:1 790:1 795:1 807:1 808:1 815:2 866:2 937:1 955:1 956:1 971:2 974:1 979:1 984:1 1003:2 1022:3 1049:1 1053:1 1057:1 1067:2 1069:1 1070:1 1071:5 1073:1 1083:1 1094:1 1103:1 1106:1 1118:1 1125:1 1127:1 1130:5 1132:1 1134:1 1141:2 1144:1 1158:1 1161:1 1168:1 1199:1 1204:2 1211:1 1216:2 1220:1 1236:3 1239:1 1244:1 1257:1 1262:1 1265:1 1284:1 1309:1 1311:2 1316:1 1318:1 1321:1 1322:1 1351:1 1376:1 1378:1 1388:1 1392:1 1393:1 1403:1 1405:1 1413:1 1415:1 1421:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:1 1465:1 1480:1 1481:1 1487:1 1496:2 1504:1 1509:1 1514:1 1538:1 1539:1 1545:1 1547:1 1588:2 1624:1 1626:2 1630:1 1635:1 1650:1 1658:1 1664:4 1683:2 1686:1 1690:2 1691:1 1719:1 1726:6 1730:8 1739:10 1745:1 1747:1 1749:1 1751:2 1793:1 1807:1 1808:1 1837:3 1839:3 1841:1 1869:1 1878:2 1883:7 1892:1 1899:1 1906:2 1917:4 1941:1 1943:1 1948:1 1955:1 1957:1 1963:1 1966:1 1977:1 1980:1 1999:1 2003:1 2019:1 2037:1 2041:1 2061:1 2062:1 2073:2 2078:1 2098:1 2113:1 2118:1 2119:1 2133:3 2135:1 2136:1 2137:2 2138:2 2141:1 2157:1 2158:1 2169:1 2177:2 2180:1 2195:4 2209:1 2214:1 2223:1 2237:1 2241:1 2246:1 2249:2 2255:1 2263:1 2269:1 2279:1 2284:2 2301:1 2317:3 2322:1 2348:1 2355:1 2372:1 2373:3 2381:1 2397:1 2399:1 2421:1 2422:1 2429:1 2437:1 2441:1 2465:1 2482:5 2496:1 2502:3 2508:1 2519:1 2521:1 2525:1 2529:1 2530:1 2547:1 2551:2 2552:1 2553:1 2555:4 2558:4 2562:1 2563:1 2570:1 2573:1 2576:2 2578:2 2579:3 2583:1 2585:1 2587:1 2613:1 2616:1 2618:3 2620:1 2623:2 2624:2 2625:2 2626:1 2630:1 2631:3 2634:2 2635:2 2637:1 2640:2 2642:2 2647:5 2648:1 2652:1 2657:3 2662:2 2663:1 2681:1 2720:1 2739:1 2753:1 2774:1 2784:1 2795:1 2801:3 2821:1 2831:3 2832:1 2864:1 2867:1 2868:1 2878:1 2888:1 2890:1 2896:1 2905:2 2918:2 2934:1 2951:1 2955:1 2962:1 2964:1 2985:1 2993:1 3008:1 3030:1 3033:1 3039:1 3042:1 3049:1 3051:1 3059:1 3069:1 3071:1 3080:4 3097:1 3098:1 3106:6 3116:2 3121:1 3134:2 3145:1 3157:1 3165:3 3171:1 3173:2 3182:2 3193:1 3197:1 3201:2 3213:2 3257:1 3263:2 3283:1 3284:7 3291:1 3294:1 3295:7 3302:2 3314:1 3318:1 3336:4 3350:2 3351:1 3352:1 3353:8 3360:1 3364:2 3369:1 3377:1 3379:1 3386:1 3397:1 3408:1 3411:2 3418:2 3433:2 3464:1 3474:1 3475:1 3482:1 3504:1 3517:1 3529:1 3539:1 3549:1 3550:2 3578:2 3588:1 3625:1 3645:1 3646:1 3683:1 3690:2 3702:2 3721:1 3726:1 3744:1 3755:1 3758:1 3765:1 3769:1 3772:1 3790:1 3799:1 3816:1 3821:1 3822:2 3853:1 3856:1 3857:2 3868:1 3917:1 3926:1 3930:2 3936:1 3939:1 3942:2 3945:1 3951:1 3968:1 3974:1 3978:1 3990:1 4005:1 4011:1 4012:1 4018:1 4020:1 4033:1 4035:2 4040:1 4047:3 4074:1 4105:1 4115:1 4122:1 4160:4 4174:3 4193:2 4195:1 4207:1 4225:1 4245:1 4247:2 4252:3 4253:11 4267:1 4271:1 4279:1 4288:4 4289:3 4291:1 4292:1 4303:1 4306:5 4308:1 4332:4 4334:1 4351:3 4378:1 4382:1 4405:1 4454:1 4470:1 4477:1 4484:1 4487:1 4488:1 4510:2 4511:1 4512:1 4529:1 4531:2 4533:1 4536:3 4540:1 4545:3 4547:1 4573:1 4574:2 4575:1 4581:2 4585:1 4609:1 4628:2 4637:1 4663:1 4667:1 4684:1 4714:1 4727:1 4728:1 4730:1 4763:5 4767:6 4773:1 4785:1 4792:1 4793:4 4824:2 4842:2 4863:1 4872:5 4877:1 4888:2 4889:1 4906:1 4907:1 4933:1 4936:2 4959:1 4974:1 4989:1 4991:1 5000:1 5020:1 5022:1 5025:1 5033:2 5045:2 5066:1 5072:1 5082:1 5098:1 5106:1 5136:2 5143:5 5162:1 5163:1 5168:1 5171:1 5198:1 5212:1 5239:1 5246:3 5269:1 5287:3 5299:1 5312:1 5337:2 5340:5 5365:1 5369:3 5397:1 5462:1 5471:1 5490:1 5491:1 5516:1 5517:1 5562:28 5564:2 5596:1 5610:1 5671:1 5689:1 5690:3 5706:1 5717:3 5718:7 5719:3 5720:2 5722:1 5725:2 5730:1 5731:3 5733:2 5735:2 5740:1 5744:1 5750:5 5752:3 5763:1 5766:1 5770:1 5781:1 5811:1 5814:2 5825:1 5844:1 5853:1 5855:1 5868:1 5873:1 5898:1 5907:1 5965:3 5975:1 6027:1 6038:1 6084:2 6089:1 6108:1 6115:1 6124:1 6144:3 6150:3 6165:2 6169:1 6181:1 6186:1 6224:1 6233:1 6237:1 6283:2 6284:1 6292:1 6299:1 6300:1 6305:3 6319:3 6322:1 6327:1 6328:1 6335:3 6345:2 6372:2 6374:1 6382:1 6385:1 6388:1 6391:2 6395:1 6397:2 6400:1 6407:1 6412:1 6418:2 6428:1 6431:1 6435:1 6454:1 6459:6 6469:1 6480:4 6496:1 6506:1 6508:2 6509:2 6529:1 6531:1 6533:1 6537:1 6540:1 6547:1 6548:1 6553:1 6558:4 6570:1 6581:3 6584:1 6610:1 6624:1 6688:4 6692:2 6699:1 6706:1 6707:1 6750:1 6776:1 6793:1 6795:1 6806:1 6816:1 6819:2 6843:1 6847:4 6884:1 6888:2 6890:2 6897:4 6944:1 6961:6 6980:1 6994:1 7003:1 7008:1 7012:1 7025:1 7038:1 7044:1 7059:1 7062:1 7066:1 7081:1 7087:1 7088:3 7089:1 7090:1 7091:1 7101:1 7114:2 7132:1 7150:1 7190:2 7192:1 7193:1 7196:1 7197:2 7200:3 7201:1 7204:3 7207:3 7209:1 7210:1 7211:2 7217:1 7218:8 7221:1 7222:3 7258:1 7272:1 7279:1 7303:1 7306:1 7307:1 7380:1 7381:1 7389:1 7406:1 7410:1 7429:1 7435:2 7439:1 7463:1 7469:1 7497:1 7511:1 7512:1 7535:1 7539:2 7543:1 7552:1 7570:1 7574:1 7589:2 7599:1 7602:1 7613:1 7628:1 7637:1 7648:1 7649:1 7659:1 7662:1 7671:4 7672:1 7676:2 7691:1 7705:4 7707:1 7724:1 7741:1 7745:2 7748:1 7750:2 7766:1 7776:1 7792:1 7794:1 7822:1 7825:1 7839:2 7840:1 7855:1 7867:1 7879:3 7912:2 7913:1 7927:1 7941:1 7949:1 7954:1 7956:1 7961:1 7984:1 7988:1 7993:1 8007:2 8025:1 8027:2 8043:1 8045:1 8054:1 8064:1 8075:7 8089:2 8090:1 8105:2 8129:1 8139:1 8143:4 8150:1 8155:1 8167:1 8196:1 8216:1 8230:1 8247:1 8258:2 8277:4 8299:1 8302:1 8328:2 8338:1 8340:1 8347:1 8387:1 8389:3 8413:1 8417:2 8426:1 8432:2 8439:1 8454:1 8474:1 8478:1 8491:1 8494:1 8498:1 8499:1 8531:1 8560:1 8562:1 8567:1 8570:1 8573:1 8575:1 8599:1 8609:4 8611:1 8615:1 8619:1 8624:5 8630:3 8631:5 8633:4 8653:1 8659:1 8663:1 8684:1 8688:2 8689:1 8702:35 8716:1 8717:1 8725:1 8726:9 8728:5 8734:1 8767:1 8783:1 8796:2 8810:1 8815:2 8816:1 8860:1 8864:1 8874:1 8880:1 8886:1 8890:1 8891:1 8901:1 8909:1 8923:1 8932:2 8935:6 8957:1 8960:1 8974:1 8982:5 8987:1 8992:1 9048:1 9059:1 9094:2 9127:1 9135:1 9143:1 9157:4 9168:2 9179:1 9183:1 9186:1 9203:2 9221:2 9222:1 9231:1 9232:16 9264:1 9267:1 9276:1 9279:1 9289:1 9298:1 9299:1 9324:1 9332:1 9335:1 9381:1 9394:1 9425:1 9430:1 9435:1 9441:1 9466:1 9470:1 9473:1 9484:1 9493:1 9507:2 9508:1 9529:1 9540:2 9542:1 9544:2 9561:1 9563:1 9623:2 9630:1 9632:1 9633:1 9634:3 9638:1 9640:1 9642:2 9644:2 9648:3 9649:2 9654:2 9661:1 9665:1 9675:1 9688:1 9697:2 9742:1 9743:1 9746:1 9770:1 9781:1 9788:1 9806:1 9807:1 9810:1 9815:1 9823:1 9826:1 9833:1 9836:1 9842:2 9882:1 9901:3 9907:1 9923:1 9931:1 9937:2 9942:1 9945:1 9965:1 9974:1 9976:3 9988:1 9994:1 9999:1 10008:2 10015:1 10022:1 10027:3 10035:1 10070:1 10087:1 10092:1 10095:1 10117:1 10121:1 10124:1 10138:1 10142:1 10150:2 10152:1 10161:2 10197:1 10209:2 10210:2 10275:1 10282:1 10291:1 10294:1 10307:2 10331:1 10332:1 10338:1 10340:1 10345:6 10349:1 10362:1 10367:1 10371:1 10373:1 10374:1 10376:1 10389:1 10407:1 10422:1 10430:1 10434:4 10436:1 10445:1 10450:1 10459:1 10465:1 10479:1 10497:1 10502:1 10517:1 10518:1 10522:2 10524:1 10533:1 10540:1 10549:1 10554:1 10575:1 10583:1 10584:2 10591:1 10598:1 10602:1 10619:1 10621:1 10623:1 10627:1 10643:2 10648:1 10666:2 10695:1 10709:3 10732:1 10752:2 10764:1 10765:1 10792:1 10800:1 10804:1 10806:1 10807:2 10822:1 10828:1 10846:1 10867:2 10876:1 10877:1 10886:1 10892:1 10913:2 10948:7 10969:1 10970:1 10972:1 10973:3 10996:1 10999:1 11011:1 11020:1 11029:1 11030:1 11052:1 11063:1 11067:1 11079:1 11094:1 11119:2 11133:3 11141:1 11163:2 11170:2 11171:1 11172:1 11175:1 11178:2 11188:3 11200:1 11201:1 11208:1 11210:3 11214:2 11218:1 11222:1 11225:1 11226:1 11231:2 11232:1 11234:2 11242:2 11265:1 11266:1 11276:4 11288:1 11291:1 11302:1 11308:1 11309:1 11324:1 11331:1 11342:1 11362:1 11376:6 11383:2 11431:1 11433:1 11438:1 11445:1 11448:1 11450:1 11451:1 11456:1 11464:1 11488:1 11492:1 11499:1 11517:2 11526:1 11573:1 11575:1 11588:1 11594:1 11601:1 11603:1 11607:3 11611:3 11637:1 11656:1 11660:1 11674:1 11677:2 11690:1 11695:1 11697:1 11701:2 11717:1 11730:1 11741:1 11744:1 11778:1 11784:4 11795:1 11796:1 11811:1 11820:1 11822:6 11841:1 11842:1 11846:1 11854:1 11855:1 11858:1 11860:1 11899:1 11906:3 11912:1 11914:3 11930:1 11931:1 11933:1 11949:1 11955:1 11966:1 12002:1 12015:3 12023:1 12026:1 12031:1 12039:3 12050:2 12099:1 12109:1 12145:1 12154:1 12162:1 12169:2 12197:1 12213:1 12214:1 12255:1 12266:1 12274:1 12275:1 12307:2 12310:1 12319:1 12325:1 12327:3 12329:1 12333:1 12335:1 12336:4 12339:1 12352:2 12354:1 12356:1 12369:1 12377:1 12379:1 12389:1 12406:1 12427:1 12434:2 12438:1 12448:1 12472:1 12477:1 12487:1 12526:1 12551:1 12552:1 12580:1 12596:1 12618:4 12630:2 12640:1 12647:1 12741:1 12743:1 12762:1 12766:1 12770:1 12775:1 12776:1 12805:1 12811:3 12814:2 12819:1 12836:1 12845:1 12862:1 12865:7 12876:1 12877:1 12893:1 12910:2 12915:1 12918:1 12923:1 12928:2 12933:1 12935:1 12952:1 12954:1 12970:1 12977:1 12988:3 13000:1 13005:1 13009:1 13012:1 13015:1 13018:2 13027:1 13032:1 13050:2 13061:1 13064:1 13073:1 13085:3 13088:3 13089:2 13094:2 13111:1 13116:1 13128:6 13135:1 13138:2 13142:2 13148:1 13150:2 13151:6 13152:1 13153:1 13156:1 13162:5 13168:1 13192:1 13196:1 13202:1 13220:2 13228:1 13231:1 13244:1 13254:1 13264:2 13285:1 13302:1 13308:1 13320:4 13365:1 13391:1 13408:1 13410:3 13415:1 13423:2 13427:1 13434:1 13443:1 13448:2 13456:1 13461:1 13463:1 13473:3 13476:1 13480:2 13486:1 13515:2 13517:3 13527:1 13552:1 13553:2 13556:1 13590:1 13592:1 13600:1 13606:2 13608:1 13611:1 13616:1 13621:1 13653:2 13654:1 13662:1 13674:1 13684:2 13685:3 13690:1 13700:1 13718:2 13738:1 13742:1 13750:2 13778:1 13805:1 13815:1 13821:2 13826:2 13830:1 13863:1 13873:4 13895:2 13896:2 13899:1 13921:1 13933:1 13939:1 13940:1 13976:1 14007:1 14018:1 14021:1 14030:1 14037:1 14039:1 14055:1 14061:1 14101:1 14102:2 14119:1 14146:1 14162:3 14180:1 14183:2 14207:1 14210:1 14214:2 14242:1 14256:2 14267:1 14281:1 14318:2 14319:1 14341:1 14345:5 14353:1 14356:2 14361:1 14370:2 14376:1 14380:1 14384:1 14402:1 14409:1 14410:1 14416:1 14421:1 14436:1 14443:1 14449:1 14468:1 14471:1 14472:1 14473:3 14480:1 14483:2 14489:1 14497:1 14518:1 14520:1 14541:1 14545:1 14572:1 14577:1 14581:1 14583:1 14589:1 14592:1 14620:1 14633:1 14640:1 14652:1 14658:2 14688:1 14697:1 14753:1 14781:1 14793:5 14806:1 14831:1 14841:1 14854:2 14858:1 14859:1 14870:2 14873:1 14877:6 14881:4 14883:1 14891:1 14895:1 14896:1 14904:2 14907:7 14915:1 14921:2 14935:2 14940:1 14949:3 14957:1 14958:1 14960:1 14975:2 14980:1 14999:1 15005:1 15019:1 15028:1 15033:2 15039:5 15040:1 15054:1 15066:1 15079:1 15082:1 15087:1 15122:1 15125:3 15131:1 15161:1 15187:1 15191:1 15215:1 15217:5 15236:1 15246:1 15251:1 15259:1 15275:1 15278:1 15281:2 15293:1 15311:1 15322:1 15325:3 15333:1 15336:1 15374:1 15381:2 15386:1 15429:1 15443:1 15476:1 15477:3 15480:1 15483:2 15487:1 15489:2 15496:1 15508:1 15513:1 15519:1 15520:1 15523:1 15543:1 15551:1 15574:2 15616:4 15622:1 15625:1 15645:1 15662:1 15664:1 15666:2 15680:2 15725:1 15728:5 15734:4 15740:1 15780:1 15811:2 15820:2 15840:1 15855:1 15861:1 15900:1 15905:1 15923:1 15934:1 15945:1 15959:1 15960:1 15962:1 15974:3 15986:1 15990:1 15993:1 15996:2 15997:1 16000:3 16021:1 16030:1 16040:2 16042:1 16043:1 16046:1 16067:1 16092:1 16098:2 16114:1 16145:1 16152:1 16178:2 16189:1 16197:1 16198:1 16214:1 16227:3 16229:1 16236:1 16237:1 16254:1 16270:1 16273:1 16284:1 16289:1 16321:1 16330:4 16347:1 16350:2 16355:1 16362:1 16390:2 16393:2 16411:1 16422:1 16427:2 16428:1 16433:1 16448:1 16451:1 16457:1 16463:1 16484:3 16508:3 16523:1 16534:1 16538:1 16559:2 16566:3 16598:1 16606:1 16608:1 16630:1 16634:1 16642:1 16650:2 16674:1 16684:5 16693:1 16694:1 16721:2 16723:1 16739:1 16753:1 16762:1 16782:8 16783:1 16787:1 16789:1 16793:1 16831:1 16832:3 16835:1 16842:1 16846:2 16860:1 16884:2 16904:1 16936:3 16940:2 16942:1 16944:1 16971:3 16973:2 16988:3 16990:1 16999:1 17012:2 17042:1 17045:4 17046:1 17048:1 17053:2 17056:1 17061:1 17063:1 17098:2 17105:1 17127:1 17140:1 17155:1 17176:1 17187:1 17194:3 17214:1 17219:1 17224:1 17246:1 17251:2 17269:1 17289:1 17297:1 17314:1 17317:1 17318:1 17324:2 17370:1 17379:1 17389:1 17406:1 17423:12 17437:1 17448:1 17479:2 17499:1 17514:1 17516:1 17528:1 17531:1 17539:1 17543:1 17567:1 17581:1 17586:2 17596:1 17598:1 17610:1 17648:1 17661:3 17673:1 17681:1 17689:11 17695:1 17699:1 17700:3 17709:1 17710:3 17714:1 17715:1 17718:1 17729:2 17731:2 17740:1 17752:1 17758:1 17771:1 17775:2 17776:1 17783:1 17784:2 17805:4 17824:1 17829:1 17830:2 17857:2 17860:1 17866:1 17871:1 17876:1 17880:1 17884:1 17888:4 17953:4 17955:1 17989:1 18008:1 18049:2 18053:3 18074:4 18108:1 18111:1 18114:1 18141:1 18148:1 18157:3 18187:1 18195:8 18214:3 18220:1 18226:1 18234:2 18236:1 18243:2 18247:1 18258:1 18260:1 18273:1 18281:2 18302:1 18306:1 18308:2 18313:1 18315:1 18319:3 18321:2 18322:1 18327:1 18329:1 18330:1 18332:2 18340:2 18341:1 18342:3 18352:3 18372:1 18375:1 18401:1 18416:1 18417:1 18492:2 18527:1 18561:1 18584:1 18619:1 18635:2 18683:1 18684:1 18693:1 18697:1 18699:1 18702:1 18708:1 18717:1 18727:1 18732:1 18738:1 18739:2 18777:2 18785:1 18794:1 18799:2 18807:1 18821:1 18842:1 18896:1 18908:1 18911:3 18919:3 18928:1 18966:1 18967:1 19000:1 19005:1 19024:1 19029:3 19030:1 19043:1 19050:1 19059:4 19062:2 19069:2 19081:1 19089:2 19103:2 19108:1 19135:1 19139:4 19155:1 19165:3 19182:1 19200:4 19208:1 19209:1 19216:2 19233:1 19248:2 19276:1 19320:6 19329:1 19351:1 19352:1 19357:3 19362:1 19372:1 19398:1 19417:1 19443:1 19444:1 19448:1 19452:1 19465:1 19471:1 19503:1 19508:2 19509:1 19566:1 19567:1 19583:1 19585:1 19622:1 19628:1 19634:1 19637:1 19643:1 19655:1 19663:2 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19758:1 19763:3 19772:5 19774:1 19776:1 19781:2 19783:1 19784:1 19794:1 19797:1 19809:1 19816:1 19843:3 19849:2 19850:1 19867:1 19872:1 19897:1 19904:1 19910:1 19919:1 19936:1 19951:1 19962:1 19965:1 19966:1 20000:1 20007:2 20020:1 20032:1 20045:1 20077:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:1 20123:2 20124:5 20128:2 20136:1 20142:1 20143:1 20146:1 20166:2 20174:1 20180:1 20181:1 20183:1 20200:1 20202:1 20220:1 20225:1 20231:1 20237:1 20239:1 20241:1 20243:1 20286:1 20287:1 20300:2 20309:2 20341:1 20360:1 20391:1 20394:1 20400:1 20405:1 20406:1 20407:2 20412:1 20416:1 20441:1 20460:1 20477:1 20492:2 20503:1 20516:1 20517:1 20518:1 20524:1 20525:1 20540:1 20561:1 20569:1 20635:3 20645:1 20682:1 20692:1 20697:2 20706:1 20709:1 20742:3 20792:1 20803:7 20814:2 20815:2 20831:1 20851:1 20876:1 20893:1 20894:1 20895:1 20900:2 20929:1 20942:2 20949:1 20951:1 20970:1 20974:1 20983:3 20996:2 21003:1 21004:1 21016:1 21041:1 21047:2747 21068:3 21070:1 21079:2 21087:1 21096:1 21164:1 21173:2 21178:1 21205:1 21234:1 21241:1 21279:2 21291:1 21292:2 21295:1 21308:1 21355:1 21362:1 21372:1 21374:1 21382:1 21401:2 21408:1 21431:1 21444:1 21449:1 21466:1 21478:1 21487:1 21512:1 21515:3 21518:1 21539:1 21551:1 21566:1 21571:1 21585:1 21601:1 21602:1 21644:1 21689:2 21709:2 21729:1 21735:3 21790:1 21802:1 21806:1 21808:1 21812:1 21813:1 21817:1 21821:2 21827:3 21833:1 21843:1 21856:2 21861:2 21874:1 21877:1 21883:1 21895:2 21907:1 21918:2 21921:5 21952:1 21953:5 21959:1 21960:1 21961:1 21966:1 21976:1 21992:1 22001:2 22020:3 22025:1 22029:2 22041:1 22043:1 22045:2 22072:4 22082:1 22095:3 22107:1 22127:1 22138:1 22157:1 22162:1 22173:3 22174:1 22178:3 22227:1 22235:1 22240:1 22245:2 22262:1 22267:1 22271:1 22281:1 22294:1 22301:3 22306:1 22311:1 22318:1 22325:1 22344:1 22351:1 22364:1 22370:1 22375:1 22382:1 22404:2 22415:1 22423:3 22459:1 22479:2 22483:1 22495:1 22503:2 22504:1 22508:1 22526:2 22530:1 22540:1 22545:1 22548:3 22553:1 22562:1 22565:2 22569:1 22572:1 22573:2 22583:1 22586:1 22603:1 22615:1 22617:1 22626:3 22644:2 22681:3 22688:1 22690:1 22698:1 22713:1 22737:2 22740:1 22750:1 22766:2 22774:1 22791:1 22793:1 22815:3 22824:1 22829:1 22834:1 22837:1 22845:1 22851:1 22852:1 22870:4 22877:2 22889:2 22952:1 22954:1 22966:1 22984:2 22992:1 23002:1 23004:1 23005:1 23036:2 23046:1 23055:1 23059:1 23100:1 23108:3 23113:1 23129:1 23147:1 23156:1 23160:4 23169:2 23172:1 23175:1 23183:1 23243:1 23257:1 23277:1 23279:1 23281:1 23288:1 23290:1 23353:1 23359:1 23363:1 23367:1 23390:1 23415:2 23416:1 23419:1 23434:1 23444:4 23447:1 23453:1 23456:1 23463:1 23490:4 23504:2 23518:1 23521:2 23523:1 23527:1 23529:1 23532:1 23544:2 23550:3 23556:1 23561:1 23570:1 23572:1 23580:3 23583:1 23612:1 23617:1 23622:1 23644:2 23649:2 23656:1 23657:1 23658:1 23663:1 23669:2 23723:2 23728:1 23729:1 23736:1 23745:4 23746:1 23751:1 23752:2 23756:1 23765:1 23773:1 23782:1 23790:1 23800:1 23802:2 23831:1 23852:1 23853:1 23858:1 23859:1 23861:1 23863:1 23898:1 23901:1 23917:1 23919:2 23927:1 23931:1 23943:1 23949:1 23951:1 23953:2 23955:2 23985:1 23991:1 24009:1 24013:1 24024:4 24032:1 24039:1 24057:1 24058:1 24074:1 24082:2 24090:1 24098:1 24099:1 24113:2 24114:1 24133:1 24143:1 24144:1 24151:1 24166:1 24168:1 24194:1 24195:1 24198:1 24201:1 24205:3 24206:2 24208:1 24214:1 24217:1 24218:1 24222:1 24226:2 24229:1 24250:1 24255:2 24262:2 24263:2 24274:1 24276:2 24279:1 24289:1 24308:1 24314:1 24321:1 24323:1 24358:1 24359:2 24366:4 24368:1 24369:1 24373:1 24379:1 24383:2 24386:1 24394:1 24398:1 24401:1 24417:1 24418:1 24425:1 24427:1 24449:1 24474:1 24477:1 24478:2 24493:6 24502:1 24504:1 24527:1 24542:3 24550:2 24578:1 24587:1 24601:3 24618:1 24636:1 24639:1 24643:2 24650:3 24660:1 24678:1 24681:1 24685:3 24687:1 24690:3 24692:3 24695:1 24698:1 24706:2 24727:1 24742:1 24775:1 24788:1 24792:1 24805:2 24840:1 24841:1 24847:1 24854:1 24857:1 24858:1 24874:1 24887:1 24904:1 24907:1 24916:3 24921:1 24925:1 24933:3 24936:1 24937:1 24943:1 24957:1 24959:1 24966:1 24969:1 24972:2 24974:1 24975:1 24990:2 25003:1 25011:1 25021:1 25027:1 25032:1 25036:1 25041:1 25048:1 25077:2 25093:1 25115:2 25127:1 25133:1 25134:1 25139:2 25156:3 25167:3 25170:1 25173:1 25183:1 25184:2 25189:1 25191:1 25197:1 25224:6 25233:3 25238:1 25245:2 25300:1 25306:3 25337:4 25356:1 25357:1 25364:2 25367:4 25369:1 25401:1 25415:1 25416:1 25423:1 25434:2 25437:1 25454:1 25464:1 25474:2 25494:5 25508:1 25510:1 25513:2 25516:2 25526:2 25545:4 25548:1 25552:4 25557:1 25561:3 25562:1 25569:1 25582:1 25590:1 25595:2 25600:1 25621:1 25624:1 25635:4 25646:1 25659:3 25662:1 25666:1 25669:4 25674:3 25678:2 25713:1 25724:1 25732:1 25841:1 25865:2 25878:1 25884:1 25897:1 25916:1 25920:1 25958:1 25967:1 26002:3 26017:1 26019:3 26025:1 26031:1 26032:1 26035:1 26036:1 26046:1 26047:1 26056:4 26062:1 26073:1 26084:1 26088:1 26110:2 26133:1 26150:1 26158:1 26188:2 26195:1 26218:1 26223:1 26239:1 26243:1 26253:1 26255:1 26263:2 26269:1 26270:2 26278:1 26279:1 26286:2 26320:1 26324:1 26328:1 26329:2 26331:1 26354:2 26364:1 26390:1 26403:1 26407:1 26411:1 26423:2 26434:1 26435:1 26437:2 26442:2 26445:1 26459:1 26482:1 26488:1 26490:3 26502:5 26530:1 26549:1 26550:1 26557:2 26565:1 26581:1 26582:1 26584:1 26605:1 26606:1 26608:1 26646:2 26665:1 26675:1 26679:1 26681:1 26689:3 26705:1 26718:1 26726:1 26729:1 26768:1 26793:1 26794:1 26839:1 26867:1 26872:2 26873:1 26879:1 26897:1 26898:1 26932:1 26954:1 26966:1 26967:1 26977:1 26979:1 26984:1 26991:1 26998:1 27020:2 27049:1 27052:1 27063:1 27065:2 27075:2 27076:1 27100:3 27105:1 27115:2 27116:1 27133:1 27134:1 27144:3 27151:1 27182:1 27186:1 27196:2 27198:1 27202:1 27211:1 27222:2 27223:1 27226:1 27227:5 27231:1 27233:1 27245:2 27247:1 27265:1 27280:1 27299:3 27300:1 27305:2 27317:1 27335:1 27336:2 27351:1 27357:1 27358:1 27365:1 27376:1 27383:1 27408:2 27412:1 27429:2 27436:2 27460:1 27466:1 27470:3 27471:3 27479:1 27481:1 27483:1 27484:1 27486:1 27487:4 27489:3 27490:2 27496:1 27498:2 27508:2 27511:1 27519:1 27527:2 27530:3 27539:3 27547:1 27580:2 27586:1 27603:1 27612:1 27622:1 27626:2 27654:1 27655:2 27661:1 27664:2 27674:1 27681:1 27683:1 27687:2 27689:1 27691:2 27692:1 27705:1 27711:1 27713:1 27754:1 27797:11 27798:1 27799:1 27821:6 27835:1 27839:3 27858:1 27862:1 27864:1 27871:1 27876:3 27890:1 27892:1 27912:2 27915:3 27986:2 27994:1 28003:1 28024:1 28030:1 28046:1 28064:1 28065:1 28074:1 28078:1 28082:1 28094:1 28101:1 28110:1 28113:2 28115:1 28133:1 28149:1 28209:1 28275:1 28293:1 28294:1 28303:1 28308:1 28319:2 28348:3 28349:4 28369:1 28382:6 28384:1 28393:1 28397:1 28401:1 28402:1 28413:1 28424:2 28425:1 28430:1 28501:1 28527:1 28533:2 28536:1 28593:1 28614:3 28632:4 28635:3 28636:1 28643:1 28658:1 28670:2 28673:1 28674:1 28685:1 28694:2 28722:1 28730:1 28731:1 28736:1 28759:3 28773:1 28776:1 28787:1 28803:2 28809:1 28833:1 28847:1 28884:1 28926:1 28944:1 28948:4 28966:1 28969:2 28976:1 28983:1 28995:1 29005:2 29012:2 29032:1 29042:1 29136:1 29137:1 29149:2 29152:2 29211:1 29225:1 29226:2 29233:1 29241:1 29263:2 29277:1 29279:2 29283:1 29287:1 29290:1 29298:2 29305:1 29313:1 29330:1 29336:1 29339:1 29342:1 29345:1 29346:1 29349:1 29351:1 29356:1 29359:1 29378:1 29383:1 29421:6 29433:1 29448:1 29474:1 29483:1 29485:1 29496:1 29515:8 29521:2 29529:1 29535:1 29547:1 29559:1 29562:1 29567:1 29570:1 29583:1 29605:3 29612:1 29623:1 29632:1 29643:2 29649:1 29654:1 29658:1 29676:4 29702:1 29704:3 29711:1 29721:1 29724:1 29728:1 29729:1 29735:1 29745:1 29775:1 29783:1 29800:1 29820:2 29824:1 29826:1 29831:2 29839:1 29841:1 29845:1 29847:1 29899:1 29904:1 29916:1 29927:1 29958:3 29969:1 29971:1 29974:3 29977:1 29995:1 29999:1 30002:1 30015:1 30035:1 30040:1 30044:1 30052:1 30059:1 30096:1 30100:1 30105:1 30142:1 30149:2 30156:2 30168:1 30169:1 30191:1 30199:1 30204:1 30213:2 30231:5 30249:1 30252:1 30267:1 30285:1 30297:1 30305:1 30306:1 30315:1 30327:1 30330:1 30331:2 30342:1 30357:1 30370:1 30380:4 30393:2 30420:1 30431:1 30445:1 30471:1 30475:4 30501:2 30504:3 30507:1 30510:2 30532:1 30548:1 30552:1 30572:2 30587:6 30589:3 30602:1 30638:1 30653:1 30660:1 30663:1 30664:5 30685:1 30689:2 30697:1 30704:5 30710:1 30718:2 30738:1 30775:1 30776:1 30789:2 30798:6 30802:2 30805:2 30809:2 30814:2 30834:1 30835:1 30843:4 30846:1 30854:2 30864:1 30867:1 30868:2 30869:1 30875:1 30880:1 30883:1 30884:1 30892:1 30895:1 30908:2 30956:2 30967:1 30968:1 30971:2 30977:2 30988:1 30994:2 30999:1 31009:1 31019:1 31020:1 31042:1 31046:3 31057:2 31062:1 31065:1 31104:1 31107:1 31125:1 31130:1 31135:1 31142:2 31144:1 31158:2 31161:1 31172:1 31184:1 31191:1 31195:1 31197:1 31206:1 31209:1 31216:7 31221:1 31227:1 31287:1 31306:1 31315:1 31322:2 31324:1 31360:1 31363:1 31370:2 31388:1 31391:1 31392:3 31398:1 31404:1 31422:2 31440:2 31448:1 31452:3 31459:1 31461:3 31463:1 31476:1 31478:1 31480:1 31484:2 31485:3 31494:1 31531:4 31538:1 31543:1 31547:1 31554:1 31566:1 31576:2 31583:1 31590:1 31622:1 31625:1 31635:1 31640:1 31649:1 31665:18 31667:2 31670:2 31674:2 31679:1 31680:3 31686:1 31688:2 31704:7 31721:3 31727:1 31730:1 31750:1 31761:3 31763:1 31783:1 31790:1 31821:1 31827:2 31834:3 31842:1 31846:1 31853:1 31877:5 31894:1 31897:1 31910:1 31921:1 31932:1 31938:2 31952:1 31954:1 31960:1 31962:1 31974:1 31976:1 31998:2 32009:1 32027:1 32035:2 32041:1 32047:1 32061:1 32070:1 32083:1 32085:1 32105:2 32117:1 32125:1 32128:1 32140:1 32142:1 32153:1 32171:1 32172:2 32181:1 32201:1 32207:1 32212:1 32229:1 32241:4 32244:5 32277:1 32280:2 32299:1 32303:1 32304:1 32312:1 32319:1 32335:2 32348:1 32403:1 32407:1 32433:1 32443:4 32447:1 32451:1 32456:1 32471:4 32472:1 32476:1 32487:1 32491:3 32499:1 32551:1 32552:2 32579:1 32619:1 32625:1 32651:1 32656:2 32660:1 32661:1 32693:1 32697:1 32713:3 32719:1 32722:1 32724:1 32750:3 32791:1 32795:1 32803:1 32814:1 32818:1 32824:1 32834:1 32843:1 32846:2 32885:1 32899:1 32900:2 32910:2 32935:1 32941:2 32944:3 32956:2 32963:1 33001:2 33019:1 33025:1 33038:1 33041:5 33056:3 33059:1 33075:1 33084:1 33105:1 33108:1 33115:1 33133:1 33138:1 33141:3 33143:2 33146:1 33148:2 33149:1 33155:7 33164:1 33167:4 33168:1 33171:4 33198:1 33211:1 33220:2 33224:1 33225:1 33226:1 33232:1 33234:2 33267:1 33271:2
11 1:1 2:1 6:1 27:1 31:1 34:1 39:1 49:1 53:1 55:1 60:2 67:1 84:1 85:1 86:1 93:1 95:1 99:2 106:1 126:1 148:1 150:1 159:1 166:1 170:1 181:1 183:1 187:2 215:1 232:1 238:5 256:1 265:1 282:1 283:1 294:3 296:2 299:1 313:1 344:1 362:1 401:1 402:1 403:4 411:2 427:1 446:1 455:1 498:1 507:8 513:1 523:1 546:2 582:2 586:1 621:1 627:1 646:1 654:1 698:1 712:1 717:3 721:1 731:6 745:1 753:1 759:2 764:3 765:1 766:1 774:1 790:1 795:1 807:1 808:1 815:2 829:1 866:2 937:1 955:1 956:1 971:2 974:1 979:1 984:1 1003:2 1022:3 1049:1 1053:1 1057:1 1067:2 1069:1 1070:1 1071:5 1073:1 1083:1 1094:1 1103:1 1106:1 1118:1 1125:1 1127:1 1130:5 1132:1 1134:1 1141:2 1144:1 1158:1 1161:1 1168:2 1171:1 1199:1 1204:3 1211:1 1216:2 1220:1 1236:3 1239:1 1244:1 1257:1 1262:1 1265:1 1284:1 1309:1 1311:2 1316:1 1318:1 1321:1 1322:1 1351:1 1376:1 1378:1 1388:1 1392:1 1393:1 1403:1 1405:2 1413:1 1415:1 1421:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:1 1465:1 1467:1 1480:1 1481:1 1487:1 1496:2 1504:1 1509:1 1514:1 1538:1 1539:1 1545:1 1547:1 1588:2 1624:1 1626:2 1630:1 1635:1 1645:1 1650:1 1658:1 1664:4 1683:2 1686:1 1690:2 1691:1 1719:1 1726:6 1730:9 1739:10 1745:1 1747:1 1749:1 1751:2 1793:1 1807:1 1808:1 1837:3 1839:4 1841:1 1869:1 1878:2 1883:7 1892:1 1899:1 1906:2 1917:4 1941:1 1943:1 1948:1 1955:1 1956:1 1957:1 1963:1 1966:1 1977:1 1980:1 1999:1 2003:1 2019:1 2037:1 2041:1 2061:1 2062:1 2073:2 2078:1 2080:1 2086:1 2098:1 2113:1 2118:1 2119:1 2133:3 2135:1 2136:1 2137:2 2138:2 2141:1 2157:1 2158:1 2169:1 2177:2 2180:1 2187:1 2195:4 2209:1 2214:1 2223:1 2237:1 2241:1 2246:1 2249:2 2255:1 2263:1 2269:1 2279:1 2284:2 2301:1 2317:3 2322:1 2348:1 2355:1 2367:1 2372:1 2373:4 2381:1 2397:1 2399:1 2421:1 2422:1 2429:1 2437:1 2441:1 2465:1 2482:5 2496:1 2502:3 2508:1 2519:1 2521:1 2525:1 2529:1 2530:1 2547:1 2551:2 2552:1 2553:1 2555:4 2558:4 2562:1 2563:1 2570:1 2573:1 2576:2 2578:2 2579:3 2583:1 2585:1 2587:1 2613:1 2616:1 2618:3 2620:1 2623:2 2624:4 2625:2 2626:1 2630:1 2631:3 2632:1 2634:2 2635:2 2637:1 2640:2 2642:4 2647:5 2648:1 2652:1 2657:3 2662:2 2663:1 2681:1 2720:1 2732:1 2739:1 2753:1 2774:1 2784:1 2795:1 2801:3 2821:1 2831:3 2832:1 2864:1 2867:1 2868:1 2878:1 2888:1 2890:1 2896:1 2905:2 2918:2 2934:1 2951:1 2953:1 2955:1 2962:1 2964:1 2985:1 2993:1 3008:1 3017:1 3030:1 3033:1 3039:1 3042:1 3049:1 3051:1 3059:1 3069:1 3071:1 3080:4 3097:1 3098:1 3106:6 3116:2 3121:2 3134:2 3145:1 3157:1 3165:3 3171:1 3173:2 3182:2 3193:1 3197:1 3201:2 3213:2 3257:1 3263:2 3283:1 3284:7 3291:1 3294:1 3295:8 3302:2 3314:1 3318:1 3336:4 3350:2 3351:1 3352:1 3353:9 3360:1 3364:2 3369:1 3377:1 3379:1 3386:1 3397:1 3408:1 3411:2 3418:2 3433:2 3464:1 3474:1 3475:1 3482:1 3504:1 3517:1 3529:1 3539:1 3549:1 3550:2 3572:1 3578:2 3588:1 3625:1 3645:1 3646:1 3683:1 3690:2 3702:2 3721:2 3726:1 3744:1 3755:1 3758:3 3762:1 3765:1 3769:1 3772:1 3790:1 3799:1 3816:1 3821:1 3822:2 3853:1 3856:1 3857:2 3868:1 3917:1 3926:1 3930:2 3936:1 3939:1 3942:2 3945:1 3951:1 3968:1 3974:1 3978:1 3990:1 4005:1 4011:1 4012:1 4018:1 4020:1 4033:1 4035:2 4040:1 4047:3 4074:1 4105:1 4115:1 4122:1 4131:1 4160:4 4174:4 4193:3 4195:1 4207:1 4225:1 4245:1 4247:2 4252:3 4253:11 4267:1 4271:1 4279:1 4288:4 4289:3 4291:1 4292:1 4303:1 4306:5 4308:1 4332:4 4334:1 4351:3 4356:1 4378:1 4382:1 4405:1 4454:1 4470:1 4477:1 4484:1 4487:1 4488:1 4510:2 4511:1 4512:1 4529:1 4531:2 4533:1 4536:3 4540:2 4545:3 4547:1 4573:1 4574:2 4575:1 4581:2 4585:1 4593:1 4609:1 4628:2 4637:1 4663:1 4667:1 4684:1 4686:1 4714:1 4727:1 4728:1 4730:1 4758:1 4763:5 4767:6 4773:1 4785:1 4792:1 4793:4 4824:2 4842:2 4863:1 4872:5 4877:2 4888:2 4889:1 4906:1 4907:1 4929:1 4933:1 4936:2 4951:1 4959:1 4974:1 4989:1 4991:1 5000:1 5020:1 5022:1 5025:1 5030:1 5033:3 5045:2 5066:1 5072:1 5082:1 5098:1 5106:1 5136:2 5143:5 5162:1 5163:1 5168:1 5171:1 5198:1 5212:1 5239:1 5246:3 5269:1 5276:1 5287:3 5299:1 5312:1 5337:2 5340:5 5365:1 5369:3 5397:1 5462:1 5471:1 5490:1 5491:1 5516:1 5517:1 5562:31 5564:2 5596:1 5610:1 5671:1 5689:1 5690:3 5706:1 5717:3 5718:7 5719:3 5720:2 5722:1 5725:2 5730:1 5731:3 5733:3 5735:2 5740:1 5744:1 5748:1 5750:5 5752:3 5763:1 5766:1 5770:1 5781:1 5788:1 5811:1 5814:2 5825:1 5832:1 5844:1 5853:2 5855:1 5868:1 5873:1 5898:1 5907:1 5965:3 5975:1 6027:1 6038:1 6084:2 6089:1 6108:1 6115:1 6124:1 6144:3 6150:3 6165:2 6169:2 6181:1 6186:1 6224:1 6233:1 6237:1 6283:2 6284:1 6292:1 6299:1 6300:1 6305:3 6319:3 6322:1 6327:1 6328:1 6335:3 6345:2 6372:2 6374:2 6382:1 6385:1 6388:1 6391:2 6395:1 6397:2 6400:1 6407:2 6412:1 6418:2 6428:1 6431:1 6435:2 6454:1 6459:6 6469:1 6480:4 6496:1 6506:1 6508:2 6509:2 6520:1 6529:1 6531:1 6533:1 6536:1 6537:1 6540:1 6547:1 6548:1 6553:1 6558:4 6570:1 6581:4 6584:1 6610:1 6624:1 6688:4 6692:2 6699:1 6706:1 6707:1 6750:1 6776:1 6793:1 6795:1 6806:1 6816:1 6819:2 6827:1 6843:1 6847:4 6884:1 6888:2 6890:2 6897:4 6939:1 6944:1 6961:6 6980:1 6994:2 7003:1 7008:1 7012:1 7025:1 7038:1 7044:1 7059:1 7062:1 7066:1 7081:1 7087:2 7088:3 7089:1 7090:1 7091:1 7101:1 7103:1 7114:2 7132:1 7150:1 7190:2 7192:1 7193:1 7196:1 7197:3 7200:3 7201:1 7204:3 7207:3 7209:1 7210:1 7211:2 7217:1 7218:8 7221:1 7222:3 7258:1 7272:1 7279:1 7303:1 7306:1 7307:1 7365:1 7380:1 7381:1 7389:1 7406:1 7410:1 7429:1 7435:2 7439:1 7463:1 7469:1 7497:1 7511:1 7512:1 7535:1 7539:2 7543:1 7552:1 7559:1 7570:1 7574:1 7589:2 7599:1 7602:1 7613:1 7619:1 7628:1 7637:1 7648:2 7649:1 7659:1 7662:1 7671:4 7672:1 7676:2 7691:1 7705:5 7707:1 7724:1 7741:1 7745:2 7748:1 7750:3 7766:1 7776:1 7792:1 7794:1 7822:1 7825:1 7839:2 7840:1 7855:1 7867:1 7879:3 7912:2 7913:1 7927:1 7941:2 7949:1 7954:1 7956:1 7961:1 7984:1 7988:1 7993:1 8007:2 8025:2 8027:2 8043:1 8045:1 8054:1 8064:1 8075:7 8089:2 8090:1 8105:2 8129:1 8139:1 8143:4 8150:1 8155:1 8167:1 8196:1 8216:1 8230:1 8247:1 8258:2 8277:4 8299:1 8302:1 8328:2 8338:1 8340:1 8347:1 8387:1 8389:3 8413:1 8417:2 8426:1 8432:2 8439:1 8454:1 8474:1 8478:1 8491:1 8494:1 8498:1 8499:1 8504:1 8531:1 8560:1 8562:1 8567:1 8570:1 8573:1 8575:1 8599:1 8609:4 8611:1 8615:1 8619:1 8624:5 8630:3 8631:6 8633:4 8653:1 8654:1 8659:1 8663:1 8684:1 8688:2 8689:1 8702:38 8716:1 8717:1 8725:1 8726:9 8728:6 8734:1 8767:1 8783:1 8793:1 8796:2 8797:1 8810:1 8815:2 8816:1 8860:1 8864:1 8874:1 8880:1 8886:1 8890:1 8891:1 8901:1 8909:1 8923:1 8932:2 8935:6 8957:1 8960:1 8974:1 8982:5 8987:1 8992:1 9048:1 9059:1 9094:2 9127:1 9135:1 9143:1 9157:4 9168:2 9179:1 9183:1 9186:1 9203:3 9221:2 9222:1 9231:1 9232:18 9264:1 9267:1 9276:1 9279:1 9289:1 9298:1 9299:1 9324:1 9332:1 9335:1 9340:1 9381:1 9394:2 9425:1 9430:1 9435:1 9441:1 9466:1 9470:1 9473:1 9484:1 9493:1 9507:2 9508:1 9529:1 9540:2 9542:1 9544:2 9561:1 9563:1 9623:2 9630:1 9632:1 9633:1 9634:3 9638:1 9640:1 9642:2 9644:2 9646:1 9648:3 9649:2 9654:2 9661:1 9665:1 9675:1 9688:1 9690:1 9697:2 9742:1 9743:1 9746:1 9770:1 9781:1 9788:1 9806:1 9807:1 9810:1 9815:1 9823:1 9826:1 9833:1 9836:1 9842:2 9882:1 9901:3 9907:1 9923:1 9931:1 9937:2 9942:1 9945:1 9952:1 9965:1 9974:1 9976:3 9988:1 9994:1 9999:1 10008:2 10015:1 10022:1 10027:3 10035:1 10070:1 10087:1 10092:1 10095:1 10117:1 10121:1 10124:1 10138:1 10142:1 10150:2 10152:1 10159:1 10161:2 10197:1 10209:2 10210:2 10265:1 10275:1 10282:1 10291:1 10294:1 10307:2 10331:1 10332:1 10338:1 10340:1 10345:6 10349:1 10362:1 10367:1 10371:1 10373:1 10374:1 10376:1 10389:1 10407:1 10422:1 10430:1 10434:5 10436:1 10445:1 10450:1 10459:1 10465:1 10479:1 10497:1 10502:1 10517:1 10518:1 10522:2 10524:1 10533:1 10540:1 10549:1 10554:1 10575:1 10583:1 10584:2 10586:1 10591:1 10598:1 10602:1 10619:1 10621:1 10623:1 10627:1 10643:2 10648:1 10666:2 10695:1 10709:3 10732:1 10752:2 10764:1 10765:1 10792:1 10800:1 10804:1 10806:1 10807:2 10822:1 10828:2 10846:1 10867:2 10876:1 10877:1 10886:1 10892:1 10913:2 10948:7 10969:1 10970:1 10972:1 10973:3 10996:1 10997:1 10999:1 11011:1 11020:1 11029:1 11030:1 11052:1 11063:1 11067:1 11079:1 11094:2 11119:2 11133:3 11141:1 11163:2 11170:2 11171:1 11172:1 11175:1 11178:2 11188:3 11200:1 11201:1 11208:1 11210:3 11214:2 11218:1 11222:1 11225:1 11226:1 11231:2 11232:1 11234:2 11242:2 11265:1 11266:1 11276:4 11288:1 11291:1 11302:1 11308:1 11309:1 11324:1 11331:1 11342:1 11356:1 11362:1 11376:6 11383:2 11431:1 11433:1 11438:1 11445:1 11448:1 11450:1 11451:1 11456:1 11464:1 11488:1 11492:1 11499:1 11517:2 11526:1 11550:1 11573:1 11575:1 11588:1 11594:1 11601:1 11603:1 11607:3 11611:3 11637:1 11656:1 11660:1 11674:1 11677:2 11690:1 11695:1 11697:1 11701:3 11717:1 11730:1 11741:1 11744:1 11778:1 11784:4 11795:1 11796:1 11811:1 11820:1 11822:6 11841:1 11842:1 11846:1 11854:1 11855:1 11858:1 11860:1 11895:1 11899:1 11906:3 11912:1 11914:3 11930:1 11931:1 11933:1 11949:2 11955:1 11966:1 12002:1 12005:1 12015:4 12023:1 12026:2 12031:1 12039:3 12050:3 12099:1 12109:1 12145:1 12149:1 12154:1 12162:1 12169:2 12197:1 12213:1 12214:1 12255:1 12266:1 12274:1 12275:1 12284:1 12307:2 12310:1 12319:1 12325:1 12327:3 12329:3 12333:1 12335:1 12336:4 12339:1 12352:2 12354:1 12356:1 12361:1 12369:1 12377:1 12379:1 12389:1 12406:1 12427:1 12434:2 12438:1 12448:1 12472:1 12475:1 12477:1 12487:1 12526:1 12551:1 12552:1 12559:1 12580:1 12596:1 12618:4 12630:2 12640:1 12647:1 12682:1 12733:1 12741:1 12743:1 12762:1 12766:1 12770:1 12775:1 12776:1 12805:1 12811:3 12814:2 12819:1 12836:1 12845:1 12862:1 12865:8 12876:1 12877:1 12893:1 12902:1 12910:2 12915:1 12918:1 12923:1 12928:2 12933:1 12935:1 12952:1 12954:1 12970:1 12977:1 12988:3 13000:1 13005:1 13009:1 13012:1 13015:1 13018:2 13027:1 13032:1 13050:2 13061:1 13064:1 13073:1 13081:1 13085:3 13088:3 13089:2 13094:2 13111:1 13116:1 13128:6 13135:1 13137:1 13138:2 13142:3 13148:1 13149:1 13150:2 13151:6 13152:1 13153:1 13156:1 13162:5 13168:1 13192:1 13196:1 13202:1 13220:2 13228:1 13231:1 13244:1 13254:1 13264:2 13285:1 13302:1 13308:1 13320:4 13365:1 13391:1 13408:1 13410:3 13415:1 13423:2 13427:1 13429:1 13434:1 13443:1 13448:2 13456:1 13461:1 13463:1 13473:3 13476:1 13480:2 13486:1 13515:2 13517:3 13527:1 13552:1 13553:2 13556:1 13590:1 13592:1 13600:1 13606:2 13608:1 13611:1 13616:1 13621:1 13649:1 13653:2 13654:2 13662:1 13674:1 13684:3 13685:4 13690:1 13700:1 13718:2 13738:1 13742:1 13750:2 13778:1 13805:1 13815:1 13821:2 13826:2 13830:1 13848:1 13863:2 13873:4 13895:2 13896:2 13899:1 13921:1 13933:1 13939:1 13940:1 13976:1 14007:1 14011:1 14018:1 14021:1 14030:1 14037:1 14039:1 14055:1 14061:1 14101:1 14102:2 14119:1 14146:1 14162:3 14180:1 14183:2 14207:1 14210:1 14214:2 14242:1 14256:2 14267:1 14281:1 14318:2 14319:1 14341:1 14345:6 14353:1 14356:2 14361:1 14370:3 14376:1 14380:1 14384:1 14402:1 14409:1 14410:1 14416:1 14421:1 14436:1 14443:1 14449:1 14468:1 14471:1 14472:1 14473:4 14480:1 14483:2 14489:1 14497:1 14518:1 14520:1 14541:1 14545:1 14572:1 14577:1 14581:1 14583:1 14589:1 14592:1 14620:1 14633:1 14640:1 14652:1 14658:2 14688:1 14697:1 14706:1 14753:1 14781:1 14793:5 14806:1 14831:1 14841:1 14854:2 14858:1 14859:1 14870:2 14873:1 14877:6 14881:4 14883:1 14891:1 14895:1 14896:1 14904:2 14907:7 14915:1 14921:2 14935:2 14940:1 14942:1 14949:3 14957:1 14958:1 14960:1 14975:2 14979:1 14980:1 14999:1 15005:1 15019:1 15028:1 15033:2 15039:5 15040:1 15054:1 15066:1 15079:1 15082:1 15087:1 15122:1 15125:4 15131:1 15161:1 15187:1 15191:1 15215:1 15217:5 15236:1 15246:1 15251:1 15259:1 15275:1 15278:1 15281:2 15293:1 15311:1 15322:1 15325:3 15333:1 15336:1 15374:1 15381:2 15386:1 15429:1 15443:1 15476:1 15477:3 15480:1 15483:2 15487:1 15489:2 15496:1 15508:1 15513:1 15519:1 15520:1 15523:1 15543:1 15551:1 15574:2 15616:4 15622:1 15625:2 15645:1 15662:1 15664:1 15666:2 15680:2 15725:1 15728:5 15734:5 15740:1 15780:2 15811:2 15820:2 15840:1 15855:1 15861:1 15900:2 15905:1 15923:1 15934:1 15945:1 15955:1 15959:1 15960:1 15962:1 15974:3 15986:1 15990:1 15993:1 15996:2 15997:1 16000:3 16021:1 16026:1 16030:1 16033:1 16040:2 16042:1 16043:1 16046:1 16067:1 16092:1 16098:2 16114:1 16145:1 16152:1 16178:2 16189:1 16197:1 16198:1 16214:1 16227:3 16229:1 16236:1 16237:1 16254:1 16270:1 16273:1 16284:1 16289:1 16321:1 16330:4 16347:1 16350:2 16351:1 16355:1 16362:1 16390:2 16393:2 16411:1 16422:1 16427:2 16428:1 16433:1 16448:1 16451:1 16457:1 16463:1 16484:3 16508:3 16523:1 16534:1 16538:1 16556:1 16559:2 16566:3 16598:1 16606:1 16608:1 16630:1 16634:1 16642:1 16650:2 16674:2 16678:1 16684:5 16693:1 16694:1 16721:2 16723:1 16739:1 16741:1 16753:1 16762:1 16782:8 16783:1 16787:1 16789:1 16793:1 16831:1 16832:4 16835:1 16842:1 16846:2 16848:1 16860:1 16884:2 16904:1 16936:3 16940:2 16942:1 16944:1 16971:3 16973:3 16988:3 16990:1 16999:1 17012:2 17042:1 17045:4 17046:1 17048:1 17053:2 17056:1 17061:1 17063:1 17098:2 17105:1 17127:1 17140:1 17155:1 17176:1 17187:1 17194:3 17214:1 17219:1 17224:1 17226:1 17246:1 17251:3 17269:1 17289:1 17293:1 17297:1 17314:1 17317:1 17318:1 17324:2 17370:1 17379:1 17389:1 17406:1 17423:12 17433:1 17437:1 17448:1 17479:2 17499:1 17514:1 17516:1 17528:1 17531:1 17539:1 17543:1 17567:1 17581:1 17586:2 17596:1 17598:1 17610:1 17648:1 17661:3 17673:1 17681:1 17689:11 17694:1 17695:1 17698:1 17699:1 17700:3 17709:1 17710:3 17714:1 17715:1 17718:1 17729:2 17731:2 17740:1 17752:1 17758:1 17771:1 17775:2 17776:1 17783:1 17784:2 17805:4 17824:1 17829:1 17830:2 17857:2 17860:1 17866:1 17871:1 17876:1 17880:1 17884:1 17888:4 17951:1 17953:4 17955:1 17989:1 18008:1 18049:2 18053:4 18074:4 18108:1 18111:1 18114:1 18141:1 18148:1 18157:3 18187:1 18195:8 18214:3 18220:1 18226:1 18234:2 18236:1 18243:2 18247:1 18258:1 18260:1 18273:1 18281:2 18302:1 18306:1 18308:2 18313:1 18315:1 18319:4 18321:2 18322:1 18327:1 18329:1 18330:1 18332:2 18340:2 18341:1 18342:5 18344:1 18352:3 18372:1 18375:1 18401:1 18416:1 18417:1 18492:2 18527:2 18561:1 18584:1 18619:1 18635:2 18683:1 18684:1 18693:1 18697:1 18699:1 18702:1 18708:1 18717:1 18727:1 18732:1 18738:1 18739:2 18777:2 18785:1 18794:1 18799:2 18807:1 18808:1 18821:1 18842:1 18896:1 18908:1 18911:3 18919:4 18928:1 18966:1 18967:1 19000:1 19005:1 19024:1 19029:3 19030:1 19035:1 19039:1 19043:1 19050:1 19059:4 19062:2 19069:2 19081:1 19089:2 19103:2 19108:1 19135:1 19139:5 19155:1 19165:3 19182:1 19200:4 19208:1 19209:1 19216:3 19233:1 19248:2 19276:1 19320:7 19329:1 19345:1 19351:1 19352:1 19354:1 19357:3 19362:1 19372:1 19398:1 19417:1 19443:1 19444:1 19448:1 19452:1 19465:1 19471:1 19503:1 19508:2 19509:1 19566:1 19567:1 19583:1 19585:1 19622:1 19628:1 19634:1 19637:1 19643:1 19655:1 19663:2 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19758:1 19763:3 19772:5 19774:1 19776:1 19781:2 19783:1 19784:1 19794:1 19797:1 19809:1 19816:1 19843:3 19849:2 19850:1 19867:1 19872:1 19897:1 19904:1 19910:1 19919:1 19936:1 19951:1 19962:1 19965:1 19966:1 20000:1 20007:2 20020:2 20031:1 20032:1 20045:1 20077:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:1 20123:2 20124:6 20128:3 20136:1 20142:1 20143:1 20146:1 20166:2 20174:1 20180:1 20181:1 20183:1 20200:1 20202:1 20220:1 20225:2 20231:1 20237:1 20239:1 20241:1 20243:1 20286:1 20287:1 20300:2 20309:2 20341:1 20360:1 20391:1 20394:1 20400:1 20405:1 20406:1 20407:2 20412:1 20416:1 20441:1 20454:1 20460:1 20477:1 20492:2 20499:1 20503:1 20516:1 20517:1 20518:1 20524:1 20525:1 20540:1 20561:1 20569:1 20635:3 20645:1 20681:1 20682:1 20692:2 20697:2 20706:1 20709:1 20742:3 20792:1 20803:7 20814:2 20815:2 20831:1 20851:1 20876:1 20893:1 20894:1 20895:1 20900:2 20929:1 20936:1 20942:2 20949:1 20951:1 20970:1 20974:2 20983:3 20996:2 21003:1 21004:1 21016:1 21041:1 21047:2934 21068:3 21070:1 21079:2 21087:1 21096:1 21164:1 21173:2 21178:1 21205:1 21234:1 21241:1 21278:1 21279:2 21291:1 21292:2 21295:1 21308:1 21355:1 21362:1 21372:1 21374:1 21382:1 21401:2 21408:1 21419:1 21431:1 21444:1 21449:1 21466:1 21478:1 21487:1 21512:1 21515:3 21518:1 21539:1 21551:1 21566:1 21571:1 21585:1 21601:1 21602:1 21644:1 21689:2 21692:1 21709:2 21729:1 21735:4 21790:1 21802:1 21806:1 21808:1 21812:1 21813:1 21817:1 21821:2 21827:3 21833:1 21843:1 21856:2 21861:2 21874:1 21877:1 21883:1 21895:2 21907:1 21918:2 21921:6 21952:1 21953:6 21959:1 21960:1 21961:1 21966:1 21976:1 21992:1 22001:2 22020:3 22025:1 22029:2 22041:1 22043:1 22045:2 22072:4 22082:1 22095:3 22107:1 22119:1 22127:1 22138:1 22143:1 22157:1 22162:1 22173:3 22174:1 22178:3 22181:1 22214:1 22227:1 22235:1 22240:1 22245:2 22262:1 22267:1 22271:1 22281:1 22294:1 22301:4 22306:1 22311:1 22318:1 22325:1 22344:1 22351:1 22364:1 22370:1 22375:1 22382:1 22404:2 22415:1 22423:3 22459:1 22479:2 22483:1 22495:1 22503:2 22504:1 22508:1 22526:2 22530:1 22540:1 22545:1 22548:3 22553:1 22562:1 22565:2 22569:1 22572:1 22573:2 22583:1 22586:1 22603:1 22615:1 22617:1 22626:3 22644:2 22681:3 22688:1 22690:1 22698:1 22713:1 22737:2 22740:1 22750:1 22766:2 22774:1 22791:1 22793:1 22815:4 22824:1 22829:1 22834:1 22835:1 22837:1 22845:1 22851:1 22852:1 22870:4 22877:2 22889:2 22952:1 22954:1 22966:1 22984:2 22992:1 23002:1 23004:1 23005:1 23036:2 23046:1 23055:1 23059:1 23100:1 23108:3 23113:1 23116:1 23129:1 23147:2 23156:1 23160:4 23163:1 23169:3 23172:1 23175:1 23183:1 23243:1 23257:1 23277:1 23279:1 23281:1 23288:1 23290:1 23330:1 23353:1 23359:1 23363:1 23367:1 23383:1 23390:1 23415:2 23416:1 23419:1 23434:1 23444:4 23447:2 23453:1 23456:1 23463:1 23490:4 23504:2 23518:1 23521:2 23523:1 23527:1 23529:1 23532:1 23544:3 23550:3 23556:1 23561:1 23570:1 23572:1 23580:3 23583:1 23585:1 23612:1 23617:1 23622:1 23626:1 23644:2 23649:2 23656:1 23657:1 23658:1 23663:1 23669:2 23723:2 23728:1 23729:1 23736:1 23745:4 23746:1 23751:1 23752:2 23756:1 23765:1 23773:1 23782:1 23790:1 23800:1 23802:2 23831:1 23837:1 23852:1 23853:1 23858:1 23859:1 23861:1 23863:1 23898:1 23901:1 23917:1 23919:2 23927:1 23931:1 23943:1 23949:1 23951:1 23953:2 23955:2 23985:1 23991:1 24009:1 24013:1 24024:4 24032:1 24039:1 24057:2 24058:1 24074:1 24082:2 24090:1 24098:1 24099:1 24113:2 24114:1 24133:1 24138:1 24143:1 24144:1 24151:1 24166:1 24168:1 24194:1 24195:1 24198:1 24201:1 24205:3 24206:2 24207:1 24208:1 24214:1 24217:1 24218:1 24222:1 24226:2 24229:1 24250:1 24255:2 24262:2 24263:3 24274:1 24276:2 24279:1 24289:1 24308:1 24314:1 24321:1 24323:1 24334:1 24358:1 24359:2 24366:5 24368:1 24369:1 24373:2 24379:1 24383:2 24386:1 24394:1 24398:1 24401:1 24417:1 24418:1 24425:1 24427:1 24449:1 24474:1 24477:1 24478:2 24493:6 24502:1 24504:1 24527:1 24542:3 24550:2 24578:1 24587:1 24601:3 24618:1 24636:1 24639:1 24643:2 24650:3 24660:1 24678:1 24681:1 24685:3 24687:1 24690:3 24692:3 24695:1 24698:1 24706:2 24727:1 24742:1 24775:1 24788:2 24792:1 24805:2 24840:1 24841:1 24847:1 24854:1 24857:1 24858:1 24874:1 24887:1 24904:1 24907:1 24916:3 24921:1 24925:1 24933:3 24936:1 24937:1 24943:1 24957:1 24959:1 24966:1 24969:1 24972:2 24974:1 24975:1 24983:1 24985:1 24990:2 25003:1 25011:1 25021:1 25022:1 25027:1 25032:1 25036:1 25041:1 25048:1 25077:2 25093:1 25115:2 25127:1 25133:1 25134:1 25139:2 25156:3 25167:3 25170:1 25173:1 25183:1 25184:2 25189:1 25191:1 25197:1 25224:7 25233:3 25238:1 25245:2 25300:1 25306:4 25337:4 25346:1 25356:1 25357:1 25364:2 25367:4 25369:1 25401:1 25415:1 25416:1 25423:1 25434:2 25437:1 25454:1 25464:1 25474:2 25494:5 25508:1 25510:1 25513:2 25516:2 25526:2 25545:4 25548:1 25552:4 25557:1 25561:3 25562:1 25569:1 25582:1 25590:1 25595:2 25600:1 25621:1 25623:1 25624:1 25635:4 25646:1 25659:3 25662:2 25666:1 25669:4 25670:1 25674:4 25678:2 25713:1 25724:1 25732:1 25841:1 25865:2 25878:1 25884:1 25897:1 25916:1 25920:1 25958:1 25967:1 26002:3 26017:1 26019:3 26025:1 26031:1 26032:1 26035:1 26036:1 26046:1 26047:1 26056:4 26062:1 26073:1 26084:1 26088:1 26106:1 26110:2 26133:1 26150:1 26158:1 26188:2 26195:1 26218:1 26223:1 26239:1 26243:1 26253:1 26255:1 26263:2 26269:1 26270:2 26278:1 26279:1 26286:3 26320:1 26324:1 26328:1 26329:2 26331:1 26354:2 26364:1 26390:1 26403:1 26405:1 26407:1 26411:1 26423:2 26434:1 26435:1 26437:3 26442:2 26445:1 26459:1 26482:1 26488:1 26490:3 26502:5 26530:1 26549:1 26550:1 26557:2 26565:1 26581:1 26582:1 26584:1 26605:1 26606:1 26608:1 26646:2 26665:1 26675:1 26679:1 26681:1 26689:3 26705:1 26718:1 26726:1 26729:1 26768:1 26780:1 26793:1 26794:1 26839:1 26867:1 26872:2 26873:1 26879:1 26897:1 26898:1 26932:1 26954:1 26966:1 26967:1 26977:1 26979:1 26984:1 26991:1 26998:1 27020:2 27049:1 27052:1 27063:1 27065:2 27075:2 27076:1 27100:3 27105:1 27115:2 27116:1 27126:1 27133:1 27134:1 27144:3 27151:1 27182:1 27186:1 27196:2 27198:1 27202:1 27211:1 27222:2 27223:1 27224:1 27226:1 27227:5 27231:1 27233:1 27245:3 27247:1 27265:1 27280:1 27299:3 27300:1 27305:2 27317:1 27335:1 27336:2 27344:1 27351:1 27357:1 27358:1 27365:1 27376:1 27383:1 27408:2 27412:1 27429:2 27436:2 27460:1 27466:1 27470:3 27471:3 27479:1 27481:1 27483:1 27484:1 27486:1 27487:4 27489:3 27490:2 27496:1 27498:2 27508:2 27511:1 27519:1 27527:2 27530:3 27539:3 27547:1 27578:1 27580:2 27586:1 27603:1 27612:2 27622:1 27626:2 27654:1 27655:2 27661:1 27664:2 27674:1 27681:1 27683:1 27687:2 27689:1 27691:2 27692:1 27705:1 27711:1 27713:1 27754:1 27797:11 27798:1 27799:1 27821:7 27835:1 27839:3 27842:2 27858:1 27862:1 27864:1 27871:1 27876:3 27890:1 27892:1 27912:2 27915:3 27986:2 27994:1 28003:1 28024:1 28030:1 28046:1 28052:1 28064:1 28065:1 28069:1 28074:1 28078:1 28082:1 28094:1 28101:1 28110:1 28113:2 28115:1 28133:2 28149:1 28209:1 28275:1 28293:1 28294:1 28303:1 28308:1 28319:2 28348:3 28349:4 28369:1 28382:6 28384:1 28393:1 28397:1 28401:1 28402:1 28413:2 28424:2 28425:1 28430:1 28501:1 28527:1 28533:2 28536:1 28558:1 28593:1 28614:3 28631:1 28632:4 28635:3 28636:1 28643:1 28658:1 28670:2 28673:1 28674:1 28685:1 28694:2 28722:1 28730:1 28731:1 28736:1 28759:3 28773:1 28776:1 28787:1 28803:2 28809:1 28833:1 28847:1 28884:1 28926:1 28944:1 28948:4 28966:1 28969:2 28976:1 28983:1 28995:1 29005:4 29012:2 29032:1 29042:1 29136:1 29137:1 29149:2 29152:2 29211:1 29225:1 29226:2 29233:1 29241:1 29263:2 29277:1 29279:2 29283:1 29287:1 29290:1 29298:2 29305:1 29313:1 29330:1 29336:1 29339:1 29342:1 29345:1 29346:1 29349:1 29351:1 29356:1 29359:1 29378:1 29383:1 29421:6 29433:1 29448:1 29474:1 29483:1 29485:1 29496:1 29515:8 29521:2 29529:1 29535:1 29547:1 29559:1 29562:1 29567:1 29570:1 29583:1 29605:3 29612:1 29623:1 29632:1 29643:2 29649:1 29654:1 29658:1 29676:4 29702:1 29704:3 29711:1 29721:1 29724:1 29728:1 29729:1 29735:1 29745:1 29775:1 29783:1 29800:1 29820:2 29824:1 29826:1 29831:2 29839:1 29841:1 29845:1 29847:1 29899:1 29904:1 29916:1 29927:1 29958:3 29969:1 29971:2 29974:3 29977:1 29995:1 29999:1 30002:2 30015:1 30035:1 30040:1 30044:1 30052:1 30059:1 30096:1 30100:1 30105:1 30142:1 30149:2 30156:2 30168:2 30169:1 30191:1 30199:1 30204:1 30213:2 30231:5 30249:1 30252:1 30267:1 30285:1 30297:1 30305:1 30306:1 30315:1 30327:1 30330:1 30331:2 30342:1 30357:1 30360:1 30370:1 30380:4 30393:2 30420:1 30431:1 30435:1 30445:1 30471:1 30475:4 30501:2 30504:3 30507:1 30510:2 30532:1 30548:2 30552:1 30572:2 30587:7 30589:3 30602:1 30638:1 30653:1 30660:1 30663:1 30664:5 30685:1 30688:1 30689:2 30697:1 30704:5 30710:1 30718:2 30730:1 30738:1 30775:1 30776:1 30789:2 30798:6 30802:3 30805:3 30809:2 30814:2 30834:1 30835:1 30843:4 30846:1 30854:2 30864:1 30867:1 30868:2 30869:1 30875:1 30880:1 30883:1 30884:1 30892:1 30895:1 30908:2 30956:2 30967:1 30968:1 30971:2 30977:2 30988:1 30994:2 30999:1 31009:1 31019:1 31020:1 31042:1 31046:3 31057:2 31062:1 31065:1 31095:1 31101:1 31104:2 31107:1 31125:2 31127:1 31130:1 31135:1 31142:2 31144:1 31158:2 31161:1 31172:1 31184:1 31191:1 31195:2 31197:2 31206:1 31209:1 31216:8 31221:1 31227:1 31287:1 31306:1 31315:1 31322:2 31324:1 31360:1 31363:2 31370:2 31388:1 31391:1 31392:3 31398:1 31404:1 31422:2 31440:2 31448:1 31452:3 31459:1 31461:3 31463:1 31476:1 31478:1 31480:1 31484:2 31485:3 31494:1 31521:1 31531:4 31538:1 31543:1 31547:1 31554:1 31566:1 31576:3 31583:1 31590:1 31622:1 31625:1 31635:1 31640:1 31649:1 31658:1 31665:19 31667:2 31670:2 31674:2 31679:1 31680:3 31686:1 31688:2 31704:7 31721:3 31727:1 31730:1 31750:1 31761:3 31763:1 31783:1 31790:1 31821:1 31827:2 31834:3 31842:1 31846:1 31853:1 31877:6 31894:1 31897:1 31910:1 31921:1 31932:1 31938:2 31952:1 31954:1 31960:1 31962:1 31974:1 31976:1 31998:2 32009:1 32027:1 32035:2 32041:1 32047:1 32061:1 32070:1 32083:1 32085:1 32094:1 32103:1 32105:2 32117:1 32125:1 32128:1 32140:1 32142:1 32153:1 32171:2 32172:2 32181:1 32201:1 32207:1 32212:1 32229:1 32241:4 32244:5 32277:1 32280:2 32299:1 32303:1 32304:1 32310:1 32312:1 32319:1 32335:2 32348:1 32403:1 32407:1 32433:1 32439:1 32443:4 32447:1 32451:1 32456:1 32471:4 32472:1 32476:1 32487:1 32491:3 32499:1 32551:1 32552:2 32579:1 32619:1 32625:1 32628:1 32632:1 32650:1 32651:1 32656:2 32660:1 32661:1 32693:2 32697:1 32713:4 32719:1 32722:1 32724:1 32750:3 32791:1 32795:1 32803:1 32808:2 32814:1 32818:1 32824:1 32834:1 32843:1 32846:2 32885:1 32899:1 32900:2 32910:2 32935:1 32941:2 32944:3 32956:2 32963:1 33001:2 33019:1 33025:1 33038:1 33041:5 33055:1 33056:3 33057:1 33059:1 33075:1 33084:1 33105:1 33108:1 33115:1 33133:1 33138:1 33141:3 33143:2 33146:1 33148:2 33149:1 33155:7 33164:1 33167:4 33168:1 33171:4 33198:1 33211:1 33220:2 33224:1 33225:1 33226:1 33232:1 33234:2 33267:1 33271:3
11 1:1 2:1 6:1 27:1 31:1 34:1 39:1 49:1 53:1 55:1 60:2 67:1 84:1 85:1 86:1 93:1 95:1 99:2 106:1 126:1 148:1 150:1 159:1 166:1 170:1 181:1 183:1 187:2 215:1 232:1 238:5 256:1 265:1 282:1 283:1 294:3 296:2 299:1 313:1 344:1 347:1 362:1 401:1 402:1 403:4 411:2 427:1 446:1 455:2 498:1 507:8 513:1 523:1 546:2 582:2 586:1 621:1 627:1 646:1 654:1 698:1 712:1 717:3 721:1 731:7 745:1 753:1 759:2 764:3 765:1 766:1 774:1 790:1 795:1 807:1 808:1 815:2 829:1 866:2 899:1 937:1 955:1 956:1 971:2 974:1 979:1 984:1 1003:2 1022:3 1049:1 1053:1 1057:1 1067:2 1069:1 1070:1 1071:5 1073:1 1083:1 1094:1 1103:1 1106:1 1118:1 1125:1 1127:1 1130:5 1132:1 1134:1 1141:2 1144:1 1158:1 1161:1 1168:2 1171:1 1199:1 1204:3 1211:1 1216:2 1220:1 1236:3 1239:1 1244:1 1257:1 1262:1 1265:1 1284:1 1309:1 1311:2 1316:1 1318:1 1321:1 1322:1 1351:1 1376:1 1378:1 1388:1 1392:1 1393:1 1403:1 1405:2 1413:1 1415:1 1421:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:1 1465:1 1467:1 1480:1 1481:1 1487:1 1496:2 1504:1 1509:1 1514:1 1538:1 1539:1 1545:1 1547:1 1588:2 1624:1 1626:2 1630:1 1635:1 1645:1 1650:1 1658:1 1664:4 1683:2 1686:1 1690:2 1691:1 1719:1 1726:7 1730:10 1739:10 1745:1 1747:1 1749:1 1751:2 1793:1 1807:1 1808:1 1837:4 1839:4 1841:1 1869:1 1878:2 1883:8 1892:1 1899:1 1906:2 1917:4 1941:1 1943:1 1948:1 1955:1 1956:1 1957:1 1963:1 1966:1 1977:1 1980:1 1999:1 2003:1 2019:1 2037:1 2041:1 2061:1 2062:1 2073:2 2078:1 2080:1 2086:1 2098:1 2113:1 2118:1 2119:1 2133:3 2135:1 2136:1 2137:3 2138:2 2141:1 2157:1 2158:1 2169:1 2177:2 2180:1 2187:1 2195:4 2209:1 2214:1 2223:1 2237:1 2241:1 2246:1 2249:2 2255:1 2263:2 2269:1 2279:1 2284:2 2301:1 2317:3 2322:1 2345:1 2348:1 2355:1 2367:1 2372:1 2373:4 2381:1 2397:1 2399:1 2419:1 2421:1 2422:1 2429:1 2437:1 2441:1 2465:1 2482:5 2496:1 2502:3 2508:1 2519:1 2521:1 2525:1 2529:1 2530:1 2547:1 2551:2 2552:1 2553:1 2555:4 2558:4 2562:1 2563:2 2570:1 2573:1 2576:2 2578:2 2579:3 2583:1 2585:1 2587:1 2613:1 2616:1 2618:3 2620:2 2623:3 2624:4 2625:2 2626:1 2630:1 2631:3 2632:1 2634:2 2635:2 2637:1 2640:2 2642:4 2647:5 2648:1 2652:1 2657:3 2662:2 2663:1 2681:1 2720:1 2732:1 2739:1 2753:2 2774:1 2784:1 2795:1 2801:3 2821:1 2831:3 2832:1 2864:1 2867:1 2868:1 2878:1 2888:1 2890:1 2896:1 2905:2 2918:2 2934:1 2951:1 2953:1 2955:1 2962:1 2964:1 2985:1 2992:1 2993:1 3008:1 3017:2 3030:1 3033:1 3039:1 3042:1 3049:1 3051:1 3059:1 3069:1 3071:1 3080:4 3097:1 3098:1 3106:6 3116:2 3121:2 3134:2 3145:1 3157:1 3165:3 3171:1 3173:2 3182:2 3193:1 3197:1 3201:2 3213:2 3257:1 3263:2 3283:1 3284:7 3291:1 3294:1 3295:8 3302:2 3314:1 3318:1 3336:4 3350:2 3351:1 3352:1 3353:9 3360:1 3364:2 3369:1 3377:1 3379:1 3380:1 3386:1 3397:1 3408:1 3411:2 3418:2 3433:2 3464:1 3474:1 3475:1 3482:1 3504:1 3517:1 3529:1 3539:1 3549:1 3550:2 3572:1 3578:2 3588:1 3625:1 3645:1 3646:1 3683:1 3690:2 3702:2 3721:3 3726:1 3744:1 3755:1 3758:3 3762:1 3765:1 3769:1 3772:1 3790:1 3799:1 3816:1 3821:1 3822:2 3853:1 3856:1 3857:2 3868:1 3917:1 3926:1 3930:2 3936:1 3939:1 3942:2 3945:1 3951:1 3968:1 3974:1 3978:1 3990:1 4005:1 4011:1 4012:1 4018:1 4020:1 4033:1 4035:2 4040:1 4047:3 4074:1 4105:1 4115:1 4122:1 4131:1 4160:4 4174:5 4193:3 4195:1 4207:1 4225:1 4245:1 4247:2 4252:3 4253:11 4267:1 4271:1 4279:1 4288:4 4289:3 4291:1 4292:1 4303:1 4306:5 4308:1 4332:4 4334:1 4351:3 4356:1 4378:1 4382:1 4405:1 4454:1 4456:1 4465:1 4470:1 4477:1 4484:1 4487:1 4488:1 4510:2 4511:1 4512:1 4529:1 4531:2 4533:1 4536:3 4540:2 4545:3 4547:1 4573:1 4574:2 4575:1 4581:2 4585:1 4593:1 4609:1 4628:2 4637:1 4663:1 4667:1 4684:1 4686:1 4714:1 4727:1 4728:1 4730:1 4758:1 4763:5 4767:7 4773:1 4785:1 4792:1 4793:4 4824:2 4842:2 4863:1 4872:5 4877:2 4888:2 4889:1 4906:1 4907:1 4929:1 4933:1 4936:2 4951:1 4959:1 4974:1 4989:1 4991:1 5000:1 5020:1 5022:1 5025:1 5030:1 5033:4 5045:2 5066:1 5072:1 5082:1 5098:1 5106:1 5136:2 5143:5 5162:1 5163:1 5168:1 5171:1 5198:1 5212:1 5239:1 5246:3 5269:1 5276:1 5287:3 5299:1 5312:1 5337:2 5340:5 5365:1 5369:3 5397:1 5462:1 5471:1 5490:1 5491:1 5516:1 5517:1 5562:33 5564:2 5596:2 5610:1 5671:1 5689:1 5690:3 5706:1 5717:3 5718:7 5719:3 5720:2 5722:1 5725:2 5730:1 5731:3 5733:3 5735:2 5740:1 5744:1 5748:1 5750:5 5752:3 5763:1 5766:1 5770:1 5781:1 5788:1 5811:1 5814:2 5825:1 5832:1 5844:1 5853:2 5855:1 5868:1 5873:1 5898:1 5907:1 5965:3 5975:1 6027:1 6038:1 6084:2 6088:1 6089:1 6108:1 6115:1 6124:1 6144:3 6150:3 6165:2 6169:2 6181:1 6186:1 6224:1 6233:1 6237:1 6283:2 6284:1 6292:1 6299:1 6300:1 6305:3 6319:3 6322:1 6327:1 6328:1 6335:3 6345:2 6355:1 6372:2 6374:2 6382:1 6385:1 6388:1 6391:2 6395:1 6397:2 6400:1 6407:2 6412:1 6418:2 6428:1 6431:1 6435:2 6454:1 6459:6 6469:1 6480:4 6496:1 6506:1 6508:2 6509:2 6520:1 6529:1 6531:1 6533:1 6536:1 6537:1 6540:1 6547:1 6548:1 6553:1 6558:4 6570:1 6581:4 6584:1 6610:1 6624:1 6688:5 6692:2 6699:1 6706:1 6707:1 6750:1 6776:1 6793:1 6795:1 6806:1 6816:1 6819:2 6827:1 6843:1 6847:4 6884:1 6888:2 6890:2 6897:4 6939:1 6944:1 6961:6 6980:2 6994:2 7003:1 7008:1 7012:1 7025:1 7038:1 7044:1 7059:1 7062:1 7066:1 7081:1 7087:2 7088:3 7089:1 7090:1 7091:1 7101:1 7103:1 7114:2 7132:2 7150:1 7190:2 7192:1 7193:1 7196:1 7197:4 7200:3 7201:1 7204:3 7207:3 7209:1 7210:1 7211:2 7217:1 7218:8 7221:1 7222:3 7224:1 7258:1 7272:1 7279:1 7303:1 7306:1 7307:1 7365:1 7380:1 7381:1 7389:1 7406:2 7410:1 7429:1 7435:2 7439:1 7463:1 7469:1 7497:1 7511:1 7512:1 7535:1 7539:2 7543:1 7552:1 7559:1 7570:1 7574:1 7589:2 7599:1 7602:1 7613:1 7619:1 7628:1 7637:1 7648:3 7649:1 7659:1 7662:1 7671:4 7672:1 7676:2 7691:1 7705:5 7707:1 7724:1 7741:1 7745:2 7748:1 7750:3 7766:1 7776:1 7791:1 7792:1 7794:1 7822:1 7825:1 7839:2 7840:1 7855:1 7867:1 7879:3 7912:2 7913:1 7927:1 7941:2 7949:1 7954:1 7956:1 7961:1 7984:1 7988:1 7993:1 8007:2 8025:2 8027:2 8043:1 8045:1 8054:1 8064:1 8075:7 8089:2 8090:1 8105:2 8129:1 8139:1 8143:4 8150:1 8155:1 8167:1 8196:1 8216:1 8230:1 8247:1 8258:2 8277:4 8299:1 8302:1 8328:3 8338:1 8340:1 8347:1 8387:1 8389:3 8413:1 8417:2 8426:1 8432:3 8439:1 8454:1 8474:1 8478:1 8491:1 8494:1 8498:1 8499:1 8504:1 8531:1 8560:1 8562:1 8567:1 8570:1 8573:1 8575:1 8582:1 8599:1 8609:4 8611:1 8615:1 8619:1 8624:5 8630:3 8631:6 8633:4 8653:1 8654:1 8659:1 8663:1 8684:1 8688:2 8689:1 8702:40 8716:1 8717:1 8725:1 8726:9 8728:6 8734:1 8767:1 8783:1 8793:1 8796:2 8797:1 8810:1 8815:2 8816:1 8860:1 8864:1 8874:1 8880:1 8886:1 8890:1 8891:1 8901:1 8909:1 8923:1 8932:2 8935:7 8957:1 8960:1 8974:1 8982:5 8987:1 8992:1 9048:1 9059:1 9094:2 9127:1 9135:1 9143:1 9157:4 9168:2 9179:1 9183:1 9186:1 9203:3 9221:2 9222:1 9231:1 9232:18 9264:1 9267:1 9276:1 9279:1 9289:1 9298:1 9299:1 9324:1 9332:1 9335:1 9340:1 9381:1 9394:2 9425:1 9430:1 9435:1 9441:1 9466:1 9470:1 9473:1 9484:1 9493:1 9507:2 9508:1 9529:1 9540:2 9542:1 9544:2 9561:1 9563:1 9623:2 9630:1 9632:1 9633:1 9634:3 9638:1 9640:1 9642:2 9644:2 9646:1 9648:3 9649:2 9654:2 9661:1 9665:1 9675:1 9688:1 9690:1 9697:2 9705:1 9742:1 9743:1 9746:1 9770:1 9781:1 9788:1 9806:1 9807:1 9810:1 9815:1 9823:1 9826:1 9833:1 9836:1 9842:2 9882:1 9901:3 9907:1 9923:1 9931:1 9937:2 9942:1 9945:2 9952:1 9965:1 9974:1 9976:3 9988:1 9994:1 9999:1 10008:2 10015:1 10022:1 10027:3 10035:1 10070:1 10087:1 10092:1 10095:1 10117:1 10121:1 10124:1 10138:1 10142:1 10150:2 10152:1 10159:1 10161:2 10197:1 10209:2 10210:2 10265:1 10275:1 10282:1 10291:1 10294:1 10307:3 10331:1 10332:1 10338:1 10340:1 10345:6 10349:1 10362:1 10367:1 10371:1 10373:1 10374:1 10376:1 10389:1 10407:1 10422:1 10430:1 10434:5 10436:1 10445:1 10450:1 10459:1 10465:1 10479:1 10497:1 10502:1 10517:2 10518:1 10522:2 10524:1 10533:1 10540:1 10549:1 10554:1 10575:1 10583:1 10584:2 10586:1 10591:1 10598:1 10602:1 10619:1 10621:1 10623:1 10627:1 10643:2 10648:1 10666:2 10695:1 10709:3 10732:1 10752:2 10764:1 10765:1 10792:1 10800:1 10804:1 10806:1 10807:2 10822:1 10828:2 10846:1 10867:2 10876:1 10877:1 10886:1 10892:1 10913:2 10948:8 10969:1 10970:1 10972:1 10973:3 10996:1 10997:2 10999:1 11011:1 11020:1 11029:1 11030:1 11052:1 11063:1 11067:1 11079:1 11094:2 11119:2 11133:3 11141:1 11163:2 11170:2 11171:1 11172:1 11175:1 11178:2 11188:3 11200:1 11201:1 11208:1 11210:3 11214:2 11218:1 11222:1 11225:1 11226:1 11231:2 11232:1 11234:2 11242:2 11265:1 11266:2 11276:4 11288:2 11291:1 11302:1 11308:1 11309:1 11324:1 11331:1 11342:1 11356:1 11362:1 11376:6 11383:2 11431:1 11433:1 11438:1 11445:1 11448:1 11450:1 11451:1 11456:1 11464:1 11488:1 11492:1 11499:1 11517:2 11526:1 11550:1 11573:1 11575:1 11588:1 11594:1 11601:1 11603:1 11607:3 11611:3 11637:1 11656:1 11660:1 11674:1 11677:2 11690:1 11695:1 11697:1 11701:3 11717:1 11730:1 11741:1 11744:1 11778:1 11784:4 11795:1 11796:1 11811:1 11820:1 11822:6 11830:1 11841:1 11842:1 11846:1 11854:1 11855:1 11858:1 11860:1 11895:1 11899:1 11906:3 11912:1 11914:3 11930:1 11931:1 11933:1 11949:2 11955:1 11966:1 12002:1 12005:1 12015:4 12023:1 12026:2 12031:1 12039:3 12050:3 12099:1 12109:1 12145:1 12149:1 12154:1 12162:1 12169:2 12197:1 12213:1 12214:1 12255:1 12266:1 12274:1 12275:1 12284:1 12307:2 12310:1 12319:1 12325:1 12327:3 12329:3 12333:1 12335:1 12336:4 12337:1 12339:1 12350:1 12352:2 12354:1 12356:1 12361:1 12369:1 12377:1 12379:1 12389:1 12406:1 12427:1 12434:2 12438:1 12448:1 12472:1 12475:1 12477:1 12487:1 12501:1 12526:1 12551:1 12552:1 12559:1 12580:1 12596:1 12618:4 12630:2 12640:1 12647:1 12682:1 12733:1 12741:1 12743:1 12762:1 12766:1 12770:1 12775:1 12776:1 12805:1 12811:3 12814:2 12819:1 12836:1 12845:1 12862:1 12865:8 12876:1 12877:1 12893:1 12902:1 12910:2 12915:1 12918:1 12923:1 12928:2 12933:1 12935:1 12936:1 12952:1 12954:1 12970:1 12977:2 12988:3 13000:1 13005:1 13009:1 13012:1 13015:1 13018:3 13027:1 13032:1 13050:2 13061:2 13064:1 13073:1 13081:1 13085:3 13088:3 13089:2 13094:2 13111:1 13116:1 13128:8 13135:1 13137:1 13138:2 13142:3 13148:1 13149:1 13150:2 13151:6 13152:1 13153:1 13156:1 13162:6 13168:1 13192:1 13196:1 13202:1 13220:2 13228:1 13231:1 13244:1 13254:1 13264:2 13285:1 13294:1 13302:1 13308:1 13320:4 13365:1 13391:1 13408:1 13410:3 13415:1 13423:2 13427:1 13429:1 13434:1 13443:1 13448:2 13456:1 13461:1 13463:1 13473:3 13476:1 13480:2 13486:1 13515:2 13517:3 13527:1 13552:1 13553:2 13556:1 13590:1 13592:1 13600:1 13606:2 13608:1 13611:1 13616:1 13621:1 13649:1 13653:2 13654:2 13662:1 13674:1 13684:3 13685:4 13690:1 13700:1 13718:2 13738:1 13742:1 13750:2 13778:1 13805:1 13815:1 13821:2 13826:2 13830:1 13848:1 13863:2 13873:4 13895:2 13896:2 13899:1 13921:1 13933:1 13939:1 13940:1 13976:1 14007:1 14011:1 14018:1 14021:1 14030:1 14037:1 14039:1 14055:1 14061:1 14101:1 14102:2 14119:1 14146:1 14162:3 14180:1 14183:2 14207:1 14210:1 14214:2 14242:1 14256:2 14267:1 14281:1 14318:2 14319:1 14341:1 14345:6 14353:1 14356:2 14361:1 14370:3 14376:1 14380:1 14384:1 14402:1 14409:1 14410:1 14416:1 14421:1 14436:1 14443:1 14449:1 14468:1 14471:1 14472:1 14473:4 14480:1 14483:2 14489:1 14497:1 14518:1 14520:1 14541:1 14545:1 14572:1 14577:1 14581:1 14583:1 14589:1 14592:1 14620:1 14633:1 14640:1 14652:1 14658:2 14688:1 14697:1 14706:1 14753:1 14781:1 14793:5 14804:1 14806:1 14831:1 14841:1 14854:2 14858:1 14859:1 14867:1 14870:2 14873:1 14877:6 14881:4 14883:1 14891:1 14895:1 14896:1 14904:2 14907:7 14915:1 14921:2 14935:2 14940:1 14942:2 14945:1 14949:3 14957:1 14958:1 14960:1 14975:2 14979:1 14980:1 14999:1 15005:1 15019:1 15028:1 15033:2 15039:5 15040:1 15054:1 15059:1 15066:1 15079:1 15082:1 15087:1 15122:1 15125:4 15131:1 15161:1 15187:1 15191:1 15215:1 15216:1 15217:5 15236:1 15246:1 15251:1 15259:1 15275:1 15278:1 15281:2 15293:1 15311:1 15322:1 15325:3 15333:1 15336:1 15374:1 15381:2 15386:1 15429:1 15443:1 15476:1 15477:3 15480:1 15483:2 15487:1 15489:2 15496:1 15508:1 15513:1 15519:1 15520:1 15523:1 15543:1 15551:1 15574:2 15616:4 15622:1 15625:2 15645:1 15662:1 15664:1 15666:2 15680:2 15725:1 15728:5 15734:5 15740:2 15749:1 15780:2 15811:2 15820:2 15840:1 15855:1 15861:1 15900:2 15905:1 15923:1 15934:1 15945:1 15955:1 15959:1 15960:1 15962:1 15974:3 15986:1 15990:1 15993:1 15996:2 15997:1 16000:3 16021:1 16026:1 16030:1 16033:1 16040:2 16042:1 16043:1 16046:1 16067:1 16092:1 16098:2 16114:1 16145:1 16152:1 16178:2 16183:1 16187:1 16189:1 16197:1 16198:1 16214:1 16227:3 16229:1 16236:1 16237:1 16254:1 16266:1 16270:1 16273:1 16284:1 16289:1 16321:1 16330:4 16347:1 16350:2 16351:1 16355:1 16362:1 16390:2 16393:2 16411:1 16422:1 16427:2 16428:1 16433:2 16448:1 16451:1 16457:1 16463:1 16484:3 16508:3 16523:1 16534:1 16538:1 16556:2 16559:2 16566:3 16598:1 16606:1 16608:1 16630:1 16634:1 16642:1 16650:2 16674:2 16678:1 16684:5 16693:1 16694:1 16721:2 16723:1 16739:1 16741:1 16753:1 16762:1 16782:8 16783:1 16787:1 16789:1 16793:1 16831:1 16832:4 16835:1 16842:1 16846:2 16848:1 16860:1 16884:2 16904:1 16936:3 16940:2 16942:1 16944:1 16971:3 16973:3 16988:3 16990:1 16999:1 17012:2 17042:1 17045:4 17046:1 17048:1 17053:2 17056:1 17061:1 17063:1 17098:2 17103:1 17105:1 17127:1 17140:1 17155:1 17176:1 17187:1 17194:3 17214:1 17219:1 17224:1 17226:1 17246:1 17251:3 17269:1 17289:2 17293:1 17297:1 17314:1 17317:1 17318:1 17324:2 17370:1 17379:1 17389:1 17406:1 17423:12 17433:1 17437:1 17448:1 17479:2 17499:1 17514:1 17516:1 17528:1 17531:1 17539:1 17543:1 17567:1 17581:1 17586:2 17596:1 17598:1 17610:1 17648:1 17661:3 17673:1 17681:1 17689:12 17694:1 17695:1 17698:1 17699:1 17700:3 17709:1 17710:3 17714:1 17715:1 17718:1 17729:2 17731:2 17740:1 17752:1 17758:1 17767:1 17771:1 17775:2 17776:1 17783:1 17784:2 17805:4 17824:1 17829:1 17830:2 17857:2 17860:2 17866:1 17871:1 17876:1 17880:1 17884:1 17888:5 17951:1 17953:4 17955:1 17989:1 18008:1 18049:2 18053:4 18074:4 18108:1 18111:1 18114:1 18141:1 18148:1 18157:3 18187:1 18195:8 18214:3 18220:1 18226:1 18234:2 18236:1 18243:2 18247:1 18258:1 18260:1 18273:1 18281:2 18302:1 18306:1 18308:2 18313:1 18315:1 18319:4 18321:2 18322:1 18327:1 18329:1 18330:1 18332:2 18340:2 18341:1 18342:5 18344:1 18351:1 18352:3 18372:1 18375:1 18401:1 18416:1 18417:1 18492:3 18527:2 18561:1 18584:1 18619:1 18635:2 18683:1 18684:1 18693:1 18697:1 18699:1 18702:1 18708:1 18717:1 18727:1 18732:1 18738:1 18739:2 18777:2 18785:1 18794:1 18799:2 18807:1 18808:2 18821:1 18842:1 18879:1 18896:1 18908:1 18911:3 18919:4 18928:1 18966:1 18967:1 19000:1 19005:1 19024:1 19029:3 19030:1 19035:1 19039:1 19043:1 19050:1 19059:4 19062:2 19069:2 19081:1 19089:2 19103:2 19108:1 19135:1 19139:5 19155:1 19165:3 19169:1 19177:1 19182:1 19200:4 19207:1 19208:1 19209:1 19216:3 19233:1 19248:2 19276:1 19320:8 19329:1 19345:1 19351:1 19352:1 19354:1 19357:3 19362:1 19372:1 19398:2 19417:1 19443:1 19444:1 19448:1 19452:1 19465:1 19471:1 19503:1 19508:2 19509:1 19526:1 19566:1 19567:1 19583:1 19585:1 19622:1 19628:1 19634:1 19637:1 19643:1 19655:1 19663:2 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19758:1 19763:3 19772:5 19774:1 19776:1 19781:2 19783:1 19784:1 19794:1 19797:1 19809:1 19816:1 19843:3 19849:2 19850:1 19867:1 19872:1 19897:1 19904:1 19910:1 19919:1 19936:1 19951:2 19962:1 19965:1 19966:1 20000:1 20007:2 20020:2 20031:1 20032:1 20045:1 20077:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:2 20123:2 20124:6 20128:3 20136:1 20142:1 20143:1 20146:1 20166:2 20174:1 20180:1 20181:1 20183:1 20200:1 20202:1 20219:1 20220:1 20225:3 20231:1 20237:1 20239:1 20241:1 20243:1 20286:1 20287:1 20300:2 20309:2 20341:1 20360:1 20373:1 20391:1 20394:1 20400:1 20405:1 20406:1 20407:2 20412:1 20416:1 20441:1 20454:1 20460:1 20477:1 20492:2 20499:1 20503:1 20516:1 20517:1 20518:1 20524:1 20525:1 20540:1 20561:1 20569:1 20635:3 20645:1 20681:1 20682:1 20692:2 20697:2 20706:1 20709:1 20742:3 20792:1 20803:7 20814:2 20815:2 20831:1 20851:1 20876:1 20893:1 20894:1 20895:1 20900:2 20906:1 20929:1 20936:1 20942:2 20949:1 20951:1 20970:1 20974:2 20983:3 20996:2 21003:1 21004:1 21016:1 21041:1 21047:3006 21068:3 21070:1 21079:2 21087:1 21096:1 21164:1 21173:2 21178:1 21205:1 21234:1 21241:1 21278:1 21279:2 21291:1 21292:2 21295:1 21308:1 21355:1 21362:1 21372:1 21374:1 21382:1 21398:1 21401:3 21408:1 21419:1 21431:1 21444:1 21449:1 21466:1 21478:1 21487:1 21512:1 21515:3 21518:1 21539:1 21551:1 21566:1 21571:1 21585:1 21601:1 21602:1 21644:1 21689:2 21692:1 21709:2 21729:1 21735:4 21790:1 21802:1 21806:1 21808:1 21812:1 21813:1 21817:1 21821:2 21827:3 21833:1 21843:1 21856:2 21861:2 21874:1 21877:1 21883:1 21895:2 21907:1 21918:2 21921:6 21952:1 21953:6 21959:1 21960:1 21961:1 21966:1 21976:1 21992:1 22001:2 22020:3 22025:1 22029:2 22032:1 22041:1 22043:1 22045:2 22072:4 22082:1 22095:3 22107:1 22119:1 22127:1 22138:1 22143:1 22157:1 22162:1 22173:3 22174:1 22178:3 22181:1 22214:1 22227:1 22235:1 22240:1 22245:2 22262:1 22267:1 22271:1 22281:1 22294:1 22301:4 22306:1 22311:1 22318:1 22325:1 22344:1 22351:1 22364:1 22370:1 22375:1 22382:1 22404:2 22415:1 22423:3 22459:1 22479:2 22483:1 22495:1 22503:2 22504:1 22508:1 22526:2 22530:1 22540:1 22545:1 22548:3 22553:1 22562:1 22565:2 22569:1 22572:1 22573:2 22583:1 22586:1 22603:1 22615:1 22617:1 22626:3 22644:2 22681:3 22688:1 22690:1 22698:1 22713:1 22737:2 22740:1 22750:1 22766:2 22774:1 22791:1 22793:1 22815:4 22824:1 22829:1 22834:1 22835:1 22837:1 22845:1 22851:1 22852:1 22870:4 22871:1 22877:2 22889:2 22952:1 22954:1 22966:1 22984:2 22992:1 23002:1 23004:1 23005:1 23036:2 23046:1 23055:1 23059:1 23100:1 23108:3 23113:1 23116:1 23129:1 23147:2 23156:1 23160:4 23163:1 23169:3 23172:1 23175:1 23183:1 23243:1 23257:1 23277:1 23279:1 23281:1 23288:1 23290:1 23330:1 23353:1 23359:1 23363:1 23367:1 23381:1 23383:1 23390:1 23415:2 23416:1 23419:1 23432:1 23434:1 23444:4 23447:2 23453:1 23456:1 23463:1 23490:4 23504:2 23518:1 23521:2 23523:1 23527:1 23529:1 23532:1 23544:3 23550:3 23556:1 23561:1 23570:1 23572:1 23580:3 23583:1 23585:1 23612:1 23617:1 23622:2 23626:1 23644:2 23649:2 23656:1 23657:1 23658:1 23663:1 23669:2 23723:2 23728:1 23729:1 23736:1 23745:4 23746:1 23751:1 23752:2 23756:1 23765:1 23773:1 23782:1 23790:1 23800:1 23802:2 23831:1 23837:1 23852:1 23853:1 23858:1 23859:1 23861:1 23863:1 23898:1 23901:1 23917:1 23919:2 23927:1 23931:1 23943:1 23949:1 23951:1 23953:2 23955:2 23985:1 23991:1 24009:1 24013:1 24024:5 24032:1 24039:1 24057:3 24058:1 24074:1 24082:2 24090:1 24098:1 24099:1 24113:2 24114:1 24133:1 24138:1 24143:1 24144:1 24151:1 24166:1 24168:1 24194:1 24195:1 24197:1 24198:1 24201:1 24205:3 24206:2 24207:1 24208:1 24214:1 24217:1 24218:1 24222:1 24226:2 24229:1 24241:1 24250:1 24255:2 24262:2 24263:3 24274:1 24276:2 24279:1 24289:1 24308:1 24314:1 24321:1 24323:1 24334:1 24358:1 24359:2 24366:5 24368:1 24369:1 24373:2 24379:1 24383:2 24386:1 24394:1 24398:1 24401:1 24417:1 24418:1 24425:1 24427:1 24442:1 24449:1 24474:1 24477:1 24478:2 24493:6 24502:1 24504:1 24527:1 24541:1 24542:3 24550:2 24578:1 24587:1 24601:3 24618:1 24636:1 24639:1 24643:2 24650:3 24660:1 24678:1 24681:1 24685:3 24687:1 24690:3 24692:3 24695:1 24698:1 24706:2 24727:1 24742:1 24775:1 24788:2 24792:1 24805:2 24840:1 24841:1 24847:1 24854:1 24857:1 24858:1 24874:1 24887:1 24904:1 24907:1 24916:3 24921:1 24925:1 24933:3 24936:1 24937:1 24943:1 24957:1 24959:1 24966:1 24969:1 24972:2 24974:1 24975:1 24983:1 24985:2 24990:2 25003:1 25011:1 25021:1 25022:1 25027:1 25032:1 25036:1 25041:1 25048:1 25077:2 25093:1 25115:2 25127:1 25133:1 25134:1 25139:2 25156:3 25167:3 25170:1 25173:1 25183:1 25184:2 25189:1 25191:1 25197:1 25224:7 25233:3 25238:1 25245:2 25300:1 25306:5 25337:4 25346:1 25356:1 25357:1 25364:2 25366:1 25367:4 25369:1 25401:1 25413:1 25415:1 25416:1 25423:1 25434:2 25437:1 25454:1 25464:1 25474:2 25494:5 25508:1 25510:1 25513:2 25516:2 25526:2 25545:4 25548:1 25552:4 25557:1 25561:3 25562:1 25569:1 25582:1 25590:1 25595:2 25600:1 25621:1 25623:1 25624:1 25635:4 25646:1 25659:3 25662:2 25666:1 25669:4 25670:1 25674:4 25678:2 25713:1 25714:1 25724:1 25732:1 25841:1 25865:2 25878:1 25883:1 25884:1 25897:1 25916:1 25920:1 25958:1 25967:1 26002:3 26017:1 26019:3 26025:1 26031:1 26032:1 26035:1 26036:1 26046:1 26047:1 26056:4 26062:1 26073:1 26084:1 26088:1 26106:1 26110:2 26133:1 26150:1 26158:1 26188:2 26195:1 26218:1 26223:1 26239:1 26243:1 26253:1 26255:1 26263:2 26269:1 26270:2 26278:1 26279:1 26286:4 26320:1 26324:1 26328:1 26329:2 26331:1 26354:2 26364:1 26390:1 26403:1 26405:1 26407:1 26411:1 26423:2 26434:1 26435:1 26437:3 26442:2 26445:1 26459:1 26482:1 26488:1 26490:3 26502:5 26530:1 26549:1 26550:1 26557:2 26565:1 26581:1 26582:1 26584:1 26605:1 26606:1 26608:1 26646:2 26665:1 26675:1 26679:1 26681:1 26689:3 26705:1 26718:1 26726:1 26729:1 26768:1 26780:1 26793:1 26794:1 26839:1 26867:1 26872:2 26873:1 26879:1 26890:1 26897:1 26898:1 26932:1 26954:1 26966:1 26967:1 26977:1 26979:1 26984:1 26991:1 26998:1 27020:2 27049:1 27052:1 27063:1 27065:3 27075:2 27076:1 27100:3 27105:1 27115:2 27116:1 27126:1 27133:1 27134:1 27144:3 27151:1 27182:1 27186:1 27196:2 27198:1 27202:1 27211:1 27222:2 27223:1 27224:1 27226:1 27227:5 27231:1 27233:1 27245:3 27247:1 27265:1 27280:1 27299:3 27300:1 27305:2 27317:1 27335:1 27336:2 27344:1 27351:1 27357:1 27358:1 27365:1 27376:1 27383:1 27390:1 27408:2 27412:1 27429:2 27436:2 27460:1 27466:1 27470:3 27471:3 27479:1 27481:1 27483:1 27484:1 27486:1 27487:4 27489:3 27490:2 27496:1 27498:2 27508:2 27511:1 27519:1 27527:2 27530:3 27539:3 27547:1 27578:1 27580:2 27586:1 27603:1 27612:2 27622:1 27626:2 27654:1 27655:2 27661:1 27664:2 27674:1 27681:1 27683:1 27687:2 27689:1 27691:2 27692:1 27705:1 27711:1 27713:1 27754:1 27797:11 27798:1 27799:1 27821:8 27835:1 27839:3 27842:2 27858:1 27862:1 27864:1 27871:1 27876:3 27890:1 27892:1 27912:2 27915:3 27986:2 27994:1 28003:1 28024:1 28030:1 28046:1 28052:1 28064:1 28065:1 28069:1 28074:1 28078:1 28082:1 28094:1 28101:1 28110:1 28113:2 28115:1 28133:2 28149:1 28209:1 28275:1 28293:1 28294:1 28303:1 28308:1 28319:2 28348:3 28349:4 28369:1 28382:6 28384:1 28393:1 28397:1 28401:1 28402:1 28413:2 28424:2 28425:1 28430:1 28501:1 28527:1 28533:2 28536:1 28558:1 28593:1 28614:3 28631:1 28632:4 28635:3 28636:1 28643:1 28658:1 28670:2 28673:1 28674:1 28685:1 28694:2 28722:1 28730:1 28731:1 28736:1 28759:3 28773:1 28776:1 28787:1 28803:2 28809:1 28833:1 28847:1 28884:1 28885:1 28926:1 28944:1 28948:4 28966:1 28969:2 28976:1 28983:1 28995:1 29005:4 29012:2 29032:1 29042:1 29136:1 29137:2 29149:2 29152:2 29211:1 29225:1 29226:2 29233:1 29241:1 29263:2 29277:1 29279:3 29283:1 29287:1 29290:1 29298:2 29305:1 29313:1 29330:1 29336:1 29339:1 29342:1 29345:1 29346:1 29349:1 29351:1 29356:1 29359:1 29378:1 29383:1 29421:6 29433:1 29448:1 29474:1 29483:1 29485:1 29496:1 29515:8 29521:2 29529:1 29535:1 29547:1 29559:1 29562:1 29567:1 29570:1 29583:1 29605:3 29612:1 29623:1 29632:1 29643:3 29649:1 29654:1 29658:1 29676:4 29702:1 29704:3 29711:1 29721:1 29724:1 29728:1 29729:1 29735:1 29745:1 29775:1 29783:1 29800:1 29820:2 29824:1 29825:1 29826:1 29831:2 29839:1 29841:1 29845:1 29847:1 29899:1 29904:1 29916:1 29927:1 29958:4 29969:1 29971:3 29974:3 29977:1 29995:1 29999:1 30002:2 30015:1 30035:1 30040:1 30044:1 30052:1 30059:1 30096:1 30100:2 30105:1 30142:1 30149:2 30156:2 30168:2 30169:1 30191:1 30199:1 30204:1 30213:2 30231:5 30249:1 30252:1 30267:1 30285:1 30297:1 30305:1 30306:1 30315:1 30327:1 30330:1 30331:2 30342:1 30357:1 30360:1 30370:1 30380:4 30393:2 30420:1 30431:1 30435:1 30445:1 30454:1 30471:1 30475:4 30501:2 30504:3 30507:1 30510:2 30532:1 30548:2 30552:2 30572:2 30587:7 30589:3 30602:1 30638:1 30653:1 30660:1 30663:1 30664:5 30685:1 30688:1 30689:2 30697:1 30704:5 30710:1 30718:2 30730:1 30738:1 30775:1 30776:1 30789:2 30798:6 30802:3 30805:3 30809:2 30814:2 30834:1 30835:1 30843:4 30846:1 30854:2 30864:1 30867:1 30868:2 30869:1 30875:1 30880:1 30883:1 30884:1 30892:1 30895:1 30908:2 30956:2 30967:2 30968:1 30971:2 30977:2 30988:1 30994:2 30999:1 31009:1 31019:1 31020:1 31042:1 31046:3 31057:2 31062:1 31065:1 31082:1 31095:1 31101:1 31104:2 31107:1 31125:2 31127:1 31130:1 31135:1 31142:2 31144:1 31158:2 31161:1 31172:1 31184:1 31191:1 31195:2 31197:2 31206:1 31209:1 31216:8 31221:1 31227:1 31287:1 31306:1 31315:1 31322:2 31324:1 31360:1 31363:2 31370:2 31388:1 31391:1 31392:3 31398:1 31404:1 31422:2 31440:2 31448:1 31452:3 31459:1 31461:3 31463:1 31476:1 31478:1 31480:1 31484:2 31485:3 31494:1 31521:1 31531:4 31538:1 31543:1 31547:1 31554:1 31566:1 31576:3 31583:1 31590:1 31622:1 31625:1 31635:1 31640:1 31649:1 31658:1 31665:19 31667:2 31670:2 31674:2 31679:1 31680:3 31686:1 31688:2 31704:8 31721:3 31727:1 31730:1 31750:1 31761:3 31763:1 31783:1 31790:1 31821:1 31827:2 31834:3 31842:1 31846:1 31853:1 31877:6 31894:1 31897:1 31910:1 31911:1 31921:1 31932:1 31938:2 31952:1 31954:1 31960:1 31962:1 31974:1 31976:1 31998:2 32009:1 32027:1 32035:2 32041:1 32047:1 32053:1 32061:1 32070:1 32083:1 32085:1 32094:1 32103:1 32105:2 32117:1 32125:1 32128:1 32140:1 32142:1 32153:1 32171:2 32172:2 32181:1 32201:1 32207:1 32212:1 32229:1 32241:4 32244:5 32277:1 32280:3 32299:1 32303:1 32304:1 32310:1 32312:1 32319:1 32335:2 32348:1 32403:1 32407:1 32433:1 32439:1 32443:4 32447:1 32451:1 32456:1 32471:4 32472:1 32476:1 32487:1 32491:3 32499:1 32551:1 32552:2 32579:1 32619:1 32625:1 32628:1 32632:1 32650:1 32651:1 32656:2 32660:1 32661:1 32693:2 32697:1 32713:4 32719:1 32722:1 32724:1 32750:3 32791:1 32795:1 32803:1 32808:2 32814:1 32818:1 32824:1 32834:1 32843:1 32846:2 32885:1 32899:1 32900:2 32910:2 32935:1 32941:2 32944:3 32956:2 32963:1 33001:2 33019:1 33025:1 33038:1 33041:5 33055:1 33056:3 33057:1 33059:1 33075:1 33084:1 33105:1 33108:1 33115:1 33133:1 33138:1 33141:3 33143:2 33146:1 33148:2 33149:1 33155:7 33164:1 33167:4 33168:1 33171:4 33198:1 33211:1 33220:2 33224:1 33225:1 33226:1 33232:1 33234:2 33267:1 33271:3
11 1:1 2:1 6:1 27:1 31:1 34:1 39:1 49:1 53:1 55:1 60:2 67:1 84:1 85:1 86:1 93:1 95:1 99:2 106:1 126:1 148:1 150:1 159:1 166:1 170:1 181:1 183:1 187:2 215:1 232:1 238:5 256:1 265:1 282:1 283:1 294:3 296:2 299:1 313:1 344:1 347:1 362:1 378:1 401:1 402:1 403:4 411:2 415:2 427:2 446:1 455:2 498:1 507:8 513:1 523:1 546:2 582:2 586:1 621:1 627:1 646:1 654:1 698:1 712:1 717:3 721:1 731:7 745:1 753:1 759:2 764:4 765:1 766:1 774:1 790:1 795:1 807:1 808:1 815:2 829:1 866:2 899:1 937:1 955:1 956:1 971:2 974:1 979:1 984:1 1003:2 1022:3 1049:1 1053:1 1057:1 1067:2 1069:1 1070:1 1071:6 1073:1 1083:1 1094:1 1103:1 1106:1 1117:1 1118:1 1125:1 1127:1 1130:5 1132:1 1134:1 1141:2 1144:1 1158:1 1161:1 1168:2 1171:1 1199:1 1204:3 1211:1 1216:2 1220:1 1236:3 1239:1 1244:1 1257:1 1262:1 1265:1 1284:1 1287:1 1309:1 1311:2 1316:1 1318:1 1321:1 1322:1 1351:1 1376:1 1378:1 1388:1 1392:1 1393:1 1403:1 1405:2 1413:1 1415:1 1421:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:1 1465:1 1467:1 1480:1 1481:1 1487:1 1496:2 1504:1 1509:1 1514:1 1538:1 1539:1 1545:1 1547:1 1588:2 1624:1 1626:2 1630:1 1635:1 1645:1 1650:1 1658:1 1664:4 1683:2 1686:1 1690:2 1691:1 1719:1 1726:7 1730:10 1739:10 1745:1 1747:1 1749:1 1751:2 1793:1 1807:1 1808:1 1837:4 1839:4 1841:1 1869:1 1878:2 1883:8 1892:1 1899:1 1906:2 1917:4 1941:1 1943:1 1948:1 1955:1 1956:1 1957:1 1963:1 1966:1 1977:1 1980:1 1999:1 2003:1 2019:1 2037:1 2041:1 2061:1 2062:1 2073:2 2078:1 2080:1 2086:1 2098:1 2113:1 2118:1 2119:1 2133:3 2135:1 2136:1 2137:3 2138:2 2141:1 2157:1 2158:1 2169:1 2177:2 2180:1 2187:1 2195:4 2209:1 2214:1 2223:1 2237:1 2241:1 2246:1 2249:2 2255:1 2263:2 2265:1 2269:1 2279:1 2284:2 2301:1 2317:3 2322:1 2345:1 2348:1 2355:1 2367:1 2372:1 2373:4 2381:1 2397:1 2399:1 2406:1 2419:1 2421:1 2422:1 2429:1 2437:1 2441:1 2465:1 2482:5 2496:1 2502:3 2508:1 2519:1 2521:1 2525:1 2529:1 2530:1 2537:1 2547:1 2551:3 2552:1 2553:1 2555:4 2558:4 2559:1 2562:1 2563:2 2568:1 2570:1 2573:1 2576:2 2578:2 2579:3 2583:1 2585:1 2587:1 2613:1 2616:1 2618:3 2620:3 2623:3 2624:4 2625:2 2626:1 2630:1 2631:3 2632:1 2634:2 2635:2 2637:1 2640:2 2642:4 2647:6 2648:1 2652:1 2657:3 2662:2 2663:1 2681:1 2720:1 2732:1 2739:1 2753:2 2774:1 2784:1 2788:1 2795:1 2801:3 2821:1 2831:3 2832:1 2864:1 2867:1 2868:1 2878:1 2888:1 2890:1 2896:1 2905:2 2918:2 2934:1 2951:1 2953:1 2955:1 2962:1 2964:1 2979:1 2985:1 2992:1 2993:1 3008:1 3017:2 3030:1 3033:1 3039:1 3042:1 3049:1 3051:1 3059:1 3069:1 3071:1 3080:4 3097:1 3098:1 3106:6 3116:2 3121:2 3134:2 3145:1 3157:1 3165:3 3171:1 3173:2 3182:2 3193:1 3195:1 3197:1 3201:2 3213:2 3257:1 3263:2 3283:1 3284:7 3291:1 3294:1 3295:8 3302:2 3314:1 3318:1 3336:4 3350:2 3351:1 3352:1 3353:10 3360:1 3364:2 3369:1 3377:1 3379:1 3380:1 3386:1 3397:1 3408:1 3411:2 3418:2 3433:2 3464:1 3474:1 3475:1 3482:1 3504:1 3517:1 3529:1 3539:1 3549:1 3550:2 3572:1 3578:2 3588:1 3625:1 3645:1 3646:1 3683:1 3690:2 3702:2 3721:3 3726:1 3744:1 3755:1 3758:3 3762:1 3765:1 3769:1 3772:1 3790:1 3799:1 3816:1 3821:1 3822:2 3853:1 3856:1 3857:2 3868:1 3917:1 3926:1 3930:2 3936:1 3939:1 3942:2 3945:1 3951:1 3968:1 3974:1 3978:1 3990:1 4005:1 4011:1 4012:1 4018:1 4020:2 4033:1 4035:2 4040:1 4047:3 4074:1 4105:1 4115:1 4122:1 4131:1 4160:4 4174:5 4193:3 4195:1 4207:1 4225:1 4245:1 4247:2 4252:3 4253:12 4267:1 4271:1 4279:1 4288:4 4289:3 4291:1 4292:1 4303:1 4306:6 4308:1 4331:1 4332:4 4334:1 4351:3 4356:1 4378:1 4382:1 4405:1 4454:1 4456:1 4465:1 4470:1 4477:1 4484:1 4487:1 4488:1 4510:3 4511:1 4512:1 4529:1 4531:2 4533:1 4536:3 4540:2 4545:3 4547:1 4573:1 4574:2 4575:1 4581:2 4585:1 4593:1 4609:1 4628:2 4635:1 4637:1 4663:1 4667:1 4684:1 4686:2 4714:1 4727:1 4728:1 4730:1 4758:1 4763:5 4767:7 4773:1 4785:1 4792:1 4793:4 4824:2 4842:2 4863:1 4872:5 4877:2 4888:2 4889:1 4906:1 4907:1 4929:1 4933:1 4936:2 4951:1 4959:1 4974:1 4989:1 4991:1 5000:1 5020:1 5022:1 5025:1 5030:1 5033:4 5045:2 5066:1 5072:1 5082:1 5098:1 5106:1 5136:2 5143:5 5162:1 5163:1 5168:1 5171:1 5198:1 5212:1 5239:1 5246:3 5269:1 5276:1 5287:3 5299:1 5312:1 5337:2 5340:5 5365:1 5369:3 5397:1 5462:1 5471:1 5490:1 5491:1 5516:1 5517:1 5562:33 5564:2 5596:2 5610:1 5671:1 5689:1 5690:3 5706:1 5717:3 5718:7 5719:3 5720:2 5722:1 5725:3 5730:2 5731:3 5733:3 5735:2 5740:1 5744:1 5748:1 5750:5 5752:3 5763:1 5766:1 5770:1 5781:1 5788:1 5794:1 5811:1 5814:2 5825:1 5832:1 5844:1 5853:2 5855:1 5868:1 5873:1 5898:1 5907:1 5965:3 5975:1 6027:1 6038:1 6084:2 6088:1 6089:1 6108:1 6115:1 6124:1 6144:3 6150:3 6165:2 6169:2 6181:1 6186:1 6224:1 6233:1 6237:1 6283:2 6284:1 6292:1 6299:1 6300:1 6305:3 6319:3 6322:1 6327:1 6328:1 6335:3 6345:2 6355:1 6372:2 6374:2 6382:1 6385:1 6388:1 6391:2 6395:1 6397:2 6400:1 6403:1 6407:2 6412:1 6418:2 6428:1 6431:1 6435:2 6454:1 6459:6 6469:1 6480:4 6496:1 6506:1 6508:2 6509:2 6520:1 6529:1 6531:1 6533:1 6536:1 6537:1 6540:1 6547:1 6548:1 6553:1 6558:4 6570:1 6581:4 6584:1 6610:1 6624:1 6688:5 6692:2 6699:1 6706:1 6707:1 6750:1 6776:1 6793:1 6795:1 6806:1 6816:1 6819:2 6827:1 6843:1 6847:4 6884:1 6888:2 6890:2 6897:4 6939:1 6944:1 6961:6 6980:2 6994:2 7003:1 7008:1 7012:1 7025:1 7038:1 7044:1 7059:1 7062:1 7066:1 7081:1 7087:2 7088:3 7089:1 7090:1 7091:1 7101:1 7103:1 7114:2 7132:2 7150:1 7190:2 7192:1 7193:1 7196:1 7197:4 7200:4 7201:1 7204:3 7207:3 7209:1 7210:1 7211:2 7217:1 7218:8 7221:1 7222:3 7224:1 7258:1 7272:1 7279:1 7303:1 7306:1 7307:1 7365:1 7380:1 7381:1 7389:1 7406:2 7410:1 7429:1 7435:2 7439:1 7463:1 7469:1 7497:1 7511:1 7512:1 7535:1 7539:2 7543:1 7552:1 7559:1 7570:2 7574:1 7589:2 7599:1 7602:1 7613:1 7619:1 7628:1 7637:1 7648:3 7649:1 7659:1 7662:1 7671:4 7672:1 7676:2 7691:1 7705:5 7707:1 7724:1 7741:1 7745:2 7748:1 7750:3 7766:1 7776:1 7791:1 7792:1 7794:1 7822:1 7825:1 7839:2 7840:1 7855:1 7867:1 7879:3 7912:2 7913:1 7927:1 7941:2 7949:1 7954:1 7956:1 7961:1 7984:1 7988:1 7993:1 8007:2 8025:2 8027:2 8043:1 8045:1 8054:1 8064:1 8075:7 8089:2 8090:1 8105:2 8129:1 8139:1 8143:4 8150:1 8155:1 8167:1 8196:1 8216:1 8230:1 8247:1 8258:2 8273:1 8277:4 8283:1 8299:1 8302:1 8328:3 8338:1 8340:1 8347:1 8387:1 8389:3 8413:1 8417:4 8426:1 8432:3 8439:1 8454:1 8474:1 8478:1 8491:1 8494:1 8498:1 8499:1 8504:1 8531:1 8560:1 8562:1 8567:1 8570:1 8573:1 8575:1 8582:1 8599:1 8609:4 8611:1 8615:1 8619:1 8624:5 8630:3 8631:6 8633:4 8653:1 8654:1 8659:1 8663:1 8684:1 8688:2 8689:1 8702:42 8716:1 8717:1 8725:1 8726:9 8728:7 8734:2 8767:1 8783:1 8793:1 8796:2 8797:1 8810:1 8815:2 8816:2 8860:1 8864:1 8874:1 8880:1 8886:1 8887:1 8890:1 8891:1 8901:1 8909:1 8923:1 8930:1 8932:2 8935:7 8957:1 8960:1 8974:1 8982:5 8987:1 8992:1 9048:1 9059:1 9094:2 9127:1 9135:1 9143:1 9157:4 9168:2 9179:1 9183:1 9186:1 9203:3 9221:2 9222:1 9231:1 9232:18 9264:1 9267:1 9276:1 9279:1 9289:1 9298:1 9299:1 9324:1 9332:1 9335:1 9340:1 9381:1 9394:2 9425:1 9430:1 9435:1 9441:1 9466:1 9470:1 9473:1 9484:1 9493:1 9507:2 9508:1 9529:1 9540:2 9542:1 9544:2 9561:1 9563:1 9623:2 9630:1 9632:1 9633:1 9634:3 9638:1 9640:1 9642:2 9644:2 9646:1 9648:3 9649:2 9654:2 9661:1 9665:1 9669:1 9675:1 9688:1 9690:1 9697:2 9705:1 9742:1 9743:1 9746:1 9770:1 9781:1 9788:1 9806:1 9807:1 9810:2 9815:1 9823:1 9826:1 9833:1 9836:1 9842:3 9882:1 9901:3 9907:1 9923:1 9931:1 9937:2 9942:1 9945:2 9952:1 9965:1 9974:1 9976:3 9988:1 9994:1 9999:1 10008:2 10015:1 10022:1 10027:3 10035:1 10070:1 10087:1 10092:1 10095:2 10117:1 10121:1 10124:1 10126:1 10138:1 10142:1 10150:2 10152:1 10159:1 10161:2 10197:1 10209:2 10210:2 10265:1 10275:1 10282:1 10291:1 10294:1 10307:3 10331:1 10332:1 10338:1 10340:1 10345:6 10349:1 10362:1 10367:1 10371:1 10373:1 10374:1 10376:1 10385:1 10389:1 10407:1 10422:1 10430:1 10434:5 10436:1 10445:1 10450:1 10459:1 10465:1 10479:1 10497:1 10502:1 10517:2 10518:1 10522:2 10524:1 10533:2 10540:1 10549:1 10554:1 10575:1 10583:1 10584:2 10586:1 10591:1 10598:1 10602:1 10619:1 10621:1 10623:1 10627:1 10643:2 10648:1 10666:2 10695:1 10709:3 10732:1 10752:2 10764:1 10765:1 10792:1 10800:1 10804:1 10806:1 10807:2 10822:1 10828:2 10846:1 10867:2 10876:1 10877:1 10886:1 10892:1 10913:2 10948:8 10969:1 10970:1 10972:1 10973:3 10996:1 10997:2 10999:1 11011:1 11020:1 11029:1 11030:1 11052:1 11063:1 11067:1 11079:1 11094:2 11119:2 11133:3 11141:1 11163:2 11167:1 11170:2 11171:1 11172:1 11175:1 11178:2 11188:3 11200:1 11201:1 11208:1 11210:3 11214:2 11218:1 11222:1 11225:1 11226:1 11231:2 11232:1 11234:2 11242:2 11265:1 11266:2 11276:4 11288:2 11291:1 11302:1 11308:1 11309:1 11324:1 11331:1 11342:1 11356:1 11362:1 11376:6 11383:2 11421:1 11431:1 11433:1 11438:1 11445:1 11448:1 11450:1 11451:1 11456:1 11464:1 11488:1 11492:1 11499:1 11517:2 11526:1 11550:1 11573:1 11575:1 11588:1 11594:1 11601:1 11603:1 11607:3 11611:3 11637:1 11656:1 11660:1 11674:1 11677:2 11690:1 11695:1 11697:1 11701:3 11717:1 11730:1 11741:1 11744:1 11778:1 11784:4 11795:1 11796:1 11811:1 11820:1 11822:6 11830:1 11841:1 11842:1 11846:1 11854:1 11855:1 11858:1 11860:1 11895:1 11899:1 11906:3 11912:1 11914:3 11930:1 11931:1 11933:1 11949:2 11955:1 11966:1 12002:1 12005:1 12015:4 12023:1 12026:2 12031:1 12039:3 12050:3 12099:1 12109:1 12145:1 12149:1 12154:1 12162:1 12169:2 12197:1 12213:1 12214:1 12255:1 12266:1 12274:1 12275:1 12284:1 12307:2 12310:1 12319:1 12325:1 12327:3 12329:3 12333:1 12335:1 12336:4 12337:1 12339:1 12350:1 12352:2 12354:1 12356:1 12361:1 12369:1 12377:1 12379:1 12389:1 12406:1 12427:1 12434:2 12438:1 12448:1 12472:1 12475:1 12477:1 12487:1 12501:1 12526:1 12545:1 12551:1 12552:1 12559:1 12580:1 12596:1 12607:1 12618:4 12630:2 12640:1 12647:1 12649:1 12682:1 12733:1 12741:1 12743:1 12762:1 12766:1 12770:1 12775:1 12776:1 12805:1 12811:3 12814:2 12819:1 12836:1 12845:1 12862:1 12865:9 12867:1 12876:1 12877:1 12893:1 12902:1 12910:2 12915:1 12918:1 12923:1 12928:2 12933:1 12935:1 12936:1 12952:1 12954:1 12970:1 12977:2 12988:3 13000:1 13005:1 13009:1 13012:1 13015:1 13018:3 13027:1 13032:1 13050:2 13061:2 13064:1 13073:1 13081:1 13085:3 13088:3 13089:2 13094:2 13111:1 13116:1 13128:8 13135:1 13137:1 13138:2 13142:3 13148:1 13149:1 13150:2 13151:6 13152:1 13153:1 13156:1 13162:6 13168:1 13192:1 13196:1 13202:1 13220:2 13228:1 13231:1 13244:1 13254:1 13264:2 13285:1 13294:1 13302:1 13308:1 13320:4 13365:1 13391:1 13408:1 13410:3 13415:1 13423:2 13427:1 13429:1 13434:1 13443:1 13448:2 13456:1 13461:1 13463:1 13473:3 13476:1 13480:2 13486:1 13515:2 13517:3 13527:1 13552:1 13553:2 13556:1 13590:1 13592:1 13600:1 13606:2 13608:1 13611:1 13616:1 13621:1 13649:1 13653:2 13654:2 13662:1 13674:1 13684:3 13685:4 13690:1 13700:1 13718:3 13738:1 13742:1 13745:1 13750:2 13778:1 13805:1 13815:1 13821:2 13826:2 13830:1 13848:1 13863:2 13873:4 13874:1 13895:2 13896:2 13899:1 13921:1 13933:1 13939:1 13940:1 13976:1 14007:1 14011:1 14018:1 14021:1 14030:1 14037:1 14039:1 14055:1 14061:1 14101:1 14102:2 14119:1 14146:1 14162:3 14180:1 14183:2 14207:1 14210:1 14214:2 14242:1 14256:2 14267:1 14281:1 14318:2 14319:1 14341:1 14345:6 14353:1 14356:2 14361:1 14370:3 14376:1 14380:1 14384:1 14402:1 14409:1 14410:1 14416:1 14421:1 14436:1 14443:1 14449:1 14468:1 14471:1 14472:1 14473:4 14480:1 14483:2 14489:1 14497:1 14518:1 14520:1 14541:1 14545:1 14572:1 14577:1 14581:1 14583:1 14589:1 14592:1 14620:1 14633:1 14640:1 14652:1 14658:2 14688:1 14697:1 14706:1 14753:1 14781:1 14793:5 14804:1 14806:1 14831:1 14841:1 14854:2 14858:1 14859:1 14867:1 14870:2 14873:1 14877:7 14881:4 14883:1 14891:1 14895:1 14896:1 14904:2 14907:7 14915:1 14921:2 14935:2 14940:1 14942:2 14945:1 14949:3 14957:1 14958:1 14960:1 14975:2 14979:1 14980:1 14999:1 15005:1 15016:1 15019:1 15028:1 15033:2 15039:6 15040:1 15054:1 15059:1 15066:1 15075:1 15079:1 15082:1 15087:1 15122:1 15125:4 15131:1 15161:1 15187:1 15191:1 15215:1 15216:1 15217:5 15236:1 15246:1 15251:1 15259:1 15275:1 15278:1 15281:2 15293:1 15311:1 15322:1 15325:3 15333:1 15336:1 15361:1 15374:1 15381:2 15386:1 15429:1 15438:1 15443:1 15476:1 15477:3 15480:1 15483:2 15487:1 15489:2 15496:1 15508:1 15513:1 15519:1 15520:1 15523:1 15543:1 15551:1 15574:2 15616:5 15622:1 15625:2 15645:1 15662:1 15664:1 15666:2 15680:2 15704:1 15725:1 15728:5 15734:5 15740:2 15749:1 15780:2 15811:2 15820:2 15840:1 15855:1 15861:1 15900:2 15905:1 15923:1 15934:1 15945:1 15955:1 15959:1 15960:1 15962:1 15974:3 15986:1 15990:1 15993:1 15996:2 15997:1 16000:3 16021:1 16026:1 16030:1 16033:1 16040:2 16042:1 16043:1 16046:1 16067:1 16092:1 16098:2 16114:1 16144:1 16145:1 16152:1 16178:2 16183:1 16187:1 16189:1 16197:1 16198:1 16214:1 16227:3 16229:1 16236:1 16237:1 16254:1 16266:1 16270:1 16273:1 16284:1 16289:1 16321:1 16330:4 16347:1 16350:2 16351:1 16355:1 16362:1 16390:2 16393:2 16411:1 16422:1 16427:2 16428:1 16433:2 16448:1 16451:1 16457:1 16463:1 16484:3 16508:3 16523:1 16534:1 16538:1 16556:2 16559:2 16566:3 16598:1 16606:1 16608:1 16630:1 16634:1 16642:1 16650:2 16674:2 16678:1 16684:5 16687:1 16688:1 16693:1 16694:1 16721:2 16723:1 16739:1 16741:1 16753:1 16762:1 16782:8 16783:1 16787:1 16789:1 16793:1 16831:1 16832:4 16835:1 16842:1 16846:2 16848:1 16860:1 16884:2 16904:1 16936:3 16940:2 16942:1 16944:1 16971:3 16973:3 16988:3 16990:1 16999:1 17012:2 17023:1 17042:1 17045:4 17046:1 17048:1 17053:2 17056:1 17061:1 17063:1 17098:2 17103:1 17105:1 17127:1 17140:1 17155:1 17176:1 17187:1 17194:3 17203:1 17214:1 17219:1 17224:1 17226:1 17246:1 17251:3 17269:1 17289:2 17293:1 17297:1 17314:1 17317:1 17318:1 17324:2 17370:1 17379:1 17389:1 17406:1 17423:13 17433:2 17437:1 17448:1 17479:2 17499:1 17503:1 17514:1 17516:1 17528:1 17531:1 17539:1 17543:1 17567:1 17581:1 17586:2 17596:1 17598:1 17610:1 17648:1 17661:3 17673:1 17681:1 17689:12 17694:1 17695:1 17698:1 17699:1 17700:3 17709:1 17710:3 17714:1 17715:1 17718:1 17729:4 17731:2 17740:1 17752:1 17756:1 17758:1 17767:1 17771:1 17775:2 17776:1 17783:1 17784:2 17805:4 17824:1 17829:1 17830:2 17857:3 17860:2 17866:1 17871:1 17876:1 17878:1 17880:1 17884:1 17888:5 17951:1 17953:4 17955:1 17989:1 18008:1 18049:2 18053:4 18074:4 18108:1 18111:1 18114:1 18141:1 18148:1 18157:3 18160:1 18187:1 18195:9 18214:3 18220:1 18226:1 18234:2 18236:1 18243:2 18247:1 18258:1 18260:1 18273:1 18281:2 18302:1 18306:1 18308:2 18313:1 18315:1 18319:4 18321:2 18322:1 18327:1 18329:1 18330:1 18332:2 18340:2 18341:1 18342:5 18344:1 18351:1 18352:3 18372:1 18375:1 18401:1 18416:1 18417:1 18492:3 18527:2 18546:1 18561:1 18584:1 18619:1 18635:2 18683:1 18684:1 18693:1 18697:1 18699:1 18702:1 18708:1 18717:1 18727:1 18732:1 18738:1 18739:2 18743:1 18777:2 18785:1 18794:1 18799:2 18807:1 18808:2 18821:1 18842:1 18879:1 18896:1 18908:1 18911:3 18919:4 18928:1 18966:1 18967:1 18978:1 19000:1 19005:1 19024:1 19029:3 19030:1 19035:1 19039:1 19043:1 19050:1 19059:4 19062:2 19069:2 19081:1 19089:2 19103:2 19108:1 19135:1 19139:5 19155:1 19165:3 19169:1 19177:1 19182:1 19200:4 19207:1 19208:1 19209:1 19216:3 19233:1 19248:2 19276:1 19320:8 19329:1 19345:1 19351:1 19352:1 19354:1 19357:3 19362:1 19372:1 19398:2 19417:1 19443:1 19444:1 19448:1 19452:1 19465:1 19471:1 19503:1 19508:2 19509:1 19526:1 19559:1 19566:1 19567:1 19583:1 19585:1 19622:1 19628:1 19634:1 19637:1 19643:1 19655:1 19663:2 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19758:1 19763:3 19772:5 19774:1 19776:1 19781:2 19783:1 19784:1 19794:1 19797:1 19809:1 19816:1 19843:3 19849:2 19850:1 19867:1 19872:1 19897:1 19904:1 19910:1 19919:1 19936:1 19951:2 19962:1 19965:1 19966:1 20000:1 20007:2 20020:2 20031:1 20032:2 20045:1 20077:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:2 20123:2 20124:6 20128:3 20136:1 20142:1 20143:1 20146:2 20166:2 20174:1 20180:1 20181:1 20183:1 20200:1 20202:1 20219:1 20220:1 20225:3 20231:1 20237:1 20239:1 20241:1 20243:1 20286:1 20287:1 20300:2 20309:2 20341:1 20360:1 20373:1 20391:1 20394:1 20400:1 20405:1 20406:1 20407:2 20412:1 20416:1 20441:1 20454:1 20460:1 20477:1 20492:2 20499:1 20503:1 20516:1 20517:1 20518:1 20524:1 20525:1 20540:1 20561:1 20569:1 20635:3 20645:1 20673:1 20681:1 20682:1 20692:2 20697:2 20706:1 20709:1 20742:3 20792:1 20803:7 20814:2 20815:2 20831:1 20851:1 20876:1 20893:1 20894:1 20895:1 20900:2 20906:1 20929:2 20936:1 20942:2 20949:1 20951:1 20970:1 20974:2 20983:3 20996:2 21003:1 21004:1 21016:1 21041:1 21047:3093 21068:3 21070:1 21079:2 21087:1 21096:1 21164:1 21173:2 21178:1 21205:1 21234:1 21241:1 21278:1 21279:2 21291:1 21292:2 21295:1 21308:1 21355:1 21362:1 21372:1 21374:1 21378:1 21382:1 21398:1 21401:3 21408:1 21419:1 21421:1 21431:1 21444:1 21449:1 21466:1 21478:1 21487:1 21512:1 21515:3 21518:1 21539:1 21551:1 21566:1 21571:1 21585:1 21601:1 21602:1 21644:1 21689:2 21692:1 21709:2 21729:1 21735:4 21790:1 21802:1 21806:1 21808:1 21812:1 21813:1 21817:1 21821:2 21827:3 21833:1 21843:1 21856:2 21861:2 21874:1 21877:1 21883:1 21895:2 21907:1 21918:2 21921:6 21952:1 21953:7 21959:1 21960:1 21961:1 21966:1 21976:1 21992:1 22001:2 22020:3 22025:1 22029:2 22032:1 22041:1 22043:2 22045:2 22072:4 22082:1 22095:3 22107:2 22119:1 22127:1 22138:1 22143:1 22157:1 22162:1 22173:3 22174:1 22178:3 22181:1 22214:1 22227:1 22235:1 22240:1 22245:2 22262:1 22267:1 22271:1 22281:1 22294:1 22301:4 22306:1 22311:1 22318:1 22325:1 22344:1 22351:1 22364:1 22370:1 22375:1 22382:1 22404:4 22415:1 22423:3 22459:1 22479:2 22483:1 22495:1 22503:2 22504:1 22508:1 22526:2 22530:1 22540:1 22545:1 22548:3 22553:1 22562:1 22565:2 22569:1 22572:1 22573:2 22583:1 22586:1 22603:1 22615:1 22617:1 22626:3 22638:1 22644:2 22681:3 22688:1 22690:1 22698:1 22713:1 22737:2 22740:1 22750:1 22766:2 22774:1 22791:1 22793:1 22803:1 22815:4 22824:1 22829:1 22834:1 22835:1 22837:1 22845:1 22851:1 22852:1 22870:5 22871:1 22877:2 22889:2 22952:1 22954:1 22966:1 22984:2 22992:1 23002:1 23004:1 23005:1 23036:2 23046:1 23055:1 23059:1 23100:1 23108:3 23113:1 23116:1 23129:1 23147:2 23156:1 23160:4 23163:1 23169:3 23172:1 23175:1 23183:1 23243:1 23257:1 23277:1 23279:1 23281:1 23288:1 23290:1 23330:1 23353:1 23359:1 23363:1 23367:1 23373:1 23381:1 23383:1 23390:1 23415:2 23416:1 23419:1 23432:1 23434:1 23444:4 23447:2 23453:1 23456:1 23463:1 23490:4 23504:2 23518:1 23521:2 23523:1 23527:1 23529:1 23532:1 23544:3 23550:3 23556:1 23561:1 23570:1 23572:1 23574:1 23580:3 23583:1 23585:1 23612:1 23617:1 23622:2 23626:1 23644:2 23649:2 23656:1 23657:1 23658:1 23663:1 23669:2 23723:2 23728:1 23729:1 23736:1 23745:5 23746:1 23751:1 23752:2 23756:1 23765:1 23773:1 23782:1 23790:1 23800:1 23802:2 23831:1 23837:1 23852:1 23853:1 23858:1 23859:1 23861:1 23863:1 23898:1 23901:1 23917:1 23919:2 23927:1 23931:1 23943:1 23949:1 23951:1 23953:2 23955:2 23985:1 23991:1 24009:1 24013:1 24024:5 24032:1 24039:1 24057:3 24058:1 24074:1 24082:2 24090:1 24093:1 24098:1 24099:1 24113:2 24114:1 24133:1 24138:1 24143:1 24144:1 24151:1 24166:1 24168:1 24194:1 24195:1 24197:1 24198:1 24201:1 24205:3 24206:2 24207:1 24208:1 24214:1 24217:1 24218:1 24222:1 24226:2 24229:1 24241:1 24250:1 24255:2 24262:2 24263:3 24274:1 24276:2 24279:1 24289:1 24308:1 24314:1 24321:1 24323:1 24334:1 24358:1 24359:2 24366:5 24368:1 24369:1 24373:2 24379:1 24383:2 24386:1 24394:1 24398:1 24401:1 24417:1 24418:1 24425:1 24427:1 24442:1 24449:1 24474:1 24477:1 24478:2 24493:6 24502:1 24504:1 24527:1 24541:1 24542:3 24550:2 24578:1 24587:1 24601:3 24618:1 24636:1 24639:1 24643:2 24650:3 24660:1 24678:1 24681:1 24685:3 24687:1 24690:3 24692:3 24695:1 24698:1 24706:2 24727:1 24742:1 24775:1 24788:2 24792:1 24805:2 24840:1 24841:1 24847:1 24854:1 24857:1 24858:1 24874:1 24887:1 24904:1 24907:1 24916:3 24921:1 24925:2 24933:3 24936:1 24937:1 24943:1 24957:1 24959:1 24966:1 24969:1 24972:2 24974:1 24975:1 24983:1 24985:2 24990:2 25003:1 25011:1 25017:1 25021:2 25022:1 25027:1 25032:1 25036:1 25041:1 25048:1 25077:2 25093:1 25100:1 25115:2 25127:1 25133:1 25134:1 25139:2 25156:3 25167:4 25170:1 25173:1 25183:1 25184:2 25189:1 25191:1 25197:1 25224:7 25233:3 25238:1 25245:2 25300:1 25306:5 25337:4 25346:1 25356:1 25357:1 25364:2 25366:1 25367:4 25369:1 25371:1 25401:1 25413:1 25415:1 25416:1 25423:1 25431:2 25434:2 25437:1 25454:1 25464:1 25474:2 25494:5 25508:1 25510:1 25513:2 25516:2 25526:2 25545:4 25548:1 25552:4 25557:1 25561:3 25562:1 25569:1 25582:2 25590:1 25595:2 25600:1 25621:1 25623:1 25624:1 25635:4 25646:1 25659:3 25662:2 25666:1 25669:4 25670:1 25674:4 25678:2 25713:1 25714:1 25724:1 25726:1 25732:1 25834:1 25841:1 25865:2 25878:1 25883:1 25884:1 25897:1 25916:1 25920:1 25958:1 25967:1 26002:3 26017:1 26019:3 26025:1 26031:1 26032:1 26035:1 26036:1 26046:1 26047:1 26056:4 26062:1 26073:1 26084:1 26088:1 26106:1 26110:2 26133:1 26150:1 26158:1 26160:1 26188:2 26195:1 26218:1 26223:1 26239:1 26243:1 26253:1 26255:1 26263:2 26269:1 26270:2 26278:1 26279:1 26286:4 26320:1 26324:1 26328:1 26329:2 26331:1 26334:1 26354:2 26364:1 26390:1 26403:1 26405:1 26407:1 26411:1 26423:2 26434:1 26435:1 26437:3 26442:2 26445:1 26459:1 26482:1 26488:1 26490:3 26502:6 26530:1 26549:1 26550:1 26557:2 26565:1 26581:1 26582:1 26584:1 26605:1 26606:1 26608:1 26646:2 26665:1 26675:1 26679:1 26681:1 26689:3 26705:1 26718:1 26726:1 26729:1 26768:1 26780:1 26793:1 26794:1 26839:1 26867:1 26872:2 26873:1 26879:1 26890:1 26897:1 26898:1 26932:1 26954:1 26966:1 26967:1 26977:1 26979:1 26984:2 26991:1 26996:1 26998:1 27020:2 27049:1 27052:1 27063:1 27065:3 27075:2 27076:1 27100:3 27105:1 27115:2 27116:1 27126:1 27133:1 27134:1 27144:3 27151:1 27182:1 27186:1 27196:2 27198:1 27202:1 27211:1 27222:2 27223:1 27224:1 27226:1 27227:5 27231:1 27233:1 27245:3 27247:1 27265:1 27280:1 27299:3 27300:1 27305:2 27317:1 27335:1 27336:2 27344:1 27351:1 27357:1 27358:1 27365:1 27376:1 27383:1 27390:1 27408:2 27412:1 27429:2 27436:2 27460:1 27466:1 27470:3 27471:3 27479:1 27481:1 27483:1 27484:1 27486:1 27487:4 27489:3 27490:2 27496:1 27498:3 27508:2 27511:1 27519:1 27527:2 27530:3 27539:4 27547:1 27578:1 27580:2 27586:1 27603:2 27612:2 27622:1 27626:2 27654:1 27655:2 27661:1 27664:2 27674:1 27681:1 27683:1 27687:2 27689:1 27691:2 27692:1 27705:1 27711:1 27713:1 27754:1 27797:11 27798:1 27799:1 27821:8 27835:1 27839:3 27842:2 27858:1 27862:1 27864:1 27871:1 27876:3 27890:1 27892:1 27912:2 27915:3 27986:2 27994:1 28003:1 28024:1 28030:1 28046:1 28052:1 28064:1 28065:1 28069:1 28074:1 28078:1 28082:1 28094:1 28101:1 28110:1 28113:2 28115:1 28133:2 28149:1 28173:1 28209:1 28275:1 28293:1 28294:1 28303:1 28308:1 28319:2 28348:3 28349:4 28369:1 28382:8 28384:1 28393:1 28397:1 28401:1 28402:1 28413:2 28420:1 28424:2 28425:1 28430:1 28501:1 28527:1 28533:2 28536:1 28558:1 28593:1 28614:3 28631:1 28632:4 28635:3 28636:1 28643:1 28658:1 28670:2 28673:1 28674:1 28685:1 28694:2 28722:1 28730:1 28731:1 28736:1 28759:3 28773:1 28776:1 28787:1 28803:2 28809:1 28833:1 28847:1 28884:1 28885:1 28926:1 28944:1 28948:4 28966:1 28969:2 28976:1 28983:1 28995:1 29005:4 29012:2 29032:1 29042:1 29136:1 29137:2 29149:2 29152:2 29211:1 29225:1 29226:2 29233:1 29241:1 29263:2 29266:1 29277:1 29279:3 29283:1 29287:1 29290:1 29298:2 29305:1 29313:1 29329:1 29330:1 29336:1 29339:1 29342:1 29345:1 29346:1 29349:1 29351:1 29356:1 29359:1 29378:1 29383:1 29394:1 29421:7 29433:1 29448:1 29474:1 29483:1 29485:1 29496:1 29515:8 29521:2 29529:1 29535:1 29547:1 29559:1 29562:1 29567:1 29570:1 29583:1 29605:3 29612:1 29623:1 29632:1 29643:3 29649:1 29654:1 29658:1 29676:4 29702:1 29704:4 29711:1 29721:1 29724:1 29728:1 29729:1 29730:1 29735:1 29745:1 29775:1 29783:1 29800:1 29820:2 29824:1 29825:1 29826:1 29831:2 29839:1 29841:1 29845:1 29847:1 29899:1 29904:1 29916:1 29927:1 29958:4 29969:1 29971:3 29974:3 29977:1 29995:1 29999:1 30002:2 30015:1 30035:1 30040:1 30044:1 30052:1 30059:1 30096:1 30100:2 30105:1 30142:1 30149:2 30156:2 30168:2 30169:1 30191:1 30199:1 30204:1 30213:2 30231:6 30249:1 30252:1 30267:1 30285:1 30297:1 30305:1 30306:1 30315:1 30327:1 30330:1 30331:2 30342:1 30357:1 30360:1 30370:1 30380:4 30393:2 30420:1 30431:1 30435:1 30445:1 30454:1 30471:1 30475:4 30501:3 30504:3 30507:1 30510:2 30532:1 30548:2 30552:2 30572:2 30587:7 30589:3 30602:1 30638:1 30653:1 30660:1 30663:1 30664:6 30685:1 30688:1 30689:2 30697:1 30704:5 30710:1 30718:2 30730:1 30738:1 30775:1 30776:1 30789:2 30798:6 30802:3 30805:3 30809:2 30814:3 30834:1 30835:1 30843:4 30846:1 30854:2 30864:1 30867:1 30868:2 30869:1 30875:1 30880:1 30883:1 30884:2 30892:2 30895:1 30908:2 30956:2 30967:2 30968:1 30971:2 30977:2 30988:1 30994:2 30999:1 31009:1 31019:1 31020:1 31042:1 31046:3 31057:2 31062:1 31065:1 31082:1 31095:1 31101:1 31104:2 31107:1 31125:2 31127:1 31130:1 31135:1 31142:2 31144:1 31158:2 31161:1 31172:1 31184:1 31191:1 31195:2 31197:2 31206:1 31209:1 31216:8 31221:1 31227:1 31287:1 31306:1 31315:1 31322:2 31324:1 31360:1 31363:2 31370:2 31388:1 31391:1 31392:3 31398:1 31404:1 31422:2 31440:2 31448:1 31452:3 31459:1 31461:3 31463:1 31476:1 31478:1 31480:1 31484:2 31485:3 31494:1 31521:1 31531:4 31538:1 31543:1 31547:1 31554:1 31566:1 31576:3 31583:1 31590:1 31622:1 31625:1 31635:1 31640:1 31649:1 31658:2 31665:19 31667:2 31670:2 31674:2 31679:1 31680:3 31686:1 31688:2 31704:8 31721:3 31727:1 31730:1 31750:1 31761:3 31763:1 31783:1 31790:1 31818:1 31821:1 31827:2 31834:4 31842:1 31846:1 31853:1 31877:6 31894:1 31897:2 31910:1 31911:1 31921:1 31932:1 31938:2 31952:1 31954:1 31960:1 31962:1 31974:1 31976:1 31998:2 32009:1 32027:1 32035:2 32041:1 32047:1 32053:1 32061:1 32070:1 32083:1 32085:1 32094:1 32103:1 32105:2 32117:1 32125:1 32128:1 32140:1 32142:1 32153:1 32171:2 32172:2 32181:1 32201:1 32207:1 32212:1 32229:1 32241:4 32244:5 32277:1 32280:3 32299:1 32303:1 32304:1 32310:1 32312:1 32319:1 32335:2 32348:1 32403:1 32407:1 32433:1 32439:1 32443:4 32447:1 32451:1 32456:1 32471:4 32472:1 32476:1 32487:1 32491:3 32499:1 32551:1 32552:2 32579:1 32619:1 32625:1 32628:1 32632:1 32650:1 32651:1 32656:2 32660:1 32661:1 32693:2 32697:1 32713:4 32719:1 32722:1 32724:1 32750:3 32791:1 32795:1 32803:1 32808:2 32814:2 32818:1 32824:1 32834:1 32843:1 32846:2 32885:1 32899:1 32900:2 32910:2 32934:1 32935:1 32941:3 32944:3 32956:2 32963:1 33001:2 33019:1 33025:1 33038:1 33041:5 33055:1 33056:3 33057:1 33059:1 33075:1 33084:1 33105:1 33108:1 33115:1 33118:1 33133:1 33138:1 33141:3 33143:2 33146:1 33148:2 33149:1 33155:8 33164:1 33167:4 33168:1 33171:4 33198:1 33211:1 33220:2 33224:1 33225:1 33226:1 33232:1 33234:2 33267:1 33271:3
11 1:1 2:1 6:1 27:1 31:1 34:1 39:1 49:1 53:1 55:1 60:2 67:1 84:1 85:1 86:1 93:1 95:1 99:2 106:1 126:1 148:1 150:1 159:1 166:1 170:1 181:1 183:1 187:2 215:1 232:1 238:5 256:1 265:1 282:1 283:1 294:3 296:2 299:1 313:1 344:1 347:1 362:1 378:1 401:1 402:1 403:4 411:2 415:2 427:2 446:1 455:2 498:1 507:8 513:1 523:1 546:2 582:2 586:1 621:1 627:1 646:1 654:1 698:1 712:1 717:3 721:1 731:7 745:1 753:1 759:2 764:4 765:1 766:1 774:1 790:2 795:1 807:1 808:1 815:2 829:1 866:2 899:1 937:1 955:1 956:1 971:2 974:1 979:1 984:1 1003:2 1022:3 1049:1 1053:1 1057:1 1067:2 1069:1 1070:1 1071:6 1073:1 1083:1 1094:1 1103:1 1106:1 1117:1 1118:1 1125:1 1127:1 1130:5 1132:1 1134:1 1141:2 1144:1 1158:1 1161:1 1168:2 1171:1 1199:1 1204:3 1211:1 1216:2 1220:1 1236:3 1239:1 1244:1 1257:1 1262:1 1265:1 1284:1 1287:1 1309:1 1311:2 1316:1 1318:1 1321:1 1322:1 1351:1 1376:1 1378:1 1388:1 1392:1 1393:1 1403:1 1405:2 1413:1 1415:1 1421:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:1 1465:1 1467:1 1480:1 1481:1 1487:1 1496:2 1504:1 1509:1 1514:1 1532:1 1538:1 1539:1 1545:1 1547:1 1588:2 1624:1 1626:2 1630:1 1635:1 1645:1 1650:1 1658:1 1664:4 1683:2 1686:1 1690:2 1691:1 1719:1 1726:7 1730:10 1739:10 1745:1 1747:1 1749:1 1751:2 1793:1 1807:1 1808:1 1837:4 1839:4 1841:1 1869:1 1878:2 1883:8 1892:1 1899:1 1906:2 1917:5 1941:1 1943:1 1948:1 1955:1 1956:1 1957:1 1963:1 1966:1 1977:1 1980:1 1999:1 2003:1 2019:1 2037:1 2041:1 2061:1 2062:1 2073:2 2078:1 2080:1 2086:1 2098:1 2113:1 2118:1 2119:1 2133:3 2135:1 2136:1 2137:3 2138:2 2141:1 2157:1 2158:1 2169:1 2177:2 2180:1 2187:1 2195:4 2209:1 2214:1 2223:1 2237:1 2241:1 2246:1 2249:2 2255:1 2263:2 2265:1 2269:1 2279:1 2284:2 2301:1 2317:3 2322:1 2345:1 2348:1 2355:1 2367:1 2372:1 2373:4 2381:1 2397:1 2399:1 2406:1 2419:1 2421:1 2422:1 2429:1 2437:1 2441:1 2465:1 2482:5 2496:1 2502:3 2508:1 2519:1 2521:1 2525:1 2529:1 2530:1 2537:1 2547:1 2551:3 2552:1 2553:1 2555:5 2558:4 2559:1 2562:1 2563:2 2568:1 2570:1 2573:1 2576:2 2578:3 2579:3 2583:1 2585:1 2587:1 2613:1 2616:1 2618:3 2620:3 2623:3 2624:4 2625:2 2626:1 2630:1 2631:3 2632:1 2634:2 2635:2 2637:1 2640:2 2642:4 2647:6 2648:1 2652:1 2657:3 2662:2 2663:1 2681:1 2720:1 2732:1 2739:1 2753:2 2774:1 2784:1 2788:1 2795:1 2801:3 2821:1 2831:3 2832:1 2864:1 2867:1 2868:1 2878:1 2888:1 2890:1 2896:1 2905:2 2918:2 2934:1 2951:2 2953:1 2955:1 2962:1 2964:1 2979:1 2985:1 2992:1 2993:1 3008:1 3017:2 3030:1 3033:1 3039:1 3042:1 3049:1 3051:1 3059:1 3069:1 3071:1 3080:4 3097:1 3098:1 3106:6 3116:2 3121:2 3134:2 3145:1 3157:1 3165:3 3171:1 3173:2 3182:2 3193:1 3195:1 3197:1 3201:2 3213:2 3257:1 3263:2 3283:1 3284:7 3291:1 3294:1 3295:8 3302:2 3314:1 3318:1 3336:4 3350:2 3351:1 3352:1 3353:11 3360:1 3364:2 3369:1 3377:1 3379:1 3380:1 3386:1 3397:1 3408:1 3411:2 3418:2 3433:2 3464:1 3474:1 3475:1 3482:1 3504:1 3517:1 3529:1 3539:1 3549:1 3550:2 3572:1 3578:2 3588:1 3625:1 3645:1 3646:1 3683:1 3690:3 3702:3 3721:3 3726:1 3744:1 3755:1 3758:3 3762:1 3765:1 3769:1 3772:1 3790:1 3799:1 3816:1 3821:1 3822:2 3853:1 3856:1 3857:2 3868:1 3917:1 3926:1 3930:2 3936:1 3939:1 3942:2 3945:1 3951:1 3968:1 3974:1 3978:1 3990:1 4005:1 4011:1 4012:1 4018:1 4020:2 4033:1 4035:2 4040:1 4047:3 4074:1 4105:1 4115:1 4122:1 4131:1 4160:4 4174:5 4193:3 4195:1 4207:1 4225:1 4245:1 4247:2 4252:3 4253:13 4267:1 4271:1 4279:1 4288:4 4289:3 4291:2 4292:1 4303:1 4306:6 4308:1 4331:1 4332:4 4334:1 4351:3 4356:1 4378:1 4382:1 4405:1 4434:1 4454:1 4456:1 4465:1 4470:1 4477:1 4484:1 4487:1 4488:1 4510:3 4511:1 4512:1 4529:1 4531:2 4533:1 4536:3 4540:2 4545:3 4547:1 4573:1 4574:2 4575:1 4581:2 4585:1 4593:1 4609:1 4628:2 4635:1 4637:1 4663:1 4667:1 4684:1 4686:2 4714:1 4727:1 4728:1 4730:1 4758:1 4763:5 4767:7 4773:1 4785:1 4792:1 4793:4 4824:2 4842:2 4863:1 4871:1 4872:5 4877:2 4888:2 4889:1 4906:1 4907:1 4929:1 4933:1 4936:2 4951:1 4959:1 4974:1 4989:1 4991:1 5000:1 5020:1 5022:1 5025:1 5030:1 5033:4 5045:2 5066:1 5072:1 5082:1 5098:1 5106:1 5136:2 5143:5 5162:1 5163:1 5168:1 5171:1 5198:1 5212:1 5239:1 5246:3 5269:1 5276:1 5287:3 5290:2 5299:1 5312:1 5337:3 5340:5 5365:1 5369:3 5397:1 5462:1 5471:1 5490:1 5491:1 5516:1 5517:1 5562:33 5564:2 5596:2 5610:1 5671:1 5689:1 5690:3 5706:1 5717:3 5718:7 5719:4 5720:2 5722:1 5725:3 5730:2 5731:3 5733:4 5735:2 5740:1 5744:1 5748:1 5750:5 5752:3 5763:1 5766:1 5770:1 5781:1 5788:1 5794:1 5811:1 5814:2 5825:1 5832:1 5844:1 5853:2 5855:1 5868:1 5873:1 5898:1 5907:1 5965:3 5975:1 6027:1 6038:1 6084:2 6088:1 6089:1 6108:1 6115:1 6124:1 6144:3 6150:3 6165:2 6169:2 6181:1 6186:1 6224:1 6233:1 6237:1 6283:2 6284:1 6292:1 6299:1 6300:1 6305:3 6319:3 6322:1 6327:1 6328:1 6335:4 6345:2 6355:1 6372:2 6374:2 6382:1 6385:1 6388:1 6391:2 6395:1 6397:2 6400:1 6403:1 6407:2 6412:1 6418:2 6428:1 6431:1 6435:2 6454:1 6459:7 6469:1 6480:4 6496:1 6506:1 6508:2 6509:2 6520:1 6529:1 6531:1 6533:1 6536:1 6537:1 6540:1 6547:1 6548:1 6553:1 6558:4 6570:1 6581:4 6584:1 6610:1 6624:1 6688:5 6692:3 6699:1 6706:1 6707:1 6750:1 6776:1 6793:1 6795:1 6806:1 6816:1 6819:2 6827:1 6843:1 6847:4 6884:1 6888:2 6890:2 6897:4 6935:1 6939:1 6944:1 6961:6 6980:2 6994:2 7003:1 7008:1 7012:1 7025:1 7038:1 7044:1 7059:1 7062:1 7066:1 7081:1 7087:2 7088:3 7089:1 7090:1 7091:1 7101:1 7103:1 7114:2 7132:2 7150:1 7190:2 7192:1 7193:1 7196:1 7197:4 7200:4 7201:1 7204:3 7207:3 7209:1 7210:1 7211:2 7217:1 7218:8 7221:1 7222:3 7224:1 7258:1 7272:1 7279:1 7303:1 7306:1 7307:1 7365:1 7380:1 7381:1 7389:1 7406:2 7410:1 7429:1 7435:2 7439:1 7463:1 7469:1 7497:1 7511:1 7512:1 7535:1 7539:2 7543:1 7552:1 7559:1 7570:2 7574:1 7589:2 7599:1 7602:1 7613:1 7619:1 7628:1 7637:1 7648:3 7649:1 7659:1 7662:1 7671:4 7672:1 7676:3 7677:1 7691:1 7705:5 7707:1 7724:1 7741:1 7745:2 7748:1 7750:3 7766:1 7776:1 7791:1 7792:1 7794:1 7822:1 7825:1 7833:1 7839:2 7840:1 7855:1 7867:1 7879:3 7912:2 7913:1 7927:1 7941:2 7949:1 7954:1 7956:1 7961:1 7984:1 7988:1 7993:1 8007:2 8025:2 8027:2 8043:1 8045:1 8054:1 8064:1 8075:8 8089:2 8090:1 8105:2 8129:1 8139:1 8143:4 8150:1 8155:1 8167:1 8196:1 8216:1 8219:1 8230:1 8247:1 8258:2 8273:1 8277:4 8283:1 8299:1 8302:1 8328:3 8338:1 8340:1 8347:1 8387:1 8389:3 8413:1 8417:4 8426:1 8432:3 8439:1 8454:1 8474:1 8478:1 8491:1 8494:1 8498:1 8499:1 8504:1 8531:1 8560:1 8562:1 8567:1 8570:1 8573:1 8575:1 8582:1 8599:1 8609:4 8611:1 8615:1 8619:1 8624:5 8630:3 8631:6 8633:4 8653:1 8654:1 8659:1 8663:1 8684:1 8688:2 8689:1 8702:43 8716:1 8717:1 8725:1 8726:9 8728:7 8734:2 8767:1 8783:1 8793:1 8796:2 8797:1 8810:1 8815:2 8816:2 8860:1 8864:1 8874:1 8880:1 8886:1 8887:1 8890:1 8891:1 8901:1 8909:1 8923:1 8930:1 8932:2 8935:7 8957:1 8960:1 8974:1 8982:5 8987:1 8992:1 9048:1 9059:1 9094:2 9127:1 9135:1 9143:1 9157:5 9168:2 9179:1 9183:1 9186:1 9203:3 9221:2 9222:1 9231:1 9232:18 9264:1 9267:1 9276:1 9279:1 9289:1 9298:1 9299:1 9324:1 9332:1 9335:1 9340:1 9381:1 9394:2 9425:1 9430:1 9435:1 9441:1 9466:1 9470:1 9473:1 9484:2 9493:1 9507:2 9508:1 9529:1 9540:2 9542:1 9544:2 9561:1 9563:1 9623:2 9630:1 9632:1 9633:1 9634:4 9638:1 9640:1 9642:2 9644:2 9646:1 9648:3 9649:2 9654:2 9661:1 9665:1 9669:1 9675:1 9688:1 9690:1 9697:2 9705:1 9742:1 9743:1 9746:1 9770:1 9781:1 9788:1 9806:1 9807:1 9810:2 9815:1 9823:1 9826:1 9833:1 9836:1 9842:3 9882:1 9901:3 9907:1 9923:1 9931:1 9937:2 9942:1 9945:2 9952:1 9965:1 9974:1 9976:3 9988:1 9994:1 9999:1 10008:2 10015:1 10022:1 10027:3 10035:1 10054:1 10070:1 10087:1 10092:1 10095:2 10117:1 10121:1 10124:1 10126:1 10138:1 10142:1 10150:2 10152:1 10159:1 10161:2 10197:1 10209:2 10210:2 10265:1 10275:1 10282:1 10291:1 10294:1 10307:3 10331:1 10332:1 10338:1 10340:1 10345:6 10349:1 10362:1 10367:1 10371:1 10373:1 10374:1 10376:1 10385:1 10389:1 10407:1 10422:1 10430:1 10434:5 10436:1 10445:1 10450:1 10454:1 10456:1 10459:1 10465:1 10479:1 10497:1 10502:1 10517:2 10518:1 10522:2 10524:1 10533:2 10540:1 10549:1 10554:1 10575:1 10583:1 10584:2 10586:1 10591:1 10598:1 10602:1 10619:1 10621:1 10623:1 10627:1 10643:2 10648:1 10666:2 10695:1 10709:3 10732:1 10752:2 10764:1 10765:1 10792:1 10800:1 10804:1 10806:1 10807:2 10822:1 10828:2 10831:1 10846:1 10867:2 10876:1 10877:1 10886:1 10892:1 10913:2 10948:8 10969:1 10970:1 10972:1 10973:3 10996:1 10997:2 10999:1 11011:1 11020:1 11029:1 11030:1 11052:1 11063:2 11067:1 11079:1 11094:2 11119:2 11133:3 11141:1 11163:2 11167:1 11170:2 11171:1 11172:1 11175:1 11178:2 11188:3 11200:1 11201:1 11208:1 11210:3 11214:2 11218:1 11222:1 11225:1 11226:1 11231:2 11232:2 11234:2 11242:2 11265:1 11266:2 11276:4 11288:2 11291:1 11302:1 11308:1 11309:1 11323:1 11324:1 11331:1 11342:1 11356:1 11362:1 11376:6 11383:2 11421:1 11431:1 11433:1 11438:1 11445:1 11448:1 11450:1 11451:1 11456:1 11464:1 11488:1 11492:1 11499:1 11517:2 11526:1 11550:1 11573:1 11575:1 11588:1 11594:1 11601:1 11603:1 11607:3 11611:3 11637:1 11656:1 11660:1 11674:1 11677:2 11690:1 11695:1 11697:1 11701:3 11717:1 11730:1 11741:1 11744:1 11778:1 11784:4 11795:1 11796:1 11811:1 11820:1 11822:7 11830:1 11841:1 11842:1 11846:1 11854:1 11855:1 11858:1 11860:1 11895:1 11899:1 11906:3 11912:1 11914:3 11930:1 11931:1 11933:1 11949:2 11955:1 11966:1 12002:1 12005:1 12015:4 12023:1 12026:2 12031:1 12039:3 12042:1 12050:3 12099:1 12109:1 12145:1 12149:1 12154:1 12162:1 12169:3 12197:1 12213:1 12214:1 12255:1 12266:1 12274:1 12275:1 12284:1 12307:2 12310:1 12319:1 12325:1 12327:3 12329:3 12333:1 12335:1 12336:4 12337:1 12339:1 12350:1 12352:2 12354:1 12356:1 12361:1 12369:1 12377:1 12378:2 12379:1 12389:1 12406:1 12427:1 12434:2 12438:1 12448:1 12472:1 12475:1 12476:1 12477:1 12487:1 12501:1 12526:1 12545:1 12551:1 12552:1 12559:1 12580:1 12596:1 12607:1 12618:4 12630:2 12640:1 12647:1 12649:1 12682:1 12733:1 12741:1 12743:1 12762:1 12766:1 12770:1 12775:1 12776:1 12805:1 12811:3 12814:2 12819:1 12836:1 12845:1 12862:2 12865:11 12867:1 12876:1 12877:1 12893:1 12902:1 12910:2 12915:1 12918:1 12923:1 12928:2 12933:1 12935:1 12936:1 12952:1 12954:1 12970:1 12977:2 12988:3 12994:1 13000:1 13005:1 13009:1 13012:1 13015:1 13018:3 13027:1 13032:1 13050:2 13061:2 13064:1 13073:1 13081:1 13085:3 13088:4 13089:2 13094:2 13111:1 13116:1 13128:8 13135:1 13137:1 13138:2 13142:3 13148:1 13149:1 13150:2 13151:6 13152:1 13153:1 13156:1 13162:6 13168:1 13192:1 13196:1 13202:1 13220:2 13228:1 13231:1 13244:1 13254:2 13264:2 13285:1 13294:1 13302:1 13308:1 13320:5 13365:1 13391:1 13408:1 13410:3 13415:1 13423:2 13427:1 13429:1 13434:1 13443:1 13448:2 13456:1 13461:1 13463:1 13473:3 13476:1 13480:2 13486:1 13515:2 13517:3 13527:2 13552:1 13553:2 13556:1 13590:1 13592:1 13600:1 13606:2 13608:1 13611:1 13616:1 13621:1 13649:1 13653:2 13654:2 13662:1 13674:1 13684:3 13685:4 13690:1 13700:1 13718:3 13738:1 13742:1 13745:1 13750:2 13778:1 13805:1 13815:1 13821:3 13826:2 13830:1 13848:1 13863:2 13873:5 13874:1 13895:2 13896:2 13899:1 13921:1 13933:1 13939:1 13940:1 13976:1 14004:1 14007:1 14011:1 14018:1 14021:1 14030:1 14037:1 14039:1 14055:1 14061:1 14101:1 14102:2 14119:1 14146:1 14162:3 14180:1 14183:2 14207:1 14210:1 14214:2 14242:1 14256:2 14267:1 14281:1 14318:2 14319:1 14341:1 14345:6 14353:1 14356:2 14361:1 14370:3 14376:1 14380:1 14384:1 14402:1 14409:1 14410:1 14416:1 14421:1 14436:2 14443:1 14449:1 14468:1 14471:1 14472:1 14473:4 14480:1 14483:2 14489:1 14497:1 14518:1 14520:1 14541:1 14545:1 14572:1 14577:1 14581:1 14583:1 14589:2 14592:1 14620:1 14633:1 14640:1 14652:1 14658:2 14688:1 14697:1 14706:1 14753:1 14781:1 14793:5 14804:1 14806:1 14831:1 14841:1 14854:2 14858:1 14859:1 14867:1 14870:2 14873:1 14877:7 14881:4 14883:1 14891:1 14895:1 14896:1 14904:3 14907:7 14915:1 14921:2 14935:2 14940:1 14942:2 14945:1 14949:3 14957:1 14958:1 14960:1 14975:2 14979:1 14980:1 14999:1 15005:1 15016:1 15019:2 15028:1 15033:2 15039:7 15040:1 15047:2 15054:1 15059:1 15066:1 15075:1 15079:1 15082:1 15087:1 15122:1 15125:4 15131:1 15160:1 15161:1 15187:1 15191:1 15215:1 15216:1 15217:5 15236:1 15246:1 15251:1 15255:1 15259:1 15275:1 15278:1 15281:2 15293:1 15311:1 15322:1 15325:3 15333:1 15336:1 15361:1 15367:1 15374:2 15381:2 15386:1 15429:1 15438:1 15443:1 15476:1 15477:3 15480:1 15483:2 15487:1 15489:2 15496:1 15508:1 15513:1 15519:1 15520:1 15523:1 15543:1 15551:1 15574:2 15616:6 15622:1 15625:2 15645:1 15662:1 15664:1 15666:2 15680:2 15704:1 15725:1 15728:5 15734:5 15740:2 15749:1 15780:2 15811:2 15820:2 15840:1 15855:1 15861:1 15900:2 15905:1 15923:1 15934:1 15945:1 15955:1 15959:1 15960:1 15962:1 15974:3 15986:1 15990:1 15993:1 15996:2 15997:1 16000:3 16021:1 16026:1 16030:1 16033:1 16040:3 16042:1 16043:1 16046:1 16067:1 16092:1 16098:2 16114:1 16119:1 16144:1 16145:1 16152:1 16178:2 16183:1 16187:1 16189:1 16197:1 16198:1 16214:1 16227:3 16229:1 16236:1 16237:1 16254:1 16266:1 16270:1 16273:1 16284:1 16289:1 16321:1 16330:4 16347:1 16350:2 16351:1 16355:1 16362:1 16390:2 16393:2 16411:1 16422:1 16427:2 16428:1 16433:2 16448:1 16451:1 16457:1 16463:1 16484:3 16508:3 16523:1 16534:1 16538:1 16556:2 16559:2 16566:4 16598:1 16606:1 16608:1 16630:1 16634:1 16642:1 16650:2 16674:2 16678:1 16684:5 16687:1 16688:1 16693:1 16694:1 16721:2 16723:1 16739:1 16741:1 16753:1 16762:1 16782:8 16783:1 16787:1 16789:1 16793:1 16831:1 16832:4 16835:1 16842:1 16846:2 16848:1 16860:1 16884:2 16904:1 16936:3 16940:2 16942:1 16944:1 16971:3 16973:3 16988:3 16990:1 16999:1 17012:2 17023:1 17042:1 17045:4 17046:1 17048:1 17053:2 17056:1 17061:1 17063:1 17098:2 17103:1 17105:1 17127:1 17140:1 17155:1 17176:1 17187:1 17194:3 17203:1 17214:1 17219:1 17224:1 17226:1 17246:1 17251:3 17269:1 17289:2 17293:1 17297:1 17314:1 17317:1 17318:1 17324:2 17370:1 17379:1 17389:1 17406:1 17423:13 17433:2 17437:1 17448:1 17479:2 17499:1 17503:1 17514:1 17516:1 17528:1 17531:1 17539:1 17543:1 17567:1 17571:1 17581:1 17586:2 17596:1 17598:1 17610:1 17648:1 17661:3 17673:1 17681:1 17689:12 17694:1 17695:1 17698:1 17699:2 17700:3 17709:1 17710:3 17714:1 17715:1 17718:1 17729:5 17731:2 17740:1 17752:1 17756:1 17758:1 17767:1 17771:1 17775:2 17776:1 17783:1 17784:2 17805:4 17824:1 17829:1 17830:2 17857:3 17860:2 17866:1 17871:1 17876:1 17878:1 17880:1 17884:1 17888:5 17951:1 17953:4 17955:2 17989:1 18008:1 18049:2 18053:4 18074:4 18108:1 18111:1 18114:1 18141:1 18148:1 18157:3 18160:1 18187:1 18195:10 18214:3 18220:1 18226:1 18234:2 18236:1 18243:2 18247:1 18258:1 18260:1 18273:1 18281:2 18302:1 18306:1 18308:2 18313:1 18315:1 18319:4 18321:2 18322:1 18327:1 18329:1 18330:1 18332:2 18340:2 18341:1 18342:5 18344:1 18351:1 18352:3 18372:1 18375:1 18401:1 18416:1 18417:1 18492:3 18527:2 18546:1 18561:1 18584:1 18619:1 18635:2 18672:1 18683:1 18684:1 18693:1 18697:1 18699:1 18702:1 18708:1 18717:1 18727:1 18732:1 18733:1 18738:1 18739:2 18743:1 18777:2 18785:1 18794:1 18799:2 18807:1 18808:2 18821:1 18842:1 18879:1 18896:1 18908:1 18911:3 18919:4 18928:1 18966:1 18967:1 18978:1 19000:1 19005:1 19024:1 19029:3 19030:1 19035:1 19039:1 19043:1 19050:1 19059:5 19062:2 19069:2 19081:1 19089:2 19103:2 19108:1 19126:1 19135:1 19139:5 19155:1 19165:3 19169:1 19177:1 19182:1 19200:4 19207:1 19208:1 19209:1 19212:1 19216:3 19233:1 19246:1 19248:2 19276:1 19295:1 19320:9 19329:1 19333:1 19345:1 19351:1 19352:1 19354:1 19357:3 19362:1 19372:1 19398:2 19417:1 19432:1 19443:1 19444:1 19448:1 19452:1 19465:1 19471:1 19503:1 19508:2 19509:1 19526:1 19559:1 19566:1 19567:1 19583:1 19585:1 19622:1 19628:1 19634:1 19637:1 19643:1 19655:1 19663:2 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19758:1 19763:3 19772:5 19774:1 19776:1 19781:2 19783:2 19784:1 19794:1 19797:1 19809:1 19816:1 19843:3 19849:2 19850:1 19867:1 19872:1 19897:1 19904:1 19910:1 19919:1 19936:1 19951:2 19962:1 19965:1 19966:1 20000:1 20007:2 20008:1 20020:2 20031:1 20032:2 20045:1 20077:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:2 20123:2 20124:6 20128:3 20136:1 20142:1 20143:1 20146:2 20163:1 20166:2 20174:1 20180:1 20181:1 20183:1 20200:1 20202:1 20219:1 20220:1 20225:3 20231:1 20237:1 20239:1 20241:1 20243:1 20286:1 20287:1 20300:2 20309:2 20341:1 20360:1 20373:1 20391:1 20394:1 20400:1 20405:1 20406:1 20407:2 20412:1 20416:1 20441:1 20454:1 20460:1 20477:1 20492:2 20499:1 20503:1 20516:1 20517:1 20518:1 20524:1 20525:1 20540:1 20561:1 20569:1 20635:4 20645:1 20673:1 20681:1 20682:1 20692:2 20697:2 20706:1 20709:1 20742:3 20792:1 20803:7 20814:2 20815:2 20831:1 20851:1 20876:1 20893:1 20894:1 20895:1 20900:2 20906:1 20929:2 20936:1 20942:2 20949:1 20951:1 20970:1 20974:2 20983:3 20996:2 21003:2 21004:1 21016:1 21041:1 21047:3218 21068:3 21070:1 21079:2 21087:1 21096:1 21164:1 21173:2 21178:1 21205:1 21234:1 21241:1 21278:1 21279:2 21291:1 21292:2 21295:1 21308:1 21355:1 21362:1 21372:1 21374:1 21378:1 21382:1 21398:1 21401:3 21408:1 21419:1 21421:1 21431:1 21444:1 21449:1 21466:1 21478:1 21487:1 21512:1 21515:3 21518:1 21532:1 21539:1 21551:1 21566:1 21571:1 21585:1 21601:1 21602:1 21644:1 21689:2 21692:1 21709:2 21729:1 21735:4 21790:1 21802:1 21806:1 21808:1 21812:1 21813:1 21817:1 21821:2 21827:3 21833:1 21843:1 21856:2 21861:2 21863:1 21874:1 21877:2 21883:1 21895:2 21907:1 21918:2 21921:7 21952:1 21953:8 21959:1 21960:1 21961:1 21966:2 21976:1 21992:1 22001:2 22020:3 22025:2 22029:2 22032:1 22041:1 22043:2 22045:2 22072:4 22082:1 22095:3 22107:2 22119:1 22127:1 22138:1 22143:1 22157:1 22162:1 22173:3 22174:1 22178:3 22181:1 22214:1 22227:1 22235:1 22240:1 22245:2 22262:1 22267:1 22271:1 22281:1 22294:1 22301:4 22306:1 22311:1 22318:1 22325:1 22344:1 22351:1 22364:1 22370:1 22375:1 22382:1 22404:5 22415:1 22423:3 22459:1 22479:2 22483:1 22495:1 22503:2 22504:1 22508:1 22526:2 22530:1 22540:1 22545:1 22548:3 22553:1 22562:1 22565:2 22569:1 22572:1 22573:2 22583:1 22586:1 22603:1 22615:1 22617:1 22626:3 22638:1 22644:2 22681:3 22688:1 22690:1 22698:1 22713:1 22737:2 22740:1 22750:1 22766:2 22774:1 22791:1 22793:1 22794:1 22803:1 22815:4 22824:1 22829:1 22834:1 22835:1 22837:1 22845:1 22851:1 22852:1 22870:6 22871:1 22877:2 22889:2 22952:1 22954:1 22966:1 22984:2 22992:1 23002:1 23004:1 23005:1 23036:2 23046:1 23055:1 23059:1 23100:1 23108:3 23113:1 23116:1 23129:1 23147:2 23156:1 23160:4 23163:1 23169:3 23172:1 23175:1 23183:1 23243:1 23257:1 23277:1 23279:1 23281:1 23286:1 23288:1 23290:1 23330:1 23353:1 23359:1 23363:1 23367:1 23373:1 23381:1 23383:1 23390:1 23415:2 23416:1 23419:1 23432:1 23434:1 23444:4 23447:2 23453:1 23456:1 23463:1 23490:4 23504:2 23518:1 23521:2 23523:1 23527:1 23529:2 23532:1 23544:3 23550:3 23556:1 23561:1 23570:1 23572:1 23574:1 23580:3 23583:1 23585:1 23609:1 23612:1 23617:1 23622:2 23626:1 23644:2 23649:2 23656:1 23657:1 23658:1 23663:1 23669:2 23723:2 23728:1 23729:1 23736:1 23745:6 23746:1 23751:1 23752:2 23756:1 23765:1 23773:1 23782:1 23790:1 23800:1 23802:2 23831:1 23837:1 23852:1 23853:1 23858:1 23859:1 23861:1 23863:1 23898:1 23901:1 23917:1 23919:2 23927:1 23931:1 23943:1 23949:1 23951:1 23953:2 23955:2 23985:1 23991:1 24009:1 24013:1 24024:5 24032:1 24039:1 24057:3 24058:1 24074:1 24082:2 24090:1 24093:1 24098:1 24099:1 24113:2 24114:1 24133:1 24138:1 24143:1 24144:1 24151:1 24166:1 24168:1 24194:1 24195:1 24197:1 24198:1 24201:1 24205:3 24206:2 24207:1 24208:1 24214:1 24217:1 24218:1 24222:1 24226:2 24229:1 24241:1 24250:1 24255:2 24262:2 24263:3 24274:1 24276:2 24279:1 24289:1 24308:1 24314:1 24321:1 24323:1 24334:1 24358:1 24359:2 24366:6 24368:1 24369:1 24373:2 24379:1 24383:2 24386:1 24394:1 24398:1 24401:1 24417:1 24418:1 24425:1 24427:1 24442:1 24449:1 24474:1 24477:1 24478:2 24493:6 24502:1 24504:1 24527:1 24541:1 24542:3 24550:2 24578:1 24587:1 24601:3 24618:1 24636:1 24639:1 24643:2 24650:3 24660:1 24678:1 24681:1 24685:3 24687:1 24690:4 24692:3 24695:1 24698:1 24706:2 24727:1 24742:1 24775:1 24788:2 24792:1 24805:2 24840:1 24841:1 24847:1 24854:1 24857:1 24858:1 24874:1 24887:1 24904:1 24907:1 24916:3 24921:1 24925:2 24933:3 24936:1 24937:1 24943:1 24957:1 24959:1 24966:1 24969:1 24972:2 24974:1 24975:1 24983:1 24985:2 24990:3 25003:1 25011:1 25017:1 25021:2 25022:1 25027:1 25032:1 25036:1 25041:1 25048:1 25077:2 25093:1 25100:1 25115:2 25127:1 25133:1 25134:1 25139:2 25156:3 25167:4 25170:1 25173:1 25183:1 25184:2 25189:1 25191:1 25197:1 25224:7 25233:3 25238:1 25245:2 25300:1 25306:5 25337:4 25346:1 25356:1 25357:1 25364:2 25366:1 25367:4 25369:1 25371:1 25401:1 25413:1 25415:1 25416:1 25423:1 25431:2 25434:2 25437:1 25454:1 25464:1 25474:2 25494:5 25508:1 25510:1 25513:2 25516:2 25526:2 25545:4 25548:1 25552:4 25557:1 25561:3 25562:1 25569:1 25582:2 25590:1 25595:2 25600:1 25621:1 25623:1 25624:1 25635:4 25646:1 25659:3 25662:2 25666:1 25669:4 25670:1 25674:4 25678:3 25713:1 25714:1 25724:1 25726:1 25732:1 25831:1 25834:1 25841:1 25865:2 25878:1 25883:1 25884:1 25897:1 25916:1 25920:1 25958:1 25967:1 26002:3 26017:1 26019:3 26025:1 26031:1 26032:1 26035:1 26036:1 26046:1 26047:1 26056:4 26062:1 26073:1 26084:1 26088:1 26106:1 26110:2 26133:1 26150:1 26158:1 26160:1 26188:2 26195:1 26217:1 26218:1 26223:1 26239:1 26243:1 26253:1 26255:1 26263:2 26269:1 26270:2 26278:1 26279:1 26286:4 26320:1 26324:1 26328:1 26329:2 26331:1 26334:1 26354:2 26364:1 26390:1 26403:1 26405:1 26407:1 26411:1 26423:2 26434:1 26435:1 26437:3 26442:2 26445:1 26459:1 26482:1 26488:1 26490:3 26502:6 26530:1 26549:1 26550:1 26557:2 26565:1 26581:1 26582:1 26584:1 26605:1 26606:1 26608:1 26646:2 26665:1 26675:1 26679:1 26681:1 26689:3 26705:1 26718:1 26726:1 26729:1 26768:1 26780:1 26793:1 26794:1 26839:1 26867:1 26872:2 26873:1 26879:1 26890:1 26897:1 26898:1 26932:1 26954:1 26966:1 26967:1 26977:1 26979:1 26984:3 26991:1 26996:1 26998:1 27020:2 27049:1 27052:1 27063:1 27065:3 27075:2 27076:1 27100:3 27105:1 27115:2 27116:1 27126:1 27133:1 27134:1 27144:3 27151:1 27182:1 27186:1 27196:2 27198:1 27202:1 27211:1 27222:2 27223:1 27224:1 27226:1 27227:5 27231:1 27233:1 27245:3 27247:1 27265:1 27280:1 27295:1 27299:3 27300:1 27305:2 27317:1 27335:1 27336:2 27344:1 27351:1 27357:1 27358:1 27365:1 27376:1 27383:1 27390:1 27408:2 27412:1 27429:2 27436:2 27460:1 27466:1 27470:3 27471:3 27479:1 27481:1 27483:1 27484:1 27486:1 27487:4 27489:3 27490:2 27496:1 27498:3 27508:2 27511:1 27519:1 27527:2 27530:3 27539:4 27547:1 27578:1 27580:2 27586:1 27603:2 27612:2 27622:1 27626:2 27654:1 27655:2 27661:1 27664:2 27674:1 27681:1 27683:1 27687:2 27689:1 27691:2 27692:1 27705:1 27711:1 27713:1 27754:1 27797:11 27798:1 27799:1 27821:9 27835:1 27839:3 27842:2 27858:1 27862:1 27864:1 27871:1 27876:3 27890:2 27892:1 27912:2 27915:3 27986:2 27994:1 28003:1 28024:1 28030:1 28046:1 28052:1 28064:1 28065:1 28069:1 28074:1 28078:1 28082:1 28094:1 28101:1 28110:1 28113:2 28115:1 28133:2 28149:1 28173:1 28209:1 28275:1 28293:1 28294:1 28303:1 28308:1 28319:2 28348:3 28349:5 28369:1 28382:9 28384:1 28393:1 28397:1 28401:1 28402:1 28413:2 28420:1 28424:2 28425:1 28430:1 28501:1 28527:1 28533:2 28536:1 28558:1 28593:1 28614:3 28631:1 28632:5 28635:3 28636:1 28643:1 28658:1 28670:2 28673:1 28674:1 28685:1 28694:2 28722:1 28730:1 28731:1 28736:1 28759:4 28773:1 28776:1 28787:1 28803:2 28809:1 28833:2 28847:1 28884:1 28885:1 28926:1 28944:1 28948:4 28966:1 28969:2 28976:1 28983:1 28995:1 29005:4 29012:2 29032:1 29042:1 29136:1 29137:2 29149:2 29152:2 29211:1 29225:1 29226:2 29233:1 29241:1 29263:2 29266:1 29277:1 29279:3 29283:1 29287:1 29290:1 29298:2 29305:1 29313:1 29329:1 29330:1 29336:1 29339:1 29342:1 29344:1 29345:1 29346:1 29349:1 29351:1 29356:1 29359:1 29378:1 29383:1 29394:1 29421:7 29433:1 29448:1 29474:1 29483:1 29485:1 29496:1 29515:8 29521:2 29529:1 29535:1 29547:1 29559:1 29562:1 29567:1 29570:1 29583:1 29605:3 29612:1 29623:1 29632:1 29643:3 29649:1 29654:1 29658:1 29676:4 29702:1 29704:4 29711:1 29721:1 29724:1 29728:1 29729:1 29730:1 29735:1 29745:1 29775:1 29783:1 29800:1 29820:2 29824:1 29825:1 29826:1 29831:2 29839:1 29841:1 29845:1 29847:1 29899:1 29904:1 29916:1 29927:1 29958:4 29969:1 29971:3 29974:3 29977:1 29995:1 29999:1 30002:2 30015:1 30035:1 30040:1 30044:1 30052:1 30059:1 30096:1 30100:2 30105:1 30142:1 30149:2 30156:2 30168:2 30169:1 30191:1 30199:1 30204:1 30213:2 30231:6 30249:1 30252:1 30267:1 30285:1 30297:1 30305:1 30306:1 30315:1 30327:1 30330:1 30331:2 30342:1 30357:1 30360:1 30370:1 30380:4 30393:2 30420:1 30431:1 30435:1 30445:1 30454:1 30471:1 30475:4 30501:3 30504:3 30507:1 30510:2 30532:1 30548:2 30552:2 30572:2 30587:7 30589:3 30602:1 30638:1 30653:1 30660:1 30663:1 30664:6 30685:1 30688:1 30689:2 30697:1 30704:5 30710:1 30718:2 30730:1 30738:1 30775:1 30776:1 30789:2 30798:6 30802:4 30805:3 30809:2 30814:3 30822:1 30834:1 30835:1 30843:4 30846:1 30854:2 30864:1 30867:1 30868:2 30869:1 30875:1 30880:1 30883:1 30884:2 30892:2 30895:1 30908:2 30956:2 30967:2 30968:1 30971:2 30977:2 30988:1 30994:2 30999:1 31009:1 31019:1 31020:1 31042:1 31046:3 31057:2 31062:1 31065:1 31082:1 31095:1 31101:1 31104:2 31107:1 31125:2 31127:1 31130:1 31135:1 31142:2 31144:1 31158:2 31161:1 31172:1 31184:1 31191:1 31195:2 31197:2 31206:1 31209:1 31216:8 31221:1 31227:1 31287:1 31306:1 31315:1 31322:2 31324:1 31360:1 31363:2 31370:2 31388:1 31391:1 31392:3 31398:1 31404:1 31422:2 31440:2 31448:1 31452:3 31459:1 31461:3 31463:1 31476:1 31478:1 31480:1 31484:2 31485:3 31494:1 31521:1 31531:4 31538:1 31543:1 31547:1 31554:1 31566:1 31576:3 31581:1 31583:1 31590:1 31622:1 31625:1 31635:1 31640:1 31649:1 31658:2 31665:20 31667:2 31670:2 31674:2 31679:1 31680:3 31686:1 31688:2 31704:8 31721:3 31727:1 31730:1 31750:1 31761:3 31763:1 31783:1 31790:1 31818:1 31821:1 31827:2 31834:4 31842:1 31846:1 31853:1 31877:6 31894:1 31897:2 31910:1 31911:1 31921:1 31932:1 31938:2 31952:1 31954:1 31960:1 31962:1 31974:1 31976:1 31998:2 32009:1 32027:1 32035:2 32041:1 32047:1 32053:1 32061:1 32070:1 32083:1 32085:1 32094:1 32103:1 32105:2 32117:1 32125:1 32128:1 32140:1 32142:1 32153:1 32171:2 32172:2 32181:1 32201:1 32207:1 32212:1 32229:1 32241:4 32244:5 32277:1 32280:3 32299:1 32303:1 32304:1 32310:1 32311:1 32312:1 32319:1 32335:2 32348:1 32403:1 32407:1 32433:1 32439:1 32443:5 32447:1 32451:1 32456:1 32471:4 32472:1 32476:1 32487:1 32491:3 32499:1 32551:1 32552:2 32579:1 32619:1 32625:1 32628:1 32632:1 32650:1 32651:1 32656:2 32660:1 32661:1 32693:2 32697:1 32713:4 32719:1 32722:1 32724:1 32750:3 32791:1 32795:1 32803:1 32808:2 32814:2 32818:1 32824:1 32834:1 32843:1 32846:2 32885:1 32899:1 32900:2 32910:2 32934:1 32935:1 32941:3 32944:3 32956:2 32963:1 33001:2 33019:1 33025:1 33038:1 33041:6 33055:1 33056:3 33057:1 33059:1 33075:1 33084:1 33105:1 33108:1 33115:1 33118:1 33133:1 33138:1 33141:3 33143:2 33146:1 33148:2 33149:1 33155:9 33164:1 33167:4 33168:1 33171:4 33198:1 33211:1 33220:2 33224:1 33225:1 33226:1 33232:1 33234:2 33267:1 33271:3
11 1:1 2:1 6:1 27:1 31:1 34:1 39:2 49:1 53:1 55:1 60:2 67:1 84:1 85:1 86:1 93:1 95:1 99:2 106:1 126:1 148:1 150:2 159:1 166:1 170:1 181:1 183:1 187:2 215:1 232:1 238:5 256:1 265:1 282:1 283:1 294:3 296:2 299:1 313:1 344:1 347:1 362:1 378:1 401:1 402:1 403:4 411:2 415:2 427:2 446:1 455:2 498:1 507:8 513:1 523:1 546:2 582:2 586:1 621:1 627:1 646:1 654:1 698:1 712:1 717:3 721:1 731:7 745:1 753:1 759:2 764:4 765:1 766:1 774:1 789:1 790:2 795:1 807:1 808:1 815:2 829:1 866:2 899:1 937:1 955:1 956:1 971:2 974:1 979:1 984:1 1003:2 1022:3 1049:2 1053:1 1057:1 1067:2 1069:1 1070:1 1071:7 1073:1 1083:1 1094:1 1103:1 1106:1 1117:1 1118:1 1125:1 1127:1 1130:5 1132:1 1134:1 1141:2 1144:1 1158:1 1161:1 1168:2 1171:2 1199:1 1204:4 1211:1 1216:2 1220:1 1236:3 1239:1 1244:1 1257:1 1262:1 1265:1 1284:1 1287:1 1309:1 1311:2 1316:1 1318:1 1321:1 1322:1 1351:2 1376:1 1378:1 1388:1 1392:1 1393:1 1403:1 1405:2 1413:1 1415:1 1421:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:1 1465:1 1467:1 1480:1 1481:1 1487:1 1496:2 1504:1 1509:1 1514:1 1532:1 1538:1 1539:1 1545:1 1547:1 1588:2 1624:1 1626:2 1630:1 1635:1 1645:1 1650:1 1658:1 1664:4 1683:2 1686:1 1690:2 1691:1 1719:1 1726:7 1730:11 1739:11 1745:1 1747:1 1749:1 1751:2 1793:1 1807:1 1808:1 1837:4 1839:4 1841:1 1869:1 1878:2 1883:8 1892:1 1899:1 1906:2 1917:6 1941:1 1943:1 1948:1 1955:1 1956:1 1957:1 1963:1 1966:1 1977:1 1980:1 1999:1 2003:1 2019:2 2037:1 2041:1 2061:1 2062:1 2073:2 2078:1 2080:1 2086:1 2098:1 2113:1 2118:1 2119:1 2133:3 2135:1 2136:1 2137:3 2138:2 2141:1 2157:1 2158:1 2169:1 2177:2 2180:1 2187:1 2195:6 2209:1 2214:1 2223:1 2237:1 2241:1 2246:1 2249:2 2255:1 2263:2 2265:1 2269:1 2279:1 2284:2 2301:1 2317:3 2322:1 2345:1 2348:1 2355:1 2367:1 2372:1 2373:5 2381:1 2397:1 2399:1 2406:1 2419:1 2421:1 2422:1 2429:1 2437:1 2441:1 2465:1 2482:5 2496:1 2502:3 2508:1 2509:1 2519:1 2521:2 2525:1 2529:1 2530:1 2537:1 2547:1 2551:3 2552:1 2553:1 2555:5 2558:4 2559:1 2562:1 2563:2 2568:1 2570:1 2573:1 2576:2 2578:3 2579:3 2583:1 2585:1 2587:1 2613:1 2616:1 2618:3 2620:3 2623:3 2624:5 2625:2 2626:1 2630:1 2631:3 2632:1 2634:2 2635:2 2637:1 2640:2 2642:4 2647:6 2648:1 2652:1 2657:3 2662:2 2663:1 2681:1 2720:1 2732:1 2739:1 2753:2 2774:1 2784:1 2788:1 2795:1 2801:3 2821:1 2831:3 2832:1 2864:1 2867:1 2868:1 2878:1 2888:1 2890:1 2896:1 2905:2 2918:2 2934:1 2951:2 2953:1 2955:1 2962:1 2964:1 2979:1 2985:1 2992:1 2993:1 3008:1 3017:2 3030:1 3033:1 3039:1 3042:1 3049:1 3051:1 3059:1 3069:1 3071:1 3080:4 3097:1 3098:1 3106:7 3116:2 3121:2 3134:2 3145:1 3157:1 3165:3 3171:1 3173:2 3182:2 3193:1 3195:1 3197:1 3201:2 3213:2 3257:1 3263:2 3283:1 3284:7 3291:1 3294:1 3295:9 3302:2 3314:1 3318:1 3336:4 3350:2 3351:1 3352:1 3353:11 3360:1 3364:2 3369:1 3377:1 3379:1 3380:1 3386:1 3397:1 3408:1 3411:2 3418:2 3433:2 3464:1 3474:1 3475:1 3482:1 3504:1 3517:1 3529:1 3539:1 3549:1 3550:2 3572:1 3578:2 3588:1 3625:1 3645:1 3646:1 3683:1 3690:3 3702:3 3721:3 3726:1 3744:1 3755:1 3758:3 3762:1 3765:1 3769:1 3772:1 3790:1 3799:1 3816:1 3821:1 3822:2 3853:1 3856:1 3857:2 3868:1 3917:1 3926:1 3930:2 3936:1 3939:1 3942:2 3945:1 3951:1 3968:1 3974:1 3978:1 3990:1 4005:1 4011:1 4012:1 4018:1 4020:2 4033:1 4035:2 4040:1 4047:3 4074:1 4105:1 4115:1 4122:1 4131:1 4160:4 4174:5 4193:3 4195:1 4207:1 4225:1 4245:1 4247:2 4252:4 4253:13 4267:1 4271:1 4279:1 4288:4 4289:3 4291:2 4292:1 4303:1 4306:7 4308:1 4331:1 4332:4 4334:1 4351:3 4356:1 4378:1 4382:1 4391:1 4405:1 4434:1 4454:1 4456:2 4465:1 4470:1 4477:1 4484:1 4487:1 4488:1 4510:3 4511:1 4512:1 4529:1 4531:2 4533:1 4536:3 4540:2 4545:3 4547:1 4573:1 4574:2 4575:1 4581:2 4585:1 4593:1 4609:1 4628:2 4635:1 4637:1 4663:1 4667:1 4684:1 4686:2 4714:1 4727:1 4728:1 4730:1 4758:1 4763:5 4767:7 4773:1 4785:1 4792:1 4793:4 4824:2 4842:2 4863:1 4871:1 4872:5 4877:2 4888:2 4889:1 4906:1 4907:1 4929:1 4933:1 4936:2 4951:1 4959:1 4974:1 4980:1 4989:1 4991:1 5000:1 5020:1 5022:1 5025:1 5030:1 5033:4 5045:2 5052:1 5066:1 5072:1 5082:1 5098:1 5106:1 5136:2 5143:5 5162:1 5163:1 5168:1 5171:1 5198:1 5212:1 5239:1 5246:3 5269:1 5276:1 5287:3 5290:2 5299:1 5312:1 5337:3 5340:5 5365:1 5369:3 5397:1 5462:1 5471:1 5490:1 5491:1 5516:1 5517:1 5536:1 5562:36 5564:2 5596:2 5610:1 5671:1 5689:1 5690:3 5706:1 5717:3 5718:7 5719:4 5720:3 5722:1 5725:3 5730:2 5731:3 5733:4 5735:2 5740:1 5744:1 5748:1 5750:5 5752:3 5763:1 5766:1 5770:1 5781:1 5788:1 5794:1 5811:1 5814:2 5825:1 5832:1 5844:1 5853:2 5855:1 5868:1 5873:1 5898:1 5907:1 5965:3 5975:1 6027:1 6038:1 6084:3 6088:1 6089:1 6108:1 6115:1 6124:1 6144:3 6150:3 6165:2 6169:2 6181:1 6186:1 6224:1 6233:1 6237:1 6283:2 6284:1 6292:1 6299:1 6300:1 6305:4 6318:1 6319:3 6322:1 6327:1 6328:1 6335:4 6345:2 6355:1 6372:2 6374:2 6382:1 6385:1 6388:1 6391:2 6395:1 6397:2 6400:1 6403:1 6407:2 6412:1 6418:2 6428:1 6431:1 6435:2 6454:1 6459:7 6469:1 6480:4 6496:1 6506:1 6508:2 6509:2 6520:1 6529:1 6531:1 6533:1 6536:1 6537:1 6540:1 6547:1 6548:1 6553:1 6558:4 6570:1 6581:4 6584:1 6610:1 6624:1 6688:5 6692:3 6699:1 6706:1 6707:1 6750:1 6761:1 6776:1 6793:1 6795:1 6806:1 6816:1 6819:2 6827:1 6843:1 6847:4 6863:1 6884:1 6887:1 6888:2 6890:2 6897:4 6935:1 6939:1 6944:1 6961:6 6980:2 6994:2 7003:1 7008:1 7012:1 7025:1 7038:1 7044:1 7059:1 7062:1 7066:1 7081:1 7087:2 7088:3 7089:2 7090:1 7091:1 7101:1 7103:1 7114:2 7132:2 7150:1 7190:2 7192:1 7193:1 7196:2 7197:4 7200:4 7201:1 7204:3 7207:3 7209:2 7210:1 7211:2 7217:1 7218:9 7221:1 7222:3 7224:1 7258:1 7272:1 7279:1 7303:1 7306:1 7307:2 7365:2 7378:1 7380:1 7381:1 7389:1 7406:2 7410:1 7429:2 7435:2 7439:1 7463:1 7469:1 7497:1 7511:1 7512:1 7535:1 7539:2 7543:1 7552:1 7559:1 7570:2 7574:1 7589:2 7599:1 7602:1 7613:1 7619:1 7628:1 7637:1 7648:3 7649:1 7659:1 7662:1 7671:4 7672:1 7676:3 7677:1 7691:1 7705:5 7707:1 7724:1 7741:1 7745:2 7748:1 7750:3 7766:1 7776:1 7791:1 7792:1 7794:1 7822:1 7825:1 7833:1 7839:2 7840:1 7855:1 7867:1 7879:3 7912:2 7913:1 7927:1 7941:2 7949:1 7954:1 7956:1 7961:1 7984:1 7988:1 7993:1 8007:2 8025:2 8027:2 8043:1 8045:1 8054:1 8064:1 8075:8 8089:2 8090:1 8105:2 8127:1 8129:1 8139:1 8143:4 8150:1 8155:1 8167:1 8196:1 8216:1 8219:1 8230:1 8247:1 8248:1 8258:2 8273:1 8277:4 8283:1 8299:1 8302:1 8328:3 8338:1 8340:1 8347:1 8387:1 8389:3 8413:1 8417:4 8426:1 8432:3 8439:1 8446:1 8454:1 8474:1 8478:1 8491:1 8494:1 8498:1 8499:1 8504:1 8531:1 8560:1 8562:1 8567:1 8570:1 8573:1 8575:1 8582:1 8593:1 8599:1 8609:4 8611:1 8615:1 8619:1 8624:5 8630:3 8631:6 8633:4 8653:1 8654:2 8659:1 8663:1 8684:1 8688:2 8689:1 8702:44 8716:1 8717:1 8725:1 8726:9 8728:7 8734:2 8748:1 8767:1 8783:1 8793:1 8796:2 8797:1 8810:1 8815:2 8816:2 8817:1 8860:1 8864:1 8874:1 8880:1 8886:1 8887:1 8890:1 8891:1 8901:1 8909:2 8923:1 8930:1 8932:2 8935:7 8957:1 8960:1 8974:1 8982:5 8987:1 8992:1 9048:1 9059:1 9094:2 9127:1 9135:1 9143:1 9157:6 9168:2 9179:1 9183:1 9186:1 9203:3 9221:2 9222:1 9231:1 9232:18 9264:1 9267:1 9276:1 9279:1 9289:1 9298:1 9299:1 9324:1 9332:1 9335:1 9340:1 9381:1 9394:2 9425:1 9430:1 9435:1 9441:1 9466:1 9470:1 9473:1 9484:2 9493:1 9507:2 9508:1 9529:1 9540:2 9542:1 9544:2 9561:1 9563:1 9623:2 9630:1 9632:1 9633:1 9634:4 9638:1 9640:1 9642:2 9644:2 9646:1 9648:3 9649:2 9654:2 9661:1 9665:1 9669:1 9675:1 9688:1 9690:1 9697:2 9705:1 9742:1 9743:1 9746:1 9770:1 9781:1 9788:1 9806:1 9807:1 9810:2 9815:1 9823:1 9826:1 9833:1 9836:1 9842:3 9882:1 9901:3 9907:1 9923:1 9931:1 9937:2 9942:1 9945:2 9952:1 9965:1 9974:1 9976:3 9988:1 9994:1 9999:1 10008:2 10015:1 10022:1 10027:3 10035:1 10054:1 10070:1 10087:1 10092:1 10095:2 10117:1 10121:1 10124:1 10126:1 10138:1 10142:1 10150:2 10152:1 10159:1 10161:2 10197:1 10209:2 10210:2 10232:1 10265:1 10275:1 10282:1 10291:1 10294:1 10307:3 10331:1 10332:1 10338:1 10340:1 10345:7 10349:1 10362:1 10367:1 10371:1 10373:1 10374:1 10376:1 10385:1 10389:1 10407:1 10422:1 10430:1 10434:5 10436:1 10445:1 10450:1 10454:1 10456:1 10459:1 10465:1 10479:1 10497:1 10502:1 10517:2 10518:1 10522:2 10524:1 10533:2 10540:1 10549:1 10554:1 10570:1 10575:1 10583:1 10584:2 10586:1 10591:1 10598:1 10602:1 10619:1 10621:1 10623:1 10627:1 10643:2 10648:1 10666:2 10695:1 10709:3 10732:1 10752:2 10764:1 10765:1 10792:1 10800:1 10804:1 10806:1 10807:2 10822:1 10828:2 10831:1 10846:1 10867:2 10876:1 10877:1 10886:1 10892:1 10893:1 10913:2 10948:8 10969:1 10970:1 10972:1 10973:3 10996:1 10997:2 10999:1 11011:1 11020:1 11029:1 11030:1 11052:1 11063:2 11067:1 11079:1 11094:2 11119:2 11133:3 11141:1 11163:2 11167:1 11170:2 11171:1 11172:1 11175:1 11178:2 11188:3 11200:1 11201:1 11208:1 11210:4 11214:3 11218:1 11222:1 11225:1 11226:1 11231:2 11232:2 11234:2 11242:2 11265:1 11266:2 11276:4 11288:2 11291:1 11302:1 11308:1 11309:1 11323:1 11324:1 11331:1 11342:1 11356:1 11362:1 11376:6 11383:2 11421:1 11431:1 11433:1 11438:1 11445:1 11448:1 11450:1 11451:1 11456:1 11464:1 11488:1 11492:1 11499:1 11517:2 11526:1 11550:1 11573:1 11575:1 11588:1 11594:1 11601:1 11603:1 11607:3 11611:3 11637:1 11656:1 11660:1 11674:1 11677:2 11690:1 11695:1 11697:1 11701:3 11717:1 11730:1 11741:1 11744:1 11778:1 11784:4 11795:1 11796:1 11811:1 11820:1 11822:7 11830:1 11841:1 11842:1 11846:1 11854:1 11855:1 11858:1 11860:1 11895:1 11899:1 11906:3 11912:1 11914:3 11930:1 11931:1 11933:1 11949:2 11955:1 11966:1 12002:1 12005:1 12015:4 12023:1 12026:2 12031:1 12039:3 12042:1 12050:3 12099:1 12109:1 12145:1 12149:1 12154:1 12162:1 12169:3 12197:1 12213:1 12214:1 12255:1 12266:1 12274:1 12275:1 12284:1 12307:2 12310:1 12319:1 12325:1 12327:3 12329:3 12333:1 12335:1 12336:4 12337:1 12339:1 12350:1 12352:2 12354:1 12356:1 12361:1 12369:1 12377:1 12378:2 12379:1 12389:1 12406:1 12427:1 12434:2 12438:1 12448:1 12461:1 12472:1 12475:1 12476:1 12477:2 12487:1 12501:1 12526:1 12545:1 12551:1 12552:1 12559:1 12580:1 12596:1 12607:1 12618:4 12630:2 12640:1 12647:1 12649:1 12682:1 12733:1 12741:1 12743:1 12762:1 12766:1 12770:1 12775:1 12776:1 12805:1 12811:3 12814:2 12819:1 12836:1 12845:1 12862:2 12865:11 12867:1 12876:1 12877:1 12893:1 12896:1 12902:1 12910:2 12915:1 12918:1 12923:1 12928:2 12933:1 12935:1 12936:1 12952:1 12954:1 12970:1 12977:2 12988:3 12994:1 13000:1 13005:1 13009:1 13012:1 13015:1 13018:3 13027:1 13032:1 13050:2 13061:2 13064:1 13073:1 13081:1 13085:3 13088:4 13089:2 13094:2 13111:1 13116:1 13128:8 13135:1 13137:1 13138:2 13142:4 13143:1 13148:1 13149:1 13150:2 13151:6 13152:1 13153:1 13156:1 13162:6 13168:1 13192:1 13196:1 13202:1 13220:2 13228:1 13231:1 13244:1 13254:2 13264:2 13285:1 13294:2 13302:1 13308:1 13320:6 13365:1 13391:1 13408:1 13410:3 13415:1 13423:2 13427:1 13429:1 13434:1 13443:1 13448:2 13456:1 13461:1 13463:1 13473:3 13476:1 13480:2 13486:1 13515:2 13517:3 13527:2 13552:1 13553:2 13556:1 13590:1 13592:1 13600:1 13606:2 13608:1 13611:1 13616:1 13621:1 13649:1 13653:2 13654:2 13662:1 13674:1 13684:3 13685:4 13690:1 13700:2 13718:3 13738:1 13742:1 13745:1 13750:2 13778:1 13805:1 13815:1 13821:3 13826:2 13830:1 13848:1 13863:2 13873:5 13874:1 13895:2 13896:2 13899:1 13921:1 13933:1 13939:1 13940:1 13976:1 14004:1 14007:1 14011:1 14018:1 14021:1 14030:1 14037:1 14039:1 14055:1 14061:1 14101:1 14102:2 14119:1 14146:1 14162:3 14180:1 14183:2 14207:1 14210:1 14214:2 14242:1 14256:2 14267:1 14281:1 14318:2 14319:1 14341:1 14345:7 14353:1 14356:2 14361:1 14370:3 14376:1 14380:1 14384:1 14402:1 14409:1 14410:1 14416:1 14421:1 14436:2 14443:1 14449:1 14468:1 14471:1 14472:1 14473:5 14480:1 14483:2 14489:1 14497:1 14518:1 14520:1 14541:1 14545:1 14572:1 14577:1 14581:1 14583:1 14589:2 14592:1 14620:1 14633:1 14640:1 14652:1 14658:2 14688:2 14697:1 14706:1 14753:1 14781:1 14793:5 14804:1 14806:1 14831:1 14841:1 14854:2 14858:1 14859:1 14867:1 14870:2 14873:1 14877:7 14881:4 14883:1 14891:1 14895:1 14896:1 14904:4 14907:7 14915:1 14921:2 14935:2 14940:1 14942:2 14945:1 14949:3 14957:1 14958:1 14960:1 14975:2 14979:1 14980:1 14999:1 15005:1 15016:1 15019:2 15028:1 15033:2 15039:7 15040:1 15047:2 15054:1 15059:1 15066:1 15075:1 15079:1 15082:1 15087:1 15122:1 15125:4 15131:1 15160:1 15161:1 15187:1 15191:1 15215:1 15216:1 15217:5 15236:1 15246:1 15251:1 15255:1 15259:1 15275:1 15278:1 15281:2 15293:1 15311:1 15322:1 15325:3 15333:2 15336:1 15361:1 15367:1 15374:2 15381:2 15386:1 15429:1 15438:1 15443:1 15476:1 15477:3 15480:1 15483:2 15487:1 15489:2 15496:1 15508:2 15513:1 15519:1 15520:1 15523:1 15543:1 15551:1 15574:2 15616:6 15622:1 15625:2 15645:1 15662:1 15664:1 15666:2 15680:2 15704:1 15725:1 15728:5 15734:5 15740:2 15749:2 15780:2 15811:2 15820:2 15840:1 15855:1 15861:1 15864:1 15900:2 15905:1 15923:1 15934:1 15945:1 15955:1 15959:1 15960:1 15962:1 15974:3 15986:1 15990:1 15993:1 15996:2 15997:1 16000:3 16021:1 16026:1 16030:1 16033:1 16040:3 16042:1 16043:1 16046:1 16067:1 16092:1 16098:2 16114:1 16119:1 16144:1 16145:1 16152:1 16178:2 16183:1 16187:1 16189:1 16197:1 16198:1 16214:1 16227:3 16229:1 16236:1 16237:1 16254:1 16266:1 16270:1 16273:1 16284:1 16289:1 16321:1 16330:4 16347:1 16350:2 16351:1 16355:1 16362:1 16390:2 16393:2 16411:1 16422:1 16427:2 16428:1 16433:2 16448:1 16451:1 16457:1 16463:1 16484:3 16508:3 16523:1 16534:1 16538:1 16556:2 16559:2 16566:4 16598:1 16606:1 16608:1 16630:1 16634:1 16642:1 16650:2 16674:2 16678:1 16684:5 16687:1 16688:1 16693:1 16694:1 16721:2 16723:1 16739:1 16741:1 16753:1 16762:1 16782:8 16783:1 16787:1 16789:1 16793:1 16831:1 16832:4 16835:1 16842:1 16846:2 16848:1 16860:1 16884:2 16904:1 16922:1 16936:3 16940:2 16942:1 16944:1 16971:3 16973:3 16984:1 16988:3 16990:1 16999:1 17012:2 17023:1 17042:1 17045:4 17046:1 17048:1 17053:2 17056:1 17061:1 17063:1 17098:2 17103:1 17105:1 17127:1 17140:1 17155:1 17176:1 17187:1 17194:3 17203:1 17214:1 17219:1 17224:1 17226:1 17246:1 17251:3 17269:1 17289:2 17293:1 17297:1 17314:1 17317:1 17318:1 17324:2 17370:1 17379:1 17389:1 17406:1 17420:1 17423:13 17433:2 17437:1 17448:1 17479:2 17499:1 17503:1 17514:1 17516:1 17528:2 17531:1 17539:1 17543:1 17567:1 17571:1 17576:1 17581:1 17586:2 17596:1 17598:1 17610:1 17648:1 17661:3 17673:1 17681:1 17689:12 17694:1 17695:1 17698:1 17699:2 17700:3 17709:1 17710:3 17714:1 17715:1 17718:1 17722:1 17729:5 17731:2 17740:1 17752:1 17756:1 17758:1 17767:1 17771:1 17775:2 17776:1 17783:1 17784:2 17805:4 17824:1 17829:1 17830:2 17857:3 17860:2 17866:1 17871:1 17876:1 17878:1 17880:1 17884:1 17888:5 17951:1 17953:4 17955:2 17989:1 18008:1 18049:2 18053:4 18074:4 18108:1 18111:1 18114:1 18141:1 18148:1 18157:3 18160:1 18187:1 18195:11 18214:3 18220:1 18226:1 18234:2 18236:1 18243:2 18247:1 18258:1 18260:1 18273:1 18281:2 18302:1 18306:1 18308:2 18313:1 18315:1 18319:4 18321:2 18322:1 18327:1 18329:1 18330:1 18332:3 18340:2 18341:1 18342:5 18344:1 18351:1 18352:3 18372:1 18375:1 18401:1 18416:1 18417:1 18492:3 18527:2 18546:1 18561:1 18584:1 18619:1 18635:2 18672:1 18683:1 18684:1 18693:1 18697:1 18699:1 18702:1 18708:1 18717:1 18727:1 18732:1 18733:1 18738:1 18739:2 18743:1 18764:1 18777:2 18785:1 18794:1 18799:2 18807:1 18808:2 18821:1 18842:1 18879:1 18896:1 18908:1 18911:3 18919:4 18928:1 18966:1 18967:1 18978:1 19000:1 19005:1 19024:1 19029:3 19030:1 19035:1 19039:1 19043:1 19050:1 19059:6 19062:2 19069:2 19081:1 19089:2 19103:2 19108:1 19126:1 19135:1 19139:5 19155:1 19165:3 19169:2 19177:1 19182:1 19200:4 19207:2 19208:1 19209:1 19212:1 19216:3 19233:1 19246:1 19248:2 19276:1 19295:1 19320:9 19329:1 19333:1 19345:1 19351:1 19352:1 19354:1 19357:3 19362:1 19372:1 19398:2 19417:1 19432:1 19443:1 19444:2 19448:1 19452:1 19465:2 19471:1 19503:1 19508:2 19509:1 19526:1 19559:1 19566:1 19567:1 19583:1 19585:1 19622:1 19628:1 19634:1 19637:1 19643:1 19655:1 19663:2 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19758:1 19763:3 19772:5 19774:1 19776:1 19781:2 19783:3 19784:1 19794:1 19797:1 19809:1 19816:1 19843:3 19849:2 19850:1 19867:1 19872:1 19897:1 19904:1 19910:1 19919:1 19936:1 19951:2 19962:1 19965:1 19966:1 20000:1 20007:2 20008:1 20020:2 20031:1 20032:2 20045:1 20077:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:2 20123:2 20124:7 20128:3 20136:1 20142:1 20143:1 20146:2 20163:1 20166:2 20174:1 20180:1 20181:1 20183:1 20200:1 20202:1 20219:1 20220:1 20225:3 20230:1 20231:1 20237:1 20239:1 20241:1 20243:1 20286:1 20287:1 20300:2 20309:2 20341:1 20360:1 20373:1 20391:1 20394:1 20400:1 20405:1 20406:1 20407:2 20412:1 20416:1 20441:1 20454:1 20458:1 20460:1 20477:1 20492:2 20499:1 20503:1 20514:1 20516:1 20517:1 20518:1 20524:1 20525:1 20540:1 20561:1 20569:1 20635:4 20645:1 20673:1 20681:2 20682:1 20692:2 20697:2 20706:1 20709:1 20742:3 20792:1 20803:7 20814:2 20815:2 20831:1 20851:1 20876:1 20893:1 20894:1 20895:1 20900:2 20906:1 20929:2 20936:1 20942:2 20949:1 20951:1 20970:1 20974:2 20983:3 20996:2 21003:2 21004:1 21016:1 21041:1 21047:3332 21068:3 21070:1 21079:2 21087:1 21096:1 21164:1 21166:1 21173:2 21178:1 21205:1 21234:1 21241:2 21260:1 21278:1 21279:2 21291:1 21292:2 21295:2 21308:1 21355:1 21362:1 21372:1 21374:1 21378:1 21382:1 21398:1 21401:3 21408:1 21419:1 21421:1 21431:1 21444:1 21449:1 21466:1 21476:1 21478:1 21487:1 21512:1 21515:3 21518:1 21532:1 21539:1 21551:1 21566:1 21571:1 21585:1 21601:1 21602:1 21644:1 21689:2 21692:1 21709:2 21729:1 21735:4 21790:1 21802:1 21806:1 21808:1 21812:1 21813:1 21817:1 21821:2 21827:3 21833:2 21843:1 21856:2 21861:2 21863:1 21874:1 21877:2 21883:1 21895:2 21907:1 21918:2 21921:7 21952:1 21953:8 21959:1 21960:1 21961:1 21966:2 21976:1 21992:1 22001:2 22020:3 22025:3 22029:2 22032:1 22041:1 22043:2 22045:2 22072:4 22082:1 22095:3 22107:2 22119:1 22127:1 22138:1 22143:1 22157:1 22162:1 22173:3 22174:1 22178:3 22181:1 22214:1 22227:1 22235:1 22240:1 22245:2 22262:1 22267:1 22271:1 22281:2 22294:1 22301:4 22306:1 22311:1 22318:1 22325:1 22333:1 22344:1 22351:1 22364:1 22370:1 22375:1 22382:1 22404:5 22415:1 22423:3 22459:1 22479:2 22483:1 22493:1 22495:1 22503:2 22504:1 22508:1 22526:2 22530:1 22540:1 22545:1 22548:3 22553:1 22562:1 22565:2 22569:1 22572:1 22573:2 22583:1 22586:1 22603:1 22615:1 22617:1 22626:3 22638:1 22644:2 22669:1 22681:4 22688:2 22690:1 22698:1 22713:1 22737:2 22740:1 22750:1 22766:2 22774:1 22776:1 22791:1 22793:1 22794:1 22803:1 22815:4 22824:1 22829:1 22834:1 22835:1 22837:1 22845:1 22851:1 22852:1 22870:6 22871:1 22877:2 22889:2 22952:1 22954:1 22966:1 22984:2 22992:1 23002:1 23004:1 23005:2 23036:2 23046:1 23055:1 23059:1 23100:1 23108:3 23113:1 23116:1 23129:1 23147:2 23156:1 23160:4 23163:1 23164:1 23169:3 23172:1 23175:1 23183:1 23243:1 23257:1 23277:1 23279:1 23281:1 23286:1 23288:1 23290:1 23330:1 23353:1 23359:1 23363:1 23367:1 23373:1 23381:1 23383:1 23390:1 23415:2 23416:1 23419:1 23432:1 23434:1 23444:4 23447:2 23453:1 23456:1 23463:1 23490:4 23504:2 23518:1 23521:2 23522:1 23523:1 23527:1 23529:2 23532:2 23544:3 23550:3 23556:1 23560:1 23561:1 23570:1 23572:1 23574:1 23580:3 23583:1 23585:1 23609:1 23612:1 23617:1 23622:2 23626:1 23644:2 23649:2 23656:1 23657:1 23658:1 23663:1 23669:2 23723:2 23728:1 23729:1 23736:1 23745:6 23746:1 23751:1 23752:2 23756:1 23765:1 23773:1 23782:1 23790:1 23800:1 23802:2 23831:1 23837:1 23852:1 23853:1 23858:1 23859:1 23861:1 23863:1 23898:1 23901:1 23917:1 23919:2 23927:1 23931:1 23943:1 23949:1 23951:1 23953:2 23955:2 23983:1 23985:1 23991:1 24009:1 24013:1 24024:5 24032:1 24039:1 24057:3 24058:1 24074:1 24082:2 24090:1 24093:1 24098:1 24099:1 24113:2 24114:1 24133:1 24138:1 24143:1 24144:1 24151:2 24166:1 24168:1 24194:1 24195:1 24197:1 24198:1 24201:1 24205:3 24206:2 24207:1 24208:1 24214:1 24217:1 24218:1 24222:1 24225:1 24226:2 24229:1 24241:1 24250:1 24255:2 24262:2 24263:3 24274:1 24276:2 24279:1 24289:1 24308:1 24314:1 24321:1 24323:1 24334:1 24358:1 24359:2 24366:6 24368:1 24369:1 24373:2 24379:1 24383:2 24386:1 24394:1 24398:1 24401:1 24417:1 24418:1 24425:1 24427:1 24442:1 24449:1 24474:1 24477:1 24478:3 24487:1 24493:6 24502:1 24504:1 24527:1 24541:1 24542:3 24550:2 24578:1 24587:1 24601:3 24618:1 24636:1 24639:1 24643:2 24650:3 24660:1 24678:1 24681:1 24685:3 24687:1 24690:4 24692:3 24695:1 24698:1 24706:2 24727:1 24742:1 24775:1 24788:2 24792:1 24805:2 24840:1 24841:1 24847:1 24854:1 24857:1 24858:1 24860:1 24874:1 24887:1 24904:1 24907:1 24916:3 24921:1 24925:2 24933:3 24936:1 24937:1 24943:1 24957:1 24959:1 24966:1 24969:1 24972:2 24974:1 24975:1 24983:1 24985:2 24990:3 25003:1 25011:1 25017:1 25021:2 25022:1 25027:1 25032:1 25036:1 25041:1 25048:1 25072:1 25077:2 25093:1 25100:1 25115:2 25127:1 25133:1 25134:2 25139:2 25156:3 25167:4 25170:1 25173:1 25183:1 25184:2 25189:1 25191:1 25197:1 25224:7 25233:3 25238:1 25245:2 25300:1 25306:5 25337:4 25346:1 25356:1 25357:1 25364:2 25366:1 25367:4 25369:1 25371:1 25388:1 25401:1 25413:1 25415:1 25416:1 25423:1 25431:2 25434:2 25437:1 25454:1 25464:1 25474:2 25494:5 25508:1 25510:1 25513:2 25515:1 25516:2 25526:2 25545:4 25548:1 25552:4 25557:1 25561:3 25562:1 25569:1 25582:2 25590:1 25595:2 25600:1 25621:1 25623:1 25624:1 25635:4 25646:1 25659:3 25662:2 25666:1 25669:5 25670:1 25674:4 25678:3 25713:1 25714:1 25724:1 25726:1 25732:1 25831:1 25834:1 25841:1 25865:2 25878:1 25883:1 25884:1 25897:1 25916:1 25920:1 25958:1 25967:1 26002:3 26017:1 26019:3 26025:1 26031:1 26032:1 26035:1 26036:1 26046:1 26047:1 26056:4 26062:1 26073:1 26084:1 26088:1 26106:1 26110:2 26133:1 26150:1 26158:1 26160:1 26188:2 26195:1 26217:1 26218:1 26223:1 26239:1 26243:1 26253:1 26255:1 26263:2 26269:1 26270:3 26278:1 26279:1 26286:4 26320:1 26324:1 26328:1 26329:2 26331:1 26334:1 26354:2 26364:1 26367:1 26390:1 26403:1 26405:1 26407:1 26411:1 26423:2 26434:1 26435:1 26437:3 26442:2 26445:1 26459:1 26481:1 26482:1 26488:1 26490:3 26502:7 26530:1 26549:1 26550:1 26557:2 26565:1 26581:1 26582:1 26584:2 26605:1 26606:1 26608:1 26646:2 26665:1 26675:1 26679:1 26681:1 26685:1 26689:3 26705:1 26718:1 26726:1 26729:1 26762:1 26768:1 26780:1 26793:1 26794:1 26839:1 26867:1 26872:2 26873:1 26879:1 26890:1 26897:1 26898:1 26932:1 26954:1 26964:1 26966:1 26967:1 26977:1 26979:1 26984:3 26991:1 26996:1 26998:1 27020:2 27049:1 27052:1 27063:1 27065:3 27075:2 27076:1 27100:3 27105:1 27115:2 27116:1 27126:1 27133:1 27134:1 27144:3 27151:1 27182:1 27186:1 27196:2 27198:1 27202:1 27211:1 27222:2 27223:1 27224:1 27226:1 27227:5 27231:1 27233:1 27245:3 27247:1 27265:1 27280:1 27295:1 27299:3 27300:1 27305:2 27317:1 27335:1 27336:2 27344:1 27351:1 27357:1 27358:1 27365:1 27376:1 27383:1 27390:1 27408:2 27412:1 27429:2 27436:2 27460:1 27466:1 27470:4 27471:3 27479:1 27481:1 27483:1 27484:2 27486:1 27487:4 27489:3 27490:2 27496:1 27498:3 27508:2 27511:1 27519:1 27527:2 27530:3 27539:4 27547:1 27578:1 27580:2 27586:1 27603:2 27612:2 27622:1 27626:2 27654:1 27655:2 27661:1 27664:2 27674:1 27681:1 27683:2 27687:2 27689:1 27691:2 27692:1 27705:1 27711:1 27713:1 27754:1 27797:12 27798:1 27799:1 27821:9 27835:1 27839:3 27842:2 27858:1 27862:1 27864:1 27871:1 27876:3 27890:2 27892:1 27912:2 27915:3 27986:2 27994:1 28003:1 28024:1 28030:1 28046:1 28052:1 28064:1 28065:1 28069:1 28074:1 28078:1 28082:1 28094:1 28101:1 28110:1 28113:2 28115:1 28133:2 28149:1 28173:1 28209:1 28275:1 28293:1 28294:1 28303:1 28308:1 28319:2 28348:3 28349:5 28369:1 28382:9 28384:1 28393:1 28397:1 28401:1 28402:1 28413:3 28420:1 28424:2 28425:1 28430:1 28501:1 28527:1 28533:2 28536:1 28558:1 28593:1 28614:3 28631:1 28632:5 28635:3 28636:1 28643:1 28658:1 28670:2 28673:1 28674:1 28685:1 28694:2 28722:1 28730:1 28731:2 28736:1 28759:4 28773:1 28776:1 28787:1 28803:2 28809:1 28833:2 28847:1 28884:1 28885:1 28926:1 28944:1 28948:5 28966:1 28969:2 28976:1 28983:1 28995:1 29005:4 29012:2 29032:1 29042:1 29136:1 29137:2 29149:2 29152:2 29211:1 29225:1 29226:2 29233:1 29241:1 29263:2 29266:1 29277:1 29279:3 29283:1 29287:1 29290:1 29298:2 29305:1 29313:1 29329:1 29330:1 29336:1 29339:1 29342:1 29344:1 29345:1 29346:1 29349:1 29351:1 29356:1 29359:2 29378:1 29383:1 29394:1 29421:7 29433:1 29448:1 29474:1 29483:1 29485:1 29496:1 29515:8 29521:2 29529:1 29535:1 29547:1 29559:1 29562:1 29567:1 29570:1 29583:1 29605:3 29612:1 29623:1 29632:1 29643:3 29649:1 29654:1 29658:1 29676:4 29702:1 29704:4 29711:1 29721:1 29724:1 29728:1 29729:1 29730:1 29735:1 29745:1 29775:1 29783:1 29800:1 29820:2 29824:1 29825:1 29826:1 29831:2 29839:1 29841:1 29845:1 29847:1 29899:1 29904:1 29916:1 29927:1 29958:4 29969:1 29971:3 29974:3 29977:1 29995:1 29999:1 30002:2 30015:1 30035:1 30040:1 30044:1 30052:1 30059:1 30096:1 30100:2 30105:1 30142:1 30149:2 30156:2 30168:2 30169:1 30191:1 30199:1 30204:1 30213:2 30231:6 30249:1 30252:1 30267:1 30285:1 30297:1 30305:1 30306:1 30315:1 30327:1 30330:1 30331:2 30342:1 30357:1 30360:1 30370:1 30380:4 30390:1 30393:2 30420:1 30431:1 30435:1 30445:1 30454:1 30471:1 30475:4 30501:3 30504:3 30507:1 30510:2 30532:1 30548:2 30552:2 30572:2 30587:8 30589:3 30602:1 30638:1 30653:1 30660:1 30663:1 30664:7 30685:1 30688:1 30689:2 30697:1 30704:5 30710:1 30718:2 30730:1 30738:1 30775:1 30776:1 30789:2 30798:6 30802:4 30805:3 30809:2 30814:3 30822:1 30834:1 30835:1 30843:4 30846:1 30854:2 30864:1 30867:1 30868:2 30869:1 30875:1 30880:1 30883:1 30884:2 30892:2 30895:1 30908:2 30956:2 30967:2 30968:1 30971:2 30977:2 30988:1 30994:2 30999:1 31009:1 31019:1 31020:1 31042:1 31046:3 31057:2 31062:1 31065:1 31082:1 31095:1 31101:1 31104:2 31107:1 31125:2 31127:1 31130:1 31135:1 31142:2 31144:1 31158:2 31161:1 31172:1 31184:1 31191:1 31195:2 31197:2 31206:1 31209:1 31216:8 31221:1 31227:1 31287:1 31306:1 31315:1 31322:2 31324:1 31360:1 31363:2 31370:2 31388:1 31391:1 31392:3 31398:1 31404:1 31422:2 31440:2 31448:1 31452:3 31459:1 31461:4 31463:1 31476:1 31478:1 31480:2 31484:2 31485:3 31491:1 31494:1 31521:1 31531:4 31538:1 31543:1 31547:1 31554:1 31566:1 31576:3 31581:1 31583:1 31590:1 31622:1 31625:1 31635:1 31640:1 31647:1 31649:1 31658:2 31665:20 31667:2 31670:2 31674:2 31679:1 31680:3 31686:1 31688:2 31704:8 31721:3 31727:1 31730:1 31750:1 31761:3 31763:1 31783:1 31790:1 31818:1 31821:1 31827:2 31834:4 31842:1 31846:1 31853:1 31877:6 31894:1 31897:2 31910:1 31911:1 31921:1 31932:1 31938:2 31952:1 31954:1 31960:1 31962:1 31964:1 31974:1 31976:1 31998:2 32009:1 32027:1 32035:2 32041:1 32047:1 32053:1 32061:1 32070:1 32083:1 32085:1 32094:1 32103:1 32105:2 32117:1 32125:1 32128:1 32140:1 32142:1 32153:1 32171:2 32172:2 32181:1 32201:1 32207:1 32212:1 32229:1 32241:5 32244:6 32277:1 32280:3 32299:1 32303:1 32304:1 32310:1 32311:1 32312:1 32319:1 32335:2 32348:1 32403:1 32407:1 32433:1 32439:1 32443:6 32447:1 32451:1 32456:1 32471:4 32472:1 32476:1 32487:1 32491:4 32499:1 32548:1 32551:1 32552:2 32579:1 32619:1 32625:1 32628:1 32632:1 32650:1 32651:1 32656:2 32660:1 32661:1 32693:2 32697:1 32713:4 32719:1 32722:1 32724:1 32750:3 32791:1 32795:1 32803:1 32808:2 32814:2 32818:1 32824:1 32834:1 32843:1 32846:2 32885:1 32899:1 32900:2 32910:2 32934:1 32935:1 32941:3 32944:3 32956:2 32963:1 33001:2 33019:1 33025:1 33038:1 33041:6 33055:1 33056:3 33057:1 33059:1 33075:1 33084:1 33105:1 33108:1 33115:1 33118:1 33133:1 33138:1 33141:3 33143:2 33146:1 33148:2 33149:2 33155:9 33164:1 33167:5 33168:1 33171:4 33198:1 33211:1 33220:2 33224:1 33225:1 33226:1 33232:1 33234:2 33267:1 33271:3
11 1:1 2:1 6:1 27:1 31:1 34:1 39:2 49:1 53:1 55:1 60:2 67:1 84:1 85:1 86:1 93:1 95:1 99:2 106:1 126:1 148:1 150:2 159:1 166:1 170:1 181:1 183:1 187:2 215:1 232:1 238:5 241:1 256:1 265:1 282:1 283:1 294:3 296:2 299:1 313:1 344:1 347:1 362:1 378:1 401:1 402:1 403:4 411:2 415:2 427:2 446:1 455:2 460:1 498:1 507:8 513:1 523:1 546:2 582:2 586:1 621:1 627:1 646:1 654:1 698:1 712:1 717:4 721:1 731:7 745:1 753:1 759:2 764:4 765:1 766:1 774:1 789:1 790:2 795:1 807:1 808:1 815:2 829:1 866:2 899:1 937:1 951:1 955:1 956:1 971:2 974:1 979:1 984:1 1000:1 1003:2 1022:3 1049:2 1053:1 1057:1 1067:2 1069:1 1070:1 1071:7 1073:1 1083:1 1094:1 1103:1 1106:1 1117:1 1118:1 1125:1 1127:1 1130:6 1132:1 1134:1 1141:2 1144:1 1158:1 1161:1 1168:2 1171:2 1199:1 1204:4 1211:1 1216:3 1220:1 1236:3 1239:1 1244:1 1257:1 1262:1 1265:1 1284:1 1287:1 1309:1 1311:2 1316:1 1318:1 1321:1 1322:1 1351:2 1376:1 1378:1 1388:1 1392:1 1393:1 1403:1 1405:2 1413:1 1415:1 1421:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:1 1465:1 1467:1 1480:1 1481:1 1487:1 1496:2 1504:1 1509:1 1514:1 1532:1 1538:1 1539:1 1545:1 1547:1 1588:2 1624:1 1626:2 1630:1 1635:1 1645:1 1650:1 1658:1 1664:4 1683:2 1686:1 1690:2 1691:1 1719:1 1726:7 1730:11 1739:11 1745:1 1747:1 1749:1 1751:2 1793:1 1799:1 1807:1 1808:1 1837:4 1839:4 1841:1 1844:1 1869:1 1878:2 1883:8 1892:1 1899:1 1906:2 1917:7 1941:2 1943:1 1948:1 1955:1 1956:1 1957:1 1963:1 1966:1 1977:2 1980:1 1999:1 2003:1 2019:2 2037:1 2041:1 2061:1 2062:1 2073:2 2078:1 2080:1 2086:1 2098:1 2113:1 2118:1 2119:1 2133:3 2135:1 2136:1 2137:3 2138:2 2141:1 2157:1 2158:1 2169:1 2177:2 2180:1 2187:1 2195:6 2209:1 2214:1 2223:1 2237:1 2241:1 2246:1 2249:2 2255:1 2263:2 2265:1 2269:1 2279:1 2284:2 2301:1 2304:1 2317:3 2322:1 2345:1 2348:1 2355:1 2367:1 2372:1 2373:5 2381:1 2397:1 2399:1 2406:1 2419:1 2421:1 2422:1 2429:1 2437:1 2441:1 2465:1 2482:5 2496:1 2502:3 2508:1 2509:1 2519:1 2521:2 2525:1 2529:1 2530:1 2537:1 2547:1 2551:3 2552:1 2553:1 2555:5 2558:5 2559:1 2562:1 2563:2 2568:1 2570:1 2573:1 2576:2 2578:3 2579:3 2583:1 2585:1 2587:1 2613:1 2616:1 2618:3 2620:3 2623:3 2624:5 2625:2 2626:1 2630:1 2631:3 2632:1 2634:2 2635:2 2637:1 2640:2 2642:4 2647:6 2648:2 2652:1 2657:3 2662:2 2663:1 2681:1 2720:1 2732:1 2738:1 2739:1 2753:2 2774:1 2784:1 2788:1 2795:1 2801:3 2821:1 2831:3 2832:1 2864:1 2867:2 2868:1 2878:1 2888:1 2890:1 2896:1 2905:2 2918:2 2934:1 2951:2 2953:1 2955:1 2962:1 2964:1 2979:1 2985:1 2992:1 2993:1 3008:1 3017:2 3030:1 3033:1 3039:1 3042:1 3049:1 3051:1 3059:1 3069:1 3071:1 3080:4 3097:1 3098:1 3106:7 3116:2 3121:2 3134:2 3145:1 3157:1 3165:3 3171:1 3173:2 3181:1 3182:2 3193:1 3195:1 3197:1 3201:2 3213:2 3223:1 3257:1 3263:2 3283:1 3284:7 3291:1 3294:1 3295:12 3302:2 3314:1 3318:1 3336:4 3350:2 3351:1 3352:1 3353:11 3360:1 3364:2 3369:1 3377:1 3379:1 3380:1 3386:1 3397:1 3408:1 3411:2 3418:2 3433:2 3464:1 3474:1 3475:1 3482:1 3504:1 3517:1 3529:1 3539:1 3549:1 3550:2 3572:1 3578:2 3588:1 3625:1 3645:1 3646:1 3683:1 3690:3 3702:3 3707:1 3721:3 3726:1 3744:1 3755:1 3758:3 3762:1 3765:1 3769:1 3772:1 3790:1 3799:1 3816:1 3821:1 3822:2 3853:1 3856:1 3857:2 3868:1 3882:1 3917:1 3926:1 3930:2 3936:1 3939:1 3942:2 3945:1 3951:1 3968:1 3974:1 3978:1 3990:1 4005:1 4011:1 4012:1 4018:1 4020:2 4033:1 4035:2 4040:1 4047:3 4071:1 4074:1 4105:1 4115:1 4122:1 4131:1 4160:4 4174:5 4193:3 4195:1 4207:1 4225:1 4245:1 4247:2 4252:4 4253:13 4267:1 4271:1 4279:1 4288:4 4289:3 4291:2 4292:1 4303:1 4306:7 4308:1 4331:1 4332:4 4334:1 4351:3 4356:1 4378:1 4382:1 4391:1 4405:1 4434:1 4437:1 4454:1 4456:2 4465:1 4470:1 4477:1 4484:1 4487:1 4488:1 4510:3 4511:1 4512:1 4529:1 4531:2 4533:1 4536:3 4540:2 4545:3 4547:1 4573:1 4574:2 4575:1 4581:2 4585:1 4593:1 4609:1 4628:2 4635:1 4637:1 4663:1 4667:1 4684:1 4686:2 4704:1 4714:1 4727:1 4728:1 4730:1 4758:1 4763:5 4767:7 4773:1 4785:1 4792:1 4793:4 4824:2 4842:2 4863:1 4871:1 4872:5 4877:2 4888:2 4889:1 4906:1 4907:1 4929:1 4933:1 4936:2 4951:1 4959:1 4974:1 4980:1 4989:1 4991:1 5000:1 5020:1 5022:1 5025:1 5030:1 5033:4 5044:1 5045:2 5052:1 5066:1 5072:1 5082:1 5098:1 5106:1 5136:2 5143:5 5162:1 5163:1 5168:1 5171:1 5198:1 5212:1 5239:1 5246:3 5269:1 5276:1 5287:3 5290:2 5299:1 5312:1 5337:3 5340:5 5365:1 5369:3 5397:1 5462:1 5471:1 5490:2 5491:1 5516:1 5517:1 5528:1 5536:1 5562:36 5564:2 5596:2 5610:1 5671:1 5689:1 5690:3 5706:1 5717:3 5718:7 5719:4 5720:3 5722:1 5725:3 5730:2 5731:3 5733:4 5735:2 5740:1 5744:1 5748:1 5750:5 5752:3 5763:1 5766:1 5770:1 5781:1 5788:1 5794:1 5811:1 5814:2 5825:1 5832:1 5844:1 5853:2 5855:1 5868:1 5873:1 5898:1 5907:1 5965:3 5975:1 6027:1 6038:1 6084:3 6088:1 6089:1 6108:1 6115:1 6124:1 6144:3 6150:3 6165:2 6169:2 6181:1 6186:1 6224:1 6233:1 6237:1 6261:1 6283:2 6284:1 6292:1 6299:1 6300:1 6305:4 6318:1 6319:3 6322:1 6327:1 6328:1 6335:4 6345:2 6355:1 6372:2 6374:2 6382:1 6385:1 6388:1 6391:2 6395:1 6397:2 6400:1 6403:1 6407:2 6412:1 6418:2 6428:1 6431:1 6435:2 6454:1 6459:7 6469:1 6480:4 6496:1 6506:1 6508:2 6509:2 6520:1 6529:1 6531:1 6533:1 6536:1 6537:1 6540:1 6547:1 6548:1 6553:1 6558:4 6561:1 6570:1 6581:4 6584:1 6610:1 6624:1 6639:1 6688:5 6692:3 6699:1 6706:1 6707:1 6750:1 6761:1 6776:1 6793:1 6795:1 6806:1 6816:1 6819:3 6827:1 6843:1 6847:4 6863:1 6874:1 6884:1 6887:1 6888:2 6890:2 6897:4 6935:1 6939:1 6944:1 6961:6 6980:2 6994:2 7003:1 7008:1 7012:1 7025:1 7038:1 7044:1 7059:1 7062:1 7066:1 7081:1 7087:2 7088:3 7089:2 7090:1 7091:1 7101:1 7103:1 7114:2 7132:2 7150:1 7190:2 7192:1 7193:1 7196:2 7197:4 7200:4 7201:1 7204:3 7207:4 7209:2 7210:1 7211:2 7217:1 7218:9 7221:1 7222:3 7224:1 7258:1 7272:1 7279:1 7303:1 7306:1 7307:2 7365:2 7378:1 7380:1 7381:1 7389:1 7406:2 7410:1 7429:2 7435:2 7439:1 7463:1 7469:1 7497:1 7511:1 7512:1 7535:1 7539:2 7543:1 7552:1 7559:1 7570:2 7574:1 7589:2 7599:1 7602:2 7613:1 7619:1 7628:1 7637:1 7648:3 7649:1 7659:1 7662:1 7671:4 7672:1 7676:3 7677:1 7691:1 7705:5 7707:1 7724:1 7741:1 7745:2 7748:1 7750:3 7766:1 7776:1 7791:1 7792:1 7794:1 7822:1 7825:1 7833:1 7839:2 7840:1 7855:1 7867:1 7879:3 7912:2 7913:1 7927:1 7941:2 7949:1 7954:1 7956:1 7961:1 7984:1 7988:1 7993:1 8007:2 8025:2 8027:2 8043:1 8045:1 8054:1 8064:1 8075:10 8089:2 8090:1 8105:2 8127:1 8129:1 8139:1 8143:4 8150:1 8155:1 8167:1 8168:1 8196:1 8216:1 8219:1 8230:1 8247:1 8248:1 8258:2 8273:1 8277:4 8283:1 8299:1 8302:1 8328:3 8338:1 8340:1 8347:1 8387:1 8389:3 8413:1 8417:4 8426:1 8432:3 8439:1 8446:1 8454:1 8474:1 8478:2 8491:1 8494:1 8498:1 8499:1 8504:1 8531:1 8560:1 8562:1 8567:1 8570:1 8573:1 8575:1 8582:1 8593:1 8599:1 8609:4 8611:1 8615:1 8619:1 8624:5 8630:3 8631:6 8633:4 8653:1 8654:2 8659:1 8663:1 8684:1 8688:2 8689:1 8702:45 8716:1 8717:1 8725:1 8726:9 8728:7 8734:2 8748:1 8767:1 8783:1 8793:1 8796:2 8797:1 8810:1 8815:2 8816:2 8817:1 8818:1 8860:1 8864:1 8874:1 8880:1 8886:1 8887:1 8890:1 8891:1 8901:1 8909:2 8923:1 8930:1 8932:2 8935:7 8957:1 8960:1 8974:1 8982:5 8987:1 8992:1 9048:1 9059:1 9094:2 9127:1 9135:1 9143:1 9157:7 9168:2 9179:1 9183:1 9186:1 9203:3 9221:2 9222:1 9231:1 9232:19 9264:1 9267:1 9276:1 9279:1 9289:1 9298:1 9299:1 9324:1 9332:1 9335:1 9340:1 9381:1 9394:2 9425:1 9430:1 9435:1 9441:1 9466:1 9470:1 9473:1 9484:2 9493:2 9507:2 9508:1 9529:1 9540:2 9542:1 9544:2 9561:1 9563:1 9623:2 9630:1 9632:2 9633:1 9634:4 9638:1 9640:1 9642:2 9644:2 9646:1 9648:3 9649:2 9654:3 9661:1 9665:1 9669:1 9675:1 9688:1 9690:1 9697:3 9705:1 9742:1 9743:1 9746:1 9770:1 9781:1 9788:1 9806:1 9807:1 9810:2 9815:1 9823:1 9826:1 9833:1 9836:1 9842:3 9882:1 9901:3 9907:1 9923:1 9931:1 9937:2 9942:1 9945:2 9952:1 9965:1 9974:1 9976:3 9982:1 9988:1 9994:1 9999:1 10008:2 10015:1 10022:1 10027:3 10035:1 10054:1 10070:1 10087:1 10092:1 10095:2 10107:1 10117:1 10121:1 10124:1 10126:1 10138:1 10142:1 10150:2 10152:1 10159:1 10161:2 10171:1 10197:1 10209:2 10210:2 10232:1 10265:1 10275:1 10282:1 10291:1 10294:1 10307:3 10331:1 10332:1 10334:1 10337:1 10338:1 10340:1 10345:7 10349:1 10362:1 10367:1 10371:1 10373:1 10374:1 10376:1 10385:1 10389:1 10407:1 10422:1 10430:1 10434:5 10436:1 10445:1 10450:1 10454:1 10456:1 10459:1 10465:1 10479:1 10497:1 10502:1 10517:2 10518:1 10522:2 10524:1 10533:2 10540:1 10549:1 10554:1 10570:1 10575:1 10583:1 10584:2 10586:1 10591:1 10598:1 10602:1 10619:1 10621:1 10623:1 10627:1 10643:2 10648:1 10666:2 10695:1 10709:3 10732:1 10752:2 10764:1 10765:1 10792:1 10800:1 10804:1 10806:1 10807:2 10822:1 10828:2 10831:1 10846:1 10867:2 10876:1 10877:1 10886:1 10892:1 10893:1 10913:2 10948:9 10969:1 10970:1 10972:1 10973:4 10996:1 10997:2 10999:1 11011:1 11020:1 11029:1 11030:1 11052:1 11063:2 11067:1 11079:1 11094:2 11119:2 11133:4 11141:1 11163:2 11167:1 11170:2 11171:1 11172:1 11175:1 11178:2 11188:3 11200:1 11201:1 11208:1 11210:4 11214:3 11218:1 11222:1 11225:1 11226:1 11231:2 11232:2 11234:2 11242:2 11265:1 11266:2 11276:4 11288:2 11291:1 11302:1 11308:1 11309:1 11323:1 11324:1 11331:1 11339:1 11342:1 11356:1 11362:1 11376:6 11383:2 11415:1 11421:1 11431:1 11433:1 11438:1 11445:1 11448:1 11450:1 11451:1 11456:1 11464:1 11488:1 11492:1 11499:1 11517:2 11526:1 11550:1 11573:1 11575:1 11588:1 11594:1 11601:1 11603:1 11607:3 11611:3 11637:1 11656:1 11660:1 11674:1 11677:2 11690:1 11695:1 11697:1 11701:3 11717:1 11730:2 11741:1 11744:1 11778:1 11784:4 11795:1 11796:1 11811:1 11820:1 11822:7 11830:1 11841:1 11842:1 11846:1 11854:1 11855:1 11858:1 11860:1 11895:1 11899:1 11906:3 11912:1 11914:3 11915:1 11930:1 11931:1 11933:1 11949:2 11955:1 11966:1 12002:1 12005:1 12015:5 12023:1 12026:2 12031:1 12039:3 12042:1 12050:3 12099:1 12109:1 12145:1 12149:1 12154:1 12162:1 12169:3 12197:1 12213:1 12214:1 12255:1 12266:1 12274:1 12275:1 12284:1 12307:2 12310:1 12319:1 12325:1 12327:3 12329:3 12333:1 12335:1 12336:4 12337:1 12339:1 12350:1 12352:2 12354:1 12356:1 12361:1 12369:1 12377:1 12378:2 12379:1 12389:1 12406:1 12427:1 12434:2 12438:1 12448:1 12461:1 12472:1 12475:1 12476:1 12477:2 12487:1 12501:1 12526:1 12545:1 12551:1 12552:1 12559:1 12580:1 12596:1 12607:1 12618:4 12630:2 12640:1 12647:1 12649:1 12672:1 12682:1 12733:1 12741:1 12743:1 12762:1 12766:1 12770:1 12775:1 12776:1 12783:1 12805:1 12811:3 12814:2 12819:2 12836:1 12845:1 12862:2 12865:11 12867:1 12876:1 12877:1 12893:1 12896:1 12902:1 12910:2 12915:1 12918:1 12923:1 12928:2 12933:1 12935:1 12936:2 12952:1 12954:1 12970:1 12977:2 12988:3 12994:1 13000:1 13005:1 13009:1 13012:1 13015:1 13018:3 13027:1 13032:1 13050:2 13061:2 13064:1 13073:1 13081:1 13085:3 13088:4 13089:2 13094:2 13111:1 13116:1 13128:8 13135:1 13137:1 13138:2 13142:4 13143:1 13148:1 13149:1 13150:2 13151:6 13152:1 13153:1 13156:1 13162:6 13168:1 13192:1 13196:1 13202:1 13220:2 13228:1 13231:1 13239:2 13244:1 13254:2 13264:2 13285:1 13286:1 13294:2 13302:1 13308:1 13320:7 13365:1 13391:1 13408:1 13410:3 13415:1 13423:2 13427:1 13429:1 13434:1 13443:1 13448:2 13456:1 13461:1 13463:1 13473:3 13476:1 13480:2 13486:1 13515:2 13517:3 13527:2 13552:1 13553:2 13556:1 13590:1 13592:1 13600:1 13606:2 13608:1 13611:1 13616:1 13621:1 13649:1 13653:2 13654:2 13662:1 13674:1 13684:3 13685:4 13690:1 13700:2 13718:3 13738:1 13742:1 13745:1 13750:2 13778:1 13805:1 13815:1 13821:3 13826:2 13830:1 13848:1 13863:2 13873:5 13874:1 13895:2 13896:3 13899:1 13921:1 13930:1 13933:1 13939:1 13940:1 13976:1 14004:1 14007:1 14011:1 14018:1 14021:1 14030:1 14037:1 14039:1 14055:1 14061:1 14101:1 14102:2 14119:1 14125:1 14146:1 14162:4 14180:1 14183:2 14207:1 14210:1 14214:2 14242:1 14256:2 14267:1 14281:1 14318:2 14319:1 14341:1 14345:10 14353:1 14356:2 14361:1 14370:3 14376:1 14380:1 14384:1 14402:1 14409:1 14410:1 14416:1 14421:1 14436:2 14443:1 14449:1 14468:1 14471:1 14472:1 14473:5 14480:1 14483:2 14489:1 14497:1 14518:1 14520:1 14541:1 14545:1 14572:1 14577:1 14581:1 14583:1 14589:2 14592:1 14620:1 14633:1 14640:1 14652:1 14658:2 14688:2 14697:1 14706:1 14753:1 14781:1 14793:5 14804:1 14806:1 14831:1 14841:1 14854:2 14858:1 14859:1 14867:1 14870:2 14873:1 14877:7 14881:4 14883:1 14891:1 14895:1 14896:1 14904:5 14907:7 14915:1 14921:3 14935:2 14940:1 14942:2 14945:1 14949:3 14957:1 14958:1 14959:1 14960:1 14975:2 14979:1 14980:1 14999:1 15005:1 15016:1 15019:2 15028:1 15033:2 15039:8 15040:1 15047:2 15054:1 15059:1 15066:1 15075:1 15079:1 15082:1 15087:1 15122:1 15125:4 15131:1 15160:1 15161:1 15187:1 15191:1 15215:1 15216:1 15217:5 15236:1 15246:1 15251:1 15255:1 15259:1 15275:1 15278:1 15281:2 15293:1 15311:1 15322:1 15325:3 15333:2 15336:1 15361:1 15367:1 15374:2 15381:2 15386:1 15410:1 15429:1 15438:1 15443:1 15476:1 15477:3 15480:1 15483:2 15487:1 15489:2 15496:1 15508:2 15513:1 15519:1 15520:1 15523:1 15543:1 15551:1 15555:1 15574:2 15616:7 15622:1 15625:2 15645:1 15662:1 15664:1 15666:2 15680:2 15704:1 15725:1 15728:5 15734:5 15740:2 15749:2 15780:2 15811:2 15820:2 15840:2 15855:1 15861:1 15864:1 15900:2 15905:1 15923:1 15929:1 15934:1 15945:1 15955:1 15959:1 15960:1 15962:1 15974:3 15986:1 15990:1 15993:1 15996:2 15997:1 16000:3 16021:1 16026:1 16030:1 16033:1 16040:3 16042:1 16043:1 16046:1 16067:1 16092:1 16098:2 16114:1 16119:1 16144:1 16145:1 16152:1 16178:2 16183:1 16187:1 16189:1 16197:1 16198:1 16214:1 16227:4 16229:1 16236:1 16237:1 16254:1 16266:1 16270:1 16273:1 16284:1 16289:1 16321:1 16330:4 16347:1 16350:2 16351:1 16355:1 16362:1 16390:2 16393:2 16411:1 16422:1 16427:2 16428:1 16433:2 16448:1 16451:1 16457:1 16463:1 16484:3 16508:3 16523:1 16534:1 16538:1 16556:2 16559:2 16566:4 16598:1 16606:1 16608:1 16630:1 16634:1 16642:1 16650:2 16674:2 16678:1 16684:5 16687:1 16688:1 16693:1 16694:1 16721:2 16723:1 16739:1 16741:1 16753:1 16762:1 16782:8 16783:2 16787:1 16789:1 16793:1 16831:1 16832:4 16835:1 16842:1 16846:3 16848:1 16860:1 16884:2 16904:1 16922:1 16936:3 16940:2 16942:1 16944:1 16971:3 16973:3 16984:1 16988:3 16990:1 16999:1 17012:2 17023:1 17042:1 17045:4 17046:1 17048:1 17053:2 17056:1 17061:1 17063:1 17098:2 17103:1 17105:1 17127:1 17140:1 17155:1 17176:1 17187:1 17194:3 17203:1 17214:1 17219:1 17224:1 17226:1 17246:1 17251:3 17269:1 17289:2 17293:1 17297:1 17314:1 17317:1 17318:1 17324:2 17370:1 17379:1 17389:1 17406:1 17420:1 17423:13 17433:2 17437:1 17448:1 17479:2 17499:1 17503:2 17514:1 17516:1 17528:3 17531:1 17539:1 17543:1 17567:1 17571:1 17576:1 17581:1 17586:2 17596:1 17598:1 17610:1 17648:1 17661:3 17673:1 17681:1 17689:12 17694:1 17695:1 17698:1 17699:2 17700:3 17709:1 17710:3 17714:1 17715:1 17718:1 17722:1 17729:5 17731:2 17740:1 17752:1 17756:1 17758:1 17767:1 17771:1 17775:2 17776:1 17783:1 17784:2 17805:5 17824:1 17829:1 17830:2 17857:3 17860:2 17866:1 17871:1 17876:1 17878:1 17880:1 17884:1 17888:5 17951:1 17953:4 17955:2 17989:1 18008:1 18009:1 18049:2 18053:4 18074:4 18108:1 18111:1 18114:1 18141:1 18148:1 18157:3 18160:1 18187:1 18195:11 18214:3 18220:1 18226:1 18227:1 18234:2 18236:1 18243:2 18247:1 18258:1 18260:1 18273:1 18281:2 18302:1 18306:1 18308:2 18313:1 18315:1 18319:4 18321:2 18322:1 18327:1 18329:1 18330:1 18332:3 18340:2 18341:1 18342:5 18344:1 18351:1 18352:3 18372:1 18375:1 18401:1 18416:1 18417:1 18426:1 18492:3 18527:2 18537:1 18546:1 18561:1 18584:1 18619:1 18635:2 18672:1 18683:1 18684:1 18693:1 18697:1 18699:1 18702:1 18708:1 18716:2 18717:1 18727:1 18732:1 18733:1 18738:1 18739:2 18743:1 18764:1 18777:2 18785:1 18794:1 18799:2 18807:1 18808:2 18821:1 18842:2 18879:1 18896:1 18908:1 18911:3 18919:4 18928:1 18949:1 18966:1 18967:1 18978:1 19000:1 19005:1 19024:1 19029:3 19030:1 19035:1 19039:1 19043:1 19049:1 19050:1 19059:7 19062:2 19069:2 19081:1 19089:2 19103:2 19108:1 19126:1 19135:1 19139:5 19155:1 19165:3 19169:2 19177:1 19182:1 19200:4 19207:2 19208:1 19209:1 19212:1 19216:3 19233:1 19246:1 19248:2 19262:1 19276:1 19295:1 19320:9 19329:1 19333:1 19345:1 19351:1 19352:1 19354:1 19357:3 19362:1 19372:1 19398:2 19417:1 19432:1 19443:1 19444:2 19448:1 19452:1 19465:2 19471:1 19503:1 19508:2 19509:1 19526:1 19559:1 19566:1 19567:1 19583:1 19585:1 19622:1 19628:1 19634:1 19637:1 19643:1 19655:1 19659:1 19663:2 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19758:1 19763:3 19772:5 19774:1 19776:1 19781:2 19783:3 19784:1 19794:1 19797:1 19809:1 19816:1 19819:1 19843:3 19849:2 19850:1 19867:1 19872:1 19897:1 19904:1 19910:1 19919:1 19936:1 19951:2 19962:1 19965:1 19966:1 20000:1 20007:2 20008:1 20020:2 20031:1 20032:2 20045:1 20077:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:2 20123:2 20124:7 20128:3 20136:1 20142:1 20143:1 20146:2 20163:1 20166:2 20174:1 20180:1 20181:1 20183:1 20200:1 20202:1 20219:1 20220:1 20225:3 20230:1 20231:1 20237:1 20239:1 20241:1 20243:2 20286:1 20287:1 20294:1 20300:2 20309:2 20341:1 20360:1 20373:1 20391:1 20394:1 20400:1 20405:1 20406:1 20407:2 20412:1 20416:1 20437:1 20441:1 20454:1 20458:1 20460:1 20477:1 20492:2 20499:1 20503:1 20514:1 20516:1 20517:1 20518:1 20524:1 20525:1 20540:1 20561:1 20569:1 20635:4 20645:1 20673:1 20681:2 20682:1 20692:2 20697:2 20706:1 20709:1 20742:3 20760:1 20761:1 20792:1 20803:7 20814:2 20815:2 20831:1 20851:1 20876:1 20893:1 20894:1 20895:1 20900:2 20906:1 20929:2 20936:1 20942:2 20949:1 20951:1 20970:1 20974:2 20983:3 20996:2 21003:2 21004:1 21016:2 21041:1 21047:3432 21068:3 21070:1 21079:2 21087:1 21096:1 21164:1 21166:1 21173:2 21178:1 21205:1 21227:1 21234:1 21241:2 21260:1 21278:1 21279:4 21291:1 21292:4 21294:1 21295:2 21308:1 21355:1 21362:1 21372:1 21374:1 21378:1 21382:1 21398:1 21401:3 21408:1 21419:1 21421:1 21431:1 21444:1 21449:1 21466:1 21476:1 21478:1 21487:1 21512:1 21515:3 21518:2 21532:1 21539:1 21551:1 21566:1 21571:1 21585:1 21601:1 21602:1 21630:1 21644:1 21689:2 21692:1 21709:2 21729:1 21735:4 21790:1 21801:1 21802:1 21806:1 21808:1 21812:1 21813:1 21817:1 21821:2 21827:3 21833:2 21843:1 21845:1 21856:2 21861:2 21863:1 21874:1 21877:2 21883:1 21895:2 21907:1 21918:2 21921:7 21952:1 21953:8 21959:1 21960:1 21961:1 21966:2 21976:1 21992:1 22001:2 22020:3 22025:3 22029:2 22032:1 22041:1 22043:2 22045:2 22072:4 22082:1 22095:3 22107:2 22119:1 22127:1 22138:1 22143:1 22157:1 22162:1 22173:3 22174:1 22178:3 22181:1 22214:1 22227:1 22235:1 22240:1 22245:3 22262:1 22267:1 22271:1 22281:2 22294:1 22301:4 22306:1 22311:1 22318:1 22325:1 22333:1 22344:1 22351:1 22364:1 22370:1 22375:1 22382:1 22404:5 22415:1 22423:5 22459:1 22479:2 22483:1 22493:1 22495:1 22503:2 22504:1 22508:1 22526:2 22530:1 22540:1 22545:1 22548:3 22553:1 22562:1 22565:2 22569:1 22572:1 22573:2 22583:1 22586:1 22603:1 22615:1 22617:1 22626:3 22638:1 22644:2 22669:1 22681:4 22688:2 22690:1 22698:1 22713:1 22737:2 22740:1 22750:1 22766:2 22774:1 22776:1 22791:1 22793:1 22794:1 22803:1 22815:4 22819:1 22824:1 22829:1 22834:1 22835:1 22837:1 22845:1 22851:1 22852:1 22870:6 22871:1 22877:2 22889:2 22952:1 22954:1 22966:1 22984:2 22992:1 23002:1 23004:1 23005:2 23036:2 23046:1 23055:1 23059:1 23100:1 23108:3 23113:1 23114:1 23116:1 23129:1 23147:2 23156:1 23160:4 23163:1 23164:1 23169:3 23172:1 23175:1 23183:1 23243:1 23257:1 23277:1 23279:1 23281:1 23286:1 23288:1 23290:1 23330:1 23353:1 23359:1 23363:1 23367:1 23373:1 23381:1 23383:1 23390:1 23415:2 23416:1 23419:1 23432:1 23434:1 23444:4 23447:2 23453:1 23456:1 23463:1 23471:1 23490:4 23504:2 23518:1 23521:2 23522:1 23523:1 23527:2 23529:2 23532:2 23544:3 23550:3 23556:1 23560:1 23561:1 23570:1 23572:1 23574:1 23580:3 23583:1 23585:1 23609:1 23612:1 23617:1 23622:2 23626:1 23644:2 23649:2 23656:1 23657:1 23658:1 23663:1 23669:2 23723:2 23728:1 23729:1 23736:1 23745:7 23746:1 23751:1 23752:2 23756:1 23765:1 23773:1 23782:1 23790:1 23800:1 23802:2 23831:1 23837:1 23852:1 23853:1 23858:1 23859:1 23861:1 23863:1 23898:1 23901:1 23917:1 23919:2 23927:1 23931:1 23943:1 23949:1 23951:1 23953:2 23955:2 23983:1 23985:1 23991:1 24009:1 24013:1 24024:5 24032:1 24039:1 24057:3 24058:1 24074:1 24078:1 24082:2 24090:1 24093:1 24098:1 24099:1 24113:2 24114:1 24133:1 24138:1 24143:1 24144:1 24151:2 24166:1 24168:1 24194:1 24195:1 24197:1 24198:1 24201:1 24205:3 24206:2 24207:1 24208:1 24214:1 24217:1 24218:1 24222:1 24225:1 24226:2 24229:1 24241:1 24250:1 24255:2 24262:2 24263:3 24274:1 24276:2 24279:1 24289:1 24308:1 24314:1 24321:1 24323:1 24334:1 24358:1 24359:2 24366:6 24368:1 24369:1 24373:2 24379:1 24383:2 24386:1 24394:2 24398:1 24401:1 24417:1 24418:1 24425:1 24427:1 24442:1 24449:1 24474:1 24477:1 24478:3 24487:1 24493:6 24502:1 24504:1 24527:1 24541:1 24542:3 24550:2 24578:1 24587:1 24601:3 24618:1 24636:1 24639:1 24643:2 24650:3 24660:1 24678:1 24681:1 24685:3 24687:1 24690:4 24692:3 24695:1 24698:1 24706:2 24727:1 24742:1 24775:1 24788:2 24792:1 24805:2 24840:1 24841:1 24847:1 24854:1 24857:1 24858:1 24860:1 24874:1 24887:1 24904:1 24907:1 24916:3 24921:1 24925:2 24933:3 24936:1 24937:1 24943:1 24957:1 24959:1 24966:1 24969:1 24972:2 24974:1 24975:1 24983:1 24985:2 24990:3 25003:1 25011:1 25017:1 25021:2 25022:1 25027:1 25032:1 25036:1 25041:1 25048:1 25064:1 25072:1 25077:2 25093:1 25097:1 25100:1 25115:2 25127:1 25133:1 25134:2 25139:2 25156:3 25167:4 25170:1 25173:1 25183:1 25184:2 25189:1 25191:1 25197:1 25224:8 25233:3 25238:1 25245:2 25300:1 25306:5 25337:4 25346:1 25356:1 25357:1 25364:2 25366:1 25367:4 25369:1 25371:1 25388:1 25401:1 25413:1 25415:1 25416:1 25423:1 25431:2 25434:2 25437:1 25454:1 25464:1 25474:2 25494:5 25508:1 25510:1 25513:2 25515:1 25516:3 25526:2 25545:4 25548:1 25552:4 25557:1 25561:3 25562:1 25569:1 25582:2 25590:1 25595:2 25600:1 25621:1 25623:1 25624:1 25635:4 25646:1 25659:3 25662:2 25666:1 25669:5 25670:1 25674:4 25678:3 25713:1 25714:1 25724:1 25726:1 25732:1 25798:1 25831:1 25834:1 25841:1 25865:2 25878:1 25883:1 25884:1 25897:1 25916:1 25920:1 25958:1 25967:1 26002:3 26017:1 26019:3 26025:1 26031:1 26032:1 26035:1 26036:1 26046:1 26047:1 26056:4 26062:1 26073:1 26084:1 26088:1 26106:1 26110:2 26133:1 26150:1 26158:1 26160:1 26188:2 26195:1 26201:1 26217:1 26218:1 26223:1 26239:1 26243:1 26253:1 26255:1 26263:2 26269:1 26270:3 26278:2 26279:1 26286:4 26320:1 26324:2 26328:1 26329:2 26331:1 26334:1 26354:2 26364:1 26367:1 26390:1 26403:1 26405:1 26407:1 26411:1 26423:2 26434:1 26435:1 26437:4 26442:2 26445:2 26459:1 26481:1 26482:1 26488:1 26490:3 26502:7 26530:1 26549:1 26550:1 26557:2 26565:1 26577:1 26581:1 26582:1 26584:2 26605:1 26606:1 26608:1 26646:2 26665:1 26675:1 26679:1 26681:1 26685:1 26689:3 26705:1 26718:1 26726:1 26729:1 26762:1 26768:1 26780:1 26793:1 26794:1 26839:1 26867:1 26872:2 26873:1 26879:1 26890:1 26897:1 26898:1 26932:1 26954:1 26964:1 26966:1 26967:1 26977:1 26979:1 26984:3 26991:1 26996:1 26998:1 27020:2 27049:1 27052:1 27063:1 27065:3 27075:2 27076:1 27100:3 27105:1 27115:2 27116:1 27126:1 27133:1 27134:1 27144:3 27151:1 27182:1 27186:1 27196:2 27198:1 27201:1 27202:1 27211:1 27222:2 27223:1 27224:1 27226:1 27227:5 27231:1 27233:1 27245:3 27247:1 27265:1 27280:1 27295:1 27299:3 27300:1 27305:2 27317:1 27335:1 27336:2 27344:1 27351:1 27357:1 27358:1 27365:1 27376:1 27383:1 27390:1 27408:2 27412:1 27429:2 27436:2 27460:1 27466:1 27470:4 27471:3 27479:1 27481:1 27483:1 27484:2 27486:1 27487:4 27489:3 27490:2 27496:1 27498:4 27508:2 27511:1 27519:1 27527:2 27530:3 27539:5 27547:1 27578:1 27580:2 27586:1 27603:2 27612:2 27622:1 27626:2 27654:1 27655:2 27661:1 27664:2 27674:1 27679:1 27681:1 27683:2 27687:2 27689:3 27691:2 27692:1 27705:1 27711:1 27713:1 27754:1 27797:12 27798:1 27799:1 27821:9 27835:1 27839:4 27842:2 27858:1 27862:1 27864:1 27871:1 27876:3 27890:2 27892:1 27912:2 27915:3 27986:2 27987:1 27994:1 28003:1 28024:1 28030:1 28046:1 28052:1 28064:1 28065:1 28069:1 28074:1 28078:1 28082:1 28094:1 28101:1 28110:1 28113:2 28115:1 28133:2 28149:1 28169:1 28173:1 28209:1 28275:1 28293:1 28294:1 28303:1 28308:1 28319:2 28348:3 28349:5 28369:1 28382:9 28384:1 28393:1 28397:1 28401:1 28402:1 28413:3 28420:1 28424:2 28425:1 28430:1 28501:1 28527:1 28533:2 28536:1 28558:1 28593:1 28614:3 28631:1 28632:5 28635:3 28636:1 28643:1 28658:1 28664:1 28670:2 28673:1 28674:1 28685:1 28694:2 28722:1 28730:1 28731:2 28736:1 28737:1 28759:4 28773:1 28776:1 28787:1 28803:2 28809:1 28833:2 28847:1 28884:1 28885:1 28926:1 28944:1 28948:5 28966:1 28969:2 28976:1 28983:1 28995:1 29005:4 29007:1 29012:2 29032:1 29042:1 29136:1 29137:2 29149:2 29152:2 29211:1 29225:1 29226:2 29233:1 29241:1 29263:2 29266:1 29277:1 29279:3 29283:1 29287:1 29290:1 29298:2 29305:1 29313:1 29329:1 29330:1 29336:1 29339:1 29342:1 29344:1 29345:1 29346:1 29349:1 29351:2 29356:1 29359:2 29378:1 29383:1 29394:1 29421:7 29433:1 29448:1 29474:1 29483:1 29485:1 29496:1 29515:8 29521:2 29529:1 29535:1 29547:1 29559:1 29562:1 29567:1 29570:1 29583:1 29605:3 29612:1 29623:1 29632:1 29643:3 29649:1 29654:1 29658:1 29676:4 29702:1 29704:4 29711:1 29721:1 29724:1 29728:1 29729:1 29730:1 29735:1 29745:1 29775:1 29783:1 29800:1 29820:2 29822:1 29824:1 29825:1 29826:1 29831:2 29839:1 29841:1 29845:1 29847:1 29899:1 29904:1 29916:1 29927:1 29958:4 29969:1 29971:3 29973:1 29974:3 29977:1 29995:1 29999:1 30002:2 30015:1 30035:1 30040:1 30044:1 30052:1 30059:1 30096:2 30100:2 30105:1 30142:1 30149:2 30156:2 30168:2 30169:1 30191:1 30199:1 30204:1 30213:2 30231:6 30249:1 30252:1 30267:1 30285:1 30297:1 30305:1 30306:1 30315:1 30327:2 30330:1 30331:2 30342:1 30357:1 30360:1 30370:1 30380:4 30390:1 30393:2 30420:1 30431:1 30435:1 30445:1 30454:1 30471:1 30475:4 30501:3 30504:3 30507:1 30510:2 30532:1 30548:2 30552:2 30572:2 30587:8 30589:3 30602:1 30638:1 30653:1 30660:1 30663:1 30664:7 30683:1 30685:1 30688:1 30689:2 30697:1 30704:5 30710:1 30718:2 30730:1 30738:1 30775:1 30776:1 30789:2 30798:6 30802:4 30805:3 30809:2 30814:3 30822:1 30834:1 30835:1 30843:4 30846:1 30854:2 30864:1 30867:1 30868:2 30869:1 30875:2 30880:1 30883:1 30884:2 30892:2 30895:1 30908:2 30956:2 30960:1 30967:2 30968:1 30971:2 30977:2 30988:1 30994:2 30999:1 31009:1 31019:1 31020:1 31031:1 31042:1 31046:3 31057:2 31062:1 31065:1 31082:1 31095:1 31101:1 31104:2 31107:1 31113:1 31125:2 31127:1 31130:1 31135:1 31142:2 31144:1 31158:2 31161:1 31172:1 31184:1 31191:1 31195:2 31197:2 31206:1 31209:1 31216:8 31221:1 31227:1 31287:1 31306:1 31315:1 31322:2 31324:1 31360:1 31363:2 31370:2 31388:1 31391:1 31392:3 31398:1 31404:1 31422:2 31440:2 31448:1 31452:3 31459:1 31461:4 31463:1 31476:1 31478:1 31480:2 31484:2 31485:3 31491:1 31494:1 31521:1 31531:4 31538:1 31543:1 31547:1 31554:1 31566:1 31576:3 31581:1 31583:1 31590:1 31622:1 31625:1 31635:1 31640:1 31647:1 31649:1 31658:2 31665:23 31667:3 31670:2 31674:2 31679:2 31680:3 31686:1 31688:2 31704:9 31721:3 31722:1 31727:1 31730:1 31750:1 31761:3 31763:1 31783:1 31790:1 31818:1 31821:1 31827:2 31834:5 31842:1 31846:1 31853:1 31877:6 31894:2 31897:2 31910:1 31911:1 31921:1 31932:1 31938:2 31952:1 31954:1 31960:1 31962:1 31964:1 31974:1 31976:1 31998:2 32009:1 32027:1 32035:2 32041:1 32047:1 32053:1 32061:1 32070:1 32083:1 32085:1 32094:1 32103:1 32105:2 32117:1 32125:1 32128:1 32140:1 32142:1 32153:1 32171:2 32172:2 32181:1 32201:1 32207:1 32212:1 32229:1 32241:5 32244:6 32277:1 32280:3 32299:1 32303:1 32304:1 32310:1 32311:1 32312:1 32319:1 32335:3 32348:1 32403:1 32407:1 32433:1 32439:1 32443:7 32447:1 32451:1 32456:1 32471:4 32472:1 32476:1 32487:1 32491:4 32499:1 32548:1 32551:1 32552:2 32579:1 32619:1 32625:1 32628:1 32632:1 32650:1 32651:1 32656:2 32660:1 32661:1 32693:2 32697:1 32713:5 32719:1 32722:1 32724:1 32750:3 32791:1 32795:1 32803:1 32808:2 32814:2 32818:1 32824:1 32834:1 32843:1 32846:2 32885:1 32899:1 32900:2 32910:2 32934:1 32935:1 32941:3 32944:3 32956:2 32963:1 33001:2 33019:1 33025:1 33038:1 33041:6 33055:1 33056:3 33057:1 33059:1 33075:1 33084:1 33101:1 33105:1 33108:1 33115:1 33118:1 33133:1 33138:1 33141:3 33143:2 33146:1 33148:2 33149:2 33155:9 33164:1 33167:5 33168:1 33171:4 33182:1 33198:1 33211:1 33220:2 33224:1 33225:1 33226:1 33232:1 33234:2 33267:1 33271:3
11 1:1 2:1 6:1 27:1 31:1 34:1 39:2 49:1 53:1 55:1 60:2 67:1 84:1 85:1 86:1 93:1 95:1 99:2 106:1 126:1 148:1 150:2 159:1 166:2 170:1 181:1 183:1 187:2 215:1 232:1 238:5 241:1 256:1 265:1 282:1 283:1 294:3 296:2 299:1 313:1 322:1 344:1 347:1 362:1 378:1 401:1 402:1 403:4 411:2 415:2 427:2 446:1 455:2 460:1 498:1 507:8 513:1 523:1 546:2 582:2 586:1 621:1 627:1 646:2 654:1 698:1 712:1 717:4 721:1 731:7 745:1 753:2 759:2 764:4 765:1 766:1 774:1 789:1 790:2 795:1 807:1 808:1 815:2 829:1 866:2 899:1 937:1 951:1 955:1 956:1 971:2 974:1 979:1 984:1 1000:1 1003:2 1022:3 1049:2 1053:1 1057:1 1067:2 1069:1 1070:1 1071:7 1073:1 1083:1 1094:1 1103:1 1106:1 1117:1 1118:1 1125:1 1127:1 1130:6 1132:1 1134:1 1141:2 1144:1 1158:1 1161:1 1168:3 1171:2 1199:1 1204:4 1211:1 1216:3 1220:1 1236:3 1239:1 1244:1 1257:1 1262:1 1265:1 1284:1 1287:1 1309:1 1311:2 1316:1 1318:1 1321:1 1322:1 1351:2 1376:1 1378:1 1388:1 1392:1 1393:1 1403:1 1405:2 1409:1 1413:1 1415:1 1421:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:1 1465:1 1467:1 1480:1 1481:1 1487:1 1496:2 1504:1 1509:1 1514:2 1532:1 1538:1 1539:1 1545:1 1547:1 1588:2 1624:1 1626:2 1630:1 1635:1 1645:1 1650:1 1658:1 1664:4 1683:2 1686:1 1690:2 1691:1 1719:1 1726:7 1730:11 1739:11 1745:1 1747:1 1749:1 1751:2 1771:1 1793:1 1799:1 1807:1 1808:1 1837:4 1839:4 1841:1 1844:1 1869:1 1878:2 1883:8 1892:1 1899:1 1906:2 1917:7 1941:2 1943:1 1948:1 1955:1 1956:1 1957:1 1963:1 1966:1 1977:2 1980:1 1999:1 2003:1 2019:2 2037:1 2041:1 2061:1 2062:1 2073:2 2078:1 2080:1 2086:1 2098:1 2113:1 2118:1 2119:1 2133:3 2135:1 2136:1 2137:3 2138:2 2141:1 2157:1 2158:1 2169:1 2177:2 2180:1 2187:1 2195:6 2209:1 2214:1 2223:1 2225:1 2237:1 2241:1 2246:1 2249:2 2255:1 2263:2 2265:1 2269:1 2279:1 2284:2 2301:1 2304:1 2317:3 2322:1 2345:1 2348:1 2355:1 2367:1 2372:1 2373:5 2381:1 2397:1 2399:1 2406:1 2419:1 2421:1 2422:1 2429:1 2437:1 2441:1 2465:1 2482:5 2496:1 2502:3 2508:1 2509:1 2519:1 2521:2 2525:1 2529:1 2530:1 2537:1 2547:1 2551:3 2552:1 2553:1 2555:5 2558:5 2559:1 2562:1 2563:2 2568:1 2570:1 2573:1 2576:2 2578:3 2579:3 2583:1 2585:1 2587:1 2613:1 2616:1 2618:3 2620:3 2623:3 2624:5 2625:2 2626:1 2630:2 2631:3 2632:1 2634:2 2635:2 2637:1 2640:2 2642:4 2647:6 2648:2 2652:1 2657:3 2662:2 2663:1 2681:1 2720:1 2732:1 2738:1 2739:1 2742:1 2753:2 2774:1 2784:1 2788:1 2795:1 2801:3 2821:1 2831:3 2832:1 2864:1 2867:2 2868:1 2878:1 2888:1 2890:2 2896:1 2905:2 2918:2 2934:1 2951:2 2953:1 2955:1 2962:1 2964:1 2979:1 2985:1 2992:1 2993:1 3008:2 3017:2 3030:1 3033:1 3039:1 3042:1 3049:1 3051:1 3059:1 3069:1 3071:1 3080:4 3097:1 3098:1 3106:7 3116:2 3121:2 3134:2 3145:1 3157:1 3165:3 3171:1 3173:2 3181:1 3182:2 3193:1 3195:1 3197:1 3201:2 3213:2 3223:1 3257:1 3263:2 3283:1 3284:7 3291:1 3294:1 3295:12 3302:2 3314:2 3318:2 3336:4 3350:2 3351:1 3352:1 3353:11 3360:1 3364:2 3369:1 3377:1 3379:1 3380:1 3386:1 3397:1 3408:1 3411:2 3418:2 3433:2 3464:1 3474:1 3475:1 3482:1 3504:1 3517:1 3529:1 3539:1 3549:1 3550:2 3572:1 3578:2 3588:1 3625:1 3645:1 3646:1 3683:1 3690:4 3702:3 3707:1 3721:3 3726:1 3744:1 3755:1 3758:4 3762:1 3765:1 3769:1 3772:1 3790:1 3799:1 3816:1 3821:1 3822:2 3853:1 3856:1 3857:2 3868:1 3875:1 3882:1 3917:2 3926:1 3930:2 3936:1 3939:1 3942:2 3945:1 3951:1 3968:1 3974:2 3978:1 3990:1 4005:1 4011:1 4012:1 4018:1 4020:2 4033:1 4035:2 4040:1 4047:3 4071:1 4074:1 4105:1 4115:1 4122:1 4131:1 4153:1 4160:4 4174:5 4193:3 4195:1 4207:1 4225:1 4245:1 4247:2 4252:4 4253:13 4267:1 4271:1 4279:1 4288:4 4289:4 4291:2 4292:1 4300:1 4303:1 4306:7 4308:2 4331:1 4332:4 4334:1 4351:3 4356:1 4361:1 4378:1 4382:1 4391:1 4405:1 4434:1 4437:1 4454:2 4456:2 4465:1 4470:1 4477:1 4484:1 4487:1 4488:1 4510:4 4511:1 4512:1 4529:1 4531:2 4533:1 4536:3 4540:2 4545:3 4547:1 4573:1 4574:2 4575:1 4581:2 4585:1 4593:1 4609:1 4628:2 4635:1 4637:1 4663:1 4667:1 4684:1 4686:2 4704:1 4714:1 4727:1 4728:1 4730:1 4758:1 4763:5 4767:7 4773:1 4785:1 4792:1 4793:4 4824:2 4842:2 4863:1 4871:1 4872:5 4877:2 4888:2 4889:1 4906:1 4907:1 4929:1 4933:1 4936:2 4951:1 4959:1 4974:1 4980:1 4989:1 4991:1 5000:1 5020:1 5022:1 5025:1 5030:1 5033:4 5044:1 5045:2 5052:1 5066:1 5072:1 5082:1 5098:1 5106:1 5136:2 5143:5 5162:1 5163:1 5168:1 5171:1 5198:1 5212:1 5239:1 5246:3 5269:1 5276:1 5287:4 5290:2 5299:1 5312:1 5337:3 5340:5 5365:1 5369:3 5397:1 5462:1 5471:1 5490:2 5491:1 5516:1 5517:1 5528:1 5530:1 5536:1 5562:37 5564:2 5596:2 5610:1 5671:1 5689:1 5690:3 5706:1 5717:3 5718:7 5719:4 5720:3 5722:1 5725:3 5730:2 5731:3 5733:4 5735:2 5740:1 5744:1 5748:1 5750:5 5752:3 5759:1 5763:1 5766:1 5770:1 5781:1 5788:1 5794:1 5811:1 5814:2 5825:1 5832:1 5844:1 5853:2 5855:1 5868:1 5873:1 5898:1 5907:1 5965:3 5975:1 6027:1 6038:1 6084:3 6088:1 6089:1 6108:1 6115:1 6124:1 6144:3 6150:3 6165:2 6169:2 6181:1 6186:2 6224:1 6233:1 6237:1 6261:1 6283:2 6284:1 6292:1 6299:1 6300:1 6305:5 6318:1 6319:3 6322:1 6327:1 6328:1 6335:4 6345:3 6355:1 6372:2 6374:2 6382:1 6385:1 6388:1 6391:2 6395:1 6397:2 6400:1 6403:1 6407:2 6412:1 6418:2 6428:1 6431:1 6435:2 6454:1 6459:7 6469:1 6480:4 6496:1 6506:1 6508:2 6509:2 6520:1 6529:1 6531:1 6533:1 6536:1 6537:1 6540:1 6547:1 6548:1 6553:1 6558:4 6561:1 6570:1 6581:4 6584:1 6610:1 6624:1 6639:1 6688:5 6692:3 6699:1 6706:1 6707:1 6750:1 6761:1 6776:1 6793:1 6795:1 6806:1 6816:1 6819:3 6827:1 6843:1 6847:4 6863:1 6874:1 6884:1 6887:1 6888:2 6890:2 6897:4 6923:1 6935:1 6939:1 6944:1 6961:6 6980:2 6994:2 7003:1 7008:1 7012:1 7025:1 7038:1 7044:1 7059:1 7062:1 7066:1 7081:1 7087:2 7088:3 7089:2 7090:1 7091:1 7101:1 7103:1 7114:2 7132:2 7150:1 7173:1 7190:2 7192:1 7193:1 7196:2 7197:4 7200:4 7201:1 7204:3 7207:4 7209:2 7210:1 7211:2 7217:1 7218:9 7221:1 7222:3 7224:1 7258:1 7272:1 7279:1 7303:1 7306:1 7307:2 7365:2 7378:1 7380:1 7381:1 7389:1 7406:2 7410:1 7429:3 7435:2 7439:1 7463:1 7469:1 7497:1 7511:1 7512:1 7535:1 7539:2 7543:1 7552:1 7557:1 7559:1 7570:2 7574:1 7589:2 7599:1 7602:2 7613:1 7619:1 7628:1 7637:1 7648:3 7649:1 7659:1 7662:1 7671:4 7672:1 7676:3 7677:1 7691:1 7705:5 7707:1 7724:1 7741:1 7745:2 7748:1 7750:3 7766:1 7776:1 7791:1 7792:1 7794:1 7815:1 7822:1 7825:1 7833:1 7839:2 7840:1 7855:1 7867:1 7879:3 7912:2 7913:1 7927:1 7941:2 7949:1 7954:1 7956:1 7961:1 7984:1 7988:1 7993:1 8007:2 8014:1 8025:2 8027:2 8043:1 8045:1 8054:1 8064:1 8075:10 8089:2 8090:1 8105:2 8127:1 8129:1 8139:1 8143:4 8150:1 8155:1 8167:1 8168:1 8196:1 8216:1 8219:1 8230:1 8247:1 8248:1 8258:2 8273:1 8277:4 8283:1 8299:1 8302:1 8328:3 8338:1 8340:1 8347:1 8387:1 8389:3 8413:1 8417:4 8426:1 8432:4 8439:1 8446:1 8454:1 8474:1 8478:2 8491:1 8494:1 8498:1 8499:1 8504:1 8531:1 8560:1 8562:1 8567:1 8570:1 8573:1 8575:1 8582:1 8593:1 8599:1 8609:4 8611:1 8615:1 8619:1 8624:5 8630:3 8631:7 8633:4 8653:1 8654:2 8659:1 8663:1 8684:1 8688:2 8689:1 8702:46 8716:1 8717:1 8725:1 8726:9 8728:7 8734:2 8748:1 8767:1 8783:1 8793:1 8796:2 8797:1 8810:1 8815:2 8816:2 8817:1 8818:1 8860:1 8864:2 8874:1 8880:1 8886:1 8887:1 8890:1 8891:1 8901:1 8909:2 8923:1 8930:1 8932:2 8935:8 8957:1 8960:1 8974:1 8982:6 8987:1 8992:1 9025:1 9048:2 9059:1 9094:2 9127:1 9135:1 9143:1 9157:7 9168:2 9179:1 9183:1 9186:1 9203:3 9221:2 9222:1 9231:1 9232:19 9264:1 9267:1 9276:1 9279:1 9289:1 9295:1 9298:1 9299:1 9311:1 9324:1 9332:1 9333:1 9335:1 9340:1 9381:1 9394:2 9425:1 9430:1 9435:1 9441:1 9466:1 9470:1 9473:1 9484:2 9493:2 9507:2 9508:1 9529:1 9540:2 9542:1 9544:2 9561:1 9563:1 9623:2 9630:1 9632:2 9633:1 9634:4 9638:1 9640:1 9642:2 9644:2 9646:1 9648:3 9649:2 9654:3 9661:1 9665:1 9669:1 9675:1 9688:1 9690:1 9697:3 9705:1 9742:1 9743:1 9744:1 9746:1 9770:1 9781:1 9788:1 9806:1 9807:1 9810:2 9815:1 9823:1 9826:1 9833:1 9836:1 9842:3 9882:1 9901:3 9907:1 9923:1 9931:1 9937:2 9942:1 9945:2 9952:1 9965:2 9974:1 9976:3 9982:1 9988:1 9994:1 9999:1 10008:2 10015:1 10022:1 10027:3 10035:1 10054:1 10070:1 10087:1 10092:1 10095:2 10107:1 10117:1 10121:1 10124:1 10126:1 10138:1 10142:1 10150:2 10152:1 10159:1 10161:2 10171:1 10197:1 10209:2 10210:2 10232:1 10265:1 10275:1 10282:1 10291:1 10294:1 10307:3 10331:1 10332:1 10334:1 10337:1 10338:1 10340:1 10345:7 10349:1 10362:1 10367:1 10371:1 10373:1 10374:1 10376:1 10385:1 10389:1 10407:1 10417:1 10422:1 10430:1 10434:5 10436:1 10445:1 10450:1 10454:1 10456:1 10459:1 10465:1 10479:1 10497:1 10502:1 10517:2 10518:1 10522:2 10524:1 10533:2 10540:1 10549:1 10554:1 10570:1 10575:1 10583:1 10584:2 10586:1 10591:1 10598:1 10602:1 10619:1 10621:1 10623:1 10627:1 10643:2 10648:1 10666:2 10695:1 10709:4 10732:1 10747:1 10752:2 10764:1 10765:1 10792:1 10800:1 10804:1 10806:1 10807:2 10822:1 10828:2 10831:1 10846:1 10867:2 10876:1 10877:1 10886:1 10892:1 10893:1 10913:2 10948:9 10969:1 10970:1 10972:1 10973:4 10996:1 10997:2 10999:1 11008:1 11011:1 11020:1 11029:1 11030:1 11052:1 11063:2 11067:1 11079:1 11094:2 11119:2 11133:4 11141:1 11163:3 11167:1 11170:2 11171:1 11172:1 11175:1 11178:2 11188:3 11200:1 11201:1 11208:1 11210:4 11214:3 11218:1 11222:1 11225:1 11226:1 11231:2 11232:2 11234:2 11239:1 11242:2 11265:1 11266:2 11272:1 11276:4 11288:2 11291:1 11302:1 11308:1 11309:1 11323:1 11324:1 11331:1 11339:1 11342:1 11356:1 11362:1 11376:6 11383:2 11415:1 11421:1 11431:1 11433:1 11438:1 11445:1 11448:1 11450:1 11451:1 11456:1 11464:1 11488:1 11492:1 11499:1 11517:2 11526:1 11550:1 11573:1 11575:1 11588:1 11594:1 11601:1 11603:1 11607:4 11611:3 11637:1 11656:1 11660:1 11674:1 11677:3 11690:1 11695:1 11697:1 11701:3 11717:1 11730:2 11741:1 11744:1 11778:1 11784:5 11795:1 11796:1 11811:1 11820:1 11822:7 11830:1 11841:1 11842:1 11846:1 11854:1 11855:1 11858:1 11860:1 11895:1 11899:1 11906:3 11912:1 11914:3 11915:1 11930:1 11931:1 11933:1 11949:2 11955:1 11966:1 12002:1 12005:1 12015:5 12023:1 12026:2 12031:1 12039:3 12042:1 12050:3 12099:1 12109:1 12112:1 12145:1 12149:1 12154:1 12162:1 12169:3 12197:1 12213:1 12214:1 12255:1 12266:1 12274:1 12275:1 12284:1 12307:2 12310:1 12319:1 12325:1 12327:3 12329:4 12333:1 12335:1 12336:4 12337:1 12339:1 12350:1 12352:2 12354:1 12356:1 12361:1 12369:1 12377:1 12378:2 12379:1 12389:1 12406:1 12427:1 12434:2 12438:1 12448:1 12461:1 12472:1 12475:1 12476:1 12477:2 12487:1 12501:1 12526:1 12545:1 12551:1 12552:1 12559:1 12580:1 12596:1 12607:1 12618:4 12630:2 12640:1 12647:1 12649:1 12672:1 12682:1 12733:1 12741:1 12743:1 12762:1 12764:1 12766:1 12770:1 12775:1 12776:1 12783:1 12789:1 12805:1 12811:3 12814:2 12819:2 12836:1 12845:1 12862:2 12865:11 12867:1 12876:1 12877:1 12893:1 12896:1 12902:1 12910:2 12915:1 12918:1 12923:1 12928:2 12933:1 12935:2 12936:2 12952:1 12954:1 12970:1 12977:2 12988:3 12994:1 13000:1 13005:1 13009:1 13012:1 13015:1 13018:3 13027:1 13032:1 13050:2 13061:2 13064:1 13073:1 13081:1 13085:3 13088:5 13089:2 13094:2 13111:1 13116:1 13128:8 13135:1 13137:1 13138:2 13142:4 13143:1 13146:1 13148:1 13149:1 13150:2 13151:7 13152:1 13153:1 13156:1 13162:6 13168:1 13169:1 13192:1 13196:1 13202:1 13220:2 13228:1 13231:1 13239:2 13244:1 13254:2 13264:2 13285:1 13286:1 13294:2 13302:1 13308:1 13320:7 13365:1 13391:1 13408:1 13410:3 13415:1 13423:2 13427:1 13429:1 13434:1 13443:1 13448:2 13456:1 13461:1 13463:1 13473:4 13476:1 13480:2 13486:1 13515:2 13517:3 13527:2 13552:1 13553:2 13556:1 13590:1 13592:1 13600:1 13606:2 13608:1 13611:1 13616:1 13621:1 13649:1 13653:2 13654:2 13662:1 13674:1 13684:3 13685:4 13690:1 13700:2 13718:3 13738:1 13742:1 13745:1 13750:2 13778:1 13805:1 13815:1 13821:3 13826:2 13830:1 13848:1 13863:2 13873:5 13874:1 13895:2 13896:3 13899:1 13921:1 13930:1 13933:1 13939:1 13940:1 13976:2 14004:1 14007:1 14011:1 14018:1 14021:1 14030:1 14037:1 14039:1 14055:1 14059:1 14061:1 14101:1 14102:2 14119:1 14125:1 14146:1 14162:4 14180:1 14183:2 14207:1 14210:1 14214:2 14242:1 14256:2 14267:1 14281:1 14318:2 14319:1 14341:1 14345:10 14353:1 14356:2 14361:1 14370:3 14376:2 14380:1 14384:1 14402:1 14409:1 14410:1 14416:1 14421:1 14436:2 14443:1 14449:1 14468:1 14471:1 14472:1 14473:5 14480:1 14483:2 14489:2 14497:1 14518:1 14520:1 14541:1 14545:1 14572:1 14577:1 14581:1 14583:1 14589:2 14592:1 14620:1 14633:1 14640:1 14652:1 14658:2 14688:2 14697:1 14706:1 14753:1 14781:1 14793:5 14804:1 14806:1 14831:1 14841:1 14854:2 14858:1 14859:1 14867:2 14870:2 14873:1 14877:7 14881:4 14883:1 14891:1 14895:1 14896:1 14904:5 14907:7 14915:1 14921:3 14935:2 14940:1 14942:2 14945:1 14949:3 14957:1 14958:1 14959:1 14960:1 14975:2 14979:1 14980:1 14999:1 15005:1 15016:1 15019:2 15028:1 15033:2 15039:8 15040:1 15047:2 15054:1 15059:1 15066:1 15075:1 15079:1 15082:1 15087:1 15122:1 15125:4 15131:1 15160:1 15161:1 15187:1 15191:1 15212:1 15215:1 15216:1 15217:5 15236:1 15246:1 15251:1 15255:1 15259:1 15275:1 15278:1 15281:2 15293:1 15311:1 15322:1 15325:3 15333:2 15336:1 15361:1 15367:1 15374:2 15381:2 15386:1 15410:1 15429:1 15438:1 15443:1 15476:1 15477:3 15480:1 15483:2 15487:1 15488:1 15489:2 15496:1 15508:2 15513:1 15519:1 15520:1 15523:1 15543:1 15551:1 15555:1 15574:3 15616:7 15622:1 15625:2 15645:1 15662:1 15664:1 15666:2 15680:2 15704:1 15725:1 15728:5 15734:5 15740:2 15749:2 15780:2 15811:2 15820:2 15840:2 15855:1 15861:1 15864:1 15900:2 15905:1 15923:1 15929:1 15934:1 15945:1 15955:1 15959:1 15960:1 15962:1 15974:3 15986:1 15990:1 15993:1 15996:2 15997:1 16000:3 16021:1 16026:1 16030:1 16033:1 16040:3 16042:1 16043:1 16046:1 16067:1 16073:1 16092:1 16098:3 16114:1 16119:1 16144:1 16145:1 16150:1 16152:1 16178:2 16183:1 16187:1 16189:1 16197:2 16198:1 16214:1 16227:4 16229:1 16236:1 16237:1 16254:1 16266:1 16270:1 16273:1 16284:1 16289:1 16321:1 16330:4 16347:1 16350:2 16351:1 16355:1 16362:1 16390:2 16393:2 16411:1 16422:1 16427:2 16428:1 16433:2 16448:1 16451:1 16457:1 16463:1 16484:4 16488:1 16508:3 16523:1 16534:1 16538:1 16556:2 16559:2 16566:4 16598:1 16606:1 16608:1 16630:1 16634:1 16642:1 16650:2 16674:2 16678:1 16684:5 16687:1 16688:1 16693:1 16694:1 16721:2 16723:1 16739:1 16741:1 16753:1 16762:1 16782:8 16783:2 16787:1 16789:1 16793:1 16831:1 16832:4 16835:1 16842:1 16846:3 16848:1 16860:1 16884:2 16904:1 16922:1 16936:3 16940:2 16942:1 16944:1 16971:3 16973:3 16984:1 16988:3 16990:1 16999:1 17012:2 17023:1 17042:1 17045:4 17046:1 17048:1 17053:2 17056:1 17061:1 17063:1 17098:2 17103:1 17105:1 17127:1 17140:1 17155:1 17176:1 17187:1 17194:3 17203:1 17214:1 17219:1 17224:1 17226:1 17246:1 17251:3 17269:1 17289:2 17293:1 17297:1 17314:1 17317:1 17318:1 17324:2 17370:1 17379:1 17389:1 17406:1 17420:1 17423:13 17433:2 17437:1 17448:1 17479:2 17489:1 17499:1 17503:2 17514:1 17516:1 17528:3 17531:1 17539:1 17543:1 17567:1 17571:1 17576:1 17581:1 17586:2 17596:1 17598:1 17610:1 17648:1 17661:3 17673:1 17681:1 17689:12 17694:1 17695:1 17698:1 17699:2 17700:3 17709:1 17710:3 17714:1 17715:1 17718:1 17722:1 17729:5 17731:2 17740:1 17752:1 17756:1 17758:1 17767:1 17771:1 17775:2 17776:1 17783:1 17784:2 17805:5 17824:1 17829:1 17830:2 17857:3 17860:2 17866:1 17871:1 17876:1 17878:1 17880:1 17884:1 17888:5 17951:1 17953:4 17955:2 17989:1 18008:1 18009:1 18049:3 18053:4 18074:4 18108:2 18111:1 18114:1 18141:1 18148:1 18157:3 18160:1 18187:1 18195:12 18214:3 18220:1 18226:1 18227:1 18234:2 18236:1 18243:2 18247:1 18258:1 18260:1 18273:1 18281:2 18289:1 18302:1 18306:1 18308:2 18313:1 18315:1 18319:4 18321:2 18322:1 18327:1 18329:1 18330:1 18332:3 18340:2 18341:1 18342:5 18344:1 18351:1 18352:3 18372:1 18375:1 18401:1 18416:1 18417:2 18426:1 18492:3 18527:2 18537:1 18546:1 18561:1 18584:1 18619:1 18635:2 18672:1 18683:1 18684:1 18693:1 18697:1 18699:1 18702:1 18708:1 18716:2 18717:1 18727:1 18732:1 18733:1 18738:1 18739:2 18743:1 18764:1 18777:2 18785:1 18794:1 18799:2 18807:1 18808:2 18821:1 18842:2 18879:1 18896:1 18900:1 18908:1 18911:3 18919:4 18928:1 18949:1 18966:1 18967:1 18978:1 19000:1 19005:1 19024:1 19029:3 19030:1 19035:1 19039:1 19043:1 19049:1 19050:1 19059:7 19062:2 19069:2 19081:1 19089:2 19103:2 19108:1 19117:1 19126:1 19135:1 19139:5 19155:1 19165:3 19169:2 19177:1 19182:1 19200:4 19207:2 19208:1 19209:1 19212:1 19216:3 19233:1 19246:1 19248:2 19262:1 19276:1 19295:1 19296:1 19320:10 19329:1 19333:1 19345:1 19349:1 19351:1 19352:1 19354:1 19357:3 19362:1 19372:1 19398:2 19417:1 19432:1 19443:1 19444:2 19448:1 19452:1 19465:2 19471:1 19503:1 19508:2 19509:1 19526:1 19559:1 19566:1 19567:1 19583:1 19585:1 19622:1 19628:1 19634:1 19637:1 19643:1 19655:1 19659:1 19663:2 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19758:1 19763:3 19772:5 19774:1 19776:1 19781:2 19783:3 19784:1 19794:1 19797:1 19809:1 19816:1 19819:1 19843:3 19849:2 19850:1 19867:1 19872:1 19897:1 19904:1 19910:1 19919:1 19936:1 19951:2 19962:1 19965:1 19966:1 20000:1 20007:2 20008:1 20020:2 20031:1 20032:2 20045:1 20077:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:2 20123:2 20124:7 20128:3 20136:1 20142:1 20143:1 20146:2 20163:1 20166:2 20174:1 20180:1 20181:1 20183:1 20200:1 20202:1 20219:1 20220:1 20225:3 20230:1 20231:1 20237:1 20239:1 20241:1 20243:2 20286:1 20287:1 20294:1 20300:2 20309:2 20341:1 20360:1 20373:1 20391:1 20394:1 20400:1 20405:1 20406:1 20407:2 20412:1 20416:1 20437:1 20441:1 20454:1 20458:1 20460:1 20477:1 20492:2 20499:1 20503:1 20514:1 20516:1 20517:1 20518:1 20524:1 20525:1 20540:1 20548:1 20561:1 20569:1 20635:4 20645:1 20673:1 20681:2 20682:1 20692:2 20697:2 20706:1 20709:1 20742:3 20760:1 20761:1 20792:1 20803:7 20814:2 20815:2 20831:1 20851:1 20876:1 20893:2 20894:1 20895:1 20900:2 20906:1 20929:2 20936:1 20942:2 20949:1 20951:1 20970:1 20974:2 20983:3 20996:2 21003:2 21004:1 21016:2 21041:1 21047:3522 21068:3 21070:1 21079:2 21087:1 21096:1 21109:1 21164:1 21166:1 21173:2 21178:1 21205:1 21227:1 21234:1 21241:2 21260:1 21278:1 21279:4 21291:1 21292:4 21294:1 21295:2 21308:1 21355:1 21362:1 21372:1 21374:1 21378:1 21382:1 21398:1 21401:3 21408:1 21419:1 21421:1 21431:1 21444:1 21449:1 21464:1 21466:1 21476:1 21478:1 21487:1 21512:1 21515:3 21518:2 21532:1 21539:1 21551:1 21566:1 21571:1 21585:1 21601:1 21602:1 21609:1 21630:1 21644:1 21689:2 21692:1 21709:2 21729:1 21735:4 21790:1 21801:1 21802:1 21806:1 21808:1 21812:1 21813:1 21817:1 21821:2 21827:3 21833:2 21843:1 21845:1 21856:2 21861:2 21863:1 21874:1 21877:2 21883:1 21895:2 21907:1 21918:2 21921:7 21952:1 21953:8 21959:1 21960:1 21961:1 21966:2 21976:1 21992:1 22001:2 22020:3 22025:3 22029:2 22032:1 22041:1 22043:2 22045:2 22072:4 22082:1 22095:3 22107:2 22119:1 22127:1 22138:1 22143:1 22157:1 22162:1 22173:3 22174:1 22178:3 22181:1 22214:1 22227:1 22235:1 22240:1 22245:3 22262:1 22267:1 22271:1 22281:2 22294:1 22301:4 22306:1 22311:1 22318:1 22325:1 22333:1 22344:1 22351:1 22364:1 22370:1 22375:1 22382:1 22404:5 22415:1 22423:5 22459:1 22479:2 22483:1 22493:1 22495:1 22503:2 22504:1 22508:1 22526:2 22530:1 22540:1 22545:1 22548:3 22553:1 22562:1 22565:2 22569:1 22572:1 22573:2 22583:1 22586:1 22603:1 22615:1 22617:1 22626:3 22638:1 22644:2 22669:1 22681:4 22688:2 22690:1 22698:1 22713:1 22737:2 22740:1 22750:1 22766:2 22774:1 22776:1 22791:1 22793:1 22794:1 22803:1 22815:4 22819:1 22824:1 22829:1 22834:1 22835:1 22837:1 22845:1 22851:1 22852:1 22870:6 22871:1 22877:2 22889:2 22952:1 22954:1 22966:1 22984:2 22992:1 23002:1 23004:1 23005:2 23036:2 23046:1 23055:1 23059:1 23100:1 23108:3 23113:1 23114:1 23116:1 23129:1 23147:2 23156:2 23160:4 23163:1 23164:1 23169:3 23172:1 23175:1 23183:1 23243:1 23256:1 23257:1 23277:1 23279:1 23281:1 23286:1 23288:1 23290:1 23330:1 23353:1 23359:1 23363:1 23367:1 23373:1 23381:1 23383:1 23390:1 23415:2 23416:1 23419:1 23432:1 23434:1 23444:4 23447:2 23453:1 23456:1 23463:1 23471:1 23490:4 23504:2 23518:1 23521:2 23522:1 23523:1 23527:2 23529:2 23532:2 23544:3 23550:3 23556:1 23560:1 23561:1 23570:1 23572:1 23574:1 23580:3 23583:1 23585:1 23609:1 23612:1 23617:1 23622:2 23626:1 23644:2 23649:2 23656:1 23657:1 23658:1 23663:1 23669:2 23723:2 23728:1 23729:1 23736:1 23745:7 23746:1 23751:1 23752:2 23756:1 23765:1 23773:1 23782:1 23790:1 23800:1 23802:2 23831:1 23837:1 23852:1 23853:1 23858:1 23859:1 23861:1 23863:1 23898:1 23901:1 23917:1 23919:2 23927:1 23931:1 23943:1 23949:1 23951:1 23953:2 23955:2 23983:1 23985:1 23991:1 24009:1 24013:1 24024:5 24032:1 24039:1 24057:3 24058:1 24074:1 24078:1 24082:2 24090:1 24093:1 24098:1 24099:1 24113:2 24114:1 24133:1 24138:1 24143:1 24144:1 24151:2 24166:1 24168:1 24194:1 24195:1 24197:1 24198:1 24201:1 24205:3 24206:2 24207:1 24208:1 24214:1 24217:1 24218:1 24222:1 24225:1 24226:2 24229:1 24241:1 24250:1 24255:2 24262:2 24263:3 24274:1 24276:2 24279:1 24289:1 24308:1 24314:1 24321:1 24323:1 24334:1 24358:1 24359:2 24366:6 24368:1 24369:1 24373:2 24379:1 24383:2 24386:1 24394:2 24398:1 24401:1 24417:1 24418:1 24425:1 24427:1 24442:1 24449:1 24467:1 24474:1 24477:1 24478:3 24487:1 24493:6 24502:1 24504:1 24527:1 24541:1 24542:4 24550:2 24578:1 24587:1 24601:3 24618:1 24636:1 24639:1 24643:2 24647:1 24650:3 24660:1 24678:1 24681:1 24685:3 24687:1 24690:5 24692:3 24695:1 24698:1 24706:2 24727:1 24742:1 24775:1 24788:2 24792:1 24805:2 24840:1 24841:1 24847:1 24854:1 24857:1 24858:1 24860:1 24874:1 24887:1 24904:1 24907:1 24916:3 24921:1 24925:2 24933:3 24936:1 24937:1 24943:1 24957:1 24959:1 24966:1 24969:1 24972:2 24974:1 24975:1 24983:1 24985:2 24990:3 25003:1 25011:1 25015:1 25017:1 25021:2 25022:1 25027:1 25032:1 25036:1 25041:1 25048:1 25064:1 25072:1 25077:2 25093:1 25097:3 25100:1 25114:1 25115:2 25127:1 25133:1 25134:2 25139:2 25156:3 25167:4 25170:1 25173:1 25183:1 25184:2 25189:1 25191:1 25197:1 25224:9 25233:3 25238:1 25245:2 25300:1 25306:5 25337:5 25343:1 25346:1 25356:1 25357:1 25364:2 25366:1 25367:4 25369:1 25371:1 25388:1 25401:1 25413:1 25415:1 25416:1 25423:1 25431:2 25434:2 25437:1 25454:1 25464:1 25474:2 25494:5 25508:1 25510:1 25513:2 25515:1 25516:3 25526:2 25545:4 25548:1 25552:4 25557:1 25561:3 25562:1 25569:1 25582:2 25590:1 25595:2 25599:1 25600:1 25621:1 25623:1 25624:1 25635:4 25646:1 25659:3 25662:2 25666:1 25669:5 25670:1 25674:4 25678:3 25713:1 25714:1 25724:1 25726:1 25732:1 25798:1 25810:1 25831:1 25834:1 25841:1 25865:2 25878:1 25883:1 25884:1 25897:1 25916:1 25920:1 25958:1 25967:1 26002:3 26017:1 26019:3 26025:1 26031:1 26032:1 26035:1 26036:1 26046:1 26047:1 26056:4 26062:1 26073:1 26084:1 26088:1 26106:1 26110:2 26133:1 26150:1 26158:1 26160:1 26188:2 26195:1 26201:1 26217:1 26218:1 26223:1 26239:1 26243:1 26253:1 26255:1 26263:2 26269:1 26270:3 26278:2 26279:1 26286:4 26320:1 26324:2 26328:1 26329:2 26331:1 26334:1 26354:2 26364:1 26367:1 26390:1 26403:1 26405:1 26407:1 26411:1 26423:2 26434:1 26435:1 26437:4 26442:2 26445:2 26459:1 26481:1 26482:1 26488:1 26490:3 26502:7 26530:1 26549:1 26550:1 26557:2 26565:1 26577:1 26581:1 26582:1 26584:2 26605:1 26606:1 26608:1 26646:2 26665:1 26675:1 26679:1 26681:1 26685:1 26689:3 26705:1 26718:1 26726:1 26729:1 26762:1 26768:1 26780:1 26793:1 26794:1 26839:1 26867:1 26872:2 26873:1 26879:1 26890:1 26897:1 26898:1 26902:1 26932:1 26954:1 26964:1 26966:1 26967:1 26977:1 26979:1 26984:3 26991:1 26996:1 26998:1 27020:2 27049:1 27052:1 27063:1 27065:3 27075:2 27076:1 27100:3 27105:1 27115:2 27116:1 27126:1 27133:1 27134:1 27144:3 27151:1 27182:1 27186:1 27196:2 27198:1 27201:1 27202:1 27211:1 27222:2 27223:1 27224:1 27226:1 27227:5 27231:1 27233:1 27245:3 27247:1 27265:1 27280:1 27295:1 27299:3 27300:1 27305:2 27317:1 27335:1 27336:2 27344:1 27351:1 27357:1 27358:1 27365:1 27376:1 27383:1 27390:1 27408:2 27412:1 27429:2 27436:2 27460:1 27466:1 27470:4 27471:3 27479:1 27481:1 27483:1 27484:2 27486:1 27487:4 27489:3 27490:2 27496:1 27498:4 27508:2 27511:2 27519:1 27527:2 27530:3 27539:5 27547:1 27557:1 27578:1 27580:2 27586:1 27603:2 27612:2 27622:1 27626:2 27654:1 27655:2 27661:1 27664:3 27674:1 27679:1 27681:2 27683:2 27687:2 27689:3 27691:2 27692:1 27705:1 27711:1 27713:1 27754:1 27797:12 27798:1 27799:1 27815:1 27821:10 27835:1 27839:4 27842:2 27858:1 27862:1 27864:1 27871:1 27876:3 27890:2 27892:1 27912:2 27915:3 27986:2 27987:1 27994:1 28003:1 28024:1 28030:1 28046:1 28052:2 28064:1 28065:1 28069:1 28074:1 28078:1 28082:1 28094:1 28101:1 28110:1 28113:2 28115:1 28133:2 28149:1 28164:1 28169:1 28173:1 28209:1 28275:1 28293:1 28294:1 28303:1 28308:1 28319:2 28348:3 28349:6 28369:1 28382:9 28384:1 28393:1 28397:1 28401:1 28402:1 28413:3 28420:1 28424:2 28425:1 28430:1 28501:1 28527:1 28533:2 28536:1 28558:1 28593:1 28614:3 28631:1 28632:5 28635:3 28636:1 28643:1 28658:1 28664:1 28670:2 28673:1 28674:2 28685:1 28694:2 28722:1 28730:1 28731:2 28736:1 28737:1 28759:4 28773:1 28776:1 28787:1 28803:2 28809:1 28833:2 28847:1 28884:1 28885:1 28926:1 28944:1 28948:5 28966:1 28969:2 28976:1 28983:1 28995:1 29005:4 29007:3 29012:2 29032:1 29042:1 29136:1 29137:2 29149:2 29152:2 29211:1 29225:1 29226:2 29233:1 29241:1 29263:2 29266:1 29277:1 29279:3 29283:1 29287:1 29290:1 29298:2 29305:1 29313:1 29329:1 29330:1 29336:1 29339:1 29342:1 29344:1 29345:1 29346:1 29349:1 29351:2 29356:1 29359:2 29378:1 29383:1 29394:1 29419:1 29421:7 29433:1 29448:1 29450:1 29474:1 29483:1 29485:1 29496:1 29508:1 29515:8 29521:2 29529:1 29535:1 29547:1 29559:1 29562:1 29567:1 29570:1 29583:1 29605:3 29612:1 29623:1 29632:1 29643:3 29649:1 29654:1 29658:1 29676:4 29702:1 29704:4 29711:1 29721:1 29724:1 29728:1 29729:1 29730:1 29735:1 29745:1 29775:1 29783:1 29800:1 29820:2 29822:1 29824:1 29825:1 29826:1 29831:2 29839:1 29841:1 29845:1 29847:1 29899:1 29904:1 29916:1 29927:1 29958:4 29969:1 29971:4 29972:1 29973:1 29974:3 29977:1 29995:1 29999:1 30002:2 30015:1 30035:1 30040:1 30044:1 30052:1 30059:1 30096:2 30100:2 30105:1 30142:1 30149:2 30156:2 30168:2 30169:1 30191:1 30199:1 30204:1 30213:2 30231:6 30249:1 30252:1 30267:1 30285:1 30297:1 30305:1 30306:1 30315:1 30327:2 30330:1 30331:2 30342:1 30357:1 30360:1 30370:1 30380:4 30390:1 30393:2 30420:1 30431:1 30435:1 30445:1 30454:1 30471:1 30475:4 30501:4 30504:3 30507:1 30510:2 30532:1 30548:2 30552:2 30572:2 30587:8 30589:3 30602:1 30628:1 30638:1 30653:1 30660:1 30663:1 30664:7 30683:1 30685:1 30688:1 30689:2 30697:1 30704:5 30710:1 30718:2 30730:1 30738:1 30775:1 30776:1 30789:2 30798:6 30802:4 30805:3 30809:2 30814:3 30822:1 30834:1 30835:1 30843:4 30846:1 30854:2 30864:1 30867:1 30868:2 30869:1 30875:2 30880:1 30883:1 30884:2 30892:2 30895:1 30908:2 30946:1 30956:2 30960:1 30967:2 30968:1 30971:2 30977:2 30988:1 30994:2 30999:1 31009:1 31019:1 31020:1 31031:1 31042:1 31046:3 31057:2 31062:1 31065:1 31082:1 31095:1 31101:1 31104:2 31107:1 31113:1 31125:2 31127:1 31130:1 31135:1 31142:2 31144:1 31158:2 31161:1 31172:2 31184:1 31191:1 31195:2 31197:3 31206:1 31209:1 31216:8 31221:1 31227:1 31287:1 31306:1 31315:2 31322:2 31324:1 31360:1 31363:2 31370:2 31388:1 31391:1 31392:3 31398:1 31404:1 31422:2 31440:2 31448:1 31452:3 31459:1 31461:4 31463:1 31476:1 31478:1 31480:2 31484:2 31485:3 31491:1 31494:1 31521:1 31531:5 31538:1 31543:1 31547:1 31554:1 31566:1 31576:3 31581:1 31583:1 31590:1 31622:1 31625:1 31635:2 31640:1 31647:1 31649:1 31658:2 31665:23 31667:3 31670:2 31674:2 31679:2 31680:3 31684:1 31686:1 31688:2 31704:9 31721:3 31722:1 31727:1 31730:1 31750:1 31761:3 31763:1 31783:1 31790:1 31818:1 31821:1 31827:2 31834:5 31842:1 31846:1 31853:1 31877:7 31894:2 31897:2 31910:1 31911:1 31921:1 31932:1 31938:2 31952:1 31954:1 31960:1 31962:1 31964:1 31974:1 31976:1 31998:2 32009:1 32027:1 32035:2 32041:1 32047:1 32053:1 32061:1 32070:1 32083:1 32085:1 32094:1 32103:1 32105:2 32117:1 32125:1 32128:1 32140:1 32142:1 32153:1 32171:2 32172:2 32181:1 32201:1 32207:1 32212:1 32229:1 32241:5 32244:6 32277:1 32280:3 32289:1 32299:1 32303:1 32304:1 32310:1 32311:1 32312:1 32319:1 32335:3 32348:1 32403:1 32407:1 32433:1 32439:1 32443:7 32447:1 32451:1 32456:1 32471:4 32472:1 32476:1 32487:1 32491:4 32499:1 32548:1 32551:1 32552:2 32579:1 32619:1 32625:1 32628:1 32632:1 32650:1 32651:1 32656:2 32660:1 32661:1 32675:1 32693:2 32697:1 32713:5 32719:1 32722:1 32724:2 32750:3 32768:1 32791:1 32795:1 32803:1 32808:2 32814:2 32818:1 32824:1 32834:1 32843:1 32846:2 32885:1 32899:1 32900:2 32910:2 32934:1 32935:1 32941:3 32944:3 32956:2 32963:1 33001:2 33019:1 33025:1 33038:1 33041:6 33055:1 33056:3 33057:1 33059:1 33075:1 33083:1 33084:1 33101:1 33105:2 33108:1 33115:1 33118:1 33133:1 33138:1 33141:3 33143:2 33146:1 33148:2 33149:2 33155:9 33164:1 33167:5 33168:1 33171:5 33182:1 33198:1 33211:1 33220:3 33224:1 33225:1 33226:1 33232:1 33234:2 33267:1 33271:3
11 1:1 2:1 6:1 27:1 31:1 34:1 39:2 49:1 53:1 55:1 60:2 67:1 84:1 85:1 86:1 93:1 95:1 99:2 106:1 126:1 148:1 150:2 159:1 166:2 170:1 181:2 183:1 187:2 215:1 232:1 238:5 241:1 256:1 265:1 268:1 282:1 283:2 294:3 296:2 299:1 313:1 322:1 344:1 347:1 362:1 378:1 401:1 402:1 403:4 411:2 415:2 427:2 446:1 455:2 460:1 498:1 507:8 513:1 523:1 546:2 582:2 586:1 621:1 627:1 646:2 654:1 698:1 712:1 717:4 721:1 731:7 745:1 753:2 759:2 764:4 765:1 766:1 774:1 789:1 790:2 795:1 807:1 808:1 815:2 829:1 866:2 899:1 937:1 951:2 955:1 956:1 971:2 974:1 979:1 984:1 1000:1 1003:2 1022:3 1049:2 1053:1 1057:1 1067:2 1069:1 1070:1 1071:7 1073:1 1080:1 1083:1 1094:1 1103:1 1106:1 1117:1 1118:1 1125:1 1127:1 1130:6 1132:1 1134:1 1141:2 1142:1 1144:1 1158:1 1161:1 1168:3 1171:2 1199:1 1204:4 1211:1 1216:3 1220:1 1236:3 1239:1 1244:1 1257:1 1262:1 1265:1 1284:1 1287:1 1309:1 1311:2 1316:1 1318:1 1321:1 1322:1 1351:2 1376:1 1378:1 1388:1 1392:1 1393:1 1403:1 1405:2 1409:1 1413:1 1415:1 1421:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:1 1465:1 1467:1 1480:1 1481:1 1487:1 1496:2 1504:1 1509:1 1514:2 1532:1 1538:2 1539:1 1545:1 1547:1 1588:2 1624:1 1626:2 1630:1 1635:1 1645:1 1650:1 1658:1 1664:4 1683:2 1686:1 1690:2 1691:1 1719:1 1726:7 1730:11 1739:11 1745:1 1747:1 1749:2 1751:2 1771:1 1793:1 1799:1 1807:1 1808:1 1837:4 1839:4 1841:1 1844:1 1869:1 1878:2 1883:8 1892:1 1899:1 1906:2 1917:7 1941:2 1943:1 1948:1 1955:1 1956:1 1957:1 1963:1 1966:1 1977:2 1980:1 1999:1 2003:1 2019:2 2037:1 2041:1 2061:1 2062:1 2073:2 2078:1 2080:1 2086:1 2098:1 2113:1 2118:1 2119:1 2133:3 2135:1 2136:1 2137:3 2138:2 2141:1 2157:1 2158:1 2169:1 2177:2 2180:1 2187:1 2195:6 2209:2 2214:1 2223:1 2225:1 2237:1 2241:1 2246:1 2249:2 2255:1 2263:2 2265:1 2269:1 2279:1 2284:2 2301:2 2304:1 2317:3 2322:1 2345:1 2348:1 2355:1 2367:1 2372:1 2373:5 2381:1 2397:1 2399:1 2406:1 2419:1 2421:1 2422:1 2429:1 2437:1 2441:1 2465:1 2482:5 2496:1 2502:3 2508:1 2509:1 2519:1 2521:2 2525:1 2529:1 2530:1 2537:1 2547:1 2551:3 2552:1 2553:1 2555:5 2558:6 2559:1 2562:1 2563:2 2568:1 2570:1 2573:1 2576:2 2578:3 2579:3 2583:1 2585:1 2587:1 2613:1 2616:1 2618:3 2620:3 2623:3 2624:5 2625:2 2626:1 2630:2 2631:3 2632:1 2634:2 2635:2 2637:1 2640:2 2642:4 2647:6 2648:2 2652:1 2657:3 2662:2 2663:1 2681:1 2720:1 2732:1 2738:1 2739:1 2742:1 2753:2 2769:1 2774:1 2784:1 2788:1 2795:1 2801:3 2821:1 2831:3 2832:1 2864:1 2867:2 2868:1 2878:1 2888:1 2890:2 2896:1 2905:2 2918:2 2923:1 2934:1 2951:2 2953:1 2955:1 2962:1 2964:1 2979:1 2985:1 2992:1 2993:1 3008:2 3017:2 3030:1 3033:1 3039:1 3042:1 3049:1 3051:1 3059:1 3069:1 3071:1 3080:4 3097:1 3098:1 3106:7 3116:2 3121:2 3134:2 3145:1 3157:1 3165:3 3171:1 3173:2 3181:1 3182:2 3193:1 3195:1 3197:1 3201:2 3213:2 3223:1 3257:2 3263:2 3283:1 3284:7 3291:1 3294:1 3295:12 3302:2 3314:2 3318:2 3336:4 3350:2 3351:1 3352:1 3353:12 3360:1 3364:2 3369:1 3377:1 3379:1 3380:1 3386:1 3397:1 3408:1 3411:2 3418:2 3433:2 3464:1 3474:1 3475:1 3482:1 3504:1 3517:1 3529:1 3539:1 3549:1 3550:2 3572:1 3578:2 3588:1 3625:1 3645:1 3646:1 3683:1 3690:4 3702:3 3707:1 3721:3 3726:1 3744:1 3755:1 3758:5 3762:1 3765:1 3769:1 3772:1 3790:1 3799:1 3816:1 3821:1 3822:2 3853:1 3856:1 3857:2 3868:1 3875:1 3882:1 3917:2 3926:1 3930:3 3936:1 3939:1 3942:2 3945:1 3951:1 3968:1 3974:2 3978:1 3990:1 4005:1 4011:1 4012:1 4018:1 4020:2 4033:1 4035:2 4040:1 4047:3 4071:1 4074:1 4105:1 4115:1 4122:1 4131:1 4153:1 4160:4 4174:5 4193:3 4195:1 4207:1 4225:1 4245:1 4247:2 4252:4 4253:13 4267:1 4271:1 4279:2 4288:4 4289:4 4291:2 4292:1 4300:1 4303:1 4306:7 4308:2 4331:1 4332:5 4334:1 4351:3 4356:1 4361:1 4378:1 4382:1 4391:1 4405:1 4434:1 4437:1 4454:2 4456:2 4465:1 4470:1 4477:1 4484:1 4487:1 4488:1 4510:4 4511:1 4512:1 4529:1 4531:2 4533:1 4536:3 4540:2 4545:3 4547:1 4573:1 4574:2 4575:1 4581:2 4585:1 4593:1 4609:1 4628:2 4635:1 4637:1 4663:1 4667:1 4684:1 4686:2 4704:1 4714:1 4727:1 4728:1 4730:1 4758:1 4763:5 4767:7 4773:1 4785:1 4792:1 4793:4 4824:2 4842:2 4863:1 4871:1 4872:5 4877:2 4888:2 4889:1 4906:1 4907:1 4924:1 4929:1 4933:1 4936:2 4951:1 4959:1 4974:1 4980:1 4989:1 4991:1 5000:1 5020:1 5022:1 5025:1 5030:1 5033:4 5044:1 5045:2 5052:1 5066:1 5072:1 5082:1 5098:1 5106:1 5136:2 5143:5 5162:1 5163:1 5168:1 5171:1 5198:1 5212:1 5239:1 5246:3 5269:1 5276:1 5287:4 5290:2 5299:1 5312:1 5337:3 5340:5 5365:1 5369:3 5397:1 5462:1 5471:1 5490:2 5491:1 5516:1 5517:1 5528:1 5530:1 5536:1 5562:37 5564:2 5596:2 5610:1 5641:1 5671:1 5689:1 5690:3 5706:1 5717:3 5718:7 5719:4 5720:3 5722:1 5725:3 5730:2 5731:3 5733:4 5735:2 5740:1 5744:1 5748:1 5750:5 5752:3 5759:1 5763:1 5766:1 5770:1 5781:1 5788:1 5794:1 5811:1 5814:2 5825:1 5832:1 5844:1 5853:2 5855:1 5868:1 5873:1 5898:1 5907:1 5965:3 5975:1 6027:1 6038:1 6043:1 6084:3 6088:1 6089:1 6108:1 6115:1 6124:1 6144:3 6150:3 6165:2 6169:2 6181:1 6186:2 6224:1 6233:1 6237:1 6261:1 6283:2 6284:1 6292:1 6299:1 6300:1 6305:5 6318:1 6319:3 6322:1 6327:1 6328:1 6335:4 6345:3 6355:1 6372:2 6374:2 6382:1 6385:1 6388:1 6391:2 6395:1 6397:2 6400:1 6403:1 6407:2 6412:1 6418:2 6428:1 6431:1 6435:2 6454:1 6459:7 6469:1 6480:4 6496:1 6506:1 6508:2 6509:2 6520:1 6529:1 6531:1 6533:1 6536:1 6537:1 6540:1 6547:1 6548:1 6553:1 6558:4 6561:1 6570:1 6581:4 6584:1 6610:1 6624:1 6639:1 6688:5 6692:3 6699:1 6706:1 6707:1 6722:1 6750:1 6761:1 6773:1 6776:1 6793:1 6795:1 6806:1 6816:1 6819:3 6827:1 6843:1 6847:4 6863:1 6874:1 6884:1 6887:1 6888:2 6890:2 6897:4 6923:1 6935:1 6939:1 6944:1 6961:6 6980:2 6983:1 6994:2 7003:1 7008:1 7012:1 7025:1 7038:1 7044:1 7059:1 7062:1 7066:1 7081:1 7087:2 7088:3 7089:2 7090:1 7091:1 7101:1 7103:1 7114:2 7132:2 7150:1 7173:1 7190:2 7192:1 7193:1 7194:1 7196:2 7197:4 7200:4 7201:1 7204:3 7207:4 7209:3 7210:1 7211:2 7217:1 7218:9 7221:1 7222:3 7224:1 7258:1 7272:1 7279:1 7303:1 7306:1 7307:2 7365:2 7378:1 7380:1 7381:1 7389:1 7406:2 7410:1 7429:3 7435:2 7439:1 7463:1 7469:1 7497:1 7511:1 7512:1 7535:1 7539:2 7543:1 7552:1 7557:1 7559:1 7570:2 7574:1 7589:2 7599:2 7602:2 7613:1 7619:1 7628:1 7637:1 7648:3 7649:1 7659:1 7662:1 7671:4 7672:1 7676:3 7677:1 7691:1 7705:5 7707:1 7714:1 7724:1 7741:1 7745:2 7748:1 7750:3 7766:1 7776:1 7782:1 7791:1 7792:1 7794:1 7809:1 7815:1 7822:1 7825:1 7833:1 7839:2 7840:1 7855:1 7867:1 7879:3 7912:2 7913:1 7927:1 7941:2 7949:1 7954:1 7956:1 7961:1 7984:1 7988:2 7993:1 8007:2 8014:1 8025:2 8027:2 8043:1 8045:1 8054:1 8064:1 8075:10 8089:2 8090:1 8105:2 8127:1 8129:1 8139:1 8143:4 8150:1 8155:1 8167:1 8168:1 8189:1 8196:1 8216:1 8219:1 8230:1 8237:1 8247:1 8248:1 8258:2 8273:1 8277:4 8283:1 8299:1 8302:1 8328:3 8338:1 8340:1 8347:1 8387:1 8389:3 8413:1 8417:4 8426:1 8432:4 8439:1 8446:1 8454:1 8474:1 8478:3 8491:1 8494:1 8498:1 8499:1 8504:1 8531:1 8560:1 8562:1 8567:1 8570:1 8573:1 8575:1 8582:1 8593:1 8599:1 8609:4 8611:1 8615:1 8619:1 8624:5 8630:3 8631:7 8633:4 8653:1 8654:2 8659:1 8663:1 8684:1 8688:2 8689:1 8702:46 8716:1 8717:1 8725:1 8726:10 8728:8 8734:2 8748:1 8767:1 8783:1 8793:1 8796:2 8797:1 8810:1 8815:2 8816:2 8817:1 8818:1 8860:1 8864:2 8874:1 8880:1 8886:1 8887:1 8890:1 8891:1 8901:1 8906:1 8909:2 8923:1 8930:1 8932:2 8935:8 8957:1 8960:1 8974:1 8982:6 8987:1 8992:1 9025:1 9048:2 9059:1 9094:2 9127:1 9135:1 9143:1 9157:7 9168:2 9179:1 9183:1 9186:1 9203:3 9221:2 9222:1 9231:1 9232:19 9264:1 9267:1 9276:1 9279:1 9289:1 9295:1 9298:1 9299:1 9311:1 9324:1 9332:1 9333:1 9335:1 9340:1 9381:1 9394:3 9425:1 9430:1 9435:1 9441:1 9466:1 9470:1 9473:1 9484:2 9493:2 9507:2 9508:1 9529:1 9540:2 9542:1 9544:2 9561:1 9563:1 9623:2 9630:1 9632:2 9633:1 9634:4 9638:1 9640:1 9642:2 9644:2 9646:1 9648:3 9649:2 9654:4 9661:1 9665:1 9669:1 9675:1 9688:1 9690:1 9697:3 9705:1 9742:1 9743:1 9744:1 9746:1 9770:1 9781:1 9788:1 9806:1 9807:1 9810:2 9815:1 9823:1 9826:1 9833:1 9836:1 9842:3 9882:1 9901:3 9907:1 9923:1 9931:1 9937:2 9942:1 9945:2 9952:1 9965:2 9974:1 9976:3 9982:1 9988:1 9994:1 9999:1 10008:2 10015:1 10022:1 10027:3 10035:1 10054:1 10070:1 10087:1 10092:1 10095:2 10107:1 10117:1 10121:1 10124:1 10126:1 10138:1 10142:1 10150:2 10152:2 10159:1 10161:2 10171:1 10197:1 10209:2 10210:2 10232:1 10265:1 10275:1 10282:1 10291:1 10294:1 10307:3 10331:1 10332:1 10334:1 10337:1 10338:1 10340:1 10345:7 10349:1 10362:1 10367:1 10371:1 10373:1 10374:2 10376:1 10385:1 10389:1 10407:1 10417:1 10422:1 10430:1 10434:5 10436:1 10445:1 10450:1 10454:1 10456:1 10459:1 10465:1 10479:1 10497:1 10502:1 10517:2 10518:1 10522:2 10524:1 10533:2 10540:1 10549:1 10554:1 10570:1 10575:1 10583:1 10584:2 10586:1 10591:1 10598:1 10602:1 10619:1 10621:1 10623:1 10627:1 10643:2 10648:1 10666:2 10695:1 10709:4 10732:1 10747:1 10752:2 10764:1 10765:1 10792:1 10800:1 10804:1 10806:1 10807:2 10822:1 10828:2 10831:1 10846:1 10867:2 10876:1 10877:1 10886:1 10892:1 10893:1 10913:2 10948:10 10969:1 10970:1 10972:1 10973:4 10996:1 10997:2 10999:1 11008:1 11011:1 11020:1 11029:1 11030:1 11052:1 11063:2 11067:1 11079:1 11094:2 11119:2 11133:4 11141:1 11163:3 11167:1 11170:2 11171:1 11172:1 11175:1 11178:2 11188:3 11200:1 11201:1 11208:1 11210:4 11214:3 11218:1 11222:1 11225:1 11226:1 11231:2 11232:2 11234:2 11239:1 11242:2 11265:1 11266:2 11272:1 11276:4 11288:2 11291:1 11302:1 11308:1 11309:1 11323:1 11324:1 11331:1 11339:1 11342:1 11356:1 11362:1 11376:6 11383:2 11415:1 11421:1 11431:1 11433:1 11438:1 11445:1 11448:1 11450:1 11451:1 11456:1 11464:1 11488:1 11492:1 11499:1 11517:2 11526:1 11550:1 11573:1 11575:1 11584:1 11588:1 11594:1 11601:1 11603:1 11607:4 11611:3 11637:2 11656:1 11660:1 11674:1 11677:3 11690:1 11695:1 11697:1 11701:3 11717:1 11730:2 11741:1 11744:1 11778:1 11784:5 11795:1 11796:1 11811:1 11820:1 11822:7 11830:1 11841:1 11842:1 11846:1 11854:1 11855:1 11858:1 11860:1 11895:1 11899:1 11906:3 11912:1 11914:3 11915:1 11930:1 11931:1 11933:1 11949:2 11955:1 11966:1 12002:1 12005:1 12015:5 12023:1 12026:2 12031:1 12039:3 12042:1 12050:3 12099:1 12109:1 12112:1 12145:1 12149:1 12154:1 12162:1 12169:3 12197:1 12213:1 12214:1 12255:1 12266:1 12274:1 12275:1 12284:1 12307:2 12310:1 12319:1 12325:1 12327:3 12329:5 12333:1 12335:1 12336:4 12337:1 12339:1 12350:1 12352:2 12354:1 12356:1 12361:1 12369:1 12377:1 12378:2 12379:1 12389:1 12406:1 12427:1 12434:2 12438:1 12448:1 12461:1 12472:1 12475:1 12476:1 12477:2 12487:1 12501:1 12526:1 12545:1 12551:1 12552:1 12559:1 12580:1 12593:1 12596:1 12604:1 12607:1 12618:4 12630:2 12640:1 12647:1 12649:1 12672:1 12682:1 12733:1 12741:1 12743:1 12762:1 12764:1 12766:1 12770:1 12775:1 12776:1 12783:1 12789:1 12794:1 12805:1 12811:3 12814:2 12819:2 12836:1 12845:1 12862:2 12865:11 12867:1 12876:1 12877:1 12893:1 12896:1 12902:1 12910:2 12915:1 12918:1 12923:1 12928:2 12933:1 12935:3 12936:2 12952:1 12954:1 12970:1 12977:2 12988:3 12994:1 13000:1 13005:1 13009:1 13012:1 13015:1 13018:3 13027:1 13032:1 13050:2 13061:2 13064:1 13073:1 13081:1 13085:3 13088:6 13089:2 13094:2 13111:1 13116:1 13128:8 13135:1 13137:1 13138:2 13142:4 13143:1 13146:1 13148:1 13149:1 13150:2 13151:7 13152:1 13153:1 13156:1 13162:6 13168:1 13169:1 13192:1 13196:1 13202:1 13220:2 13228:1 13231:1 13239:2 13244:1 13254:2 13264:2 13285:1 13286:1 13294:2 13302:1 13308:1 13320:7 13365:1 13391:1 13408:1 13410:3 13415:1 13423:2 13427:1 13429:1 13434:1 13443:1 13448:2 13456:1 13461:1 13463:1 13473:4 13476:1 13480:2 13486:1 13510:1 13515:2 13517:3 13527:2 13552:1 13553:2 13556:1 13590:1 13592:1 13600:1 13606:2 13608:1 13611:1 13616:1 13621:1 13649:1 13653:2 13654:2 13662:1 13674:1 13684:3 13685:4 13690:1 13700:2 13718:3 13738:1 13742:1 13745:1 13750:3 13778:1 13805:1 13815:1 13821:3 13826:2 13830:1 13848:1 13863:2 13873:5 13874:1 13895:2 13896:3 13899:1 13921:1 13930:1 13933:1 13935:1 13939:1 13940:1 13973:1 13976:2 14004:1 14007:1 14011:1 14018:1 14021:1 14030:1 14037:1 14039:1 14055:1 14059:1 14061:2 14101:1 14102:2 14119:1 14125:1 14146:1 14162:4 14180:1 14183:2 14207:1 14210:1 14214:2 14242:1 14252:1 14256:2 14267:1 14281:1 14318:2 14319:1 14341:1 14345:10 14353:1 14356:2 14361:1 14370:3 14376:2 14380:1 14384:1 14402:1 14409:1 14410:1 14416:1 14421:1 14436:2 14441:1 14443:1 14449:1 14468:1 14471:1 14472:1 14473:5 14480:1 14483:3 14489:2 14497:1 14518:2 14520:1 14541:1 14545:1 14572:1 14577:1 14581:1 14583:1 14589:2 14592:1 14620:1 14633:1 14640:1 14652:1 14658:2 14688:2 14697:1 14706:1 14753:1 14781:1 14793:5 14804:1 14806:1 14831:1 14841:1 14854:2 14858:1 14859:1 14867:2 14870:2 14873:1 14877:7 14881:4 14883:1 14891:1 14895:1 14896:1 14904:5 14907:7 14915:1 14921:3 14935:2 14940:1 14942:2 14945:1 14949:3 14957:1 14958:1 14959:1 14960:1 14975:2 14979:1 14980:1 14999:1 15005:1 15016:1 15019:2 15028:1 15033:2 15039:9 15040:1 15047:2 15054:1 15059:1 15066:1 15075:1 15079:2 15082:1 15087:1 15122:1 15125:4 15131:1 15160:1 15161:1 15187:1 15191:1 15212:1 15215:1 15216:1 15217:5 15236:1 15246:1 15251:1 15255:1 15259:1 15275:1 15278:1 15281:2 15293:1 15311:1 15322:1 15325:3 15333:2 15336:1 15361:1 15367:1 15374:2 15381:2 15386:1 15410:1 15429:1 15438:1 15443:1 15476:1 15477:3 15480:1 15483:2 15487:1 15488:1 15489:2 15496:1 15508:2 15513:1 15519:1 15520:1 15523:1 15543:1 15551:1 15555:1 15574:3 15616:7 15622:1 15625:2 15645:1 15662:1 15664:1 15666:2 15680:2 15704:1 15725:1 15728:5 15734:5 15740:2 15749:2 15780:2 15811:2 15820:2 15840:2 15855:1 15861:1 15864:1 15900:2 15905:1 15923:1 15929:2 15934:1 15945:1 15955:1 15959:1 15960:1 15962:1 15974:4 15986:1 15990:1 15993:1 15996:2 15997:1 16000:3 16021:1 16026:1 16030:1 16033:1 16040:3 16042:1 16043:1 16046:1 16067:1 16071:1 16073:1 16092:1 16098:3 16114:1 16119:1 16136:1 16144:1 16145:1 16150:1 16152:1 16178:2 16183:1 16187:1 16189:1 16197:2 16198:1 16208:1 16214:1 16226:1 16227:4 16229:1 16236:1 16237:1 16254:1 16266:1 16270:1 16273:1 16284:1 16289:1 16321:1 16330:4 16347:1 16350:2 16351:1 16355:1 16362:1 16390:2 16393:2 16411:1 16422:1 16427:2 16428:1 16433:2 16448:1 16451:1 16457:1 16463:1 16484:4 16488:1 16508:3 16523:1 16534:1 16538:1 16556:2 16559:2 16566:5 16598:1 16606:1 16608:1 16630:1 16634:1 16642:1 16650:2 16655:1 16674:2 16678:1 16684:5 16687:1 16688:1 16693:1 16694:1 16721:2 16723:1 16739:1 16741:1 16753:1 16762:1 16782:8 16783:2 16787:1 16789:1 16793:1 16831:1 16832:4 16835:1 16842:1 16846:3 16848:1 16860:1 16884:2 16904:1 16922:1 16936:4 16940:2 16942:1 16944:1 16971:3 16973:3 16984:1 16988:3 16990:1 16999:1 17012:2 17023:1 17042:1 17045:4 17046:1 17048:1 17053:2 17056:2 17061:1 17063:1 17098:2 17103:1 17105:1 17127:1 17140:1 17155:1 17176:1 17187:1 17194:3 17203:1 17214:1 17219:1 17224:1 17226:1 17246:1 17251:3 17269:1 17289:2 17293:1 17297:1 17314:1 17317:1 17318:1 17324:2 17370:1 17379:1 17389:1 17406:1 17420:1 17423:14 17433:2 17437:1 17448:1 17479:2 17489:1 17499:1 17503:2 17514:1 17516:1 17528:3 17531:1 17539:1 17543:1 17567:1 17571:1 17576:1 17581:1 17586:2 17596:1 17598:1 17610:1 17648:1 17661:3 17673:1 17681:1 17689:13 17694:1 17695:1 17698:1 17699:2 17700:3 17709:1 17710:3 17714:1 17715:1 17718:1 17722:1 17729:5 17731:2 17740:1 17752:1 17756:1 17758:1 17767:1 17771:1 17775:2 17776:1 17783:1 17784:2 17805:5 17824:1 17829:1 17830:2 17857:3 17860:2 17866:1 17871:1 17876:1 17878:1 17880:1 17884:1 17888:5 17951:1 17953:4 17955:2 17989:1 18008:1 18009:1 18049:3 18053:4 18074:4 18108:2 18111:1 18114:1 18141:1 18148:1 18157:3 18160:1 18187:1 18195:12 18199:1 18214:3 18220:1 18226:1 18227:1 18234:2 18236:1 18243:2 18247:1 18258:1 18260:1 18273:1 18281:2 18289:1 18302:1 18306:1 18308:2 18313:1 18315:1 18319:4 18321:2 18322:1 18327:1 18329:1 18330:1 18332:3 18340:2 18341:1 18342:5 18344:1 18351:1 18352:3 18372:1 18375:1 18401:1 18416:1 18417:2 18426:1 18492:3 18527:2 18537:1 18546:1 18561:1 18584:1 18619:1 18621:1 18635:2 18672:1 18683:1 18684:1 18693:1 18697:1 18699:1 18702:1 18708:1 18716:2 18717:1 18727:1 18732:1 18733:1 18738:1 18739:2 18743:1 18764:1 18777:2 18785:1 18794:1 18799:3 18807:1 18808:2 18821:1 18842:3 18879:1 18896:1 18900:1 18908:1 18911:3 18919:5 18928:1 18949:1 18966:1 18967:1 18978:1 18987:1 19000:1 19005:1 19024:1 19029:3 19030:1 19035:1 19039:1 19043:1 19049:1 19050:1 19059:7 19062:3 19069:2 19081:1 19089:2 19103:2 19108:1 19117:1 19126:1 19135:1 19139:5 19155:1 19165:3 19169:2 19177:1 19182:1 19200:4 19207:2 19208:1 19209:1 19212:1 19216:3 19233:1 19246:1 19248:2 19261:2 19262:1 19276:1 19295:1 19296:1 19320:10 19329:1 19333:1 19345:1 19349:1 19351:1 19352:1 19354:1 19357:3 19362:1 19372:1 19398:2 19417:1 19432:1 19443:1 19444:2 19448:1 19452:1 19465:2 19471:1 19503:1 19508:2 19509:1 19526:1 19559:1 19566:1 19567:1 19583:1 19585:1 19622:1 19628:1 19634:1 19637:1 19643:1 19655:1 19659:1 19663:2 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19758:1 19763:3 19772:5 19774:1 19776:1 19781:2 19783:3 19784:1 19794:1 19797:1 19809:1 19816:1 19819:1 19843:3 19849:2 19850:1 19867:1 19872:1 19897:1 19904:1 19910:1 19919:1 19936:1 19951:2 19962:1 19965:1 19966:1 20000:1 20007:2 20008:1 20020:2 20031:1 20032:2 20045:1 20077:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:2 20123:2 20124:7 20128:3 20136:1 20142:1 20143:1 20146:2 20163:1 20166:3 20174:1 20180:1 20181:1 20183:1 20200:1 20202:1 20219:1 20220:1 20225:3 20230:1 20231:1 20237:1 20239:1 20241:1 20243:2 20286:1 20287:1 20294:1 20300:2 20309:2 20341:1 20360:1 20373:1 20391:1 20394:2 20400:1 20405:1 20406:1 20407:2 20412:1 20416:1 20437:1 20441:1 20454:1 20458:1 20460:1 20477:1 20492:2 20499:1 20503:1 20514:1 20516:1 20517:1 20518:1 20524:1 20525:1 20540:1 20548:1 20561:1 20569:1 20635:4 20645:1 20673:1 20681:2 20682:1 20692:2 20697:2 20706:1 20709:1 20742:3 20760:1 20761:1 20792:1 20803:7 20814:2 20815:2 20831:1 20851:1 20876:1 20893:2 20894:2 20895:1 20900:2 20906:1 20929:2 20936:1 20942:2 20949:1 20951:1 20970:1 20974:2 20983:3 20996:2 21003:2 21004:2 21016:2 21041:1 21047:3573 21068:3 21070:1 21079:2 21087:1 21096:1 21109:1 21164:1 21166:1 21173:2 21178:1 21205:1 21227:1 21234:1 21241:2 21260:1 21278:1 21279:4 21291:1 21292:4 21294:1 21295:2 21308:1 21355:1 21362:1 21372:1 21374:1 21378:1 21382:1 21398:1 21401:3 21408:1 21419:1 21421:1 21431:1 21444:1 21449:2 21464:1 21466:1 21476:1 21478:1 21487:1 21512:1 21515:3 21518:2 21532:1 21539:1 21551:1 21566:1 21571:1 21585:1 21601:1 21602:1 21609:1 21630:1 21644:1 21689:2 21692:1 21709:2 21729:1 21735:4 21790:1 21801:1 21802:1 21806:1 21808:1 21812:1 21813:1 21817:1 21821:2 21827:3 21833:2 21843:1 21845:1 21856:2 21861:2 21863:1 21874:1 21877:2 21883:1 21895:2 21907:1 21918:2 21921:7 21952:1 21953:8 21959:1 21960:1 21961:1 21966:2 21976:1 21992:1 22001:2 22020:3 22025:3 22029:2 22032:1 22041:1 22043:2 22045:2 22072:4 22082:1 22095:3 22107:2 22119:1 22127:1 22138:1 22143:1 22157:1 22162:1 22173:3 22174:1 22178:3 22181:1 22214:1 22227:1 22235:1 22240:1 22245:3 22262:1 22267:1 22271:1 22281:2 22294:1 22301:5 22306:1 22311:1 22318:1 22325:1 22333:1 22344:1 22351:1 22364:1 22370:1 22375:1 22382:1 22404:5 22415:1 22423:5 22459:1 22462:1 22479:2 22483:1 22493:1 22495:1 22503:2 22504:1 22508:1 22526:2 22530:1 22540:1 22545:1 22548:3 22553:1 22562:1 22565:2 22569:1 22572:1 22573:2 22583:1 22586:1 22603:1 22615:1 22617:1 22626:3 22638:1 22644:2 22655:1 22669:1 22681:4 22688:2 22690:1 22698:1 22713:1 22737:2 22740:1 22750:1 22766:2 22774:1 22776:1 22791:1 22793:1 22794:1 22803:1 22815:5 22819:1 22824:1 22829:1 22833:1 22834:1 22835:1 22837:1 22845:1 22851:1 22852:1 22870:6 22871:1 22877:2 22889:2 22952:1 22954:1 22966:1 22984:2 22992:1 23002:1 23004:1 23005:2 23036:2 23046:1 23055:1 23059:1 23100:1 23108:3 23113:1 23114:1 23116:1 23129:1 23147:2 23156:2 23160:4 23163:1 23164:1 23169:3 23172:1 23175:1 23183:1 23243:1 23256:1 23257:1 23277:1 23279:1 23281:1 23286:1 23288:1 23290:1 23330:1 23353:1 23359:1 23363:1 23367:1 23373:1 23381:1 23383:1 23390:1 23415:2 23416:1 23419:1 23432:1 23434:1 23444:4 23447:2 23453:1 23456:1 23463:1 23471:1 23490:5 23504:2 23518:1 23521:2 23522:1 23523:1 23527:2 23529:2 23532:2 23544:4 23550:3 23556:1 23560:1 23561:1 23570:1 23572:1 23574:1 23580:3 23583:1 23585:1 23609:1 23612:1 23617:1 23622:2 23626:1 23644:2 23649:2 23656:1 23657:1 23658:1 23663:1 23669:2 23723:2 23728:1 23729:1 23736:1 23737:1 23745:8 23746:1 23751:1 23752:2 23756:1 23765:1 23773:1 23782:1 23790:1 23800:1 23802:2 23831:1 23837:1 23852:1 23853:1 23858:1 23859:1 23861:1 23863:1 23898:1 23899:1 23901:1 23912:1 23917:1 23919:2 23927:1 23931:1 23943:1 23949:1 23951:1 23953:2 23955:2 23983:1 23985:1 23991:1 24009:1 24013:1 24024:5 24032:1 24039:1 24057:3 24058:1 24074:1 24078:1 24082:2 24090:1 24093:1 24098:1 24099:1 24113:2 24114:1 24133:1 24138:1 24143:1 24144:1 24151:2 24166:2 24168:1 24194:1 24195:1 24197:1 24198:1 24201:1 24205:3 24206:2 24207:1 24208:1 24214:1 24216:1 24217:1 24218:1 24222:1 24225:1 24226:3 24229:1 24241:1 24242:1 24250:1 24255:2 24262:2 24263:3 24274:1 24276:2 24279:1 24289:1 24308:1 24314:1 24319:1 24321:1 24323:1 24334:1 24358:1 24359:2 24366:6 24368:1 24369:1 24373:2 24379:1 24383:2 24386:1 24394:2 24398:1 24401:1 24417:1 24418:1 24425:1 24427:1 24442:1 24449:1 24467:1 24474:1 24477:1 24478:3 24487:1 24493:6 24502:1 24504:1 24527:1 24541:1 24542:5 24550:2 24578:1 24587:1 24601:3 24618:1 24636:1 24639:1 24643:2 24647:1 24650:3 24660:1 24678:1 24681:1 24685:3 24687:1 24690:6 24692:3 24695:1 24698:1 24706:2 24727:1 24742:1 24775:1 24788:2 24792:1 24805:3 24840:1 24841:1 24847:1 24854:1 24857:1 24858:1 24860:1 24874:1 24887:1 24904:1 24907:1 24916:3 24921:1 24925:2 24933:3 24936:1 24937:1 24943:1 24957:1 24959:1 24966:1 24969:1 24972:2 24974:1 24975:1 24983:1 24985:2 24990:3 25003:1 25011:1 25015:1 25017:1 25021:2 25022:1 25027:1 25032:1 25036:1 25041:1 25048:1 25064:1 25072:1 25077:2 25093:1 25097:3 25100:1 25114:1 25115:2 25127:1 25133:1 25134:2 25139:2 25149:1 25156:3 25167:4 25170:1 25173:1 25183:1 25184:2 25189:1 25191:1 25197:1 25224:9 25233:3 25238:1 25245:2 25298:1 25300:1 25306:5 25337:6 25343:1 25346:1 25356:1 25357:1 25364:2 25366:1 25367:4 25369:1 25371:1 25388:1 25401:1 25413:1 25415:1 25416:1 25423:1 25431:2 25434:2 25437:1 25454:1 25464:1 25474:3 25494:5 25508:1 25510:1 25513:2 25515:1 25516:3 25526:2 25545:4 25548:1 25552:4 25557:1 25561:3 25562:1 25569:1 25582:3 25590:1 25595:2 25599:2 25600:1 25621:1 25623:1 25624:1 25635:4 25646:1 25659:3 25662:2 25666:1 25669:5 25670:1 25674:5 25678:3 25713:1 25714:1 25724:1 25726:1 25732:1 25798:1 25810:1 25831:1 25834:1 25841:1 25850:1 25865:2 25878:1 25883:1 25884:1 25887:1 25897:1 25916:1 25920:1 25958:1 25967:1 26002:3 26017:1 26019:3 26025:1 26031:1 26032:1 26035:1 26036:1 26046:1 26047:1 26056:4 26062:1 26073:1 26084:1 26088:1 26106:1 26110:2 26133:1 26150:1 26158:1 26160:1 26188:2 26195:1 26201:1 26217:1 26218:1 26223:1 26239:1 26243:1 26253:1 26255:1 26263:2 26269:1 26270:3 26278:2 26279:1 26286:4 26314:1 26320:1 26324:2 26328:1 26329:2 26331:1 26334:1 26354:2 26364:1 26367:1 26390:1 26403:1 26405:1 26407:1 26411:1 26423:2 26434:1 26435:1 26437:4 26442:2 26445:2 26459:1 26481:1 26482:1 26488:1 26490:3 26502:7 26530:1 26549:1 26550:1 26557:2 26565:1 26577:1 26581:1 26582:1 26584:2 26605:1 26606:1 26608:1 26646:2 26665:1 26675:1 26679:1 26681:1 26685:1 26689:3 26705:1 26718:1 26726:1 26729:1 26762:1 26768:1 26780:1 26793:1 26794:1 26839:1 26867:1 26872:2 26873:1 26879:1 26890:1 26897:1 26898:1 26902:1 26932:1 26954:1 26964:1 26966:1 26967:1 26977:1 26979:1 26984:3 26991:1 26996:1 26998:1 27020:2 27049:1 27052:1 27063:1 27065:3 27075:2 27076:1 27100:3 27105:1 27115:2 27116:1 27126:1 27133:1 27134:1 27144:3 27151:1 27182:1 27186:1 27196:2 27198:1 27201:1 27202:1 27211:1 27222:2 27223:1 27224:1 27226:1 27227:5 27231:1 27233:1 27245:3 27247:1 27265:1 27276:1 27280:1 27295:1 27299:3 27300:1 27305:2 27317:1 27335:1 27336:2 27344:1 27351:1 27357:1 27358:1 27365:1 27376:1 27383:1 27390:1 27408:2 27412:1 27429:2 27436:2 27460:1 27466:1 27470:4 27471:3 27479:1 27481:1 27483:1 27484:2 27486:1 27487:4 27489:3 27490:2 27496:1 27498:4 27508:2 27511:2 27519:1 27527:2 27530:3 27539:5 27547:1 27557:1 27578:1 27580:2 27586:1 27603:2 27612:2 27616:1 27622:1 27626:2 27654:1 27655:2 27661:1 27664:3 27669:1 27674:1 27679:1 27681:2 27683:2 27687:2 27689:3 27691:2 27692:1 27705:1 27711:1 27713:1 27749:1 27754:1 27797:12 27798:1 27799:1 27815:1 27821:10 27835:1 27839:4 27842:2 27858:1 27862:1 27864:1 27871:1 27876:3 27890:2 27892:1 27912:2 27915:3 27986:2 27987:2 27994:1 28003:1 28024:1 28030:1 28046:1 28052:2 28064:1 28065:1 28069:1 28074:1 28078:1 28082:1 28094:1 28101:1 28110:1 28113:2 28115:1 28133:2 28149:1 28164:1 28169:1 28173:1 28209:1 28241:1 28275:1 28293:1 28294:1 28303:1 28308:1 28319:2 28348:3 28349:7 28369:1 28382:9 28384:1 28393:1 28394:1 28397:1 28401:1 28402:1 28413:3 28420:1 28424:2 28425:1 28430:1 28501:1 28502:1 28527:1 28533:2 28536:1 28558:1 28593:1 28614:3 28631:1 28632:5 28635:3 28636:1 28643:1 28658:1 28664:1 28670:2 28673:1 28674:2 28685:1 28694:2 28722:1 28730:1 28731:2 28736:1 28737:1 28759:4 28773:1 28776:1 28787:1 28803:2 28809:1 28833:2 28847:1 28884:1 28885:1 28926:1 28944:1 28948:6 28966:1 28969:2 28976:1 28983:1 28995:1 29005:4 29007:3 29012:2 29032:1 29042:1 29136:1 29137:2 29149:2 29152:2 29154:1 29211:1 29225:1 29226:2 29233:1 29241:1 29263:2 29266:1 29277:1 29279:3 29283:1 29287:1 29290:1 29298:2 29305:1 29313:1 29329:1 29330:1 29336:1 29339:1 29342:1 29344:1 29345:1 29346:1 29349:1 29351:2 29356:1 29359:2 29378:1 29383:1 29394:1 29419:1 29421:7 29433:1 29448:1 29450:1 29474:1 29483:1 29485:1 29496:1 29508:1 29515:8 29521:2 29529:3 29535:1 29547:1 29559:1 29562:1 29567:2 29570:1 29583:2 29605:3 29612:1 29623:1 29632:1 29643:3 29649:1 29654:1 29658:1 29671:1 29676:4 29702:1 29704:4 29711:1 29721:1 29724:1 29728:1 29729:1 29730:1 29735:1 29745:1 29775:1 29783:1 29800:1 29820:2 29822:2 29824:1 29825:1 29826:1 29831:2 29839:1 29841:1 29845:1 29847:1 29899:1 29904:1 29916:1 29927:1 29958:4 29969:1 29971:4 29972:1 29973:1 29974:3 29977:1 29995:1 29999:1 30002:2 30015:1 30035:1 30040:1 30044:1 30052:1 30059:1 30096:2 30100:2 30105:1 30142:1 30149:2 30156:2 30168:2 30169:1 30191:1 30199:1 30204:1 30213:2 30231:6 30249:1 30252:1 30267:1 30285:1 30297:1 30305:1 30306:1 30315:1 30327:2 30330:1 30331:2 30342:1 30357:1 30360:1 30370:1 30380:4 30390:1 30393:2 30420:1 30431:1 30435:1 30445:1 30454:1 30471:1 30475:4 30501:4 30504:3 30507:1 30510:2 30532:1 30548:2 30552:2 30572:2 30587:8 30589:3 30602:1 30628:1 30638:1 30653:1 30660:1 30663:1 30664:7 30683:1 30685:1 30688:1 30689:2 30697:1 30704:5 30710:1 30718:2 30730:1 30738:1 30775:1 30776:1 30789:2 30798:6 30802:4 30805:3 30809:2 30814:3 30822:1 30834:1 30835:1 30843:4 30846:1 30854:2 30864:1 30867:1 30868:2 30869:1 30875:2 30880:1 30883:1 30884:2 30892:2 30895:1 30908:2 30946:1 30956:2 30960:1 30967:2 30968:1 30971:2 30977:2 30988:1 30994:2 30999:1 31009:1 31019:1 31020:1 31031:1 31042:1 31046:3 31057:2 31062:1 31065:1 31082:1 31095:1 31101:1 31104:2 31107:1 31113:1 31125:2 31127:1 31130:1 31135:1 31142:2 31144:1 31158:2 31161:1 31172:2 31184:1 31191:1 31195:2 31197:3 31206:1 31209:1 31216:8 31221:1 31227:1 31287:1 31306:1 31315:2 31322:2 31324:1 31360:1 31363:2 31370:2 31388:1 31391:1 31392:3 31398:1 31404:1 31422:2 31440:2 31448:1 31452:3 31459:1 31461:4 31463:1 31476:1 31478:1 31480:2 31484:2 31485:3 31491:1 31494:1 31521:1 31531:5 31538:1 31543:1 31547:1 31553:1 31554:1 31566:1 31576:3 31581:1 31583:1 31590:1 31622:1 31625:1 31635:2 31640:1 31647:1 31649:1 31658:2 31665:23 31667:3 31670:2 31674:2 31679:2 31680:4 31684:1 31686:1 31688:2 31704:10 31721:3 31722:1 31727:1 31730:1 31750:1 31761:3 31763:1 31783:1 31790:1 31818:1 31821:1 31827:2 31834:5 31842:1 31846:1 31853:1 31877:7 31894:2 31897:2 31910:1 31911:1 31921:1 31932:1 31938:2 31952:1 31954:1 31960:1 31962:1 31964:1 31974:1 31976:1 31998:2 32009:1 32027:1 32035:2 32041:1 32042:1 32047:1 32053:1 32060:1 32061:1 32070:1 32083:1 32085:1 32094:1 32097:1 32103:1 32105:2 32117:1 32125:1 32128:1 32140:1 32142:1 32153:1 32171:2 32172:2 32181:1 32201:1 32207:1 32212:1 32229:1 32241:6 32244:7 32277:2 32280:3 32289:1 32299:1 32303:1 32304:1 32310:1 32311:1 32312:1 32319:1 32335:3 32348:1 32403:1 32407:1 32420:1 32433:1 32439:1 32443:7 32447:1 32451:1 32456:1 32471:4 32472:1 32476:1 32487:2 32491:4 32499:1 32548:1 32551:1 32552:2 32579:1 32619:1 32625:1 32628:1 32632:1 32650:1 32651:1 32656:2 32660:1 32661:1 32675:1 32693:3 32697:1 32713:5 32719:1 32722:1 32724:2 32750:3 32768:1 32791:1 32795:1 32803:1 32808:2 32814:2 32818:1 32824:1 32834:1 32843:1 32846:2 32885:1 32899:1 32900:2 32910:2 32934:1 32935:1 32941:3 32944:3 32956:2 32963:1 33001:2 33019:1 33025:1 33038:1 33041:6 33055:1 33056:3 33057:1 33059:1 33075:1 33083:1 33084:1 33101:1 33105:2 33108:1 33115:1 33118:1 33133:1 33138:1 33141:3 33143:2 33146:1 33148:2 33149:2 33155:9 33164:1 33167:5 33168:1 33171:5 33182:1 33198:1 33211:1 33220:3 33224:1 33225:1 33226:1 33232:1 33234:2 33267:1 33271:3
11 1:1 2:1 6:1 27:1 31:1 34:1 39:2 49:1 53:1 55:1 60:2 67:1 84:1 85:1 86:1 93:1 95:1 99:2 106:1 116:1 126:1 148:1 150:2 153:1 159:1 166:2 170:1 181:2 183:1 187:2 215:1 232:1 238:5 241:1 256:1 265:1 268:1 282:1 283:2 294:3 296:2 299:1 313:1 322:1 344:1 347:1 362:1 378:1 401:1 402:1 403:5 411:2 415:2 427:2 446:1 455:2 460:1 498:1 507:8 513:1 523:1 546:2 582:2 586:2 621:1 627:1 646:2 654:1 698:1 712:1 717:4 721:1 731:7 745:1 753:2 759:2 764:4 765:1 766:1 774:1 789:1 790:2 795:1 807:1 808:1 815:2 829:1 866:2 899:1 937:1 951:2 955:1 956:1 971:2 974:1 979:1 984:1 1000:1 1003:2 1022:3 1049:2 1053:1 1057:1 1067:2 1069:1 1070:1 1071:7 1073:1 1080:1 1083:1 1094:1 1103:1 1106:2 1117:1 1118:1 1125:1 1127:1 1130:6 1132:1 1134:1 1141:2 1142:1 1144:1 1158:1 1161:1 1165:1 1168:3 1171:2 1199:1 1204:4 1211:1 1216:3 1220:1 1236:3 1239:1 1244:1 1257:1 1262:1 1265:1 1284:1 1287:1 1309:1 1311:2 1316:1 1318:1 1321:1 1322:1 1340:1 1351:2 1376:1 1378:1 1388:1 1392:1 1393:1 1403:1 1405:2 1409:1 1413:1 1415:1 1421:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:1 1465:1 1467:1 1480:1 1481:1 1487:2 1496:2 1504:1 1509:1 1514:2 1532:1 1538:2 1539:1 1545:1 1547:1 1588:2 1624:1 1626:2 1630:1 1635:1 1645:1 1650:1 1658:1 1664:4 1683:2 1686:1 1690:2 1691:1 1719:1 1726:7 1730:11 1739:11 1745:1 1747:1 1749:2 1751:2 1771:1 1793:1 1799:1 1807:1 1808:1 1813:1 1837:4 1839:4 1841:1 1844:1 1869:1 1878:2 1883:8 1892:1 1899:1 1906:2 1917:7 1941:2 1943:1 1948:1 1955:1 1956:1 1957:1 1963:1 1966:1 1973:1 1977:2 1980:1 1999:1 2003:1 2019:2 2037:1 2041:1 2061:1 2062:1 2073:2 2078:1 2080:1 2086:1 2098:1 2113:1 2118:1 2119:1 2133:3 2135:1 2136:1 2137:3 2138:2 2141:1 2157:1 2158:1 2169:1 2177:2 2180:1 2187:1 2195:6 2209:2 2214:1 2223:1 2225:2 2237:1 2241:1 2246:1 2249:2 2255:2 2263:2 2265:1 2269:1 2279:1 2284:2 2301:2 2304:1 2317:3 2322:1 2345:1 2348:1 2355:1 2367:1 2372:1 2373:5 2381:1 2397:1 2399:1 2406:1 2419:1 2421:1 2422:1 2429:1 2437:1 2441:1 2465:1 2482:5 2496:1 2502:3 2508:1 2509:1 2519:1 2521:2 2525:1 2529:1 2530:1 2537:1 2547:1 2551:3 2552:1 2553:1 2555:5 2558:7 2559:1 2562:1 2563:2 2568:1 2570:1 2573:2 2576:2 2578:3 2579:3 2583:1 2585:1 2587:1 2613:1 2616:1 2618:3 2620:3 2623:3 2624:5 2625:2 2626:1 2630:3 2631:3 2632:1 2634:2 2635:2 2637:1 2640:2 2642:4 2647:6 2648:2 2652:1 2657:3 2662:2 2663:1 2681:1 2720:1 2732:1 2738:1 2739:1 2742:1 2753:2 2769:1 2774:1 2784:1 2788:1 2795:2 2801:3 2821:1 2831:3 2832:1 2864:1 2867:2 2868:1 2878:1 2888:1 2890:2 2896:1 2905:2 2918:2 2923:1 2934:1 2951:2 2953:1 2955:1 2962:1 2964:1 2979:1 2985:1 2992:1 2993:1 3008:2 3017:2 3030:1 3033:1 3039:1 3042:1 3049:1 3051:1 3059:1 3069:1 3071:1 3080:4 3097:1 3098:1 3106:8 3116:2 3121:2 3134:2 3145:1 3157:1 3165:3 3171:1 3173:2 3181:1 3182:2 3193:1 3195:1 3197:1 3201:2 3213:2 3223:1 3257:3 3263:2 3283:1 3284:7 3291:1 3294:1 3295:12 3302:2 3314:2 3318:2 3336:4 3350:2 3351:1 3352:1 3353:13 3360:1 3364:2 3369:1 3377:1 3379:1 3380:1 3386:1 3397:1 3408:1 3411:2 3418:2 3433:2 3464:1 3474:1 3475:1 3482:1 3504:1 3517:1 3529:1 3539:1 3549:1 3550:2 3572:1 3578:2 3588:1 3625:1 3645:1 3646:1 3683:1 3690:4 3702:3 3707:1 3721:3 3726:1 3744:1 3755:1 3758:5 3762:1 3765:1 3769:1 3772:1 3790:1 3799:1 3816:1 3821:1 3822:3 3853:1 3856:1 3857:2 3868:1 3875:1 3882:1 3917:2 3926:1 3930:4 3936:1 3939:1 3942:2 3945:1 3951:1 3968:1 3974:2 3978:1 3990:1 3992:1 4005:1 4011:1 4012:1 4018:1 4020:2 4033:1 4035:2 4040:1 4047:3 4071:1 4074:1 4105:1 4115:1 4122:1 4131:1 4153:1 4160:4 4174:5 4193:3 4195:1 4207:1 4225:2 4245:1 4247:2 4252:4 4253:13 4267:1 4271:1 4279:2 4288:4 4289:4 4291:2 4292:1 4300:2 4303:1 4306:7 4308:2 4330:1 4331:1 4332:5 4334:1 4351:3 4356:1 4361:1 4378:1 4382:1 4391:1 4405:1 4434:1 4437:1 4454:2 4456:2 4465:1 4470:1 4477:1 4484:1 4487:1 4488:1 4510:4 4511:1 4512:1 4529:2 4531:2 4533:1 4536:3 4540:2 4545:3 4547:1 4573:1 4574:2 4575:1 4581:2 4585:1 4593:1 4605:1 4609:1 4628:2 4635:1 4637:1 4663:1 4667:1 4684:1 4686:2 4704:1 4714:1 4727:1 4728:1 4730:1 4741:1 4758:1 4763:5 4767:7 4773:1 4785:1 4792:1 4793:4 4824:2 4842:2 4848:1 4863:1 4871:1 4872:5 4877:2 4888:2 4889:1 4906:1 4907:1 4924:1 4929:1 4933:1 4936:2 4951:1 4959:1 4974:1 4979:1 4980:1 4989:1 4991:1 5000:1 5020:1 5022:1 5025:1 5030:1 5033:4 5044:1 5045:2 5052:1 5066:1 5072:1 5082:1 5098:1 5106:1 5136:2 5143:5 5162:1 5163:1 5168:1 5171:1 5198:1 5212:1 5236:1 5239:1 5246:3 5269:1 5276:1 5287:4 5290:2 5299:1 5312:1 5337:3 5340:5 5365:1 5369:3 5396:1 5397:1 5462:1 5471:1 5490:2 5491:1 5516:1 5517:1 5528:1 5530:1 5536:1 5562:37 5564:3 5596:2 5610:1 5641:1 5671:1 5689:1 5690:3 5706:1 5717:3 5718:7 5719:4 5720:3 5722:1 5725:3 5730:2 5731:3 5733:4 5735:2 5740:1 5744:1 5748:1 5750:5 5752:3 5759:1 5763:1 5766:1 5770:1 5781:1 5788:1 5794:1 5811:1 5814:2 5825:2 5832:1 5844:2 5853:2 5855:1 5868:1 5873:1 5898:1 5907:1 5965:3 5975:1 6027:2 6038:1 6043:1 6084:3 6088:1 6089:1 6108:1 6115:1 6124:1 6144:3 6150:3 6165:2 6169:2 6181:1 6186:2 6224:1 6233:1 6237:1 6261:1 6283:2 6284:1 6292:1 6299:1 6300:1 6305:5 6318:1 6319:3 6322:1 6327:1 6328:1 6335:4 6345:3 6355:1 6372:2 6374:2 6382:1 6385:1 6388:1 6391:2 6395:1 6397:2 6400:1 6403:1 6407:2 6412:1 6418:2 6428:1 6431:1 6435:2 6454:1 6459:7 6469:1 6480:4 6496:1 6506:1 6508:2 6509:2 6520:1 6529:1 6531:1 6533:1 6536:1 6537:1 6540:1 6547:1 6548:1 6553:1 6558:5 6561:1 6570:1 6581:4 6584:1 6610:1 6624:1 6639:1 6688:5 6692:3 6699:1 6706:1 6707:1 6722:1 6750:1 6761:1 6773:1 6776:1 6793:1 6795:1 6806:1 6816:1 6819:3 6827:1 6843:1 6847:4 6863:2 6874:1 6884:1 6887:1 6888:2 6890:2 6897:4 6923:1 6935:1 6939:1 6944:1 6954:1 6961:6 6980:2 6983:1 6994:2 7003:1 7008:1 7012:2 7025:1 7038:1 7044:1 7059:1 7062:1 7066:1 7081:1 7087:2 7088:3 7089:2 7090:1 7091:1 7097:1 7101:1 7103:1 7114:2 7132:2 7150:1 7173:1 7190:3 7192:1 7193:1 7194:1 7196:2 7197:4 7200:4 7201:1 7204:3 7207:4 7209:3 7210:1 7211:3 7217:1 7218:9 7221:1 7222:3 7224:1 7258:1 7272:1 7279:1 7303:1 7306:1 7307:2 7365:3 7378:1 7380:1 7381:1 7389:1 7406:2 7410:1 7429:3 7435:2 7439:1 7463:1 7469:1 7497:1 7511:1 7512:1 7535:1 7539:2 7543:1 7552:1 7557:1 7559:1 7570:2 7574:1 7589:2 7599:2 7602:2 7613:1 7619:1 7628:1 7637:1 7648:3 7649:1 7659:1 7662:1 7671:4 7672:1 7676:3 7677:1 7691:1 7705:5 7707:1 7714:1 7724:1 7741:1 7745:2 7748:1 7750:3 7766:1 7776:1 7782:1 7791:1 7792:1 7794:1 7809:1 7815:1 7822:1 7825:1 7833:1 7839:2 7840:1 7855:1 7867:1 7879:3 7912:2 7913:1 7927:1 7941:2 7949:1 7954:1 7956:1 7961:1 7984:1 7988:2 7993:1 8007:2 8014:1 8016:1 8025:2 8027:2 8043:1 8045:1 8054:1 8064:1 8075:10 8089:2 8090:1 8105:2 8127:1 8129:1 8139:1 8143:4 8150:1 8155:1 8167:1 8168:1 8189:1 8196:1 8209:1 8216:1 8219:1 8230:1 8237:1 8247:1 8248:1 8258:2 8273:1 8277:4 8283:1 8299:1 8302:1 8328:3 8338:1 8340:1 8347:1 8387:1 8389:4 8413:1 8417:4 8426:1 8432:4 8439:1 8446:1 8454:1 8474:1 8478:3 8491:1 8494:1 8498:1 8499:1 8504:1 8531:1 8560:1 8562:1 8567:1 8570:1 8573:1 8575:1 8582:1 8585:1 8593:1 8599:1 8609:4 8611:1 8615:1 8617:1 8619:1 8624:5 8630:3 8631:7 8633:5 8653:1 8654:2 8659:1 8663:1 8684:1 8688:2 8689:1 8702:47 8716:1 8717:1 8725:1 8726:10 8728:9 8734:2 8748:1 8767:1 8783:1 8793:1 8796:2 8797:1 8810:1 8815:2 8816:2 8817:1 8818:1 8848:1 8860:1 8864:2 8874:2 8880:1 8886:1 8887:1 8890:1 8891:1 8901:1 8906:1 8909:2 8923:1 8930:1 8932:2 8935:8 8957:1 8960:1 8974:1 8982:6 8987:1 8992:1 9025:1 9048:2 9059:1 9094:2 9127:1 9135:1 9143:1 9157:7 9168:2 9179:1 9183:1 9186:1 9203:3 9209:1 9221:2 9222:1 9231:1 9232:19 9264:1 9267:1 9276:1 9279:1 9289:1 9295:1 9298:1 9299:1 9311:1 9324:1 9332:1 9333:1 9335:1 9339:1 9340:1 9381:1 9394:3 9425:1 9430:1 9435:1 9441:1 9466:1 9467:1 9470:1 9473:1 9484:2 9493:2 9507:2 9508:1 9529:1 9540:2 9541:1 9542:1 9544:2 9561:1 9563:1 9623:2 9630:1 9632:2 9633:1 9634:4 9638:1 9640:1 9642:2 9644:2 9646:1 9648:3 9649:2 9654:4 9661:1 9665:1 9669:1 9675:1 9680:1 9688:1 9690:1 9697:3 9705:1 9742:1 9743:1 9744:1 9746:1 9770:1 9781:1 9788:1 9806:1 9807:1 9810:2 9815:1 9823:1 9826:1 9833:1 9836:1 9842:3 9882:1 9901:3 9907:1 9923:1 9931:1 9937:2 9942:1 9945:2 9952:1 9965:2 9974:1 9976:3 9982:1 9988:1 9994:1 9999:1 10008:2 10015:1 10022:1 10027:3 10035:1 10054:1 10070:1 10087:1 10092:1 10095:2 10107:1 10117:1 10121:1 10124:1 10126:1 10138:1 10142:1 10150:2 10152:2 10159:1 10161:2 10171:1 10197:1 10209:2 10210:2 10232:1 10265:1 10275:1 10282:1 10291:1 10294:1 10307:3 10331:1 10332:1 10334:1 10337:1 10338:1 10340:1 10345:8 10349:1 10362:1 10367:1 10371:1 10373:1 10374:2 10376:1 10385:1 10389:1 10407:1 10417:1 10422:1 10430:1 10434:5 10435:1 10436:1 10445:1 10450:1 10454:1 10456:1 10459:1 10465:1 10479:1 10497:1 10502:1 10517:2 10518:1 10522:2 10524:1 10533:2 10540:1 10549:1 10554:1 10570:1 10575:1 10583:1 10584:2 10586:1 10591:1 10598:1 10602:1 10619:1 10621:1 10623:1 10627:1 10643:2 10648:1 10666:2 10695:1 10709:5 10732:1 10747:1 10752:2 10764:1 10765:1 10792:1 10800:1 10804:1 10806:1 10807:2 10822:1 10828:2 10831:1 10846:1 10867:2 10876:1 10877:1 10886:1 10892:1 10893:1 10913:2 10948:10 10969:1 10970:1 10972:1 10973:4 10996:1 10997:2 10999:1 11008:1 11011:1 11020:1 11029:1 11030:1 11052:1 11063:2 11067:1 11079:1 11094:2 11119:2 11133:4 11141:1 11163:3 11167:1 11170:2 11171:1 11172:1 11175:1 11178:2 11188:3 11200:1 11201:1 11208:1 11210:4 11214:3 11215:1 11218:1 11222:1 11225:1 11226:1 11231:2 11232:2 11234:2 11239:1 11242:2 11265:1 11266:2 11272:1 11276:4 11288:2 11291:1 11302:1 11308:1 11309:1 11323:2 11324:1 11331:1 11339:1 11342:1 11356:1 11362:1 11376:6 11383:2 11415:1 11421:1 11431:1 11433:1 11438:1 11445:1 11448:2 11450:1 11451:1 11456:1 11464:1 11488:1 11492:1 11499:1 11517:2 11526:1 11550:1 11573:1 11575:1 11584:1 11588:1 11594:1 11601:1 11603:1 11607:4 11611:3 11637:2 11656:1 11660:1 11674:1 11677:3 11690:1 11695:1 11697:1 11701:3 11717:1 11730:2 11741:1 11744:1 11778:1 11784:5 11795:1 11796:1 11811:1 11820:1 11822:7 11830:1 11841:1 11842:1 11846:1 11847:1 11854:1 11855:1 11858:1 11860:1 11895:1 11899:1 11906:3 11912:1 11914:3 11915:1 11930:1 11931:1 11933:1 11949:2 11955:1 11966:1 12002:1 12005:1 12015:5 12023:1 12026:2 12031:1 12039:4 12042:1 12047:1 12050:3 12099:1 12109:1 12112:1 12145:1 12149:1 12154:1 12162:1 12169:3 12197:1 12213:1 12214:1 12255:2 12266:1 12274:1 12275:1 12284:1 12307:2 12310:1 12319:1 12325:1 12327:3 12329:5 12333:1 12335:1 12336:4 12337:1 12339:1 12350:1 12352:2 12354:1 12356:1 12361:1 12369:1 12377:1 12378:2 12379:1 12389:1 12406:1 12427:1 12434:2 12438:1 12448:1 12461:1 12472:1 12475:1 12476:1 12477:2 12483:1 12487:1 12501:1 12526:1 12545:1 12551:1 12552:1 12559:1 12580:1 12593:1 12596:1 12604:1 12607:1 12618:4 12630:2 12640:1 12647:1 12649:1 12672:1 12682:1 12733:1 12741:1 12743:1 12762:1 12764:1 12766:1 12770:1 12775:1 12776:1 12783:1 12789:1 12794:1 12805:1 12811:3 12814:2 12819:2 12836:1 12845:1 12862:3 12865:12 12867:1 12876:1 12877:1 12893:1 12896:1 12902:1 12910:2 12915:1 12918:1 12923:1 12928:2 12929:1 12933:1 12935:3 12936:2 12952:1 12954:1 12970:1 12977:2 12988:3 12994:1 13000:1 13005:1 13009:1 13012:1 13015:1 13018:3 13027:1 13032:1 13050:3 13061:2 13064:1 13073:1 13081:1 13085:3 13088:7 13089:2 13094:2 13111:1 13116:1 13128:8 13135:1 13137:1 13138:2 13142:4 13143:1 13146:1 13148:1 13149:1 13150:2 13151:7 13152:1 13153:1 13156:1 13162:7 13168:1 13169:1 13192:1 13196:1 13202:1 13220:2 13228:1 13231:1 13239:2 13244:1 13254:2 13264:2 13285:1 13286:1 13294:2 13296:1 13302:1 13308:1 13320:7 13365:1 13391:1 13408:1 13410:3 13415:1 13423:2 13427:1 13429:1 13434:1 13443:1 13448:2 13456:1 13461:1 13463:1 13473:4 13476:1 13480:2 13486:1 13510:1 13515:2 13517:3 13527:2 13552:2 13553:2 13556:1 13590:1 13592:1 13600:1 13606:2 13608:1 13611:1 13616:2 13621:1 13649:1 13653:2 13654:3 13662:1 13674:1 13684:3 13685:4 13690:1 13700:2 13718:3 13738:1 13742:1 13745:1 13750:3 13778:1 13805:1 13815:1 13821:3 13826:2 13830:1 13848:1 13863:2 13873:6 13874:1 13895:2 13896:3 13899:1 13921:1 13930:1 13933:1 13935:1 13939:1 13940:1 13973:1 13976:2 14004:2 14007:1 14011:1 14018:1 14021:1 14030:1 14037:1 14039:1 14055:1 14059:1 14061:2 14081:2 14101:1 14102:2 14119:1 14125:1 14146:1 14149:1 14162:4 14180:1 14183:2 14207:1 14210:1 14214:2 14242:1 14252:1 14256:2 14267:1 14281:1 14318:2 14319:1 14341:1 14345:10 14353:1 14356:2 14361:1 14370:3 14376:2 14380:1 14384:1 14402:1 14409:1 14410:1 14416:1 14421:1 14436:2 14441:1 14443:1 14449:1 14468:1 14471:1 14472:1 14473:5 14480:2 14483:3 14489:2 14497:1 14518:2 14520:1 14541:1 14545:1 14572:1 14577:1 14581:1 14583:1 14589:2 14592:1 14605:1 14620:1 14633:1 14640:1 14652:1 14658:2 14688:2 14697:1 14706:1 14753:1 14781:1 14793:5 14804:1 14806:1 14831:1 14841:1 14854:3 14858:1 14859:1 14867:2 14870:2 14873:1 14877:7 14881:4 14883:1 14891:1 14895:1 14896:1 14904:5 14907:8 14915:1 14921:3 14935:2 14940:1 14942:2 14945:1 14949:3 14957:1 14958:1 14959:1 14960:1 14975:2 14979:1 14980:1 14999:1 15005:1 15016:1 15019:2 15028:1 15033:2 15039:9 15040:1 15047:2 15054:1 15059:1 15066:1 15075:1 15079:2 15082:1 15087:1 15122:1 15125:4 15131:1 15160:2 15161:1 15187:1 15191:1 15212:1 15215:1 15216:1 15217:5 15236:1 15246:1 15251:1 15255:1 15259:1 15275:1 15278:1 15281:2 15293:1 15311:1 15322:1 15325:3 15333:2 15336:1 15361:1 15367:2 15374:2 15381:2 15386:1 15410:1 15429:1 15438:1 15443:1 15476:1 15477:3 15480:1 15483:2 15487:1 15488:1 15489:2 15496:1 15508:2 15513:1 15519:1 15520:1 15523:1 15543:1 15551:1 15555:1 15574:3 15616:7 15622:1 15625:2 15645:1 15662:1 15664:1 15666:2 15680:2 15704:1 15725:1 15728:5 15734:5 15740:2 15749:2 15780:2 15811:2 15820:2 15840:2 15855:1 15861:1 15864:1 15900:2 15905:1 15923:1 15929:2 15934:1 15945:1 15955:1 15959:1 15960:1 15962:1 15974:4 15986:1 15990:1 15993:1 15996:2 15997:1 16000:3 16021:1 16026:1 16030:1 16033:1 16040:3 16042:1 16043:1 16046:1 16059:1 16063:1 16067:1 16071:1 16073:1 16092:1 16098:4 16114:1 16119:1 16136:1 16144:1 16145:1 16150:1 16152:1 16178:2 16183:1 16187:1 16189:1 16197:2 16198:1 16208:1 16214:1 16226:1 16227:4 16229:1 16236:1 16237:1 16254:1 16266:1 16270:1 16273:1 16284:1 16289:1 16321:1 16330:5 16347:1 16350:2 16351:1 16355:1 16362:1 16390:2 16393:2 16407:1 16411:1 16422:1 16427:2 16428:1 16433:2 16448:1 16450:1 16451:1 16457:1 16463:1 16484:4 16488:1 16508:3 16523:1 16534:1 16538:1 16556:2 16559:2 16566:5 16598:1 16606:1 16608:1 16630:1 16634:1 16642:1 16650:2 16655:1 16674:2 16678:1 16684:5 16687:1 16688:1 16693:1 16694:1 16721:2 16723:1 16739:1 16741:1 16753:1 16762:1 16782:8 16783:2 16787:1 16789:1 16793:1 16831:1 16832:4 16835:1 16842:1 16846:3 16848:1 16860:1 16884:2 16904:1 16922:1 16936:4 16940:2 16942:1 16944:1 16948:1 16971:3 16973:3 16984:1 16988:3 16990:1 16999:1 17012:2 17023:1 17042:1 17045:4 17046:1 17048:1 17053:2 17056:2 17061:1 17063:1 17098:2 17103:1 17105:1 17127:1 17140:1 17155:1 17176:1 17187:1 17194:3 17203:1 17214:1 17219:1 17224:1 17226:1 17246:1 17251:3 17269:1 17289:2 17293:1 17297:1 17314:1 17317:1 17318:1 17324:2 17334:1 17370:1 17379:1 17389:1 17406:1 17420:1 17423:14 17433:2 17437:1 17448:1 17479:2 17489:2 17499:1 17503:2 17514:1 17516:1 17528:3 17531:1 17539:1 17543:1 17567:1 17571:1 17576:1 17581:1 17586:2 17596:1 17598:1 17610:1 17648:1 17661:3 17673:1 17681:1 17689:13 17694:1 17695:1 17698:1 17699:3 17700:3 17709:1 17710:3 17714:1 17715:1 17718:1 17722:1 17729:5 17731:2 17740:1 17748:1 17752:1 17756:1 17758:1 17767:1 17771:1 17775:2 17776:1 17783:1 17784:2 17805:5 17824:1 17829:1 17830:2 17857:3 17860:2 17866:1 17871:1 17876:1 17878:1 17880:1 17884:1 17888:5 17930:1 17951:1 17953:4 17955:2 17989:1 18008:1 18009:1 18010:1 18016:1 18049:3 18053:4 18074:4 18079:1 18108:2 18111:1 18114:1 18141:1 18148:1 18157:3 18160:1 18187:1 18195:12 18199:1 18214:3 18220:1 18226:1 18227:1 18234:2 18236:1 18243:2 18247:1 18258:1 18260:1 18273:1 18281:2 18289:2 18301:1 18302:1 18306:1 18308:2 18313:1 18315:1 18319:4 18321:2 18322:1 18327:1 18329:1 18330:1 18332:3 18340:2 18341:1 18342:5 18344:1 18351:1 18352:3 18372:1 18375:1 18401:1 18416:1 18417:2 18426:1 18492:3 18527:2 18537:1 18546:1 18561:1 18584:1 18619:1 18621:1 18635:2 18672:1 18683:1 18684:1 18693:1 18697:1 18699:1 18702:1 18708:1 18716:2 18717:1 18727:1 18732:1 18733:1 18738:1 18739:2 18743:1 18764:1 18777:2 18785:1 18794:1 18799:3 18807:1 18808:2 18821:1 18842:3 18879:1 18896:1 18900:1 18908:1 18911:3 18919:5 18928:1 18949:1 18966:1 18967:1 18978:1 18987:1 19000:1 19005:1 19024:1 19029:3 19030:1 19035:1 19039:1 19043:1 19049:1 19050:1 19059:7 19062:4 19069:2 19081:1 19089:2 19103:2 19108:1 19117:1 19126:1 19135:1 19139:5 19155:1 19165:3 19169:2 19177:1 19182:1 19200:4 19207:2 19208:1 19209:1 19212:1 19213:1 19216:3 19233:2 19246:1 19248:2 19261:2 19262:1 19276:1 19295:1 19296:1 19320:10 19329:1 19333:2 19345:1 19349:1 19351:1 19352:1 19354:1 19357:3 19362:1 19372:1 19384:1 19398:2 19417:1 19432:1 19443:1 19444:2 19448:1 19452:1 19465:2 19471:1 19493:1 19503:1 19508:2 19509:1 19526:1 19532:1 19559:1 19566:1 19567:1 19583:1 19585:1 19622:1 19628:1 19634:1 19637:1 19643:1 19655:1 19659:1 19663:2 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19758:1 19763:3 19772:5 19774:1 19776:1 19781:2 19783:3 19784:1 19794:1 19797:1 19809:1 19816:1 19819:1 19843:3 19849:2 19850:1 19867:1 19872:1 19897:1 19904:1 19910:1 19919:1 19936:1 19951:2 19962:1 19965:1 19966:1 20000:1 20007:2 20008:1 20020:2 20031:1 20032:2 20045:1 20077:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:2 20123:2 20124:7 20128:4 20136:2 20142:1 20143:1 20146:2 20163:1 20166:3 20174:1 20180:1 20181:1 20183:1 20200:1 20202:1 20219:1 20220:1 20225:3 20230:1 20231:1 20237:1 20239:1 20241:1 20243:2 20286:1 20287:1 20292:1 20294:1 20300:2 20309:2 20341:1 20360:1 20373:1 20391:1 20394:2 20400:1 20405:1 20406:1 20407:2 20412:1 20416:1 20437:1 20441:1 20454:1 20458:1 20460:1 20477:1 20492:2 20499:1 20503:1 20508:1 20514:1 20516:1 20517:1 20518:1 20524:1 20525:1 20540:1 20548:1 20561:1 20569:1 20635:4 20645:1 20673:1 20681:2 20682:1 20692:2 20697:2 20706:1 20709:1 20742:3 20760:1 20761:1 20792:1 20803:7 20814:2 20815:3 20831:1 20851:1 20876:1 20893:2 20894:2 20895:1 20900:2 20906:1 20929:2 20936:1 20942:2 20949:1 20951:1 20970:1 20974:2 20983:3 20996:2 21003:2 21004:2 21010:1 21016:2 21041:1 21047:3660 21068:3 21070:1 21079:2 21087:1 21096:1 21109:1 21164:1 21166:1 21173:2 21178:1 21205:1 21227:1 21234:1 21241:2 21260:1 21278:1 21279:4 21291:1 21292:4 21294:1 21295:2 21308:1 21355:1 21362:1 21372:1 21374:1 21378:1 21382:1 21398:1 21401:3 21408:1 21419:1 21421:1 21431:1 21444:1 21449:2 21464:1 21466:2 21476:1 21478:1 21487:1 21512:1 21515:3 21518:2 21520:1 21532:1 21539:1 21551:1 21566:1 21571:1 21585:1 21601:1 21602:1 21609:1 21630:1 21644:1 21689:3 21692:1 21709:2 21729:1 21735:4 21790:1 21797:1 21801:1 21802:1 21806:1 21808:1 21812:1 21813:1 21817:1 21821:2 21827:3 21833:2 21843:1 21845:1 21856:2 21861:2 21863:1 21874:1 21877:2 21883:1 21895:2 21907:1 21918:2 21921:7 21952:1 21953:8 21959:1 21960:1 21961:1 21966:2 21976:1 21992:1 22001:2 22020:3 22025:3 22029:2 22032:2 22039:1 22041:1 22043:2 22045:2 22072:4 22082:1 22095:3 22107:2 22119:1 22127:1 22138:1 22143:1 22157:1 22162:1 22173:3 22174:1 22178:3 22181:1 22214:1 22227:1 22235:1 22240:1 22245:3 22262:1 22267:1 22271:1 22281:2 22294:1 22301:5 22306:1 22311:1 22318:1 22325:1 22333:1 22344:1 22351:1 22364:1 22370:1 22375:1 22382:1 22404:5 22415:1 22423:5 22459:1 22462:1 22479:2 22483:1 22493:1 22495:1 22503:2 22504:1 22508:2 22526:2 22530:1 22540:1 22545:1 22548:3 22553:1 22562:1 22565:2 22569:1 22572:1 22573:2 22583:1 22586:1 22603:1 22615:1 22617:1 22626:3 22638:1 22644:2 22655:1 22669:1 22681:4 22688:2 22690:1 22698:1 22713:1 22737:3 22740:1 22750:1 22766:2 22774:1 22776:1 22791:1 22793:1 22794:1 22803:1 22815:5 22819:1 22824:1 22829:1 22833:1 22834:1 22835:1 22837:1 22845:1 22851:1 22852:1 22870:7 22871:1 22877:2 22889:2 22952:1 22954:1 22966:1 22984:2 22992:1 23002:1 23004:1 23005:2 23036:2 23046:1 23055:1 23059:1 23100:1 23108:3 23113:1 23114:1 23116:1 23129:1 23147:2 23156:2 23160:4 23163:1 23164:1 23169:4 23172:1 23175:1 23183:1 23229:1 23243:1 23256:1 23257:1 23277:1 23279:1 23281:1 23286:1 23288:1 23290:1 23330:1 23353:1 23359:1 23363:1 23367:1 23373:1 23381:1 23383:1 23390:1 23415:2 23416:1 23419:1 23432:1 23434:1 23444:4 23447:2 23449:1 23453:1 23456:1 23463:1 23471:1 23490:5 23504:2 23518:1 23521:2 23522:1 23523:1 23527:2 23529:2 23532:2 23544:4 23550:3 23556:1 23560:1 23561:1 23570:1 23572:1 23574:1 23580:3 23583:1 23585:1 23596:1 23609:1 23612:1 23617:1 23622:2 23626:1 23644:2 23649:2 23656:1 23657:1 23658:1 23663:1 23669:2 23723:2 23728:1 23729:1 23736:1 23737:1 23745:8 23746:1 23751:1 23752:2 23756:1 23765:1 23770:1 23773:1 23782:1 23790:1 23800:1 23802:2 23831:1 23837:1 23852:1 23853:1 23858:1 23859:1 23861:1 23863:1 23891:1 23898:1 23899:1 23901:1 23912:1 23917:1 23919:2 23927:1 23931:1 23943:1 23949:1 23951:1 23953:2 23955:2 23983:1 23985:1 23991:1 24009:1 24013:1 24024:5 24032:1 24039:1 24057:3 24058:1 24074:1 24078:1 24082:2 24090:1 24093:1 24098:1 24099:1 24113:2 24114:1 24133:1 24138:1 24143:1 24144:1 24151:2 24166:2 24168:1 24194:1 24195:1 24197:1 24198:1 24201:1 24205:3 24206:2 24207:1 24208:1 24214:1 24216:1 24217:1 24218:1 24222:1 24225:1 24226:3 24229:1 24241:1 24242:1 24250:1 24255:2 24262:2 24263:3 24274:1 24276:2 24279:1 24289:1 24298:1 24308:1 24314:1 24319:1 24321:1 24323:1 24334:1 24358:1 24359:2 24366:6 24368:1 24369:1 24373:2 24379:1 24383:2 24386:1 24394:2 24398:1 24401:1 24417:1 24418:1 24425:1 24427:1 24442:1 24449:1 24467:1 24474:1 24477:1 24478:3 24487:1 24493:6 24502:1 24504:1 24527:1 24541:1 24542:5 24550:2 24578:1 24587:1 24601:3 24618:1 24636:1 24639:1 24643:2 24647:2 24650:3 24660:1 24677:1 24678:1 24681:1 24685:3 24687:1 24690:6 24692:3 24695:1 24698:1 24706:2 24727:1 24742:1 24775:1 24788:2 24792:1 24805:4 24840:1 24841:1 24847:1 24854:1 24857:1 24858:1 24860:1 24874:1 24887:1 24904:1 24907:1 24916:3 24921:1 24925:2 24933:3 24936:1 24937:1 24943:1 24957:1 24959:1 24966:1 24969:1 24972:2 24974:1 24975:1 24983:1 24985:2 24990:3 25003:1 25011:1 25015:1 25017:1 25021:2 25022:1 25027:1 25032:1 25034:1 25036:1 25041:1 25048:1 25064:1 25072:1 25077:2 25093:1 25097:3 25100:1 25114:1 25115:2 25127:1 25133:1 25134:2 25139:2 25149:1 25156:3 25167:4 25170:1 25173:1 25183:1 25184:2 25189:1 25191:1 25197:1 25221:1 25224:9 25233:3 25238:1 25245:2 25298:1 25300:1 25306:5 25337:6 25343:1 25346:1 25356:2 25357:1 25364:3 25366:1 25367:4 25369:1 25371:1 25388:1 25401:1 25413:1 25415:1 25416:1 25423:1 25431:2 25434:2 25437:1 25454:1 25464:1 25474:4 25494:5 25508:1 25510:1 25513:2 25515:1 25516:3 25526:2 25545:4 25548:1 25552:4 25557:1 25561:3 25562:1 25569:1 25582:3 25590:1 25595:2 25599:2 25600:1 25621:1 25623:1 25624:1 25635:4 25646:1 25659:3 25662:2 25666:1 25669:5 25670:1 25674:5 25678:3 25713:1 25714:1 25724:1 25726:1 25732:1 25798:1 25810:1 25831:1 25834:1 25841:1 25850:1 25865:2 25878:1 25883:1 25884:1 25887:1 25897:1 25916:1 25920:1 25958:1 25962:1 25967:1 26002:3 26017:1 26019:3 26025:1 26031:1 26032:1 26035:1 26036:1 26046:1 26047:1 26056:4 26062:1 26073:1 26084:1 26088:1 26106:1 26110:2 26133:1 26150:1 26158:1 26160:1 26188:2 26195:1 26201:1 26217:1 26218:1 26223:1 26239:1 26243:1 26253:1 26255:1 26263:2 26269:1 26270:3 26278:2 26279:1 26286:4 26314:1 26320:1 26324:2 26328:1 26329:2 26331:1 26334:1 26354:2 26364:1 26367:1 26390:1 26403:1 26405:1 26407:1 26411:1 26423:2 26434:1 26435:1 26437:4 26442:2 26445:2 26459:1 26481:1 26482:1 26488:1 26490:3 26502:7 26530:1 26549:1 26550:1 26557:2 26565:1 26577:1 26581:1 26582:1 26584:2 26605:1 26606:1 26608:1 26646:2 26665:1 26675:1 26679:1 26681:1 26685:1 26686:1 26689:3 26705:1 26718:1 26726:1 26729:1 26762:1 26768:1 26780:1 26785:1 26793:1 26794:1 26839:1 26850:1 26867:1 26872:2 26873:1 26879:1 26890:1 26897:1 26898:1 26902:1 26932:1 26954:1 26964:1 26966:1 26967:1 26977:1 26979:1 26984:3 26991:1 26996:1 26998:1 27020:2 27049:1 27052:1 27063:1 27065:3 27075:2 27076:1 27100:3 27105:1 27115:2 27116:1 27126:1 27133:1 27134:1 27144:3 27151:1 27182:1 27186:1 27196:2 27198:1 27201:1 27202:1 27211:1 27222:2 27223:2 27224:1 27226:1 27227:6 27231:1 27233:1 27245:3 27247:1 27265:1 27276:1 27280:1 27295:1 27299:3 27300:1 27305:2 27317:1 27335:1 27336:3 27344:1 27351:1 27357:1 27358:1 27365:1 27376:1 27383:1 27390:1 27408:2 27412:1 27429:2 27436:2 27460:1 27466:1 27470:4 27471:3 27479:1 27481:1 27483:1 27484:2 27486:1 27487:4 27488:1 27489:3 27490:2 27496:1 27498:4 27508:2 27511:2 27519:1 27527:2 27530:3 27539:5 27547:1 27557:1 27578:1 27580:2 27586:1 27603:2 27608:1 27612:2 27616:1 27622:1 27626:2 27654:1 27655:2 27661:1 27664:3 27669:1 27674:1 27679:1 27681:2 27683:2 27687:2 27689:3 27691:2 27692:1 27705:1 27711:1 27713:1 27749:1 27754:1 27797:12 27798:1 27799:1 27815:1 27821:10 27835:1 27839:4 27842:2 27854:1 27858:1 27862:1 27864:1 27871:1 27876:3 27890:2 27892:1 27912:2 27915:3 27986:2 27987:2 27994:1 28003:1 28024:1 28030:1 28046:1 28052:2 28064:1 28065:1 28069:1 28074:1 28078:1 28082:1 28094:1 28101:1 28110:1 28113:2 28115:1 28133:2 28149:1 28164:1 28169:1 28173:1 28209:1 28224:1 28241:1 28275:1 28293:1 28294:1 28303:1 28308:1 28319:2 28348:3 28349:8 28369:1 28382:9 28384:1 28393:1 28394:1 28397:1 28401:1 28402:1 28413:3 28420:1 28424:2 28425:1 28430:1 28501:1 28502:1 28527:1 28533:2 28536:1 28558:1 28593:1 28614:3 28617:1 28631:1 28632:5 28635:3 28636:1 28643:1 28651:1 28658:1 28664:1 28670:2 28673:1 28674:2 28685:1 28694:2 28722:1 28730:1 28731:2 28736:1 28737:1 28759:4 28773:1 28776:1 28787:1 28803:2 28809:1 28833:2 28847:1 28884:1 28885:1 28926:1 28944:1 28948:6 28966:1 28969:2 28976:1 28983:1 28995:1 29005:4 29007:3 29012:2 29021:1 29032:1 29042:1 29136:1 29137:2 29149:2 29152:2 29154:1 29203:1 29211:1 29225:1 29226:2 29233:1 29241:1 29263:2 29266:1 29277:1 29279:3 29283:1 29287:1 29290:1 29298:2 29305:1 29313:1 29329:1 29330:1 29336:1 29339:1 29342:1 29344:1 29345:1 29346:1 29349:1 29351:2 29356:1 29359:2 29378:1 29383:1 29394:1 29419:1 29421:7 29433:1 29448:1 29450:2 29474:1 29483:1 29485:1 29496:1 29508:1 29515:8 29521:2 29529:3 29535:1 29547:1 29559:1 29562:1 29567:2 29570:1 29578:1 29583:2 29605:3 29612:1 29623:1 29632:1 29643:3 29649:1 29654:1 29658:1 29671:1 29676:4 29697:1 29702:1 29704:4 29711:1 29721:1 29724:1 29728:1 29729:1 29730:1 29735:1 29745:1 29775:1 29783:1 29800:1 29820:2 29822:2 29824:1 29825:1 29826:1 29831:2 29839:1 29841:1 29845:1 29847:1 29899:1 29904:1 29916:2 29927:1 29958:4 29969:1 29971:4 29972:1 29973:1 29974:3 29977:1 29995:1 29999:1 30002:2 30015:1 30035:1 30040:1 30044:1 30052:1 30059:1 30096:2 30100:2 30105:1 30142:1 30149:2 30156:2 30168:2 30169:1 30180:1 30191:1 30199:1 30204:1 30213:2 30231:6 30249:1 30252:1 30267:1 30285:1 30297:1 30305:1 30306:1 30315:1 30327:2 30330:1 30331:2 30342:1 30357:1 30360:1 30370:1 30380:5 30390:1 30393:2 30420:1 30431:1 30435:1 30445:1 30454:1 30471:1 30475:4 30501:4 30504:3 30507:1 30510:2 30532:1 30548:2 30552:2 30572:2 30587:8 30589:3 30602:1 30606:1 30628:1 30638:1 30653:1 30660:1 30663:1 30664:7 30683:1 30685:1 30688:1 30689:2 30697:1 30704:5 30710:1 30718:2 30730:1 30738:1 30775:1 30776:1 30789:2 30798:6 30802:4 30805:3 30809:2 30814:3 30822:1 30834:1 30835:1 30843:4 30846:1 30854:2 30864:1 30867:1 30868:2 30869:1 30875:2 30880:1 30883:1 30884:2 30892:2 30895:1 30908:2 30910:1 30946:2 30956:2 30960:1 30967:2 30968:1 30971:2 30977:2 30988:1 30994:2 30999:1 31009:1 31019:1 31020:1 31031:1 31042:1 31046:3 31057:2 31062:1 31065:1 31074:1 31082:1 31095:1 31101:1 31104:2 31107:1 31113:1 31125:2 31127:1 31130:1 31135:1 31142:2 31144:1 31158:2 31161:1 31172:2 31184:2 31191:1 31195:2 31197:3 31206:1 31209:1 31216:8 31221:1 31227:1 31235:1 31287:1 31306:1 31315:2 31322:2 31324:1 31360:2 31363:2 31370:2 31388:1 31391:1 31392:3 31398:1 31404:1 31422:2 31440:3 31448:1 31452:3 31459:1 31461:4 31463:1 31476:1 31478:1 31480:2 31484:2 31485:3 31491:1 31494:1 31521:1 31531:5 31538:1 31543:1 31547:1 31553:1 31554:1 31566:1 31576:3 31581:1 31583:1 31590:1 31622:1 31625:1 31635:2 31640:1 31647:1 31649:1 31658:2 31665:23 31667:3 31670:2 31674:2 31679:2 31680:4 31684:1 31686:1 31688:2 31704:10 31721:3 31722:1 31727:1 31730:1 31750:1 31761:3 31763:1 31783:1 31790:1 31806:1 31818:1 31821:1 31827:2 31834:6 31842:1 31846:1 31853:1 31877:7 31894:2 31897:2 31910:1 31911:1 31921:1 31932:1 31938:2 31952:1 31954:1 31960:1 31962:1 31964:1 31974:1 31976:1 31998:2 32009:1 32027:1 32035:2 32041:1 32042:1 32047:1 32053:1 32060:1 32061:1 32070:1 32083:1 32085:1 32094:1 32097:1 32103:1 32105:2 32117:1 32125:1 32128:1 32140:1 32142:1 32153:1 32171:2 32172:2 32181:1 32201:1 32207:1 32212:1 32229:1 32241:6 32244:7 32277:2 32280:3 32289:1 32299:1 32303:1 32304:1 32310:1 32311:2 32312:1 32319:1 32335:3 32348:1 32403:1 32407:1 32420:1 32433:1 32439:1 32443:7 32447:1 32451:1 32456:1 32471:4 32472:1 32476:1 32487:2 32491:4 32499:1 32548:1 32551:1 32552:2 32579:1 32619:1 32625:1 32628:1 32632:1 32650:1 32651:1 32656:2 32660:1 32661:1 32675:1 32693:3 32697:1 32713:5 32719:1 32722:1 32724:2 32750:3 32768:1 32791:1 32795:1 32803:1 32808:2 32814:2 32818:1 32824:1 32834:1 32843:1 32846:2 32885:1 32899:1 32900:2 32910:2 32934:1 32935:1 32941:3 32944:3 32956:2 32963:1 33001:3 33019:1 33025:1 33038:1 33041:7 33055:1 33056:3 33057:1 33059:1 33075:1 33083:1 33084:1 33101:1 33105:2 33108:1 33115:1 33118:1 33133:1 33138:1 33141:3 33143:2 33146:1 33148:2 33149:2 33155:9 33156:1 33164:2 33167:5 33168:1 33171:5 33182:1 33198:1 33211:1 33220:3 33224:1 33225:1 33226:1 33232:1 33234:2 33267:1 33271:3
11 1:1 2:1 6:1 27:1 31:1 34:1 39:2 49:1 53:1 55:1 60:2 67:1 84:1 85:1 86:1 93:1 95:1 99:2 106:1 116:1 126:1 148:1 150:2 153:1 159:1 166:2 170:1 181:2 183:1 187:2 215:1 232:1 238:5 241:1 256:1 265:1 268:1 282:1 283:2 294:3 296:2 299:1 313:1 322:1 344:1 347:1 357:1 362:1 378:1 401:1 402:1 403:5 411:2 415:2 427:2 446:1 455:2 460:1 498:1 507:8 513:1 523:1 546:2 582:2 586:3 621:1 627:1 646:2 654:1 698:1 712:1 717:4 721:1 731:7 745:1 753:2 759:2 764:4 765:1 766:1 774:1 789:1 790:2 795:1 807:1 808:1 815:2 829:1 866:2 899:1 937:1 951:2 955:1 956:1 971:2 974:1 979:1 984:1 1000:1 1003:2 1022:3 1049:2 1053:1 1057:1 1067:2 1069:1 1070:1 1071:7 1073:1 1080:1 1082:1 1083:1 1094:1 1103:1 1106:2 1117:1 1118:1 1125:1 1127:1 1130:6 1132:1 1134:1 1141:2 1142:1 1144:1 1158:2 1161:1 1165:1 1168:3 1171:2 1199:1 1204:4 1211:1 1216:3 1218:1 1220:1 1236:3 1239:1 1244:1 1257:1 1262:1 1265:1 1284:1 1287:1 1309:1 1311:2 1316:1 1318:1 1321:1 1322:1 1340:1 1351:2 1376:1 1378:1 1388:1 1392:1 1393:1 1403:1 1405:2 1409:1 1413:1 1415:1 1421:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:1 1465:1 1467:1 1480:1 1481:1 1487:2 1496:2 1504:1 1509:1 1514:2 1532:1 1538:2 1539:1 1545:1 1547:1 1588:2 1624:1 1626:2 1630:1 1635:1 1645:1 1650:1 1658:1 1664:4 1683:2 1686:1 1690:2 1691:1 1719:1 1726:7 1730:11 1739:11 1745:1 1747:1 1749:2 1751:2 1771:1 1793:1 1799:1 1807:1 1808:1 1813:1 1837:4 1839:4 1841:1 1844:1 1869:1 1878:2 1883:8 1884:1 1892:1 1899:1 1906:2 1917:7 1941:2 1943:1 1948:1 1955:1 1956:1 1957:1 1963:1 1966:1 1973:1 1977:2 1980:1 1999:1 2003:1 2019:2 2037:1 2041:1 2061:1 2062:1 2073:2 2078:1 2080:1 2086:1 2098:1 2113:1 2118:1 2119:1 2133:3 2135:1 2136:1 2137:3 2138:2 2141:1 2157:1 2158:1 2169:1 2177:2 2180:1 2187:1 2195:6 2209:2 2214:1 2223:1 2225:2 2237:1 2241:1 2246:1 2249:2 2255:2 2263:2 2265:1 2269:1 2279:1 2284:2 2301:3 2304:1 2317:3 2322:1 2345:1 2348:1 2355:1 2367:1 2372:1 2373:6 2381:1 2397:1 2399:1 2406:1 2419:1 2421:1 2422:1 2429:1 2437:1 2441:1 2465:1 2482:5 2496:1 2502:3 2508:1 2509:1 2519:1 2521:2 2525:2 2529:1 2530:1 2537:1 2547:1 2551:3 2552:1 2553:1 2555:5 2558:7 2559:1 2562:1 2563:2 2564:1 2568:1 2570:1 2573:2 2576:2 2578:3 2579:3 2583:1 2585:1 2587:1 2613:1 2616:1 2618:3 2620:3 2623:3 2624:6 2625:2 2626:1 2630:3 2631:3 2632:1 2634:2 2635:2 2637:1 2640:2 2642:4 2647:6 2648:2 2652:1 2657:3 2662:2 2663:1 2681:1 2720:1 2732:1 2738:1 2739:1 2742:1 2753:2 2769:1 2774:1 2784:1 2788:1 2795:2 2801:3 2821:1 2831:3 2832:1 2864:1 2867:2 2868:1 2878:1 2888:1 2890:2 2896:1 2905:2 2918:2 2923:1 2934:1 2951:2 2953:1 2955:1 2962:1 2964:1 2979:1 2985:1 2992:1 2993:1 3008:2 3017:2 3030:1 3033:1 3039:1 3042:1 3049:1 3051:1 3059:1 3069:1 3071:1 3075:1 3080:4 3097:1 3098:1 3106:8 3116:2 3121:2 3134:2 3145:1 3157:1 3165:3 3171:1 3173:2 3181:1 3182:2 3193:1 3195:1 3197:1 3201:2 3213:2 3223:1 3257:3 3263:2 3283:1 3284:7 3291:1 3294:1 3295:12 3302:2 3314:2 3318:2 3336:4 3350:2 3351:1 3352:1 3353:13 3360:1 3364:2 3369:1 3377:1 3379:1 3380:1 3386:1 3397:1 3408:1 3411:2 3418:2 3433:2 3464:1 3474:1 3475:1 3482:1 3504:1 3517:1 3529:1 3539:1 3549:1 3550:2 3572:1 3578:2 3588:1 3625:1 3645:1 3646:1 3683:1 3690:4 3702:3 3707:1 3721:3 3726:1 3744:1 3755:1 3758:5 3762:1 3765:1 3769:1 3772:1 3790:1 3799:1 3816:1 3821:1 3822:3 3853:1 3856:1 3857:2 3868:1 3875:1 3882:1 3917:2 3926:1 3930:4 3936:1 3939:1 3942:2 3945:1 3951:1 3968:2 3974:2 3978:1 3990:1 3992:2 4005:1 4011:1 4012:1 4018:1 4020:2 4033:1 4035:2 4040:1 4047:3 4060:1 4071:2 4074:1 4105:1 4115:1 4122:1 4131:1 4153:1 4160:4 4174:5 4193:3 4195:1 4207:1 4225:2 4245:1 4247:2 4252:4 4253:14 4263:1 4267:1 4271:1 4279:2 4288:4 4289:4 4291:2 4292:1 4300:2 4303:1 4306:7 4308:2 4330:1 4331:1 4332:5 4334:1 4351:3 4356:1 4361:1 4378:1 4382:1 4391:1 4405:1 4434:1 4437:1 4454:2 4456:2 4465:1 4470:1 4477:1 4484:1 4487:1 4488:1 4510:4 4511:1 4512:1 4529:2 4531:2 4533:1 4536:3 4540:2 4545:3 4547:1 4573:1 4574:2 4575:1 4581:2 4585:1 4593:1 4605:1 4609:1 4628:2 4635:1 4637:1 4663:1 4667:1 4684:1 4686:2 4704:1 4714:1 4727:1 4728:1 4730:1 4741:1 4758:1 4763:5 4767:7 4773:1 4785:1 4792:1 4793:4 4819:1 4824:2 4842:2 4848:1 4863:1 4871:1 4872:5 4877:2 4888:2 4889:1 4906:1 4907:1 4924:1 4929:1 4933:1 4936:2 4951:1 4959:1 4974:1 4979:1 4980:1 4989:1 4991:1 5000:1 5020:1 5022:1 5025:1 5030:1 5033:4 5044:1 5045:2 5052:1 5066:1 5072:1 5082:1 5098:1 5106:1 5136:2 5143:5 5162:1 5163:1 5168:1 5171:1 5198:1 5212:1 5236:1 5239:1 5246:3 5269:1 5276:1 5287:4 5290:2 5299:1 5312:1 5337:3 5340:6 5365:1 5369:3 5396:1 5397:2 5462:1 5471:1 5490:2 5491:1 5516:1 5517:1 5528:1 5530:1 5536:1 5562:37 5564:3 5596:2 5610:1 5641:1 5671:1 5689:1 5690:3 5706:1 5717:3 5718:7 5719:4 5720:3 5722:1 5725:3 5730:2 5731:3 5733:4 5735:2 5740:2 5744:1 5748:1 5750:5 5752:3 5759:2 5763:1 5766:1 5770:1 5781:1 5788:1 5794:1 5811:1 5814:2 5825:2 5832:1 5844:2 5853:2 5855:1 5868:1 5873:1 5898:1 5907:1 5965:3 5975:1 6027:2 6038:1 6043:1 6084:3 6088:1 6089:1 6108:1 6115:1 6124:1 6144:3 6150:3 6165:2 6169:2 6181:1 6186:2 6224:1 6233:1 6237:1 6261:1 6283:3 6284:1 6292:1 6299:1 6300:1 6305:5 6318:1 6319:3 6322:1 6327:1 6328:1 6335:4 6345:3 6355:1 6372:2 6374:2 6382:2 6385:1 6388:1 6391:2 6395:1 6397:2 6400:1 6403:1 6407:2 6412:1 6418:2 6428:1 6431:1 6435:2 6454:1 6459:7 6469:1 6480:4 6496:1 6506:1 6508:2 6509:2 6518:1 6520:1 6529:1 6531:1 6533:1 6536:1 6537:1 6540:1 6547:1 6548:1 6553:1 6558:5 6561:1 6570:1 6581:4 6584:1 6598:1 6610:1 6624:1 6639:1 6688:5 6692:3 6699:1 6706:1 6707:1 6722:1 6750:1 6761:1 6762:1 6773:1 6776:1 6793:1 6795:1 6806:1 6816:1 6819:3 6821:1 6827:1 6843:1 6847:6 6863:2 6874:1 6884:1 6887:1 6888:2 6890:2 6897:4 6923:1 6935:1 6939:1 6944:1 6954:1 6961:7 6980:2 6983:1 6994:2 7003:1 7008:1 7012:2 7023:1 7025:1 7038:1 7044:1 7050:1 7059:1 7062:1 7066:1 7081:1 7087:2 7088:3 7089:2 7090:1 7091:1 7097:1 7101:1 7103:1 7114:2 7132:2 7150:1 7173:1 7190:3 7192:1 7193:1 7194:1 7196:2 7197:4 7200:4 7201:1 7204:3 7207:4 7209:3 7210:1 7211:3 7212:1 7217:1 7218:10 7221:1 7222:3 7224:1 7258:1 7272:1 7279:1 7303:1 7306:1 7307:2 7365:3 7378:1 7380:1 7381:1 7389:1 7406:2 7410:1 7429:3 7435:2 7439:1 7463:1 7469:1 7497:1 7511:1 7512:1 7535:1 7539:2 7543:1 7552:1 7557:1 7559:1 7570:2 7574:1 7589:2 7599:2 7602:2 7613:1 7619:1 7628:1 7637:1 7648:3 7649:1 7659:1 7662:1 7671:4 7672:1 7676:3 7677:1 7691:1 7705:5 7707:1 7714:1 7724:1 7741:1 7745:2 7748:1 7750:3 7766:1 7776:1 7782:1 7791:1 7792:1 7794:1 7809:1 7815:1 7822:1 7825:1 7833:1 7839:2 7840:1 7855:1 7867:1 7879:3 7884:1 7912:2 7913:1 7927:1 7941:2 7949:1 7954:1 7956:1 7961:1 7984:1 7988:2 7993:1 8007:2 8014:1 8016:1 8025:2 8027:2 8043:1 8045:1 8054:1 8064:1 8075:11 8089:2 8090:1 8105:2 8127:1 8129:1 8139:1 8143:5 8150:1 8155:1 8167:1 8168:1 8189:1 8196:1 8209:1 8216:1 8219:1 8230:1 8237:1 8247:1 8248:1 8258:2 8273:1 8277:4 8283:1 8299:1 8302:1 8328:3 8338:1 8340:1 8347:1 8387:1 8389:4 8413:1 8417:4 8426:1 8432:4 8439:1 8446:1 8454:1 8474:1 8478:3 8491:1 8494:1 8498:1 8499:1 8504:1 8531:1 8560:1 8562:1 8567:1 8570:1 8573:1 8575:1 8582:1 8585:1 8593:1 8599:1 8609:4 8611:1 8615:1 8617:1 8619:1 8624:5 8630:3 8631:7 8633:5 8653:1 8654:2 8659:2 8663:1 8684:1 8688:2 8689:1 8702:48 8716:1 8717:1 8725:1 8726:10 8728:9 8734:2 8748:1 8767:1 8783:1 8793:1 8796:2 8797:1 8810:1 8815:2 8816:2 8817:1 8818:1 8848:1 8860:1 8864:2 8874:2 8880:1 8886:1 8887:1 8890:1 8891:1 8901:1 8906:1 8909:2 8923:1 8930:1 8932:2 8935:8 8957:1 8960:1 8974:1 8982:6 8987:1 8992:1 9025:1 9048:2 9059:1 9094:2 9127:1 9135:1 9143:1 9157:7 9168:2 9179:1 9183:1 9186:1 9203:3 9209:1 9221:2 9222:1 9231:1 9232:20 9264:1 9267:1 9276:1 9279:1 9289:1 9295:1 9298:1 9299:1 9311:1 9324:1 9332:1 9333:1 9335:1 9339:1 9340:1 9381:1 9394:3 9425:1 9430:1 9435:1 9441:1 9466:1 9467:1 9470:1 9473:1 9484:2 9493:2 9507:2 9508:1 9529:1 9540:2 9541:1 9542:1 9544:2 9561:1 9563:1 9623:2 9630:1 9632:2 9633:1 9634:4 9637:1 9638:1 9640:1 9642:2 9644:2 9646:1 9648:3 9649:2 9654:4 9661:1 9665:1 9669:1 9675:1 9680:1 9688:1 9690:1 9697:3 9705:1 9742:1 9743:1 9744:1 9746:1 9770:1 9781:1 9788:1 9806:1 9807:1 9810:2 9815:1 9823:1 9826:1 9833:1 9836:1 9842:3 9857:1 9882:1 9901:3 9907:1 9923:1 9931:1 9937:2 9942:1 9945:2 9952:1 9965:2 9974:1 9976:3 9982:1 9988:1 9994:1 9999:1 10008:2 10015:1 10022:1 10027:3 10035:1 10054:1 10070:1 10087:1 10092:1 10095:2 10107:1 10117:1 10121:1 10124:1 10126:1 10138:1 10142:1 10150:2 10152:2 10159:1 10161:2 10171:1 10197:1 10209:2 10210:2 10232:1 10265:1 10275:1 10282:1 10291:1 10294:1 10307:3 10331:1 10332:1 10334:2 10337:1 10338:1 10340:1 10345:8 10349:1 10362:1 10367:1 10371:1 10373:1 10374:2 10376:1 10385:1 10389:1 10407:1 10417:1 10422:1 10430:1 10434:5 10435:1 10436:2 10445:1 10450:1 10454:1 10456:1 10459:1 10465:1 10479:1 10497:1 10502:1 10517:2 10518:1 10522:2 10524:1 10533:2 10540:1 10549:1 10554:1 10570:1 10575:1 10583:1 10584:2 10586:1 10591:1 10596:1 10598:1 10602:1 10619:1 10621:1 10623:1 10627:1 10643:2 10648:1 10666:2 10695:1 10709:5 10732:1 10747:1 10752:2 10764:1 10765:1 10792:1 10800:1 10804:1 10806:1 10807:2 10822:1 10828:2 10831:1 10846:1 10847:1 10858:1 10867:2 10876:1 10877:1 10886:1 10892:1 10893:1 10913:2 10948:10 10969:1 10970:1 10972:1 10973:4 10996:1 10997:2 10999:1 11008:1 11011:1 11020:1 11029:1 11030:1 11052:1 11063:2 11067:1 11079:1 11094:2 11119:2 11133:4 11141:1 11163:3 11167:1 11170:2 11171:1 11172:1 11175:1 11178:2 11188:3 11200:1 11201:1 11208:1 11210:4 11214:3 11215:1 11218:1 11222:1 11225:1 11226:1 11231:2 11232:2 11234:2 11235:1 11239:1 11242:2 11265:1 11266:2 11272:1 11276:5 11288:2 11291:1 11302:1 11308:1 11309:1 11323:2 11324:1 11331:1 11339:1 11342:1 11356:1 11362:1 11376:7 11383:2 11415:1 11421:1 11431:1 11433:1 11438:1 11445:1 11448:2 11450:1 11451:1 11456:1 11464:1 11488:1 11492:1 11499:1 11517:2 11526:1 11550:1 11573:1 11575:1 11584:1 11588:1 11594:1 11601:1 11603:1 11607:4 11611:3 11637:2 11656:1 11660:1 11674:1 11677:3 11690:1 11692:1 11695:1 11697:1 11701:3 11717:1 11730:2 11741:1 11744:1 11778:1 11784:5 11795:1 11796:1 11811:1 11820:1 11822:7 11830:1 11841:1 11842:1 11846:1 11847:1 11854:1 11855:1 11858:1 11860:1 11895:1 11899:1 11906:3 11912:1 11914:3 11915:1 11930:1 11931:1 11933:1 11949:2 11955:1 11966:1 11992:1 12002:1 12005:1 12015:5 12023:1 12026:2 12031:1 12039:4 12042:1 12047:1 12050:3 12099:1 12109:1 12112:1 12145:1 12149:1 12154:1 12162:1 12169:3 12197:1 12213:1 12214:1 12255:2 12266:1 12274:1 12275:1 12284:1 12307:2 12310:1 12319:1 12325:1 12327:3 12329:5 12333:1 12335:1 12336:4 12337:1 12339:1 12350:1 12352:2 12354:1 12356:1 12361:1 12369:1 12377:1 12378:2 12379:1 12389:1 12406:1 12427:1 12434:2 12438:1 12448:1 12461:1 12472:1 12475:1 12476:1 12477:2 12483:1 12487:1 12501:1 12526:1 12537:1 12545:1 12551:1 12552:1 12559:1 12580:1 12593:1 12596:1 12604:2 12607:1 12618:4 12630:2 12640:1 12647:1 12649:1 12672:1 12682:1 12733:1 12741:1 12743:1 12762:1 12764:1 12766:1 12770:1 12775:1 12776:1 12783:1 12789:1 12794:1 12805:1 12811:3 12814:3 12819:3 12836:1 12845:1 12862:3 12865:13 12867:1 12876:1 12877:1 12893:1 12896:1 12902:1 12910:2 12915:1 12918:1 12923:1 12928:2 12929:1 12933:1 12935:3 12936:2 12952:1 12954:1 12970:1 12977:2 12988:3 12994:1 13000:1 13005:1 13009:1 13012:1 13015:1 13018:3 13027:1 13032:1 13050:3 13061:2 13064:1 13073:1 13081:1 13085:3 13088:7 13089:2 13094:2 13111:1 13116:1 13128:8 13135:1 13137:1 13138:2 13142:4 13143:1 13146:1 13148:1 13149:1 13150:2 13151:7 13152:1 13153:1 13156:1 13162:7 13168:1 13169:1 13192:1 13196:2 13202:1 13220:2 13228:1 13231:1 13239:2 13244:1 13254:2 13264:2 13285:1 13286:1 13294:2 13296:1 13302:1 13308:1 13320:7 13338:1 13365:1 13391:1 13408:1 13410:3 13415:1 13423:2 13427:1 13429:1 13434:1 13443:1 13448:2 13456:1 13461:1 13463:1 13473:4 13476:1 13480:2 13486:1 13510:1 13515:2 13517:3 13527:2 13552:2 13553:2 13556:1 13590:1 13592:1 13600:1 13606:2 13608:1 13611:1 13616:2 13621:1 13649:1 13653:2 13654:3 13662:1 13674:1 13684:3 13685:4 13690:1 13700:2 13718:3 13738:1 13742:1 13745:1 13750:3 13778:1 13805:1 13815:1 13821:3 13826:2 13830:1 13848:1 13863:2 13873:6 13874:1 13895:2 13896:3 13899:1 13921:1 13930:1 13933:1 13935:1 13939:1 13940:1 13973:1 13976:2 14004:2 14007:1 14011:1 14018:1 14021:1 14030:1 14037:1 14039:1 14055:1 14059:1 14061:2 14081:2 14101:1 14102:2 14119:1 14125:2 14146:1 14149:1 14162:4 14180:1 14183:2 14207:1 14210:1 14214:2 14242:1 14252:1 14256:2 14267:1 14281:1 14318:2 14319:1 14341:1 14345:10 14353:1 14356:2 14361:1 14370:3 14376:2 14380:1 14384:1 14402:1 14409:1 14410:1 14416:1 14421:1 14436:2 14441:1 14443:1 14449:1 14468:1 14471:1 14472:1 14473:5 14480:2 14483:3 14489:2 14497:1 14518:2 14520:1 14541:1 14545:1 14572:1 14577:1 14581:1 14583:1 14589:2 14592:1 14605:1 14620:1 14633:1 14640:1 14652:1 14658:2 14688:2 14697:1 14706:1 14753:1 14781:1 14791:1 14793:5 14804:1 14806:1 14831:1 14841:1 14854:3 14858:1 14859:1 14867:2 14870:2 14873:1 14877:7 14881:5 14883:1 14891:1 14895:1 14896:1 14904:5 14907:8 14915:1 14921:3 14935:2 14940:1 14942:2 14945:1 14949:3 14957:1 14958:1 14959:1 14960:1 14975:2 14979:1 14980:1 14999:1 15005:1 15016:1 15019:2 15028:1 15033:2 15039:9 15040:1 15047:2 15054:1 15059:1 15066:2 15075:1 15079:2 15082:1 15087:1 15122:1 15125:4 15131:1 15160:2 15161:1 15172:1 15187:1 15191:1 15212:1 15215:1 15216:1 15217:5 15236:1 15246:1 15251:1 15255:1 15259:1 15275:1 15278:1 15281:2 15293:1 15311:1 15322:1 15325:3 15333:2 15336:1 15361:1 15367:2 15374:2 15381:2 15386:1 15410:1 15429:1 15438:1 15443:1 15476:1 15477:3 15480:1 15483:2 15487:1 15488:1 15489:2 15496:1 15508:2 15513:1 15519:1 15520:1 15523:1 15543:1 15551:1 15555:1 15574:3 15616:7 15622:1 15625:2 15645:1 15662:1 15664:1 15666:2 15680:2 15704:1 15725:1 15728:5 15734:5 15740:2 15749:2 15780:2 15811:2 15820:2 15840:2 15855:1 15861:1 15864:1 15900:2 15905:1 15923:1 15929:2 15934:1 15938:1 15945:1 15955:1 15959:1 15960:1 15962:1 15974:4 15986:1 15990:1 15993:1 15996:2 15997:1 16000:3 16021:1 16026:1 16030:1 16033:1 16040:3 16042:1 16043:1 16046:1 16059:1 16063:1 16067:1 16071:1 16073:1 16092:1 16098:4 16114:1 16119:2 16136:1 16144:1 16145:1 16150:1 16152:1 16178:2 16183:1 16187:1 16189:1 16197:2 16198:1 16208:1 16214:1 16226:1 16227:4 16229:1 16236:1 16237:1 16254:1 16266:1 16270:1 16273:1 16284:1 16289:1 16321:1 16330:5 16347:1 16350:2 16351:1 16355:1 16362:1 16390:2 16393:2 16407:1 16411:1 16422:1 16427:2 16428:1 16433:2 16448:1 16450:1 16451:1 16457:1 16463:1 16484:4 16488:1 16508:3 16523:1 16534:1 16538:1 16556:2 16559:2 16566:5 16598:1 16606:1 16608:1 16630:1 16634:1 16642:1 16650:2 16655:1 16674:2 16678:1 16684:5 16687:1 16688:1 16693:1 16694:1 16721:2 16723:1 16739:1 16741:1 16753:1 16762:1 16782:8 16783:2 16787:1 16789:1 16793:1 16831:1 16832:4 16835:1 16842:1 16846:3 16848:1 16860:1 16884:3 16904:1 16922:1 16936:4 16940:2 16942:1 16944:1 16948:1 16971:3 16973:3 16984:1 16988:3 16990:1 16999:1 17012:2 17023:1 17042:1 17045:4 17046:1 17048:1 17053:2 17056:2 17061:1 17063:1 17098:2 17103:1 17105:1 17127:1 17140:1 17155:1 17176:1 17187:1 17194:3 17203:1 17214:1 17219:1 17224:1 17226:1 17246:1 17251:3 17269:1 17289:2 17293:1 17297:1 17314:1 17317:1 17318:1 17324:2 17334:1 17370:1 17379:1 17389:1 17406:1 17420:1 17423:15 17433:2 17437:1 17448:1 17479:2 17489:2 17499:1 17503:2 17514:1 17516:1 17528:3 17531:1 17539:1 17543:1 17567:1 17571:1 17576:1 17581:1 17586:2 17596:1 17598:1 17610:1 17648:1 17661:3 17673:1 17681:1 17689:13 17694:1 17695:1 17698:1 17699:3 17700:3 17709:1 17710:3 17714:1 17715:1 17718:1 17722:1 17729:5 17731:2 17740:1 17748:1 17752:1 17756:1 17758:1 17767:1 17771:1 17775:2 17776:1 17783:1 17784:2 17805:5 17824:1 17829:1 17830:2 17857:3 17860:2 17866:1 17871:1 17876:1 17878:1 17880:1 17884:1 17888:5 17930:1 17951:1 17953:4 17955:2 17989:1 18008:1 18009:1 18010:1 18016:1 18049:3 18053:4 18074:4 18079:1 18108:2 18111:1 18114:1 18141:1 18148:1 18157:3 18160:1 18187:1 18195:12 18199:1 18214:3 18220:1 18226:1 18227:1 18234:2 18236:1 18243:2 18247:1 18258:1 18260:1 18273:1 18281:2 18289:2 18301:1 18302:1 18306:1 18308:2 18313:1 18315:1 18319:4 18321:2 18322:1 18323:1 18327:1 18329:1 18330:1 18332:3 18340:2 18341:1 18342:5 18344:1 18351:1 18352:3 18372:1 18375:1 18401:1 18416:1 18417:2 18426:1 18492:3 18527:2 18537:1 18546:1 18561:1 18584:1 18619:1 18621:1 18635:2 18672:1 18683:1 18684:1 18693:1 18697:1 18699:1 18702:1 18708:1 18716:2 18717:1 18727:1 18732:1 18733:1 18738:1 18739:2 18743:1 18764:1 18777:2 18785:1 18794:1 18799:3 18807:1 18808:2 18821:1 18842:3 18879:1 18896:1 18900:1 18908:1 18911:3 18919:5 18928:1 18949:1 18966:1 18967:1 18978:1 18987:1 19000:1 19005:1 19024:1 19029:3 19030:1 19035:1 19039:1 19043:1 19049:1 19050:1 19059:7 19062:4 19069:2 19081:1 19089:2 19103:2 19108:1 19117:1 19126:1 19135:1 19139:5 19155:1 19165:3 19169:2 19177:1 19182:1 19200:4 19207:2 19208:1 19209:1 19212:1 19213:1 19216:3 19233:2 19246:1 19248:2 19261:2 19262:1 19276:1 19295:1 19296:1 19320:10 19329:1 19333:2 19345:1 19349:1 19351:1 19352:1 19354:1 19357:3 19362:1 19372:1 19384:1 19398:2 19417:1 19432:2 19443:1 19444:2 19448:1 19452:1 19465:2 19471:1 19493:1 19503:1 19508:2 19509:1 19526:1 19532:1 19559:1 19566:1 19567:1 19583:1 19585:1 19622:1 19628:1 19634:1 19637:1 19643:1 19655:1 19659:1 19663:2 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19758:1 19763:3 19772:5 19774:1 19776:1 19781:2 19783:3 19784:1 19794:1 19797:1 19809:1 19816:1 19819:1 19843:3 19849:2 19850:1 19867:1 19872:1 19897:1 19904:1 19910:1 19919:1 19936:1 19951:2 19962:1 19965:1 19966:1 20000:1 20007:2 20008:1 20020:2 20031:1 20032:2 20045:1 20077:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:2 20123:2 20124:8 20128:4 20136:2 20142:1 20143:1 20146:2 20163:1 20166:3 20174:1 20180:1 20181:1 20183:1 20200:1 20202:1 20219:1 20220:1 20225:3 20230:1 20231:1 20237:1 20239:1 20241:1 20243:2 20286:1 20287:1 20292:1 20294:1 20300:2 20309:2 20341:1 20360:1 20373:1 20391:1 20394:2 20395:1 20400:1 20405:1 20406:1 20407:2 20412:1 20416:1 20437:1 20441:1 20454:1 20458:1 20460:1 20477:1 20492:2 20499:1 20503:1 20508:1 20514:1 20516:1 20517:1 20518:1 20524:1 20525:1 20540:1 20548:1 20561:1 20569:1 20635:4 20645:1 20673:1 20681:3 20682:1 20692:2 20697:2 20706:1 20709:1 20742:3 20760:1 20761:1 20792:1 20803:7 20814:2 20815:4 20831:1 20851:1 20876:1 20893:2 20894:2 20895:1 20900:2 20906:1 20929:2 20936:1 20942:2 20949:1 20951:1 20970:1 20974:2 20983:3 20996:2 21003:2 21004:2 21010:1 21016:2 21041:1 21047:3730 21068:3 21070:1 21079:2 21087:1 21096:1 21109:1 21164:1 21166:1 21173:2 21178:1 21205:1 21227:1 21234:1 21241:2 21260:1 21278:1 21279:4 21291:1 21292:4 21294:1 21295:2 21300:1 21308:1 21355:1 21362:1 21372:1 21374:1 21378:1 21382:1 21398:1 21401:3 21408:1 21419:1 21421:1 21431:1 21444:1 21449:2 21464:1 21466:2 21476:1 21478:1 21487:1 21512:1 21515:3 21518:2 21520:1 21532:1 21539:1 21551:1 21566:1 21571:1 21585:1 21601:1 21602:1 21609:1 21630:1 21644:1 21689:3 21692:1 21709:2 21729:1 21735:4 21790:1 21797:2 21801:1 21802:1 21806:1 21808:1 21812:1 21813:1 21817:1 21821:2 21827:3 21833:2 21843:1 21845:1 21856:2 21861:2 21863:1 21874:1 21877:2 21883:1 21895:2 21907:1 21918:2 21921:7 21952:1 21953:8 21959:1 21960:1 21961:1 21966:2 21976:1 21992:1 22001:2 22020:3 22025:3 22029:2 22032:2 22039:1 22041:1 22043:2 22045:2 22072:4 22082:1 22095:3 22107:2 22119:1 22127:1 22138:1 22143:1 22157:1 22162:1 22173:3 22174:1 22178:3 22181:1 22214:1 22227:1 22229:1 22235:1 22240:1 22245:3 22262:1 22267:1 22271:1 22281:2 22294:1 22301:5 22306:1 22311:1 22318:1 22325:1 22333:1 22344:1 22351:1 22364:1 22370:1 22375:1 22382:1 22404:5 22415:1 22423:5 22459:1 22462:1 22479:2 22483:1 22493:1 22495:1 22503:2 22504:1 22508:2 22526:2 22530:1 22540:1 22545:1 22548:3 22553:1 22562:1 22565:3 22569:1 22572:1 22573:2 22583:1 22586:1 22603:1 22615:1 22617:1 22626:3 22638:1 22644:2 22655:1 22669:1 22681:4 22688:2 22690:1 22698:1 22713:1 22737:3 22740:1 22750:1 22766:2 22774:1 22776:1 22791:1 22793:1 22794:1 22803:1 22815:5 22819:1 22824:1 22829:1 22833:1 22834:1 22835:1 22837:1 22845:1 22851:1 22852:1 22870:7 22871:1 22877:2 22886:1 22889:2 22952:1 22954:1 22966:1 22984:2 22992:1 23002:1 23004:1 23005:2 23036:2 23046:1 23055:1 23059:1 23100:1 23108:3 23113:1 23114:1 23116:1 23129:1 23147:2 23156:2 23160:4 23163:1 23164:1 23169:4 23172:1 23175:1 23183:1 23229:1 23243:1 23256:1 23257:1 23277:1 23279:1 23281:1 23286:1 23288:1 23290:1 23330:1 23353:1 23359:1 23363:1 23367:1 23373:1 23381:1 23383:1 23390:1 23415:2 23416:1 23419:1 23432:1 23434:1 23444:4 23447:2 23449:2 23453:1 23456:1 23463:1 23471:1 23490:5 23504:2 23518:1 23521:2 23522:1 23523:1 23527:2 23529:2 23532:2 23544:4 23550:3 23556:1 23560:2 23561:1 23570:1 23572:1 23574:1 23580:3 23583:1 23585:1 23596:1 23609:1 23612:1 23617:1 23622:2 23626:1 23644:2 23649:2 23656:1 23657:1 23658:1 23663:1 23669:2 23723:2 23728:1 23729:1 23736:1 23737:1 23745:8 23746:1 23751:1 23752:2 23756:1 23765:1 23770:1 23773:1 23782:1 23785:1 23790:1 23800:1 23802:2 23831:1 23837:1 23852:1 23853:1 23858:1 23859:1 23861:1 23863:1 23891:1 23898:1 23899:1 23901:1 23912:1 23917:1 23919:2 23927:1 23931:1 23943:1 23949:1 23951:1 23953:2 23955:2 23983:1 23985:1 23991:1 24009:1 24013:1 24024:5 24032:1 24039:1 24057:3 24058:1 24074:1 24078:1 24082:2 24090:1 24093:1 24098:1 24099:1 24113:2 24114:1 24133:1 24138:1 24143:1 24144:1 24151:2 24166:2 24168:1 24194:1 24195:1 24197:1 24198:1 24201:1 24205:3 24206:2 24207:1 24208:1 24214:1 24216:1 24217:1 24218:1 24222:1 24225:1 24226:3 24229:1 24241:1 24242:1 24250:1 24255:2 24262:2 24263:3 24274:1 24276:2 24279:1 24289:1 24298:1 24308:1 24314:1 24319:1 24321:1 24323:1 24334:1 24358:1 24359:2 24366:6 24368:1 24369:1 24373:2 24379:1 24383:2 24386:1 24394:2 24398:1 24401:1 24417:1 24418:1 24425:1 24427:1 24442:1 24449:1 24467:1 24474:1 24477:1 24478:3 24487:1 24493:7 24502:1 24504:1 24527:1 24541:1 24542:5 24550:2 24578:1 24587:1 24601:3 24618:1 24636:1 24639:1 24643:2 24647:2 24650:3 24660:1 24677:1 24678:1 24681:1 24685:3 24687:1 24690:6 24692:3 24695:1 24698:1 24706:2 24727:1 24742:2 24775:1 24788:2 24792:1 24805:4 24840:1 24841:1 24847:1 24854:1 24857:1 24858:1 24860:1 24874:1 24887:1 24904:1 24907:1 24916:3 24921:1 24925:2 24933:3 24936:1 24937:1 24943:1 24957:1 24959:1 24966:1 24969:1 24972:2 24974:1 24975:1 24983:1 24985:2 24990:3 25003:1 25011:1 25015:1 25017:1 25021:2 25022:1 25027:1 25032:1 25034:1 25036:1 25041:1 25048:1 25064:1 25072:2 25077:2 25093:1 25097:3 25100:1 25114:1 25115:2 25127:1 25133:1 25134:2 25139:2 25149:1 25156:3 25167:4 25170:1 25173:1 25183:1 25184:3 25189:1 25191:1 25197:1 25221:1 25224:9 25233:3 25238:1 25245:2 25298:1 25300:1 25306:5 25337:6 25343:1 25346:1 25356:2 25357:1 25364:3 25366:1 25367:5 25369:1 25371:1 25388:1 25401:1 25413:1 25415:1 25416:1 25423:1 25431:2 25434:2 25437:1 25454:1 25464:1 25474:4 25494:5 25508:1 25510:1 25513:2 25515:1 25516:3 25526:2 25545:4 25548:1 25552:4 25557:1 25561:3 25562:1 25569:1 25582:3 25590:1 25595:2 25599:2 25600:1 25621:1 25623:1 25624:1 25635:4 25646:1 25659:3 25662:2 25666:1 25669:5 25670:1 25672:1 25674:5 25678:3 25713:1 25714:1 25724:1 25726:1 25732:1 25798:1 25810:1 25831:1 25834:1 25841:1 25850:1 25865:2 25878:1 25883:1 25884:1 25887:1 25897:1 25916:1 25920:1 25958:1 25962:1 25967:1 26002:3 26017:1 26019:3 26025:1 26031:1 26032:1 26035:1 26036:1 26046:1 26047:1 26056:4 26062:1 26073:1 26084:1 26088:1 26106:1 26110:2 26133:1 26150:1 26158:1 26160:1 26188:2 26195:1 26201:1 26217:1 26218:1 26223:1 26239:1 26243:1 26253:1 26255:1 26263:2 26269:1 26270:3 26278:2 26279:1 26286:4 26314:1 26320:1 26324:2 26328:1 26329:2 26331:1 26334:1 26354:2 26364:1 26367:1 26390:1 26403:1 26405:1 26407:1 26411:1 26423:2 26434:1 26435:1 26437:4 26442:2 26445:2 26459:1 26470:1 26481:1 26482:1 26488:1 26490:3 26502:7 26530:1 26535:1 26549:1 26550:1 26557:2 26565:1 26577:1 26581:1 26582:1 26584:2 26605:1 26606:1 26608:1 26646:2 26665:1 26675:1 26679:1 26681:1 26685:1 26686:1 26689:3 26705:1 26718:1 26726:1 26729:1 26762:1 26768:1 26780:1 26785:1 26793:1 26794:1 26839:1 26850:1 26867:1 26872:2 26873:1 26879:1 26890:1 26897:1 26898:1 26902:2 26932:1 26954:1 26964:1 26966:1 26967:1 26977:1 26979:1 26984:3 26991:1 26996:1 26998:1 27020:2 27049:1 27052:1 27063:1 27065:3 27075:2 27076:1 27100:3 27105:1 27115:2 27116:1 27126:1 27133:1 27134:1 27144:3 27151:1 27171:1 27182:1 27186:1 27196:2 27198:1 27201:1 27202:1 27211:1 27222:2 27223:2 27224:1 27226:1 27227:6 27231:1 27233:1 27245:3 27247:1 27265:1 27276:1 27280:1 27295:1 27299:3 27300:1 27305:2 27317:1 27335:1 27336:3 27344:1 27351:1 27357:1 27358:1 27365:1 27376:1 27383:1 27390:1 27408:2 27412:1 27429:2 27436:2 27460:1 27466:1 27470:4 27471:3 27479:1 27481:1 27483:2 27484:2 27486:1 27487:4 27488:1 27489:3 27490:2 27496:1 27498:4 27508:2 27511:2 27519:1 27527:2 27530:3 27539:5 27547:1 27557:1 27578:1 27580:2 27586:1 27603:2 27608:1 27612:2 27616:1 27622:1 27626:2 27654:1 27655:2 27661:1 27664:3 27669:1 27674:1 27679:1 27681:2 27683:2 27687:2 27689:3 27691:2 27692:1 27705:1 27711:1 27713:1 27749:1 27754:1 27797:12 27798:1 27799:1 27815:1 27821:10 27835:1 27839:4 27842:2 27854:1 27855:1 27858:1 27862:1 27864:1 27871:1 27876:3 27890:2 27892:1 27912:2 27915:3 27986:2 27987:2 27994:1 28003:1 28024:1 28030:1 28046:1 28052:2 28064:1 28065:1 28069:1 28074:1 28078:1 28082:1 28094:1 28101:1 28110:1 28113:2 28115:1 28133:2 28149:1 28164:1 28169:1 28173:1 28209:1 28224:1 28241:1 28275:1 28293:1 28294:1 28303:1 28308:1 28319:2 28348:3 28349:8 28369:1 28382:10 28384:1 28393:1 28394:1 28397:1 28401:1 28402:1 28413:4 28420:1 28424:2 28425:1 28430:1 28501:1 28502:1 28527:1 28533:2 28536:1 28558:1 28592:1 28593:1 28614:3 28617:1 28631:1 28632:5 28635:3 28636:1 28643:1 28651:1 28658:1 28664:1 28670:2 28673:1 28674:2 28685:1 28694:2 28722:1 28730:1 28731:2 28736:1 28737:1 28759:4 28773:1 28776:1 28787:1 28803:2 28809:1 28833:2 28847:1 28884:1 28885:1 28926:1 28944:1 28948:6 28966:1 28969:2 28976:1 28983:1 28995:1 29005:4 29007:3 29012:2 29021:1 29032:1 29042:1 29136:1 29137:2 29149:2 29152:2 29154:1 29203:1 29211:1 29225:1 29226:2 29233:1 29241:1 29263:2 29266:1 29277:1 29279:3 29283:1 29287:1 29290:1 29298:2 29305:1 29313:1 29329:1 29330:1 29336:1 29339:1 29342:1 29344:1 29345:1 29346:1 29349:1 29351:2 29356:1 29359:2 29378:1 29383:1 29394:1 29419:1 29421:7 29433:1 29448:1 29450:2 29474:1 29483:1 29485:1 29496:1 29508:1 29515:8 29521:2 29529:3 29535:1 29547:1 29559:1 29562:1 29567:2 29570:1 29578:1 29583:2 29605:3 29612:1 29623:1 29632:1 29643:3 29649:1 29654:1 29658:1 29671:1 29676:4 29697:1 29702:1 29704:4 29711:1 29721:1 29724:1 29728:1 29729:1 29730:1 29735:1 29745:1 29775:1 29783:1 29800:1 29820:2 29822:2 29824:1 29825:1 29826:1 29831:2 29839:1 29841:1 29845:1 29847:1 29899:1 29904:1 29916:2 29927:1 29958:4 29969:1 29971:4 29972:2 29973:1 29974:3 29977:1 29995:1 29999:1 30002:2 30015:1 30035:1 30040:1 30044:1 30052:1 30059:1 30096:2 30100:2 30105:1 30142:1 30149:2 30156:2 30168:2 30169:1 30180:1 30191:1 30199:1 30204:1 30213:2 30231:6 30249:1 30252:1 30267:1 30285:1 30297:1 30305:1 30306:1 30315:1 30327:2 30330:1 30331:2 30342:1 30357:1 30360:1 30370:1 30380:5 30390:1 30393:2 30420:1 30431:1 30435:1 30445:1 30454:1 30471:1 30475:4 30501:4 30504:3 30507:1 30510:2 30532:1 30548:2 30552:2 30572:2 30587:9 30589:3 30602:1 30606:1 30628:1 30638:1 30653:1 30660:1 30663:1 30664:7 30683:1 30685:1 30688:1 30689:2 30697:1 30704:5 30710:1 30718:2 30730:1 30738:1 30775:1 30776:1 30789:2 30798:6 30802:4 30805:3 30809:2 30814:3 30822:1 30834:1 30835:1 30843:4 30846:1 30854:2 30864:1 30867:1 30868:2 30869:1 30875:2 30880:1 30883:1 30884:2 30892:2 30895:1 30908:2 30910:1 30946:2 30956:2 30960:1 30967:2 30968:1 30971:2 30977:2 30988:1 30994:2 30999:1 31009:1 31019:1 31020:1 31031:1 31042:1 31046:3 31057:2 31062:1 31065:1 31074:1 31082:1 31095:1 31101:1 31104:2 31107:1 31113:1 31125:2 31127:1 31130:1 31135:1 31142:2 31144:1 31158:2 31161:1 31172:2 31184:2 31191:1 31195:2 31197:3 31206:1 31209:1 31216:8 31221:1 31227:1 31235:1 31287:1 31306:1 31315:2 31322:2 31324:1 31360:2 31363:2 31370:2 31388:1 31391:1 31392:3 31398:1 31404:1 31422:2 31440:3 31448:1 31452:3 31459:1 31461:4 31463:1 31476:1 31478:1 31480:2 31484:2 31485:3 31491:1 31494:1 31521:1 31531:5 31538:1 31543:1 31547:1 31553:1 31554:1 31566:2 31576:3 31581:1 31583:1 31590:1 31622:1 31625:1 31635:2 31640:1 31647:1 31649:1 31658:2 31665:24 31667:3 31670:2 31674:2 31679:2 31680:4 31684:2 31686:1 31688:2 31704:10 31721:3 31722:1 31727:1 31730:1 31750:1 31761:3 31763:1 31783:1 31790:1 31806:1 31818:1 31821:1 31827:2 31834:7 31842:1 31846:1 31853:1 31877:7 31894:2 31897:2 31910:1 31911:1 31921:1 31932:1 31938:2 31952:1 31954:1 31960:1 31962:1 31964:1 31974:1 31976:1 31998:2 32009:1 32027:1 32035:2 32041:1 32042:1 32047:1 32053:1 32060:1 32061:1 32070:1 32083:1 32085:1 32094:1 32097:1 32103:1 32105:2 32117:1 32125:1 32128:1 32140:1 32142:1 32153:1 32171:2 32172:2 32181:1 32201:1 32207:1 32212:1 32229:1 32241:6 32244:7 32277:2 32280:3 32289:1 32299:1 32303:1 32304:1 32310:1 32311:2 32312:1 32319:1 32335:3 32348:1 32403:1 32407:1 32420:1 32433:1 32439:1 32443:7 32447:1 32451:1 32456:1 32471:4 32472:1 32476:1 32487:2 32491:4 32499:1 32548:1 32551:1 32552:2 32579:1 32619:1 32625:1 32628:1 32632:1 32650:1 32651:1 32656:2 32660:1 32661:1 32675:1 32693:3 32697:1 32713:5 32719:1 32722:1 32724:2 32750:3 32768:1 32791:1 32795:1 32803:1 32808:2 32814:2 32818:1 32824:1 32834:1 32843:1 32846:2 32885:1 32899:1 32900:2 32910:2 32934:1 32935:1 32941:3 32944:3 32956:2 32963:1 33001:3 33019:1 33025:1 33038:1 33041:7 33055:1 33056:3 33057:1 33059:1 33075:1 33083:1 33084:1 33101:1 33105:2 33108:1 33115:1 33118:1 33133:1 33138:1 33141:3 33143:2 33146:1 33148:2 33149:2 33155:10 33156:1 33164:2 33167:5 33168:1 33171:5 33182:1 33198:2 33211:1 33220:3 33224:1 33225:1 33226:1 33232:1 33234:2 33267:1 33271:3
11 1:1 2:1 6:1 27:1 31:1 34:1 39:2 49:1 53:1 55:1 60:2 64:1 67:1 84:1 85:1 86:1 93:1 95:1 99:2 106:1 116:1 126:1 148:1 150:3 153:1 159:1 166:2 170:1 181:2 183:1 187:2 215:1 232:1 238:5 241:1 256:1 265:1 268:1 282:1 283:2 294:3 296:2 299:1 313:1 322:1 344:1 347:1 357:1 362:2 378:1 401:1 402:1 403:5 411:2 415:2 427:2 446:1 455:2 460:1 498:1 507:8 513:1 523:1 546:2 582:2 586:3 621:1 627:1 646:2 654:1 698:1 712:1 717:4 721:1 731:7 745:1 753:2 759:3 764:4 765:1 766:1 774:1 789:1 790:2 795:1 807:1 808:1 815:2 829:1 866:2 899:1 937:1 951:2 955:1 956:1 971:2 974:1 979:1 984:1 1000:1 1003:2 1022:3 1049:2 1053:1 1057:1 1067:2 1069:1 1070:1 1071:7 1073:1 1080:1 1082:1 1083:1 1094:1 1103:1 1106:2 1117:1 1118:1 1125:1 1127:1 1130:6 1132:1 1134:1 1141:2 1142:1 1144:1 1158:2 1161:1 1165:1 1168:3 1171:3 1199:1 1204:4 1211:1 1216:3 1218:1 1220:1 1236:3 1239:1 1244:1 1257:1 1262:1 1265:1 1284:1 1287:1 1309:1 1311:2 1316:1 1318:1 1321:1 1322:1 1340:1 1351:2 1376:1 1378:1 1388:1 1392:1 1393:1 1403:1 1405:2 1409:1 1413:1 1415:1 1420:1 1421:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:2 1465:1 1467:1 1480:1 1481:1 1487:2 1494:1 1496:2 1504:1 1509:1 1514:2 1532:1 1538:2 1539:1 1545:1 1547:1 1588:2 1624:1 1626:2 1630:1 1635:1 1645:1 1650:1 1658:1 1664:4 1683:2 1686:1 1690:2 1691:1 1719:1 1726:7 1730:11 1739:11 1745:1 1747:1 1749:2 1751:2 1771:1 1793:1 1799:1 1807:1 1808:1 1813:1 1837:4 1839:4 1841:1 1844:1 1869:1 1878:2 1883:8 1884:1 1892:1 1899:1 1906:2 1917:7 1941:2 1943:1 1948:1 1955:1 1956:1 1957:1 1960:1 1963:1 1966:1 1973:1 1977:2 1980:1 1991:1 1999:1 2003:1 2019:2 2027:1 2037:1 2041:1 2061:1 2062:1 2073:2 2078:1 2080:1 2086:1 2098:1 2113:1 2118:1 2119:1 2133:3 2135:1 2136:1 2137:3 2138:2 2141:1 2157:1 2158:1 2169:1 2177:2 2180:2 2187:1 2195:6 2209:2 2214:1 2223:1 2225:2 2237:1 2241:1 2246:1 2249:2 2255:2 2263:2 2265:1 2269:1 2279:1 2284:2 2301:3 2304:1 2317:3 2322:1 2345:1 2348:1 2355:1 2367:1 2372:1 2373:6 2381:1 2397:1 2399:1 2406:1 2419:1 2421:1 2422:1 2429:1 2437:1 2441:2 2444:1 2465:1 2482:5 2496:1 2502:3 2508:1 2509:1 2519:1 2521:2 2525:2 2529:1 2530:1 2537:1 2547:1 2551:3 2552:1 2553:1 2555:5 2558:7 2559:1 2562:1 2563:2 2564:1 2568:1 2570:1 2573:3 2576:2 2578:3 2579:3 2583:1 2585:1 2587:1 2613:1 2616:2 2618:3 2620:3 2623:3 2624:6 2625:2 2626:1 2630:3 2631:3 2632:1 2634:2 2635:2 2637:1 2640:2 2642:5 2647:6 2648:2 2652:1 2657:3 2662:2 2663:1 2681:1 2713:1 2720:1 2732:1 2738:1 2739:1 2742:1 2753:2 2769:1 2774:1 2784:1 2788:1 2795:2 2801:3 2821:1 2831:3 2832:1 2864:1 2867:2 2868:1 2878:1 2888:1 2890:2 2896:1 2905:2 2918:2 2923:1 2934:1 2951:2 2953:1 2955:1 2962:1 2964:1 2979:1 2985:1 2992:1 2993:1 3008:2 3017:2 3030:1 3033:1 3039:1 3042:1 3049:1 3051:1 3059:1 3069:1 3071:1 3075:1 3080:4 3097:1 3098:1 3106:8 3116:2 3121:2 3134:2 3145:1 3157:1 3165:3 3171:1 3173:2 3181:1 3182:2 3193:1 3195:1 3197:1 3201:3 3213:2 3223:1 3257:3 3263:2 3283:1 3284:7 3291:1 3294:1 3295:12 3302:2 3314:2 3318:2 3336:4 3350:2 3351:1 3352:1 3353:13 3360:1 3364:2 3369:1 3377:1 3379:1 3380:1 3386:1 3397:1 3408:1 3411:2 3418:2 3433:2 3464:1 3474:1 3475:1 3482:1 3484:1 3504:1 3517:1 3529:1 3539:1 3549:1 3550:3 3572:1 3578:2 3588:1 3625:1 3645:1 3646:1 3683:1 3690:5 3702:3 3707:1 3721:4 3726:1 3744:1 3755:1 3758:5 3762:1 3765:1 3769:1 3772:1 3790:1 3799:1 3816:1 3821:1 3822:3 3853:1 3856:1 3857:2 3868:1 3875:1 3882:1 3917:2 3926:1 3930:4 3936:2 3939:1 3942:2 3945:1 3951:1 3968:2 3971:1 3974:2 3978:1 3990:1 3992:2 4005:1 4011:1 4012:1 4018:1 4020:2 4033:1 4035:2 4040:1 4047:3 4060:1 4071:2 4074:1 4103:1 4105:1 4112:1 4115:1 4122:1 4131:1 4134:1 4153:1 4160:4 4174:5 4178:1 4188:1 4193:3 4195:1 4207:1 4225:2 4245:1 4247:2 4252:4 4253:16 4263:1 4267:1 4271:1 4279:3 4288:4 4289:4 4291:2 4292:1 4300:2 4303:1 4306:7 4308:2 4330:1 4331:1 4332:5 4334:1 4346:1 4351:3 4356:1 4361:1 4378:2 4382:1 4391:1 4405:1 4434:1 4437:1 4454:2 4456:2 4465:1 4470:1 4477:1 4484:1 4487:1 4488:1 4510:4 4511:1 4512:1 4529:2 4531:2 4533:1 4536:3 4540:2 4545:3 4547:1 4573:1 4574:2 4575:1 4581:2 4585:1 4593:1 4605:1 4609:1 4628:2 4635:1 4637:1 4663:1 4667:1 4684:1 4686:2 4704:1 4713:1 4714:1 4727:1 4728:1 4730:1 4741:1 4758:1 4763:5 4767:8 4773:1 4785:1 4792:1 4793:4 4819:1 4824:2 4842:2 4848:1 4863:1 4871:1 4872:5 4877:2 4888:2 4889:1 4906:1 4907:1 4924:1 4929:1 4933:1 4936:2 4951:1 4959:1 4974:1 4979:1 4980:1 4989:1 4991:1 5000:1 5020:1 5022:1 5025:1 5030:1 5033:4 5044:1 5045:2 5052:1 5054:1 5066:1 5072:1 5082:1 5098:1 5106:1 5136:2 5143:5 5162:1 5163:1 5168:1 5171:1 5198:1 5212:1 5236:1 5239:1 5246:3 5269:1 5276:1 5287:4 5290:2 5299:1 5312:1 5337:3 5340:6 5365:1 5369:3 5396:1 5397:2 5462:1 5471:1 5490:2 5491:1 5516:1 5517:1 5528:1 5530:1 5536:1 5562:38 5564:3 5596:2 5610:1 5641:1 5671:1 5688:1 5689:1 5690:3 5706:1 5717:3 5718:7 5719:4 5720:3 5722:1 5725:3 5730:2 5731:3 5733:4 5735:2 5740:2 5744:1 5748:1 5750:6 5752:3 5759:2 5763:1 5766:1 5770:1 5781:1 5788:1 5794:1 5811:1 5814:2 5825:2 5832:1 5844:2 5853:2 5855:1 5868:1 5873:1 5898:1 5907:1 5965:3 5975:1 6027:2 6038:1 6043:1 6084:3 6088:1 6089:1 6108:1 6115:1 6124:1 6144:3 6150:3 6165:2 6169:2 6181:1 6186:3 6224:1 6233:1 6237:1 6261:1 6283:3 6284:1 6292:1 6299:1 6300:1 6305:6 6318:1 6319:3 6322:1 6327:1 6328:1 6335:4 6345:3 6355:1 6372:2 6374:2 6382:2 6385:1 6388:1 6391:2 6395:1 6397:2 6400:1 6403:1 6407:2 6412:1 6418:2 6428:1 6431:1 6435:2 6454:1 6459:9 6469:1 6480:4 6496:1 6506:1 6508:2 6509:2 6518:1 6520:1 6529:1 6531:1 6533:1 6536:1 6537:1 6540:1 6547:2 6548:1 6553:1 6558:5 6561:1 6570:1 6581:4 6584:1 6598:1 6610:1 6624:1 6639:1 6643:1 6688:6 6692:5 6699:1 6706:1 6707:1 6722:1 6750:1 6761:1 6762:1 6773:1 6776:1 6793:1 6795:1 6806:1 6816:1 6819:3 6821:1 6827:1 6840:1 6843:1 6847:6 6863:2 6874:1 6884:1 6887:1 6888:2 6890:2 6897:4 6923:1 6935:1 6939:1 6944:1 6954:1 6961:8 6980:2 6983:1 6994:2 7003:1 7008:1 7012:2 7023:1 7025:1 7038:1 7044:1 7050:1 7059:1 7062:2 7066:1 7081:1 7087:3 7088:3 7089:3 7090:1 7091:1 7097:1 7101:1 7103:1 7114:2 7132:2 7150:1 7173:1 7190:3 7192:1 7193:1 7194:1 7196:2 7197:4 7200:4 7201:1 7204:3 7207:4 7209:3 7210:1 7211:3 7212:1 7217:1 7218:10 7221:1 7222:3 7224:1 7258:1 7272:1 7279:1 7303:1 7306:1 7307:2 7365:3 7378:1 7380:1 7381:1 7389:1 7406:2 7410:1 7429:3 7435:2 7439:1 7463:1 7469:1 7497:1 7511:1 7512:1 7535:2 7539:2 7543:1 7552:1 7557:1 7559:1 7570:2 7574:1 7589:2 7599:2 7602:2 7613:1 7619:1 7628:1 7637:2 7648:3 7649:1 7659:1 7662:1 7671:5 7672:1 7676:3 7677:1 7691:1 7705:5 7707:1 7714:1 7724:1 7741:1 7745:2 7748:1 7750:3 7766:1 7776:1 7782:1 7791:1 7792:1 7794:1 7809:1 7815:1 7822:1 7825:1 7833:1 7839:2 7840:1 7855:1 7867:1 7879:3 7884:1 7912:2 7913:1 7927:1 7941:2 7949:1 7954:1 7956:1 7961:1 7984:1 7988:2 7993:1 8007:2 8014:1 8016:1 8025:2 8027:2 8043:1 8045:1 8054:1 8064:1 8075:11 8089:2 8090:1 8105:2 8127:1 8129:1 8139:1 8143:5 8150:1 8155:1 8167:1 8168:1 8189:1 8196:1 8209:1 8216:1 8219:1 8230:1 8237:1 8247:1 8248:1 8258:2 8273:1 8277:4 8283:1 8299:1 8302:1 8328:3 8338:1 8340:1 8347:1 8383:1 8387:1 8389:4 8413:1 8417:4 8426:1 8432:4 8439:2 8446:1 8454:1 8474:1 8478:3 8491:1 8494:1 8498:1 8499:1 8504:1 8531:1 8560:1 8562:1 8567:1 8568:1 8570:1 8573:1 8575:1 8582:1 8585:1 8593:1 8599:1 8609:4 8611:1 8615:1 8617:1 8619:1 8624:5 8630:3 8631:8 8633:5 8653:1 8654:3 8659:2 8663:1 8684:1 8688:2 8689:1 8702:49 8716:1 8717:1 8725:1 8726:10 8728:9 8734:2 8748:1 8767:1 8783:1 8793:1 8796:2 8797:1 8810:1 8815:2 8816:2 8817:1 8818:1 8848:1 8860:1 8864:2 8874:2 8880:1 8886:1 8887:1 8890:1 8891:1 8901:1 8906:1 8909:2 8923:1 8930:1 8932:2 8935:8 8957:1 8960:1 8974:1 8982:6 8987:1 8992:1 9025:1 9048:2 9059:1 9094:2 9127:1 9135:1 9143:1 9157:7 9168:2 9179:1 9183:2 9186:2 9203:3 9209:1 9221:2 9222:1 9231:1 9232:20 9264:1 9267:1 9276:1 9279:1 9289:1 9295:1 9298:1 9299:1 9311:1 9324:1 9332:1 9333:1 9335:1 9339:1 9340:1 9381:1 9394:3 9425:1 9430:1 9435:1 9441:1 9466:1 9467:1 9470:1 9473:1 9484:2 9493:2 9507:2 9508:1 9529:1 9540:2 9541:1 9542:1 9544:3 9561:1 9563:1 9623:2 9630:1 9632:2 9633:1 9634:4 9637:1 9638:1 9640:1 9642:2 9644:2 9646:1 9648:3 9649:2 9654:4 9661:1 9665:1 9669:1 9675:1 9680:1 9688:1 9690:1 9697:3 9705:1 9742:1 9743:1 9744:1 9746:1 9770:1 9781:1 9788:1 9806:1 9807:1 9810:2 9815:1 9823:1 9826:1 9833:2 9836:1 9842:3 9857:1 9882:1 9901:3 9907:1 9923:1 9931:1 9937:2 9942:1 9945:2 9952:1 9965:2 9974:1 9976:3 9982:1 9988:1 9994:1 9999:1 10008:2 10015:1 10022:1 10027:3 10035:1 10054:1 10070:1 10087:1 10092:1 10095:2 10107:1 10117:1 10121:1 10124:1 10126:1 10138:1 10142:1 10150:2 10152:3 10159:1 10161:2 10171:1 10197:1 10209:2 10210:2 10232:1 10265:1 10275:1 10282:1 10291:1 10294:1 10307:3 10331:1 10332:1 10334:2 10337:1 10338:1 10340:1 10345:8 10349:1 10362:1 10367:1 10371:1 10373:1 10374:2 10376:1 10385:1 10389:1 10407:1 10417:1 10422:1 10430:1 10434:5 10435:1 10436:2 10445:1 10450:1 10454:1 10456:1 10459:1 10465:1 10479:1 10497:2 10502:1 10517:2 10518:1 10522:2 10524:1 10533:2 10540:1 10549:1 10554:1 10570:1 10575:1 10583:1 10584:2 10586:1 10591:1 10596:1 10598:1 10602:1 10619:1 10621:1 10623:1 10627:1 10643:2 10648:1 10666:2 10695:1 10709:5 10732:1 10747:1 10752:2 10764:1 10765:1 10792:1 10800:1 10804:1 10806:2 10807:2 10822:1 10828:2 10831:1 10846:1 10847:1 10858:1 10867:2 10876:1 10877:1 10886:1 10892:1 10893:1 10913:2 10948:11 10969:2 10970:1 10972:1 10973:4 10996:1 10997:2 10999:1 11008:1 11011:1 11020:1 11029:1 11030:1 11052:1 11063:2 11067:1 11079:1 11094:2 11119:2 11133:4 11141:1 11163:3 11167:1 11170:2 11171:1 11172:1 11175:2 11178:2 11188:3 11200:1 11201:1 11208:1 11210:4 11214:3 11215:1 11218:1 11222:1 11225:1 11226:1 11231:2 11232:3 11234:2 11235:1 11239:2 11242:2 11265:1 11266:2 11272:1 11276:5 11288:2 11291:1 11302:1 11305:1 11308:1 11309:1 11323:2 11324:1 11331:1 11339:1 11342:1 11356:1 11362:1 11376:8 11383:2 11415:1 11421:1 11431:1 11433:1 11438:1 11445:2 11448:2 11450:1 11451:1 11456:1 11464:1 11488:1 11492:1 11499:1 11517:2 11526:1 11550:1 11573:1 11575:1 11584:1 11588:1 11594:1 11601:1 11603:1 11607:4 11611:3 11637:2 11656:1 11660:1 11674:1 11677:3 11690:1 11692:1 11695:1 11697:1 11701:3 11717:1 11730:2 11741:1 11744:1 11778:1 11784:5 11795:1 11796:1 11811:1 11820:1 11822:8 11830:1 11841:1 11842:1 11846:1 11847:1 11854:1 11855:1 11858:1 11860:1 11895:1 11899:1 11906:3 11912:1 11914:3 11915:1 11930:1 11931:1 11933:1 11949:2 11955:1 11966:1 11992:1 12002:1 12005:1 12015:5 12023:1 12026:2 12031:1 12039:4 12042:1 12047:1 12050:3 12099:1 12109:1 12112:1 12145:1 12149:1 12154:2 12155:1 12162:1 12169:3 12197:1 12213:1 12214:1 12255:2 12266:1 12274:1 12275:1 12284:1 12307:2 12310:1 12319:1 12325:1 12327:3 12329:5 12333:1 12335:1 12336:4 12337:1 12339:1 12350:1 12352:2 12354:1 12356:1 12361:1 12369:1 12377:1 12378:2 12379:1 12389:1 12406:1 12427:1 12434:2 12438:1 12448:1 12461:1 12472:1 12475:1 12476:1 12477:2 12483:1 12487:1 12501:1 12526:1 12537:1 12545:1 12551:1 12552:1 12559:1 12580:1 12593:1 12596:1 12604:2 12607:1 12618:4 12630:2 12640:1 12647:1 12649:1 12672:1 12682:1 12733:1 12741:1 12743:1 12762:1 12764:1 12766:1 12770:1 12775:1 12776:1 12783:1 12789:1 12794:1 12805:1 12811:3 12814:3 12819:3 12821:1 12836:1 12845:1 12862:3 12865:13 12867:1 12876:1 12877:1 12893:1 12896:1 12902:1 12910:2 12915:1 12918:1 12923:1 12928:2 12929:1 12933:1 12935:3 12936:2 12952:1 12954:1 12970:1 12977:2 12988:3 12994:1 13000:1 13005:1 13009:1 13012:1 13015:1 13018:3 13027:1 13032:1 13050:3 13061:2 13064:1 13073:1 13081:1 13085:3 13088:8 13089:2 13094:2 13111:1 13116:1 13128:8 13135:1 13137:1 13138:2 13142:4 13143:1 13146:1 13148:1 13149:1 13150:2 13151:7 13152:1 13153:1 13156:1 13162:8 13168:1 13169:1 13192:1 13196:2 13202:1 13220:2 13228:1 13231:1 13239:2 13244:1 13254:2 13264:2 13285:1 13286:1 13294:2 13296:1 13302:1 13308:1 13320:7 13338:1 13365:1 13391:1 13408:1 13410:3 13415:1 13423:2 13427:1 13429:1 13434:1 13443:1 13448:2 13456:1 13461:1 13463:1 13473:5 13476:1 13480:2 13486:1 13510:1 13515:2 13517:3 13527:2 13552:2 13553:2 13556:1 13590:1 13592:1 13600:1 13606:2 13608:1 13611:1 13616:2 13621:1 13649:1 13653:2 13654:3 13662:1 13674:1 13684:3 13685:4 13690:1 13700:2 13718:3 13738:1 13742:1 13745:1 13750:3 13778:1 13805:1 13815:1 13821:3 13826:2 13830:1 13848:1 13863:2 13873:6 13874:1 13895:2 13896:3 13899:1 13921:1 13930:1 13933:1 13935:1 13939:1 13940:1 13973:1 13976:2 14004:2 14007:1 14011:1 14018:1 14021:1 14030:1 14037:1 14039:1 14055:1 14059:1 14061:2 14081:2 14101:1 14102:2 14119:1 14125:2 14146:1 14149:1 14162:4 14180:1 14183:2 14207:1 14210:1 14214:2 14242:1 14252:1 14256:2 14267:1 14281:1 14318:2 14319:1 14341:1 14345:10 14353:1 14356:2 14361:1 14370:3 14376:3 14380:1 14384:1 14402:1 14408:1 14409:1 14410:1 14416:1 14421:1 14436:2 14441:1 14443:1 14449:1 14468:1 14471:1 14472:1 14473:5 14480:2 14483:3 14489:2 14497:1 14518:2 14520:1 14541:1 14545:1 14572:1 14577:1 14581:1 14583:1 14589:2 14592:1 14605:1 14614:1 14620:1 14633:1 14640:1 14652:1 14658:2 14688:2 14697:1 14706:1 14753:1 14781:1 14791:1 14793:5 14804:1 14806:1 14831:1 14841:1 14854:3 14858:1 14859:1 14867:2 14870:2 14873:1 14877:7 14881:5 14883:1 14891:1 14895:1 14896:1 14904:5 14907:8 14915:1 14921:3 14935:2 14940:1 14942:2 14945:1 14949:3 14957:1 14958:2 14959:1 14960:1 14975:2 14979:1 14980:1 14999:1 15005:1 15016:1 15019:2 15028:1 15033:2 15039:9 15040:1 15047:2 15054:1 15059:1 15066:2 15075:1 15079:2 15082:1 15087:1 15122:1 15125:4 15131:1 15160:2 15161:1 15172:1 15187:1 15191:1 15212:1 15215:1 15216:1 15217:5 15236:1 15246:1 15251:1 15255:1 15259:1 15275:1 15278:1 15281:2 15293:1 15311:1 15322:1 15325:3 15333:2 15336:1 15361:1 15367:2 15374:3 15381:2 15386:1 15410:1 15429:1 15438:1 15443:1 15476:1 15477:3 15480:1 15483:2 15487:1 15488:2 15489:2 15496:1 15508:2 15513:1 15519:1 15520:1 15523:1 15542:1 15543:1 15551:1 15555:1 15574:4 15586:1 15616:7 15622:1 15625:2 15645:1 15662:1 15664:1 15666:2 15680:2 15704:1 15725:1 15728:5 15734:5 15740:2 15749:2 15780:2 15811:2 15820:2 15840:2 15855:1 15861:1 15864:1 15900:2 15905:1 15923:1 15929:2 15934:1 15938:1 15945:1 15955:1 15959:1 15960:2 15962:1 15974:4 15986:1 15990:1 15993:1 15996:2 15997:1 16000:3 16021:1 16026:1 16030:1 16033:1 16040:3 16042:1 16043:1 16046:1 16059:1 16063:1 16067:1 16071:1 16073:1 16092:1 16098:4 16114:1 16119:2 16136:1 16144:1 16145:1 16150:2 16152:1 16178:2 16183:1 16187:1 16189:1 16197:2 16198:1 16208:1 16214:1 16226:1 16227:4 16229:1 16236:1 16237:1 16254:1 16266:1 16270:1 16273:1 16284:1 16289:1 16321:1 16330:5 16347:1 16350:2 16351:1 16355:1 16362:1 16390:2 16393:2 16407:1 16411:1 16422:1 16427:2 16428:1 16433:2 16448:1 16450:1 16451:1 16457:2 16463:2 16484:4 16488:1 16508:3 16523:1 16534:1 16538:1 16556:2 16559:2 16566:5 16598:1 16606:2 16608:1 16630:1 16634:1 16642:1 16650:2 16655:1 16674:2 16678:1 16684:5 16687:1 16688:1 16693:1 16694:1 16721:2 16723:1 16739:1 16741:1 16753:1 16762:1 16782:8 16783:2 16787:1 16789:1 16793:1 16831:1 16832:4 16835:1 16842:1 16846:3 16848:1 16860:1 16884:3 16904:1 16922:1 16936:4 16940:2 16942:1 16944:1 16948:1 16971:3 16973:3 16984:1 16988:3 16990:1 16999:1 17012:2 17023:1 17042:1 17045:4 17046:1 17048:1 17053:2 17056:2 17061:1 17063:1 17098:2 17103:1 17105:1 17127:1 17140:1 17155:1 17176:1 17187:1 17194:3 17203:1 17214:1 17219:1 17224:2 17226:1 17246:1 17251:3 17269:1 17289:2 17293:1 17297:1 17314:1 17317:2 17318:1 17324:2 17334:1 17370:1 17379:1 17389:1 17406:1 17420:1 17423:16 17433:2 17437:1 17448:1 17479:2 17489:2 17499:1 17503:2 17514:1 17516:1 17528:3 17531:1 17539:1 17543:1 17553:1 17567:1 17571:1 17576:1 17581:1 17586:2 17596:1 17598:1 17610:1 17648:1 17661:3 17673:1 17681:1 17689:13 17694:1 17695:1 17698:1 17699:3 17700:3 17709:1 17710:3 17714:1 17715:1 17718:1 17722:1 17729:5 17731:2 17740:1 17748:1 17752:1 17756:1 17758:1 17767:1 17771:1 17775:2 17776:1 17783:1 17784:2 17805:5 17824:1 17829:1 17830:2 17857:3 17860:2 17866:1 17871:1 17876:1 17878:1 17880:1 17884:1 17888:5 17930:1 17951:1 17953:4 17955:2 17989:1 18008:1 18009:1 18010:1 18016:1 18049:3 18053:4 18074:4 18079:1 18108:2 18111:1 18114:1 18141:1 18148:1 18157:3 18160:1 18187:1 18195:13 18199:1 18214:3 18220:1 18226:1 18227:1 18234:3 18236:1 18243:2 18247:1 18258:1 18260:1 18273:1 18281:2 18289:2 18301:1 18302:1 18306:1 18308:2 18313:1 18315:1 18319:4 18321:2 18322:1 18323:1 18327:1 18329:1 18330:1 18332:3 18340:2 18341:1 18342:5 18344:1 18351:1 18352:3 18372:1 18375:1 18401:1 18416:1 18417:2 18426:1 18492:3 18527:2 18537:1 18546:1 18561:1 18584:1 18603:1 18619:1 18621:1 18635:2 18672:1 18683:1 18684:1 18693:1 18697:1 18699:1 18702:1 18708:1 18716:2 18717:1 18727:1 18732:1 18733:1 18738:1 18739:2 18743:1 18764:1 18777:2 18785:1 18794:1 18799:3 18807:1 18808:2 18821:1 18842:3 18879:1 18896:1 18900:1 18908:1 18911:3 18919:5 18928:1 18949:1 18966:1 18967:1 18978:1 18987:1 19000:1 19005:1 19024:1 19029:3 19030:1 19035:1 19039:1 19043:1 19049:1 19050:1 19059:7 19062:4 19069:2 19081:1 19089:3 19103:2 19108:1 19117:1 19126:1 19135:1 19139:5 19155:1 19165:3 19169:2 19177:1 19182:1 19200:4 19207:2 19208:1 19209:1 19212:1 19213:1 19216:3 19233:2 19246:1 19248:2 19250:1 19261:2 19262:1 19276:1 19295:1 19296:1 19320:10 19329:1 19333:2 19345:1 19349:1 19351:1 19352:1 19354:1 19357:3 19362:1 19372:1 19384:1 19398:2 19417:1 19432:2 19443:1 19444:2 19448:2 19452:1 19465:2 19471:1 19493:2 19503:1 19508:2 19509:1 19526:1 19532:1 19536:1 19559:1 19566:1 19567:1 19583:1 19585:1 19622:1 19628:1 19634:1 19637:1 19638:1 19643:1 19655:1 19659:1 19663:2 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19758:1 19763:3 19772:5 19774:1 19776:1 19781:2 19783:3 19784:1 19794:1 19797:1 19809:1 19816:1 19819:1 19843:3 19849:2 19850:1 19867:1 19872:1 19897:1 19904:1 19910:2 19919:1 19936:1 19951:2 19962:1 19965:1 19966:1 20000:1 20007:2 20008:1 20020:2 20031:1 20032:2 20045:1 20075:1 20077:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:2 20123:2 20124:8 20128:4 20136:2 20142:1 20143:1 20146:2 20163:1 20166:3 20174:1 20180:1 20181:1 20183:1 20200:1 20202:1 20219:1 20220:1 20225:3 20230:1 20231:1 20237:1 20239:1 20241:1 20243:2 20286:1 20287:1 20292:1 20294:1 20300:2 20309:2 20341:1 20360:1 20373:1 20391:1 20394:2 20395:1 20400:1 20405:1 20406:1 20407:2 20410:1 20412:1 20416:1 20437:1 20441:1 20454:1 20458:1 20460:1 20477:1 20492:2 20499:1 20503:1 20508:1 20514:1 20516:1 20517:1 20518:1 20524:1 20525:1 20540:1 20548:1 20561:1 20569:1 20635:4 20645:1 20673:1 20681:3 20682:1 20692:2 20697:2 20706:1 20709:1 20742:3 20760:1 20761:1 20773:1 20792:1 20803:7 20814:2 20815:4 20831:1 20851:1 20876:1 20893:2 20894:2 20895:1 20900:2 20906:1 20929:2 20936:1 20942:2 20949:2 20951:1 20970:1 20974:2 20983:3 20996:2 21003:2 21004:2 21010:1 21016:2 21041:1 21047:3820 21068:3 21070:2 21079:2 21087:1 21096:1 21109:1 21164:2 21166:1 21173:2 21178:1 21205:1 21227:1 21234:1 21241:2 21260:1 21278:1 21279:4 21291:1 21292:4 21294:1 21295:2 21300:1 21308:1 21355:1 21362:1 21372:1 21374:1 21378:1 21382:1 21398:1 21401:3 21408:1 21419:1 21421:1 21431:1 21444:1 21449:2 21464:1 21466:2 21476:1 21478:1 21487:1 21510:1 21512:1 21515:3 21518:2 21520:1 21532:1 21539:1 21551:1 21566:1 21571:1 21585:1 21601:1 21602:1 21605:1 21609:1 21630:1 21644:1 21689:3 21692:1 21709:2 21729:1 21735:4 21790:1 21797:2 21801:1 21802:1 21806:1 21808:1 21812:1 21813:1 21817:1 21821:2 21827:3 21833:2 21843:1 21845:1 21856:2 21861:2 21863:1 21874:1 21877:3 21883:1 21895:2 21907:1 21918:2 21921:7 21952:1 21953:8 21959:1 21960:1 21961:1 21966:2 21976:1 21992:1 22001:2 22020:3 22025:3 22029:2 22032:3 22039:1 22041:1 22043:2 22045:2 22072:4 22082:1 22095:3 22107:2 22119:1 22127:1 22138:1 22143:1 22157:1 22162:1 22173:3 22174:1 22178:3 22181:1 22214:1 22227:1 22229:1 22235:1 22240:1 22245:3 22262:1 22267:1 22271:1 22281:2 22294:1 22301:5 22306:1 22311:1 22318:1 22325:1 22333:1 22344:1 22351:1 22364:1 22370:1 22375:1 22382:1 22404:5 22415:1 22423:5 22459:1 22462:1 22479:2 22483:1 22493:1 22495:1 22503:2 22504:1 22508:2 22518:1 22526:2 22530:1 22540:1 22545:1 22548:3 22553:1 22562:1 22565:3 22569:1 22572:1 22573:2 22583:1 22586:1 22603:1 22615:1 22617:1 22626:3 22638:1 22644:2 22655:1 22669:1 22681:4 22688:2 22690:1 22698:1 22713:1 22737:3 22740:1 22750:1 22766:2 22774:1 22776:1 22791:1 22793:1 22794:1 22803:1 22815:5 22819:1 22824:1 22829:1 22833:1 22834:1 22835:1 22837:1 22845:1 22851:1 22852:1 22870:7 22871:1 22877:2 22886:1 22889:2 22952:1 22954:1 22966:1 22984:2 22992:1 23002:1 23004:1 23005:2 23036:2 23046:1 23055:1 23059:2 23100:1 23108:3 23113:1 23114:1 23116:1 23129:1 23147:2 23156:2 23160:5 23163:1 23164:1 23169:4 23172:1 23175:1 23183:1 23229:1 23243:1 23256:1 23257:1 23277:1 23279:1 23281:1 23286:1 23288:1 23290:1 23330:1 23353:1 23359:1 23363:1 23367:1 23373:1 23381:1 23383:1 23390:1 23415:2 23416:1 23419:1 23432:1 23434:1 23444:4 23447:2 23449:2 23453:1 23456:1 23463:1 23471:1 23490:5 23504:2 23518:1 23521:2 23522:1 23523:1 23527:2 23529:2 23532:2 23544:4 23550:3 23556:1 23560:2 23561:1 23570:1 23572:1 23574:1 23580:3 23583:1 23585:1 23596:1 23609:1 23612:1 23617:1 23622:2 23626:1 23644:2 23649:2 23656:1 23657:1 23658:1 23663:1 23669:2 23723:2 23728:1 23729:1 23736:1 23737:1 23745:8 23746:1 23751:1 23752:2 23756:2 23765:1 23770:1 23773:1 23782:1 23785:1 23790:1 23800:1 23802:2 23831:1 23837:1 23852:1 23853:2 23857:1 23858:1 23859:1 23861:1 23863:1 23891:1 23898:1 23899:1 23901:1 23912:1 23917:1 23919:2 23927:1 23931:1 23943:1 23949:1 23951:1 23953:2 23955:3 23983:1 23985:1 23991:1 24009:1 24013:1 24024:5 24032:1 24039:1 24057:4 24058:1 24074:1 24078:1 24082:2 24090:1 24093:1 24098:1 24099:1 24113:2 24114:1 24133:1 24138:1 24143:1 24144:1 24151:2 24166:2 24168:1 24194:1 24195:1 24197:1 24198:1 24201:1 24205:3 24206:2 24207:1 24208:1 24214:1 24216:1 24217:1 24218:1 24222:1 24225:1 24226:3 24229:1 24241:1 24242:1 24250:1 24255:2 24262:2 24263:3 24270:1 24274:1 24276:2 24279:1 24289:1 24298:1 24308:1 24314:1 24319:1 24321:1 24323:1 24334:1 24358:1 24359:2 24366:6 24368:1 24369:1 24373:2 24379:1 24383:2 24386:1 24394:2 24398:1 24401:1 24417:1 24418:1 24425:1 24427:1 24442:1 24449:1 24467:1 24474:1 24477:1 24478:3 24487:1 24493:7 24502:1 24504:1 24527:1 24541:1 24542:5 24550:2 24578:1 24587:1 24601:3 24618:1 24636:1 24639:1 24643:2 24647:2 24650:3 24660:1 24677:1 24678:1 24681:1 24685:3 24687:1 24690:6 24692:3 24695:1 24698:1 24701:1 24706:2 24727:1 24742:2 24775:1 24788:2 24792:1 24805:4 24840:1 24841:1 24847:1 24854:1 24857:1 24858:1 24860:1 24874:1 24887:1 24904:1 24907:1 24916:3 24921:1 24925:2 24933:4 24936:1 24937:1 24943:1 24957:1 24959:1 24966:1 24969:1 24972:2 24974:1 24975:1 24983:1 24985:2 24990:3 25003:1 25011:1 25015:1 25017:1 25021:2 25022:1 25027:1 25032:1 25034:1 25036:1 25041:1 25048:1 25064:1 25072:2 25077:2 25093:1 25097:3 25100:1 25114:1 25115:2 25126:1 25127:1 25133:1 25134:2 25139:2 25149:1 25156:3 25167:4 25170:1 25173:1 25183:1 25184:3 25189:1 25191:1 25197:1 25221:1 25224:9 25233:3 25238:1 25245:2 25298:1 25300:1 25306:5 25337:6 25343:1 25346:1 25356:2 25357:1 25364:3 25366:1 25367:5 25369:1 25371:1 25388:1 25401:1 25413:1 25415:1 25416:1 25423:1 25431:2 25434:2 25437:1 25454:1 25464:1 25474:4 25494:5 25508:1 25510:1 25513:2 25515:1 25516:3 25526:2 25545:4 25548:1 25552:4 25557:1 25561:3 25562:1 25569:1 25582:3 25590:1 25595:2 25599:2 25600:1 25621:1 25623:1 25624:1 25635:4 25639:1 25646:1 25659:3 25662:2 25666:1 25669:5 25670:1 25672:1 25674:5 25678:3 25713:1 25714:1 25724:1 25726:1 25732:1 25798:1 25810:1 25831:1 25834:1 25841:1 25850:1 25865:2 25878:1 25883:1 25884:1 25887:1 25897:1 25916:1 25920:1 25958:1 25962:1 25967:1 26002:3 26017:1 26019:4 26025:1 26031:1 26032:1 26035:1 26036:1 26046:1 26047:1 26056:4 26062:1 26073:1 26084:1 26088:1 26106:1 26110:2 26133:1 26150:1 26158:1 26160:1 26188:2 26195:1 26201:1 26217:1 26218:1 26223:1 26239:1 26243:1 26253:1 26255:1 26263:2 26269:2 26270:3 26278:2 26279:1 26286:4 26314:1 26320:1 26324:2 26328:1 26329:2 26331:1 26334:1 26354:2 26364:1 26367:1 26390:1 26403:1 26405:1 26407:1 26411:1 26414:1 26423:2 26434:1 26435:1 26437:4 26442:2 26445:2 26459:1 26470:1 26481:1 26482:1 26488:1 26490:3 26502:7 26530:1 26535:1 26549:1 26550:1 26557:2 26565:1 26577:1 26579:1 26581:1 26582:1 26584:2 26605:1 26606:1 26608:1 26646:2 26665:2 26675:1 26679:1 26681:1 26685:1 26686:1 26689:3 26705:1 26718:1 26726:1 26729:1 26762:1 26768:1 26780:1 26785:1 26793:1 26794:1 26839:1 26850:1 26867:1 26872:2 26873:1 26879:1 26890:1 26897:1 26898:1 26902:2 26932:1 26954:1 26961:1 26964:1 26966:1 26967:1 26977:1 26979:1 26984:3 26991:1 26996:1 26998:1 27020:2 27049:1 27052:1 27063:1 27065:3 27075:2 27076:1 27100:4 27105:1 27115:2 27116:1 27126:1 27133:1 27134:1 27144:3 27151:1 27171:1 27182:1 27186:1 27196:2 27198:1 27201:1 27202:1 27211:1 27222:2 27223:2 27224:1 27226:1 27227:6 27231:1 27233:1 27245:3 27247:1 27265:1 27276:1 27280:1 27295:1 27299:3 27300:1 27305:2 27317:1 27335:1 27336:3 27344:1 27351:1 27357:1 27358:1 27365:1 27376:1 27383:1 27390:1 27408:2 27412:1 27429:2 27436:2 27460:1 27466:1 27470:4 27471:3 27479:1 27481:1 27483:2 27484:2 27486:1 27487:4 27488:1 27489:3 27490:2 27496:1 27498:4 27508:2 27511:2 27519:1 27527:2 27530:3 27539:5 27547:1 27557:1 27578:1 27580:2 27586:1 27603:2 27608:1 27612:2 27616:1 27622:1 27626:2 27654:1 27655:2 27661:1 27664:3 27669:1 27674:1 27679:1 27681:2 27683:2 27687:2 27689:3 27691:2 27692:1 27705:1 27711:1 27713:1 27749:1 27754:1 27797:12 27798:1 27799:1 27815:1 27821:10 27835:1 27839:4 27842:2 27854:1 27855:1 27858:1 27862:1 27864:1 27871:2 27876:3 27890:2 27892:1 27912:2 27915:3 27953:1 27980:1 27986:2 27987:2 27994:1 28003:1 28024:1 28030:1 28046:1 28052:2 28064:1 28065:1 28069:1 28074:1 28078:1 28082:1 28094:1 28101:1 28110:1 28113:2 28115:1 28133:2 28149:1 28164:1 28169:1 28173:1 28209:1 28224:1 28241:1 28275:1 28293:1 28294:1 28303:1 28308:1 28319:2 28348:3 28349:9 28351:1 28369:1 28382:10 28384:1 28393:1 28394:1 28397:1 28401:1 28402:1 28413:4 28420:1 28424:2 28425:1 28430:1 28501:1 28502:1 28527:1 28533:2 28536:2 28558:1 28576:1 28592:1 28593:1 28614:3 28617:1 28631:1 28632:5 28635:3 28636:1 28643:1 28651:1 28658:1 28664:1 28670:2 28672:1 28673:1 28674:2 28685:1 28694:2 28722:1 28730:1 28731:3 28736:1 28737:1 28759:4 28773:1 28776:1 28787:1 28803:3 28809:1 28833:2 28847:1 28884:1 28885:1 28921:1 28926:1 28944:1 28948:6 28966:1 28969:2 28976:1 28983:1 28995:1 29005:4 29007:3 29012:2 29021:1 29032:1 29042:1 29114:1 29136:1 29137:2 29149:2 29152:2 29154:1 29203:1 29211:1 29225:1 29226:2 29233:1 29241:1 29263:2 29266:1 29277:1 29279:3 29283:1 29287:1 29290:1 29298:2 29305:1 29313:1 29329:1 29330:1 29336:1 29339:1 29342:1 29344:1 29345:1 29346:1 29349:1 29351:2 29356:1 29359:2 29378:1 29383:1 29394:1 29419:1 29421:7 29433:1 29448:1 29450:2 29474:1 29483:1 29485:1 29496:1 29508:1 29515:8 29521:2 29529:3 29535:1 29547:1 29559:1 29562:1 29567:2 29570:1 29578:1 29583:2 29605:4 29612:1 29623:1 29632:1 29643:3 29649:1 29654:1 29658:1 29671:1 29676:4 29697:1 29702:1 29704:4 29711:1 29721:1 29724:1 29728:1 29729:1 29730:1 29735:1 29745:1 29775:1 29783:1 29800:1 29801:1 29820:2 29822:2 29824:1 29825:1 29826:1 29831:2 29839:1 29841:1 29845:1 29847:1 29899:1 29904:1 29916:2 29927:1 29931:1 29958:4 29969:1 29971:4 29972:2 29973:1 29974:4 29977:1 29995:1 29999:1 30002:2 30015:1 30035:1 30040:1 30044:1 30052:1 30059:1 30096:2 30100:2 30105:1 30142:1 30149:2 30156:2 30168:2 30169:1 30180:1 30191:1 30199:1 30204:1 30213:2 30231:6 30249:1 30252:1 30267:1 30285:1 30297:2 30305:1 30306:1 30315:1 30327:2 30330:1 30331:2 30342:1 30357:1 30360:1 30370:1 30380:5 30390:1 30393:2 30420:1 30431:1 30435:1 30445:2 30454:1 30466:1 30471:1 30475:4 30501:4 30504:3 30507:2 30510:2 30532:1 30548:2 30552:2 30572:2 30587:9 30589:3 30602:1 30606:1 30628:1 30638:1 30653:1 30660:2 30663:1 30664:7 30683:1 30685:1 30688:1 30689:2 30697:1 30704:6 30710:1 30718:2 30730:1 30738:1 30775:1 30776:1 30789:2 30798:6 30802:4 30805:3 30809:2 30814:3 30822:1 30834:1 30835:1 30843:4 30846:1 30854:2 30863:1 30864:1 30867:1 30868:2 30869:1 30875:2 30880:1 30883:1 30884:2 30892:2 30895:2 30908:2 30910:1 30946:2 30956:2 30960:1 30967:2 30968:1 30971:2 30977:2 30988:1 30994:2 30999:1 31009:1 31019:1 31020:1 31031:1 31042:1 31046:3 31057:2 31062:1 31065:1 31074:1 31082:1 31095:1 31101:1 31104:2 31107:1 31113:1 31125:2 31127:1 31130:1 31135:1 31142:2 31144:1 31158:2 31161:1 31172:2 31184:2 31191:1 31195:2 31197:3 31206:1 31209:1 31216:8 31221:1 31227:1 31235:1 31287:1 31306:1 31315:2 31322:2 31324:1 31360:2 31363:2 31370:2 31388:2 31391:1 31392:3 31398:1 31404:1 31422:2 31440:3 31448:1 31452:3 31459:1 31461:4 31463:1 31476:2 31478:1 31480:2 31484:2 31485:3 31491:1 31494:1 31521:1 31531:5 31538:1 31543:1 31545:1 31547:1 31553:1 31554:1 31566:2 31576:3 31581:1 31583:1 31590:1 31622:1 31625:1 31635:2 31640:1 31647:1 31649:1 31658:2 31665:24 31667:3 31670:2 31674:2 31679:2 31680:4 31684:2 31686:2 31688:2 31704:11 31721:3 31722:1 31727:1 31730:1 31750:1 31761:3 31763:1 31783:1 31790:1 31806:1 31818:1 31821:1 31827:2 31834:7 31842:2 31846:1 31853:1 31877:8 31894:2 31897:2 31910:1 31911:1 31921:1 31932:1 31938:2 31952:1 31954:1 31960:1 31962:1 31964:1 31974:1 31976:1 31998:2 32009:1 32027:1 32035:2 32041:1 32042:1 32047:1 32053:1 32060:1 32061:1 32070:1 32083:1 32085:1 32094:1 32097:1 32103:1 32105:2 32117:1 32125:1 32128:1 32140:2 32142:1 32153:1 32171:2 32172:3 32181:1 32201:1 32207:1 32212:1 32229:1 32241:6 32244:7 32277:2 32280:3 32289:1 32299:1 32303:1 32304:1 32310:1 32311:2 32312:1 32319:1 32335:3 32348:1 32403:1 32407:1 32420:1 32433:1 32439:2 32443:7 32447:1 32451:1 32456:1 32471:4 32472:1 32476:1 32487:2 32491:4 32499:1 32548:1 32551:1 32552:2 32579:1 32619:1 32625:1 32628:1 32632:1 32650:1 32651:1 32656:2 32660:1 32661:1 32675:1 32693:3 32697:1 32713:5 32719:1 32722:1 32724:2 32750:3 32768:1 32791:1 32795:1 32803:1 32808:2 32814:2 32818:1 32824:1 32834:1 32843:1 32846:2 32885:2 32899:1 32900:2 32910:2 32934:1 32935:1 32941:3 32944:3 32956:2 32963:2 33001:3 33019:1 33025:1 33038:1 33041:8 33055:1 33056:3 33057:1 33059:1 33075:1 33083:1 33084:1 33101:1 33105:2 33108:1 33115:1 33118:1 33133:1 33138:1 33141:3 33143:2 33146:1 33148:2 33149:2 33155:10 33156:1 33164:2 33167:5 33168:1 33171:5 33182:1 33198:2 33211:1 33220:3 33224:1 33225:1 33226:1 33232:1 33234:2 33267:1 33271:3
11 1:1 2:1 6:1 27:1 31:1 34:1 39:2 49:1 53:1 55:1 60:2 64:1 67:1 84:1 85:1 86:1 93:1 95:1 99:2 106:1 116:1 126:1 148:1 150:3 153:1 159:1 166:2 170:1 181:2 183:1 187:2 215:1 232:1 238:6 241:1 256:1 265:1 268:1 282:1 283:2 294:3 296:2 299:1 313:1 322:1 336:1 344:1 347:1 357:1 362:2 378:1 401:1 402:1 403:5 411:2 415:2 427:2 446:1 455:2 460:1 498:1 507:8 513:1 523:1 546:2 582:2 586:3 621:1 627:1 646:2 654:1 698:1 712:1 717:4 721:1 731:7 745:1 753:2 759:3 764:4 765:1 766:1 774:1 789:1 790:2 795:1 807:1 808:1 815:2 829:1 866:2 899:1 937:1 951:2 955:1 956:1 971:2 974:1 979:1 984:1 1000:1 1003:2 1022:3 1049:2 1053:1 1057:1 1067:2 1069:1 1070:1 1071:7 1073:1 1080:1 1082:1 1083:1 1094:1 1103:1 1106:2 1117:1 1118:1 1125:1 1127:1 1130:6 1132:1 1134:1 1141:2 1142:1 1144:1 1147:1 1158:2 1161:1 1165:1 1168:3 1171:3 1199:1 1204:4 1211:1 1216:3 1218:1 1220:1 1236:3 1239:1 1244:1 1257:1 1262:1 1265:1 1284:1 1287:1 1309:1 1311:2 1316:1 1318:1 1321:1 1322:1 1340:1 1351:2 1376:1 1378:1 1388:1 1392:1 1393:1 1403:1 1405:2 1409:1 1413:1 1415:1 1420:1 1421:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:2 1465:1 1467:1 1480:1 1481:1 1487:2 1494:1 1496:2 1504:1 1509:1 1514:2 1532:1 1538:2 1539:1 1545:1 1547:1 1588:2 1624:1 1626:2 1630:1 1635:1 1645:1 1650:1 1658:1 1664:4 1683:2 1686:1 1690:2 1691:1 1719:1 1726:7 1730:11 1739:11 1745:1 1747:1 1749:2 1751:2 1759:1 1771:1 1793:1 1799:1 1807:1 1808:1 1813:1 1837:4 1839:4 1841:1 1844:1 1869:1 1878:2 1883:8 1884:1 1892:1 1899:1 1906:2 1917:7 1941:2 1943:1 1948:1 1955:1 1956:1 1957:1 1960:1 1963:1 1966:1 1973:1 1977:2 1980:1 1991:1 1999:1 2003:1 2019:2 2027:1 2037:1 2041:1 2061:1 2062:1 2073:2 2078:1 2080:1 2086:1 2098:1 2113:1 2118:1 2119:1 2133:3 2135:1 2136:1 2137:3 2138:2 2141:1 2157:1 2158:1 2169:1 2177:2 2180:2 2187:1 2195:6 2198:1 2209:2 2214:1 2223:1 2225:2 2237:1 2241:1 2246:1 2249:2 2255:2 2263:2 2265:1 2269:1 2279:1 2284:2 2301:3 2304:1 2317:3 2322:1 2329:1 2345:1 2348:1 2355:1 2367:1 2372:1 2373:6 2381:1 2397:1 2399:1 2406:1 2419:1 2421:1 2422:1 2429:1 2437:1 2441:2 2444:1 2465:1 2482:5 2496:1 2502:3 2508:1 2509:1 2519:1 2521:2 2525:2 2529:1 2530:1 2537:1 2547:1 2551:3 2552:1 2553:1 2555:5 2558:7 2559:1 2562:1 2563:2 2564:1 2568:1 2570:1 2573:3 2576:2 2578:3 2579:3 2583:1 2585:1 2587:1 2613:1 2616:2 2618:3 2620:3 2623:3 2624:6 2625:2 2626:1 2630:3 2631:3 2632:2 2634:2 2635:2 2637:1 2640:2 2642:5 2647:6 2648:2 2652:1 2657:3 2662:2 2663:1 2681:1 2713:1 2720:1 2732:1 2738:1 2739:1 2742:1 2753:2 2769:1 2774:1 2784:1 2788:1 2795:2 2801:3 2821:1 2831:3 2832:1 2864:1 2867:2 2868:1 2878:1 2888:1 2890:2 2896:1 2905:2 2918:2 2923:1 2934:1 2951:2 2953:1 2955:1 2962:1 2964:1 2979:1 2985:1 2992:1 2993:1 3008:2 3017:2 3030:1 3033:1 3039:1 3042:1 3049:1 3051:1 3059:1 3069:1 3071:1 3075:1 3080:4 3097:1 3098:1 3106:8 3116:2 3121:2 3134:2 3145:1 3157:1 3165:3 3171:1 3173:2 3181:1 3182:2 3193:1 3195:1 3197:2 3201:4 3213:2 3223:1 3257:3 3263:2 3283:1 3284:7 3291:1 3294:1 3295:12 3301:1 3302:2 3314:2 3318:2 3336:4 3350:2 3351:1 3352:1 3353:13 3360:1 3364:2 3369:1 3377:1 3379:1 3380:1 3386:1 3397:1 3408:1 3411:2 3418:2 3433:2 3464:1 3474:1 3475:1 3482:1 3484:1 3504:1 3517:1 3529:1 3539:1 3549:1 3550:3 3572:1 3578:2 3588:1 3625:1 3645:1 3646:1 3683:1 3690:5 3702:3 3707:1 3721:4 3726:1 3744:1 3755:1 3758:5 3762:1 3765:1 3769:1 3772:1 3790:1 3799:1 3816:1 3821:1 3822:3 3853:1 3856:1 3857:2 3868:1 3875:2 3882:1 3917:2 3926:1 3930:4 3936:2 3939:1 3942:2 3945:1 3951:1 3968:2 3971:1 3974:2 3978:1 3990:1 3992:2 4005:1 4011:1 4012:1 4018:1 4020:2 4033:1 4035:2 4040:1 4047:3 4060:2 4071:2 4074:1 4103:1 4105:1 4112:1 4115:1 4122:1 4131:1 4134:1 4153:1 4160:4 4174:5 4178:1 4188:1 4193:3 4195:1 4207:1 4225:2 4245:1 4247:2 4252:4 4253:16 4263:1 4267:1 4271:1 4279:3 4288:4 4289:4 4291:2 4292:1 4300:2 4303:1 4306:7 4308:2 4330:1 4331:1 4332:5 4334:1 4346:1 4351:3 4356:1 4361:1 4378:3 4382:1 4391:1 4405:1 4434:1 4437:1 4454:2 4456:2 4465:1 4470:1 4477:1 4484:1 4487:1 4488:1 4510:4 4511:1 4512:1 4529:2 4531:2 4533:1 4536:3 4540:2 4545:3 4547:2 4573:1 4574:2 4575:1 4581:2 4585:1 4593:1 4605:1 4609:1 4628:2 4635:1 4637:1 4663:1 4667:2 4684:1 4686:2 4704:1 4713:1 4714:1 4722:1 4727:1 4728:1 4730:1 4741:1 4758:1 4763:5 4767:8 4773:1 4785:1 4792:1 4793:4 4819:1 4824:2 4842:2 4848:1 4863:1 4871:1 4872:5 4877:2 4888:2 4889:1 4906:1 4907:1 4924:1 4929:1 4933:1 4936:2 4951:1 4959:1 4974:1 4979:1 4980:1 4989:1 4991:1 5000:1 5020:1 5022:1 5025:1 5030:1 5033:4 5044:1 5045:2 5052:1 5054:1 5066:1 5072:1 5082:1 5098:1 5106:1 5136:2 5143:5 5162:1 5163:1 5168:1 5171:1 5198:1 5212:1 5236:1 5239:1 5246:3 5269:1 5276:1 5287:4 5290:2 5299:1 5312:1 5337:3 5340:6 5365:2 5369:3 5396:1 5397:2 5456:1 5462:1 5471:1 5490:2 5491:1 5516:1 5517:1 5528:1 5530:1 5536:1 5562:38 5564:3 5596:2 5610:1 5641:1 5671:1 5684:1 5688:1 5689:1 5690:3 5706:1 5717:3 5718:7 5719:4 5720:3 5722:1 5725:4 5730:2 5731:3 5733:4 5735:2 5740:2 5744:1 5748:1 5750:6 5752:3 5759:3 5763:1 5766:1 5770:1 5781:1 5788:1 5794:1 5797:1 5811:1 5814:2 5825:2 5832:1 5844:2 5853:2 5855:1 5868:1 5873:1 5898:1 5907:2 5965:3 5975:1 6027:2 6033:1 6038:1 6043:1 6084:3 6088:1 6089:1 6108:1 6115:1 6124:1 6144:3 6150:3 6165:2 6169:2 6181:1 6186:3 6224:1 6233:1 6237:1 6261:1 6283:3 6284:1 6292:1 6299:1 6300:1 6305:6 6318:1 6319:3 6322:1 6327:1 6328:1 6335:4 6345:3 6355:1 6372:2 6374:2 6382:2 6385:1 6388:1 6391:2 6395:1 6397:2 6400:1 6403:1 6407:2 6412:1 6418:2 6428:1 6431:1 6435:2 6454:1 6459:9 6469:1 6480:4 6496:1 6506:1 6508:2 6509:3 6518:1 6520:1 6529:1 6531:1 6533:1 6536:1 6537:1 6540:1 6547:2 6548:1 6553:1 6558:5 6561:1 6570:1 6581:4 6584:1 6598:1 6610:1 6624:1 6639:1 6643:1 6688:6 6692:5 6699:1 6706:1 6707:1 6722:1 6750:1 6761:1 6762:1 6773:1 6776:1 6793:1 6795:1 6806:1 6816:1 6819:3 6821:2 6827:1 6840:1 6843:1 6845:1 6847:6 6863:2 6874:1 6884:1 6885:1 6887:1 6888:2 6890:2 6897:4 6923:1 6935:1 6939:1 6944:1 6954:1 6961:8 6980:2 6983:1 6994:2 7003:1 7008:1 7012:2 7023:1 7025:1 7038:1 7044:1 7050:1 7059:1 7062:2 7066:1 7081:1 7087:3 7088:3 7089:3 7090:1 7091:1 7097:2 7101:1 7103:1 7114:2 7132:2 7150:1 7173:1 7190:3 7192:1 7193:1 7194:1 7196:2 7197:4 7200:4 7201:1 7204:3 7207:4 7209:3 7210:1 7211:3 7212:1 7217:1 7218:10 7221:1 7222:3 7224:1 7258:1 7272:1 7279:1 7303:1 7306:1 7307:2 7365:3 7378:1 7380:1 7381:1 7389:1 7406:2 7410:1 7429:3 7435:2 7439:1 7463:1 7469:1 7497:1 7511:1 7512:1 7535:2 7539:2 7543:1 7552:1 7557:1 7559:1 7570:2 7574:1 7589:2 7599:2 7602:2 7613:1 7619:1 7628:1 7637:2 7648:3 7649:1 7659:1 7662:1 7671:5 7672:1 7676:3 7677:1 7691:1 7705:6 7707:1 7714:1 7724:1 7741:1 7745:2 7748:1 7750:3 7766:1 7776:1 7782:1 7791:1 7792:1 7794:1 7809:1 7815:1 7822:1 7825:1 7833:1 7839:2 7840:1 7855:1 7867:1 7879:3 7884:1 7912:2 7913:1 7927:1 7941:2 7949:1 7954:1 7956:1 7961:1 7984:1 7988:2 7993:1 8007:2 8014:1 8016:1 8025:2 8027:2 8043:1 8045:1 8054:1 8064:1 8075:11 8089:2 8090:1 8105:2 8127:1 8129:1 8139:1 8143:5 8150:1 8155:2 8167:1 8168:1 8189:1 8196:1 8209:1 8216:1 8219:1 8230:1 8237:1 8247:1 8248:1 8258:2 8273:1 8277:4 8283:1 8299:1 8302:1 8328:3 8338:1 8340:1 8347:1 8383:1 8387:1 8389:4 8413:1 8417:4 8426:1 8432:4 8439:2 8446:1 8454:1 8474:1 8478:3 8491:1 8494:1 8498:1 8499:1 8504:1 8531:1 8560:1 8562:1 8567:1 8568:1 8570:1 8573:1 8575:1 8582:1 8585:1 8593:1 8599:1 8609:4 8611:1 8615:1 8617:1 8619:1 8624:5 8630:3 8631:8 8633:5 8653:1 8654:3 8659:2 8663:1 8684:1 8688:2 8689:1 8702:50 8716:1 8717:1 8725:1 8726:10 8728:9 8734:2 8748:1 8767:1 8783:1 8793:1 8796:2 8797:1 8810:1 8815:2 8816:2 8817:1 8818:1 8826:1 8848:1 8860:1 8864:2 8874:2 8880:1 8886:1 8887:1 8890:1 8891:1 8901:1 8906:1 8909:2 8923:1 8930:1 8932:2 8935:8 8957:1 8960:1 8974:1 8982:6 8987:1 8992:1 9025:1 9048:2 9059:1 9094:2 9127:1 9135:1 9143:1 9157:7 9168:2 9179:1 9183:2 9186:2 9203:3 9209:1 9221:2 9222:1 9231:1 9232:20 9242:1 9264:1 9267:1 9276:1 9279:1 9289:1 9295:1 9298:1 9299:1 9311:1 9324:1 9332:1 9333:1 9335:1 9339:1 9340:1 9381:1 9394:3 9425:1 9430:1 9435:1 9441:1 9466:1 9467:1 9470:1 9473:1 9484:2 9493:2 9507:2 9508:1 9529:1 9540:2 9541:1 9542:1 9544:3 9561:1 9563:1 9623:2 9630:1 9632:2 9633:1 9634:4 9637:1 9638:1 9640:1 9642:2 9644:2 9646:1 9648:3 9649:2 9654:4 9661:1 9665:1 9669:1 9675:1 9680:1 9688:1 9690:1 9697:3 9705:1 9742:1 9743:1 9744:1 9746:1 9770:1 9781:1 9788:1 9806:1 9807:1 9810:2 9815:1 9823:1 9826:1 9833:2 9836:1 9842:3 9847:1 9857:1 9882:1 9901:3 9907:1 9923:1 9931:1 9937:2 9942:1 9945:2 9952:1 9965:2 9974:1 9976:3 9979:1 9982:1 9988:1 9994:1 9999:1 10008:2 10015:1 10022:1 10027:3 10035:1 10054:1 10070:1 10087:1 10092:1 10095:2 10107:1 10117:1 10121:1 10124:1 10126:1 10138:1 10142:1 10150:2 10152:3 10159:1 10161:2 10171:1 10197:1 10209:2 10210:2 10232:1 10265:1 10275:1 10282:1 10291:1 10294:1 10307:3 10331:1 10332:1 10334:2 10337:1 10338:1 10340:1 10345:8 10349:1 10362:1 10367:1 10371:1 10373:1 10374:2 10376:1 10385:1 10389:1 10407:1 10417:1 10422:1 10430:1 10434:5 10435:1 10436:2 10445:1 10450:1 10454:1 10456:1 10459:1 10465:1 10479:1 10497:2 10502:1 10517:2 10518:1 10522:2 10524:1 10533:2 10540:1 10549:1 10550:1 10554:1 10570:1 10575:1 10583:1 10584:2 10586:1 10591:1 10596:1 10598:1 10602:1 10619:1 10621:1 10623:1 10627:1 10643:2 10648:1 10666:3 10695:1 10708:1 10709:5 10732:1 10747:1 10752:2 10764:1 10765:1 10792:1 10800:1 10804:1 10806:3 10807:2 10822:1 10828:2 10831:1 10846:1 10847:1 10858:1 10867:2 10876:1 10877:1 10886:1 10892:1 10893:1 10913:2 10948:11 10969:3 10970:1 10972:1 10973:4 10996:1 10997:2 10999:1 11008:1 11011:1 11020:1 11029:1 11030:1 11052:1 11063:2 11067:1 11079:1 11094:2 11119:2 11133:4 11141:1 11153:1 11163:3 11167:1 11170:2 11171:1 11172:1 11175:2 11178:2 11188:3 11200:1 11201:1 11208:1 11210:4 11214:3 11215:1 11218:1 11222:1 11225:1 11226:1 11231:2 11232:3 11234:2 11235:1 11239:2 11242:2 11265:1 11266:2 11272:1 11276:5 11287:1 11288:2 11291:1 11302:1 11305:1 11308:1 11309:1 11323:2 11324:1 11331:1 11339:1 11342:1 11356:1 11362:1 11376:8 11383:2 11415:1 11421:1 11431:1 11433:1 11438:1 11445:2 11448:2 11450:1 11451:1 11456:1 11464:1 11473:1 11488:1 11492:1 11499:1 11517:2 11526:1 11550:1 11573:1 11575:1 11584:1 11588:1 11594:1 11601:1 11603:1 11607:4 11611:3 11637:2 11638:1 11650:1 11656:1 11660:1 11674:1 11677:3 11690:1 11692:1 11695:1 11697:1 11701:3 11717:1 11730:2 11741:1 11744:1 11778:1 11784:6 11795:1 11796:1 11811:1 11820:1 11822:8 11830:1 11841:1 11842:1 11846:1 11847:1 11854:1 11855:1 11858:1 11860:1 11895:1 11899:1 11906:3 11912:1 11914:3 11915:1 11930:1 11931:2 11933:1 11949:2 11955:1 11966:1 11992:2 12002:1 12005:1 12015:5 12023:1 12026:2 12028:1 12031:1 12039:4 12042:1 12047:1 12050:3 12052:1 12099:1 12109:2 12112:1 12145:1 12149:1 12154:2 12155:1 12162:1 12169:3 12187:1 12197:1 12213:1 12214:1 12255:2 12266:1 12274:1 12275:1 12284:1 12307:2 12310:1 12319:1 12325:1 12327:3 12329:5 12333:1 12335:1 12336:4 12337:1 12339:1 12350:1 12352:2 12354:1 12356:1 12361:1 12369:1 12377:1 12378:2 12379:1 12389:1 12406:1 12427:1 12434:2 12438:1 12448:1 12461:1 12472:1 12475:1 12476:1 12477:2 12483:1 12487:1 12501:1 12526:1 12537:1 12545:1 12551:1 12552:1 12559:1 12580:1 12593:1 12596:1 12604:2 12607:1 12618:4 12630:2 12640:1 12647:1 12649:1 12672:1 12682:1 12733:1 12741:1 12743:1 12762:1 12764:1 12766:1 12770:1 12775:1 12776:1 12783:1 12789:1 12794:1 12805:1 12811:3 12814:3 12819:3 12821:1 12836:1 12845:1 12862:3 12865:13 12867:1 12876:1 12877:1 12893:1 12896:1 12902:1 12910:2 12915:1 12918:1 12923:1 12928:2 12929:1 12933:1 12935:4 12936:2 12952:1 12954:1 12970:1 12977:2 12988:3 12994:1 13000:1 13005:1 13009:1 13012:1 13015:1 13018:3 13027:1 13032:1 13050:3 13061:2 13064:1 13073:1 13081:1 13085:3 13088:8 13089:2 13094:2 13111:1 13116:1 13128:8 13135:1 13137:1 13138:2 13142:4 13143:1 13146:1 13148:1 13149:1 13150:2 13151:7 13152:1 13153:1 13156:1 13162:8 13168:1 13169:1 13192:1 13196:2 13202:1 13220:2 13228:1 13231:1 13239:2 13244:1 13254:2 13264:2 13285:1 13286:1 13294:2 13296:1 13302:1 13308:1 13320:7 13338:1 13365:1 13391:1 13408:1 13410:3 13415:1 13423:2 13427:1 13429:1 13434:1 13443:1 13448:2 13456:1 13461:1 13463:2 13473:5 13476:1 13480:2 13486:1 13510:1 13515:2 13517:3 13527:2 13552:2 13553:2 13556:1 13590:1 13592:1 13600:1 13606:2 13608:1 13611:1 13616:2 13621:1 13649:1 13653:2 13654:3 13662:1 13674:1 13684:3 13685:4 13690:1 13700:2 13718:3 13738:1 13742:1 13745:1 13750:3 13778:2 13805:1 13815:1 13821:3 13826:2 13830:1 13848:1 13863:2 13873:6 13874:1 13895:2 13896:3 13899:1 13921:1 13930:1 13933:1 13935:1 13939:1 13940:1 13973:1 13976:2 14004:2 14007:2 14011:1 14018:1 14021:1 14030:1 14037:1 14039:1 14055:1 14059:1 14061:2 14069:1 14081:2 14101:1 14102:2 14119:1 14125:2 14146:1 14149:1 14162:4 14180:1 14183:2 14207:1 14210:1 14214:2 14242:1 14252:1 14256:2 14267:1 14281:1 14318:2 14319:1 14341:1 14345:10 14353:1 14356:2 14361:1 14370:3 14376:3 14380:1 14384:1 14402:1 14408:1 14409:1 14410:2 14416:1 14421:1 14436:2 14441:1 14443:1 14449:1 14468:1 14471:1 14472:1 14473:5 14480:2 14483:3 14489:2 14497:1 14518:2 14520:1 14541:1 14545:1 14572:1 14577:1 14581:1 14583:1 14589:2 14592:1 14605:1 14614:1 14620:1 14633:1 14640:1 14652:1 14658:2 14688:2 14697:1 14706:1 14753:1 14781:1 14791:1 14793:5 14804:1 14806:1 14810:1 14831:1 14841:1 14854:3 14858:1 14859:1 14867:2 14870:2 14873:1 14877:7 14881:6 14883:1 14891:1 14895:1 14896:1 14904:5 14907:8 14915:1 14921:3 14935:2 14940:1 14942:2 14945:1 14949:3 14957:1 14958:2 14959:1 14960:1 14975:2 14979:1 14980:1 14999:1 15005:1 15016:1 15019:2 15028:1 15033:2 15039:10 15040:1 15047:2 15054:1 15059:1 15066:2 15075:1 15079:2 15082:1 15087:1 15122:1 15125:4 15131:1 15160:2 15161:1 15172:1 15187:1 15191:1 15212:1 15215:1 15216:1 15217:5 15236:1 15246:1 15251:1 15255:1 15259:1 15275:1 15278:1 15281:2 15293:1 15311:1 15322:1 15325:3 15333:2 15336:1 15361:1 15367:2 15374:3 15381:2 15386:1 15410:1 15429:1 15438:1 15443:1 15476:1 15477:3 15480:1 15483:3 15487:1 15488:2 15489:2 15496:1 15508:2 15513:1 15519:2 15520:1 15523:1 15542:1 15543:1 15551:1 15555:1 15574:4 15586:1 15616:8 15622:1 15625:2 15645:1 15662:1 15664:1 15666:2 15680:2 15704:1 15725:1 15728:5 15734:5 15740:2 15749:2 15780:2 15811:2 15820:3 15840:2 15855:1 15861:1 15864:1 15900:2 15905:1 15923:1 15929:2 15934:1 15938:1 15945:1 15955:1 15959:1 15960:2 15962:1 15974:4 15986:1 15990:1 15993:1 15996:2 15997:1 16000:3 16021:1 16026:1 16030:1 16033:1 16040:3 16042:1 16043:1 16046:1 16059:1 16063:1 16067:1 16071:1 16073:1 16092:1 16098:4 16114:1 16119:2 16136:1 16144:1 16145:1 16150:2 16152:1 16178:2 16183:1 16187:1 16189:1 16197:2 16198:1 16208:1 16214:1 16226:1 16227:4 16229:1 16235:1 16236:1 16237:1 16254:1 16266:1 16270:1 16273:1 16284:1 16289:1 16321:1 16330:5 16347:1 16350:2 16351:1 16355:1 16362:1 16390:2 16393:2 16407:1 16411:1 16422:1 16427:2 16428:1 16433:2 16448:1 16450:1 16451:1 16457:2 16463:2 16484:4 16488:1 16508:3 16523:1 16534:1 16538:1 16556:2 16559:2 16566:5 16598:1 16606:2 16608:1 16630:1 16634:1 16642:1 16650:2 16655:1 16674:2 16678:1 16684:5 16687:1 16688:1 16693:1 16694:1 16721:2 16723:1 16739:1 16741:1 16753:1 16762:1 16782:8 16783:2 16787:1 16789:1 16793:1 16797:1 16831:1 16832:4 16835:1 16842:1 16846:3 16848:1 16860:1 16884:3 16904:1 16922:1 16936:4 16940:2 16942:1 16944:1 16948:1 16971:3 16973:3 16984:1 16988:3 16990:1 16999:1 17012:2 17023:1 17042:1 17045:4 17046:1 17048:1 17053:2 17056:2 17061:1 17063:1 17098:2 17103:1 17105:1 17127:1 17140:1 17155:1 17176:1 17187:1 17194:3 17203:1 17214:1 17219:1 17224:2 17226:1 17246:1 17251:3 17269:1 17289:2 17293:1 17297:1 17314:1 17317:2 17318:1 17324:2 17334:1 17370:1 17379:1 17389:1 17406:1 17420:1 17423:16 17433:2 17437:1 17448:1 17457:1 17479:2 17489:2 17499:1 17503:3 17514:1 17516:1 17528:3 17531:1 17539:1 17543:1 17553:1 17567:1 17571:1 17576:1 17581:1 17586:2 17596:1 17598:1 17610:1 17648:1 17661:3 17673:1 17681:1 17689:14 17694:1 17695:1 17698:1 17699:3 17700:3 17709:1 17710:3 17714:1 17715:1 17718:1 17722:1 17729:5 17731:2 17740:1 17748:1 17752:1 17756:1 17758:1 17767:1 17771:1 17775:2 17776:1 17783:1 17784:2 17805:5 17824:1 17829:1 17830:2 17857:3 17860:2 17866:1 17871:1 17876:1 17878:1 17880:1 17884:1 17888:5 17930:1 17951:1 17953:4 17955:2 17989:1 18008:1 18009:1 18010:1 18016:1 18049:3 18053:4 18074:4 18079:1 18108:2 18111:1 18114:1 18141:1 18148:1 18157:3 18160:1 18187:1 18195:13 18199:1 18214:3 18220:1 18226:1 18227:1 18234:3 18236:1 18243:2 18247:1 18258:1 18260:1 18273:1 18281:2 18289:2 18301:1 18302:1 18306:1 18308:2 18313:1 18315:1 18319:4 18321:2 18322:1 18323:1 18327:1 18329:1 18330:1 18332:3 18340:2 18341:1 18342:5 18344:1 18351:1 18352:3 18372:1 18375:1 18401:1 18416:1 18417:2 18426:1 18492:3 18527:2 18537:1 18546:1 18561:1 18584:1 18603:1 18619:1 18621:1 18635:2 18672:1 18683:1 18684:1 18693:1 18697:1 18699:1 18702:1 18708:1 18716:2 18717:1 18727:1 18732:1 18733:1 18737:1 18738:1 18739:3 18743:1 18764:1 18777:2 18785:1 18794:1 18799:3 18807:1 18808:2 18821:1 18842:3 18879:1 18896:1 18900:1 18908:1 18911:3 18919:5 18928:1 18949:1 18966:1 18967:1 18978:1 18987:1 19000:1 19005:1 19024:1 19029:3 19030:1 19035:1 19039:1 19043:1 19049:1 19050:1 19059:7 19062:4 19069:2 19081:1 19089:3 19103:2 19108:1 19117:1 19126:1 19135:1 19139:5 19155:1 19165:3 19169:2 19177:1 19182:1 19200:4 19207:2 19208:1 19209:1 19212:1 19213:1 19216:3 19233:2 19246:1 19248:2 19250:1 19261:2 19262:1 19276:1 19295:1 19296:1 19320:10 19329:1 19333:2 19345:1 19349:1 19351:1 19352:1 19354:1 19357:3 19362:1 19372:1 19384:1 19398:2 19417:1 19432:2 19443:1 19444:2 19448:2 19452:1 19465:2 19471:1 19493:2 19503:1 19508:2 19509:1 19526:1 19532:1 19536:1 19559:1 19566:1 19567:1 19583:1 19585:1 19622:1 19628:1 19634:1 19637:1 19638:1 19643:1 19655:1 19659:1 19663:2 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19758:1 19763:3 19772:5 19774:1 19776:1 19781:2 19783:3 19784:1 19794:1 19797:1 19809:1 19816:1 19819:1 19843:3 19849:2 19850:1 19867:1 19872:1 19897:1 19904:1 19910:2 19919:1 19936:1 19951:2 19962:1 19965:1 19966:1 20000:1 20007:2 20008:1 20020:2 20031:1 20032:2 20045:1 20075:1 20077:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:2 20123:2 20124:8 20128:4 20136:2 20142:1 20143:1 20146:3 20163:1 20166:3 20174:1 20180:1 20181:1 20183:1 20200:1 20202:1 20219:1 20220:1 20225:3 20230:1 20231:1 20237:1 20239:1 20241:1 20243:2 20286:1 20287:1 20292:1 20294:1 20300:2 20309:2 20341:1 20360:1 20373:1 20391:1 20394:2 20395:1 20400:1 20405:1 20406:1 20407:2 20410:1 20412:1 20416:1 20437:1 20441:1 20454:1 20458:1 20460:1 20477:1 20492:2 20499:1 20503:1 20508:1 20514:1 20516:1 20517:1 20518:1 20520:1 20524:2 20525:1 20540:1 20548:1 20561:1 20569:1 20635:4 20645:1 20673:1 20681:3 20682:1 20692:2 20697:2 20706:1 20709:1 20742:3 20760:1 20761:1 20773:1 20792:1 20803:7 20814:2 20815:4 20831:1 20851:1 20876:1 20893:2 20894:2 20895:1 20900:2 20906:1 20929:2 20936:1 20942:2 20949:2 20951:1 20970:1 20974:2 20983:3 20990:1 20996:2 21003:2 21004:2 21010:2 21016:2 21041:1 21047:3875 21068:3 21070:2 21079:2 21080:1 21087:1 21096:1 21109:1 21164:3 21166:1 21173:2 21178:1 21205:1 21227:1 21234:1 21241:2 21260:1 21278:1 21279:4 21291:1 21292:4 21294:1 21295:2 21300:1 21308:1 21355:1 21362:1 21372:1 21374:1 21378:1 21382:1 21398:1 21401:3 21408:1 21419:1 21421:1 21431:1 21444:1 21449:2 21464:1 21466:2 21476:1 21478:1 21487:1 21510:1 21512:1 21515:3 21518:2 21520:1 21532:1 21539:1 21551:1 21566:1 21571:1 21585:1 21601:1 21602:1 21605:1 21609:1 21630:1 21644:1 21668:1 21689:3 21692:1 21709:2 21722:1 21729:1 21735:4 21790:1 21797:2 21801:1 21802:1 21806:1 21808:1 21812:1 21813:1 21817:1 21821:2 21827:3 21833:2 21843:1 21845:1 21856:2 21861:2 21863:1 21874:1 21877:3 21880:1 21883:1 21895:2 21907:1 21918:2 21921:7 21952:1 21953:8 21959:1 21960:1 21961:1 21966:2 21976:1 21992:1 22001:2 22020:3 22025:3 22029:2 22032:3 22039:1 22041:1 22043:2 22045:2 22072:4 22082:1 22095:3 22100:1 22107:3 22119:1 22127:1 22133:1 22138:1 22143:1 22157:1 22162:1 22173:3 22174:1 22178:3 22181:1 22186:1 22214:1 22227:1 22229:1 22235:1 22240:1 22245:3 22262:1 22267:1 22271:1 22281:2 22294:1 22301:5 22306:1 22311:1 22318:1 22325:1 22333:1 22344:1 22351:1 22364:1 22370:1 22375:1 22382:1 22404:5 22415:1 22423:5 22459:1 22462:1 22479:2 22483:1 22493:1 22495:1 22503:2 22504:1 22508:2 22518:1 22526:2 22530:1 22540:1 22545:1 22548:3 22553:1 22562:1 22565:3 22569:1 22572:1 22573:2 22583:1 22586:1 22603:1 22615:1 22617:1 22626:3 22638:1 22644:2 22655:1 22669:1 22681:4 22688:2 22690:1 22698:1 22708:1 22713:1 22737:3 22740:1 22750:1 22766:2 22774:1 22776:1 22791:1 22793:1 22794:1 22803:1 22815:5 22819:1 22824:1 22829:1 22833:1 22834:1 22835:1 22837:1 22845:1 22851:1 22852:1 22870:7 22871:1 22877:2 22880:1 22886:1 22889:2 22942:1 22952:1 22954:1 22966:1 22984:2 22992:1 23002:1 23004:1 23005:2 23036:2 23046:1 23055:1 23059:3 23100:1 23108:3 23113:1 23114:1 23116:1 23129:1 23147:2 23156:2 23160:5 23163:1 23164:1 23169:4 23172:1 23175:1 23183:1 23229:1 23243:1 23256:2 23257:1 23277:1 23279:1 23281:1 23286:1 23288:1 23290:1 23330:1 23353:1 23359:2 23363:1 23367:1 23373:1 23374:1 23381:1 23383:1 23390:1 23415:2 23416:1 23419:1 23432:1 23434:1 23444:4 23447:2 23449:2 23453:1 23456:1 23463:1 23471:1 23490:5 23504:2 23518:1 23521:2 23522:1 23523:1 23527:2 23529:2 23532:2 23544:4 23550:3 23556:1 23560:2 23561:1 23570:1 23572:1 23574:1 23580:3 23583:1 23585:1 23596:1 23609:1 23612:1 23617:1 23622:2 23626:1 23644:2 23649:2 23656:1 23657:1 23658:1 23663:1 23669:2 23723:2 23728:1 23729:1 23736:1 23737:1 23745:9 23746:1 23751:2 23752:2 23754:1 23756:2 23765:1 23770:1 23773:1 23782:1 23785:1 23790:1 23800:1 23802:2 23831:1 23837:1 23852:1 23853:2 23857:1 23858:1 23859:1 23861:1 23863:1 23891:1 23898:1 23899:1 23901:1 23912:2 23917:1 23919:2 23927:1 23931:1 23943:1 23949:1 23951:1 23953:2 23955:4 23970:1 23983:1 23985:1 23991:1 24009:1 24013:1 24024:5 24032:1 24039:1 24057:4 24058:1 24074:1 24078:1 24082:2 24090:1 24093:1 24098:1 24099:1 24113:2 24114:1 24127:1 24133:1 24138:1 24143:1 24144:1 24151:2 24166:2 24168:1 24194:1 24195:1 24197:1 24198:1 24201:1 24205:3 24206:2 24207:1 24208:1 24210:1 24214:1 24216:1 24217:1 24218:1 24222:1 24225:1 24226:3 24229:1 24241:1 24242:1 24243:1 24250:1 24255:2 24262:2 24263:3 24270:1 24274:1 24276:2 24279:1 24289:1 24298:1 24308:1 24314:1 24319:1 24321:1 24323:1 24334:1 24358:1 24359:2 24366:6 24368:1 24369:1 24373:2 24379:1 24383:2 24386:1 24394:2 24398:1 24401:1 24417:1 24418:1 24425:1 24427:1 24442:1 24449:1 24467:1 24474:1 24477:1 24478:3 24487:1 24493:7 24502:1 24504:1 24527:1 24541:1 24542:6 24550:2 24578:1 24587:1 24601:3 24618:1 24636:1 24639:1 24643:2 24647:2 24650:3 24660:1 24677:1 24678:1 24681:1 24685:3 24687:1 24690:6 24692:3 24695:1 24698:1 24701:1 24706:2 24727:1 24742:2 24775:1 24788:2 24792:1 24805:4 24840:1 24841:1 24847:1 24854:1 24857:1 24858:1 24860:1 24874:1 24887:1 24904:1 24907:1 24916:3 24921:1 24925:2 24933:4 24936:1 24937:1 24943:1 24957:1 24959:1 24966:1 24969:1 24972:2 24974:1 24975:1 24983:1 24985:2 24990:3 25003:1 25011:1 25015:1 25017:1 25021:2 25022:1 25027:1 25032:1 25034:1 25036:1 25041:1 25048:1 25064:1 25072:2 25077:2 25093:1 25097:3 25100:1 25114:1 25115:2 25126:1 25127:1 25133:1 25134:2 25139:2 25149:1 25156:3 25167:4 25170:1 25173:1 25183:1 25184:3 25189:1 25191:1 25197:1 25221:1 25224:9 25233:3 25238:1 25245:2 25298:1 25300:1 25306:5 25337:6 25343:1 25346:1 25356:2 25357:1 25364:3 25366:1 25367:6 25369:1 25371:1 25388:1 25401:1 25413:1 25415:1 25416:1 25423:1 25431:2 25434:2 25437:1 25454:1 25464:1 25474:4 25494:5 25508:1 25510:1 25513:2 25515:1 25516:3 25526:2 25545:4 25548:1 25552:4 25557:1 25561:3 25562:1 25569:1 25582:3 25590:1 25595:2 25599:2 25600:1 25621:1 25623:1 25624:1 25635:4 25639:1 25646:1 25659:3 25662:2 25666:1 25669:5 25670:1 25672:1 25674:5 25678:3 25713:1 25714:1 25724:1 25726:1 25732:1 25798:1 25809:1 25810:1 25831:1 25834:1 25841:1 25850:1 25865:2 25878:1 25883:1 25884:1 25887:1 25897:1 25916:1 25920:1 25958:1 25962:1 25967:1 26002:3 26017:1 26019:4 26025:1 26031:1 26032:1 26035:1 26036:1 26046:1 26047:1 26056:4 26062:1 26073:1 26084:1 26088:1 26106:1 26110:2 26133:1 26150:1 26158:1 26160:1 26188:2 26195:1 26201:1 26217:1 26218:1 26223:1 26239:1 26243:1 26253:1 26254:1 26255:1 26263:2 26269:2 26270:3 26278:2 26279:1 26286:4 26314:1 26320:1 26324:2 26328:1 26329:2 26331:1 26334:1 26354:2 26364:1 26367:1 26381:1 26390:1 26403:1 26405:1 26407:1 26411:1 26414:1 26423:2 26434:1 26435:1 26437:4 26442:2 26445:2 26459:1 26470:1 26481:1 26482:1 26488:1 26490:3 26502:7 26530:1 26535:1 26549:1 26550:1 26557:2 26565:1 26577:1 26579:1 26581:1 26582:1 26584:2 26605:1 26606:1 26608:1 26617:1 26646:2 26665:2 26675:1 26679:1 26681:1 26685:1 26686:1 26689:3 26705:1 26718:1 26726:1 26729:1 26762:1 26768:1 26780:1 26785:1 26793:1 26794:1 26839:1 26850:1 26867:1 26872:2 26873:1 26879:1 26890:1 26897:1 26898:1 26902:3 26932:1 26954:1 26961:1 26964:1 26966:1 26967:1 26977:1 26979:1 26984:3 26991:1 26996:1 26998:1 27020:2 27049:1 27052:1 27063:1 27065:3 27075:2 27076:1 27100:5 27105:1 27115:2 27116:1 27126:1 27133:1 27134:1 27144:3 27151:1 27171:1 27182:1 27186:1 27196:2 27198:1 27201:1 27202:1 27211:1 27222:2 27223:2 27224:1 27226:1 27227:6 27231:1 27233:1 27245:3 27247:1 27265:1 27276:1 27280:1 27295:1 27299:3 27300:1 27305:2 27317:1 27335:1 27336:3 27344:1 27351:1 27357:1 27358:1 27365:1 27376:1 27383:1 27390:1 27408:2 27412:1 27429:2 27436:2 27460:1 27466:1 27470:4 27471:3 27479:1 27481:1 27483:2 27484:2 27486:1 27487:4 27488:1 27489:3 27490:2 27496:1 27498:4 27508:2 27511:2 27519:1 27527:2 27530:3 27539:5 27547:1 27550:1 27557:1 27578:1 27580:2 27586:1 27603:2 27608:1 27612:2 27616:1 27622:1 27626:2 27654:1 27655:3 27661:1 27664:3 27669:1 27674:1 27679:2 27681:2 27683:2 27687:2 27689:3 27691:2 27692:1 27705:1 27711:1 27713:1 27749:1 27754:1 27797:12 27798:1 27799:1 27815:1 27821:10 27835:1 27839:4 27842:2 27854:1 27855:1 27858:1 27862:1 27864:1 27871:2 27876:4 27890:2 27892:1 27912:2 27915:3 27953:1 27980:1 27986:2 27987:2 27994:1 28003:1 28024:1 28030:1 28046:1 28052:2 28064:1 28065:1 28069:1 28074:1 28078:1 28082:1 28094:1 28101:1 28110:1 28113:2 28115:1 28133:2 28149:1 28164:1 28169:1 28173:1 28209:1 28224:1 28241:1 28275:1 28293:1 28294:1 28303:1 28308:1 28319:2 28348:3 28349:9 28351:1 28369:1 28377:1 28382:10 28384:1 28393:1 28394:1 28397:1 28401:1 28402:1 28413:4 28420:1 28424:2 28425:1 28430:1 28437:1 28501:1 28502:1 28527:1 28533:2 28536:2 28558:1 28576:1 28592:2 28593:1 28614:3 28617:1 28631:1 28632:5 28635:3 28636:1 28643:1 28651:1 28658:1 28664:1 28670:2 28672:1 28673:1 28674:2 28685:1 28694:2 28722:1 28730:1 28731:3 28736:1 28737:1 28759:4 28773:1 28776:1 28787:1 28803:3 28809:1 28833:2 28847:1 28884:1 28885:1 28921:1 28926:1 28944:1 28948:6 28954:1 28966:1 28969:2 28976:1 28983:2 28995:1 29005:4 29007:3 29012:2 29021:1 29032:1 29042:1 29114:1 29136:1 29137:2 29149:2 29152:2 29154:1 29203:1 29211:1 29225:1 29226:2 29233:1 29241:1 29263:2 29266:1 29277:1 29279:3 29283:1 29287:1 29290:1 29298:2 29305:1 29313:1 29329:1 29330:1 29336:1 29339:1 29342:1 29344:1 29345:1 29346:1 29349:1 29351:2 29356:1 29359:2 29361:1 29378:1 29383:1 29394:1 29419:1 29421:7 29433:1 29448:1 29450:2 29474:1 29483:1 29485:1 29496:1 29508:1 29510:1 29515:8 29521:2 29529:3 29535:1 29547:1 29559:1 29562:1 29567:2 29570:2 29578:1 29583:3 29605:4 29612:1 29623:1 29632:1 29643:3 29649:1 29654:1 29658:1 29671:1 29676:4 29697:1 29702:1 29704:4 29711:1 29721:1 29724:1 29728:1 29729:1 29730:1 29735:1 29745:1 29775:1 29783:1 29800:1 29801:1 29820:2 29822:2 29824:1 29825:1 29826:1 29831:2 29839:1 29841:1 29845:1 29847:1 29899:1 29904:1 29916:2 29927:1 29931:1 29958:4 29969:1 29971:4 29972:3 29973:1 29974:4 29977:1 29995:1 29999:1 30002:2 30015:1 30035:1 30040:1 30044:1 30052:1 30059:1 30096:2 30100:2 30105:1 30142:1 30149:2 30156:2 30168:2 30169:1 30180:1 30181:1 30191:1 30199:1 30204:1 30210:1 30213:2 30231:6 30249:1 30252:1 30267:1 30285:1 30297:2 30305:1 30306:1 30315:1 30327:2 30330:1 30331:2 30342:1 30357:1 30360:1 30370:1 30380:5 30390:1 30393:2 30420:1 30431:1 30435:1 30445:2 30454:1 30466:1 30471:1 30475:4 30501:4 30504:3 30507:2 30510:2 30532:1 30548:2 30552:2 30572:2 30587:9 30589:3 30602:1 30606:1 30628:1 30638:1 30653:1 30660:3 30663:1 30664:7 30683:1 30685:1 30688:1 30689:2 30697:1 30704:7 30710:1 30718:2 30730:1 30738:1 30775:1 30776:1 30789:2 30798:6 30802:4 30805:3 30809:2 30814:3 30822:1 30834:1 30835:1 30843:4 30846:1 30854:2 30863:1 30864:1 30867:1 30868:2 30869:1 30875:2 30880:1 30883:1 30884:2 30892:3 30895:2 30908:2 30910:1 30946:2 30956:2 30960:1 30967:2 30968:1 30971:2 30977:2 30988:1 30994:2 30996:1 30999:1 31009:1 31019:1 31020:1 31031:1 31042:1 31046:3 31057:2 31062:1 31065:1 31074:1 31082:1 31095:1 31101:1 31104:2 31107:1 31113:1 31125:2 31127:1 31130:1 31135:1 31142:2 31144:1 31158:2 31161:1 31172:2 31184:2 31191:1 31195:2 31197:3 31206:1 31209:1 31216:8 31221:1 31227:1 31235:1 31287:1 31306:1 31315:2 31322:2 31324:1 31360:2 31363:2 31370:2 31388:2 31391:1 31392:3 31398:1 31404:1 31422:2 31440:3 31448:1 31452:3 31459:1 31461:4 31463:1 31476:2 31478:1 31480:2 31484:2 31485:3 31491:1 31494:1 31521:1 31531:5 31538:1 31543:1 31545:1 31547:1 31553:1 31554:1 31566:2 31576:3 31581:1 31583:1 31590:1 31622:1 31625:1 31635:2 31640:1 31647:1 31649:1 31658:2 31665:24 31667:3 31670:2 31674:2 31679:2 31680:4 31684:3 31686:2 31688:2 31704:11 31721:3 31722:1 31727:1 31730:1 31750:1 31761:3 31763:1 31783:1 31790:1 31806:1 31811:1 31818:1 31821:1 31827:2 31834:7 31842:2 31846:1 31853:1 31877:8 31894:2 31897:2 31910:1 31911:1 31921:1 31932:1 31938:2 31952:1 31954:1 31960:1 31962:1 31964:1 31974:1 31976:1 31998:2 32009:1 32027:1 32035:2 32041:1 32042:1 32047:1 32053:1 32060:1 32061:2 32070:1 32083:1 32085:1 32094:1 32097:1 32103:1 32105:2 32117:1 32125:1 32128:1 32140:2 32142:1 32153:1 32171:2 32172:3 32181:1 32201:1 32207:1 32212:1 32229:1 32241:6 32244:7 32277:2 32280:3 32289:1 32299:1 32303:1 32304:1 32310:1 32311:2 32312:1 32319:1 32335:3 32348:1 32403:1 32407:1 32420:1 32433:1 32439:2 32443:7 32447:1 32451:1 32456:1 32471:4 32472:1 32476:1 32487:2 32491:4 32499:1 32548:1 32551:1 32552:2 32579:1 32619:1 32625:1 32628:1 32632:1 32650:1 32651:1 32656:2 32660:1 32661:1 32675:2 32688:1 32693:3 32697:1 32713:6 32719:1 32722:1 32724:2 32750:3 32768:2 32791:1 32795:1 32803:1 32808:2 32814:2 32818:1 32824:1 32834:1 32843:1 32846:2 32871:1 32885:2 32899:1 32900:2 32910:2 32934:1 32935:1 32941:3 32944:3 32956:2 32963:2 33001:3 33019:1 33025:1 33038:1 33041:8 33055:1 33056:3 33057:2 33059:1 33075:1 33083:1 33084:1 33101:1 33105:3 33108:1 33115:1 33118:1 33133:1 33138:1 33141:3 33143:2 33146:1 33148:2 33149:2 33155:10 33156:1 33164:2 33167:5 33168:1 33171:5 33182:1 33198:2 33211:1 33220:3 33224:1 33225:2 33226:1 33232:1 33234:2 33267:1 33271:3
11 1:1 2:1 6:1 27:1 31:1 34:1 39:2 49:1 53:1 55:1 60:2 64:1 67:1 84:1 85:1 86:1 93:1 95:1 99:2 106:1 116:1 126:1 148:1 150:3 153:1 159:1 166:2 170:1 181:2 183:1 187:2 210:1 215:1 232:1 238:6 241:1 256:1 265:1 268:1 282:1 283:2 294:3 296:2 299:1 313:1 322:1 336:1 344:1 347:1 357:1 362:2 378:1 401:1 402:1 403:5 411:2 415:2 427:2 446:1 455:2 460:1 498:1 507:9 513:1 523:1 546:2 582:2 586:3 621:1 627:1 646:2 654:1 698:1 712:1 717:4 721:1 731:7 745:1 753:2 759:3 764:4 765:1 766:1 774:1 789:1 790:2 795:1 807:1 808:1 815:2 829:1 866:2 899:1 937:1 951:2 955:1 956:1 971:2 974:1 979:1 984:1 1000:1 1003:2 1022:3 1049:2 1053:1 1057:1 1067:2 1069:1 1070:1 1071:7 1073:1 1080:1 1082:1 1083:1 1094:1 1103:2 1106:2 1117:1 1118:1 1125:1 1127:1 1130:6 1132:1 1134:1 1141:2 1142:1 1144:1 1147:1 1158:2 1161:1 1165:1 1168:3 1171:3 1199:1 1204:4 1211:1 1216:3 1218:1 1220:1 1236:3 1239:1 1244:1 1257:1 1262:1 1265:1 1284:1 1287:1 1309:1 1311:2 1316:1 1318:1 1321:1 1322:1 1340:1 1351:2 1376:1 1378:1 1388:1 1392:1 1393:1 1403:1 1405:2 1409:1 1413:1 1415:1 1420:1 1421:1 1432:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:2 1465:1 1467:1 1480:1 1481:1 1487:2 1494:1 1496:2 1504:1 1509:1 1514:2 1532:1 1538:2 1539:1 1545:1 1547:1 1588:2 1624:1 1626:2 1630:1 1635:1 1645:1 1650:1 1658:1 1664:4 1683:2 1686:1 1690:2 1691:1 1719:1 1726:7 1730:11 1739:11 1745:1 1747:1 1749:2 1751:2 1759:1 1761:1 1771:1 1793:1 1799:1 1807:1 1808:1 1813:1 1837:4 1839:4 1841:1 1844:1 1869:2 1878:2 1883:8 1884:1 1892:1 1899:1 1906:2 1917:7 1941:2 1943:1 1948:1 1955:1 1956:1 1957:1 1960:1 1963:2 1966:1 1973:1 1977:2 1980:1 1991:1 1999:1 2003:1 2019:2 2027:1 2037:1 2041:1 2061:1 2062:1 2073:2 2078:1 2080:1 2086:1 2098:1 2113:1 2118:1 2119:1 2133:3 2135:1 2136:1 2137:3 2138:2 2141:1 2157:1 2158:1 2169:1 2177:2 2180:2 2187:1 2195:6 2198:1 2209:2 2214:1 2223:1 2225:2 2237:1 2241:1 2246:1 2249:2 2255:2 2263:2 2265:1 2269:1 2279:1 2284:2 2301:3 2304:1 2317:3 2322:1 2329:1 2345:1 2348:1 2355:1 2367:1 2372:1 2373:6 2381:1 2397:1 2399:2 2406:1 2419:1 2421:1 2422:1 2429:1 2437:1 2441:2 2444:1 2465:1 2482:6 2496:1 2502:3 2508:1 2509:1 2519:1 2521:2 2525:2 2529:1 2530:1 2537:1 2547:1 2551:3 2552:1 2553:1 2555:6 2558:7 2559:1 2562:1 2563:2 2564:1 2568:1 2570:1 2573:3 2576:2 2578:3 2579:3 2583:1 2585:1 2587:1 2613:1 2616:2 2618:4 2620:3 2623:3 2624:6 2625:2 2626:1 2630:3 2631:3 2632:2 2634:2 2635:2 2637:1 2640:2 2642:5 2647:7 2648:2 2652:1 2657:3 2662:2 2663:1 2681:1 2713:1 2720:1 2732:1 2738:1 2739:1 2742:1 2753:2 2769:1 2774:1 2784:1 2788:1 2795:2 2801:3 2821:1 2831:3 2832:1 2864:1 2867:2 2868:1 2878:1 2888:1 2890:2 2896:1 2905:2 2918:2 2923:1 2934:1 2951:3 2953:1 2955:1 2962:1 2964:1 2979:1 2985:1 2992:1 2993:1 3008:2 3017:2 3030:1 3033:1 3039:1 3042:1 3049:1 3051:1 3059:1 3069:2 3071:1 3075:1 3080:4 3097:1 3098:1 3106:8 3116:2 3121:2 3134:2 3145:1 3157:1 3165:3 3171:1 3173:2 3181:1 3182:2 3193:1 3195:1 3197:2 3201:4 3213:2 3223:1 3257:3 3263:2 3283:1 3284:7 3291:1 3294:1 3295:12 3301:1 3302:2 3314:2 3318:2 3336:4 3350:2 3351:1 3352:1 3353:13 3360:1 3364:2 3369:1 3377:1 3379:1 3380:1 3386:1 3397:1 3408:1 3411:2 3418:2 3433:2 3464:1 3474:1 3475:1 3482:1 3484:1 3504:1 3517:1 3529:1 3539:1 3549:1 3550:4 3572:1 3578:2 3588:1 3598:1 3625:1 3645:1 3646:1 3683:1 3690:5 3702:3 3707:1 3721:4 3726:1 3744:1 3755:1 3758:5 3762:1 3765:1 3769:1 3772:1 3790:1 3799:1 3816:1 3821:1 3822:3 3853:1 3856:1 3857:2 3868:1 3875:2 3882:1 3917:2 3926:1 3930:4 3936:2 3939:1 3942:2 3945:1 3951:1 3968:2 3971:1 3974:2 3978:1 3990:1 3992:2 4005:1 4011:1 4012:1 4018:1 4020:2 4033:1 4035:2 4040:1 4047:3 4060:2 4071:2 4074:1 4103:1 4105:1 4112:1 4115:2 4122:1 4131:1 4134:1 4153:1 4160:5 4174:5 4178:1 4188:1 4193:3 4195:1 4207:1 4225:2 4245:1 4247:2 4252:4 4253:16 4263:1 4267:1 4271:1 4279:3 4288:4 4289:4 4291:2 4292:1 4300:2 4303:1 4306:7 4308:2 4330:1 4331:1 4332:5 4334:1 4346:1 4351:3 4356:1 4361:1 4378:3 4382:1 4391:1 4405:1 4434:1 4437:1 4452:1 4454:2 4456:2 4465:1 4470:1 4477:1 4484:1 4487:1 4488:1 4510:4 4511:1 4512:1 4529:2 4531:3 4533:1 4536:3 4540:2 4545:3 4547:2 4548:1 4573:1 4574:2 4575:1 4581:2 4585:1 4593:1 4605:1 4609:1 4628:2 4635:1 4637:1 4663:1 4667:2 4684:1 4686:2 4704:1 4713:1 4714:1 4722:1 4727:1 4728:1 4730:1 4741:1 4758:1 4763:5 4767:8 4773:1 4785:1 4792:1 4793:4 4819:1 4824:2 4842:2 4848:1 4863:1 4871:1 4872:5 4877:2 4888:3 4889:2 4906:1 4907:1 4924:1 4929:1 4933:1 4936:2 4951:1 4959:1 4974:1 4979:1 4980:1 4989:1 4991:1 5000:1 5020:1 5022:1 5025:1 5030:1 5033:4 5044:1 5045:2 5052:1 5054:1 5066:1 5072:1 5082:1 5098:1 5106:1 5136:2 5143:5 5162:1 5163:1 5168:1 5171:1 5198:1 5212:1 5236:1 5239:1 5246:3 5269:1 5276:1 5287:4 5290:2 5299:1 5312:1 5337:3 5340:6 5365:2 5369:3 5396:1 5397:2 5456:1 5462:1 5471:1 5490:2 5491:1 5516:1 5517:1 5528:1 5530:1 5536:1 5562:39 5564:3 5596:2 5610:1 5641:1 5671:1 5684:1 5688:1 5689:1 5690:3 5706:1 5717:3 5718:7 5719:4 5720:4 5722:1 5725:4 5730:2 5731:3 5733:4 5735:2 5740:2 5744:1 5748:1 5750:6 5752:3 5759:3 5763:1 5766:1 5770:1 5781:1 5788:1 5794:1 5797:1 5811:1 5814:2 5825:2 5832:1 5844:2 5853:2 5855:1 5868:1 5873:1 5883:1 5898:1 5907:2 5965:3 5975:1 6027:2 6033:1 6038:1 6043:1 6084:3 6088:1 6089:1 6108:1 6115:1 6124:1 6144:3 6150:3 6165:2 6169:2 6181:1 6186:3 6224:1 6233:1 6237:1 6261:1 6283:3 6284:1 6292:1 6299:1 6300:1 6305:6 6318:1 6319:3 6322:1 6327:1 6328:1 6335:4 6345:3 6355:1 6372:2 6374:2 6382:2 6385:1 6388:1 6391:2 6395:1 6397:2 6400:1 6403:1 6407:2 6412:1 6418:2 6428:1 6431:1 6435:2 6454:1 6459:9 6469:1 6480:5 6496:1 6506:1 6508:2 6509:3 6518:1 6520:1 6529:1 6531:1 6533:1 6536:1 6537:1 6540:1 6547:2 6548:1 6553:1 6558:5 6561:1 6570:1 6581:4 6584:1 6598:1 6610:1 6624:1 6639:1 6643:1 6688:6 6692:5 6699:1 6706:1 6707:1 6722:1 6750:1 6761:1 6762:1 6773:1 6776:1 6793:1 6795:1 6806:1 6816:1 6819:3 6821:2 6827:1 6840:1 6843:1 6845:1 6847:6 6863:2 6874:1 6884:1 6885:1 6887:1 6888:2 6890:2 6897:4 6923:1 6935:1 6939:1 6944:1 6954:1 6961:8 6980:2 6983:1 6994:2 7003:1 7008:1 7012:2 7023:1 7025:1 7038:1 7044:1 7050:1 7059:1 7062:2 7066:1 7081:1 7087:3 7088:3 7089:3 7090:1 7091:1 7097:2 7101:1 7103:1 7114:2 7132:2 7150:1 7173:1 7190:3 7192:1 7193:1 7194:1 7196:2 7197:4 7200:4 7201:1 7204:3 7207:4 7209:3 7210:1 7211:3 7212:1 7217:1 7218:11 7221:1 7222:3 7224:1 7258:1 7272:1 7279:1 7303:1 7306:1 7307:2 7365:3 7378:1 7380:1 7381:1 7389:1 7406:2 7410:1 7429:3 7435:2 7439:1 7463:1 7469:1 7497:1 7511:1 7512:1 7535:2 7539:2 7543:1 7552:1 7557:1 7559:1 7570:2 7574:1 7589:2 7599:2 7602:2 7613:1 7619:1 7628:1 7637:2 7648:3 7649:1 7659:1 7662:1 7671:5 7672:1 7676:3 7677:1 7691:1 7705:6 7707:1 7714:1 7724:1 7741:1 7745:2 7748:1 7750:3 7766:1 7776:1 7782:1 7791:1 7792:1 7794:1 7809:1 7815:1 7822:1 7825:1 7833:1 7839:2 7840:1 7855:1 7867:1 7879:3 7884:1 7905:1 7912:2 7913:2 7927:1 7941:2 7949:1 7954:1 7956:1 7961:1 7984:1 7988:2 7993:1 8007:2 8014:1 8016:1 8025:2 8027:2 8043:1 8045:1 8054:1 8064:1 8075:12 8089:2 8090:1 8105:2 8127:1 8129:1 8139:1 8143:5 8150:1 8155:2 8167:1 8168:1 8189:1 8196:1 8209:1 8216:1 8219:1 8230:1 8237:1 8247:1 8248:1 8258:2 8273:1 8277:4 8283:1 8299:1 8302:1 8328:3 8338:1 8340:1 8347:1 8383:1 8387:1 8389:4 8413:1 8417:4 8426:1 8432:4 8439:2 8446:1 8454:1 8474:1 8478:3 8491:1 8494:1 8498:1 8499:1 8504:1 8522:1 8531:1 8560:1 8562:1 8567:1 8568:1 8570:1 8573:1 8575:1 8582:1 8585:1 8593:1 8599:1 8609:4 8611:1 8615:1 8617:1 8619:1 8624:5 8630:3 8631:8 8633:5 8653:1 8654:3 8659:2 8663:1 8684:1 8688:2 8689:1 8702:52 8716:1 8717:1 8725:1 8726:10 8728:9 8734:2 8748:1 8767:1 8783:1 8793:1 8796:2 8797:1 8810:1 8815:2 8816:2 8817:1 8818:1 8826:1 8848:1 8860:1 8864:2 8874:2 8880:1 8886:1 8887:1 8890:1 8891:1 8901:1 8906:1 8909:2 8923:1 8930:1 8932:2 8935:9 8957:1 8960:1 8974:1 8982:6 8987:1 8992:1 9025:1 9048:2 9059:1 9094:2 9127:1 9135:1 9143:1 9157:7 9168:2 9179:1 9183:2 9186:2 9203:3 9209:1 9221:2 9222:1 9231:1 9232:21 9242:1 9264:1 9267:1 9276:1 9279:1 9289:1 9295:1 9298:1 9299:1 9311:1 9324:1 9332:1 9333:1 9335:1 9339:1 9340:1 9381:1 9394:3 9425:1 9430:1 9435:1 9441:1 9466:1 9467:1 9470:1 9473:1 9484:2 9493:2 9507:2 9508:1 9529:1 9540:2 9541:1 9542:1 9544:3 9561:1 9563:1 9623:2 9630:1 9632:2 9633:1 9634:4 9637:1 9638:1 9640:1 9642:2 9644:2 9646:2 9648:3 9649:2 9654:4 9661:1 9665:1 9669:1 9675:1 9680:1 9688:1 9690:1 9697:3 9705:1 9742:1 9743:1 9744:1 9746:1 9770:1 9781:1 9788:1 9806:1 9807:1 9810:2 9815:1 9823:1 9826:1 9833:2 9836:1 9842:3 9847:1 9857:1 9882:1 9901:3 9907:1 9923:1 9931:1 9937:2 9942:1 9945:2 9952:1 9965:2 9974:1 9976:3 9979:1 9982:1 9988:1 9994:1 9999:1 10008:2 10015:1 10022:1 10027:3 10035:1 10054:1 10070:1 10087:1 10092:1 10095:2 10107:1 10117:1 10121:1 10124:1 10126:1 10138:1 10142:1 10150:2 10152:3 10159:1 10161:2 10171:1 10197:1 10209:2 10210:2 10232:1 10265:1 10275:1 10282:1 10291:1 10294:1 10307:3 10331:1 10332:1 10334:2 10337:1 10338:1 10340:1 10345:8 10349:1 10362:1 10367:1 10371:1 10373:1 10374:2 10376:1 10385:1 10388:1 10389:1 10407:1 10417:1 10422:1 10430:1 10434:5 10435:1 10436:2 10445:1 10450:1 10454:1 10456:1 10459:1 10465:1 10479:1 10497:2 10502:1 10517:2 10518:1 10522:2 10524:1 10533:2 10540:1 10549:1 10550:1 10554:1 10570:1 10575:1 10583:1 10584:2 10586:1 10591:1 10596:1 10598:1 10602:1 10619:1 10621:1 10623:1 10627:1 10643:2 10648:1 10666:3 10695:1 10708:1 10709:5 10732:1 10747:1 10752:2 10764:1 10765:1 10773:1 10792:1 10800:1 10804:1 10806:3 10807:2 10822:1 10828:2 10831:1 10845:1 10846:1 10847:1 10858:1 10867:2 10876:1 10877:1 10886:1 10892:1 10893:1 10913:2 10948:12 10969:3 10970:1 10972:1 10973:4 10996:1 10997:2 10999:1 11008:1 11011:1 11020:2 11029:1 11030:1 11052:1 11063:2 11067:1 11079:1 11094:2 11119:2 11133:4 11141:1 11153:1 11163:3 11167:1 11170:2 11171:1 11172:1 11175:2 11178:2 11188:3 11200:1 11201:1 11208:1 11210:4 11214:4 11215:1 11218:1 11222:1 11225:1 11226:1 11231:2 11232:3 11234:2 11235:1 11239:2 11242:2 11265:1 11266:2 11272:1 11276:5 11287:1 11288:2 11291:1 11293:1 11302:1 11305:1 11308:1 11309:1 11323:2 11324:1 11331:1 11339:1 11342:1 11356:1 11362:1 11376:8 11383:2 11415:1 11421:1 11431:1 11433:1 11438:1 11445:2 11448:2 11450:1 11451:1 11456:1 11464:1 11473:1 11488:1 11492:1 11499:1 11517:2 11526:1 11550:1 11573:1 11575:1 11584:1 11588:1 11594:1 11601:1 11603:1 11607:4 11611:3 11637:2 11638:1 11650:1 11656:1 11660:1 11674:1 11677:3 11690:1 11692:1 11695:1 11697:1 11701:3 11717:1 11730:2 11741:1 11744:1 11778:1 11784:7 11795:1 11796:1 11811:1 11820:1 11822:8 11830:1 11841:1 11842:1 11846:1 11847:1 11854:1 11855:1 11858:1 11860:1 11895:1 11899:1 11906:3 11912:1 11914:3 11915:1 11930:1 11931:2 11933:1 11949:2 11955:1 11966:1 11992:2 12002:1 12005:1 12015:5 12023:1 12026:2 12028:1 12031:1 12039:4 12042:1 12047:1 12050:3 12052:1 12099:1 12109:2 12112:1 12145:1 12149:1 12154:2 12155:1 12162:1 12169:4 12187:1 12197:1 12213:1 12214:1 12255:2 12266:1 12274:1 12275:1 12284:1 12307:2 12310:1 12319:1 12325:1 12327:3 12329:5 12333:1 12335:1 12336:4 12337:1 12339:1 12350:1 12352:2 12354:1 12356:1 12361:1 12369:1 12377:1 12378:2 12379:1 12389:1 12406:1 12427:1 12434:2 12438:1 12448:1 12461:1 12472:1 12475:1 12476:1 12477:2 12483:1 12487:1 12501:1 12526:1 12537:1 12545:1 12551:1 12552:1 12559:1 12580:1 12593:1 12596:1 12604:2 12607:1 12618:4 12630:2 12640:1 12647:1 12649:1 12672:1 12682:1 12733:1 12741:1 12743:1 12762:1 12764:1 12766:1 12770:1 12775:1 12776:1 12783:1 12789:1 12794:1 12805:1 12811:3 12814:3 12819:3 12821:1 12836:1 12845:1 12862:3 12865:13 12867:1 12876:1 12877:1 12893:1 12896:1 12902:1 12910:2 12915:1 12918:1 12923:1 12928:2 12929:1 12933:1 12935:4 12936:2 12952:1 12954:1 12970:1 12977:2 12988:3 12994:1 13000:1 13005:1 13009:1 13012:1 13015:1 13018:3 13027:1 13032:1 13050:3 13061:2 13064:1 13066:1 13073:1 13081:1 13085:3 13088:8 13089:2 13094:2 13111:1 13116:1 13128:8 13135:1 13137:1 13138:2 13142:4 13143:1 13144:1 13146:1 13148:1 13149:1 13150:2 13151:8 13152:1 13153:1 13156:1 13162:9 13168:1 13169:1 13192:1 13196:2 13202:1 13220:2 13228:1 13231:1 13239:2 13244:1 13254:2 13264:2 13285:1 13286:1 13294:2 13296:1 13302:1 13308:1 13320:7 13338:1 13365:1 13391:1 13408:1 13410:3 13415:1 13423:2 13427:1 13429:1 13434:1 13443:1 13448:2 13456:1 13461:1 13463:2 13473:5 13476:1 13480:2 13486:1 13510:1 13515:2 13517:3 13527:2 13552:2 13553:2 13556:1 13590:1 13592:1 13600:1 13606:2 13608:1 13611:1 13616:2 13621:1 13649:1 13653:2 13654:3 13662:1 13674:1 13684:3 13685:4 13690:1 13700:2 13718:3 13738:1 13742:2 13745:1 13750:3 13778:2 13805:1 13815:1 13821:3 13826:2 13830:1 13848:1 13863:2 13873:6 13874:1 13895:2 13896:3 13899:1 13921:1 13930:1 13933:1 13935:1 13939:1 13940:1 13973:1 13976:2 14004:2 14007:2 14011:1 14018:1 14021:1 14030:1 14037:1 14039:1 14055:1 14059:1 14061:2 14069:1 14081:2 14101:1 14102:2 14119:1 14125:2 14146:1 14149:1 14162:4 14180:1 14183:2 14207:1 14210:1 14214:2 14242:1 14252:1 14256:2 14267:1 14281:1 14318:2 14319:1 14341:1 14345:10 14353:1 14356:2 14361:1 14370:3 14376:3 14380:1 14384:1 14402:1 14408:1 14409:1 14410:2 14416:1 14421:1 14436:2 14441:1 14443:1 14449:1 14468:1 14471:1 14472:1 14473:5 14480:2 14483:3 14489:2 14497:1 14518:2 14520:1 14541:1 14545:1 14572:1 14577:1 14581:1 14583:1 14589:2 14592:1 14605:1 14614:1 14620:1 14633:1 14640:1 14652:1 14658:2 14686:1 14688:2 14697:1 14706:1 14753:1 14781:1 14791:1 14793:5 14804:1 14806:1 14810:1 14831:1 14841:1 14854:3 14858:1 14859:1 14867:2 14870:2 14873:1 14877:7 14881:6 14883:1 14891:1 14895:1 14896:1 14904:5 14907:8 14915:1 14921:3 14935:2 14940:1 14942:2 14945:1 14949:3 14957:1 14958:2 14959:1 14960:1 14975:2 14979:1 14980:1 14999:1 15005:1 15016:1 15019:2 15028:1 15033:2 15039:10 15040:1 15047:2 15054:1 15059:1 15066:2 15075:1 15079:2 15082:1 15087:1 15122:1 15125:4 15131:1 15160:2 15161:1 15172:1 15187:1 15191:1 15212:1 15215:1 15216:1 15217:5 15236:1 15246:1 15251:1 15255:1 15259:1 15275:1 15278:1 15281:2 15293:1 15311:1 15322:1 15325:3 15333:2 15336:1 15361:1 15367:2 15374:3 15381:2 15386:1 15410:1 15429:1 15438:1 15443:1 15476:1 15477:3 15480:1 15483:3 15487:1 15488:2 15489:2 15496:1 15508:2 15513:1 15519:2 15520:1 15523:1 15542:1 15543:1 15551:1 15555:1 15574:4 15586:1 15616:8 15622:1 15625:2 15645:1 15662:1 15664:1 15666:2 15680:2 15704:1 15725:1 15728:5 15734:5 15740:2 15749:2 15780:2 15811:2 15820:3 15840:2 15855:1 15861:1 15864:1 15900:2 15905:1 15923:1 15929:2 15934:1 15938:1 15945:1 15955:1 15959:1 15960:2 15962:1 15974:4 15986:1 15990:1 15993:1 15996:2 15997:1 16000:3 16021:1 16026:1 16030:1 16033:1 16040:3 16042:1 16043:1 16046:1 16059:1 16063:1 16067:1 16071:1 16073:1 16092:1 16098:4 16114:1 16119:2 16136:1 16144:1 16145:1 16150:2 16152:1 16178:2 16183:1 16187:1 16189:1 16197:2 16198:1 16208:1 16214:1 16226:1 16227:4 16229:1 16235:1 16236:1 16237:1 16254:1 16266:1 16270:1 16273:1 16284:1 16289:1 16321:1 16330:5 16347:1 16350:2 16351:1 16355:1 16362:1 16390:2 16393:2 16407:1 16411:1 16422:1 16427:2 16428:1 16433:2 16448:1 16450:1 16451:1 16457:2 16463:3 16484:4 16488:1 16508:3 16523:1 16534:1 16538:1 16556:2 16559:2 16566:5 16598:1 16606:2 16608:1 16627:1 16630:1 16634:1 16642:1 16650:2 16655:1 16674:2 16678:1 16684:5 16687:1 16688:1 16693:1 16694:1 16721:2 16723:1 16739:1 16741:1 16753:1 16762:1 16782:8 16783:2 16787:1 16789:1 16793:1 16797:1 16831:1 16832:4 16835:1 16842:1 16846:3 16848:1 16860:1 16884:3 16904:1 16922:1 16936:4 16940:2 16942:1 16944:1 16948:1 16971:3 16973:3 16984:1 16988:3 16990:1 16999:1 17012:2 17023:1 17042:1 17045:4 17046:1 17048:1 17053:2 17056:2 17061:1 17063:1 17098:2 17103:1 17105:1 17127:1 17140:1 17155:1 17176:1 17187:1 17194:3 17203:1 17214:1 17219:1 17224:3 17226:1 17246:1 17251:3 17269:1 17289:2 17293:1 17297:1 17314:1 17317:2 17318:1 17324:2 17334:1 17370:1 17379:1 17389:1 17406:1 17420:1 17423:17 17433:2 17437:1 17448:1 17457:1 17479:2 17489:2 17499:1 17503:3 17514:1 17516:1 17528:3 17531:1 17539:1 17543:2 17553:1 17567:1 17571:1 17576:1 17581:1 17586:2 17596:1 17598:1 17610:1 17648:1 17661:3 17673:1 17681:1 17689:14 17694:1 17695:1 17698:1 17699:3 17700:3 17709:1 17710:3 17714:1 17715:1 17718:1 17722:1 17729:5 17731:2 17740:1 17748:1 17752:1 17756:1 17758:1 17767:1 17771:1 17775:2 17776:1 17783:1 17784:2 17805:5 17824:1 17829:1 17830:2 17857:3 17860:2 17866:1 17871:1 17876:1 17878:1 17880:1 17884:1 17888:5 17930:1 17951:1 17953:4 17955:2 17989:1 18008:1 18009:1 18010:1 18016:1 18049:3 18053:4 18074:4 18079:1 18108:2 18111:1 18114:1 18141:1 18148:1 18157:3 18160:1 18187:1 18195:13 18199:1 18214:3 18220:1 18226:1 18227:1 18234:3 18236:1 18243:2 18247:1 18258:1 18260:1 18273:1 18281:2 18289:2 18301:1 18302:1 18306:1 18308:2 18313:1 18315:1 18319:4 18321:2 18322:1 18323:1 18327:1 18329:1 18330:1 18332:3 18340:2 18341:1 18342:5 18344:1 18351:1 18352:3 18361:1 18372:1 18375:1 18401:1 18416:1 18417:2 18426:1 18492:3 18527:2 18537:1 18546:1 18561:1 18584:1 18603:1 18619:1 18621:1 18635:2 18672:1 18683:1 18684:1 18693:1 18697:1 18699:1 18702:1 18708:1 18716:2 18717:1 18727:1 18732:1 18733:1 18737:1 18738:1 18739:3 18743:1 18764:1 18777:2 18785:1 18794:1 18799:3 18807:1 18808:2 18821:1 18842:3 18879:1 18896:1 18900:1 18908:1 18911:3 18919:5 18928:1 18949:1 18966:1 18967:1 18978:1 18987:1 19000:1 19005:1 19024:1 19029:3 19030:1 19035:1 19039:1 19043:1 19049:1 19050:1 19059:7 19062:4 19069:2 19081:1 19089:3 19103:2 19108:1 19117:1 19126:1 19135:1 19139:5 19155:1 19165:3 19169:2 19177:1 19182:1 19200:4 19207:2 19208:1 19209:1 19212:1 19213:1 19216:3 19233:2 19246:1 19248:2 19250:1 19261:2 19262:1 19276:1 19295:1 19296:1 19320:10 19329:1 19333:2 19345:1 19349:1 19351:1 19352:1 19354:1 19357:3 19362:1 19372:1 19384:1 19398:2 19417:1 19432:2 19443:1 19444:2 19448:2 19452:1 19465:2 19471:1 19475:1 19493:2 19503:1 19508:2 19509:1 19526:1 19532:1 19536:1 19559:1 19566:1 19567:1 19583:1 19585:1 19622:1 19628:1 19634:1 19637:1 19638:1 19643:1 19655:1 19659:1 19663:2 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19758:1 19763:3 19772:5 19774:1 19776:1 19781:2 19783:3 19784:1 19794:1 19797:1 19809:1 19816:1 19819:1 19843:3 19849:2 19850:1 19867:1 19872:1 19897:1 19904:1 19910:2 19919:1 19936:1 19951:2 19962:1 19965:1 19966:1 20000:1 20007:2 20008:1 20020:2 20028:1 20031:1 20032:2 20045:1 20075:1 20077:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:2 20123:2 20124:8 20128:4 20136:2 20142:1 20143:1 20146:3 20163:1 20166:3 20174:1 20180:1 20181:1 20183:1 20200:1 20202:1 20219:1 20220:1 20225:3 20230:1 20231:1 20237:1 20239:1 20241:1 20243:2 20286:1 20287:1 20292:1 20294:1 20300:2 20307:1 20309:2 20341:1 20360:1 20373:1 20391:1 20394:2 20395:1 20400:1 20405:1 20406:1 20407:2 20410:1 20412:1 20416:1 20437:1 20441:1 20454:1 20458:1 20460:1 20477:1 20492:2 20499:1 20503:1 20508:1 20514:1 20516:1 20517:1 20518:1 20520:1 20524:2 20525:1 20540:1 20548:1 20561:1 20569:1 20635:4 20645:1 20673:1 20681:3 20682:1 20692:2 20697:2 20706:1 20709:1 20742:3 20760:1 20761:1 20773:1 20792:1 20803:8 20814:2 20815:4 20831:1 20851:1 20876:1 20893:2 20894:2 20895:1 20900:2 20906:1 20929:2 20936:1 20942:2 20949:2 20951:1 20970:1 20974:2 20983:3 20990:1 20996:2 21003:2 21004:2 21010:2 21016:2 21041:1 21047:3916 21068:3 21070:3 21079:2 21080:1 21087:1 21096:1 21109:1 21164:3 21166:1 21173:2 21178:1 21205:1 21227:1 21234:1 21241:2 21260:1 21278:1 21279:4 21291:1 21292:4 21294:1 21295:2 21300:1 21308:1 21355:1 21362:1 21372:1 21374:1 21378:1 21382:1 21398:1 21401:3 21408:1 21419:1 21421:1 21431:1 21444:1 21449:2 21464:1 21466:2 21476:1 21478:1 21487:1 21510:1 21512:1 21515:3 21518:2 21520:1 21532:1 21539:1 21551:1 21566:1 21571:1 21585:1 21601:1 21602:1 21605:1 21609:1 21630:1 21644:1 21668:1 21689:3 21692:1 21709:2 21722:1 21729:1 21735:4 21790:1 21797:2 21801:1 21802:1 21806:1 21808:1 21812:1 21813:1 21817:1 21821:2 21827:3 21833:2 21843:1 21845:1 21856:2 21861:2 21863:1 21874:1 21877:3 21880:1 21883:1 21895:2 21907:1 21918:2 21921:7 21952:1 21953:8 21959:1 21960:1 21961:1 21966:2 21968:1 21976:1 21992:1 22001:2 22020:3 22025:3 22029:2 22032:3 22039:1 22041:1 22043:2 22045:2 22072:4 22082:1 22095:3 22100:1 22107:3 22119:1 22127:1 22133:1 22138:1 22143:1 22157:1 22162:1 22173:3 22174:1 22178:3 22181:1 22186:1 22214:1 22227:1 22229:1 22235:1 22240:1 22245:3 22262:1 22267:1 22271:1 22281:2 22294:1 22301:5 22306:1 22311:1 22318:1 22325:1 22333:1 22344:1 22351:1 22364:1 22370:1 22375:1 22382:1 22404:5 22415:1 22423:5 22440:1 22459:1 22462:1 22479:2 22483:1 22493:1 22495:1 22503:2 22504:1 22508:2 22518:1 22526:2 22530:1 22540:1 22545:1 22548:3 22553:1 22562:1 22565:3 22569:1 22572:1 22573:2 22583:1 22586:1 22603:1 22615:1 22617:1 22626:3 22638:1 22644:2 22655:1 22669:1 22681:4 22688:2 22690:1 22698:1 22708:1 22713:1 22737:3 22740:1 22750:1 22762:1 22766:2 22774:1 22776:1 22791:1 22793:1 22794:1 22803:1 22815:5 22819:1 22824:1 22829:1 22833:1 22834:1 22835:1 22837:1 22845:1 22851:1 22852:1 22870:7 22871:1 22877:2 22880:1 22886:1 22889:2 22942:1 22952:1 22954:1 22966:1 22984:2 22992:1 23002:1 23004:1 23005:2 23036:2 23046:1 23055:1 23059:3 23100:1 23108:4 23113:1 23114:1 23116:1 23129:1 23147:2 23156:2 23160:5 23163:1 23164:1 23169:4 23172:1 23175:1 23183:1 23229:1 23243:1 23256:2 23257:1 23277:1 23279:1 23281:1 23286:1 23288:1 23290:1 23330:1 23353:1 23359:2 23363:1 23367:1 23373:1 23374:1 23381:1 23383:1 23390:1 23415:2 23416:1 23419:1 23432:1 23434:1 23444:4 23447:2 23449:2 23453:1 23456:1 23463:1 23471:1 23490:6 23504:2 23518:1 23521:2 23522:1 23523:1 23527:2 23529:2 23532:2 23544:4 23550:3 23556:1 23560:2 23561:1 23570:1 23572:1 23574:1 23580:3 23583:1 23585:1 23596:1 23609:1 23612:1 23617:1 23622:2 23626:1 23644:2 23649:2 23656:1 23657:1 23658:1 23663:1 23669:2 23723:2 23728:1 23729:1 23736:1 23737:1 23745:9 23746:1 23751:2 23752:2 23754:1 23756:2 23765:1 23770:1 23773:1 23779:1 23782:1 23785:1 23790:1 23800:1 23802:2 23831:1 23837:1 23852:1 23853:2 23857:1 23858:1 23859:1 23861:1 23863:1 23891:1 23898:1 23899:1 23901:1 23912:2 23917:1 23919:2 23927:1 23931:1 23943:1 23949:1 23951:1 23953:2 23955:4 23970:1 23983:1 23985:1 23991:1 24009:1 24013:1 24024:6 24032:1 24039:1 24057:4 24058:1 24074:1 24078:1 24082:2 24090:1 24093:1 24098:1 24099:1 24113:2 24114:1 24127:1 24133:1 24138:1 24143:1 24144:1 24151:2 24166:2 24168:1 24194:1 24195:1 24197:1 24198:1 24201:1 24205:3 24206:2 24207:1 24208:1 24210:1 24214:1 24216:1 24217:1 24218:1 24222:1 24225:1 24226:3 24229:1 24241:1 24242:1 24243:1 24250:1 24255:2 24262:2 24263:3 24270:1 24274:1 24276:2 24279:1 24289:1 24298:1 24308:1 24314:1 24319:2 24321:1 24323:1 24334:1 24358:1 24359:2 24366:6 24368:1 24369:1 24373:2 24379:1 24383:2 24386:1 24394:2 24398:1 24401:1 24417:1 24418:1 24425:1 24427:1 24442:1 24449:1 24467:1 24474:1 24477:1 24478:4 24487:1 24493:7 24502:1 24504:1 24505:1 24527:1 24541:1 24542:6 24550:2 24578:1 24587:1 24601:3 24618:1 24636:1 24639:1 24643:2 24647:2 24650:3 24660:1 24677:1 24678:1 24681:1 24685:3 24687:1 24690:6 24692:3 24695:1 24698:1 24701:1 24706:2 24727:1 24742:2 24775:1 24788:2 24792:1 24805:4 24840:1 24841:1 24847:1 24854:1 24857:1 24858:1 24860:1 24874:1 24887:1 24904:1 24907:1 24916:3 24921:1 24925:2 24933:4 24936:1 24937:1 24943:1 24957:1 24959:1 24966:1 24969:1 24972:2 24974:1 24975:1 24983:1 24985:2 24990:3 25003:1 25011:1 25015:1 25017:1 25021:2 25022:1 25027:1 25032:1 25034:1 25036:1 25041:1 25048:1 25064:1 25072:2 25077:2 25093:1 25097:3 25100:1 25114:1 25115:2 25126:1 25127:1 25133:1 25134:2 25139:2 25149:1 25156:3 25167:4 25170:1 25173:1 25183:1 25184:3 25189:1 25190:1 25191:1 25197:1 25221:1 25224:9 25233:3 25238:1 25245:2 25298:1 25300:1 25306:5 25337:6 25343:1 25346:1 25356:2 25357:1 25364:3 25366:1 25367:6 25369:1 25371:1 25388:1 25401:1 25413:1 25415:1 25416:1 25423:1 25431:2 25434:2 25437:1 25454:1 25464:1 25467:1 25474:4 25494:5 25508:1 25510:1 25513:2 25515:1 25516:3 25526:2 25545:4 25548:1 25552:5 25557:1 25561:3 25562:1 25569:1 25582:3 25590:1 25595:2 25599:2 25600:1 25621:1 25623:1 25624:1 25635:4 25639:1 25646:1 25659:3 25662:2 25666:1 25669:5 25670:1 25672:1 25674:5 25678:3 25713:1 25714:1 25724:1 25726:1 25732:1 25798:1 25809:1 25810:1 25831:1 25834:1 25841:1 25850:1 25865:2 25878:1 25883:1 25884:1 25887:1 25897:1 25916:1 25920:1 25958:1 25962:1 25967:1 26002:3 26017:1 26019:4 26025:1 26031:1 26032:1 26035:1 26036:1 26046:1 26047:1 26056:4 26062:1 26073:1 26084:1 26088:1 26106:1 26110:2 26126:1 26133:1 26150:1 26158:1 26160:1 26188:2 26195:1 26201:1 26217:1 26218:1 26223:1 26239:1 26243:1 26253:1 26254:1 26255:1 26263:2 26269:2 26270:3 26278:2 26279:1 26286:4 26314:1 26320:1 26324:2 26328:1 26329:2 26331:1 26334:1 26354:2 26364:1 26367:1 26381:1 26390:1 26403:1 26405:1 26407:1 26411:1 26414:1 26423:2 26434:1 26435:1 26437:4 26442:2 26445:2 26459:1 26470:1 26481:1 26482:1 26488:1 26490:3 26502:7 26530:1 26535:1 26549:1 26550:1 26557:2 26565:1 26577:1 26579:1 26581:2 26582:1 26584:3 26605:1 26606:1 26608:1 26617:1 26646:2 26665:2 26675:1 26679:1 26681:1 26685:1 26686:1 26689:3 26705:1 26718:1 26726:1 26729:1 26762:1 26768:1 26780:1 26785:1 26793:1 26794:1 26839:1 26850:1 26867:1 26872:2 26873:1 26879:2 26890:1 26897:1 26898:1 26902:3 26932:1 26954:1 26961:1 26964:1 26966:1 26967:1 26977:1 26979:2 26984:3 26991:1 26996:1 26998:1 27020:2 27049:1 27052:1 27063:1 27065:3 27075:2 27076:1 27100:5 27105:1 27115:2 27116:1 27126:1 27133:1 27134:1 27144:3 27151:1 27171:1 27182:1 27186:1 27196:2 27198:1 27201:1 27202:1 27211:1 27222:2 27223:2 27224:1 27226:1 27227:6 27231:1 27233:1 27245:3 27247:1 27265:1 27276:1 27280:1 27295:1 27299:3 27300:1 27305:2 27317:1 27335:1 27336:3 27344:1 27351:1 27357:1 27358:1 27365:1 27376:1 27383:1 27390:1 27408:2 27412:1 27429:2 27436:2 27460:1 27466:1 27470:4 27471:3 27479:1 27481:1 27483:2 27484:2 27486:1 27487:4 27488:1 27489:3 27490:2 27496:1 27498:4 27508:2 27511:2 27519:1 27527:2 27530:3 27539:5 27547:1 27550:1 27557:1 27578:1 27580:2 27586:1 27603:2 27608:1 27612:2 27616:1 27622:1 27626:2 27654:1 27655:3 27661:1 27664:3 27669:1 27674:1 27679:2 27681:2 27683:2 27687:2 27689:3 27691:2 27692:1 27705:1 27711:1 27713:1 27749:1 27754:1 27797:12 27798:1 27799:1 27815:1 27821:10 27835:1 27839:4 27842:2 27854:1 27855:1 27858:1 27862:1 27864:1 27871:2 27876:4 27890:3 27892:1 27912:2 27915:3 27953:1 27980:1 27986:2 27987:2 27994:1 28003:1 28024:1 28030:1 28046:1 28052:2 28064:1 28065:1 28069:1 28074:1 28078:1 28082:1 28094:1 28101:1 28110:1 28113:2 28115:1 28133:2 28149:1 28164:1 28169:1 28173:1 28209:1 28224:1 28241:1 28275:1 28293:1 28294:1 28303:1 28308:1 28319:2 28348:3 28349:9 28351:1 28369:1 28377:1 28382:10 28384:1 28393:1 28394:1 28397:1 28401:1 28402:1 28413:4 28420:1 28424:2 28425:1 28430:1 28437:1 28501:1 28502:1 28527:1 28533:2 28536:2 28558:1 28576:1 28592:2 28593:1 28614:3 28617:1 28631:1 28632:5 28635:3 28636:1 28643:1 28651:1 28658:1 28664:1 28670:2 28672:1 28673:1 28674:2 28685:1 28694:2 28722:1 28730:1 28731:3 28736:1 28737:1 28759:4 28773:1 28776:1 28787:1 28803:3 28809:1 28833:2 28847:1 28884:1 28885:1 28921:1 28926:1 28944:1 28948:6 28954:1 28966:1 28969:2 28976:1 28983:2 28995:1 29005:4 29007:3 29012:2 29021:1 29032:1 29042:1 29114:1 29136:1 29137:2 29149:2 29152:2 29154:1 29203:1 29211:1 29225:1 29226:2 29233:1 29241:1 29263:2 29266:1 29277:1 29279:3 29283:1 29287:1 29290:1 29298:2 29305:1 29313:1 29329:1 29330:1 29336:1 29339:1 29342:1 29344:1 29345:1 29346:1 29349:1 29351:2 29356:1 29359:3 29361:1 29378:1 29383:1 29394:1 29419:1 29421:7 29433:1 29448:1 29450:2 29474:1 29483:1 29485:1 29496:1 29508:1 29510:1 29515:9 29521:2 29529:3 29535:1 29547:1 29559:1 29562:1 29567:2 29570:2 29578:1 29583:3 29605:4 29612:1 29623:1 29625:1 29632:1 29643:3 29649:1 29654:1 29658:1 29671:1 29676:4 29697:1 29702:1 29704:4 29711:1 29721:2 29724:1 29728:1 29729:1 29730:1 29735:1 29745:1 29775:1 29783:1 29800:2 29801:1 29820:2 29822:2 29824:1 29825:1 29826:1 29831:2 29839:1 29841:1 29845:1 29847:1 29899:1 29904:1 29916:2 29927:2 29931:1 29958:4 29969:1 29971:4 29972:3 29973:1 29974:4 29977:1 29995:1 29999:1 30002:2 30015:1 30035:1 30040:1 30044:1 30052:1 30059:1 30096:2 30100:2 30105:1 30142:1 30149:2 30156:2 30168:2 30169:1 30180:1 30181:1 30191:1 30199:1 30204:1 30210:1 30213:2 30231:6 30249:1 30252:1 30267:1 30285:1 30297:2 30305:1 30306:1 30315:1 30327:2 30330:1 30331:2 30342:1 30357:1 30360:1 30370:1 30380:5 30390:1 30393:2 30420:1 30431:1 30435:1 30445:2 30454:1 30466:1 30471:1 30475:4 30501:4 30504:3 30507:2 30510:2 30532:1 30548:2 30552:2 30572:2 30587:9 30589:3 30602:1 30606:1 30628:1 30638:1 30653:1 30660:3 30663:1 30664:7 30683:1 30685:1 30688:1 30689:2 30697:1 30704:7 30710:1 30718:2 30730:1 30738:1 30775:1 30776:1 30789:2 30798:6 30802:4 30805:3 30809:2 30814:3 30822:1 30834:1 30835:1 30843:4 30846:1 30854:2 30863:1 30864:1 30867:1 30868:2 30869:1 30875:2 30880:1 30883:1 30884:2 30892:3 30895:2 30908:2 30910:1 30946:2 30956:2 30960:1 30967:2 30968:1 30971:2 30977:2 30988:1 30994:2 30996:1 30999:1 31009:1 31019:1 31020:1 31031:1 31042:1 31046:3 31057:2 31062:1 31065:1 31074:1 31082:1 31095:1 31101:1 31104:2 31107:1 31113:1 31125:2 31127:1 31130:1 31135:1 31142:2 31144:1 31158:2 31161:1 31172:2 31184:2 31191:1 31195:2 31197:3 31206:1 31209:1 31216:8 31221:1 31227:1 31235:1 31287:1 31306:1 31315:2 31322:2 31324:1 31360:2 31363:2 31370:2 31386:1 31388:2 31391:1 31392:3 31398:1 31404:1 31422:2 31440:3 31448:1 31452:3 31459:1 31461:4 31463:1 31476:3 31478:1 31480:2 31484:2 31485:3 31491:1 31494:1 31521:1 31531:5 31538:1 31543:1 31545:1 31547:1 31553:1 31554:1 31566:2 31576:3 31581:1 31583:1 31590:1 31622:1 31625:1 31635:2 31640:1 31647:1 31649:1 31658:2 31665:25 31667:3 31670:2 31674:2 31679:2 31680:4 31684:3 31686:2 31688:2 31704:12 31721:3 31722:1 31727:1 31730:1 31750:1 31761:3 31763:1 31783:1 31790:1 31806:1 31811:1 31818:1 31821:1 31827:2 31834:7 31842:3 31846:1 31853:1 31877:8 31894:2 31897:2 31910:1 31911:1 31921:1 31932:1 31938:2 31952:1 31954:1 31960:1 31962:1 31964:1 31974:1 31976:1 31998:2 32009:1 32027:1 32035:3 32041:1 32042:1 32047:1 32053:1 32060:1 32061:2 32070:1 32083:1 32085:1 32094:1 32097:1 32103:1 32105:2 32117:1 32125:1 32128:1 32140:2 32142:1 32153:1 32171:2 32172:3 32181:1 32201:1 32207:1 32212:1 32229:1 32241:6 32244:7 32277:2 32280:3 32289:1 32299:1 32303:1 32304:1 32310:1 32311:2 32312:1 32319:1 32335:3 32348:1 32369:1 32403:1 32407:1 32420:1 32433:1 32439:2 32443:7 32447:1 32451:1 32456:1 32471:4 32472:1 32476:1 32487:2 32491:4 32499:1 32548:1 32551:1 32552:2 32579:1 32619:1 32625:1 32628:1 32632:1 32650:1 32651:1 32656:2 32660:1 32661:1 32675:2 32688:1 32693:3 32697:1 32713:6 32719:1 32722:1 32724:2 32750:3 32768:2 32791:1 32795:1 32803:1 32808:2 32814:2 32818:1 32824:1 32834:1 32843:1 32846:2 32871:1 32885:2 32899:1 32900:2 32910:2 32934:1 32935:1 32941:3 32944:4 32956:2 32963:2 33001:3 33019:1 33025:1 33038:1 33041:8 33055:1 33056:3 33057:2 33059:1 33075:1 33083:1 33084:1 33101:1 33105:3 33108:1 33115:1 33118:1 33133:1 33138:1 33141:3 33143:2 33146:1 33148:2 33149:2 33155:10 33156:1 33164:2 33167:5 33168:1 33171:5 33182:1 33198:2 33211:1 33220:3 33224:1 33225:2 33226:1 33232:1 33234:2 33267:1 33271:3
11 1:1 2:1 6:1 27:1 31:1 34:1 39:2 49:1 53:1 55:1 60:2 64:1 67:1 84:1 85:1 86:1 93:1 95:1 99:2 106:1 116:1 126:1 148:1 150:3 153:1 159:1 166:2 170:1 181:2 183:1 187:2 210:1 215:1 232:1 238:6 241:1 256:1 265:1 268:1 282:1 283:2 294:3 296:2 299:1 313:1 322:1 336:1 344:1 347:1 357:1 362:2 378:1 401:1 402:1 403:5 411:2 415:2 427:2 446:1 455:2 460:1 498:1 507:9 513:1 523:1 546:2 582:2 586:3 621:1 627:1 646:2 654:1 671:1 698:1 712:1 717:4 721:1 731:7 745:1 753:2 759:3 764:4 765:1 766:1 774:1 789:1 790:2 795:1 807:1 808:1 815:2 829:1 866:2 899:1 937:1 951:3 955:1 956:1 971:2 974:1 979:1 984:1 1000:1 1003:2 1022:3 1049:2 1053:1 1057:1 1067:2 1069:1 1070:1 1071:7 1073:1 1080:1 1082:1 1083:1 1094:1 1103:2 1106:2 1117:1 1118:1 1125:1 1127:1 1130:7 1132:1 1134:1 1141:2 1142:1 1144:1 1147:1 1158:2 1161:1 1165:1 1168:3 1171:3 1199:1 1204:4 1211:1 1216:3 1218:1 1220:1 1236:3 1239:1 1244:1 1257:1 1262:1 1265:1 1284:1 1287:1 1309:1 1311:2 1316:1 1318:1 1321:1 1322:1 1340:1 1351:2 1376:1 1378:1 1388:1 1392:1 1393:1 1403:1 1405:2 1409:1 1413:1 1415:1 1420:1 1421:1 1432:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:3 1465:1 1467:1 1480:1 1481:1 1487:2 1494:1 1496:2 1504:1 1509:1 1514:2 1532:1 1538:3 1539:1 1545:1 1547:1 1583:1 1588:2 1624:1 1626:2 1630:1 1635:1 1645:1 1650:1 1658:1 1664:4 1683:2 1686:1 1690:2 1691:1 1719:1 1726:7 1730:11 1739:11 1745:1 1747:1 1749:2 1751:2 1759:1 1761:1 1771:2 1793:1 1799:1 1807:1 1808:1 1813:1 1837:4 1839:4 1841:1 1844:1 1869:2 1878:2 1883:8 1884:1 1892:1 1899:1 1906:2 1917:7 1941:2 1943:1 1948:1 1955:1 1956:1 1957:1 1960:1 1963:2 1966:1 1973:1 1977:2 1980:1 1991:1 1999:1 2003:1 2019:2 2027:1 2037:1 2041:1 2061:1 2062:1 2073:2 2078:1 2080:1 2086:1 2098:1 2113:1 2118:1 2119:1 2133:3 2135:1 2136:1 2137:3 2138:2 2139:1 2141:1 2157:1 2158:1 2169:1 2177:2 2180:2 2187:1 2195:6 2198:1 2209:2 2214:1 2223:1 2225:2 2237:1 2241:2 2246:1 2249:2 2255:2 2263:2 2265:1 2269:1 2279:1 2284:2 2301:3 2304:1 2317:3 2322:1 2329:1 2345:1 2348:1 2355:1 2367:1 2372:1 2373:6 2381:1 2397:1 2399:2 2406:1 2412:1 2419:1 2421:1 2422:1 2429:1 2437:1 2441:2 2444:1 2465:1 2482:6 2496:1 2502:3 2508:1 2509:1 2519:1 2521:2 2525:2 2529:1 2530:1 2537:1 2547:1 2551:3 2552:1 2553:1 2555:6 2558:7 2559:1 2562:1 2563:2 2564:1 2568:1 2570:1 2573:3 2576:2 2578:3 2579:3 2583:1 2585:1 2587:1 2613:1 2616:2 2618:4 2620:3 2623:3 2624:6 2625:2 2626:1 2630:4 2631:3 2632:2 2634:3 2635:2 2637:1 2640:2 2642:5 2647:7 2648:2 2652:1 2655:1 2657:3 2662:2 2663:1 2681:1 2713:1 2720:1 2732:1 2738:1 2739:1 2742:1 2753:2 2769:2 2774:1 2784:1 2788:1 2795:2 2801:3 2821:1 2831:3 2832:1 2864:1 2867:2 2868:1 2878:2 2888:1 2890:2 2896:1 2905:2 2918:2 2923:1 2934:1 2951:3 2953:1 2955:1 2962:1 2964:1 2979:1 2985:1 2992:1 2993:1 3008:2 3017:2 3030:1 3033:1 3039:1 3042:1 3049:1 3051:1 3059:1 3062:1 3069:2 3071:1 3075:1 3080:4 3097:1 3098:1 3106:8 3116:2 3121:2 3134:2 3145:1 3157:1 3165:3 3171:1 3173:2 3181:1 3182:2 3193:1 3195:1 3197:2 3201:4 3213:2 3223:1 3257:3 3263:2 3283:1 3284:7 3291:1 3294:1 3295:12 3301:1 3302:2 3314:2 3318:2 3336:4 3350:2 3351:1 3352:1 3353:13 3360:1 3364:2 3369:1 3377:1 3379:1 3380:1 3386:1 3397:1 3408:1 3411:2 3418:2 3433:2 3464:1 3474:1 3475:1 3482:1 3484:1 3504:1 3517:1 3529:1 3539:1 3549:1 3550:4 3572:1 3578:2 3588:1 3598:1 3600:1 3625:1 3645:1 3646:1 3683:1 3690:5 3702:3 3707:1 3721:4 3726:1 3744:1 3755:1 3758:6 3762:1 3765:1 3769:1 3772:1 3790:1 3799:1 3816:1 3821:1 3822:3 3853:1 3856:1 3857:2 3868:1 3875:2 3882:1 3917:2 3926:1 3930:4 3936:2 3939:1 3942:2 3945:1 3951:1 3968:2 3971:1 3974:2 3978:1 3990:1 3992:2 4005:1 4011:1 4012:1 4018:1 4020:2 4033:1 4035:2 4040:1 4047:3 4060:2 4071:2 4074:1 4103:1 4105:1 4112:1 4115:2 4122:1 4131:1 4134:1 4153:1 4160:5 4174:5 4178:1 4188:1 4193:3 4195:1 4207:1 4225:2 4245:1 4247:2 4252:4 4253:16 4263:1 4267:1 4271:1 4279:3 4288:4 4289:4 4291:2 4292:1 4300:2 4303:1 4306:7 4308:2 4330:1 4331:1 4332:6 4334:1 4346:1 4351:3 4356:1 4361:1 4378:3 4382:1 4391:1 4405:1 4434:1 4437:1 4452:1 4454:2 4456:2 4465:1 4470:1 4477:1 4484:1 4487:1 4488:1 4510:4 4511:1 4512:1 4529:2 4531:3 4533:1 4536:3 4540:2 4545:3 4547:2 4548:1 4573:1 4574:2 4575:1 4581:2 4585:1 4593:1 4605:1 4609:1 4628:2 4635:1 4637:1 4663:1 4667:2 4684:1 4686:2 4704:1 4713:1 4714:1 4722:1 4727:1 4728:1 4730:1 4741:1 4758:1 4763:5 4767:8 4773:1 4785:1 4792:1 4793:4 4819:1 4824:2 4842:2 4848:1 4863:1 4871:1 4872:5 4877:2 4888:3 4889:2 4906:1 4907:1 4924:1 4929:1 4933:1 4936:2 4951:1 4959:1 4974:1 4979:1 4980:1 4989:1 4991:1 5000:1 5020:1 5022:1 5025:1 5030:1 5033:4 5042:1 5044:1 5045:2 5052:1 5054:1 5066:1 5072:1 5082:1 5098:1 5106:1 5132:1 5136:2 5143:5 5162:1 5163:1 5168:1 5171:1 5198:1 5212:1 5236:1 5239:1 5246:3 5269:1 5276:1 5287:4 5290:2 5299:1 5312:1 5337:3 5340:6 5365:2 5369:3 5396:1 5397:2 5456:1 5462:1 5471:1 5490:2 5491:1 5516:1 5517:1 5528:1 5530:1 5536:1 5562:39 5564:3 5596:2 5610:1 5641:1 5642:1 5671:1 5684:1 5688:1 5689:1 5690:3 5706:1 5717:4 5718:7 5719:4 5720:4 5722:1 5725:4 5730:2 5731:3 5733:4 5735:2 5740:2 5744:1 5748:1 5750:6 5752:3 5759:3 5763:1 5766:1 5770:1 5781:1 5788:1 5794:1 5797:1 5811:1 5814:2 5825:2 5832:1 5844:2 5853:2 5855:1 5868:1 5873:1 5883:1 5898:1 5907:2 5965:3 5975:1 6027:2 6033:1 6038:1 6043:1 6084:3 6088:1 6089:1 6108:1 6115:1 6124:1 6144:3 6150:3 6165:2 6169:2 6181:1 6186:3 6224:1 6233:1 6237:1 6261:1 6279:1 6283:3 6284:1 6292:1 6299:1 6300:1 6305:6 6318:1 6319:3 6322:1 6327:1 6328:1 6335:4 6345:3 6355:1 6372:2 6374:2 6382:2 6385:1 6388:1 6391:2 6395:1 6397:2 6400:1 6403:1 6407:2 6412:1 6418:2 6428:1 6431:1 6435:2 6454:1 6459:9 6469:1 6480:5 6496:1 6506:1 6508:2 6509:3 6518:1 6520:1 6529:1 6531:1 6533:1 6536:1 6537:1 6540:1 6547:2 6548:1 6553:1 6558:5 6561:1 6570:1 6581:4 6584:1 6598:1 6610:1 6624:1 6639:1 6643:1 6688:6 6692:5 6699:1 6706:1 6707:1 6722:1 6750:1 6761:1 6762:1 6773:1 6776:1 6793:1 6795:1 6806:1 6816:1 6819:3 6821:2 6827:1 6840:1 6843:1 6845:2 6847:6 6863:2 6874:1 6884:1 6885:1 6887:1 6888:2 6890:2 6897:4 6923:1 6935:1 6939:1 6944:1 6954:1 6961:8 6980:2 6983:1 6994:2 7003:1 7008:1 7012:2 7023:1 7025:1 7038:1 7044:1 7050:1 7059:1 7062:2 7066:1 7081:1 7087:3 7088:3 7089:3 7090:1 7091:1 7097:2 7101:1 7103:1 7114:2 7132:2 7150:1 7173:1 7190:3 7192:1 7193:1 7194:1 7196:2 7197:4 7200:4 7201:1 7204:3 7207:4 7209:3 7210:1 7211:3 7212:1 7217:1 7218:11 7221:1 7222:3 7224:1 7258:1 7272:1 7279:1 7303:1 7306:1 7307:2 7365:3 7378:1 7380:1 7381:1 7389:1 7406:2 7410:1 7429:3 7435:2 7439:1 7463:1 7469:1 7497:1 7511:1 7512:1 7535:2 7539:2 7543:1 7552:1 7557:1 7559:1 7570:2 7574:1 7589:2 7599:2 7602:2 7613:1 7619:1 7628:1 7637:2 7648:3 7649:1 7659:1 7662:1 7671:5 7672:1 7676:3 7677:1 7691:1 7705:6 7707:1 7714:1 7724:1 7741:1 7745:2 7748:1 7750:3 7766:1 7776:1 7782:1 7791:1 7792:1 7794:1 7809:1 7815:1 7822:1 7825:1 7833:1 7839:2 7840:1 7855:1 7867:1 7879:3 7884:1 7905:1 7912:2 7913:2 7927:1 7941:2 7949:1 7954:1 7956:1 7961:1 7984:1 7988:2 7993:1 8007:2 8014:1 8016:1 8025:2 8027:2 8043:1 8045:1 8054:1 8064:1 8075:12 8089:2 8090:1 8105:2 8127:1 8129:1 8139:1 8143:5 8150:1 8155:2 8167:1 8168:1 8189:1 8196:1 8209:1 8216:1 8219:1 8230:1 8237:1 8247:1 8248:1 8258:2 8273:1 8277:4 8283:1 8299:1 8302:1 8328:3 8338:1 8340:1 8347:1 8383:1 8387:1 8389:4 8406:1 8413:1 8417:4 8426:1 8432:4 8439:2 8446:1 8454:1 8474:1 8478:3 8491:1 8494:1 8498:1 8499:1 8504:1 8522:1 8531:1 8560:1 8562:1 8567:1 8568:1 8570:1 8573:1 8575:1 8582:1 8585:1 8593:1 8599:1 8609:4 8611:1 8615:1 8617:1 8619:1 8624:5 8630:3 8631:8 8633:5 8653:1 8654:3 8659:2 8663:1 8684:1 8688:2 8689:1 8702:55 8716:1 8717:1 8725:1 8726:10 8728:9 8734:2 8748:1 8767:1 8783:1 8793:1 8796:2 8797:1 8810:1 8815:2 8816:2 8817:1 8818:1 8826:1 8848:1 8860:1 8864:2 8874:2 8880:1 8886:1 8887:1 8889:1 8890:1 8891:1 8901:1 8906:1 8909:2 8923:1 8930:1 8932:2 8935:9 8957:1 8960:1 8974:1 8982:6 8987:1 8992:1 9025:1 9030:1 9048:2 9059:1 9094:2 9127:1 9129:1 9135:1 9143:1 9157:7 9168:2 9179:1 9183:2 9186:2 9203:3 9209:1 9221:2 9222:1 9231:1 9232:21 9242:1 9264:1 9267:1 9276:1 9279:1 9289:1 9295:1 9298:1 9299:1 9311:1 9324:1 9332:1 9333:1 9335:1 9339:1 9340:1 9381:1 9394:4 9425:1 9430:1 9435:1 9441:1 9466:1 9467:1 9470:1 9473:1 9484:2 9493:2 9495:1 9507:3 9508:1 9529:1 9540:2 9541:1 9542:1 9544:3 9561:1 9563:1 9623:2 9630:1 9632:2 9633:1 9634:4 9637:1 9638:1 9640:1 9642:2 9644:2 9646:2 9648:3 9649:2 9654:4 9661:1 9665:1 9669:1 9675:1 9680:1 9688:1 9690:1 9697:3 9705:1 9742:1 9743:1 9744:1 9746:1 9770:1 9781:1 9788:1 9806:1 9807:1 9810:2 9815:1 9823:1 9826:1 9833:2 9836:1 9842:3 9847:1 9857:1 9882:1 9901:3 9907:1 9923:1 9931:1 9937:2 9942:1 9945:2 9952:1 9965:2 9974:1 9976:3 9979:1 9982:1 9988:1 9994:1 9999:1 10006:1 10008:2 10015:1 10022:1 10027:3 10035:1 10054:1 10070:1 10087:1 10092:1 10095:2 10107:1 10117:1 10121:1 10124:1 10126:1 10138:1 10142:1 10150:2 10152:3 10159:1 10161:2 10171:1 10197:1 10208:1 10209:2 10210:2 10232:1 10265:1 10275:1 10282:1 10291:1 10294:1 10307:3 10331:1 10332:1 10334:2 10337:1 10338:1 10340:1 10345:8 10349:1 10362:1 10367:1 10371:1 10373:1 10374:2 10376:1 10385:1 10388:1 10389:1 10407:1 10417:1 10422:1 10430:1 10434:5 10435:1 10436:2 10445:1 10450:1 10454:1 10456:1 10459:1 10465:1 10479:1 10497:2 10502:1 10517:2 10518:1 10522:2 10524:1 10533:2 10540:1 10549:1 10550:1 10554:1 10570:1 10575:1 10583:1 10584:2 10586:1 10591:1 10596:1 10598:1 10602:1 10619:1 10621:1 10623:1 10627:1 10643:2 10648:1 10666:3 10695:1 10708:1 10709:5 10732:1 10747:1 10752:2 10764:1 10765:1 10773:1 10792:1 10800:1 10804:1 10806:3 10807:2 10822:1 10828:2 10831:1 10845:1 10846:2 10847:2 10858:1 10867:2 10876:1 10877:1 10886:1 10892:2 10893:1 10913:2 10948:12 10969:3 10970:1 10972:1 10973:4 10996:1 10997:2 10999:1 11008:1 11011:1 11020:2 11029:1 11030:1 11052:1 11063:2 11067:1 11079:1 11094:2 11119:3 11133:4 11141:1 11153:1 11163:3 11167:1 11170:2 11171:1 11172:1 11175:2 11178:2 11188:3 11200:1 11201:1 11208:1 11210:4 11214:4 11215:1 11218:1 11222:1 11225:1 11226:1 11231:2 11232:3 11234:2 11235:1 11239:2 11242:2 11265:1 11266:2 11272:1 11276:5 11287:1 11288:2 11291:1 11293:1 11302:1 11305:1 11308:1 11309:1 11323:2 11324:1 11331:1 11339:1 11342:1 11356:1 11362:1 11365:1 11376:8 11383:2 11415:1 11421:1 11431:1 11433:1 11438:1 11445:2 11448:2 11450:1 11451:1 11456:1 11464:1 11473:1 11488:1 11492:1 11499:1 11517:2 11526:1 11550:2 11573:1 11575:1 11584:1 11588:1 11594:1 11601:1 11603:1 11607:5 11611:3 11637:2 11638:1 11650:1 11656:1 11660:1 11674:1 11677:3 11690:1 11692:1 11695:1 11697:1 11701:3 11717:1 11730:2 11741:1 11744:1 11778:1 11784:7 11795:1 11796:1 11811:1 11820:1 11822:9 11830:1 11841:1 11842:1 11846:1 11847:1 11854:1 11855:1 11858:1 11860:1 11879:1 11892:1 11895:1 11899:1 11906:3 11912:1 11914:3 11915:1 11930:1 11931:2 11933:1 11949:2 11955:1 11966:1 11992:2 12002:1 12005:1 12015:5 12023:1 12026:2 12028:1 12031:1 12039:4 12042:1 12047:1 12050:3 12052:1 12099:1 12109:2 12112:1 12145:1 12149:1 12154:2 12155:1 12162:1 12169:4 12187:1 12197:1 12213:1 12214:1 12220:1 12255:2 12266:1 12274:1 12275:1 12284:1 12307:2 12310:1 12319:1 12325:1 12327:4 12329:6 12333:1 12335:1 12336:4 12337:1 12339:1 12350:1 12352:2 12354:1 12356:1 12361:1 12369:1 12377:1 12378:2 12379:1 12389:1 12406:1 12427:1 12434:2 12438:1 12448:1 12461:1 12472:1 12475:1 12476:1 12477:2 12483:1 12487:1 12501:1 12526:1 12537:1 12544:1 12545:1 12551:1 12552:1 12559:1 12580:1 12593:1 12596:1 12604:2 12607:1 12618:4 12630:2 12640:1 12647:1 12649:1 12672:1 12682:1 12733:1 12741:1 12743:1 12762:1 12764:1 12766:1 12770:1 12775:1 12776:1 12783:1 12789:1 12794:1 12805:1 12811:3 12814:3 12819:3 12821:1 12836:1 12845:1 12862:3 12865:13 12867:1 12876:1 12877:1 12893:1 12896:1 12902:1 12910:2 12915:1 12918:1 12923:1 12928:2 12929:1 12933:1 12935:4 12936:2 12952:1 12954:1 12970:1 12977:2 12988:3 12994:1 13000:1 13005:1 13007:1 13009:1 13012:1 13015:1 13018:3 13027:1 13032:1 13050:3 13061:2 13064:1 13066:1 13073:1 13081:1 13085:3 13088:8 13089:2 13094:2 13111:1 13116:1 13128:8 13135:1 13137:1 13138:2 13142:4 13143:1 13144:1 13146:1 13148:1 13149:1 13150:2 13151:8 13152:1 13153:1 13156:1 13162:9 13168:1 13169:1 13192:1 13196:2 13202:1 13220:2 13228:1 13231:1 13239:2 13244:1 13254:2 13264:2 13285:1 13286:1 13294:2 13296:1 13302:1 13308:1 13320:7 13338:1 13365:1 13391:1 13408:1 13410:3 13415:1 13423:2 13427:1 13429:1 13434:1 13443:1 13448:2 13456:1 13461:1 13463:2 13473:5 13476:1 13480:2 13486:1 13510:1 13515:2 13517:3 13527:2 13552:2 13553:2 13556:1 13590:1 13592:1 13600:1 13606:2 13608:1 13611:1 13616:2 13621:1 13649:1 13653:2 13654:3 13662:1 13674:1 13684:3 13685:4 13690:1 13700:2 13718:3 13738:1 13742:3 13745:1 13750:3 13759:1 13778:2 13805:1 13815:1 13821:3 13826:2 13830:1 13848:1 13863:2 13873:6 13874:1 13895:2 13896:3 13899:1 13921:1 13930:1 13933:1 13935:1 13939:1 13940:1 13973:1 13976:2 14004:2 14007:2 14011:1 14018:1 14021:1 14030:1 14037:1 14039:1 14055:1 14059:1 14061:2 14069:1 14081:2 14101:1 14102:2 14119:1 14125:2 14146:1 14149:1 14162:4 14180:1 14183:2 14207:1 14210:1 14214:2 14242:1 14252:1 14256:2 14267:1 14281:1 14318:2 14319:1 14341:1 14345:10 14353:1 14356:2 14361:1 14370:4 14376:3 14380:1 14384:1 14402:1 14408:1 14409:1 14410:2 14416:1 14421:1 14436:2 14441:2 14443:2 14449:1 14468:1 14470:1 14471:1 14472:1 14473:5 14480:2 14483:3 14489:2 14497:1 14518:2 14520:1 14541:1 14545:1 14572:1 14577:1 14581:1 14583:1 14589:2 14592:1 14605:1 14614:1 14620:1 14633:1 14640:1 14652:1 14658:2 14686:1 14688:2 14697:1 14706:1 14753:1 14781:1 14791:1 14793:5 14804:1 14806:1 14810:1 14831:1 14841:1 14854:3 14858:1 14859:1 14867:2 14870:2 14873:1 14877:7 14881:6 14883:1 14891:1 14895:1 14896:1 14904:5 14907:8 14915:1 14921:3 14935:2 14940:1 14942:2 14945:1 14949:3 14957:1 14958:2 14959:1 14960:1 14975:2 14979:1 14980:1 14999:1 15005:1 15016:1 15019:2 15028:1 15033:2 15039:10 15040:1 15047:2 15054:1 15059:1 15066:2 15075:1 15079:2 15082:1 15087:1 15122:1 15125:4 15131:1 15136:1 15160:2 15161:1 15172:1 15187:1 15191:1 15212:1 15215:1 15216:1 15217:5 15236:1 15246:1 15251:1 15255:1 15259:1 15275:1 15278:2 15281:2 15293:1 15311:1 15322:1 15325:3 15333:2 15336:1 15344:1 15361:1 15367:2 15374:3 15381:2 15386:1 15410:1 15429:1 15438:1 15443:1 15476:1 15477:3 15480:1 15483:3 15487:1 15488:2 15489:2 15496:1 15508:2 15513:1 15519:2 15520:1 15523:1 15542:1 15543:1 15551:1 15555:1 15574:4 15586:1 15601:1 15616:8 15622:1 15625:2 15645:1 15662:1 15664:1 15666:2 15680:2 15704:1 15725:1 15728:5 15734:5 15740:2 15749:2 15780:2 15811:2 15820:4 15840:2 15855:1 15861:1 15864:1 15900:2 15905:1 15923:1 15929:2 15934:1 15938:1 15945:1 15955:1 15959:1 15960:2 15962:1 15974:4 15986:1 15990:1 15993:1 15996:2 15997:1 16000:3 16021:1 16026:1 16030:1 16033:1 16040:3 16042:1 16043:1 16046:1 16059:1 16063:1 16067:1 16071:1 16073:1 16092:1 16098:4 16114:1 16119:2 16136:1 16144:1 16145:1 16150:2 16152:1 16178:2 16183:1 16187:1 16189:1 16197:2 16198:1 16208:1 16214:1 16226:1 16227:4 16229:1 16235:1 16236:1 16237:1 16254:1 16266:1 16270:1 16273:1 16284:1 16289:1 16321:1 16330:5 16347:1 16350:2 16351:1 16355:1 16362:1 16390:2 16393:2 16407:1 16411:1 16422:1 16427:2 16428:1 16433:2 16448:1 16450:1 16451:1 16457:2 16463:3 16484:4 16488:1 16508:3 16523:1 16534:1 16538:1 16556:2 16559:2 16566:5 16598:1 16606:2 16608:1 16627:1 16630:1 16634:1 16642:1 16650:2 16655:1 16674:2 16678:1 16684:5 16687:1 16688:1 16693:1 16694:1 16721:2 16723:1 16739:1 16741:1 16753:1 16762:1 16782:8 16783:2 16787:1 16789:1 16793:1 16797:1 16831:1 16832:4 16835:1 16842:1 16846:3 16848:1 16860:1 16884:3 16904:1 16922:1 16936:4 16940:2 16942:1 16944:1 16948:1 16971:3 16973:3 16984:1 16988:3 16990:1 16999:1 17012:2 17023:1 17042:1 17045:4 17046:1 17048:1 17053:2 17056:2 17061:1 17063:1 17079:1 17098:2 17103:1 17105:1 17127:1 17140:1 17155:1 17176:1 17187:1 17194:3 17203:1 17214:1 17219:1 17224:3 17226:1 17246:1 17251:3 17269:1 17289:2 17293:1 17297:1 17314:1 17317:2 17318:1 17324:2 17334:1 17370:1 17379:1 17389:1 17406:1 17420:1 17423:17 17433:2 17437:1 17448:1 17457:1 17479:2 17489:2 17499:1 17503:3 17514:1 17516:1 17528:3 17531:1 17539:1 17543:2 17553:1 17567:1 17571:1 17576:1 17581:1 17586:2 17596:1 17598:1 17610:1 17648:1 17661:3 17673:1 17681:1 17689:14 17694:1 17695:1 17698:1 17699:3 17700:4 17709:1 17710:3 17714:1 17715:1 17718:1 17722:1 17729:5 17731:2 17740:1 17748:1 17752:1 17756:1 17758:1 17767:1 17771:1 17775:2 17776:1 17783:1 17784:2 17805:5 17824:1 17829:1 17830:2 17857:3 17860:2 17866:1 17871:1 17876:1 17878:1 17880:1 17884:1 17888:5 17930:1 17951:1 17953:4 17955:2 17959:1 17989:1 18008:1 18009:1 18010:1 18016:1 18049:4 18053:4 18074:4 18079:1 18108:2 18111:1 18114:1 18141:1 18148:1 18157:3 18160:1 18187:1 18195:13 18199:1 18214:4 18220:1 18226:1 18227:1 18234:3 18236:1 18243:2 18247:1 18258:1 18260:1 18273:1 18281:2 18286:1 18289:2 18301:1 18302:1 18306:1 18308:2 18313:1 18315:1 18319:4 18321:2 18322:1 18323:1 18327:1 18329:1 18330:1 18332:3 18340:2 18341:1 18342:5 18344:1 18351:1 18352:3 18361:1 18372:1 18375:1 18401:1 18416:1 18417:2 18426:1 18492:3 18527:2 18537:1 18546:1 18561:1 18584:1 18603:1 18619:1 18621:1 18635:2 18672:1 18683:1 18684:1 18693:1 18697:1 18699:1 18702:1 18708:1 18716:2 18717:1 18727:1 18732:1 18733:1 18737:1 18738:1 18739:3 18743:1 18764:1 18777:2 18785:1 18794:1 18799:3 18807:1 18808:2 18821:1 18842:3 18879:1 18896:2 18900:1 18908:1 18911:3 18919:5 18928:1 18949:1 18966:1 18967:1 18978:1 18987:1 19000:1 19005:1 19024:1 19029:3 19030:1 19035:1 19039:1 19043:1 19049:1 19050:1 19059:7 19062:4 19069:2 19081:1 19089:3 19103:2 19108:1 19117:1 19126:1 19135:1 19139:5 19155:1 19165:3 19169:2 19177:1 19182:1 19200:4 19207:2 19208:1 19209:1 19212:1 19213:1 19216:3 19233:2 19246:1 19248:2 19250:1 19261:2 19262:1 19276:1 19295:1 19296:1 19320:10 19329:1 19333:2 19345:1 19349:1 19351:1 19352:1 19354:1 19357:3 19362:1 19372:1 19384:1 19398:2 19417:1 19432:2 19443:1 19444:2 19448:2 19452:1 19465:2 19471:1 19475:1 19493:2 19503:1 19508:2 19509:1 19526:1 19532:1 19536:1 19559:1 19566:1 19567:1 19583:1 19585:1 19622:1 19628:1 19634:1 19637:1 19638:1 19643:1 19655:1 19659:1 19663:2 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19722:1 19758:1 19763:3 19772:5 19774:1 19776:1 19781:2 19783:3 19784:1 19794:1 19797:1 19809:1 19816:1 19819:1 19843:3 19849:2 19850:1 19867:1 19872:1 19897:1 19904:1 19910:2 19919:1 19936:1 19951:2 19962:1 19965:1 19966:1 20000:1 20007:2 20008:1 20020:2 20028:1 20031:1 20032:2 20045:1 20075:1 20077:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:2 20123:2 20124:8 20128:4 20136:2 20142:1 20143:1 20146:3 20163:1 20166:3 20174:1 20180:1 20181:1 20183:1 20200:1 20202:1 20219:1 20220:1 20225:3 20230:1 20231:1 20237:1 20239:1 20241:1 20243:2 20286:1 20287:1 20292:1 20294:1 20300:2 20307:1 20309:2 20341:1 20360:1 20373:1 20391:1 20394:2 20395:1 20400:1 20405:1 20406:1 20407:2 20410:1 20412:1 20416:1 20437:1 20441:1 20454:1 20458:1 20460:1 20477:1 20492:2 20499:1 20503:1 20508:1 20514:1 20516:1 20517:1 20518:1 20520:1 20524:2 20525:1 20540:1 20548:1 20561:1 20569:1 20635:4 20645:1 20673:1 20681:3 20682:1 20692:3 20697:2 20706:1 20709:1 20742:3 20760:1 20761:1 20773:1 20792:1 20803:8 20814:2 20815:4 20831:1 20851:1 20876:1 20893:2 20894:2 20895:1 20900:2 20906:1 20929:2 20936:1 20942:2 20949:2 20951:1 20970:1 20974:2 20983:3 20990:1 20996:2 21003:2 21004:2 21010:2 21016:2 21041:1 21047:4001 21068:3 21070:3 21079:2 21080:1 21087:1 21096:1 21109:1 21164:3 21166:1 21173:2 21178:1 21205:1 21227:1 21234:1 21241:2 21260:1 21278:1 21279:4 21291:1 21292:4 21294:1 21295:2 21300:1 21308:1 21355:1 21362:1 21372:1 21374:1 21378:1 21382:1 21398:1 21401:3 21408:1 21419:1 21421:1 21431:1 21444:1 21449:2 21464:1 21466:2 21476:1 21478:1 21487:1 21510:1 21512:1 21515:3 21518:2 21520:1 21532:1 21539:1 21551:1 21566:1 21571:1 21585:1 21601:1 21602:1 21605:1 21609:1 21630:1 21644:1 21668:1 21689:3 21692:1 21709:2 21722:1 21729:1 21730:1 21735:4 21790:1 21797:2 21801:1 21802:1 21806:1 21808:1 21812:1 21813:1 21817:1 21821:2 21827:3 21833:2 21843:1 21845:1 21856:2 21861:2 21863:1 21874:1 21877:3 21880:1 21883:1 21895:2 21907:1 21913:1 21918:2 21921:7 21952:1 21953:8 21959:1 21960:1 21961:1 21966:2 21968:1 21976:1 21992:1 22001:2 22020:3 22025:3 22029:2 22032:3 22039:1 22041:1 22043:2 22045:2 22072:4 22082:1 22095:3 22100:1 22107:3 22119:1 22127:1 22133:1 22138:1 22143:1 22157:1 22162:1 22173:3 22174:1 22178:3 22181:1 22186:1 22214:1 22227:1 22229:1 22235:1 22240:1 22245:3 22262:1 22267:1 22271:1 22281:2 22294:1 22301:5 22306:1 22311:1 22318:1 22325:1 22333:1 22344:1 22351:1 22364:1 22370:1 22375:1 22382:1 22404:5 22415:1 22423:5 22440:1 22459:1 22462:1 22479:2 22483:1 22493:1 22495:1 22503:2 22504:1 22508:2 22518:1 22526:2 22530:1 22540:1 22545:1 22548:3 22553:1 22562:1 22565:3 22569:1 22572:1 22573:2 22583:1 22586:1 22598:1 22603:1 22615:1 22617:1 22626:3 22638:1 22644:2 22655:1 22659:1 22669:1 22681:4 22688:2 22690:1 22698:1 22708:1 22713:1 22737:3 22740:1 22750:1 22762:1 22766:2 22774:1 22776:1 22791:1 22793:1 22794:1 22803:1 22815:5 22819:1 22824:1 22829:1 22833:1 22834:1 22835:1 22837:1 22845:1 22851:1 22852:1 22870:7 22871:1 22877:2 22880:1 22886:1 22889:2 22942:1 22952:1 22954:1 22966:1 22971:1 22984:2 22992:1 23002:1 23004:1 23005:2 23036:2 23046:1 23055:1 23059:3 23100:1 23108:4 23113:1 23114:1 23116:1 23129:1 23147:2 23156:2 23160:5 23163:1 23164:1 23169:4 23172:1 23175:1 23183:1 23229:1 23243:1 23256:2 23257:1 23277:1 23279:1 23281:1 23286:1 23288:1 23290:1 23330:1 23353:1 23356:1 23359:2 23363:1 23367:1 23373:1 23374:1 23381:1 23383:1 23390:1 23415:2 23416:1 23419:1 23432:1 23434:1 23444:4 23447:2 23449:2 23453:1 23456:1 23463:1 23471:1 23490:7 23504:2 23518:1 23521:2 23522:2 23523:1 23527:2 23529:2 23532:2 23544:4 23550:3 23556:1 23560:2 23561:1 23570:1 23572:1 23574:1 23580:3 23583:1 23585:1 23596:1 23609:1 23612:1 23617:1 23622:2 23626:1 23644:2 23649:2 23656:1 23657:1 23658:1 23663:1 23669:2 23708:1 23723:2 23728:1 23729:1 23736:1 23737:1 23745:9 23746:1 23751:2 23752:2 23754:1 23756:2 23765:1 23770:1 23773:1 23779:1 23782:1 23785:1 23790:1 23800:1 23802:2 23831:1 23837:1 23852:1 23853:2 23857:1 23858:1 23859:1 23861:1 23863:1 23891:1 23898:1 23899:1 23901:1 23912:2 23917:1 23919:2 23927:1 23931:1 23943:1 23949:1 23951:1 23953:2 23955:4 23970:1 23983:1 23985:1 23991:1 24009:1 24013:1 24024:6 24032:1 24039:1 24057:4 24058:1 24074:1 24078:1 24082:2 24090:1 24093:1 24098:1 24099:1 24113:2 24114:1 24127:1 24133:1 24138:1 24143:1 24144:1 24151:2 24166:2 24168:1 24194:1 24195:1 24197:1 24198:1 24201:1 24205:3 24206:2 24207:1 24208:1 24210:1 24214:1 24216:1 24217:1 24218:1 24222:1 24225:1 24226:3 24229:1 24241:1 24242:1 24243:1 24250:1 24255:2 24262:2 24263:3 24270:1 24274:1 24276:2 24279:1 24289:1 24298:1 24308:1 24314:2 24319:2 24321:1 24323:1 24334:1 24358:1 24359:2 24366:6 24368:1 24369:1 24373:2 24379:1 24383:2 24386:1 24394:2 24398:1 24401:1 24417:1 24418:1 24425:1 24427:1 24442:1 24449:1 24467:1 24474:1 24477:1 24478:4 24487:2 24493:7 24502:1 24504:1 24505:1 24527:1 24541:1 24542:6 24550:2 24578:1 24587:1 24601:3 24618:1 24636:1 24639:1 24643:2 24647:2 24650:3 24660:1 24677:1 24678:1 24681:1 24685:3 24687:1 24690:6 24692:4 24695:1 24698:1 24701:1 24706:2 24727:1 24742:2 24775:1 24788:2 24792:1 24805:4 24840:1 24841:1 24847:1 24854:1 24857:1 24858:1 24860:1 24874:1 24887:1 24904:1 24907:1 24916:3 24921:1 24925:2 24933:4 24936:1 24937:1 24943:1 24957:1 24959:1 24966:1 24969:1 24972:2 24974:1 24975:1 24983:1 24985:2 24990:3 25003:1 25011:1 25015:1 25017:1 25021:2 25022:1 25027:1 25032:1 25034:1 25036:1 25041:1 25048:1 25064:1 25072:2 25077:2 25093:1 25097:3 25100:1 25114:1 25115:2 25126:1 25127:1 25133:1 25134:2 25139:2 25149:1 25156:4 25167:4 25170:1 25173:1 25183:1 25184:3 25189:1 25190:1 25191:1 25197:1 25221:1 25224:9 25233:3 25238:1 25245:2 25298:1 25300:1 25306:5 25337:7 25343:1 25346:1 25356:2 25357:1 25364:3 25366:1 25367:6 25369:1 25371:1 25388:1 25401:1 25413:1 25415:1 25416:1 25423:1 25431:2 25434:2 25437:1 25454:1 25464:1 25467:1 25474:4 25494:5 25508:1 25510:1 25513:2 25515:1 25516:3 25526:2 25545:4 25548:1 25552:5 25557:1 25561:3 25562:1 25569:1 25582:3 25590:1 25595:2 25599:3 25600:1 25621:1 25623:1 25624:1 25635:4 25639:1 25646:1 25659:3 25662:2 25666:1 25669:5 25670:1 25672:1 25674:5 25678:3 25713:1 25714:1 25724:1 25726:1 25732:1 25798:1 25809:1 25810:1 25831:1 25834:1 25841:1 25850:1 25865:2 25878:1 25883:1 25884:1 25887:1 25897:1 25916:1 25920:1 25958:1 25962:1 25967:1 26002:3 26017:1 26019:4 26025:1 26031:1 26032:1 26035:1 26036:1 26046:1 26047:1 26056:4 26062:1 26073:1 26084:1 26088:1 26106:1 26110:2 26126:1 26133:1 26150:1 26158:1 26160:1 26188:2 26195:1 26201:1 26217:1 26218:1 26223:1 26239:1 26243:1 26253:1 26254:1 26255:1 26263:2 26269:2 26270:3 26278:2 26279:1 26286:4 26314:1 26320:1 26324:2 26328:1 26329:2 26331:1 26334:1 26354:2 26364:1 26367:1 26381:1 26390:1 26403:1 26405:1 26407:1 26411:1 26414:1 26423:2 26434:1 26435:1 26437:4 26442:2 26445:2 26459:1 26470:1 26481:1 26482:1 26488:1 26490:3 26502:7 26530:1 26535:1 26549:1 26550:1 26557:2 26565:1 26577:1 26579:1 26581:2 26582:1 26584:4 26605:1 26606:1 26608:1 26617:1 26646:2 26665:2 26675:1 26679:1 26681:1 26685:1 26686:1 26689:3 26705:1 26718:1 26726:1 26729:1 26762:1 26768:1 26780:1 26785:1 26793:1 26794:1 26839:1 26850:1 26867:1 26872:2 26873:1 26879:2 26890:1 26897:1 26898:1 26902:3 26932:1 26954:1 26961:1 26964:1 26966:1 26967:1 26977:1 26979:2 26984:3 26991:1 26996:1 26998:1 27020:2 27049:1 27052:1 27063:1 27065:3 27075:2 27076:1 27100:5 27105:1 27115:2 27116:1 27126:1 27133:1 27134:1 27144:3 27151:1 27171:1 27182:1 27186:1 27196:2 27198:1 27201:1 27202:1 27211:1 27222:2 27223:2 27224:1 27226:1 27227:6 27231:1 27233:1 27245:3 27247:1 27259:1 27265:1 27276:1 27280:1 27295:1 27299:3 27300:1 27305:2 27317:1 27335:1 27336:3 27344:1 27351:1 27357:1 27358:1 27365:1 27376:1 27383:1 27390:1 27408:2 27412:1 27429:2 27436:2 27460:1 27466:1 27470:4 27471:3 27479:1 27481:1 27483:2 27484:2 27486:1 27487:4 27488:1 27489:3 27490:2 27496:1 27498:4 27508:2 27511:2 27519:1 27527:2 27530:3 27539:5 27547:1 27550:1 27557:1 27578:1 27580:2 27586:1 27603:2 27608:1 27612:3 27616:1 27622:1 27626:2 27654:1 27655:3 27661:1 27664:4 27669:1 27674:1 27679:2 27681:2 27683:2 27687:2 27689:3 27691:2 27692:1 27705:1 27711:1 27713:1 27749:1 27754:1 27773:1 27776:1 27797:12 27798:1 27799:1 27815:1 27821:10 27835:1 27839:4 27842:2 27854:1 27855:1 27858:1 27862:1 27864:1 27871:2 27876:4 27890:3 27892:1 27912:2 27915:3 27953:1 27980:1 27986:2 27987:2 27994:1 28003:1 28024:1 28030:1 28046:1 28052:2 28064:1 28065:1 28069:1 28072:1 28074:1 28078:1 28082:1 28094:1 28101:1 28110:1 28113:2 28115:1 28133:3 28149:1 28164:1 28169:1 28173:1 28209:1 28224:1 28241:1 28275:1 28293:1 28294:1 28303:1 28308:1 28319:2 28348:3 28349:9 28351:1 28369:1 28377:1 28382:10 28384:1 28393:1 28394:1 28397:1 28401:1 28402:1 28413:4 28420:1 28424:2 28425:1 28430:1 28437:1 28501:1 28502:1 28508:1 28527:1 28533:2 28536:2 28558:1 28576:1 28592:2 28593:1 28614:3 28617:1 28631:1 28632:5 28635:4 28636:1 28643:1 28651:1 28658:1 28664:1 28670:2 28672:1 28673:1 28674:2 28685:1 28694:2 28722:1 28730:1 28731:3 28736:1 28737:1 28759:4 28773:1 28776:1 28787:1 28803:3 28809:1 28833:2 28847:1 28884:1 28885:1 28892:1 28921:1 28926:1 28944:1 28948:6 28954:1 28966:1 28969:2 28976:1 28983:2 28995:1 29005:4 29007:3 29012:2 29021:1 29032:1 29042:1 29114:1 29136:1 29137:2 29149:2 29152:2 29154:1 29203:1 29211:1 29225:1 29226:2 29233:1 29241:1 29263:2 29266:1 29277:1 29279:3 29283:1 29287:1 29290:1 29298:2 29305:1 29313:1 29329:1 29330:1 29336:1 29339:1 29342:1 29344:1 29345:1 29346:1 29349:1 29351:2 29356:1 29359:4 29361:1 29378:1 29383:1 29394:1 29419:1 29421:7 29433:1 29448:1 29450:2 29474:1 29483:1 29485:1 29496:1 29508:1 29510:1 29515:9 29521:2 29529:3 29535:1 29547:1 29559:1 29562:1 29567:2 29570:2 29578:1 29583:3 29594:1 29605:4 29612:1 29623:1 29625:1 29632:1 29643:3 29649:1 29654:1 29658:1 29671:1 29676:4 29697:1 29702:1 29704:4 29711:1 29721:2 29724:1 29728:1 29729:1 29730:1 29735:1 29745:1 29775:1 29783:1 29800:2 29801:1 29820:2 29822:2 29824:1 29825:1 29826:1 29831:2 29839:1 29841:1 29845:1 29847:1 29899:1 29904:1 29916:2 29927:2 29931:1 29958:4 29969:1 29971:4 29972:3 29973:1 29974:4 29977:1 29995:1 29999:1 30002:2 30015:1 30035:1 30040:1 30044:1 30052:1 30059:1 30096:2 30100:2 30105:1 30142:1 30149:2 30156:2 30168:2 30169:1 30175:1 30180:1 30181:1 30191:1 30199:1 30204:1 30210:1 30213:2 30231:6 30249:1 30252:1 30267:1 30285:1 30297:2 30305:1 30306:1 30315:1 30327:2 30330:1 30331:2 30342:1 30357:1 30360:1 30370:1 30380:5 30390:1 30393:2 30420:1 30431:1 30435:1 30445:2 30454:1 30466:1 30471:1 30475:4 30501:4 30504:3 30507:2 30510:2 30532:1 30548:2 30552:2 30572:2 30587:9 30589:3 30602:1 30606:1 30628:1 30638:1 30653:1 30660:3 30663:1 30664:7 30683:1 30685:1 30688:1 30689:2 30697:1 30704:7 30710:1 30718:2 30730:1 30738:1 30775:1 30776:1 30789:2 30798:6 30802:4 30805:3 30809:2 30814:3 30822:1 30834:1 30835:1 30843:4 30846:1 30854:2 30863:1 30864:1 30867:1 30868:2 30869:1 30875:2 30880:2 30883:1 30884:2 30892:3 30895:2 30908:2 30910:1 30946:2 30956:2 30960:1 30967:2 30968:1 30971:2 30977:2 30988:1 30994:2 30996:1 30999:1 31009:1 31019:1 31020:1 31031:1 31042:1 31046:3 31057:2 31062:1 31065:1 31074:1 31082:1 31095:1 31101:1 31104:2 31107:1 31113:1 31125:2 31127:1 31130:1 31135:1 31142:2 31144:1 31158:2 31161:1 31172:2 31184:2 31191:1 31195:2 31197:3 31206:1 31209:1 31216:8 31221:1 31227:1 31235:1 31287:1 31306:1 31315:2 31322:2 31324:1 31360:2 31363:2 31370:2 31375:1 31386:1 31388:2 31391:1 31392:3 31398:1 31404:1 31422:2 31440:3 31448:1 31452:3 31459:1 31461:4 31463:1 31476:3 31478:1 31480:2 31484:2 31485:3 31491:1 31494:1 31521:1 31531:5 31538:1 31543:1 31545:1 31547:1 31553:1 31554:1 31566:2 31576:3 31581:1 31583:1 31590:1 31622:1 31625:1 31635:2 31640:1 31647:1 31649:1 31658:2 31665:25 31667:3 31670:2 31674:2 31679:2 31680:4 31684:3 31686:2 31688:2 31704:12 31721:3 31722:1 31727:1 31730:1 31750:1 31761:3 31763:1 31783:1 31790:1 31806:1 31811:1 31818:1 31821:1 31827:2 31834:7 31842:3 31846:1 31853:1 31877:8 31894:2 31897:2 31910:1 31911:1 31916:1 31921:1 31932:1 31938:2 31952:1 31954:1 31960:1 31962:1 31964:1 31974:1 31976:1 31998:2 32009:1 32027:1 32035:3 32041:1 32042:1 32047:1 32053:1 32060:1 32061:2 32068:1 32070:1 32083:2 32085:1 32094:1 32097:1 32103:1 32105:2 32117:1 32125:1 32128:1 32140:2 32142:1 32153:1 32171:2 32172:3 32181:1 32201:1 32207:1 32212:1 32229:1 32241:6 32244:7 32277:2 32280:3 32289:1 32299:1 32303:1 32304:1 32310:1 32311:2 32312:1 32319:1 32335:3 32348:1 32369:1 32403:1 32407:1 32420:1 32433:1 32439:2 32443:7 32447:1 32451:1 32456:1 32471:4 32472:1 32476:1 32486:1 32487:2 32491:4 32499:1 32548:1 32551:1 32552:2 32579:1 32619:1 32625:1 32628:1 32632:1 32650:1 32651:1 32656:2 32660:1 32661:1 32675:2 32688:1 32693:4 32697:1 32713:6 32719:1 32722:1 32724:2 32750:3 32768:2 32791:1 32795:1 32803:1 32808:2 32814:2 32818:1 32824:1 32834:1 32843:1 32846:2 32871:1 32885:2 32899:1 32900:2 32910:2 32934:1 32935:1 32941:3 32944:4 32956:2 32963:2 33001:3 33019:1 33020:1 33025:1 33038:1 33041:8 33055:1 33056:3 33057:2 33059:1 33075:1 33083:1 33084:1 33101:1 33105:3 33108:1 33115:1 33118:1 33133:1 33138:1 33141:3 33143:2 33146:1 33148:2 33149:2 33155:10 33156:1 33164:2 33167:5 33168:1 33171:5 33182:1 33198:2 33204:1 33211:1 33220:3 33224:1 33225:2 33226:1 33232:1 33234:2 33267:1 33271:3
11 1:1 2:1 6:1 27:1 31:1 34:1 39:2 49:1 53:1 55:1 60:2 64:1 65:1 67:1 84:1 85:1 86:1 87:1 93:1 95:1 99:2 106:1 116:1 126:1 148:1 150:3 153:1 159:1 166:2 170:1 181:2 183:1 187:2 210:1 215:1 232:1 238:6 241:1 256:1 265:1 268:1 282:1 283:2 294:3 296:2 299:1 313:1 322:1 336:1 344:1 347:1 357:1 362:2 378:1 401:1 402:1 403:6 411:2 415:2 427:2 446:1 453:1 455:2 460:1 498:1 507:9 513:1 523:1 546:2 582:2 586:3 621:1 627:1 646:2 654:1 671:1 698:1 712:1 717:4 721:1 731:7 745:1 753:2 759:3 764:4 765:1 766:1 774:1 789:1 790:2 795:1 807:1 808:1 815:2 829:1 866:2 899:1 937:1 951:3 955:1 956:1 971:2 974:1 979:1 984:1 1000:1 1003:2 1022:3 1049:2 1053:1 1057:1 1067:2 1069:1 1070:1 1071:7 1073:1 1080:1 1082:1 1083:1 1094:1 1103:2 1106:2 1117:1 1118:1 1125:1 1127:1 1130:7 1132:1 1134:1 1141:2 1142:1 1144:1 1147:1 1158:2 1161:1 1165:1 1168:3 1171:3 1199:1 1204:4 1211:1 1216:3 1218:1 1220:1 1236:3 1239:1 1244:1 1257:1 1262:1 1265:1 1284:1 1287:1 1309:1 1311:2 1316:1 1318:1 1321:1 1322:1 1340:1 1351:2 1376:1 1378:1 1388:1 1392:1 1393:1 1403:1 1405:2 1409:1 1413:1 1415:1 1420:1 1421:1 1432:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:3 1465:1 1467:1 1480:2 1481:1 1487:2 1494:1 1496:2 1504:1 1509:1 1514:2 1532:1 1538:3 1539:1 1545:1 1547:1 1583:1 1588:2 1624:1 1626:2 1630:1 1635:1 1645:1 1650:1 1658:1 1664:4 1683:2 1686:1 1690:2 1691:1 1719:1 1726:7 1730:11 1739:11 1745:1 1747:1 1749:2 1751:2 1759:1 1761:1 1771:2 1793:1 1799:1 1807:1 1808:1 1813:1 1837:4 1839:4 1841:1 1844:1 1869:2 1878:2 1883:8 1884:1 1892:1 1899:1 1906:2 1917:7 1941:2 1943:1 1948:1 1955:1 1956:1 1957:1 1960:1 1963:2 1966:1 1973:1 1977:2 1980:1 1991:1 1999:1 2003:1 2019:2 2027:1 2037:1 2041:1 2061:1 2062:1 2073:2 2078:1 2080:1 2086:1 2098:1 2113:1 2118:1 2119:1 2133:3 2135:1 2136:1 2137:3 2138:2 2139:1 2141:1 2157:1 2158:1 2169:1 2177:2 2180:2 2187:1 2195:6 2198:1 2209:2 2214:1 2223:1 2225:2 2237:1 2241:2 2246:1 2249:2 2255:2 2263:2 2265:1 2269:1 2279:1 2284:2 2301:3 2304:1 2317:3 2322:1 2329:1 2345:1 2348:1 2355:1 2367:1 2372:1 2373:7 2381:1 2397:1 2399:2 2406:1 2412:1 2419:1 2421:1 2422:1 2429:1 2437:1 2441:2 2444:1 2465:1 2482:6 2496:1 2502:3 2508:1 2509:1 2519:1 2521:2 2525:2 2529:1 2530:1 2537:1 2547:1 2551:3 2552:1 2553:1 2555:6 2558:7 2559:1 2562:1 2563:2 2564:1 2568:1 2570:1 2573:3 2576:2 2578:3 2579:4 2583:1 2585:1 2587:1 2613:1 2616:2 2618:4 2620:3 2623:3 2624:7 2625:2 2626:1 2630:4 2631:3 2632:2 2634:3 2635:2 2637:1 2640:2 2642:5 2647:7 2648:2 2652:1 2655:1 2657:3 2662:2 2663:1 2681:1 2713:1 2720:1 2732:1 2738:1 2739:1 2742:1 2753:2 2769:2 2774:1 2784:1 2788:1 2795:2 2801:3 2821:1 2831:3 2832:1 2864:1 2867:2 2868:1 2878:2 2888:1 2890:2 2896:1 2905:2 2918:2 2923:1 2934:1 2951:3 2953:1 2955:1 2962:1 2964:1 2979:1 2985:1 2992:1 2993:1 3008:2 3017:2 3030:1 3033:1 3039:1 3042:1 3049:1 3051:1 3059:1 3062:1 3069:2 3071:1 3075:1 3080:4 3097:1 3098:1 3106:8 3116:2 3121:2 3134:2 3145:1 3157:1 3165:3 3171:1 3173:2 3181:1 3182:2 3193:1 3195:1 3197:2 3201:4 3213:2 3223:1 3257:3 3263:2 3283:1 3284:7 3291:1 3294:1 3295:12 3301:1 3302:2 3314:2 3318:2 3336:4 3350:2 3351:1 3352:1 3353:13 3360:1 3364:2 3369:1 3377:1 3379:1 3380:1 3386:1 3397:1 3408:1 3411:2 3418:2 3433:2 3464:1 3471:1 3474:1 3475:1 3482:1 3484:1 3504:1 3517:1 3529:1 3539:1 3549:1 3550:4 3572:1 3578:2 3588:1 3598:1 3600:1 3625:1 3645:1 3646:1 3683:1 3690:5 3702:3 3707:1 3721:4 3726:1 3744:1 3755:1 3758:7 3762:1 3765:1 3769:1 3772:1 3790:1 3799:1 3816:1 3821:1 3822:3 3853:1 3856:1 3857:2 3868:1 3875:2 3882:1 3917:2 3926:1 3930:4 3936:2 3939:1 3942:2 3945:1 3951:1 3968:2 3971:1 3974:2 3978:1 3990:1 3992:2 4005:1 4011:1 4012:1 4018:1 4020:2 4033:1 4035:2 4040:1 4047:3 4060:2 4071:2 4074:1 4103:1 4105:1 4112:1 4115:2 4122:1 4131:1 4134:1 4153:1 4160:5 4174:5 4178:1 4188:1 4193:3 4195:1 4207:1 4225:2 4245:2 4247:2 4252:4 4253:16 4263:1 4267:1 4271:1 4279:3 4288:4 4289:4 4291:2 4292:1 4300:2 4303:1 4306:7 4308:2 4330:1 4331:1 4332:6 4334:1 4346:1 4351:3 4356:1 4361:1 4378:3 4382:1 4391:2 4405:1 4434:1 4437:1 4452:1 4454:2 4456:2 4465:1 4470:1 4477:1 4484:1 4487:1 4488:1 4510:4 4511:1 4512:1 4529:2 4531:3 4533:1 4536:4 4540:2 4545:3 4547:3 4548:1 4573:1 4574:2 4575:1 4581:2 4585:1 4593:1 4605:1 4609:1 4628:2 4635:1 4637:1 4663:1 4667:3 4684:1 4686:2 4704:1 4713:1 4714:1 4722:1 4727:1 4728:1 4730:1 4741:1 4758:1 4763:5 4767:8 4773:1 4785:1 4792:1 4793:4 4819:1 4824:2 4842:2 4848:2 4863:1 4871:1 4872:5 4877:2 4888:3 4889:2 4906:1 4907:1 4924:1 4929:1 4933:1 4936:2 4951:1 4959:1 4974:1 4979:1 4980:1 4989:1 4991:1 5000:1 5020:1 5022:2 5025:1 5030:2 5033:4 5042:1 5044:1 5045:2 5052:1 5054:1 5066:1 5072:1 5082:1 5098:1 5106:1 5132:1 5136:2 5143:5 5160:1 5162:1 5163:1 5168:1 5171:1 5198:1 5212:1 5236:1 5239:1 5246:4 5269:1 5276:1 5287:4 5290:3 5299:1 5312:1 5337:3 5340:6 5365:3 5369:3 5396:1 5397:2 5434:1 5456:1 5462:1 5471:1 5490:2 5491:1 5516:1 5517:1 5528:1 5530:1 5536:1 5562:39 5564:3 5596:2 5610:1 5641:1 5642:1 5671:1 5684:1 5688:1 5689:1 5690:3 5706:1 5717:4 5718:7 5719:4 5720:4 5722:1 5725:4 5730:2 5731:3 5733:4 5734:1 5735:2 5740:2 5744:1 5748:1 5750:6 5752:3 5759:3 5763:1 5766:1 5770:1 5781:1 5788:1 5794:1 5797:1 5811:1 5814:2 5825:2 5832:1 5844:2 5853:2 5855:1 5868:1 5873:1 5883:1 5898:1 5907:2 5965:3 5975:1 6027:2 6033:1 6038:1 6043:1 6084:3 6088:2 6089:1 6108:1 6115:1 6124:1 6144:3 6150:3 6165:2 6169:2 6181:1 6186:3 6224:1 6233:1 6237:1 6261:1 6279:2 6283:3 6284:1 6292:1 6299:1 6300:1 6305:6 6318:1 6319:3 6322:1 6327:1 6328:1 6330:1 6335:4 6345:3 6355:1 6372:2 6374:2 6382:2 6385:1 6388:1 6391:2 6395:1 6397:2 6400:1 6403:1 6407:2 6412:1 6418:2 6428:1 6431:1 6435:2 6454:1 6459:9 6469:1 6480:5 6496:1 6506:1 6508:2 6509:3 6518:1 6520:1 6529:1 6531:1 6533:1 6536:1 6537:1 6540:1 6547:2 6548:1 6553:1 6558:6 6561:1 6570:1 6581:4 6584:1 6598:1 6610:1 6624:1 6639:1 6643:2 6688:6 6692:5 6699:1 6706:1 6707:1 6722:1 6750:1 6761:1 6762:1 6773:1 6776:1 6793:1 6795:1 6806:1 6816:1 6819:3 6821:2 6827:1 6840:1 6843:1 6845:2 6847:6 6863:3 6874:1 6884:1 6885:1 6887:1 6888:2 6890:2 6897:4 6923:1 6935:1 6939:1 6944:1 6954:1 6961:8 6980:2 6983:1 6994:2 7003:1 7008:1 7012:2 7023:1 7025:1 7038:1 7044:1 7050:1 7059:1 7062:2 7066:1 7081:1 7087:3 7088:3 7089:3 7090:1 7091:1 7097:2 7101:1 7103:1 7114:2 7132:2 7150:1 7173:1 7190:3 7192:1 7193:1 7194:1 7196:2 7197:4 7200:4 7201:1 7204:3 7207:4 7209:3 7210:1 7211:3 7212:1 7217:1 7218:11 7220:1 7221:1 7222:3 7224:1 7258:1 7272:1 7279:1 7303:1 7306:1 7307:2 7365:3 7377:1 7378:1 7380:1 7381:1 7389:1 7406:2 7410:1 7429:3 7435:2 7439:1 7463:1 7469:1 7497:1 7511:1 7512:1 7535:2 7539:3 7543:1 7552:1 7557:1 7559:1 7570:2 7574:1 7589:2 7599:2 7602:2 7613:1 7619:1 7628:1 7637:2 7648:3 7649:1 7659:1 7662:1 7671:5 7672:1 7676:3 7677:1 7691:1 7705:6 7707:1 7714:1 7724:1 7741:1 7745:2 7748:1 7750:3 7766:1 7776:1 7782:1 7791:1 7792:1 7794:1 7809:1 7815:1 7822:1 7825:1 7833:1 7839:2 7840:1 7855:1 7867:1 7879:3 7884:1 7905:1 7912:2 7913:2 7927:1 7941:2 7949:1 7954:1 7956:1 7961:1 7984:1 7988:2 7993:1 8007:2 8014:1 8016:1 8025:2 8027:2 8043:1 8045:1 8054:1 8064:1 8075:12 8089:2 8090:1 8105:2 8127:1 8129:1 8139:1 8143:5 8150:1 8155:2 8167:1 8168:1 8189:1 8196:1 8209:1 8216:1 8219:1 8230:1 8237:1 8247:1 8248:1 8258:2 8273:1 8277:4 8283:1 8299:1 8302:1 8328:3 8338:1 8340:1 8347:1 8383:2 8387:1 8389:4 8406:1 8413:1 8417:4 8426:1 8432:4 8439:2 8446:1 8454:1 8474:1 8478:3 8491:1 8494:1 8498:1 8499:1 8504:1 8522:1 8531:2 8560:1 8562:1 8567:1 8568:1 8570:1 8573:1 8575:1 8582:1 8585:1 8593:1 8599:1 8609:4 8611:1 8615:1 8617:1 8619:1 8624:5 8630:3 8631:8 8633:5 8653:1 8654:3 8659:2 8663:1 8684:1 8688:2 8689:1 8702:56 8716:1 8717:1 8725:1 8726:10 8728:9 8734:2 8748:1 8767:1 8783:1 8793:1 8796:2 8797:1 8810:1 8815:2 8816:2 8817:1 8818:1 8826:1 8848:1 8860:1 8864:2 8874:2 8880:1 8886:1 8887:1 8889:1 8890:1 8891:1 8901:1 8906:1 8909:2 8923:1 8930:1 8932:2 8935:9 8957:1 8960:1 8974:1 8982:6 8987:1 8992:1 9025:1 9030:1 9048:2 9059:1 9094:2 9127:1 9129:1 9135:1 9143:2 9157:7 9168:2 9179:1 9183:2 9186:2 9203:3 9209:1 9221:2 9222:1 9231:1 9232:21 9242:1 9264:1 9267:1 9276:1 9279:1 9289:1 9295:1 9298:1 9299:1 9311:1 9324:1 9332:1 9333:1 9335:1 9339:1 9340:1 9381:1 9394:5 9425:1 9430:1 9435:1 9441:1 9466:1 9467:1 9470:1 9473:1 9484:2 9493:2 9495:1 9507:3 9508:1 9529:1 9540:2 9541:1 9542:1 9544:3 9561:1 9563:1 9596:1 9623:2 9630:1 9632:2 9633:1 9634:4 9637:1 9638:1 9640:1 9642:2 9644:2 9646:2 9648:4 9649:2 9654:4 9661:1 9665:1 9669:1 9675:1 9680:1 9688:1 9690:1 9697:3 9705:1 9742:1 9743:1 9744:1 9746:1 9770:2 9781:1 9788:1 9806:1 9807:1 9810:2 9815:1 9823:1 9826:1 9833:2 9836:1 9842:3 9847:1 9857:1 9882:1 9901:3 9907:1 9923:1 9931:1 9937:2 9942:1 9945:2 9952:1 9965:2 9974:1 9976:3 9979:1 9982:1 9988:1 9994:1 9999:1 10006:1 10008:2 10015:1 10022:1 10027:3 10035:1 10054:1 10070:1 10087:1 10092:1 10095:2 10107:1 10117:1 10121:1 10124:1 10126:1 10138:1 10142:1 10150:3 10152:3 10159:1 10161:2 10171:1 10197:1 10208:1 10209:2 10210:2 10232:1 10265:1 10275:1 10282:1 10291:1 10294:1 10307:3 10331:1 10332:1 10334:2 10337:1 10338:1 10340:1 10345:8 10349:1 10362:2 10367:1 10371:1 10373:1 10374:2 10376:1 10385:1 10388:1 10389:1 10407:1 10417:1 10422:1 10430:1 10434:5 10435:1 10436:2 10440:1 10445:1 10450:1 10454:1 10456:1 10459:1 10465:1 10479:1 10497:2 10502:1 10517:2 10518:1 10522:2 10524:1 10533:2 10540:1 10549:1 10550:1 10554:1 10570:1 10575:1 10583:1 10584:2 10586:1 10591:1 10596:1 10598:1 10602:1 10619:1 10621:1 10623:1 10627:1 10643:2 10648:1 10666:4 10681:1 10684:1 10695:1 10708:1 10709:5 10732:1 10747:1 10752:2 10764:1 10765:1 10773:1 10792:1 10800:1 10804:1 10806:3 10807:2 10822:1 10828:2 10831:1 10845:1 10846:2 10847:2 10858:1 10867:3 10876:1 10877:1 10886:1 10892:2 10893:1 10913:2 10948:12 10969:3 10970:1 10972:1 10973:4 10996:1 10997:2 10999:1 11008:1 11011:1 11020:2 11029:1 11030:1 11052:1 11063:2 11067:1 11079:1 11094:2 11119:3 11133:4 11141:1 11153:1 11163:3 11167:1 11170:2 11171:1 11172:1 11175:2 11178:2 11188:3 11200:1 11201:1 11208:1 11210:4 11214:4 11215:1 11218:1 11222:1 11225:1 11226:1 11231:2 11232:3 11234:2 11235:1 11239:2 11242:2 11265:1 11266:2 11272:1 11276:5 11287:1 11288:2 11291:1 11293:1 11302:1 11305:1 11308:1 11309:1 11323:2 11324:1 11331:1 11339:1 11342:1 11356:1 11362:1 11365:1 11376:8 11383:2 11415:1 11421:1 11431:1 11433:1 11438:1 11445:2 11448:2 11450:1 11451:1 11456:1 11464:1 11473:1 11488:1 11492:1 11499:1 11517:2 11526:1 11550:2 11559:1 11573:1 11575:1 11584:1 11588:1 11594:1 11601:1 11603:1 11607:5 11611:3 11637:2 11638:1 11650:1 11656:1 11660:1 11674:1 11677:3 11690:1 11692:1 11695:1 11697:1 11701:3 11717:1 11730:2 11741:1 11744:1 11778:1 11784:7 11795:1 11796:1 11811:1 11820:1 11822:10 11830:1 11841:1 11842:1 11846:1 11847:1 11854:1 11855:1 11858:1 11860:1 11879:1 11892:1 11895:1 11899:1 11906:3 11912:1 11914:3 11915:1 11930:1 11931:2 11933:1 11949:2 11955:1 11966:1 11992:2 12002:1 12005:1 12015:5 12023:1 12026:2 12028:1 12031:1 12039:4 12042:1 12047:1 12050:3 12052:1 12081:1 12099:1 12109:2 12112:1 12145:1 12149:1 12154:2 12155:1 12162:1 12169:4 12187:1 12197:1 12213:1 12214:1 12220:1 12255:2 12266:1 12274:1 12275:1 12284:1 12307:2 12310:2 12319:1 12325:1 12327:4 12329:7 12333:1 12335:1 12336:4 12337:1 12339:1 12350:1 12352:3 12354:1 12356:1 12361:1 12369:1 12377:1 12378:2 12379:1 12389:1 12406:1 12427:1 12434:2 12438:1 12448:1 12461:1 12472:1 12475:1 12476:1 12477:2 12483:1 12487:1 12501:1 12526:1 12537:1 12544:1 12545:1 12551:1 12552:1 12559:1 12580:1 12593:1 12596:1 12604:2 12607:1 12618:4 12630:2 12640:1 12647:1 12649:1 12672:1 12682:1 12733:1 12741:1 12743:1 12762:1 12764:1 12766:1 12770:1 12775:1 12776:1 12783:1 12789:1 12794:1 12805:1 12811:3 12814:3 12819:3 12821:1 12836:1 12845:1 12862:3 12865:14 12867:1 12876:1 12877:1 12893:1 12896:1 12902:1 12910:2 12915:1 12918:1 12923:1 12928:2 12929:1 12933:1 12935:4 12936:2 12952:1 12954:1 12970:1 12977:2 12988:3 12994:1 13000:1 13005:1 13007:1 13009:1 13012:1 13015:1 13018:3 13027:1 13032:1 13050:3 13061:2 13064:1 13066:1 13073:1 13081:1 13085:3 13088:8 13089:2 13094:2 13111:1 13116:1 13128:8 13135:1 13137:1 13138:2 13142:4 13143:1 13144:1 13146:1 13148:1 13149:1 13150:2 13151:8 13152:1 13153:1 13156:1 13162:9 13168:1 13169:1 13192:1 13196:2 13202:1 13203:1 13220:2 13228:1 13231:1 13239:2 13244:1 13254:2 13264:2 13285:1 13286:1 13294:2 13296:1 13302:1 13308:1 13320:7 13338:1 13365:1 13391:1 13408:1 13410:4 13415:1 13423:2 13427:1 13429:2 13434:1 13443:1 13448:2 13456:1 13461:1 13463:2 13473:5 13476:1 13480:2 13486:1 13510:1 13515:2 13517:4 13527:2 13552:2 13553:2 13556:1 13590:1 13592:1 13600:1 13606:2 13608:1 13611:1 13616:2 13621:1 13649:1 13653:2 13654:3 13662:1 13674:1 13684:3 13685:4 13690:1 13700:2 13718:3 13738:1 13742:3 13745:1 13750:3 13759:1 13778:2 13805:1 13815:1 13821:3 13826:2 13830:1 13848:1 13863:2 13873:6 13874:1 13895:2 13896:3 13899:1 13921:1 13930:1 13933:1 13935:1 13939:1 13940:1 13973:1 13976:2 14004:3 14007:2 14011:1 14018:1 14021:1 14030:1 14037:1 14039:1 14055:1 14059:1 14061:2 14069:1 14081:2 14101:1 14102:2 14119:1 14125:2 14146:1 14149:1 14162:4 14180:1 14183:2 14207:1 14210:1 14214:2 14242:1 14252:1 14256:2 14267:1 14281:1 14318:2 14319:1 14341:1 14345:10 14353:1 14356:2 14361:1 14370:5 14376:3 14380:1 14384:1 14402:1 14408:1 14409:1 14410:2 14416:1 14421:1 14436:2 14441:2 14443:3 14449:1 14468:1 14470:1 14471:1 14472:1 14473:5 14480:2 14483:3 14489:2 14497:1 14518:2 14520:1 14541:1 14545:1 14572:1 14577:1 14581:1 14583:1 14589:3 14592:1 14605:1 14614:1 14620:1 14633:1 14640:1 14651:1 14652:1 14658:2 14686:1 14688:2 14697:1 14706:1 14753:1 14781:1 14791:1 14793:5 14804:1 14806:1 14810:1 14831:1 14841:1 14854:3 14858:1 14859:1 14867:2 14870:2 14873:1 14877:7 14881:6 14883:1 14891:1 14895:1 14896:1 14904:5 14907:9 14915:1 14921:3 14935:2 14940:1 14942:2 14945:1 14949:3 14957:1 14958:2 14959:1 14960:1 14975:2 14979:1 14980:1 14999:1 15005:1 15016:1 15019:2 15028:1 15033:2 15039:10 15040:1 15047:3 15054:1 15059:1 15066:2 15075:1 15079:2 15082:1 15087:1 15122:1 15125:4 15131:1 15136:1 15160:2 15161:1 15172:1 15187:1 15191:1 15212:1 15215:1 15216:1 15217:5 15236:1 15246:1 15251:1 15255:1 15259:1 15275:1 15278:2 15281:2 15293:1 15311:1 15322:1 15325:3 15333:2 15336:1 15344:1 15361:1 15367:3 15374:3 15381:2 15386:1 15410:1 15429:1 15438:1 15443:1 15476:1 15477:4 15480:1 15483:4 15487:1 15488:2 15489:2 15496:1 15508:2 15513:1 15519:2 15520:1 15523:1 15542:1 15543:1 15551:1 15555:1 15574:4 15586:1 15601:1 15616:8 15622:1 15625:2 15645:1 15662:1 15664:1 15666:2 15680:2 15704:1 15725:1 15728:5 15734:5 15740:2 15749:2 15780:2 15811:2 15820:5 15840:2 15855:1 15861:1 15864:1 15900:2 15905:1 15923:1 15929:2 15934:1 15936:1 15938:1 15945:1 15955:1 15959:1 15960:2 15962:1 15974:4 15986:1 15990:1 15993:1 15996:2 15997:1 16000:3 16021:1 16026:1 16030:1 16033:1 16040:3 16042:1 16043:1 16046:1 16059:1 16063:1 16067:1 16071:1 16073:1 16092:1 16098:4 16114:1 16119:2 16136:1 16144:1 16145:1 16150:2 16152:1 16178:3 16183:1 16187:1 16189:1 16197:2 16198:1 16208:1 16214:1 16226:1 16227:4 16229:1 16235:1 16236:1 16237:1 16254:1 16266:1 16270:1 16273:1 16284:1 16289:1 16321:1 16330:6 16347:1 16350:2 16351:1 16355:1 16362:1 16390:2 16393:2 16407:1 16411:1 16422:1 16427:2 16428:1 16433:2 16448:1 16450:1 16451:1 16457:2 16463:3 16484:4 16488:1 16508:3 16523:1 16534:1 16538:1 16556:2 16559:2 16566:5 16598:1 16606:2 16608:1 16627:1 16630:1 16634:1 16642:1 16650:2 16655:1 16674:2 16678:1 16684:5 16687:1 16688:1 16693:1 16694:1 16721:2 16723:1 16739:1 16741:1 16753:1 16762:1 16782:8 16783:2 16787:1 16789:1 16793:1 16797:1 16831:1 16832:4 16835:1 16840:1 16842:1 16846:3 16848:1 16860:1 16884:3 16904:1 16922:1 16925:1 16936:4 16940:2 16942:1 16944:1 16948:1 16971:3 16973:3 16984:1 16988:3 16990:1 16999:1 17012:2 17023:1 17042:1 17045:4 17046:1 17048:1 17053:2 17056:2 17061:1 17063:1 17079:1 17098:2 17103:1 17105:1 17127:1 17140:1 17155:1 17176:1 17187:1 17194:3 17203:1 17214:1 17219:1 17224:3 17226:1 17246:1 17251:3 17269:1 17289:2 17293:1 17297:1 17314:1 17317:2 17318:1 17324:2 17334:1 17370:1 17379:1 17389:1 17406:1 17420:1 17423:17 17433:2 17437:1 17448:1 17457:1 17479:2 17489:2 17499:1 17503:3 17514:1 17516:1 17528:3 17531:1 17539:1 17543:2 17553:1 17567:1 17571:1 17576:1 17581:1 17586:2 17596:1 17598:1 17610:1 17648:1 17661:3 17673:1 17681:1 17689:14 17694:1 17695:1 17698:1 17699:3 17700:4 17709:1 17710:3 17714:1 17715:1 17718:1 17722:1 17729:5 17731:2 17740:1 17748:1 17752:1 17756:1 17758:1 17767:1 17771:1 17775:2 17776:1 17783:1 17784:2 17805:5 17824:1 17829:1 17830:2 17857:3 17860:2 17866:1 17871:1 17876:1 17878:1 17880:1 17884:1 17888:5 17904:1 17930:1 17951:1 17953:4 17955:3 17959:1 17989:1 18008:1 18009:1 18010:1 18016:1 18049:4 18053:4 18074:4 18079:1 18104:1 18108:2 18111:1 18114:1 18141:1 18148:1 18157:4 18160:1 18187:1 18195:13 18199:1 18214:4 18220:1 18226:1 18227:1 18234:3 18236:1 18243:2 18247:1 18258:1 18260:1 18273:1 18281:2 18286:1 18289:2 18301:1 18302:1 18306:1 18308:2 18313:1 18315:1 18319:4 18321:2 18322:1 18323:1 18327:1 18329:1 18330:1 18332:3 18340:2 18341:1 18342:5 18344:1 18351:1 18352:3 18361:1 18372:1 18375:1 18401:1 18416:1 18417:2 18426:1 18485:1 18492:3 18527:2 18537:1 18546:1 18561:1 18584:1 18603:1 18619:1 18621:1 18635:2 18672:1 18683:1 18684:1 18693:1 18697:1 18699:1 18702:1 18708:1 18716:2 18717:1 18727:1 18732:1 18733:1 18737:1 18738:1 18739:4 18743:1 18764:1 18777:2 18785:1 18794:1 18799:3 18807:1 18808:2 18821:1 18842:3 18879:1 18896:2 18900:1 18908:1 18911:3 18919:5 18928:1 18949:1 18966:1 18967:1 18978:1 18987:1 19000:1 19005:1 19024:1 19029:3 19030:1 19035:2 19039:1 19043:1 19049:1 19050:1 19059:7 19062:5 19069:2 19081:1 19089:3 19103:2 19108:1 19117:1 19126:1 19135:1 19139:5 19155:1 19165:3 19169:2 19177:1 19182:1 19200:4 19207:2 19208:1 19209:1 19212:1 19213:1 19216:3 19233:2 19246:1 19248:2 19250:1 19261:2 19262:1 19276:1 19295:1 19296:1 19320:10 19329:1 19333:2 19345:1 19348:1 19349:1 19351:1 19352:1 19354:1 19357:3 19362:1 19372:1 19384:1 19398:2 19404:1 19405:1 19417:1 19432:2 19443:1 19444:2 19448:2 19452:1 19465:2 19471:1 19475:1 19493:2 19503:1 19508:2 19509:1 19526:1 19532:1 19536:2 19559:1 19566:1 19567:1 19583:1 19585:1 19622:1 19628:1 19634:1 19637:1 19638:1 19643:1 19655:1 19659:1 19663:2 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19722:1 19758:1 19763:3 19772:5 19774:1 19776:1 19781:2 19783:3 19784:1 19794:1 19797:1 19809:1 19816:1 19819:1 19843:3 19849:2 19850:1 19867:1 19872:1 19897:1 19904:1 19910:2 19919:1 19936:1 19951:2 19962:1 19965:1 19966:1 20000:1 20007:2 20008:1 20020:2 20028:1 20031:1 20032:2 20045:1 20075:1 20077:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:2 20123:2 20124:9 20128:4 20136:2 20142:1 20143:1 20146:3 20163:1 20166:3 20174:1 20180:1 20181:1 20183:1 20200:1 20202:1 20219:1 20220:1 20225:3 20230:1 20231:1 20237:2 20239:1 20241:1 20243:2 20286:1 20287:1 20292:1 20294:1 20300:2 20307:1 20309:2 20341:1 20360:1 20373:1 20391:1 20394:2 20395:1 20400:1 20405:1 20406:1 20407:2 20410:1 20412:1 20416:1 20437:1 20441:1 20454:1 20458:1 20460:1 20477:1 20492:2 20499:1 20503:1 20508:1 20514:1 20516:1 20517:1 20518:1 20520:1 20524:2 20525:1 20540:1 20548:1 20561:1 20569:1 20635:4 20645:1 20673:2 20681:3 20682:1 20692:3 20697:2 20706:1 20709:1 20742:3 20760:1 20761:1 20773:1 20792:1 20803:8 20814:2 20815:4 20831:1 20851:1 20876:1 20893:2 20894:2 20895:1 20900:2 20906:1 20929:2 20936:1 20942:2 20949:2 20951:1 20970:1 20974:2 20983:3 20990:1 20996:2 21003:2 21004:2 21010:2 21016:2 21041:1 21047:4061 21054:1 21068:3 21070:3 21079:2 21080:1 21087:1 21096:1 21109:1 21164:3 21166:1 21173:2 21178:1 21205:1 21227:1 21234:1 21241:2 21260:1 21278:1 21279:4 21291:1 21292:4 21294:1 21295:2 21300:1 21308:1 21355:1 21362:1 21372:1 21374:1 21378:1 21382:1 21398:1 21401:3 21404:1 21408:1 21419:1 21421:1 21431:1 21444:1 21449:2 21464:1 21466:2 21476:1 21478:1 21487:1 21510:1 21512:1 21515:3 21518:2 21520:1 21532:1 21539:1 21551:1 21566:1 21571:1 21585:1 21601:1 21602:1 21605:1 21609:1 21630:1 21644:1 21668:1 21689:3 21692:1 21709:2 21722:1 21729:1 21730:1 21735:4 21790:1 21797:2 21801:1 21802:1 21806:1 21808:1 21812:1 21813:1 21817:1 21821:2 21827:3 21833:2 21843:1 21845:1 21856:2 21861:2 21863:1 21874:1 21877:3 21880:1 21883:1 21895:2 21907:1 21913:1 21918:3 21921:7 21952:1 21953:8 21959:1 21960:1 21961:1 21966:2 21968:1 21976:1 21992:1 22001:2 22020:3 22025:3 22029:2 22032:3 22039:1 22041:1 22043:2 22045:2 22072:4 22082:1 22095:3 22100:1 22107:3 22119:1 22127:1 22133:1 22138:1 22143:1 22157:1 22162:1 22173:3 22174:1 22178:3 22181:1 22186:1 22214:1 22227:1 22229:1 22235:1 22240:1 22245:3 22262:1 22267:1 22271:1 22281:2 22294:1 22301:5 22306:1 22311:1 22318:1 22325:1 22333:1 22344:1 22351:1 22364:1 22370:1 22375:1 22382:1 22404:5 22415:1 22423:5 22440:1 22459:1 22462:1 22479:2 22483:1 22493:1 22495:1 22503:2 22504:1 22508:2 22518:1 22526:2 22530:1 22540:1 22545:1 22548:3 22553:1 22562:1 22565:3 22569:1 22572:1 22573:2 22583:1 22586:1 22598:1 22603:1 22615:1 22617:1 22626:3 22638:1 22644:2 22655:1 22659:1 22669:1 22681:4 22688:2 22690:1 22698:1 22708:1 22713:1 22718:1 22737:3 22740:1 22750:1 22762:1 22766:2 22774:1 22776:1 22791:1 22793:1 22794:1 22803:1 22815:5 22819:1 22824:1 22829:1 22833:1 22834:1 22835:1 22837:1 22845:1 22851:1 22852:1 22870:7 22871:1 22877:2 22880:1 22886:1 22889:2 22942:1 22952:1 22954:1 22966:1 22971:1 22981:1 22984:2 22992:1 23002:1 23004:1 23005:2 23036:2 23046:1 23055:1 23059:3 23100:1 23108:4 23113:1 23114:1 23116:1 23129:1 23147:2 23156:2 23160:5 23163:1 23164:1 23169:4 23172:1 23175:1 23183:1 23229:1 23243:1 23256:2 23257:1 23277:1 23279:1 23281:1 23286:1 23288:1 23290:1 23330:2 23353:1 23356:1 23359:2 23363:1 23367:1 23373:1 23374:1 23381:1 23383:1 23390:1 23415:2 23416:1 23419:1 23432:1 23434:1 23444:4 23447:2 23449:2 23453:1 23456:1 23463:1 23471:1 23490:7 23504:2 23518:1 23521:2 23522:2 23523:1 23527:2 23529:2 23532:2 23544:4 23550:3 23556:1 23560:2 23561:1 23570:1 23572:1 23574:1 23580:3 23583:1 23585:1 23596:1 23599:1 23609:1 23612:1 23617:1 23622:2 23626:1 23644:2 23649:2 23656:1 23657:1 23658:1 23663:1 23669:2 23708:1 23723:2 23728:1 23729:1 23736:1 23737:1 23745:9 23746:1 23751:2 23752:2 23754:1 23756:2 23765:1 23770:1 23773:1 23779:1 23782:1 23785:1 23790:1 23800:1 23802:2 23831:1 23837:1 23852:1 23853:2 23857:2 23858:1 23859:1 23861:1 23863:1 23891:1 23898:1 23899:1 23901:1 23912:2 23917:1 23919:3 23927:1 23931:1 23943:1 23949:1 23951:1 23953:2 23955:4 23970:1 23983:1 23985:1 23991:1 24009:1 24013:1 24024:6 24032:1 24039:1 24057:4 24058:1 24059:1 24074:1 24078:1 24082:2 24090:1 24093:1 24098:1 24099:1 24113:2 24114:1 24127:1 24133:1 24138:1 24143:1 24144:1 24151:2 24166:2 24168:1 24176:1 24194:1 24195:1 24197:1 24198:1 24201:1 24205:3 24206:2 24207:1 24208:1 24210:1 24214:1 24216:1 24217:1 24218:1 24222:2 24225:1 24226:3 24229:1 24241:1 24242:1 24243:1 24250:1 24255:2 24262:2 24263:3 24270:1 24274:1 24276:2 24279:1 24289:1 24298:1 24308:1 24314:2 24319:2 24321:1 24323:1 24334:1 24358:1 24359:2 24366:6 24368:1 24369:1 24371:1 24373:2 24379:1 24383:2 24386:2 24394:2 24398:1 24401:1 24417:1 24418:1 24425:1 24427:1 24442:1 24449:1 24467:1 24474:1 24477:1 24478:4 24487:2 24493:7 24502:1 24504:1 24505:1 24516:1 24527:1 24541:1 24542:6 24550:2 24578:1 24587:1 24597:1 24601:3 24618:1 24636:1 24639:1 24643:2 24647:2 24650:3 24660:1 24677:1 24678:1 24681:1 24685:3 24687:1 24690:6 24692:4 24695:1 24698:1 24701:1 24706:2 24727:1 24742:2 24775:1 24788:2 24792:1 24805:4 24840:1 24841:1 24847:1 24854:2 24857:1 24858:1 24860:1 24874:1 24887:1 24904:1 24907:1 24916:3 24921:1 24925:2 24933:4 24936:1 24937:1 24943:1 24957:1 24959:1 24966:1 24969:1 24972:2 24974:1 24975:1 24983:1 24985:2 24990:3 25003:1 25008:1 25011:1 25015:1 25017:1 25021:2 25022:1 25027:1 25032:1 25034:1 25036:1 25041:1 25048:1 25064:1 25072:2 25077:2 25093:1 25097:3 25100:2 25114:1 25115:2 25126:1 25127:1 25133:1 25134:2 25139:2 25149:1 25156:4 25167:5 25170:1 25173:1 25183:1 25184:3 25189:1 25190:1 25191:1 25197:1 25221:1 25224:9 25233:3 25238:1 25245:2 25298:1 25300:1 25306:5 25337:7 25343:1 25346:1 25356:2 25357:1 25364:3 25366:1 25367:6 25369:1 25371:1 25388:1 25401:1 25413:1 25415:1 25416:1 25423:1 25431:2 25434:2 25437:1 25454:1 25464:1 25467:1 25474:4 25494:5 25508:1 25510:1 25513:2 25515:1 25516:3 25526:2 25545:4 25548:1 25552:5 25557:1 25561:3 25562:1 25569:1 25582:3 25590:1 25595:2 25599:3 25600:1 25621:1 25623:1 25624:1 25635:4 25639:1 25646:1 25659:3 25662:2 25666:1 25669:5 25670:1 25672:1 25674:5 25678:3 25713:1 25714:1 25724:1 25726:1 25732:1 25798:1 25809:1 25810:1 25831:2 25834:1 25841:1 25850:1 25865:2 25878:1 25883:1 25884:1 25887:1 25897:1 25916:1 25920:1 25958:1 25962:1 25967:1 26002:3 26017:1 26019:4 26025:1 26031:1 26032:1 26035:1 26036:1 26046:1 26047:1 26056:4 26062:1 26073:1 26084:1 26088:1 26106:1 26110:2 26126:1 26133:1 26150:1 26158:1 26160:1 26188:2 26195:1 26201:1 26217:1 26218:1 26223:1 26239:1 26243:1 26253:1 26254:1 26255:1 26263:2 26269:2 26270:3 26278:2 26279:1 26286:4 26314:1 26320:1 26324:2 26328:1 26329:2 26331:1 26334:1 26354:2 26364:1 26367:1 26381:1 26390:1 26403:1 26405:1 26407:1 26411:1 26414:1 26423:2 26434:1 26435:1 26437:4 26442:2 26445:2 26459:1 26470:1 26481:1 26482:1 26488:1 26490:3 26502:7 26530:1 26535:1 26549:1 26550:1 26557:2 26565:1 26577:1 26579:1 26581:2 26582:1 26584:4 26605:1 26606:1 26608:1 26617:1 26628:1 26646:2 26665:2 26675:1 26679:1 26681:1 26685:1 26686:1 26689:3 26705:1 26718:2 26726:1 26729:1 26762:1 26768:1 26780:1 26785:1 26793:1 26794:1 26839:1 26850:1 26867:1 26872:2 26873:1 26879:2 26890:1 26897:1 26898:1 26902:3 26932:1 26954:1 26960:1 26961:1 26964:1 26966:1 26967:1 26977:1 26979:2 26984:3 26991:1 26996:1 26998:1 27020:2 27049:1 27052:1 27063:1 27065:3 27075:2 27076:1 27100:5 27105:1 27115:2 27116:1 27126:1 27133:1 27134:1 27144:3 27151:1 27171:1 27182:1 27186:1 27196:2 27198:1 27201:1 27202:1 27211:1 27222:2 27223:2 27224:1 27226:1 27227:6 27231:1 27233:1 27245:3 27247:1 27259:1 27265:1 27276:1 27280:1 27295:1 27299:3 27300:1 27305:2 27317:1 27335:1 27336:3 27344:1 27351:1 27357:1 27358:1 27365:1 27376:1 27383:1 27390:1 27408:2 27412:1 27429:2 27436:2 27460:1 27466:1 27470:4 27471:3 27479:1 27481:2 27483:2 27484:2 27486:1 27487:4 27488:1 27489:3 27490:2 27495:1 27496:1 27498:4 27508:2 27511:2 27519:1 27522:1 27527:2 27530:3 27539:5 27547:1 27550:1 27557:1 27578:1 27580:2 27586:1 27603:2 27608:1 27612:3 27616:1 27622:1 27626:2 27654:1 27655:3 27661:1 27664:4 27669:1 27674:1 27679:2 27681:2 27683:2 27687:2 27689:3 27691:2 27692:1 27705:1 27711:1 27713:1 27749:1 27754:1 27773:1 27776:1 27797:12 27798:1 27799:1 27815:1 27821:10 27835:1 27839:4 27842:2 27854:1 27855:1 27858:1 27862:1 27864:1 27871:2 27876:4 27890:3 27892:1 27912:2 27915:3 27953:1 27980:1 27986:2 27987:2 27994:1 28003:1 28024:1 28030:1 28046:2 28052:2 28064:1 28065:1 28069:1 28072:1 28074:1 28078:1 28082:1 28094:1 28101:1 28110:1 28113:2 28115:1 28133:3 28149:1 28164:1 28169:1 28173:1 28209:1 28224:1 28241:1 28270:1 28275:1 28293:1 28294:1 28303:1 28308:1 28319:2 28348:3 28349:10 28351:1 28369:1 28377:1 28382:10 28384:1 28393:1 28394:1 28397:1 28401:1 28402:1 28413:5 28420:1 28424:2 28425:1 28430:1 28437:1 28501:1 28502:1 28508:1 28527:1 28533:2 28536:2 28558:1 28576:2 28592:2 28593:1 28614:3 28617:1 28631:1 28632:5 28635:4 28636:1 28643:1 28651:1 28658:1 28664:1 28670:2 28672:1 28673:1 28674:2 28685:1 28694:2 28722:1 28730:1 28731:3 28736:1 28737:1 28746:1 28759:4 28773:1 28776:1 28787:1 28803:3 28809:1 28833:2 28847:1 28884:1 28885:1 28892:1 28921:1 28926:1 28937:1 28944:1 28948:6 28954:1 28966:1 28969:2 28976:1 28983:2 28995:1 29005:4 29007:3 29012:2 29021:1 29032:1 29042:1 29114:1 29136:1 29137:2 29149:2 29152:2 29154:1 29203:1 29211:1 29219:1 29225:1 29226:2 29233:1 29241:1 29263:2 29266:1 29277:1 29279:3 29283:1 29287:1 29290:1 29298:2 29305:1 29313:1 29329:1 29330:1 29336:1 29339:1 29342:1 29344:1 29345:1 29346:1 29348:1 29349:1 29351:2 29356:1 29359:4 29361:1 29378:1 29383:1 29394:1 29419:1 29421:7 29433:1 29448:1 29450:2 29474:1 29483:1 29485:1 29496:1 29508:1 29510:1 29515:9 29521:2 29529:3 29535:1 29547:1 29559:1 29562:1 29567:2 29570:3 29578:1 29583:3 29594:1 29605:4 29612:1 29623:1 29625:1 29632:1 29643:3 29649:1 29654:1 29658:1 29671:1 29676:4 29697:1 29702:1 29704:5 29711:1 29721:2 29724:1 29728:1 29729:1 29730:1 29735:1 29745:1 29775:1 29783:1 29800:2 29801:1 29820:2 29822:2 29824:1 29825:1 29826:1 29831:2 29839:1 29841:1 29845:1 29847:1 29899:1 29904:1 29916:2 29927:2 29931:2 29958:4 29969:1 29971:4 29972:3 29973:1 29974:4 29977:1 29995:1 29999:1 30002:2 30004:1 30015:1 30035:1 30040:1 30044:1 30052:1 30059:1 30096:2 30100:2 30105:1 30142:1 30149:2 30156:2 30168:2 30169:1 30175:1 30180:1 30181:1 30191:1 30199:1 30204:1 30210:1 30213:2 30231:6 30249:1 30252:1 30267:1 30285:1 30297:2 30305:1 30306:1 30315:1 30327:2 30330:1 30331:2 30342:1 30357:1 30360:1 30370:1 30380:6 30390:1 30393:2 30420:1 30431:1 30435:1 30445:2 30454:1 30466:2 30471:1 30475:4 30501:4 30504:3 30507:2 30510:2 30532:1 30548:2 30552:2 30564:1 30572:2 30587:10 30589:3 30602:1 30606:1 30628:1 30638:1 30653:1 30660:3 30663:1 30664:7 30683:1 30685:1 30688:1 30689:2 30697:1 30704:8 30710:1 30718:2 30730:1 30738:1 30775:1 30776:1 30789:2 30798:6 30802:5 30805:3 30809:2 30814:3 30822:1 30834:1 30835:1 30843:4 30846:1 30854:2 30863:1 30864:1 30867:1 30868:2 30869:1 30875:2 30880:2 30883:1 30884:2 30892:3 30895:2 30908:2 30910:1 30946:2 30956:2 30960:1 30967:2 30968:1 30971:2 30976:1 30977:2 30988:1 30994:2 30996:2 30999:1 31009:1 31019:1 31020:1 31031:1 31042:1 31046:3 31057:2 31062:1 31065:1 31074:1 31082:1 31095:1 31101:1 31104:2 31107:1 31113:1 31125:2 31127:1 31130:1 31135:1 31142:2 31144:1 31158:2 31161:1 31172:2 31184:2 31191:1 31195:2 31197:3 31206:1 31209:1 31216:8 31221:1 31227:1 31235:1 31287:1 31306:1 31315:2 31322:2 31324:1 31360:2 31363:2 31370:2 31375:1 31386:1 31388:2 31391:1 31392:4 31398:1 31404:1 31422:2 31440:3 31448:1 31452:3 31459:1 31461:4 31463:1 31476:3 31478:1 31480:2 31484:2 31485:3 31491:1 31494:1 31505:1 31521:1 31531:5 31538:1 31543:1 31545:1 31547:1 31553:1 31554:1 31566:2 31576:3 31581:1 31583:1 31590:1 31622:1 31625:1 31635:2 31640:1 31647:1 31649:1 31658:2 31665:26 31667:3 31670:2 31674:2 31679:2 31680:4 31684:3 31686:2 31688:2 31704:12 31721:3 31722:1 31727:1 31730:1 31750:1 31761:3 31763:1 31783:1 31790:1 31806:1 31811:1 31818:1 31821:1 31827:2 31834:7 31842:3 31846:1 31853:1 31877:8 31878:1 31894:2 31897:2 31910:1 31911:1 31916:1 31921:1 31932:1 31938:2 31952:1 31954:1 31960:1 31962:1 31964:1 31974:1 31976:1 31998:2 32009:1 32027:1 32035:3 32041:1 32042:1 32047:1 32053:1 32060:1 32061:2 32068:1 32070:1 32083:3 32085:1 32094:1 32097:1 32103:1 32105:2 32117:1 32125:1 32128:1 32140:2 32142:1 32153:1 32171:2 32172:3 32181:1 32201:1 32207:1 32212:1 32229:1 32241:6 32244:8 32277:2 32280:3 32288:1 32289:1 32299:1 32303:1 32304:1 32310:1 32311:2 32312:1 32319:1 32335:3 32348:1 32369:1 32403:1 32407:1 32420:1 32433:1 32439:2 32443:7 32447:1 32451:1 32456:1 32471:4 32472:1 32476:1 32486:1 32487:2 32491:4 32499:1 32548:1 32551:1 32552:2 32579:1 32619:1 32625:1 32628:1 32632:1 32650:1 32651:1 32656:2 32660:1 32661:1 32675:2 32688:1 32693:5 32697:1 32713:6 32719:1 32722:1 32724:2 32750:3 32768:2 32791:1 32795:1 32803:1 32808:2 32814:2 32818:1 32824:1 32834:1 32843:1 32846:2 32871:1 32885:2 32899:1 32900:2 32910:2 32934:1 32935:1 32941:3 32944:4 32956:2 32963:2 32974:1 33001:3 33019:1 33020:1 33025:1 33038:1 33041:8 33055:1 33056:3 33057:2 33059:1 33075:1 33083:1 33084:1 33101:1 33105:3 33108:1 33115:1 33118:1 33133:1 33138:1 33141:3 33143:2 33146:1 33148:2 33149:2 33155:10 33156:1 33164:2 33167:5 33168:1 33171:5 33182:1 33198:2 33204:1 33211:1 33220:3 33224:1 33225:2 33226:1 33232:1 33234:2 33267:1 33271:3
11 1:1 2:1 6:1 27:1 31:1 34:1 39:2 49:1 53:1 55:1 60:2 64:1 65:1 67:1 84:1 85:1 86:1 87:1 93:1 95:1 99:2 106:1 116:1 126:1 148:1 150:3 153:1 159:1 166:2 170:1 181:2 183:1 187:2 210:1 215:1 232:2 235:1 238:6 241:1 256:1 265:1 268:1 282:1 283:2 294:3 296:2 299:1 313:1 322:1 336:1 344:1 347:1 357:1 362:2 378:1 401:1 402:1 403:6 411:2 415:2 427:2 446:1 453:1 455:2 460:1 498:1 507:9 513:1 523:1 546:2 573:1 582:2 586:3 621:1 627:1 646:2 654:1 671:1 698:1 712:1 717:4 721:1 731:7 745:1 753:2 759:3 764:4 765:1 766:1 774:1 789:1 790:2 795:1 807:1 808:1 815:2 829:1 856:1 866:2 899:1 937:1 951:3 955:2 956:1 971:2 974:1 979:1 984:1 1000:1 1003:2 1022:3 1039:1 1049:2 1053:1 1057:1 1067:2 1069:1 1070:1 1071:7 1073:1 1080:1 1082:1 1083:1 1094:1 1103:2 1106:2 1117:1 1118:1 1125:1 1127:1 1130:7 1132:1 1134:1 1141:2 1142:1 1144:1 1147:1 1158:2 1161:1 1165:1 1168:3 1171:3 1199:1 1204:4 1211:1 1216:3 1218:1 1220:1 1236:3 1239:1 1244:1 1257:1 1262:1 1265:1 1284:1 1287:1 1309:1 1311:2 1316:1 1318:1 1321:1 1322:1 1340:1 1351:2 1376:1 1378:1 1388:1 1392:1 1393:1 1403:1 1405:2 1409:1 1413:1 1415:1 1420:1 1421:1 1432:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:3 1465:1 1467:1 1480:2 1481:1 1487:2 1494:1 1496:2 1504:2 1509:1 1514:2 1532:1 1538:3 1539:1 1545:1 1547:1 1583:1 1588:2 1624:1 1626:2 1630:1 1635:1 1645:1 1650:1 1658:1 1664:4 1683:2 1686:1 1690:2 1691:1 1719:1 1726:7 1730:11 1739:11 1745:1 1747:1 1749:2 1751:2 1759:1 1761:1 1771:2 1793:1 1799:1 1807:1 1808:1 1813:1 1837:4 1839:4 1841:1 1844:1 1869:2 1878:2 1883:8 1884:1 1892:1 1899:1 1906:2 1917:7 1941:2 1943:1 1948:1 1955:1 1956:1 1957:1 1960:1 1963:2 1966:1 1973:1 1977:2 1980:1 1991:1 1999:1 2003:1 2019:2 2027:1 2037:1 2041:1 2061:1 2062:1 2073:2 2078:1 2080:1 2086:1 2098:1 2113:1 2118:1 2119:1 2133:3 2135:1 2136:1 2137:3 2138:2 2139:1 2141:1 2157:1 2158:1 2169:1 2177:3 2180:2 2187:1 2195:6 2198:1 2209:2 2214:1 2223:1 2225:2 2234:1 2237:1 2241:2 2246:1 2249:2 2255:2 2263:2 2265:1 2269:1 2279:1 2284:2 2301:3 2304:1 2317:3 2322:1 2329:1 2345:1 2348:1 2355:1 2367:1 2372:1 2373:7 2381:1 2397:1 2399:2 2406:1 2412:1 2419:1 2421:1 2422:1 2429:1 2437:1 2441:2 2444:1 2465:2 2482:7 2496:1 2502:3 2508:1 2509:1 2519:1 2521:2 2525:2 2529:1 2530:1 2537:1 2547:1 2551:3 2552:1 2553:1 2555:6 2558:7 2559:1 2562:1 2563:3 2564:1 2568:2 2570:1 2573:4 2576:2 2578:3 2579:4 2583:1 2585:1 2587:1 2613:1 2616:2 2618:4 2620:3 2623:3 2624:7 2625:2 2626:1 2630:4 2631:4 2632:2 2634:3 2635:2 2637:1 2640:2 2642:6 2647:7 2648:2 2652:1 2655:1 2657:3 2662:2 2663:1 2681:1 2713:1 2720:1 2732:1 2738:1 2739:1 2742:1 2753:2 2769:2 2774:1 2784:1 2788:1 2795:2 2801:3 2821:1 2831:3 2832:1 2864:1 2867:2 2868:1 2878:2 2888:1 2890:2 2896:1 2905:2 2918:2 2923:1 2934:1 2951:3 2953:1 2955:1 2962:1 2964:1 2979:1 2985:1 2992:1 2993:1 3008:2 3017:2 3030:1 3033:1 3039:1 3042:1 3049:1 3051:1 3059:1 3062:1 3069:2 3071:1 3075:1 3080:4 3097:1 3098:1 3106:8 3116:2 3121:2 3134:2 3145:1 3157:1 3165:3 3171:1 3173:2 3181:1 3182:2 3193:1 3195:1 3197:2 3201:4 3213:2 3223:1 3257:3 3263:2 3283:1 3284:7 3291:1 3294:1 3295:12 3301:1 3302:2 3314:2 3318:2 3336:4 3350:2 3351:1 3352:1 3353:13 3360:1 3364:2 3369:1 3377:1 3379:1 3380:1 3386:1 3397:1 3408:1 3411:2 3418:2 3433:2 3464:1 3471:1 3474:1 3475:1 3482:1 3484:1 3504:1 3517:1 3529:1 3539:1 3549:1 3550:4 3572:1 3578:2 3588:1 3598:1 3600:1 3625:1 3645:1 3646:1 3683:1 3690:5 3702:3 3705:1 3707:1 3721:4 3726:1 3744:1 3755:1 3758:8 3762:1 3765:1 3769:1 3772:1 3790:1 3799:1 3816:1 3821:1 3822:3 3853:1 3856:1 3857:2 3868:1 3875:2 3882:1 3917:2 3926:1 3930:4 3936:2 3939:1 3942:2 3945:1 3948:1 3951:1 3968:2 3971:2 3974:2 3978:1 3990:1 3992:2 4005:1 4011:1 4012:1 4018:1 4020:2 4033:1 4035:2 4040:1 4047:3 4060:2 4071:2 4074:1 4103:1 4105:1 4112:1 4115:2 4122:1 4131:1 4134:1 4153:1 4160:5 4174:5 4178:1 4188:1 4193:3 4195:1 4207:1 4225:2 4245:2 4247:2 4252:4 4253:16 4263:1 4267:1 4271:1 4279:3 4288:4 4289:4 4291:2 4292:1 4300:2 4303:1 4306:7 4308:2 4330:1 4331:1 4332:6 4334:1 4346:1 4351:3 4356:1 4361:1 4378:3 4382:1 4391:2 4405:1 4434:1 4437:1 4452:1 4454:2 4456:2 4465:1 4470:1 4477:1 4483:1 4484:1 4487:1 4488:1 4510:4 4511:1 4512:1 4529:2 4531:3 4533:1 4536:4 4540:2 4545:3 4547:3 4548:1 4573:1 4574:2 4575:1 4581:2 4585:1 4593:1 4605:1 4609:1 4628:2 4635:1 4637:1 4663:1 4667:3 4684:1 4686:2 4704:1 4713:1 4714:1 4722:1 4727:1 4728:1 4730:1 4741:1 4758:1 4763:5 4767:8 4773:1 4785:1 4792:1 4793:4 4819:1 4824:2 4842:2 4848:2 4863:1 4871:1 4872:5 4877:2 4888:3 4889:2 4906:1 4907:1 4924:1 4929:1 4933:1 4936:2 4951:1 4959:1 4974:1 4979:1 4980:1 4989:1 4991:1 5000:1 5020:1 5022:2 5025:1 5030:2 5033:4 5040:1 5042:1 5044:1 5045:2 5052:1 5054:1 5066:1 5072:1 5082:1 5098:1 5106:1 5132:1 5136:2 5143:5 5160:1 5162:1 5163:1 5168:1 5171:1 5198:1 5212:1 5236:1 5239:1 5246:4 5269:1 5276:1 5287:4 5290:3 5299:1 5304:1 5312:1 5337:3 5340:6 5365:3 5369:3 5396:1 5397:2 5434:1 5456:1 5462:1 5471:1 5490:2 5491:1 5516:1 5517:1 5528:1 5530:1 5536:1 5562:39 5564:3 5596:2 5610:1 5641:1 5642:1 5671:1 5684:1 5688:1 5689:1 5690:3 5706:1 5717:4 5718:7 5719:4 5720:4 5722:1 5725:4 5730:2 5731:3 5733:4 5734:1 5735:2 5740:2 5744:1 5748:1 5750:6 5752:4 5759:3 5763:1 5766:1 5770:1 5781:1 5788:1 5794:1 5797:1 5811:1 5814:2 5825:2 5832:1 5844:2 5853:2 5855:1 5868:2 5873:1 5883:1 5895:1 5898:1 5907:2 5965:3 5975:1 6027:2 6033:1 6038:1 6043:1 6084:3 6088:2 6089:1 6108:1 6115:1 6124:1 6144:3 6150:3 6165:2 6169:2 6181:1 6186:3 6224:1 6233:1 6237:1 6261:1 6279:2 6283:3 6284:1 6292:1 6299:1 6300:1 6305:6 6318:1 6319:3 6322:1 6327:1 6328:1 6330:1 6335:4 6345:3 6355:1 6372:2 6374:2 6382:2 6385:1 6388:1 6391:2 6395:1 6397:2 6400:1 6403:1 6407:2 6412:1 6418:2 6428:1 6431:1 6435:2 6453:1 6454:1 6459:9 6469:1 6480:5 6496:1 6506:1 6508:2 6509:3 6518:1 6520:1 6529:1 6531:1 6533:1 6536:1 6537:1 6540:1 6547:2 6548:1 6553:1 6558:6 6561:1 6570:1 6581:4 6584:1 6598:1 6610:1 6624:1 6639:1 6643:2 6688:6 6692:5 6699:1 6706:1 6707:1 6722:1 6750:1 6761:1 6762:1 6773:1 6776:1 6793:1 6795:1 6806:1 6816:1 6819:3 6821:2 6827:1 6840:1 6843:1 6845:2 6847:7 6863:3 6874:1 6884:1 6885:1 6887:1 6888:2 6890:2 6897:4 6923:1 6935:1 6939:1 6944:1 6954:1 6961:8 6980:2 6983:1 6994:2 7003:2 7008:1 7012:2 7023:1 7025:1 7038:1 7044:1 7050:1 7059:1 7062:2 7066:1 7081:1 7087:3 7088:3 7089:3 7090:1 7091:1 7097:2 7101:1 7103:1 7114:2 7132:2 7150:1 7173:1 7190:3 7192:1 7193:1 7194:1 7196:2 7197:4 7200:4 7201:1 7204:3 7207:4 7209:3 7210:1 7211:3 7212:1 7217:1 7218:11 7220:1 7221:1 7222:3 7224:2 7258:1 7272:1 7279:1 7303:1 7306:1 7307:2 7365:3 7377:1 7378:1 7380:1 7381:1 7389:1 7406:2 7410:1 7429:3 7435:2 7439:1 7463:1 7469:1 7497:1 7511:1 7512:1 7535:2 7539:3 7543:1 7552:1 7557:1 7559:1 7570:2 7574:1 7589:2 7599:2 7602:2 7613:1 7619:1 7628:1 7637:2 7648:3 7649:1 7659:1 7662:1 7671:5 7672:1 7676:3 7677:1 7691:1 7705:6 7707:1 7714:1 7724:1 7741:1 7745:2 7748:1 7750:3 7766:1 7776:1 7782:1 7791:1 7792:1 7794:1 7809:1 7815:1 7822:1 7825:1 7833:1 7839:2 7840:1 7855:1 7867:1 7879:3 7884:1 7905:1 7912:2 7913:2 7927:1 7941:2 7949:1 7954:1 7956:1 7961:1 7984:1 7988:2 7993:1 8007:2 8014:1 8016:1 8025:2 8027:2 8043:1 8045:1 8054:1 8064:1 8075:12 8089:2 8090:1 8105:2 8127:1 8129:1 8139:1 8143:5 8150:1 8155:2 8167:1 8168:1 8189:1 8196:1 8209:1 8216:1 8219:1 8230:1 8237:1 8247:1 8248:1 8258:2 8273:1 8277:4 8283:1 8299:1 8302:1 8309:1 8328:3 8338:1 8340:1 8347:1 8383:2 8387:1 8389:4 8402:1 8406:1 8413:1 8417:4 8426:1 8432:4 8439:2 8446:1 8454:1 8470:1 8474:1 8478:3 8491:1 8494:1 8498:1 8499:1 8504:1 8522:1 8531:2 8560:1 8562:1 8567:1 8568:1 8570:1 8573:1 8575:1 8582:2 8585:1 8593:1 8599:1 8609:4 8611:1 8615:1 8617:1 8619:1 8624:5 8630:3 8631:8 8633:5 8653:1 8654:3 8659:2 8663:1 8684:1 8688:2 8689:1 8702:57 8716:1 8717:1 8725:1 8726:10 8728:9 8734:2 8748:1 8767:1 8783:1 8793:1 8796:2 8797:1 8810:1 8815:3 8816:2 8817:1 8818:1 8826:1 8848:1 8860:1 8864:2 8874:2 8880:1 8886:1 8887:1 8889:1 8890:1 8891:1 8901:1 8906:1 8909:2 8923:1 8924:1 8930:1 8932:2 8935:9 8957:1 8960:1 8974:1 8982:6 8987:1 8992:1 9025:1 9030:1 9048:2 9059:1 9094:2 9127:1 9129:1 9135:1 9143:2 9157:7 9168:2 9179:1 9183:2 9186:2 9203:3 9209:1 9221:2 9222:1 9231:1 9232:21 9241:1 9242:1 9264:1 9267:1 9276:1 9279:1 9289:1 9295:1 9298:1 9299:1 9311:1 9324:1 9332:1 9333:1 9335:1 9339:1 9340:1 9381:1 9394:5 9425:1 9430:1 9435:2 9441:1 9466:1 9467:1 9470:1 9473:1 9484:2 9493:2 9495:1 9507:3 9508:1 9529:1 9540:2 9541:1 9542:1 9544:3 9561:1 9563:1 9596:1 9623:2 9630:1 9632:2 9633:1 9634:4 9637:1 9638:1 9640:1 9642:2 9644:2 9646:2 9648:4 9649:2 9654:4 9661:1 9665:1 9669:1 9675:1 9680:1 9688:1 9690:1 9697:3 9698:1 9705:1 9706:1 9742:1 9743:1 9744:1 9746:1 9770:2 9781:1 9788:1 9806:1 9807:1 9810:2 9815:1 9823:1 9826:1 9833:2 9836:1 9842:4 9847:1 9857:1 9882:1 9901:3 9907:1 9923:1 9931:1 9937:2 9942:1 9945:2 9952:1 9965:2 9974:1 9976:3 9979:1 9982:1 9988:1 9994:1 9999:1 10006:1 10008:2 10015:1 10022:1 10027:3 10035:1 10054:1 10070:1 10087:1 10092:1 10095:2 10107:1 10117:1 10121:1 10124:1 10126:1 10138:1 10142:1 10150:3 10152:3 10159:1 10161:2 10171:1 10197:1 10208:1 10209:2 10210:2 10232:1 10265:1 10275:1 10282:1 10291:1 10294:1 10307:3 10331:1 10332:1 10334:2 10337:1 10338:1 10340:1 10345:8 10349:1 10362:2 10367:1 10371:1 10373:1 10374:2 10376:1 10385:1 10388:1 10389:1 10407:1 10417:1 10422:1 10430:2 10434:5 10435:1 10436:2 10440:1 10445:1 10450:1 10454:1 10456:1 10459:1 10465:1 10479:1 10497:2 10502:1 10517:2 10518:1 10522:2 10524:1 10533:2 10540:1 10549:1 10550:1 10554:1 10570:1 10575:1 10583:1 10584:2 10586:1 10591:1 10596:1 10598:1 10602:1 10619:1 10621:1 10623:1 10627:1 10643:2 10648:1 10666:4 10681:1 10684:1 10695:1 10708:1 10709:5 10732:1 10747:1 10752:2 10764:1 10765:1 10773:1 10792:1 10800:1 10804:1 10806:3 10807:2 10822:1 10828:2 10831:1 10845:1 10846:2 10847:2 10858:1 10867:3 10876:1 10877:1 10886:1 10892:2 10893:1 10913:2 10947:1 10948:13 10955:1 10969:3 10970:1 10972:1 10973:4 10996:1 10997:2 10999:1 11008:1 11011:1 11020:2 11029:1 11030:1 11052:1 11063:2 11067:1 11079:1 11094:2 11119:3 11133:4 11141:1 11153:1 11163:3 11167:1 11170:2 11171:1 11172:1 11175:2 11178:2 11188:3 11200:1 11201:1 11208:1 11210:4 11214:4 11215:1 11218:1 11222:1 11225:1 11226:1 11231:2 11232:3 11234:2 11235:1 11239:2 11242:2 11265:1 11266:2 11272:1 11276:5 11287:1 11288:2 11291:1 11293:1 11302:1 11305:1 11308:1 11309:1 11323:2 11324:1 11331:1 11339:1 11342:1 11356:1 11362:1 11365:1 11376:8 11383:2 11415:1 11421:1 11431:1 11433:1 11438:1 11445:2 11448:2 11450:1 11451:1 11456:1 11464:1 11473:1 11488:1 11492:1 11499:1 11517:2 11519:1 11526:1 11550:2 11559:1 11573:1 11575:1 11584:1 11588:1 11594:1 11601:1 11603:1 11607:5 11611:3 11637:2 11638:1 11650:1 11656:1 11660:1 11674:1 11677:3 11690:1 11692:1 11695:1 11697:1 11701:3 11717:1 11730:2 11741:1 11744:1 11778:1 11784:7 11795:1 11796:1 11811:1 11820:1 11822:10 11830:1 11841:1 11842:1 11846:1 11847:1 11854:1 11855:1 11858:1 11860:1 11879:1 11892:1 11895:1 11899:1 11906:3 11912:1 11914:3 11915:1 11930:1 11931:2 11933:1 11949:2 11955:1 11966:1 11992:2 12002:1 12005:1 12015:5 12023:1 12026:2 12028:1 12031:1 12039:4 12042:1 12047:1 12050:3 12052:1 12081:1 12099:1 12109:2 12112:1 12145:1 12149:1 12154:2 12155:1 12162:1 12169:4 12187:1 12197:1 12213:1 12214:1 12220:1 12255:2 12266:1 12274:1 12275:1 12284:1 12307:2 12310:2 12319:1 12325:1 12327:4 12329:8 12333:1 12335:1 12336:4 12337:1 12339:1 12350:2 12352:3 12354:1 12356:1 12361:1 12369:1 12377:1 12378:2 12379:1 12389:1 12406:1 12427:1 12434:2 12438:1 12448:1 12461:1 12472:1 12475:1 12476:1 12477:2 12483:1 12487:1 12501:1 12526:1 12537:1 12544:1 12545:1 12551:1 12552:1 12559:1 12580:1 12593:1 12596:1 12604:2 12607:1 12618:4 12630:2 12640:1 12647:1 12649:1 12672:1 12682:1 12733:1 12741:1 12743:1 12762:1 12764:1 12766:1 12770:1 12775:1 12776:1 12783:1 12789:1 12794:1 12805:1 12811:3 12814:3 12819:3 12821:1 12836:1 12845:1 12862:3 12865:14 12867:1 12876:1 12877:1 12893:1 12896:1 12902:1 12910:2 12915:1 12918:1 12923:1 12928:3 12929:1 12933:1 12935:4 12936:2 12952:1 12954:1 12970:1 12977:3 12988:3 12994:1 13000:1 13001:1 13005:1 13007:1 13009:1 13012:1 13015:1 13018:3 13027:1 13032:1 13050:3 13061:2 13064:1 13066:1 13073:1 13081:1 13085:3 13088:8 13089:2 13094:2 13111:1 13116:1 13128:8 13135:1 13137:1 13138:2 13142:4 13143:1 13144:1 13146:1 13148:1 13149:1 13150:2 13151:8 13152:1 13153:1 13156:1 13162:9 13168:1 13169:1 13192:1 13196:2 13202:1 13203:1 13206:1 13220:2 13228:1 13231:1 13239:2 13244:1 13254:2 13264:2 13285:1 13286:1 13287:1 13294:2 13296:1 13302:1 13308:1 13320:7 13338:1 13365:1 13391:1 13408:1 13410:4 13415:1 13423:2 13427:1 13429:2 13434:1 13443:1 13448:2 13456:1 13461:1 13463:2 13473:5 13476:1 13480:2 13486:1 13510:1 13515:2 13517:4 13527:2 13552:2 13553:2 13556:1 13590:1 13592:1 13600:1 13606:2 13608:1 13611:1 13616:2 13621:1 13649:1 13653:2 13654:3 13662:1 13674:1 13684:3 13685:4 13690:1 13700:2 13718:3 13738:1 13742:3 13745:1 13750:3 13759:1 13778:2 13805:1 13815:1 13821:3 13826:2 13830:1 13848:1 13863:2 13873:6 13874:1 13895:2 13896:3 13899:1 13921:1 13930:1 13933:1 13935:1 13939:1 13940:1 13973:1 13976:2 14004:3 14007:2 14011:1 14018:1 14021:1 14030:1 14037:1 14039:1 14055:1 14059:1 14061:2 14069:1 14081:2 14101:1 14102:2 14119:1 14125:2 14146:1 14149:1 14162:4 14180:1 14183:2 14207:1 14210:1 14214:2 14242:1 14252:1 14256:2 14267:1 14281:1 14318:2 14319:1 14341:1 14345:10 14353:1 14356:2 14361:1 14370:5 14376:3 14380:1 14384:1 14402:1 14408:1 14409:1 14410:2 14416:1 14421:1 14436:2 14441:2 14443:3 14449:1 14468:1 14470:1 14471:1 14472:1 14473:5 14480:2 14483:3 14489:2 14497:1 14518:2 14520:1 14541:1 14545:1 14572:1 14577:1 14581:1 14583:1 14589:3 14592:1 14605:1 14614:1 14620:1 14633:1 14640:1 14651:1 14652:1 14658:2 14686:1 14688:2 14697:1 14706:1 14753:1 14781:1 14791:1 14793:5 14804:1 14806:1 14810:1 14831:1 14841:1 14854:3 14858:1 14859:1 14867:2 14870:2 14873:1 14877:7 14881:6 14883:1 14891:1 14895:1 14896:1 14904:5 14907:9 14915:1 14921:3 14935:2 14940:1 14942:2 14945:1 14949:3 14957:1 14958:2 14959:1 14960:1 14975:2 14979:1 14980:1 14999:1 15005:1 15016:1 15019:2 15028:1 15033:2 15039:10 15040:1 15047:3 15054:1 15059:1 15066:2 15075:1 15079:2 15082:1 15087:1 15122:1 15125:5 15131:1 15136:1 15160:2 15161:2 15172:1 15187:1 15191:1 15212:1 15215:1 15216:1 15217:5 15236:1 15246:1 15251:1 15255:1 15259:1 15275:1 15278:2 15281:2 15293:1 15311:1 15322:1 15325:3 15333:2 15336:1 15342:1 15344:1 15361:1 15367:3 15374:3 15381:2 15386:1 15410:1 15429:1 15438:1 15443:1 15476:1 15477:4 15480:1 15483:4 15487:1 15488:2 15489:2 15496:1 15508:2 15513:1 15519:2 15520:1 15523:1 15542:1 15543:1 15551:1 15555:1 15574:4 15586:1 15601:1 15616:8 15622:1 15625:2 15645:1 15662:1 15664:1 15666:2 15680:2 15704:1 15725:1 15726:1 15728:5 15734:5 15740:2 15749:2 15780:2 15811:2 15820:5 15840:2 15855:1 15861:1 15864:1 15900:2 15905:1 15923:1 15929:2 15934:1 15936:1 15938:1 15945:1 15955:1 15959:1 15960:2 15962:1 15974:4 15986:1 15990:1 15993:1 15996:2 15997:1 16000:3 16021:1 16026:1 16030:1 16033:1 16040:3 16042:1 16043:1 16046:1 16059:1 16063:1 16067:1 16071:1 16073:1 16092:1 16098:4 16114:1 16119:2 16136:1 16144:1 16145:1 16150:2 16152:1 16178:3 16183:1 16187:1 16189:1 16197:2 16198:1 16208:1 16214:1 16226:1 16227:4 16229:1 16235:1 16236:1 16237:1 16254:1 16266:1 16270:1 16273:1 16284:1 16289:1 16321:1 16330:6 16347:1 16350:2 16351:1 16355:1 16362:1 16390:2 16393:2 16407:1 16411:1 16422:1 16427:2 16428:1 16433:2 16448:1 16450:1 16451:1 16457:2 16463:3 16484:4 16488:1 16508:3 16523:1 16534:1 16538:1 16556:2 16559:2 16566:5 16598:1 16606:2 16608:1 16627:1 16630:1 16634:1 16642:1 16650:2 16655:1 16674:2 16678:1 16684:5 16687:1 16688:1 16693:1 16694:1 16721:2 16723:1 16739:1 16741:1 16753:1 16762:1 16782:8 16783:2 16787:1 16789:1 16793:1 16797:1 16831:1 16832:4 16835:1 16840:1 16842:1 16846:3 16848:1 16860:1 16884:3 16904:1 16922:1 16925:1 16936:4 16940:2 16942:1 16944:1 16948:1 16971:3 16973:3 16984:1 16988:3 16990:1 16999:1 17012:2 17023:1 17042:1 17045:4 17046:1 17048:1 17053:2 17056:2 17061:1 17063:1 17079:1 17098:2 17103:1 17105:1 17127:1 17140:1 17155:1 17176:1 17187:1 17194:3 17203:1 17214:1 17219:1 17224:3 17226:1 17246:1 17251:3 17269:1 17289:2 17293:1 17297:1 17314:1 17317:2 17318:1 17324:2 17334:1 17370:1 17379:1 17389:1 17406:1 17420:1 17423:18 17433:2 17437:1 17448:1 17457:1 17479:2 17489:2 17499:1 17503:3 17514:1 17516:1 17528:3 17531:1 17539:1 17543:2 17553:1 17567:1 17571:1 17576:1 17581:1 17586:2 17596:1 17598:1 17610:1 17648:1 17661:3 17673:1 17681:1 17689:14 17694:1 17695:1 17698:1 17699:3 17700:4 17709:1 17710:3 17714:1 17715:1 17718:1 17722:1 17729:5 17731:2 17740:1 17748:1 17752:1 17756:1 17758:1 17767:1 17771:1 17775:2 17776:1 17783:1 17784:2 17805:5 17824:1 17829:1 17830:2 17857:3 17860:2 17866:1 17871:1 17876:1 17878:1 17880:1 17884:1 17888:5 17904:1 17930:1 17951:1 17953:4 17955:3 17959:1 17989:1 18008:1 18009:1 18010:1 18016:1 18049:4 18053:5 18074:4 18079:1 18104:1 18108:2 18111:1 18114:1 18141:1 18148:1 18157:4 18160:1 18180:1 18187:1 18195:13 18199:1 18214:4 18220:1 18222:1 18226:1 18227:1 18234:3 18236:1 18243:2 18247:1 18258:1 18260:1 18273:1 18281:2 18286:1 18289:2 18301:1 18302:1 18306:1 18308:2 18313:1 18315:1 18319:4 18321:2 18322:1 18323:1 18327:1 18329:1 18330:1 18332:3 18340:2 18341:1 18342:5 18344:1 18351:1 18352:3 18361:1 18372:1 18375:1 18401:1 18416:1 18417:2 18426:1 18485:1 18492:3 18527:2 18537:1 18546:1 18561:1 18584:1 18603:1 18619:1 18621:1 18635:2 18672:1 18683:1 18684:1 18693:1 18697:1 18699:1 18702:1 18708:1 18716:2 18717:1 18727:1 18732:1 18733:1 18737:1 18738:1 18739:4 18743:1 18764:1 18777:2 18785:1 18794:1 18799:3 18807:1 18808:2 18821:1 18842:3 18879:1 18896:2 18900:1 18908:1 18911:3 18919:5 18928:1 18949:1 18966:1 18967:1 18978:1 18987:1 19000:1 19005:1 19024:1 19029:3 19030:1 19035:2 19039:1 19043:1 19049:1 19050:1 19059:7 19062:5 19069:2 19081:1 19089:3 19103:2 19108:1 19117:1 19126:1 19135:1 19139:5 19155:1 19165:3 19169:2 19177:1 19182:1 19200:4 19207:2 19208:1 19209:1 19212:1 19213:1 19216:3 19233:2 19246:1 19248:2 19250:1 19261:2 19262:1 19276:1 19295:1 19296:1 19320:10 19329:1 19333:2 19345:1 19348:1 19349:1 19351:1 19352:1 19354:1 19357:3 19362:1 19372:1 19384:1 19398:2 19404:1 19405:1 19417:1 19432:2 19443:1 19444:2 19448:2 19452:1 19465:2 19471:1 19475:1 19493:2 19495:1 19503:1 19508:2 19509:1 19526:1 19532:1 19536:2 19559:1 19566:1 19567:1 19583:1 19585:1 19622:1 19628:1 19634:1 19637:1 19638:1 19643:1 19655:1 19659:1 19663:2 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19722:1 19758:1 19763:3 19772:5 19774:1 19776:1 19781:2 19783:3 19784:1 19794:1 19797:1 19809:1 19816:1 19819:1 19843:3 19849:2 19850:1 19867:1 19872:1 19897:1 19904:1 19910:2 19919:1 19936:1 19951:2 19962:1 19965:1 19966:1 20000:1 20007:2 20008:1 20020:2 20028:1 20031:1 20032:2 20045:1 20075:1 20077:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:2 20123:2 20124:9 20128:4 20136:2 20142:1 20143:1 20146:3 20163:1 20166:3 20174:1 20180:1 20181:1 20183:1 20200:1 20202:1 20219:1 20220:1 20225:3 20230:1 20231:1 20237:2 20239:1 20240:1 20241:1 20243:2 20286:1 20287:1 20292:1 20294:1 20300:2 20307:1 20309:2 20341:1 20360:1 20373:1 20391:1 20394:2 20395:1 20400:1 20405:1 20406:1 20407:2 20410:1 20412:1 20416:1 20437:1 20441:1 20454:1 20458:1 20460:1 20477:1 20492:2 20499:1 20503:1 20508:1 20514:1 20516:1 20517:1 20518:1 20520:1 20524:2 20525:1 20540:1 20548:1 20561:1 20569:1 20635:4 20645:1 20673:2 20681:3 20682:1 20692:3 20697:2 20706:1 20709:1 20742:3 20760:1 20761:1 20773:1 20792:1 20803:8 20814:2 20815:4 20831:1 20851:1 20876:1 20893:2 20894:2 20895:1 20900:2 20906:1 20929:2 20936:1 20942:2 20949:2 20951:2 20970:1 20974:2 20983:3 20990:1 20996:2 21003:2 21004:2 21010:2 21016:2 21041:1 21047:4124 21054:1 21068:3 21070:3 21079:2 21080:1 21087:1 21096:1 21109:1 21164:3 21166:1 21173:2 21178:1 21205:1 21227:1 21234:1 21241:2 21260:1 21278:1 21279:4 21291:1 21292:4 21294:1 21295:2 21300:1 21308:1 21355:1 21362:1 21372:1 21374:1 21378:1 21382:1 21398:1 21401:3 21404:1 21408:1 21419:1 21421:1 21431:1 21444:1 21449:2 21464:1 21466:2 21476:1 21478:1 21487:1 21510:1 21512:1 21515:3 21518:2 21520:1 21532:1 21539:1 21548:1 21551:1 21566:1 21571:1 21585:1 21601:1 21602:1 21605:1 21609:1 21630:1 21644:1 21668:1 21689:3 21692:1 21709:2 21722:1 21729:1 21730:1 21735:4 21790:1 21797:2 21801:1 21802:1 21806:1 21808:1 21812:1 21813:1 21817:1 21821:2 21827:3 21833:2 21843:1 21845:1 21856:2 21861:2 21863:1 21874:1 21877:3 21880:1 21883:1 21895:2 21907:1 21913:1 21918:3 21921:7 21952:1 21953:8 21959:1 21960:1 21961:1 21966:2 21968:1 21976:1 21992:1 22001:2 22020:3 22025:3 22029:2 22032:3 22039:1 22041:1 22043:2 22045:2 22072:4 22082:1 22095:3 22100:1 22107:3 22119:1 22127:1 22132:1 22133:1 22138:1 22143:1 22157:1 22162:1 22173:3 22174:1 22178:3 22181:1 22186:1 22214:1 22227:1 22229:1 22235:1 22240:1 22245:3 22262:1 22267:2 22271:1 22281:2 22294:1 22301:5 22306:1 22311:1 22318:1 22325:1 22333:1 22344:1 22351:1 22364:1 22370:1 22375:1 22382:1 22404:5 22415:1 22423:5 22440:1 22459:1 22462:1 22479:2 22483:1 22493:1 22495:1 22503:2 22504:1 22508:2 22518:1 22526:3 22530:1 22540:1 22545:1 22548:3 22553:1 22562:1 22565:3 22569:1 22572:1 22573:2 22583:1 22586:1 22598:1 22603:1 22615:1 22617:1 22626:3 22638:1 22644:2 22655:1 22659:1 22669:1 22681:4 22688:2 22690:1 22698:1 22708:1 22713:1 22718:1 22737:3 22740:1 22750:1 22762:1 22766:2 22774:1 22776:1 22791:1 22793:1 22794:1 22803:1 22815:5 22819:1 22824:1 22829:1 22833:1 22834:1 22835:1 22837:1 22845:1 22851:1 22852:1 22870:7 22871:1 22877:2 22880:1 22886:1 22889:2 22942:1 22952:1 22954:1 22966:1 22971:1 22981:1 22984:2 22992:1 23002:1 23004:1 23005:2 23036:2 23046:1 23055:1 23059:3 23100:1 23108:4 23113:1 23114:1 23116:2 23129:1 23147:2 23156:2 23160:5 23163:1 23164:1 23169:4 23172:1 23175:1 23183:1 23229:1 23243:1 23256:2 23257:1 23277:1 23279:1 23281:1 23286:1 23288:1 23290:1 23330:2 23353:1 23356:1 23359:2 23363:1 23367:1 23373:1 23374:1 23381:1 23383:1 23390:1 23415:2 23416:1 23419:1 23432:1 23434:1 23444:4 23447:2 23449:2 23453:1 23456:1 23463:1 23471:1 23490:7 23504:2 23518:1 23521:2 23522:2 23523:1 23527:2 23529:2 23532:2 23544:4 23550:3 23556:1 23560:2 23561:1 23570:1 23572:1 23574:1 23580:3 23583:1 23585:1 23596:1 23599:1 23609:1 23612:1 23617:1 23622:2 23626:1 23644:2 23649:2 23656:1 23657:1 23658:1 23663:1 23669:2 23708:1 23723:2 23728:1 23729:1 23733:1 23736:1 23737:1 23745:9 23746:1 23751:2 23752:2 23754:1 23756:2 23765:1 23770:1 23773:1 23779:1 23782:1 23785:1 23790:1 23800:1 23802:2 23831:1 23837:1 23852:1 23853:2 23857:2 23858:1 23859:1 23861:1 23863:1 23891:1 23898:1 23899:1 23901:1 23912:2 23917:1 23919:3 23927:1 23931:1 23943:1 23949:1 23951:1 23953:2 23955:4 23970:1 23983:1 23985:1 23991:1 24009:1 24013:1 24024:6 24032:1 24039:1 24057:4 24058:1 24059:1 24074:1 24078:1 24082:2 24090:1 24093:1 24098:1 24099:1 24113:2 24114:1 24127:1 24133:1 24138:1 24143:1 24144:1 24151:2 24166:2 24168:1 24176:1 24194:1 24195:1 24197:1 24198:1 24201:1 24205:3 24206:2 24207:1 24208:1 24210:1 24214:1 24216:1 24217:1 24218:1 24222:2 24225:1 24226:3 24229:1 24241:1 24242:1 24243:1 24250:1 24255:2 24262:2 24263:3 24270:1 24274:1 24276:2 24279:1 24289:1 24298:1 24308:1 24314:2 24319:2 24321:1 24323:1 24334:1 24358:1 24359:2 24366:6 24368:1 24369:1 24371:1 24373:2 24379:1 24383:2 24386:2 24394:2 24398:1 24401:1 24417:1 24418:1 24425:1 24427:1 24442:2 24449:1 24467:1 24474:1 24477:1 24478:4 24487:2 24493:7 24502:1 24504:1 24505:1 24516:1 24527:1 24541:1 24542:6 24550:2 24578:1 24587:1 24597:1 24601:3 24618:1 24636:1 24639:1 24643:2 24647:2 24650:3 24660:1 24677:1 24678:1 24681:1 24685:3 24687:1 24690:6 24692:4 24695:1 24698:1 24701:1 24706:2 24727:1 24742:2 24775:1 24788:2 24792:1 24805:4 24840:1 24841:1 24847:1 24854:2 24857:1 24858:1 24860:1 24874:1 24887:1 24904:1 24907:1 24916:3 24921:1 24925:2 24933:4 24936:1 24937:1 24943:1 24957:1 24959:1 24966:1 24969:1 24972:2 24974:1 24975:1 24983:1 24985:2 24990:3 25003:1 25008:1 25011:1 25015:1 25017:1 25021:2 25022:1 25027:1 25032:1 25034:1 25036:1 25041:1 25048:1 25064:1 25072:2 25077:2 25093:1 25097:3 25100:2 25114:1 25115:2 25126:1 25127:1 25133:1 25134:2 25139:2 25149:1 25156:4 25167:5 25170:1 25173:1 25177:1 25183:1 25184:3 25189:1 25190:1 25191:1 25197:1 25221:1 25224:9 25233:3 25238:1 25245:2 25298:1 25300:1 25306:5 25337:7 25343:1 25346:1 25356:2 25357:1 25364:3 25366:1 25367:6 25369:1 25371:1 25388:1 25401:1 25413:1 25415:1 25416:1 25423:1 25431:2 25434:2 25437:1 25454:1 25464:1 25467:1 25474:4 25494:5 25508:1 25510:1 25513:2 25515:1 25516:3 25526:2 25545:4 25548:1 25552:5 25557:1 25561:3 25562:1 25569:1 25582:3 25590:1 25595:2 25599:3 25600:1 25621:1 25623:1 25624:1 25635:4 25639:1 25646:1 25659:3 25662:2 25666:1 25669:5 25670:1 25672:1 25674:5 25678:3 25713:1 25714:1 25724:1 25726:1 25732:1 25798:1 25809:1 25810:1 25831:2 25834:1 25841:1 25850:1 25865:3 25878:1 25883:1 25884:1 25887:1 25897:1 25916:1 25920:1 25958:1 25962:1 25967:1 26002:3 26017:1 26019:4 26025:1 26031:1 26032:1 26035:1 26036:1 26046:1 26047:2 26056:4 26062:1 26073:1 26084:1 26088:1 26106:1 26110:2 26126:1 26133:1 26150:1 26158:1 26160:1 26188:2 26195:1 26201:1 26217:1 26218:1 26223:1 26239:1 26243:1 26253:1 26254:1 26255:1 26263:2 26269:2 26270:3 26278:2 26279:1 26286:4 26314:1 26320:1 26324:2 26328:1 26329:2 26331:1 26334:1 26354:2 26360:1 26364:1 26367:1 26369:1 26381:1 26390:1 26403:1 26405:1 26407:1 26411:1 26414:1 26423:2 26434:1 26435:1 26437:4 26442:2 26445:2 26459:1 26470:1 26481:1 26482:1 26488:1 26490:3 26502:7 26510:1 26530:1 26535:1 26549:1 26550:1 26557:2 26565:1 26577:1 26579:1 26581:2 26582:1 26584:4 26605:1 26606:1 26608:1 26617:1 26628:1 26646:2 26665:2 26675:1 26679:1 26681:1 26685:1 26686:1 26689:3 26705:1 26718:2 26726:1 26729:1 26762:1 26768:1 26780:1 26785:1 26793:1 26794:1 26839:1 26850:1 26867:1 26872:2 26873:1 26879:2 26890:1 26897:1 26898:1 26902:3 26932:1 26954:1 26960:1 26961:1 26964:1 26966:1 26967:1 26977:1 26979:2 26984:3 26991:1 26996:1 26998:1 27020:2 27049:1 27052:1 27063:1 27065:3 27075:2 27076:2 27100:5 27105:1 27115:2 27116:1 27126:1 27133:1 27134:1 27144:3 27151:1 27171:1 27182:1 27186:1 27196:2 27198:1 27201:1 27202:1 27211:1 27222:2 27223:2 27224:1 27226:1 27227:6 27231:1 27233:1 27245:3 27247:1 27259:1 27265:1 27276:1 27280:1 27295:1 27299:3 27300:1 27305:2 27317:1 27335:1 27336:3 27344:1 27351:1 27357:1 27358:1 27365:1 27376:1 27383:1 27390:1 27408:2 27412:1 27429:2 27436:2 27460:1 27466:1 27470:4 27471:3 27479:1 27481:2 27483:2 27484:2 27486:1 27487:4 27488:1 27489:3 27490:2 27495:1 27496:1 27498:4 27508:2 27511:2 27519:1 27522:1 27527:2 27530:3 27539:5 27547:2 27550:1 27557:1 27578:1 27580:2 27586:1 27603:2 27608:1 27612:3 27616:1 27622:1 27626:2 27654:1 27655:3 27661:1 27664:4 27669:1 27674:1 27679:2 27681:2 27683:2 27687:3 27689:3 27691:2 27692:1 27705:1 27711:1 27713:1 27749:1 27754:1 27766:1 27773:1 27776:1 27797:12 27798:1 27799:1 27815:1 27821:10 27835:1 27839:4 27842:2 27854:1 27855:1 27858:1 27862:1 27864:1 27871:2 27876:4 27890:3 27892:1 27912:2 27915:3 27953:1 27980:1 27986:2 27987:2 27994:1 28003:1 28024:1 28030:1 28046:2 28052:2 28064:1 28065:1 28069:1 28072:1 28074:1 28078:1 28082:1 28094:1 28101:1 28110:1 28113:2 28115:1 28133:3 28149:1 28164:1 28169:1 28173:1 28209:1 28224:1 28241:1 28270:1 28275:1 28293:1 28294:1 28303:1 28308:1 28319:2 28348:3 28349:10 28351:1 28369:1 28377:1 28382:10 28384:1 28393:1 28394:1 28397:1 28401:1 28402:1 28413:5 28420:1 28424:2 28425:1 28430:2 28437:1 28474:1 28501:1 28502:1 28508:1 28527:1 28533:2 28536:2 28558:1 28576:2 28592:2 28593:1 28614:3 28617:1 28631:1 28632:5 28635:4 28636:1 28643:1 28651:1 28658:1 28664:1 28670:2 28672:1 28673:1 28674:2 28685:1 28694:2 28722:1 28730:1 28731:3 28736:1 28737:1 28746:1 28759:4 28773:1 28776:1 28787:1 28803:3 28809:1 28833:2 28847:1 28884:1 28885:1 28892:1 28921:1 28926:1 28937:1 28944:1 28948:6 28954:1 28966:1 28969:2 28976:1 28983:2 28995:1 29005:4 29007:3 29012:2 29021:1 29032:1 29042:1 29114:1 29136:1 29137:2 29149:2 29152:2 29154:1 29203:1 29211:1 29219:1 29225:1 29226:2 29233:1 29241:1 29263:2 29266:1 29277:1 29279:3 29283:1 29287:1 29290:1 29298:2 29305:1 29313:1 29329:1 29330:1 29336:1 29339:1 29342:1 29344:1 29345:1 29346:1 29348:1 29349:1 29351:2 29356:1 29359:4 29361:1 29378:1 29383:1 29394:1 29419:1 29421:7 29433:1 29448:1 29450:2 29474:1 29483:1 29485:1 29496:1 29508:1 29510:1 29515:9 29521:2 29529:3 29535:1 29547:1 29559:1 29562:1 29567:2 29570:3 29578:1 29583:3 29594:1 29605:4 29612:1 29623:1 29625:1 29632:1 29643:3 29649:1 29654:1 29658:1 29671:1 29676:4 29697:1 29701:1 29702:1 29704:6 29711:1 29721:2 29724:1 29728:1 29729:1 29730:1 29735:1 29745:1 29775:1 29783:1 29800:2 29801:1 29820:2 29822:2 29824:1 29825:2 29826:1 29831:2 29839:1 29841:1 29845:1 29847:1 29899:1 29904:1 29916:2 29927:2 29931:2 29958:4 29969:1 29971:4 29972:3 29973:1 29974:4 29977:1 29995:1 29999:1 30002:2 30004:1 30015:1 30035:1 30040:1 30044:1 30052:1 30059:1 30096:2 30100:2 30105:1 30142:1 30149:2 30156:2 30168:2 30169:1 30175:1 30180:1 30181:1 30191:1 30199:1 30204:1 30210:1 30213:2 30231:6 30249:1 30252:1 30267:1 30285:1 30297:2 30305:1 30306:1 30315:1 30327:2 30330:1 30331:3 30342:1 30357:1 30360:1 30370:1 30380:6 30390:1 30393:2 30420:1 30431:1 30435:1 30445:2 30454:1 30466:2 30471:1 30475:4 30501:4 30504:3 30507:2 30510:2 30532:1 30548:2 30552:2 30564:1 30572:2 30587:10 30589:3 30602:1 30606:1 30628:1 30638:1 30653:1 30660:3 30663:1 30664:7 30683:1 30685:1 30688:1 30689:2 30697:1 30704:8 30710:1 30718:2 30730:1 30738:1 30775:1 30776:1 30789:2 30798:6 30802:5 30805:3 30809:2 30814:3 30822:1 30834:1 30835:1 30843:4 30846:1 30854:2 30863:1 30864:1 30867:1 30868:2 30869:1 30875:2 30880:2 30883:1 30884:2 30892:3 30895:2 30908:2 30910:1 30946:2 30956:2 30960:1 30967:2 30968:1 30971:2 30976:1 30977:2 30988:1 30994:2 30996:2 30999:1 31009:1 31019:1 31020:1 31031:1 31042:1 31046:3 31057:2 31062:1 31065:1 31074:1 31082:1 31095:1 31101:1 31104:2 31107:1 31113:1 31125:2 31127:1 31130:1 31135:1 31142:2 31144:1 31158:3 31161:1 31172:2 31184:2 31191:1 31195:2 31197:3 31206:1 31209:1 31216:8 31221:1 31227:1 31235:1 31287:1 31306:1 31315:2 31322:2 31324:1 31360:2 31363:2 31370:2 31375:1 31386:1 31388:2 31391:1 31392:4 31398:1 31404:1 31422:2 31440:3 31448:1 31452:3 31459:1 31461:4 31463:1 31476:3 31478:1 31480:2 31484:2 31485:3 31491:1 31494:1 31505:1 31521:1 31531:5 31538:1 31543:1 31545:1 31547:1 31553:1 31554:1 31566:2 31576:3 31581:1 31583:1 31584:1 31590:1 31622:1 31625:1 31635:2 31640:1 31647:1 31649:1 31658:2 31665:26 31667:4 31670:2 31674:2 31679:2 31680:4 31684:3 31686:2 31688:2 31704:13 31721:3 31722:1 31727:1 31730:1 31750:1 31761:3 31763:1 31783:1 31790:1 31806:1 31811:1 31818:1 31821:1 31827:2 31834:7 31842:3 31846:1 31853:1 31877:8 31878:1 31894:2 31897:2 31910:1 31911:1 31916:1 31921:1 31932:1 31938:2 31952:1 31954:1 31960:1 31962:1 31964:1 31974:1 31976:1 31998:2 32009:1 32027:1 32035:3 32041:1 32042:1 32047:1 32053:1 32060:1 32061:2 32068:1 32070:1 32083:3 32085:1 32094:1 32097:1 32102:1 32103:1 32105:2 32117:1 32125:1 32128:1 32140:2 32142:1 32153:1 32171:2 32172:3 32181:1 32201:1 32207:1 32212:1 32229:1 32241:6 32244:9 32277:2 32280:3 32288:1 32289:1 32299:1 32303:1 32304:1 32310:1 32311:2 32312:1 32319:1 32335:3 32348:1 32369:1 32403:1 32407:1 32420:1 32433:1 32439:2 32443:7 32447:1 32451:1 32456:1 32471:4 32472:1 32476:1 32486:1 32487:2 32491:4 32499:1 32548:1 32551:1 32552:2 32579:1 32619:1 32625:1 32628:1 32632:1 32650:1 32651:1 32656:2 32660:1 32661:1 32675:2 32688:1 32693:5 32697:1 32713:6 32719:1 32722:1 32724:2 32750:3 32768:2 32791:1 32795:1 32803:1 32808:2 32814:2 32818:1 32824:1 32834:1 32843:1 32846:2 32871:1 32885:2 32899:1 32900:2 32910:2 32934:1 32935:1 32941:3 32944:4 32956:2 32963:2 32974:1 33001:3 33019:1 33020:1 33025:1 33038:1 33041:8 33055:1 33056:3 33057:2 33059:1 33075:1 33083:1 33084:1 33101:1 33105:3 33108:1 33115:1 33118:1 33133:1 33138:1 33141:3 33143:2 33146:1 33148:2 33149:2 33155:10 33156:1 33164:2 33167:5 33168:1 33171:5 33182:1 33198:2 33204:1 33211:1 33220:3 33224:1 33225:2 33226:1 33232:1 33234:2 33267:1 33271:3
11 1:1 2:1 6:1 27:1 31:1 34:1 39:2 49:2 53:1 55:1 60:2 64:1 65:1 67:1 84:1 85:1 86:1 87:1 93:1 95:1 99:2 106:1 116:1 126:1 148:1 150:3 153:1 159:1 166:2 170:1 181:2 183:1 187:2 210:1 215:1 232:2 235:1 238:6 241:1 256:1 265:1 268:1 282:1 283:2 294:3 296:2 299:1 313:1 322:1 336:1 344:1 347:1 357:1 362:2 378:1 401:1 402:1 403:6 411:2 415:2 427:2 446:1 453:1 455:2 460:1 498:1 507:9 513:1 523:1 546:2 573:1 582:2 586:3 621:1 627:1 646:2 654:1 671:1 698:1 712:1 717:4 721:1 731:7 745:1 753:2 759:3 764:4 765:1 766:1 774:1 789:1 790:2 795:1 807:1 808:1 815:2 829:1 856:1 866:2 899:1 937:1 951:3 955:2 956:1 971:2 974:1 979:1 984:1 1000:1 1003:2 1022:3 1039:1 1049:2 1053:1 1057:1 1067:2 1069:1 1070:1 1071:7 1073:1 1080:1 1082:1 1083:1 1094:1 1103:2 1106:2 1117:1 1118:1 1125:1 1127:1 1130:7 1132:1 1134:1 1141:2 1142:1 1144:1 1147:1 1158:2 1161:1 1165:1 1168:3 1171:3 1199:1 1204:4 1211:1 1216:3 1218:1 1220:1 1236:3 1239:1 1244:1 1257:1 1262:1 1265:1 1284:1 1287:1 1309:1 1311:2 1316:1 1318:1 1321:1 1322:1 1340:1 1351:2 1376:1 1378:1 1388:1 1392:1 1393:1 1403:1 1405:2 1409:1 1413:1 1415:1 1420:1 1421:1 1432:1 1437:1 1443:1 1445:1 1452:1 1454:1 1456:1 1458:1 1463:3 1465:1 1467:1 1480:2 1481:1 1487:2 1494:1 1496:2 1504:2 1509:1 1514:2 1532:1 1538:3 1539:1 1545:1 1547:1 1573:1 1583:1 1588:2 1624:1 1626:2 1630:1 1635:1 1645:1 1650:1 1658:1 1664:4 1683:2 1686:1 1690:2 1691:1 1719:1 1726:7 1730:12 1739:11 1745:1 1747:1 1749:2 1751:2 1759:1 1761:1 1771:2 1793:1 1799:1 1807:1 1808:1 1813:1 1837:4 1839:4 1841:1 1844:1 1869:2 1878:2 1883:8 1884:1 1892:1 1899:1 1906:2 1917:7 1941:2 1943:1 1948:1 1955:1 1956:1 1957:1 1960:1 1963:2 1966:1 1973:1 1977:2 1980:1 1991:1 1999:1 2003:1 2019:2 2027:1 2037:1 2041:1 2061:1 2062:1 2073:2 2078:1 2080:2 2086:1 2098:1 2113:1 2118:1 2119:1 2133:3 2135:1 2136:1 2137:3 2138:2 2139:1 2141:1 2157:1 2158:1 2169:1 2177:3 2180:2 2187:1 2195:6 2198:1 2209:2 2214:1 2223:1 2225:2 2234:1 2237:1 2241:2 2246:1 2249:2 2255:2 2263:2 2265:1 2269:1 2279:1 2284:2 2301:3 2304:1 2317:3 2322:1 2329:1 2345:1 2348:1 2355:1 2367:1 2372:1 2373:7 2381:1 2397:1 2399:2 2406:1 2412:1 2419:1 2421:1 2422:1 2429:1 2437:1 2441:2 2444:1 2465:2 2482:7 2496:1 2502:3 2508:1 2509:1 2519:1 2521:2 2525:2 2529:1 2530:1 2537:1 2547:1 2551:3 2552:1 2553:1 2555:6 2558:7 2559:2 2562:1 2563:3 2564:1 2568:2 2570:1 2573:4 2576:2 2578:3 2579:4 2583:1 2585:1 2587:1 2613:1 2616:2 2618:4 2620:3 2623:3 2624:7 2625:2 2626:1 2630:4 2631:4 2632:2 2634:3 2635:2 2637:1 2640:2 2642:6 2647:7 2648:2 2652:1 2655:1 2657:3 2662:2 2663:1 2681:1 2713:1 2720:1 2732:1 2738:1 2739:1 2742:1 2753:2 2769:2 2774:1 2784:1 2788:1 2795:2 2796:1 2801:3 2821:1 2831:3 2832:1 2864:1 2867:2 2868:1 2878:2 2888:1 2890:2 2896:1 2905:2 2918:2 2923:1 2934:1 2951:3 2953:1 2955:1 2962:1 2964:1 2979:1 2985:1 2992:1 2993:1 3008:2 3017:2 3030:1 3033:1 3039:1 3042:1 3049:1 3051:1 3059:1 3062:1 3069:2 3071:1 3075:1 3080:4 3097:1 3098:1 3106:8 3116:2 3121:2 3124:1 3134:2 3142:1 3145:1 3157:1 3165:3 3171:1 3173:2 3181:1 3182:2 3193:1 3195:1 3197:2 3201:4 3213:2 3223:1 3257:4 3263:3 3283:1 3284:7 3291:1 3294:1 3295:12 3301:1 3302:2 3314:2 3318:2 3336:4 3350:2 3351:1 3352:1 3353:13 3360:1 3364:2 3369:1 3377:1 3379:1 3380:1 3386:1 3397:1 3408:1 3411:2 3418:2 3433:2 3464:1 3471:1 3474:1 3475:1 3482:1 3484:1 3504:1 3517:1 3529:1 3539:1 3547:1 3549:1 3550:4 3572:1 3578:2 3588:1 3598:1 3600:1 3625:1 3645:1 3646:1 3683:1 3690:5 3702:3 3705:1 3707:1 3721:4 3726:1 3744:1 3755:1 3758:9 3762:1 3765:1 3769:1 3772:1 3790:1 3799:1 3816:1 3821:1 3822:3 3853:1 3856:1 3857:2 3868:1 3875:2 3882:1 3917:2 3926:1 3930:4 3936:2 3939:1 3942:2 3945:1 3948:1 3951:1 3968:2 3971:2 3974:2 3978:1 3990:1 3992:2 4005:1 4011:1 4012:1 4018:1 4020:2 4033:1 4035:2 4040:1 4047:3 4060:2 4071:2 4074:1 4103:1 4105:1 4112:1 4115:2 4122:1 4131:1 4134:1 4153:1 4160:5 4174:5 4178:1 4188:1 4193:3 4195:1 4207:1 4225:2 4245:2 4247:2 4252:4 4253:16 4263:1 4267:1 4271:1 4279:3 4288:4 4289:4 4291:2 4292:1 4300:2 4303:1 4306:7 4308:2 4330:1 4331:1 4332:6 4334:1 4346:1 4351:3 4356:1 4361:1 4378:3 4382:1 4391:2 4405:1 4434:1 4437:1 4452:1 4454:2 4456:2 4465:1 4470:1 4477:1 4483:1 4484:1 4487:1 4488:1 4510:4 4511:1 4512:1 4529:2 4531:3 4533:1 4536:4 4540:2 4545:3 4547:3 4548:1 4573:1 4574:2 4575:1 4581:2 4585:1 4593:1 4605:1 4609:1 4628:2 4635:1 4637:1 4663:1 4667:3 4684:1 4686:2 4704:1 4713:1 4714:1 4722:1 4727:1 4728:1 4730:1 4741:1 4758:1 4763:5 4767:8 4773:1 4785:1 4792:1 4793:4 4819:1 4824:2 4842:2 4848:2 4863:1 4871:1 4872:5 4877:2 4888:3 4889:2 4906:1 4907:1 4924:1 4929:1 4933:1 4936:2 4951:1 4959:1 4974:1 4979:1 4980:1 4989:1 4991:1 5000:1 5020:1 5022:2 5025:1 5030:2 5033:4 5040:1 5042:1 5044:1 5045:2 5052:1 5054:1 5066:1 5072:1 5082:1 5098:1 5106:1 5132:1 5136:2 5143:5 5160:1 5162:1 5163:1 5168:1 5171:1 5198:1 5212:1 5236:1 5239:1 5246:4 5269:1 5276:1 5287:4 5290:4 5299:1 5304:1 5312:1 5337:3 5340:6 5365:3 5369:3 5396:1 5397:2 5434:1 5456:1 5462:1 5471:1 5490:2 5491:1 5516:1 5517:1 5528:1 5530:1 5536:1 5562:39 5564:3 5596:2 5610:1 5641:1 5642:1 5671:1 5684:1 5688:1 5689:1 5690:3 5706:1 5717:4 5718:7 5719:4 5720:4 5722:1 5725:4 5730:2 5731:3 5733:4 5734:1 5735:2 5740:2 5744:1 5748:1 5750:6 5752:4 5759:3 5763:1 5766:1 5770:1 5781:1 5788:1 5794:1 5797:1 5811:1 5814:2 5825:2 5832:1 5844:2 5853:2 5855:1 5868:2 5873:1 5883:1 5895:1 5898:1 5907:2 5965:3 5975:1 6027:2 6033:1 6038:1 6043:1 6084:3 6088:2 6089:1 6108:1 6115:1 6124:1 6144:3 6150:3 6165:2 6169:2 6181:1 6186:3 6224:1 6233:1 6237:1 6261:1 6279:2 6283:3 6284:1 6292:1 6299:1 6300:1 6305:6 6318:1 6319:3 6322:1 6327:1 6328:1 6330:1 6335:4 6345:3 6355:1 6372:2 6374:2 6382:2 6385:1 6388:1 6391:2 6395:1 6397:2 6400:1 6403:1 6407:2 6412:1 6418:2 6428:1 6431:1 6435:2 6453:1 6454:1 6459:9 6469:1 6480:5 6496:1 6506:1 6508:2 6509:3 6518:1 6520:1 6529:1 6531:1 6533:1 6536:1 6537:1 6540:1 6547:2 6548:1 6553:1 6558:6 6561:1 6570:1 6581:4 6584:1 6598:1 6610:1 6624:1 6639:1 6643:2 6688:6 6692:5 6699:1 6706:1 6707:1 6722:1 6750:1 6761:1 6762:1 6773:1 6776:1 6793:1 6795:1 6806:1 6816:1 6819:3 6821:2 6827:1 6840:1 6843:1 6845:2 6847:8 6863:3 6874:1 6884:1 6885:1 6887:1 6888:2 6890:2 6897:4 6923:1 6935:1 6939:1 6944:1 6954:1 6961:8 6980:2 6983:1 6994:2 7003:2 7008:1 7012:2 7023:1 7025:1 7038:1 7044:1 7050:1 7059:1 7062:2 7066:1 7081:1 7087:3 7088:3 7089:3 7090:1 7091:1 7097:2 7101:1 7103:1 7114:2 7132:2 7150:1 7173:1 7190:3 7192:1 7193:1 7194:1 7196:2 7197:4 7200:4 7201:1 7204:3 7207:4 7209:3 7210:1 7211:3 7212:1 7217:1 7218:11 7220:1 7221:1 7222:3 7224:2 7258:1 7272:1 7279:1 7303:1 7306:1 7307:2 7365:3 7377:1 7378:1 7380:1 7381:1 7389:1 7406:2 7410:1 7429:3 7435:2 7439:1 7463:1 7469:1 7497:1 7511:1 7512:1 7535:2 7539:3 7543:1 7552:1 7557:1 7559:1 7570:2 7574:1 7589:2 7599:2 7602:2 7613:1 7619:1 7628:1 7637:2 7648:3 7649:1 7659:1 7662:1 7671:5 7672:1 7676:3 7677:1 7691:1 7705:6 7707:1 7714:1 7724:1 7741:1 7745:2 7748:1 7750:3 7766:1 7769:1 7776:1 7782:1 7791:1 7792:1 7794:1 7809:1 7815:1 7822:1 7825:1 7833:1 7839:2 7840:1 7855:1 7867:1 7879:3 7884:1 7905:1 7912:2 7913:2 7927:1 7941:2 7949:1 7954:1 7956:1 7961:1 7984:1 7988:2 7993:1 8007:2 8014:1 8016:1 8025:2 8027:2 8043:1 8045:1 8054:1 8064:1 8075:12 8089:2 8090:1 8105:2 8127:1 8129:1 8139:1 8143:5 8150:1 8155:2 8167:1 8168:1 8189:1 8196:1 8209:1 8216:1 8219:1 8230:1 8237:1 8247:1 8248:1 8258:2 8273:1 8277:4 8283:1 8299:1 8302:1 8309:1 8328:3 8338:1 8340:1 8347:1 8383:2 8387:1 8389:4 8402:1 8406:1 8413:1 8417:4 8426:1 8432:4 8439:2 8446:1 8454:1 8470:1 8474:1 8478:3 8491:1 8494:1 8498:1 8499:1 8504:1 8522:1 8531:2 8560:1 8562:1 8567:1 8568:1 8570:1 8573:1 8575:1 8582:2 8585:1 8593:1 8599:1 8609:4 8611:1 8615:1 8617:1 8619:1 8624:5 8630:3 8631:8 8633:5 8653:1 8654:3 8659:2 8663:1 8684:1 8688:2 8689:1 8692:1 8702:57 8716:1 8717:1 8725:1 8726:11 8728:9 8734:2 8748:1 8767:1 8783:1 8793:1 8796:2 8797:1 8810:1 8815:3 8816:2 8817:1 8818:1 8826:1 8848:1 8860:1 8864:2 8874:2 8880:1 8886:1 8887:1 8889:1 8890:1 8891:1 8901:1 8906:1 8909:2 8923:1 8924:1 8930:1 8932:2 8935:9 8957:1 8960:1 8974:1 8982:6 8987:1 8992:1 9025:1 9030:1 9048:2 9059:1 9094:2 9127:1 9129:1 9135:1 9143:2 9157:7 9168:3 9179:1 9183:2 9186:2 9203:3 9209:1 9221:2 9222:1 9231:1 9232:21 9241:1 9242:1 9264:1 9267:1 9276:1 9279:1 9289:1 9295:1 9298:1 9299:1 9311:1 9324:1 9332:1 9333:1 9335:1 9339:1 9340:1 9381:1 9394:5 9425:1 9430:1 9435:2 9441:1 9466:1 9467:1 9470:1 9473:1 9484:2 9493:2 9495:1 9507:3 9508:1 9529:1 9540:2 9541:1 9542:1 9544:3 9561:1 9563:1 9596:1 9623:2 9630:1 9632:2 9633:1 9634:4 9637:1 9638:1 9640:1 9642:2 9644:2 9646:2 9648:4 9649:2 9654:4 9661:1 9665:1 9669:1 9675:1 9680:1 9688:1 9690:1 9697:3 9698:1 9705:1 9706:1 9742:1 9743:1 9744:1 9746:1 9770:2 9781:1 9788:1 9806:1 9807:1 9810:2 9815:1 9823:1 9826:1 9833:2 9836:1 9842:4 9847:1 9857:1 9882:1 9901:3 9907:1 9923:1 9931:1 9937:2 9942:1 9945:2 9952:1 9965:2 9974:1 9976:3 9979:1 9982:1 9988:1 9994:1 9999:1 10006:1 10008:2 10015:1 10022:1 10027:3 10035:1 10054:1 10070:1 10087:1 10092:1 10095:2 10107:1 10117:1 10121:1 10124:1 10126:1 10138:1 10142:1 10150:3 10152:3 10159:1 10161:2 10171:1 10197:1 10208:1 10209:2 10210:2 10232:1 10265:1 10275:1 10282:1 10291:1 10294:1 10307:3 10331:1 10332:1 10334:2 10337:1 10338:1 10340:1 10345:8 10349:1 10362:2 10367:1 10371:1 10373:1 10374:2 10376:1 10385:1 10388:2 10389:1 10407:1 10417:1 10422:1 10430:2 10434:5 10435:1 10436:2 10440:1 10445:1 10450:1 10454:1 10456:1 10459:1 10465:1 10479:1 10497:2 10502:1 10517:2 10518:1 10522:2 10524:1 10533:2 10540:1 10549:1 10550:1 10554:1 10570:1 10575:1 10583:1 10584:2 10586:1 10591:1 10596:1 10598:1 10602:1 10619:1 10621:1 10623:1 10627:1 10637:1 10643:2 10648:1 10666:5 10681:1 10684:1 10695:1 10708:1 10709:5 10732:1 10747:1 10752:2 10764:1 10765:1 10773:1 10792:1 10800:1 10804:1 10806:3 10807:2 10822:1 10828:2 10831:1 10845:1 10846:2 10847:2 10858:1 10867:3 10876:1 10877:1 10886:1 10892:2 10893:1 10913:2 10947:1 10948:13 10955:1 10969:3 10970:1 10972:1 10973:4 10996:1 10997:2 10999:1 11008:1 11011:1 11020:2 11029:1 11030:1 11052:1 11063:2 11067:1 11079:1 11094:2 11119:3 11133:4 11141:1 11153:1 11163:3 11167:1 11170:2 11171:1 11172:1 11175:2 11178:2 11188:3 11200:1 11201:1 11208:1 11210:4 11214:4 11215:1 11218:1 11222:1 11225:1 11226:1 11230:1 11231:2 11232:3 11234:2 11235:1 11239:2 11242:2 11265:1 11266:2 11272:1 11276:5 11287:1 11288:2 11291:1 11293:1 11302:1 11305:1 11308:1 11309:1 11312:1 11323:2 11324:1 11331:1 11339:1 11342:1 11356:1 11362:1 11365:1 11376:8 11383:2 11415:1 11421:1 11431:1 11433:1 11438:1 11445:2 11448:2 11450:1 11451:1 11456:1 11464:1 11473:1 11488:1 11492:1 11499:1 11517:2 11519:1 11526:1 11550:2 11559:1 11573:1 11575:1 11584:1 11588:1 11594:1 11601:1 11603:1 11607:5 11611:3 11637:2 11638:1 11650:1 11656:1 11660:1 11674:1 11677:3 11690:1 11692:1 11695:1 11697:1 11701:3 11717:1 11730:2 11741:1 11744:1 11778:1 11784:7 11795:1 11796:1 11811:1 11820:1 11822:10 11830:1 11841:1 11842:1 11846:1 11847:1 11854:1 11855:1 11858:1 11860:1 11879:1 11892:1 11895:1 11899:1 11906:3 11912:1 11914:3 11915:1 11930:1 11931:2 11933:1 11949:2 11955:1 11966:1 11992:2 12002:1 12005:1 12015:5 12023:1 12026:2 12028:1 12031:1 12039:4 12042:1 12047:1 12050:3 12052:1 12081:1 12099:1 12109:2 12112:1 12145:1 12149:1 12154:2 12155:1 12162:1 12169:4 12187:1 12197:1 12213:1 12214:1 12220:1 12255:2 12266:1 12274:1 12275:1 12284:1 12307:2 12310:2 12319:1 12325:1 12327:4 12329:9 12333:1 12335:1 12336:4 12337:1 12339:1 12350:2 12352:3 12354:1 12356:1 12361:1 12369:1 12377:1 12378:2 12379:1 12389:1 12406:1 12427:1 12434:2 12438:1 12448:1 12461:1 12472:1 12475:1 12476:1 12477:2 12483:1 12487:1 12501:1 12526:1 12537:1 12544:1 12545:1 12551:1 12552:1 12559:1 12580:1 12593:1 12596:1 12604:2 12607:1 12618:4 12630:2 12640:1 12647:1 12649:1 12672:1 12682:1 12733:1 12741:1 12743:1 12762:1 12764:1 12766:1 12770:1 12775:1 12776:1 12783:1 12789:1 12794:1 12805:1 12811:3 12814:3 12819:3 12821:1 12836:1 12845:1 12862:3 12865:14 12867:1 12876:1 12877:1 12893:1 12896:1 12902:1 12910:2 12915:1 12918:1 12923:1 12928:3 12929:1 12933:1 12935:4 12936:2 12952:1 12954:1 12970:1 12977:3 12988:3 12994:1 13000:1 13001:1 13005:1 13007:1 13009:1 13012:1 13015:1 13018:3 13027:1 13032:1 13050:3 13061:2 13064:1 13066:1 13073:1 13081:1 13085:3 13088:8 13089:2 13094:2 13111:1 13116:1 13128:8 13135:1 13137:1 13138:2 13142:4 13143:1 13144:1 13146:1 13148:1 13149:1 13150:2 13151:8 13152:1 13153:1 13156:1 13162:9 13168:1 13169:1 13192:1 13196:2 13202:1 13203:1 13206:1 13220:2 13228:1 13231:1 13239:2 13244:1 13254:2 13264:2 13285:1 13286:1 13287:1 13294:2 13296:1 13302:1 13308:1 13320:7 13338:1 13365:1 13391:1 13408:1 13410:4 13415:1 13423:2 13427:1 13429:2 13434:1 13443:1 13448:2 13456:1 13461:1 13463:2 13473:5 13476:1 13480:2 13486:1 13510:1 13515:2 13517:4 13527:2 13552:2 13553:2 13556:1 13590:1 13592:1 13600:1 13606:2 13608:1 13611:1 13616:2 13621:1 13649:1 13653:2 13654:3 13662:1 13674:1 13682:1 13684:3 13685:4 13690:1 13700:2 13718:3 13738:1 13742:3 13745:1 13750:3 13759:1 13778:2 13805:1 13815:1 13821:3 13826:2 13830:1 13848:1 13863:2 13873:6 13874:1 13895:2 13896:3 13899:1 13921:1 13930:1 13933:1 13935:1 13939:1 13940:1 13973:1 13976:2 14004:3 14007:2 14011:1 14018:1 14021:1 14030:1 14037:1 14039:1 14055:1 14059:1 14061:2 14069:1 14081:2 14101:1 14102:2 14119:1 14125:2 14146:1 14149:1 14162:4 14180:1 14183:2 14207:1 14210:1 14214:2 14242:1 14252:1 14256:2 14267:1 14281:1 14318:2 14319:1 14341:1 14345:10 14353:1 14356:2 14361:1 14370:5 14376:3 14380:1 14384:1 14402:1 14408:1 14409:1 14410:2 14416:1 14421:1 14436:2 14441:2 14443:3 14449:1 14468:1 14470:1 14471:1 14472:1 14473:5 14480:2 14483:3 14489:2 14497:1 14518:2 14520:1 14541:1 14545:1 14572:1 14577:1 14581:1 14583:1 14589:3 14592:1 14605:1 14614:1 14620:1 14633:1 14640:1 14651:1 14652:1 14658:2 14686:1 14688:2 14697:1 14706:1 14753:1 14781:1 14791:1 14793:5 14804:1 14806:1 14810:1 14831:1 14841:1 14854:3 14858:1 14859:1 14867:2 14870:2 14873:1 14877:7 14881:6 14883:1 14891:1 14895:1 14896:1 14904:5 14907:9 14915:1 14921:3 14935:2 14940:1 14942:2 14945:1 14949:3 14957:1 14958:2 14959:1 14960:1 14975:2 14979:1 14980:1 14999:1 15005:1 15016:1 15019:2 15028:1 15033:2 15039:10 15040:1 15047:4 15054:1 15059:1 15066:2 15075:1 15079:2 15082:1 15087:1 15122:1 15125:5 15131:1 15136:1 15160:2 15161:2 15172:1 15187:1 15191:1 15212:1 15215:1 15216:1 15217:6 15236:1 15246:1 15251:1 15255:1 15259:1 15265:1 15275:1 15278:2 15281:2 15293:1 15311:1 15322:1 15325:3 15333:2 15336:1 15342:1 15344:1 15361:1 15367:3 15374:3 15381:2 15386:1 15410:1 15429:1 15438:1 15443:1 15476:1 15477:4 15480:1 15483:5 15487:1 15488:2 15489:2 15496:1 15508:2 15513:1 15519:2 15520:1 15523:1 15542:1 15543:1 15551:1 15555:1 15574:4 15586:1 15601:1 15616:8 15622:1 15625:2 15645:1 15662:1 15664:1 15666:2 15680:2 15704:1 15725:1 15726:1 15728:5 15734:5 15740:2 15749:2 15780:2 15811:2 15820:6 15840:2 15855:1 15861:1 15864:1 15900:2 15905:1 15923:1 15929:2 15934:1 15936:1 15938:1 15945:1 15955:1 15959:1 15960:2 15962:1 15974:4 15986:1 15990:1 15993:1 15996:2 15997:1 16000:3 16002:1 16021:1 16026:1 16030:1 16033:1 16040:3 16042:1 16043:1 16046:1 16059:1 16063:1 16067:1 16071:1 16073:1 16092:1 16098:4 16114:1 16119:2 16136:1 16144:1 16145:1 16150:2 16152:1 16178:3 16183:1 16187:1 16189:1 16197:2 16198:1 16208:1 16214:1 16226:1 16227:4 16229:1 16235:1 16236:1 16237:1 16254:1 16266:1 16270:1 16273:1 16284:1 16289:1 16321:1 16330:6 16347:1 16350:2 16351:1 16355:1 16362:1 16390:2 16393:2 16407:1 16411:1 16422:1 16427:2 16428:1 16433:2 16448:1 16450:1 16451:1 16457:2 16463:3 16484:4 16488:1 16508:3 16523:1 16534:1 16538:1 16556:2 16559:2 16566:5 16598:1 16606:2 16608:1 16627:1 16630:1 16634:1 16642:1 16650:2 16655:1 16674:2 16678:1 16684:5 16687:1 16688:1 16693:1 16694:1 16721:2 16723:1 16739:1 16741:1 16753:1 16762:1 16782:8 16783:2 16787:1 16789:1 16793:1 16797:1 16831:1 16832:4 16835:1 16840:1 16842:1 16846:3 16848:1 16860:1 16884:3 16904:1 16922:1 16925:1 16936:4 16940:2 16942:1 16944:1 16948:1 16971:3 16973:3 16984:1 16988:3 16990:1 16999:1 17012:2 17023:1 17042:1 17045:4 17046:1 17048:1 17053:2 17056:2 17061:1 17063:1 17079:1 17098:2 17103:1 17105:1 17127:1 17140:1 17155:1 17176:1 17187:1 17194:3 17203:1 17214:1 17219:1 17224:3 17226:1 17246:1 17251:3 17269:1 17289:2 17293:1 17297:1 17314:1 17317:2 17318:1 17324:2 17334:1 17370:1 17379:1 17389:1 17406:1 17420:1 17423:19 17433:2 17437:1 17448:1 17457:1 17479:2 17489:2 17499:1 17503:3 17514:1 17516:1 17528:3 17531:1 17539:1 17543:2 17553:1 17567:1 17571:1 17576:1 17581:1 17586:2 17596:1 17598:1 17610:1 17648:1 17661:3 17673:1 17681:1 17689:14 17694:1 17695:1 17698:1 17699:3 17700:4 17709:1 17710:3 17714:1 17715:1 17718:1 17722:1 17729:5 17731:2 17740:1 17748:1 17752:1 17756:1 17758:1 17767:1 17771:1 17775:2 17776:1 17783:1 17784:2 17805:5 17824:1 17829:1 17830:2 17857:3 17860:2 17866:1 17871:1 17876:1 17878:1 17880:1 17884:1 17888:5 17904:1 17930:1 17951:1 17953:4 17955:3 17959:1 17989:1 18008:1 18009:1 18010:1 18016:1 18049:4 18053:5 18074:4 18079:1 18104:1 18108:2 18111:1 18114:1 18141:1 18148:1 18157:4 18160:1 18180:1 18187:1 18195:13 18199:1 18214:4 18220:1 18222:1 18226:1 18227:1 18234:3 18236:1 18243:2 18247:1 18258:1 18260:1 18273:1 18281:2 18286:1 18289:2 18301:1 18302:1 18306:1 18308:2 18313:1 18315:1 18319:4 18321:2 18322:1 18323:1 18327:1 18329:1 18330:1 18332:3 18340:2 18341:2 18342:5 18344:1 18351:1 18352:3 18361:1 18372:1 18375:1 18401:1 18416:1 18417:2 18426:1 18485:1 18492:3 18527:3 18537:1 18546:1 18561:1 18584:1 18603:1 18619:1 18621:1 18635:2 18672:1 18683:1 18684:1 18693:1 18697:1 18699:1 18702:1 18708:1 18716:2 18717:1 18727:1 18732:1 18733:1 18737:1 18738:1 18739:4 18743:1 18764:1 18777:2 18785:1 18794:1 18799:3 18807:1 18808:2 18821:1 18842:3 18879:1 18896:2 18900:1 18908:1 18911:3 18919:5 18928:1 18949:1 18966:1 18967:1 18978:1 18987:1 19000:1 19005:1 19024:1 19029:3 19030:1 19035:2 19039:1 19043:1 19049:1 19050:1 19059:7 19062:5 19069:2 19081:1 19089:3 19103:2 19108:1 19117:1 19126:1 19135:1 19139:5 19155:1 19165:3 19169:2 19177:1 19182:1 19200:4 19207:2 19208:1 19209:1 19212:1 19213:1 19216:3 19233:2 19246:1 19248:2 19250:1 19261:2 19262:1 19276:1 19295:1 19296:1 19320:10 19329:1 19333:2 19345:1 19348:1 19349:1 19351:1 19352:1 19354:1 19357:3 19362:1 19372:1 19384:1 19398:2 19404:1 19405:1 19417:1 19432:2 19443:1 19444:2 19448:2 19452:1 19465:2 19471:1 19475:1 19493:2 19495:1 19503:1 19508:2 19509:1 19526:1 19532:1 19536:2 19559:1 19566:1 19567:1 19583:1 19585:1 19622:1 19628:1 19634:1 19637:1 19638:1 19643:1 19655:1 19659:1 19663:2 19666:1 19677:3 19685:1 19691:1 19707:1 19716:1 19722:1 19758:1 19763:3 19772:5 19774:1 19776:1 19781:2 19783:3 19784:1 19794:1 19797:1 19809:1 19816:1 19819:1 19843:3 19849:2 19850:1 19867:1 19872:1 19897:1 19904:1 19910:2 19919:1 19936:1 19951:2 19962:1 19965:1 19966:1 20000:1 20007:2 20008:1 20020:2 20028:1 20031:1 20032:2 20045:1 20075:1 20077:1 20081:3 20085:1 20095:1 20104:1 20110:1 20112:2 20123:2 20124:9 20128:4 20136:2 20142:1 20143:1 20146:3 20163:1 20166:3 20174:1 20180:1 20181:1 20183:1 20200:1 20202:1 20219:1 20220:1 20225:3 20230:1 20231:1 20237:2 20239:1 20240:1 20241:1 20243:2 20268:1 20286:1 20287:1 20292:1 20294:1 20300:2 20307:1 20309:2 20341:1 20360:1 20373:1 20391:1 20394:2 20395:1 20400:1 20405:1 20406:1 20407:2 20410:1 20412:1 20416:1 20437:1 20441:1 20454:1 20458:1 20460:1 20477:1 20492:2 20499:1 20503:1 20508:1 20514:1 20516:1 20517:1 20518:1 20520:1 20524:2 20525:1 20540:1 20548:1 20561:1 20569:1 20635:4 20645:1 20673:2 20681:3 20682:1 20692:3 20697:2 20706:1 20709:1 20742:3 20760:1 20761:1 20773:1 20792:1 20803:8 20814:2 20815:4 20831:1 20851:1 20876:1 20893:2 20894:2 20895:1 20900:2 20906:1 20929:2 20936:1 20942:2 20949:2 20951:2 20970:1 20974:2 20983:3 20990:1 20996:2 21003:2 21004:2 21010:2 21016:2 21041:1 21047:4172 21054:1 21068:3 21070:3 21079:2 21080:1 21087:1 21096:1 21109:1 21164:3 21166:1 21173:2 21178:1 21205:1 21227:1 21234:1 21241:2 21260:1 21278:1 21279:4 21291:1 21292:4 21294:1 21295:2 21300:1 21308:1 21355:1 21362:1 21372:1 21374:1 21378:1 21382:1 21398:1 21401:3 21404:1 21408:1 21419:1 21421:1 21431:1 21444:1 21449:2 21464:1 21466:2 21476:1 21478:1 21487:1 21510:1 21512:1 21515:3 21518:2 21520:1 21532:1 21539:1 21548:1 21551:1 21566:1 21571:1 21585:1 21601:1 21602:1 21605:1 21609:1 21630:1 21644:1 21668:1 21689:3 21692:1 21709:2 21722:1 21729:1 21730:1 21735:4 21790:1 21797:2 21801:1 21802:1 21806:1 21808:1 21812:1 21813:1 21817:1 21821:2 21827:3 21833:2 21843:1 21845:1 21856:2 21861:2 21863:1 21874:1 21877:3 21880:1 21883:1 21895:2 21907:1 21913:1 21918:3 21921:7 21952:1 21953:8 21959:1 21960:1 21961:1 21966:2 21968:1 21976:1 21992:1 22001:2 22020:3 22025:3 22029:2 22032:3 22039:1 22041:1 22043:2 22045:2 22072:4 22082:1 22095:3 22100:1 22107:3 22119:1 22127:1 22132:1 22133:1 22138:1 22143:1 22157:1 22162:1 22173:3 22174:1 22178:3 22181:1 22186:1 22214:1 22227:1 22229:1 22235:1 22240:1 22245:3 22262:1 22267:2 22271:1 22281:2 22294:1 22301:5 22306:1 22311:1 22318:1 22325:1 22333:1 22344:1 22351:1 22364:1 22370:1 22375:1 22382:1 22404:5 22415:1 22423:5 22440:1 22459:1 22462:1 22479:2 22483:1 22493:1 22495:1 22503:2 22504:1 22508:2 22518:1 22526:3 22530:1 22540:1 22545:1 22548:3 22553:1 22562:1 22565:3 22569:1 22572:1 22573:2 22583:1 22586:1 22598:1 22603:1 22615:1 22617:1 22626:3 22638:1 22644:2 22655:1 22659:1 22669:1 22681:4 22688:3 22690:1 22698:1 22708:1 22713:1 22718:1 22737:3 22740:1 22750:1 22762:1 22766:2 22774:1 22776:1 22791:1 22793:1 22794:1 22803:1 22815:5 22819:1 22824:1 22829:1 22833:1 22834:1 22835:1 22837:1 22845:1 22851:1 22852:1 22870:7 22871:1 22877:2 22880:1 22886:1 22889:2 22942:1 22952:1 22954:1 22966:1 22971:1 22981:1 22984:2 22992:1 23002:1 23004:1 23005:2 23036:2 23046:1 23055:1 23059:3 23100:1 23108:4 23113:1 23114:1 23116:2 23129:1 23147:2 23156:2 23160:5 23163:1 23164:1 23169:4 23172:1 23175:1 23183:1 23229:1 23243:1 23256:2 23257:1 23277:1 23279:1 23281:1 23286:1 23288:1 23290:1 23330:2 23353:1 23356:1 23359:2 23363:1 23367:1 23373:1 23374:1 23381:1 23383:1 23390:1 23415:2 23416:1 23419:1 23432:1 23434:1 23444:4 23447:2 23449:2 23453:1 23456:1 23463:1 23471:1 23490:7 23504:2 23518:1 23521:2 23522:2 23523:1 23527:2 23529:2 23532:2 23544:5 23550:3 23556:1 23560:2 23561:1 23570:1 23572:1 23574:1 23580:3 23583:1 23585:1 23596:1 23599:1 23609:1 23612:1 23617:1 23622:2 23626:1 23644:2 23649:2 23656:1 23657:1 23658:1 23663:1 23669:2 23708:1 23723:2 23728:1 23729:1 23733:1 23736:1 23737:1 23745:9 23746:1 23751:2 23752:2 23754:1 23756:2 23765:1 23770:1 23773:1 23779:1 23782:1 23785:1 23790:1 23800:1 23802:2 23831:1 23837:1 23852:1 23853:2 23857:3 23858:1 23859:1 23861:1 23863:1 23891:1 23898:1 23899:1 23901:1 23912:2 23917:1 23919:3 23927:1 23931:1 23943:1 23949:1 23951:1 23953:2 23955:4 23970:1 23983:1 23985:1 23991:1 24009:1 24013:1 24024:6 24032:1 24039:1 24057:4 24058:1 24059:1 24074:1 24078:1 24082:2 24090:1 24093:1 24098:1 24099:1 24113:2 24114:1 24127:1 24133:1 24138:1 24143:1 24144:1 24151:2 24166:2 24168:1 24176:1 24194:1 24195:1 24197:1 24198:1 24201:1 24205:3 24206:2 24207:1 24208:1 24210:1 24214:1 24216:1 24217:1 24218:1 24222:2 24225:1 24226:3 24229:1 24241:1 24242:1 24243:1 24250:1 24255:2 24262:2 24263:4 24270:1 24274:1 24276:2 24279:1 24289:1 24298:1 24308:1 24314:2 24319:2 24321:1 24323:1 24334:1 24358:1 24359:2 24366:6 24368:1 24369:1 24371:1 24373:2 24379:1 24383:2 24386:2 24394:2 24398:1 24401:1 24417:1 24418:1 24425:1 24427:1 24442:2 24449:1 24467:1 24474:1 24477:1 24478:4 24487:2 24493:7 24502:1 24504:1 24505:1 24516:1 24527:1 24541:1 24542:6 24550:2 24578:1 24587:1 24597:1 24601:3 24618:1 24636:1 24639:1 24643:2 24647:2 24650:3 24660:1 24677:1 24678:1 24681:1 24685:3 24687:1 24690:6 24692:4 24695:1 24698:1 24701:1 24706:2 24727:1 24742:2 24775:1 24788:2 24792:1 24805:5 24840:1 24841:1 24847:1 24854:2 24857:1 24858:1 24860:1 24874:1 24887:1 24904:1 24907:1 24916:3 24921:1 24925:2 24933:4 24936:1 24937:1 24943:1 24957:1 24959:1 24966:1 24969:1 24972:2 24974:1 24975:1 24983:1 24985:2 24990:3 25003:1 25008:1 25011:1 25015:1 25017:1 25021:2 25022:1 25027:1 25032:1 25034:1 25036:1 25041:1 25048:1 25064:1 25072:2 25077:2 25093:1 25097:3 25100:2 25114:1 25115:2 25126:1 25127:1 25133:1 25134:2 25139:2 25149:1 25156:4 25167:5 25170:1 25173:1 25176:1 25177:1 25183:1 25184:3 25189:1 25190:1 25191:1 25197:1 25221:1 25224:9 25233:3 25238:1 25245:2 25298:1 25300:1 25306:5 25337:7 25343:1 25346:1 25356:2 25357:1 25364:3 25366:1 25367:6 25369:1 25371:1 25388:1 25401:1 25413:1 25415:1 25416:1 25423:1 25431:2 25434:2 25437:1 25454:1 25464:1 25467:1 25474:5 25494:5 25508:1 25510:1 25513:2 25515:1 25516:3 25526:2 25545:4 25548:1 25552:5 25557:1 25561:3 25562:1 25569:1 25582:3 25590:1 25595:2 25599:3 25600:1 25621:1 25623:1 25624:1 25635:4 25639:1 25646:1 25659:3 25662:2 25666:1 25669:5 25670:1 25672:1 25674:5 25678:3 25713:1 25714:1 25724:1 25726:1 25732:1 25798:1 25809:1 25810:1 25831:3 25834:1 25841:1 25850:1 25865:3 25878:1 25883:1 25884:1 25887:1 25897:1 25916:1 25920:1 25958:1 25962:1 25967:1 26002:3 26017:1 26019:4 26025:1 26031:1 26032:1 26035:1 26036:1 26046:1 26047:2 26056:4 26062:1 26073:1 26084:1 26088:1 26106:1 26110:2 26126:1 26133:1 26150:1 26158:1 26160:1 26188:2 26195:1 26201:1 26217:1 26218:1 26223:1 26239:1 26243:1 26253:1 26254:1 26255:1 26263:2 26269:2 26270:3 26278:2 26279:1 26286:4 26314:1 26320:1 26324:2 26328:1 26329:2 26331:1 26334:1 26354:2 26360:1 26364:1 26367:1 26369:1 26381:1 26390:1 26403:1 26405:1 26407:1 26411:1 26414:1 26423:2 26434:1 26435:1 26437:4 26442:2 26445:2 26459:1 26470:1 26481:1 26482:1 26488:1 26490:3 26502:7 26510:1 26530:1 26535:1 26549:1 26550:1 26557:2 26565:1 26577:1 26579:1 26581:2 26582:1 26584:4 26605:1 26606:1 26608:1 26617:1 26628:1 26646:2 26665:2 26675:1 26679:1 26681:1 26685:1 26686:1 26689:3 26705:1 26718:2 26726:1 26729:1 26762:1 26768:1 26780:1 26785:1 26793:1 26794:1 26839:1 26850:1 26867:1 26872:2 26873:1 26879:2 26890:1 26897:1 26898:1 26902:3 26932:1 26951:1 26954:1 26960:1 26961:1 26964:1 26966:1 26967:1 26977:1 26979:2 26984:3 26991:1 26996:1 26998:1 27020:2 27049:1 27052:2 27063:1 27065:3 27075:2 27076:2 27100:5 27105:1 27115:2 27116:1 27126:1 27133:1 27134:1 27144:3 27151:1 27171:1 27182:1 27186:1 27196:2 27198:1 27201:1 27202:1 27211:1 27222:2 27223:2 27224:1 27226:1 27227:6 27231:1 27233:1 27245:3 27247:1 27259:1 27265:1 27276:1 27280:1 27295:1 27299:3 27300:1 27305:2 27317:1 27335:1 27336:3 27344:1 27351:1 27357:1 27358:1 27365:1 27376:1 27383:1 27390:1 27408:2 27412:1 27429:2 27436:2 27460:1 27466:1 27470:4 27471:3 27479:1 27481:2 27483:2 27484:2 27486:1 27487:4 27488:1 27489:3 27490:2 27492:1 27495:1 27496:1 27498:4 27508:2 27511:2 27519:1 27522:1 27527:2 27530:3 27539:5 27547:2 27550:1 27557:1 27578:1 27580:2 27586:1 27603:2 27608:1 27612:3 27616:1 27622:1 27626:2 27654:1 27655:3 27661:1 27664:4 27669:1 27674:1 27679:2 27681:2 27683:2 27687:3 27689:3 27691:2 27692:1 27705:1 27711:1 27713:1 27749:1 27754:1 27766:1 27773:1 27776:1 27797:12 27798:1 27799:1 27815:1 27821:10 27835:1 27839:4 27842:2 27854:1 27855:1 27858:1 27862:1 27864:1 27871:2 27876:4 27890:3 27892:1 27912:2 27915:3 27953:1 27980:1 27986:2 27987:2 27994:1 28003:1 28024:1 28030:1 28046:2 28052:2 28064:1 28065:1 28069:1 28072:1 28074:1 28078:1 28082:1 28094:1 28101:1 28110:1 28113:2 28115:1 28133:3 28149:1 28164:1 28169:1 28173:1 28209:1 28224:1 28241:1 28270:1 28275:1 28293:1 28294:1 28303:1 28308:1 28319:2 28348:3 28349:10 28351:1 28369:1 28375:1 28377:1 28382:10 28384:1 28393:1 28394:1 28397:1 28401:1 28402:1 28413:5 28420:1 28424:2 28425:1 28430:2 28437:1 28474:1 28501:1 28502:1 28508:1 28527:1 28533:2 28536:2 28558:1 28576:2 28592:2 28593:1 28614:3 28617:1 28631:1 28632:5 28635:4 28636:1 28643:1 28651:1 28658:1 28664:1 28670:2 28672:1 28673:1 28674:2 28685:2 28694:2 28722:1 28730:1 28731:3 28736:1 28737:1 28746:1 28759:4 28773:1 28776:1 28787:1 28803:3 28809:1 28833:2 28847:1 28884:1 28885:1 28892:1 28921:1 28926:1 28937:1 28944:1 28948:6 28954:1 28966:1 28969:2 28976:1 28983:2 28995:1 29005:4 29007:3 29012:2 29021:1 29032:1 29042:1 29114:1 29136:1 29137:2 29149:2 29152:2 29154:1 29203:1 29211:1 29219:1 29225:1 29226:2 29233:1 29241:1 29263:2 29266:1 29277:1 29279:3 29283:1 29287:1 29290:1 29298:2 29305:1 29313:1 29329:1 29330:1 29336:1 29339:1 29342:1 29344:1 29345:1 29346:1 29348:1 29349:1 29351:2 29356:1 29359:4 29361:1 29378:1 29383:1 29394:1 29419:1 29421:7 29433:1 29448:1 29450:2 29474:1 29483:1 29485:1 29496:1 29508:1 29510:1 29515:9 29521:2 29529:3 29535:1 29547:1 29559:1 29562:1 29567:2 29570:3 29578:1 29583:3 29594:1 29605:4 29612:1 29623:1 29625:1 29632:1 29643:3 29649:1 29654:1 29658:1 29671:1 29676:4 29697:1 29701:1 29702:1 29704:6 29711:1 29721:2 29724:2 29728:1 29729:1 29730:1 29735:1 29745:1 29775:1 29783:1 29800:2 29801:1 29820:2 29822:2 29824:1 29825:2 29826:1 29831:2 29839:1 29841:1 29845:1 29847:1 29899:1 29904:1 29916:2 29927:2 29931:2 29958:4 29969:1 29971:4 29972:3 29973:1 29974:4 29977:1 29995:1 29999:1 30002:2 30004:1 30015:1 30035:1 30040:1 30044:1 30052:1 30059:1 30096:2 30100:2 30105:1 30142:1 30149:2 30156:2 30168:2 30169:1 30175:1 30180:1 30181:1 30191:1 30199:1 30204:1 30210:1 30213:2 30231:6 30249:1 30252:1 30267:1 30285:1 30297:2 30305:1 30306:1 30315:1 30327:2 30330:1 30331:3 30342:1 30357:1 30360:1 30370:1 30380:6 30390:1 30393:2 30420:1 30431:1 30435:1 30445:2 30454:1 30466:3 30471:1 30475:4 30501:4 30504:3 30507:2 30510:2 30532:1 30548:2 30552:2 30564:1 30572:2 30587:10 30589:3 30602:1 30606:1 30628:1 30638:1 30653:1 30660:3 30663:2 30664:7 30683:1 30685:1 30688:1 30689:2 30697:1 30704:8 30710:1 30718:2 30730:1 30738:1 30775:1 30776:1 30789:2 30798:6 30802:6 30805:3 30809:2 30814:3 30822:1 30834:1 30835:1 30843:4 30846:1 30854:2 30863:1 30864:1 30867:1 30868:2 30869:1 30875:2 30880:2 30883:1 30884:2 30892:3 30895:2 30908:2 30910:1 30946:2 30956:2 30960:1 30967:2 30968:1 30971:2 30976:1 30977:2 30988:1 30994:2 30996:2 30999:1 31009:1 31019:1 31020:1 31031:1 31042:1 31046:3 31057:2 31062:1 31065:1 31074:1 31082:1 31095:1 31101:1 31104:2 31107:1 31113:1 31125:2 31127:1 31130:1 31135:1 31142:2 31144:1 31158:3 31161:1 31172:2 31184:2 31191:1 31195:2 31197:3 31206:1 31209:1 31216:8 31221:1 31227:1 31235:1 31287:1 31306:1 31315:2 31322:2 31324:1 31331:1 31360:2 31363:2 31370:2 31375:1 31386:1 31388:2 31391:1 31392:4 31398:1 31404:1 31422:2 31440:3 31448:1 31452:3 31459:1 31461:4 31463:1 31476:3 31478:1 31480:2 31484:2 31485:3 31491:1 31494:1 31505:1 31521:1 31531:5 31538:1 31543:1 31545:1 31547:1 31553:1 31554:1 31566:2 31576:3 31581:1 31583:1 31584:1 31590:1 31622:1 31625:1 31635:2 31640:1 31647:1 31649:1 31658:2 31665:26 31667:4 31670:2 31674:2 31679:2 31680:4 31684:3 31686:2 31688:2 31704:13 31721:3 31722:1 31727:1 31730:1 31750:1 31761:3 31763:1 31783:1 31790:1 31794:1 31806:1 31811:1 31818:1 31821:1 31827:2 31834:7 31842:3 31846:1 31853:1 31877:8 31878:1 31894:2 31897:2 31910:1 31911:1 31916:1 31921:1 31932:1 31938:2 31952:1 31954:1 31960:1 31962:1 31964:1 31974:1 31976:1 31998:2 32009:1 32027:1 32035:3 32041:1 32042:1 32047:1 32053:1 32060:1 32061:2 32068:1 32070:1 32083:3 32085:1 32093:1 32094:1 32097:1 32102:1 32103:1 32105:2 32117:1 32125:1 32128:1 32140:2 32142:1 32153:1 32171:2 32172:3 32181:1 32201:1 32207:1 32212:1 32229:1 32241:6 32244:9 32277:2 32280:3 32288:1 32289:1 32299:1 32303:1 32304:2 32310:1 32311:2 32312:1 32319:1 32335:3 32348:1 32369:2 32403:1 32407:1 32420:1 32433:1 32439:2 32443:7 32447:1 32451:1 32456:1 32471:4 32472:1 32476:1 32486:1 32487:2 32491:4 32499:1 32548:1 32551:1 32552:2 32566:1 32579:1 32619:1 32625:1 32628:1 32632:1 32650:1 32651:1 32656:2 32660:1 32661:1 32675:2 32688:1 32693:5 32697:1 32713:6 32719:1 32722:1 32724:2 32750:3 32768:2 32791:1 32795:1 32803:1 32808:2 32814:2 32818:1 32824:1 32834:1 32843:1 32846:2 32871:1 32885:2 32899:1 32900:2 32910:2 32934:1 32935:1 32941:3 32944:4 32956:2 32963:2 32974:1 33001:3 33019:1 33020:1 33025:1 33038:1 33041:8 33055:1 33056:3 33057:2 33059:1 33075:1 33083:1 33084:1 33101:1 33105:3 33108:1 33115:1 33118:1 33133:1 33138:1 33141:3 33143:2 33146:1 33148:2 33149:2 33155:10 33156:1 33164:2 33167:5 33168:1 33171:5 33182:1 33198:2 33204:1 33211:1 33220:3 33224:1 33225:2 33226:1 33232:1 33234:2 33267:1 33271:3
|
bcaa84f43bac8455c01e1a7359cee6d043ff9a14 | 449d555969bfd7befe906877abab098c6e63a0e8 | /773/CH6/EX6.15/6_15.sci | 9aa957ac1fca7d9d4b92d0d4d55b79d76cab43d9 | [] | 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 | 451 | sci | 6_15.sci | //syslin//
exec series.sce;
exec parallel.sce;
syms G1 G2 G3 G4 H1 H2 H3;
//shift the take-off point to the right of the block H1
//shift the other take-off point to the right of the block H1 &H2
a=series(H1,H2);
b=1/a;
c=1/H1;
d=G3/.a;
//move the summer to the left of the block G2
e=G4/G2;
f=series(d,G2);
//exchange the summer
g=f/.H1;
h=parallel(G1,e);
i=series(h,g);
j=series(a,H3);
y=i/.j;
y=simple(y);
disp(y,"C(s)/R(s)=")
|
9f16c84aa123377d68875d140962ac4d98540c9d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3750/CH4/EX4.2/Ex4_2.sce | 0b407e8cdf118daf4b23ae6b5148a7bce391318d | [] | 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 | 813 | sce | Ex4_2.sce | //Strength Of Material By G.H.Ryder
//Chapter 4
//Example 2
//To calculate Percentage error in Poission's ratio
clc();
//Initialization of Variables
errorG=1/100; //Percentage error in determination of G
nu=0.25 //Correct value of Poission's Ratio
//Computations
//Gdash=(1+errorG)*G
GdashByG=1+errorG;
//G*(1+nu)=Gdash*(1+nudash)
errornu=-errorG*(1+nu)*100/nu; //approxiamate percentage error in Poission's ratio
//Alternative Method
//E=2*G*(1+nu)
//Since deltaE=0 as E does not vary
//0=2*deltaG*(1+nu)+2*G*deltanu
deltaGbyG=1/100; //percentage error in G
deltanu=deltaGbyG*(1+nu); //Absolute error in Poission's Ratio
errornu=-deltanu*100/nu; //percentage error in Poission's Ratio
printf("Error in Calculation in Poissions Ratio is about %.f percent",errornu)
|
6189cd30a1c2f60c7317422f5fa737ef445a0b2a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3665/CH5/EX5.3/Ex5_3.sce | 272ddbc90b5abb76f07e8b434038711eaa59e566 | [] | 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 | Ex5_3.sce | clc//
//
//
//Variable declaration
kT=1; //assume
E_Ef=kT;
//Calculation
FE=1/(1+exp(1)); //fermi function
//Result
printf("\n fermi function is %0.3f ",FE)
|
8c05e5871ab541c59497b41ac29aa7a2bc8a1a77 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2471/CH6/EX6.12/Ex6_12.sce | d1d62b85a57ea3f22e605201c72633542e14f35f | [] | 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 | 8,390 | sce | Ex6_12.sce | clear ;
clc;
// Example 6.12
printf('Example 6.12\n\n');
printf('Page No. 168\n\n');
// given
C_Rate = 2920;// Coal consumption rate in kg/h
S_Rate = 22.5*10^3;// Steam consumption rate in kg/h
Ps = 20;// Steam pressure in bar
Ts = 350;// Steam Temperature in degree celcius
Tf_in = 70;// Feed water temperature inlet economiser in degree celcius
Tf_out = 110;// Feed water temperature outlet economiser in degree celcius
Tm_b = 25;// Mean Boiler house temperature in degree celcius
Tm_f = 260;// Mean exit flue gas temperature in degree celcius
CO2_f = 15.8;// CO2 content of dry exit flue gas by volume
CO_f = 0;// CO content of dry exit flue gas by volume
C_ash = 0.025;// Carbon in ash in [%]
G = 0.005;// Grit produced in [%]
//Analysis of coal(as fired)
M = 0.105;// Moisture [%]
VM = 0.308;//Volatile matter [%]
FC = 0.497;// FIxed carbon [%]
Ash =0.09;// ASh [%]
C = 0.66;// Carbon percentage - [%]
H2 = 0.042;// Hydrogen percentage - [%]
S = 0.015;// Sulphur percentage - [%]
N2 = 0.012;// Nitrogen percentage - [%]
O2 = 0.076;// Oxygen percentage - [%]
H20 = 0.105;// Moisture percentage - [%]
G_CV = 26.90;// Gross Calorific Value in 10^6 J/kg
CV_C = 33.8*10^6;// Calorif Value of carbon in J/kg
CV_G = 33.8*10^6;// Calorif Value of Grit in J/kg
Ps_l = 20;// Pressure of steam leaving the boiler in bar
//(a) Calculation of excess air usage
//(a.1) Theoretical oxygen requirement
F = 1;// Fuel feed required in kg
w_C = 12; // mol. weight of C
w_H2 = 2; //mol. weight of H2
w_S = 32; //mol. weight of S
w_N2 = 28; // mol. weight of N2
w_O2 = 32; // mol. weight of O2
//Basis- Per kg of fuel
mol_C = C / w_C;// kmol of C
mol_H2 = H2 /w_H2;//kmol of H2
mol_S = S /w_S;//kmol of S
mol_N2 = N2 /w_N2;//kmol of N2
mol_O2 = O2 /w_O2;//kmol of O2
//Calculation of excess air
C_req = mol_C*1;//O2 required by entering C given by reaction C+O2->CO2 in kmol
H_req = mol_H2*0.5;//O2 required by entering H2 given by reaction H2+(1/2)O2->H20 in kmol
S_req = mol_S*1;//O2 required by entering S given by reaction S+O2->SO2 in kmol
O2_req = (C_req + H_req + S_req) - mol_O2;// in kmol
N2_air = (O2_req*76.8)/23.2;// in kmol (considering air consists of 76.8% N2 and 23.2% O2 )
printf('(a.1) \n')
printf('Total number of kmol of O2 required per kg of fuel is %3.4f kmol \n',O2_req)
printf('N2 associated with O2 is %3.4f kmol \n',N2_air)
//(a.2) Theoretical CO2 content of dry flue gas
T = C_req + S_req + mol_N2 + N2_air;// Total flue gas in kmol
CO2 = (C_req/T)*100;// in [%]
printf('(a.2) \n')
printf('Theoretical CO2 content of dry flue gas in percentage is %3.1f \n',CO2)
//(a.3)Excess air based on CO2 content
Ex_air = ((CO2 - CO2_f)/CO2_f)*100;// in [%]
printf('(a.3) \n')
printf('Excess air based on CO2 content in percentage is %.0f \n\n',floor(Ex_air))
//(b) Fuel gas components
//(b.1) Composition per kg fuel
w_CO2 = 44;// mol. weight of CO2
w_SO2 = 64;// mol. weight of SO2
// FOR DRY GAS
CO2_d = C_req * w_CO2;// In kg/kg
SO2_d = S_req * w_SO2;// In kg/kg
N2_d = mol_N2 * w_N2;// N2 from fuel In kg/kg
N2_air_d = N2_air * w_N2;// N2 from air In kg/kg
T_N2 = N2_d + N2_air_d;// In kg/kg
T_dry = CO2_d + SO2_d + T_N2;// In kg/kg
printf('(b.1) \n')
printf('Composition of dry gas \n')
printf('CO2 %.3f \n',CO2_d)
printf('SO2 %.2f \n',SO2_d)
printf('N2 from fuel %.2f \n',N2_d)
printf('N2 from air %.2f \n',N2_air_d)
printf('Total dry air %.2f kg/kg \n\n',T_dry)
//FOR WET GAS
w_H2O = 18;// mol. weight of H2O
H2O_f = M;// H2O from fuel
H2O_H2 = mol_H2 * w_H2O;// H2O from H2
T_H2O = H2O_f + H2O_H2;// in kg/kg
printf('Composition of wet gas \n')
printf('H2O from fuel %.3f \n',H2O_f)
printf('H2O from H2 %.3f \n',H2O_H2)
printf('Total H2O in wet gas %.3f kg/kg \n\n',T_H2O)
//FOR DRY EXCESS AIR
O2_dry_ex = O2_req * w_O2 *0.3;//in kg/kg
N2_dry_ex = N2_air * w_N2 *0.3;//in kg/kg
T_dry_ex = O2_dry_ex + N2_dry_ex;// in kg/kg
printf('Composition of dry excess air \n')
printf('O2 %.3f \n',O2_dry_ex)
printf('N2 %.3f \n',N2_dry_ex)
printf('Total dry excess air %.3f kg/kg \n\n',T_dry_ex)
//(b.2) Enthalpy
// From steam table or from the appendix C.2; at the given pressure and temperatures, the following specific heat capacity for different gases are obtained
Cp_CO2_T1 = 1.04*10^3;// Specific heat Capacity of CO2 at temperature Tm_f in J/kg-K
Cp_CO2_T2 = 0.85*10^3;// Specific heat Capacity of CO2 at temperature Tm_b in J/kg-K
Cp_SO2_T1 = 0.73*10^3;// Specific heat Capacity of SO2 at temperature Tm_f in J/kg-K
Cp_SO2_T2 = 0.62*10^3;// Specific heat Capacity of SO2 at temperature Tm_b in J/kg-K
Cp_N2_T1 = 1.07*10^3;// Specific heat Capacity of N2 at temperature Tm_f in J/kg-K
Cp_N2_T2 = 1.06*10^3;// Specific heat Capacity of N2 at temperature Tm_b in J/kg-K
Cp_O2_T1 = 0.99*10^3;// Specific heat Capacity of O2 at temperature Tm_f in J/kg-K
Cp_O2_T2 = 0.91*10^3;// Specific heat Capacity of O2 at temperature Tm_b in J/kg-K
Cp_dry_T1 = ((CO2_d * Cp_CO2_T1) + (SO2_d * Cp_SO2_T1) + (T_N2 * Cp_N2_T1))/T_dry;// in J/kg-K
Cp_dry_T2 = ((CO2_d * Cp_CO2_T2) + (SO2_d * Cp_SO2_T2) + (T_N2 * Cp_N2_T2))/T_dry;// in J/kg-K
Cp_air_T1 = ((O2_dry_ex * Cp_O2_T1) + (N2_dry_ex * Cp_N2_T1))/T_dry_ex;// in J/kg-K
Cp_air_T2 = ((O2_dry_ex * Cp_O2_T2) + (N2_dry_ex * Cp_N2_T2))/T_dry_ex;// in J/kg-K
printf('(b.2) \n')
printf('Specific heat Capacity of dry gas at 260 deg C is %.0f J/kg-K \n',Cp_dry_T1)
printf('Specific heat Capacity of dry gas at 25 deg C is %.0f J/kg-K \n',Cp_dry_T2)
printf('Specific heat Capacity of dry excess air at 260 deg C is %.0f J/kg-K \n',Cp_air_T1)
printf('Specific heat Capacity of dry excess air at 25 deg C is %.0f J/kg-K \n\n',Cp_air_T2)
// From Steam table or Appendix B.3, Enthalpy of superheated steam is obtained at 260 deg C and 1 bar
E_s = 2995*10^3;//in J/kg-K
//(c) Heat transferred to water
E_w = S_Rate / C_Rate;// Evaporation of water per kg of fuel in kg
E = (E_w*(461 - 293)*10^3)/10^6;// in 10^6 J
B = (E_w*(2797 - 461)*10^3)/10^6;// in 10^6 J
S = (E_w*(3139 - 2797)*10^3)/10^6;// in 10^6 J
printf('(c) \n')
printf('Heat to water in Economiser is %.1f *10^6 J \n',E)
printf('Heat to water in Boiler is %.2f *10^6 J \n',B)
printf('Heat to water in Superheater is %.2f *10^6 J \n\n',S)
//(d) Heat loss in flue gas
hl = 105*10^3;// Enthalpy of steam at 25 deg C (from steam table) in J/kg-K
loss_dry = T_dry*((Tm_f*Cp_dry_T1) - (Tm_b*Cp_dry_T2))/10^6;// in 10^6 J
loss_wet = T_H2O*(E_s - hl)/10^6;// in 10^6 J
loss_ex_air = T_dry_ex*((Tm_f*Cp_air_T1) - (Tm_b*Cp_air_T2))/10^6;// in 10^6 J
printf('(d) \n')
printf('Heat loss in dry flue gas is %.2f *10^6 J \n',loss_dry)
printf('Heat loss in wet flue gas is %.2f *10^6 J \n',loss_wet)
printf('Heat loss in dry excess air is %.2f *10^6 J \n\n',loss_ex_air)
//(e) Heat loss in combustile matter in ash
loss_ash = (Ash * C_ash * CV_C)/10^6;// in 10^6 J
printf('(e) Heat loss in combustile matter in ash is %.2f *10^6 J \n',loss_ash)
//(f) Heat loss in grit
loss_grit = (G * CV_G)/10^6;// in 10^6 J
printf('(f) Heat loss in grit is %.2f *10^6 J \n\n',loss_grit)
//(g) Radiation and unaccounted heat loss
h_sup = G_CV;// Heat supplied by the coal in 10^6 J
loss_rad = (h_sup - (E + B + S + loss_dry + loss_wet + loss_ex_air + loss_ash + loss_grit));// Radiation and unaccounted loss in 10^6 J
a = (h_sup/h_sup)*100;
b = (E/h_sup)*100;
c = (B/h_sup)*100;
d = (S/h_sup)*100;
e = (loss_dry/h_sup)*100;
f = (loss_wet/h_sup)*100;
g = (loss_ex_air/h_sup)*100;
h = (loss_ash/h_sup)*100;
i = (loss_grit/h_sup)*100;
j = (loss_rad/h_sup)*100;
T = b + c + d + e + f + g + h + i + j;
printf('(g) THERMAL BALANCE SHEET :\n\t\t\t\t 10^6 J \t percentage \n Heat supplied by coal \t\t %.2f \t\t %.0f\n Heat to loss in : economiser \t %.2f \t\t %.1f\n \t\t boiler \t %.2f \t\t %.0f\n \t\t superheater %.2f \t\t %.1f\n Heat loss in : dry flue gas %.2f \t\t %.1f\n \t\t wet flue gas %.2f \t\t %.1f\n \t dry eecess air %.2f \t\t %.1f\n Heat loss in ash \t\t %.2f \t\t %.1f\n Heat loss in grit \t\t %.2f \t\t %.1f\n Radiation and unaccounted loss %.1f \t\t %.1f\n TOTAL \t\t\t\t %.2f \t\t %.1f',h_sup,a,E,b,B,c,S,d,loss_dry,e,loss_wet,f,loss_ex_air,g,loss_ash,h,loss_grit,i,loss_rad,j,h_sup,T)
|
4565e0a953ac42c00a8b33d70be0df2355a6fb49 | 9cb37875b74a713c93c09fa50ccc70ac0f71ecdb | /CostHriFunction/PR2/SCENARIOS/Pr2ShelfAndHumanTmp3.sce | 03152a6e920f7e5ecb8aa51211aa1315bf42b67d | [] | 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,047 | sce | Pr2ShelfAndHumanTmp3.sce | #************************************************************
# Scenario of Ikea
#
# date : Wed Feb 15 17:57:20 2012
#************************************************************
p3d_sel_desc_name P3D_ENV Ikea
p3d_sel_desc_name P3D_ROBOT BLUE_BOTTLE
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 -2.150000 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 Lampe
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.682000 -1.312000 0.809000 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 0.878000 -1.344000 2.847000 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 0.548000 -1.359000 2.862000 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.237000 -1.344000 2.854000 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 HERAKLES_HUMAN1
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -0.037000 -0.753000 0.990000 0.000000 0.000000 -157.932000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 83.160000 16.452000 -20.088000 0.000000 48.420000 0.000000 6.660000 -104.634000 0.000000 -84.564000 -0.612000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -13.177000 -15.159000 0.000000 20.608000 0.000000 0.000000 0.000000 -1.343000 -7.158000 0.000000 5.334000 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 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT PR2_ROBOT
p3d_set_robot_steering_method Multi-Localpath
p3d_set_robot_radius 1.000000
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -0.633000 -1.462000 0.000000 -0.000000 0.000000 73.404000 0.310000 -1.826000 -1.433000 0.000000 -72.382000 49.112000 -21.142000 -63.135000 175.752000 0.000000 -124.920000 0.000000 0.000000 90.570442 67.149261 23.662000 -119.628113 55.944226 -79.532953 -159.109239 0.000000 0.000000 0.000000 0.000000 0.000000 0.355037 -1.387717 0.911310 38.332462 3.146504 23.029187 -1.067253 -1.139668 1.053000 -6.517447 -27.546792 27.301127
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -0.633000 -1.462000 0.000000 0.000000 0.000000 73.404000 0.310000 -1.826000 -1.433000 0.000000 14.718000 24.032000 -13.585000 -62.989000 178.740000 -20.551000 -168.984000 0.000000 0.000000 90.570442 67.149261 23.662000 -119.628113 55.944226 -79.532953 -159.109239 0.000000 0.000000 0.000000 0.000000 0.000000 -0.532544 -0.679775 1.197660 17.703184 -0.831068 96.896274 -1.067253 -1.139668 1.053000 -6.517447 -27.546792 27.301127
p3d_constraint p3d_lin_rel_dofs 1 15 1 14 2 1.000000 0.000000 0
p3d_constraint p3d_lin_rel_dofs 1 25 1 24 2 1.000000 0.000000 0
p3d_constraint p3d_pr2_arm_ik 7 6 7 9 10 11 12 13 1 32 0 1 8
p3d_set_cntrt_Tatt 2 1.000000 0.000000 0.000000 -0.180000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000
p3d_set_cntrt_Tatt2 2 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 1.000000 0.000000 0.000000 -0.180000
p3d_constraint p3d_pr2_arm_ik 7 16 17 19 20 21 22 23 1 33 0 1 18
p3d_set_cntrt_Tatt 3 1.000000 0.000000 0.000000 -0.180000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000
p3d_set_cntrt_Tatt2 3 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 1.000000 0.000000 0.000000 -0.180000
p3d_constraint p3d_fix_jnts_relpos 1 32 1 13 0 0
p3d_set_cntrt_Tatt 4 1.000000 -0.000000 -0.000000 0.180003 0.000000 1.000000 -0.000000 -0.000001 0.000000 0.000000 1.000000 -0.000000
p3d_constraint p3d_fix_jnts_relpos 1 33 1 23 0 0
p3d_set_cntrt_Tatt 5 1.000000 0.000000 -0.000000 0.179998 -0.000000 1.000000 -0.000000 0.000001 0.000000 0.000000 1.000000 0.000001
p3d_set_object_base_and_arm_constraints 32 1 0 2 2 3
p3d_set_arm_data 2 3 32
p3d_set_arm_data 3 3 33
p3d_set_camera_pos -0.557387 -1.380366 0.991994 2.248880 2.128185 0.775625 0.000000 0.000000 1.000000 0.000000
|
83066f1428779a1886e7bb5329efa97f7cdeab01 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.1/macros/percent/%rflss.sci | 17924f63dcb8f9f9ed3ded58545bebfcec8aee57 | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer",
"MIT"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 308 | sci | %rflss.sci | //[s]=%rflss(s1,s2)
//[s]=%rflss(s1,s2) calcule la concatenation d'une matrice de transfert
//s1 et d'un systeme lineaire decrit par sa representation d'etat s2.
// y=[s1*u;y2]
//Cette macro correspond a l'operation [s1;s2]
//!
// origine s. steer inria 1987
//
[s1,s2]=sysconv(s1,s2);s=[s1;s2]
//end
|
2d6cb414639ea538ed43a581b008d0058c7b30bf | 449d555969bfd7befe906877abab098c6e63a0e8 | /45/CH1/EX1.1/example_1_1.sce | e7fef44d3b5916b2e868ebec851112dfb60e9388 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 237 | sce | example_1_1.sce | //Example 1.1
clc;
clear;
f= 5 * 10^6 ; //given
T=1/f; // caculating the time period .
H = 0.05 * 10^-6 / T ;
printf('Time period of the waveform is T = %f us\n',T); //displaying results
printf(" Duty cycle H = %f %%",H*100);
|
e59aac2eb4b7a5906a187d58c25df3f3c69cf88c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3828/CH2/EX2.1/Ex2_1.sce | 4ad340e484e3c0aec3d947c1764989fe6cd58453 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 282 | sce | Ex2_1.sce |
//Chapter 2 : Diffraction
clear;
//Variable declaration
m=1 //first minimum
lamda=6000*10**-10 //wavelength
theta=(35*%pi/180) //angle in radians
//Calculations
a=(m*lamda)/sin(theta)/10**-6
//Result
mprintf("Width of the slit a= %.2f micro-m",a)
|
6625b96d6852b0fbb8c4830bc6eea40afb38d0f4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1529/CH17/EX17.7/17_07.sce | abdcd4fdf76ccb5dfec8aa241f93936c216f8e18 | [] | 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 | 949 | sce | 17_07.sce | //Chapter 17, Problem 7
clc;
R0=600; //nominal impedance
fcl=15000; //cut-off frequency of low pass
fch=10000; //cut-off frequency of high pass
C1=1/(%pi*R0*fcl); //capacitance in farad
L1=R0/(%pi*fcl); //inductance in henry
C2=1/(4*%pi*R0*fch); //capacitance in farad
L2=R0/(4*%pi*fch); //inductance in henry
disp("Thus, from Fig. 17.7(a), the series arm inductances are each L/2");
printf("the series arm inductances L/2 = %f mH\n",(L1/2)*10^3);
printf("and the shunt arm capacitance = %f nF\n\n",C1*10^9);
disp("Thus, from Fig. 17.16(a), the series arm capacitances are each 2C");
printf("the series arm capacitances 2C = %f nF\n",2*C2*10^9);
printf("and the shunt arm inductance = %f mH\n\n",L2*10^3);
disp("The composite, band-pass filter is shown in Fig. 17.24.");
|
91477af2bb92bdf2af149e8c5a3010f7b9a49a86 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1760/CH7/EX7.25/EX7_25.sce | 63d06d499f0bf016f5a0613ca66653b8f78b79ae | [] | 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 | 301 | sce | EX7_25.sce | //EXAMPLE 7_25 PG NO-484-485
A1=4/3;
A2=5/3;
B1=11/3;
B2=2;
C1=1/3;
C2=2;
D1=5/3;
D2=3;
A=A1+A2;
B=B1+B2;
C=C1+C2;
D=D1+D2;
X=(A*D)-(B*C);
disp(' X is = '+string(X)+'');
Z=[A1 B1;C1 D1]*[A2 B2; C2 D2];
disp(' ABCD MATRIX is = '+string(Z)+'');
|
410744832c51863b152808b73ee15c7e48539d22 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3772/CH7/EX7.7/Ex7_7.sce | 0df607ecb201e480eefc554e81499eb995e5f46c | [] | 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,276 | sce | Ex7_7.sce | // Problem no 7.7,Page no.188
clc;clear;
close;
P_C=45 //KW Power aplled at C
P_B=15 //KW Power taken off at B
P_BA=30 //KW //Power transmitted across BA
G=85 //GPa
//Calculations (Part-1)
//For BC
P_1=45 //KW //Power across BC
N_1=200 //r.p.m
d_1=0.075 //m //diameter of shaft BC
L_BC=2 //m //Length of shaft BC
T_BC=60000*P_1*(2*%pi*N_1)**-1 //N*m //Torque transmitted across BC
sigma_s_BC=16*T_BC*((%pi*(d_1)**3)**-1)*10**-6 //N/m**2 //max shear stress in BC
I_p_BC=%pi*32**-1*d_1**4 //m**4 //Polar M.I of BC
theta_1=T_BC*L_BC*(G*10**9*I_p_BC)**-1 //Radian //Max angle of twist theta_1 in BC of B relative to C
//For AB
P_2=30 //KW //Power across AB
N_2=200 //r.p.m
d_2=0.05 //m //diameter of shaft AB
L_BC=4 //m //Length of shaft AB
T_AB=60000*P_2*(2*%pi*N_2)**-1 //N*m //Torque transmitted across AB
sigma_s_AB=16*T_AB*(%pi*(d_2)**3)**-1*10**-6 //MN/m**2 //max shear stress in AB
I_p_AB=%pi*32**-1*d_2**4 //m**4 //Polar M.I of AB
theta_2=T_AB*L_BC*(G*10**9*I_p_AB)**-1 //Radian //Max angle of twist theta_1 in AB of A relative to B
C=(theta_1+theta_2)*180*%pi**-1 //radian //Angle of Twist of gear
//Result
printf("Angle of Twist of gear is %.2f",C);printf(" Degree")
printf("\n The maximum shear stress developed in the shaft AB is %.2f MN/m^2",sigma_s_AB)
|
6572308015fa73dc74f5aa8a2d3952c327f7620e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1388/CH10/EX10.11/10_11.sce | 590491bdb185c1cef76907ad1774d0c39b70f278 | [] | 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 | 267 | sce | 10_11.sce | clc
//initialisation of variables
pf2= 2.00 //mm Hg
y= 0.96 //mm Hg
Pn= 5 //mm Hg
//CALCULATIONS
pF2= pf2-y
pNO2= Pn-2*y
pNO2F= 2*y
//RESULTS
printf (' pressure of NO2= %.2f mm of Hg',pNO2)
printf (' \n pressure of NO2 after 30 sec= %.2f mm of Hg',pNO2F)
|
53c5acfa7e885097aaa4b0326c2686404bb0df09 | 449d555969bfd7befe906877abab098c6e63a0e8 | /149/CH9/EX9.8.2/example8_2.sce | f04636bebc26fcfd9880c71d2223b1efe5c5fc17 | [] | 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 | 138 | sce | example8_2.sce | clc
syms x n;
//put n=1/n
u=((2^(1/n)-2)*(x^(1/n-1)))/(2^(1/n)+1)
v=((2^((1/n)+1)-2)*(x^(1/n)))/(2^(1/n+1)+1)
disp(limit(u/v,n,0));
|
c67ad3d89f117f57b3c5abb9d71bc3bcc26d1b30 | 3fb2b65e8ef9208e822aad35c618441282e08a30 | /MetodeNumerik/langrange/langrange.sci | de5fb03bc5dc0f713cfd18e48dab16b392991785 | [] | no_license | Lukmannudin/TugasKuliah | 33031fb4f6ff0ab7a5849cda3ea15330e2527c3f | 19738c858dea539f0a5569f27be68b1a56c2aa89 | refs/heads/master | 2020-03-07T15:49:59.414761 | 2018-06-09T07:41:39 | 2018-06-09T07:41:39 | 127,565,939 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,225 | sci | langrange.sci |
function langrange(x,fx,xtaksir,jp);
//x matriks 1 x n
//fx matriks 1 x n
i=0;j=0;L=0;Li=0;pen=0;
[n,m]=size(x);
[ny,my]=size(fx);
if m==my then
if jp~=m-1 then
disp ('Polinom berderajat '+string(jp)+' tidak sesuai dengan jumlah titik '+string(m));
else
if (xtaksir>x(1,1)) & (xtaksir<x(1,m)) then
pi=1;
for i=1:m
pi=1;
for j=1:m
if i<> j then
pi=pi*( (xtaksir-x(1,j)) / (x(1,i)-x(1,j)) );
end,//end if
end,//endfor
disp('L('+string(pen)+') = '+string(pi));
L=L+fx(1,i)*pi;
pen=pen+1;
end//endfor
hasil=L;
disp('Nilai taksiran = '+string(hasil));
else
disp('x taksir = '+string(xtaksir)+' diluar dari nilai x yang dihitung');
end, //end cek xtaksir diluar x masukan
end, //end inner if
else
disp('Jumlah data antara x dan f(x) tidak sama');
end //endmainif
endfunction
|
8ad24efb9ada9bbd871fa6d05b0bcd1a390c247e | fd6e45f66c41ad779a3d47c3bf8ebfa140d3d657 | /P3 - Non-linear equations /Ejercicio 2.sci | 6458da8fba353f77e8b1d9643045c91f39c09462 | [] | no_license | jere1882/Numerical-Analysis-Assignments | 7f474e2020d010f9f9c3dceff5e48c03b0d38652 | 1074f92ca93d0a402259f92a0f61f105f25e5230 | refs/heads/master | 2021-09-06T20:00:36.411386 | 2018-02-10T18:04:38 | 2018-02-10T18:04:38 | 121,039,769 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,138 | sci | Ejercicio 2.sci | function y=f1(x)
y=1/2 * x^2 - sin(x)
endfunction
function y=f2(x)
y=x^4-(%e)^(-x)
endfunction
function y=f3(x)
y=log(x)-x+1
endfunction
function c=bisect(f,a,b,delta)
fa=f(a);
fb=f(b);
if fa*fb>0 then
disp("Intervalo no valido para método de la biseccion")
else
//Calculamos la cantidad de iteraciones necesarias para que el error de nuestra raíz sea menor a delta
k = ceil ( log2(b-a) - log2(delta) ); //precisamos k iteraciones, incluyendo una iteración 0.
for it=0:k
c= a+(b-a)/2
fc = f(c)
if fc==0 then break end
if fa*fc<0 then
b=c
fb=fc
else
a=c
fa=fc
end //if
end //for
end //if
endfunction
bisect(f1,-1,1,0.01) //0
bisect(f1,1,5,0.01) //1.4023438
bisect(f2,-2,-1,0.01) // - 1.4257812
bisect(f2,0,1,0.01) // 0.8164062
bisect(f2,-10,-8,0.01) // - 8.6132812
// en f3 no se puede aplicar el método de la bisección pues para todo x del dominio, la funcion es menor o igual a cero; ningun intervalo es apto para la bisección.
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.