blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
6
214
content_id
stringlengths
40
40
detected_licenses
listlengths
0
50
license_type
stringclasses
2 values
repo_name
stringlengths
6
87
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
15 values
visit_date
timestamp[us]date
2016-08-04 09:00:04
2023-09-05 17:18:33
revision_date
timestamp[us]date
1998-12-11 00:15:10
2023-09-02 05:42:40
committer_date
timestamp[us]date
2005-04-26 09:58:02
2023-09-02 05:42:40
github_id
int64
436k
586M
star_events_count
int64
0
12.3k
fork_events_count
int64
0
6.3k
gha_license_id
stringclasses
7 values
gha_event_created_at
timestamp[us]date
2012-11-16 11:45:07
2023-09-14 20:45:37
gha_created_at
timestamp[us]date
2010-03-22 23:34:58
2023-01-07 03:47:44
gha_language
stringclasses
36 values
src_encoding
stringclasses
17 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
5
10.4M
extension
stringclasses
15 values
filename
stringlengths
2
96
content
stringlengths
5
10.4M
c31eaba1397bb54824424f6d0865f233a82f0675
449d555969bfd7befe906877abab098c6e63a0e8
/3683/CH5/EX5.4/Ex5_4.sce
7192c51ccc8522326f592d1ef8ca7c3cb2bee351
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
616
sce
Ex5_4.sce
sigma_cc=4//in MPa sigma_sc=130//in MPa Asc=6*0.785*12^2//six 12 mm dia bars, in sq mm D=200//dia of column, in mm Ag=0.785*D^2//in sq mm Ac=Ag-Asc//in sq mm P=sigma_cc*Ac+sigma_sc*Asc//in N dia=6//dia of links used, in mm //spacing of links s1=D//in mm s2=16*12//in mm s3=48*dia//in mm s=min(s1,s2,s3) mprintf("Permissible load on the column = %f kN\nProvide %d mm dia links at spacing equal to least of (i)Least lateral dimension = %d mm, (ii) 16 times longitudinal bar dia = %d mm, (iii) 48 times link bar dia = %d mm, i.e., %d mm\nHence, spacing or pitch = %d mm", P/10^3, dia,D,16*12, 48*dia,s,s)
25efdf61ac866ba62499df8660f1aaa6057d3608
449d555969bfd7befe906877abab098c6e63a0e8
/3432/CH7/EX7.26/Ex7_26.sce
7485ee2b10e259811f6054362c1b1b0edd379faa
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,509
sce
Ex7_26.sce
//Example 7.26 // A reduced order estimator design for pendulum xdel(winsid())//close all graphics Windows clear; clc; //------------------------------------------------------------------ // State space representation w0=1; F=[0 1; -w0^2 0]; G=[0 1]'; H=[1 0]; J=0; n=sqrt(length(F));//order of the system //partioned system Faa=F(1,1); Fab=F(1,2); Fba=F(2,1); Fbb=F(2,2); // Desired estimator poles Pe=[-10]; // Observer gain matrix for system L=ppol(Fbb',Fab',Pe); L=L'; disp(L,"L=" ); //------------------------------------------------------------------ //simulation for closed loop system x0=[1 0 10]' //initial condition //State feedback control law u=-Kx; (from Ex7_15) K=[3*w0^2 4*w0]; //------------------------------------------------------------------ //Augmented plant and observer Faug=[F-G*K, zeros(n,1); Fab, L*Fab, Fbb-L*Fab]; Gaug=[0 0 0]'; Haug=[H 0]; J=0; sys_aug=syslin('c',Faug,Gaug,Haug,J); t=0:0.1:4; u=zeros(1,length(t)); [x z]=csim(u,t,sys_aug,x0); //closed loop response plot(t,z(1,:),'b'); plot(t,z(2,:),'r'); plot(t,z(3,:),'r--'); //Title, labels and grid to the figure exec .\fig_settings.sci; // custom script for setting figure properties title('Initial condition response of the reduced order estimator','fontsize',3) xlabel('Time t (sec.)','fontsize',2) ylabel('Amplitude','fontsize',2) legend('$x_1$','$x_2$','$\hat{x}_2$') xset('font size',2) //------------------------------------------------------------------
d2dd28b8e8e509df57eadbb7c9db4da79d84896c
449d555969bfd7befe906877abab098c6e63a0e8
/278/CH25/EX26.5/ex_26_5.sce
0d3fdd637dedd1b2a81cd45b02d848d4c4fcb679
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
346
sce
ex_26_5.sce
//find clc //solution //given l=80//mm W=2800//N d=0.05//m c=2*0.05//mm Z=0.021 Qd=80//J/s p=W/(l*d*1000)//N/mm^2 //u=(33/10^8)*(Z*N/p)*(d*1000/c)+0.002 //u=(495*N/10^8)+0.002 //Qg=u*W*V; N=1295//rpm; V=%pi*d*N/60//m/s //Qg=((495*N/10^8)+0.002)*2800*[%pi*d*N/60] //N^2 +404 N-2.2*10^6=0 //solving quadratic equation printf("rpm is, %f rpm\n ",N)
3a2dd6931d92fdc0a9097d1f38b1fbb8bb60715b
449d555969bfd7befe906877abab098c6e63a0e8
/3176/CH4/EX4.24/Ex4_24.sce
aa4ec99fc3a2f56905ace2a63c28160698943a99
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,235
sce
Ex4_24.sce
//Ex4_24 // Enhancement of Corrupted Cassini Saturn Image by Notch Filtering // Version : Scilab 5.4.1 // Operating System : Window-xp, Window-7 //Toolbox: Image Processing Design 8.3.1-1 //Toolbox: SIVP 0.5.3.1-2 //Reference book name : Digital Image Processing //book author: Rafael C. Gonzalez and Richard E. Woods clc; close; clear; xdel(winsid())//to close all currently open figure(s). function[H]=notchfilter(M,N,W)//notchfilter is used to filter an image . H=ones(M,N); H(1:ceil(M/2-5),ceil(N/2-W/2):ceil(N/2+W/2))=0; H(ceil(M/2+5):M,ceil(N/2-W/2):ceil(N/2+W/2))=0; endfunction /////////////////////////////////// Main Programm //////////////////////////////// a=imread("Ex4_24.tif"); //gray=rgb2gray(a); gray=im2double(a); figure,ShowImage(gray,'Gray Image'); title('Original Image','color','blue','fontsize',4); [M,N]=size(gray); h=fft2(gray);//fft2() is used to find 2-Dimensional Fast Fourier Transform of an matrix i=log(1+abs(h)); in=fftshift(i);//fftshift() is used to rearrange the fft output, moving the zero frequency to the center of the spectrum. inm=mat2gray(in) figure,ShowImage(inm,'Frequency Spectrum'); title('Frequency Spectrum','color','blue','fontsize',4); filt=notchfilter(M,N,7); // User Define Function which generate Filter Mask Corresponding to Low Frequency filt_pass=1-filt; //filt_shift=fftshift(filt); figure,ShowImage(filt,'Filter Mask'); title('Filter Mask (Band stop) to Specific Cut-Off Frequency','color','blue','fontsize',4); n=filt.*fftshift(h);//Multiply the Original Spectrum with the Filter Mask. Image_filter=real(ifft(fftshift(n))); Image_filter=mat2gray(Image_filter) figure,ShowImage(Image_filter,'Filtered Image'); title('Filtered Image with Specific Cut-Off Frequency','color','blue','fontsize',4); figure,ShowImage(filt_pass,'Filter Mask'); title('Filter Mask (Band Pass) to Specific Cut-Off Frequency','color','blue','fontsize',4); n=filt_pass.*fftshift(h);//Multiply the Original Spectrum with the Filter Mask. Image_filter=real(ifft(fftshift(n))); Image_filter=mat2gray(Image_filter) figure,ShowImage(Image_filter,'Filtered Image'); title('Filtered Image (Noise Pattern) with Specific Cut-Off Frequency','color','blue','fontsize',4);
8442d52e9fc09ad6f591b31ca3d3ec9351d25fc6
449d555969bfd7befe906877abab098c6e63a0e8
/3811/CH5/EX5.3/Ex5_3.sce
3e5a9128a1fe31f740295e909cc8faeed95bc5ff
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,128
sce
Ex5_3.sce
//Book name: Fundamentals of electrical drives by Mohamad A. El- Sharkawi //chapter 5 //example 5.3 //edition 1 //publisher and place:Nelson Engineering clc; clear; l=50;//load in hp f=60;//frequency in hertz V=440;//voltage of the motor in volts p=4;//Number of poles of the motor Tmax=2.5;//maximum torque of the motor T=1;//motor torque smax=0.1;//maximum slip ns=(120*f)/p;//synchronous speed in rpm disp('a). Motor speed :') s=(T/Tmax)*(smax/2);//the equation is obtained from the equation T=3V^2s/wsR2 n=ns*(1-s);//speed of the motor in rpm disp(n,'The speed of the motor at full load in rpm is') disp('b).Copper loss of the rotor') Pd=l/1.34;//power developed or Pout in kilowatt Pcu2=Pd*(s/(1-s));//copper loss in kilowatt which is obtained from two equationsPcu2=Pg*s,Pd=Pg*(1-s) Pcu=Pcu2*10^3;//copper loss in watt disp(Pcu,'The copper loss of the rotor in watt is') disp('c).Starting torque') //At starting slip s=1 omega=(2*%pi*n)/f; Pout=Pd*10^3;//Pout value in watts Tst=(smax^(2)*Pout)/(s*omega); disp(Tst,'The starting torque in Nm is') //The answers vary due to round off error
8e00ba66070d3f147bc4e4f47d9e61d793e2b1b5
b3285989ffe1c1bb555a67a92c4bbe7e1e39dcc5
/Agrégation Mathieu/LP25 - Oscillateurs ; portraits de phase et non-linéarités/pend_simple.sce
daf81caeee6eb8d4731d9c0f1a5b512c553768f4
[]
no_license
mubero/AgregationPhysique2020
82b840924dd800e8d614ecf3e24ab511b2326243
9a038fb0302059e9e5b8442ba765f918176916b0
refs/heads/master
2022-11-10T13:03:22.976863
2020-06-21T15:22:24
2020-06-21T15:22:24
270,004,658
1
1
null
null
null
null
UTF-8
Scilab
false
false
3,389
sce
pend_simple.sce
//******************************************************************************** clear all // Définition des paramètres l = 1. // m g = 9.81 // m.s-2 m = 1. // kg Omega2 = g/l; // pulsation du pendule // Système différentiel function du = Pendule(t,u) du(1) = u(2); du(2) = - Omega2*sin(u(1)); // du(2) = - Omega2*u(1); endfunction // Conditions initiales theta0 = input("Angle initial (en rd): "); vtheta0 = input("Vitesse angulaire initiale (en rd/s): "); //theta0 = [-1.1*%pi ;1.1*%pi ;%pi/20;%pi/10;%pi/4;%pi/3;1.90;2.5 ; 3 ; 0 ;0 ; -1.1*%pi ; 1.1*%pi; -1.1*%pi ; 1.1*%pi]; //vtheta0 = [sqrt(2*g/l);-sqrt(2*g/l);0 ;0 ;0 ;0 ;0 ;0 ; 0 ; 3*sqrt(2*g/l) ; -3*sqrt(2*g/l);2.5 ; -2.5 ; 7.8; -7.8]; theta = linspace(-2*%pi,2*%pi,2000); EP = m*g*l*(1 - cos(theta)); for k = 1:length(theta0) E0 = (1/2)*m*(l^2)*(vtheta0(k))^2 + m*g*l*(1 - cos(theta0(k))); // Energie mécanique totale du pendule = Energei initiale u0 = [theta0(k);vtheta0(k)]; t0 = 0; ck = sin(theta0(k)/2); [r]=delip(1,ck) // Période exacte period = [r]; //period = 2*%pi/sqrt(Omega2); // Paramètres de calcul T = 100*period ; dt=200; pas = period/dt; t = t0:pas:T; // Intégration [u] = ode(u0,t0,t,Pendule); // u(1): angle(t) u(2): vitesse angulaire(t) // Section de Poincaré //for i=201:dt:length(t) // n = (i-1)/dt; // th1(n) = u(1,i); // th2(n) = u(2,i); //end // // Espace des phases // figure(1) // h0 = gca(); // plot2d(u(1,:)',u(2,:)'/sqrt(Omega2)); // h0.data_bounds = [-1.1*%pi, -1.1*%pi ; 1.1*%pi, 1.1*%pi]; // h0.x_label.text = "Angle (rad)"; // h0.y_label.text = "Vitesse angulaire / Omega0 (rad)"; // h0.tight_limits=["on","on"]; // xgrid(2); end Ene = EP; Ene(:) = E0; figure(2) // Potentiel subplot(2,2,1); h1=gca(); plot2d(theta,EP,style = 2, leg = " Aspect énergétique "); plot2d(theta,Ene,style = 2); h1.data_bounds = [-1.1*%pi, 0 ; 1.1*%pi, 10]; h1.x_label.text = "Angle (rad)"; h1.y_label.text = "Ep(theta)"; h1.tight_limits=["on","on"]; xgrid(2); // Solution theta(t) subplot(2,2,2); h3=gca(); plot2d(t',u(1,:)', style = 2, leg = " Position "); h3.x_label.text = "Temps"; h3.y_label.text = "Angle"; xgrid(2); // Espace des phases subplot(2,2,3); h2=gca(); plot2d(u(1,:)',u(2,:)/sqrt(Omega2)', style = 2, leg = "Espace des phases"); h2.data_bounds = [-1.1*%pi, -1.1*%pi ; 1.1*%pi, 1.1*%pi]; h2.x_label.text = "Angle (rad)"; h2.y_label.text = "Vitesse angulaire / Omega0 (rad)"; h2.tight_limits=["on","on"]; xgrid(2); ////// Section de Poincaré //////subplot(2,2,4); //////h4=gca(); //////h4.data_bounds = [-1.1*%pi, -1.1*%pi ; 1.1*%pi, 1.1*%pi]; //////h4.x_label.text = "Angle"; //////h4.y_label.text = "Vitesse angulaire"; //////h4.tight_limits=["on","on"]; //////plot2d(th1',th2', style = -1, leg = "Section de Poincaré (x,dx/dt)"); //////xgrid(2); ////// figure(2) ////// ////// h2 = gca(); ////// h2.data_bounds = [-2*pi, 0 ; 2*pi, 2]; ////// h2.tight_limits=["on","on"]; ////// h2.x_label.text = "Angle (rad)"; ////// h2.y_label.text = "Energie potentielle ((m+M/2)gl))"; ////// plot2d(theta,EP,style = 2);
23a7cf21497c6cc51f5a435d7bd253ca6f97bf66
449d555969bfd7befe906877abab098c6e63a0e8
/704/CH3/EX3.36/ex3_36.sce
99ec9bb6e98b1ee0ac1f482d8bac0a5505e22d8a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
393
sce
ex3_36.sce
//Caption:Calculate the economy of copper in auto transformer and current distribution in primary //Exam:3.36 clc; clear; close; V_1=500;//Primary voltage V_2=400;//Secondary voltage I_2=100;//Secondary voltage I_1=V_2*I_2/V_1;//Primary current disp(I_1,'Current in primary winding(in Amp)=') K=V_2/V_1;//Transformer ratio S=K*100;//Saving (in %) disp(S,'Economy of copper(in %)=')
2043b564477e16cb1ff3adba0cefecbc726459e3
449d555969bfd7befe906877abab098c6e63a0e8
/3793/CH14/EX14.2/exp_14_2.sce
1e5287b65aa90c52bebebe9f6aa6555bc5f8adb0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
684
sce
exp_14_2.sce
clear; clc; z12=complex(.05,.20); z23=complex(.075,.25); c1=.025; c2=.005; w1= (.1568*10^(-4)); w2= (.1679*10^(-4)); w3= (.0668*10^(-4)); w4= (.0702*10^(-4)); W=[w1 0 0 0; 0 w2 0 0; 0 0 w3 0; 0 0 0 w4]; v1=1.05; v2=1.05; v3=(1.05); h1=(v1/z12); h2=(v2/z12); h3=(v2/z23); h4=(v3/z23); H=[h1 0 0 0; 0 h2 0 0; 0 0 h3 0; 0 0 0 h4]; H1=conj(H); D=H1*W*H; D1=real(D); A=[1 -1 0; -1 1 0; 0 1 -1; 0 -1 1]; B=[-1 0; 1 0; 1 -1; -1 1]; b=[1;-1;0;0]; E=(B')*D; f=E*B; s1=complex(.50,-.12); s2=complex(-.48,.10); s3=complex(.80,-.40); s4=complex(-.78,.38); S=[s1;s2;s3;s4]; vm=(inv(H))*(conj(S)); vb=inv(f)*E*(vm-(b*v1)); V=[v1;vb]; printf("V = ") disp(V);
6dcf56550c6905f13f93cfbe607a180dc17f320d
6e257f133dd8984b578f3c9fd3f269eabc0750be
/ScilabFromTheoryToPractice/Computing/testmatricebool.sce
1ac9000f4623465c239e2ab889a85b6dd410de0f
[]
no_license
markusmorawitz77/Scilab
902ef1b9f356dd38ea2dbadc892fe50d32b44bd0
7c98963a7d80915f66a3231a2235010e879049aa
refs/heads/master
2021-01-19T23:53:52.068010
2017-04-22T12:39:21
2017-04-22T12:39:21
89,051,705
0
0
null
null
null
null
UTF-8
Scilab
false
false
124
sce
testmatricebool.sce
A=rand(2,3) B=rand(2,3) // element-wise comparison C=(A<=B) D=(B<0.5) // element-wise logical operators ~C C&D C|D
0aef7a12e94bb3c193e5175dfc4aacaf5604fe35
449d555969bfd7befe906877abab098c6e63a0e8
/1931/CH12/EX12.7/7.sce
f4a8f84908d262908fea899cbcbdbd819fd5012a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
316
sce
7.sce
clc clear //INPUT DATA Hc=10^5//The critical field for vanadium at 8.58K in A/m Ho=2*10^5//The critical field for vanadium at 0K in A/m T=8.58//temperature for vanadium in K //CALCULATION Tc=(T/(sqrt(1-(Hc/Ho))))//The critical temperature in K //OUTPUT printf('The critical temperature is %3.3f K',Tc)
885ce34c3da137d565b4c38512f15fc0f948a0ac
449d555969bfd7befe906877abab098c6e63a0e8
/2354/CH4/EX4.2/4_2.sce
a44e8cd19bbf174027628945b16d620469ed140f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
252
sce
4_2.sce
//example 4.2 clc; funcprot(0); // Initialization of Variable m=0.1; v1=2.2661; P2=20;//pressure v2=2.6704; V1=m*v1; disp(V1,"volume in ft^3"); V2=m*v2; disp(V2,"volume in ft^3"); W=P2*(V2-V1)*144/778; disp(W,"Work done in Btu"); clear()
34c23ce47a9d3c089caf1e4a09e7276070d6090d
b3c9357cd1290921e67444ae057761959fdf24f1
/Curso de programação com Scilab/códigos/ex05_lista.sce
792ecec1699aa5dd399c29f1eb85e9e2d6abb59d
[]
no_license
joaolrneto/Scilab
91742520422426dc8a772997ef4a5d6376008b6e
f383f87e4585955cf19d0dae1b5c29f93c3f70b4
refs/heads/master
2023-02-05T20:13:03.677069
2020-12-30T14:53:09
2020-12-30T14:53:09
264,671,730
1
0
null
null
null
null
UTF-8
Scilab
false
false
381
sce
ex05_lista.sce
clc clear n=input("Tamnhao da amostra :") na=1 while n>0 cc=input("Conteúdo de Carbono :") dr=input("Dureza Rokwell") rt=input("Resistência a tração :") if cc<7 & dr>50 & rt>800000 grau=10 else if cc<7 & dr>50 grau=9 else if cc<7 grau=8 else grau=7 end end end printf("\nAmostra %d => grau %d",na,grau) na=na+1 n=n-1 end
b105d15ee3e6ba4af2b7dd1cec167b904da6cb14
b80969c9d72c732b0153d0de2b8fd28dc10d8a16
/Biologie/Site/sauvegarde/28.07.2016/www/Documents/simulation/initation_scilab/ex14.sci
9beca9a95575ae9ced655ce03979d2f90677a575
[]
no_license
adamdepossylux/stem_cells
6a2596a0734e3604b570cfdaa1e6cb798d13d7b7
e1ffdf24a223fea3a3606a0bd262067edc81f5b9
refs/heads/master
2020-04-01T17:26:21.772875
2017-05-10T15:15:09
2017-05-10T15:15:09
61,795,551
0
0
null
null
null
null
UTF-8
Scilab
false
false
33
sci
ex14.sci
a=rand(3,4) size(a) b=rand(1,10)
5b1204d4b6267c3162b443173067c41c48dc259c
449d555969bfd7befe906877abab098c6e63a0e8
/626/CH11/EX11.13/11_13.sce
c95f80967e42738ca4b555390bb6e51a74864e9a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
235
sce
11_13.sce
clear; clc; close; disp("Example 11.13") Cpg=2006 //in J/kg.K Cs=903 //J/kg.K X1=0.18 X2=0.16 Tr=1.057 Ir=(((1-X1)*Cpg+X1*Cs)*Tr/((1-X2)*Cpg+X2*Cs))^(1/2) //Ratio of specific impulse disp(Ir,"Raio of specific impulse :")
d83ed24d60e36831c366c4988e9cd2bd0f6f05f5
449d555969bfd7befe906877abab098c6e63a0e8
/416/CH14/EX14.2/example14_2.sce
3a9c5920dc3cb113e890e250999ae843507c3911
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
518
sce
example14_2.sce
clc clear disp('example14.2') p=100 //power of alternator f=50 //frequency h=5 //h constant of machine kW-sec kVA inl=50 //load suddenly increase by de=0.5 //time delay ke=h*p*10^3 //kinetic energy lke=inl*10^3*de //loss in kinetic energy nf=((1-(lke/ke))^(de))*f //now frequency fd=(1-nf/f)*100 //frequency deviation printf("kinetic energy stored at rated speed %.1e kW-sec \nloss in kinetic energy due to increase in load %.1e kW-sec \n new frequency %.3fHz \nfrequency deviation %.3f",ke,lke,nf,fd)
2787de3cedc3a81e063a4adfb17b319f0d359a90
449d555969bfd7befe906877abab098c6e63a0e8
/3131/CH11/EX11.1/11_1.sce
a009e5b1d03971b9331699536529ff7fd11862f8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
188
sce
11_1.sce
clear all; clc; disp("Ex 11_1") //From virtual displacements //From virtual - work equation theta1=atan(98.1/50)//in radian theta=theta1*180/%pi printf('\n\n Theta = %0.1f degrees',theta)
68e1cf848fd3361f349456d9232b270f41392061
91abce73dd7ffbf0edb061c54aae94cd4dc9a83f
/fossee_asgnmnt2.sci
70350865c82904df77387a3e3f14d24f9c56816e
[]
no_license
guptasankalp/FOSSEE-IIT-B-intern
042d1cdf45749780d3eba0bde69f5b6c861a1dcd
87afce3fa4db9005066f274d919f7e6594100cd4
refs/heads/master
2021-01-17T20:20:23.636254
2016-05-15T16:37:09
2016-05-15T16:37:09
58,843,096
0
1
null
null
null
null
UTF-8
Scilab
false
false
474
sci
fossee_asgnmnt2.sci
function [c] = addme(a,b) //Sir_this is the code generator // Output variables initialisation (not found in input variables) c=[]; // Display mode mode(0); // Display warning for floating point exception ieee(1); // Sankalp Gupta - jaipur engineering college & research centre // Tried to execute Part A quest 2 .. and completed it almost // Problem occuring in "coder" library in conversion c = mtlb_a(mtlb_double(a),mtlb_double(b)); endfunction
4e1bee00b7edc0586fed4677a4775b3d88b66a6e
584105ff5b87869494a42f632079668e4c3f82de
/sci_gateway/cpp/maximum.sci
b47f87ddf73beaac55863198f288203c33289257
[]
no_license
kevgeo/FOSSEE-Computer-Vision
0ceb1aafb800580498ea7d79982003714d88fb48
9ca5ceae56d11d81a178a9dafddc809238e412ba
refs/heads/master
2021-01-17T21:11:31.309967
2016-08-01T14:45:40
2016-08-01T14:45:40
63,127,286
6
0
null
null
null
null
UTF-8
Scilab
false
false
3,909
sci
maximum.sci
//************************************************** // Author : Asmita Bhar //************************************************** function varargout = maximum(image,varargin) [lhs,rhs] = argn(0); if rhs<1 then error(msprintf("Not enough input arguments")); end if rhs>9 then error(msprintf("Too many input arguments")); end if lhs>2 then error(msprintf("Too many output arguments")); end [iRows iCols]=size(image(1)) iChannels = size(image) valueOutputPort = 'true'; indexOutputPort = 'true'; dimension = 'All'; customDimension = 1; ROIPROCESSING = 'true'; Matrix_Col = []; Matrix_Row = []; flag=0; i=1; while(i<rhs-1) if strcmpi(varargin(i),'ValueOutputPort')==0 then valueOutputPort = varargin(i+1) elseif strcmpi(varargin(i),'IndexOutputPort')==0 then indexOutputPort = varargin(i+1) elseif strcmpi(varargin(i),'Dimension')==0 then dimension = varargin(i+1) elseif strcmpi(varargin(i),'ROIPROCESSING')==0 then ROIPROCESSING = varargin(i+1) if strcmpi(ROIPROCESSING,"true") & strcmpi(ROIPROCESSING,"false") then error(msprintf(" wrong input argument #%d,ROIPROCESSING not matched",i)) end elseif strcmpi(varargin(i),'MatrixCol')==0 then Matrix_Col = varargin(i+1) elseif strcmpi(varargin(i),'MatrixRow')==0 then Matrix_Row = varargin(i+1) elseif strcmpi(varargin(i),'CustomDimension')==0 then customDimension = varargin(i+1) flag=1; end i=i+2; end if (~strcmpi(valueOutputPort,'false') & ~strcmpi(indexOutputPort,'false')) error(msprintf("Both cannot be false at the same time")); end if (strcmpi(dimension,'Custom') & (flag==1)) error(msprintf("The CustomDimension property is not relevant in this configuration")); end image2 = roipoly(image, Matrix_Col, Matrix_Row) if(dimension=='All') then if(iChannels==1) then [val ind] = max(image2(1)) ind(3) = 1 elseif (iChannels==3) then val1 = max(image2(1)) val2 = max(image2(2)) val3 = max(image2(3)) if (val1>=val2) & (val1>=val3) then [val ind] = max(image2(1)) ind(3) = 1 elseif (val2>=val1) & (val2>=val3) then [val ind] = max(image2(2)) ind(3) = 2 else [val ind] = max(image2(3)) ind(3) = 3 end end t = ind(1); ind(1) = ind(2); ind(2) = t; end if (dimension=='Row') then if(iChannels==1) then [val ind] = max(image2(1),'c'); elseif(iChannels==3) then [val1 ind1] = max(image2(1),'c'); [val2 ind2] = max(image2(2),'c'); [val3 ind3] = max(image2(3),'c'); val = list(val1,val2,val2); ind = list(ind1,ind2,ind3); end end if (dimension=='Column') then if(iChannels==1) then [val ind] = max(image2(1),'r'); elseif(iChannels==3) then [val1 ind1] = max(image2(1),'r'); [val2 ind2] = max(image2(2),'r'); [val3 ind3] = max(image2(3),'r'); val = list(val1,val2,val2); ind = list(ind1,ind2,ind3); end end if (dimension=='Custom') then if(iChannels==1) then if(customDimension==1) then [val ind] = min(image2(1),'r'); elseif(customDimension==2) then [val ind] = min(image2(1),'c'); end elseif(iChannels==3) then if(customDimension==1) then [val1 ind1] = max(image2(1),'r'); [val2 ind2] = max(image2(2),'r'); [val3 ind3] = max(image2(3),'r'); val = list(val1,val2,val2); ind = list(ind1,ind2,ind3); elseif(customDimension==2) then [val1 ind1] = max(image2(1),'c'); [val2 ind2] = max(image2(2),'c'); [val3 ind3] = max(image2(3),'c'); val = list(val1,val2,val2); ind = list(ind1,ind2,ind3); end end end if (~strcmpi(valueOutputPort,'true') & ~strcmpi(indexOutputPort,'true')) then varargout = list(val,ind) elseif (~strcmpi(valueOutputPort,'true') & ~strcmpi(indexOutputPort,'false')) then varargout = list(val) elseif (~strcmpi(indexOutputPort,'true') & ~strcmpi(valueOutputPort,'false')) then varargout = list(ind) end endfunction
1d13d0c5f0a7605dc908b3c34e197795388bcef9
8bd525c791439c0bc9fc2403398da0abf8fdf796
/NewCase/edsonjPap.sce
7d0963c3f02e2e0bb117af9f581978eabc2bf394
[]
no_license
jfloreshu/Laboratorio3Linealizacion
42c06ed50ba8e1fe3c9e7e3399c3e8d4ef868263
ded2b0996adc3f0afe98d9600de9c4ba816a0e9d
refs/heads/master
2022-11-15T17:28:08.226830
2020-07-12T04:03:25
2020-07-12T04:03:25
278,912,213
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,112
sce
edsonjPap.sce
function xdot=edsonjPap(u1,u2,u3,u4,u5) // This is nonlinear Pendulum Model // Load the parameters exec('edsonjParametersPap.sce', -1); // state variables x=u1; v=u2; theta=u3; vartheta=u4; // control variables F=u5; // fuerza // Modelo MoDiCA-X //Estado 1-posicion e1dot= v; //Estado 2-Velocidad lineal respecto a 1 e2dot= ((F*(I+m*l^2))/((M+m)*(I+m*l^2)-(m^2*l^2*(cos(theta))^2)))-... ((v*b*(I+m*l^2))/((M+m)*(I+m*l^2)-(m^2*l^2*(cos(theta))^2)))+... ((m^2*l^2*g*sin(theta)*cos(theta))/((M+m)*(I+m*l^2)-(m^2*l^2*(cos(theta))^2)))+... ((m*l*vartheta^2*sin(theta)*(I+m*l^2))/((M+m)*(I+m*l^2)-(m^2*l^2*(cos(theta))^2))); //Estado 3-Angulo theta e3dot= vartheta; //Estado 4-Velocidad Angular respecto de 3 e4dot= -((m*l*cos(theta)*F)/((M+m)*(I+m*l^2)-(m^2*l^2*(cos(theta))^2)))+... ((v*b*m*l*cos(theta))/((M+m)*(I+m*l^2)-(m^2*l^2*(cos(theta))^2)))-... ((m^2*l^2*vartheta^2*sin(theta)*cos(theta))/((M+m)*(I+m*l^2)-(m^2*l^2*(cos(theta))^2)))-... ((m*g*l*(M+m)*sin(theta))/((M+m)*(I+m*l^2)-(m^2*l^2*(cos(theta))^2))); //Salida xdot xdot =[e1dot;e2dot;e3dot;e4dot]; endfunction
63c686d607db1b3030bacfa305fbccb7fd7068cd
4e7aac39f36916a964f4664f3198d7c87e762253
/scilab/find_lin_depend_separate_script.sce
f7aeb75bdd343eb84dc20b07d6dfed4445ea4007
[]
no_license
kirillin/manipulator_dynamics
349c01fd5aef8b42734edc497a7d48ee49aced9c
a773091ea5a62493b77885a0e2df6491282faa4c
refs/heads/master
2021-10-22T13:15:09.489858
2019-03-10T23:00:56
2019-03-10T23:00:56
108,987,774
1
0
null
null
null
null
UTF-8
Scilab
false
false
1,721
sce
find_lin_depend_separate_script.sce
clc(); clear; global no no = [36,37]+1; function init = converter(cols) global no //cols in scilab index numeration, i.e. starting with 1 //init in python index numeration, i.e. starting with 0 ind = 0; for i = 1:70 in = %t; for j = 1:length(no) if no(j) == i then in = %f; end end if in then ind = ind + 1; end if ind == cols init = i-1 return end end endfunction function answer=in(num, vec) for i = 1:length(vec) if num == vec(i) then answer = %t; return; end end answer = %f; endfunction N = 50; for i = 1:N name = "/media/data/evo/robotics_report/ros_packages/youbot_arm_control/calculations/data_for_identification/ee/EE" + string(i-1) + ".txt"; r = read(name, -1, 5); EE1(:,:,i) = r' end s = size(EE1(:,:,N)); printf("Succuessfully read; size of matrices: %dx%d\n", s(1), s(2)) sn = size(no) arr = zeros(1,s(2) - sn(2)); ind = 1 for i = 1:s(2) if ~in(i, no) then arr(ind) = i ind = ind + 1 end end ROW_NUM = 5; for i = 1:N for j = 1:s(2) - sn(2) E(i,j) = EE1(ROW_NUM:5:s(1),arr(j), i); end end sz = size(E); nc = sz(2); for i = 1:nc printf("checking of %d column:\n", i) B = E(:,i); if sum(B == zeros(sz(1),1)) == sz(1) then continue; end A = E(:, [1:i-1, i+1:nc]); if rank(A) >= rank([A,B]) then k = linsolve(A,-B); k = clean(k); printf("Column No %2d (%d) is dependent on other cols with koefficients", i, converter(i)); disp(k'); printf("\n") end end
6891d8eea4fff3c84ea7ece181edc83671a704a2
449d555969bfd7befe906877abab098c6e63a0e8
/1823/CH4/EX4.5/SolEx4_5.sce
86adc950162be1097dbe686224e4a3dbdf332aaa
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
366
sce
SolEx4_5.sce
//Find (a) VGG; ðbÞ RS, and (c) RD. //Solved Example Ex4.5 page no 118 clear clc Vgg=10 //V Vgsq=8 //V Idq=1*10^-3 //mA Rs=((Vgg-Vgsq)/Idq)/1000 //kΩ printf("\n Rs = %0.2f K ohm",Rs) Vdd=16 //V Vdsq=12 //V Idq=1 Rd=((Vdd-Vdsq-(Idq*Rs))/Idq) printf("\n Rd = %0.2f K ohm",Rd)
f2d30ee7a7826de584c029ae6190c6347c877c9b
80c4f32677abf57e118950a28c918a042269200c
/UI_Edit/Scenes/RRRR.sce
ea70c66d6c2ed548594af5961065725004f84385
[ "MIT" ]
permissive
ggcrunchy/ui-edit-v1
ab31697a8db0387e71edd1e61f3bcc3cd0bcbc7e
e5b1b1867f5f9bca941e3638a0274f8133711759
refs/heads/master
2021-01-19T14:24:13.514011
2012-10-16T07:09:52
2012-10-16T07:09:52
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
666
sce
RRRR.sce
<nButton>0</nButton> <nSlider>0</nSlider> <nListbox>0</nListbox> <nTextbox>1</nTextbox> <Textbox> <ID>"Textbox1"</ID> <m> <D>"HText"</D> <HT>"HText"</HT> <PE>"HText"</PE> <F>"HText"</F> </m> <max>11</max> <offset>0</offset> <cursor>2</cursor> <selectIndex>0</selectIndex> <selectCount>0</selectCount> <timeout>300</timeout> <bClick>true</bClick> <bDragOver>false</bDragOver> <text>"MIRMAL NEEP"</text> <pS> <f>"Main.png"</f> <x1>0.025240</x1> <y1>0.154356</y1> <x2>0.061298</x2> <y2>0.196970</y2> </pS> <tag>""</tag> </Textbox> <nCheckbox>0</nCheckbox> <nRadiobox>0</nRadiobox> <nPane>0</nPane> <nLayer>0</nLayer> <nFrame>0</nFrame>
ce72ea0bbc77e89714c76a0e54ec0039465b59af
449d555969bfd7befe906877abab098c6e63a0e8
/746/DEPENDENCIES/12_07.sci
030f1977a4465a97983dfaa373df98b076332490
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
442
sci
12_07.sci
//Stagnation temperature(in K): T0=296; //Stagnation pressure(in mm of Hg): p0=760; //Gauge pressure at section 1(in mm of Hg): p1=-18.9; //Gauge pressure at section2(in mm of Hg): p2=-412; //Mach number at 3: M3=1; //Gas constant: R=287; //Density of mercury(kg/m^3): dHg=13500; //Acceleration due to gravity(in m/sec^2): g=9.8; //Friction factor: f=0.0235; //Diameter of tube(in m): D=7.16*10^-3; //Value of k: k=1.4;
4e2e9efe2dec6f60381f805658b9bbb72f9bc8d2
ebd6f68d47e192da7f81c528312358cfe8052c8d
/swig/Examples/test-suite/scilab/name_runme.sci
dd901df616eb5da88f1de73ea543339af88751bb
[ "LicenseRef-scancode-swig", "GPL-3.0-or-later", "LicenseRef-scancode-unknown-license-reference", "GPL-3.0-only", "Apache-2.0" ]
permissive
inishchith/DeepSpeech
965ad34d69eb4d150ddf996d30d02a1b29c97d25
dcb7c716bc794d7690d96ed40179ed1996968a41
refs/heads/master
2021-01-16T16:16:05.282278
2020-05-19T08:00:33
2020-05-19T08:00:33
243,180,319
1
0
Apache-2.0
2020-02-26T05:54:51
2020-02-26T05:54:50
null
UTF-8
Scilab
false
false
199
sci
name_runme.sci
exec("swigtest.start", -1); try foo_2(); catch swigtesterror(); end if bar_2_get() <> 17 then swigtesterror(); end if Baz_2_get() <> 47 then swigtesterror(); end exec("swigtest.quit", -1);
ad894b4f8c444e6a4b1f06579a40066fdb0571cc
449d555969bfd7befe906877abab098c6e63a0e8
/51/CH1/EX3/1_3data.sci
c1fc983238c447030780e205c13b147a2a17155d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
67
sci
1_3data.sci
V=0.84;//ft^3 p=50;//psi T=70;//degree farenheit atmp=14.7;//psi
f6030672b0f06e3f4532209509ccffa1d30a6474
449d555969bfd7befe906877abab098c6e63a0e8
/1445/CH4/EX4.10/ch4_ex_10.sce
b60ae7828739754389ab4a93f5ccf377ee7994ba
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
474
sce
ch4_ex_10.sce
//CHAPTER 4- MEASURING INSTRUMENTS //Example 10 disp("CHAPTER 4"); disp("EXAMPLE 10"); //VARIABLE INITIALIZATION r1=2; //in Ohms (r1=2 is an assumption) r2=2; //in Ohms (since r1=r2) v=100; //in Volts //SOLUTION v1=(v*r1)/(r1+r2); //voltage divider law v2=(v*r2)/(r1+r2); //voltage divider law disp(sprintf("Reading of the 1st voltmeter is %d V",v1)); disp(sprintf("Reading of the 2nd voltmeter is %d V",v2)); //END
67fabf6258ca970152978c44c36bb993d33bb674
449d555969bfd7befe906877abab098c6e63a0e8
/2621/CH1/EX1.15/Ex1_15.sce
d74f92dca3d9e053a0d303f97655bff9ec7a0cb6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
307
sce
Ex1_15.sce
// Example 1.15 clc; clear; close; // Given data format('v',5); VCC= 15;// in V VBE= 0.7;// in V R1= 2.2;// in kΩ Beta= 220; I_REF= (VCC-VBE)/R1;//reference current in mA // Formula : I= IC= I_REF*(Beta/(Beta+2)) IC= I_REF*Beta/(Beta+2);// in mA disp(IC,"The value of current in mA is : ")
7f2e01a807e0f0bc598a21adbcc9e2f0040f0d20
56d13c2427d2b7adbd00abcd134498e9c8ec2b45
/stochastic_synthesis.sci
c295de206543598de8425011ae9aac1a40524f1f
[]
no_license
fedyok8/stochastic_FM_modulations
a5ebe820c5aa679d6fc369d7455ccea4b813bfee
4d74378bb72a246bffbe10e01b9b851ab9529664
refs/heads/master
2023-05-10T07:14:38.220407
2021-06-02T16:13:06
2021-06-02T16:13:06
373,055,023
0
0
null
null
null
null
UTF-8
Scilab
false
false
8,003
sci
stochastic_synthesis.sci
mode(-1);lines(0); function my_plot_and_save_v2(sig, title_prefix) my_plot_and_save_v2(sig, title_prefix, 256) endfunction function my_plot_and_save_v2(sig, title_prefix, N) prefix = title_prefix + ' ' f=scf(); fig_id=get(gcf(),"figure_id"); clf; f.color_map = jetcolormap(64); f.figure_size=[1000,1000] scf(fig_id);clf(fig_id); subplot(2,3,1); dsp1=fftshift(abs(fft(sig)).^2); plot2d(dsp1',style=2); //a=gca();a.data_bounds=[-0.5 0; 0.5 370]; xlabel('Normalized frequency'); ylabel('Squared modulus'); title(prefix + 'Spectrum'); [TFR,T,F]=tfrwv(sig); subplot(2,3,2); grayplot(T,F,TFR'); //axis xy xlabel('Time (points)'); ylabel('Normalized frequency'); title(prefix + 'Wigner-Ville') a=gca();a.tight_limits ='on'; [TFR,T,F]=tfrpwv(sig); subplot(2,3,3); grayplot(T,F,TFR'); //axis xy xlabel('Time (points)'); ylabel('Normalized frequency'); title(prefix + 'Pseudo Wigner-Ville') a=gca();a.tight_limits ='on'; //mode(1) [TFR,T,F]=tfrcw(sig); subplot(2,3,4); grayplot(T,F,TFR'); //axis xy xlabel('Time (points)'); ylabel('Normalized frequency'); title(prefix + 'Choi-Williams'); a=gca();a.tight_limits ='on'; [TFR,T,F]=tfrmh(sig); subplot(2,3,5); grayplot(T,F,TFR'); //axis xy a=gca();a.tight_limits ='on'; xlabel('Time (points)'); ylabel('Normalized frequency'); title(prefix + 'Margenau-Hill') [TFR,T,F]=tfrbj(sig); subplot(2,3,6); grayplot(T,F,TFR'); //axis xy xlabel('Time (points)'); ylabel('Normalized frequency'); title(prefix + 'Born-Jordan') a=gca();a.tight_limits ='on'; xs2png(gcf(), 'plots_synthesis/' + title_prefix + '.png'); endfunction clc; // Synthesis of a mono-component non stationary signal //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // One part of the Time-Frequency Toolbox is dedicated to the generation // of non stationary signals. In that part, three groups of M-files are // available: // // - The first one allows to synthesize different amplitude // modulations. These M-files begin with the prefix 'am'. // - The second one proposes different frequency modulations. These // M-files begin with 'fm'. // - The third one is a set of pre-defined signals. Some of them begin // with 'ana' because these signals are analytic, other have special names. // // The first two groups of files can be combined to produce a large class of // non stationary signals, multiplying an amplitude modulation and a // frequency modulation. For example, we can multiply a linear frequency // modulation by a gaussian amplitude modulation : scf(fig_id);clf(); fm1=fmlin(256,0,0.5); am1=amgauss(256); sig1=am1.*fm1; clf; plot2d(real(sig1),style=2); //axis([1 256 -1 1]); a=gca();a.data_bounds=[1 -1; 256 1]; xlabel('Time'); ylabel('Real part'); title_prefix='am1*fm1'; xs2png(gcf(), 'plots_synthesis/' + title_prefix + '.png'); my_plot_and_save_v2(sig1, title_prefix + '_distributions'); // By default, the signal is centered on the middle (256/2=128), and its // spread is T=32. If you want to center it at an other position t0, just // replace am1 by amgauss(256,t0). // A second example can be to multiply a pure frequency (constant frequency // modulation) by a one-sided exponential window starting at t=100 : scf(fig_id);clf(); fm2=fmconst(256,0.2); am2=amexpo1s(256,100); sig2=am2.*fm2; plot2d(real(sig2),style=2);//axis([1 256 -1 1]); a=gca();a.data_bounds=[1 -1 ; 256 1]; xlabel('Time'); ylabel('Real part'); title_prefix='am2*fm2'; xs2png(gcf(), 'plots_synthesis/' + title_prefix + '.png'); my_plot_and_save_v2(sig1, title_prefix + '_distributions'); // As a third example of mono-component non-stationary signal, we can // consider the M-file doppler.m : this function generates a modelization // of the signal received by a fixed observer from a moving target emitting // a pure frequency. scf(fig_id);clf(); [fm3,am3]=doppler(256,200,4000/60,10,50); sig3=am3.*fm3; plot2d(real(sig3),style=2); //axis([1 256 -0.4 0.4]); a=gca();a.data_bounds=[1 -0.4; 256 0.4]; xlabel('Time'); ylabel('Real part'); title_prefix='am3*fm3'; xs2png(gcf(), 'plots_synthesis/' + title_prefix + '.png'); my_plot_and_save_v2(sig3, title_prefix + '_distributions'); // This example corresponds to a target (a car for instance) moving // straightly at the speed of 50 m/s, and passing at 10 m from the observer // (the radar!). The rotating frequency of the engine is 4000 revolutions // per minute, and the sampling frequency of the radar is 200 Hz. // In order to have a more realistic modelization of physical signals, we // may need to add some complex noise on these signals. To do so, two M-files // of the Time-Frequency Toolbox are proposed : noisecg.m generates a complex // white or colored Gaussian noise, and noisecu.m, a complex white uniform // noise. For example, if we add complex colored Gaussian noise on the signal // sig1 with a signal to noise ratio of -10 dB, scf(fig_id);clf(); noise=noisecg(256,.8); sign=sigmerge(sig1,noise,-10); plot2d(real(sign),style=2); Min=min(real(sign)); Max=max(real(sign)); xlabel('Time'); ylabel('Real part'); //axis([1 256 Min Max]); a=gca();a.data_bounds=[1 Min; 256 Max]; title_prefix='am1*fm1+N'; xs2png(gcf(), 'plots_synthesis/' + title_prefix + '.png'); my_plot_and_save_v2(real(sign), title_prefix + '_distributions'); // the deterministic signal sig1 is now almost imperceptible from the noise. //////////////////////////////////////////////////////////////////////////// // Multi-component non stationary signals //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // The notion of instantaneous frequency implicitly assumes that, at each // time instant, there exists only a single frequency component. A dual // restriction applies to the group delay : the implicit assumption is that // a given frequency is concentrated around a single time instant. Thus, if // these assumptions are no longer valid, which is the case for most of the // multi-component signals, the result obtained using the instantaneous // frequency or the group delay is meaningless. // // For example, let's consider the superposition of two linear frequency // modulations : scf(fig_id);clf(); N=128; x1=fmlin(N,0,0.2); x2=fmlin(N,0.3,0.5); x=x1+x2; //// At each time instant t, an ideal time-frequency representation should //// represent two different frequencies with the same amplitude. The results //// obtained using the instantaneous frequency and the group delay are of //// course completely different, and therefore irrelevant : ifr=instfreq(x); subplot(211); plot2d(ifr,style=2); xlabel('Time'); ylabel('Normalized frequency'); //axis([1 N 0 0.5]); a=gca();a.data_bounds=[1 0 ;N 0.5]; fnorm=0:0.01:0.5; gd=sgrpdlay(x,fnorm); subplot(212); plot2d(gd,fnorm,style=2); xlabel('Time'); ylabel('Normalized frequency'); //axis([1 N 0 0.5]); a=gca();a.data_bounds=[1 0 ;N 0.5]; title_prefix='instfreq_sgrpdlay'; xs2png(gcf(), 'plots_synthesis/' + title_prefix + '.png'); my_plot_and_save_v2(ifr, 'instfreq' + '_distributions', 128); my_plot_and_save_v2(gd, 'sgrpdlay' + '_distributions', 128); //// So these one-dimensional representations, instantaneous frequency and //// group delay, are not sufficient to represent all the non stationary //// signals. A further step has to be made towards two-dimensional mixed //// representations, jointly in time and in frequency. //// To have an idea of what can be made with an time-frequency decomposition, //// let's anticipate the following and have a look at the result obtained //// with the Short Time Fourier Transform : scf(fig_id);clf(); tfrstft(x,'plot'); title_prefix='x'; xs2png(gcf(), 'plots_synthesis/' + title_prefix + '.png'); //// Here two 'time-frequency components' can be clearly seen, located around //// the locus of the two frequency modulations.
6f26cf233f27e72415bf28b827af5c512c927b8b
449d555969bfd7befe906877abab098c6e63a0e8
/3751/CH6/EX6.1/Ex6_1.sce
d43fbab83e5fe9e478c2f66303ffa01a665657ff
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,140
sce
Ex6_1.sce
//Fluid System By Shiv Kumar //Chapter 6 - Kaplan and Propeller Turbines //Example 6.1 //To Find (a)Discharge (b)Diameter of Hub And Diameter of Runner (c)Speed clc clear //Given: P=37; //Shaft Power, MW H=22; //Head, m eta_0=92/100; //Overall Efficiency dbyD=1/3; //Ratio of Diameters of Hub and Runner Kf=0.6; //Flow Ratio Ku=2; //Speed Ratio //Data Required: rho=1000; //Density of Water, Kg/m^3 g=9.81; //Acceleration due to gravity, m/s^2 //Computations //(a)Discharge, Q Q=P*10^6/(rho*g*H*eta_0); //m^3/s //(b)Diameter of Hub(d) And Diameter of Runner(D) d=sqrt(Q/((%pi/4)*Kf*sqrt(2*g*H)*(dbyD^-2-1))); //m D=d/dbyD; //m //(c) Speed,N N=Ku*60*sqrt(2*g*H)/(%pi*D); // rpm //Results printf("(a)Discharge, Q=%.2f m^3/s \n",Q) //The answer vary due to round off error printf(" (b)Diameter of Hub, d=%.2f m \n",d) printf(" Diameter of Runner, D=%.2f m \n",D) //The answer vary due to round off error printf(" (c)Speed, N=%.2f rpm \n",N) //The answer vary due to round off error
2b22009ccd0be078bd01d21a9eaead2ad209fb58
449d555969bfd7befe906877abab098c6e63a0e8
/905/CH3/EX3.5/3_5.sce
78a80578eb6ea5d730243784e0bb9402025201f2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,291
sce
3_5.sce
clear; clc; // Illustration 3.5 // Page: 171 printf('Illustration 3.5 - Page: 171\n\n'); // solution //*****Data*****// // a-ammonia T = 300; // [K] P = 101.3; // [kPa] ya_g = 0.6; // [ammonia concentration in bulk gas] xa_l = 0.12; // [ammonia concentration in bulk liquid] Fl = 3.5*10^-3; // [kmole/square m.s] Fg = 2*10^-3; // [kmole/square m.s] //*****// // Algebraic solution (a) // In gas phase substance 'A' is ammonia and 'B' is air // Assuming N_BG = 0 and sia_AG = 1 and // In liquid phase substance 'B' is water // Assuming N_BL = 0 and sia_AL = 1 // Then equation 3.29 reduces to 3.30 // Using equation 3.30, 3.8(a),3.6(a) // ya_i = 1-(1-ya_g)*((1-xa_l)/(1-xa_i))^(Fl/Fg) 3.30 // ya_i = 10.51*gamma*xa_i 3.8(a) // gamma = 0.156+0.622*xa_i*(5.765*xa_i-1) 3.6(a) deff('[y] = f12(xa_i)','y = 1-(1-ya_g)*((1-xa_l)/(1-xa_i))^(Fl/Fg) - 10.51*(0.156+0.622*xa_i*(5.765*xa_i-1))*xa_i'); xa_i = fsolve(0.2,f12); ya_i = 1-(1-ya_g)*((1-xa_l)/(1-xa_i))^(Fl/Fg); printf("The local gas and liquid interfacial concentrations are %f and %f respectively\n\n",ya_i,xa_i); // Using equation 3.28 N_a = Fg*log((1-ya_i)/(1-ya_g)); printf("The local ammonia mass-transfer flux is %e kmole/square m.s\n\n",N_a);
2ed2fe279cd85013ffd6fd54c6786818e71add35
449d555969bfd7befe906877abab098c6e63a0e8
/1367/CH15/EX15.8/15_8.sce
63a025683261351561ea2ca1f2e3b23f34e06f67
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
281
sce
15_8.sce
//Calculate Conduction electron and hole density //Ex:15.8 clc; clear; close; ni=1.5*10^16;//intrinsic carrier concentration per cu. m n=10^19;//no. of conduction electrons in per cu. m p=ni^2/n;//in per cu.m disp(p,"Conduction electron and hole density (per cubic m) = ");
b80c85b2c5a150ac3ec5a85b4eba4c8a77747e6f
449d555969bfd7befe906877abab098c6e63a0e8
/2294/CH7/EX7.11/EX7_11.sce
cfdf0668bfa1dc09e403bf5a806b82c334173e4a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
467
sce
EX7_11.sce
//Example 7.11 //Find the laplace transform . clc; t=-10:.01:10; for i=1:length(t) if t(i)>=0 then x(i)=exp(-2.*t(i))*sin(2*t(i)); else x(i)=0; end end s=%s; numfs=2; denfs=(s+2)^2+4; fs=syslin('c',numfs/denfs); fs1=csim('impulse',t,fs); disp(fs); f=scf(0); subplot(2,1,1); plot2d(t,x,2); xtitle('Phrasing'); xgrid; subplot(2,1,2); plot2d(t,fs1,1); xtitle('Solution'); xgrid; xs2jpg(0, 'problem109-plot-a.jpg');
c7d26581e56dddb6c9655578c117f77f902c094c
449d555969bfd7befe906877abab098c6e63a0e8
/3808/CH4/EX4.6/Ex4_6.sce
b21ef3a6230151e1090858b233e1f221115b680a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
285
sce
Ex4_6.sce
//Chapter 04:Number Theory and Cryptography clc; clear all; arr=[] n=input("Enter the number:") tn=n while n~=0 re=pmodulo(n,8) n=int(n/8) arr($+1)=re end mprintf("The octal equivalent of the decimal number %d is:",tn) for i=length(arr):-1:1 mprintf("%d",arr(i)) end
e149ec118c47bd8a836784ef23bbf10b0e269d3c
3cbee2296fd6b54f80587eead83813d4c878e06a
/sci2blif/sci2blif_added_blocks/Adaptive_element.sce
e18bbc2f43a605f7adfaa9fa50364c66dbf60f76
[]
no_license
nikhil-soraba/rasp30
872afa4ad0820b8ca3ea4f232c4168193acbd854
936c6438de595f9ac30d5619a887419c5bae2b0f
refs/heads/master
2021-01-12T15:19:09.899590
2016-10-31T03:23:48
2016-10-31T03:23:48
71,756,442
0
0
null
2016-10-24T05:58:57
2016-10-24T05:58:56
null
UTF-8
Scilab
false
false
796
sce
Adaptive_element.sce
//**************************** Adaptive_element ********************************** if (blk_name.entries(bl) == "Adaptive_element") then mputl("#Adaptive_element",fd_w); for ss=1:scs_m.objs(bl).model.ipar(1) l1_str= ".subckt nfet in[0]=net"+string(blk(blk_objs(bl),2+numofip))+"_"+string(ss)+" in[1]=net"+string(blk(blk_objs(bl),2+numofip))+"_"+string(ss)+" out[0]=net"+string(blk(blk_objs(bl),3+numofip))+"_"+string(ss); mputl(l1_str,fd_w); mputl(" ",fd_w); l1_str= ".subckt pfet in[0]=net"+string(blk(blk_objs(bl),2+numofip))+"_"+string(ss)+" in[1]=net"+string(blk(blk_objs(bl),3+numofip))+"_"+string(ss)+" out=net"+string(blk(blk_objs(bl),2+numofip))+"_"+string(ss); mputl(l1_str,fd_w); mputl(" ",fd_w); end mputl("",fd_w); end
dbef49d6377929d737eca4db7d40a47ef47584ef
449d555969bfd7befe906877abab098c6e63a0e8
/3137/CH8/EX8.5/Ex8_5.sce
19fa8e967d65bfbcd520b9933210f9ada4be93be
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
898
sce
Ex8_5.sce
//Initlization of variables F1=2000 //lb w=100 //lb/ft //Calculations R_r=(-F1*5+w*14*13)/20 //lb R_l=(F1*25+w*14*7)/20 //lb //Shear Force matrix V=[-2000,-2000,990,990,-410,0] //lb //Bending Moment matrix B=[0,-10000,-4060,840,0] //Length matrix for shear force X_v=[0,5,5.0001,11,20.89999,20.9] //Length matrix for bending moment X_b=[0,5,11,19.9,20.9] //Plotting subplot(221) plot(X_v,V) mtlb_hold on plot(X_v,zeros(1,length(X_v))) mtlb_hold off xlabel("Shear Force Diagram","Span","Shear Force") subplot(222) plot(X_b,B) mtlb_hold on plot(X_b,zeros(1,length(X_b))) mtlb_hold off xlabel("Bending Moment Diagram","Span","Bending Moment") //Result clc printf('The bending Moment and Shear Force diagrams have been plotted\n') //Note //The textbook does not specify the span and hence there seems to be a disagreement between the textbook and scilab solution.here the values have just been plotted
e15f2dbd3a24d48d4720040fafc7d158a87ee7dd
449d555969bfd7befe906877abab098c6e63a0e8
/991/CH6/EX6.15/Example6_15.sce
baa5c550d07b091b3c52d283c2a0c13fa4cca15c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Example6_15.sce
//Example 6.15 clc format(5) beta_dc=100 alpha_dc=beta_dc/(1+beta_dc) disp(alpha_dc,"The d.c. current gain of the transistor in CB mode is, alpha_dc = beta_dc/(1+beta_dc) = ")
688f3b02281b1c9f71834e1f8b4c5d9d189a51d5
d9361899121113cb290a6dac6f988fd5b829b917
/IntegracionNumerica.sci
ecdf0aae1ec2dd5c6ce201e8318d0c635df6774f
[]
no_license
AgustinGurvich/MetodosScilab
139243d925fe8b7381551d6c65b59f14b2d4069b
7fe62e9948160cf3fa9aa5844023307678bb79aa
refs/heads/master
2022-04-11T13:54:44.337939
2019-11-29T02:59:07
2019-11-29T02:59:07
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
5,262
sci
IntegracionNumerica.sci
// Metodo del trapcio Simple // Tiene mucho error de aproximacion function y = trapecio(f,x0,x1) y = (x1-x0)*(f(x0)+f(x1))/2 endfunction // Metodo del trapecio compuesto para n subdivisiones function y = trapecioComp(f,a,b,n) h = (b-a)/n contador = f(a)*1/2 + f(b)*1/2 for j = 1:n-1 contador = contador + f(a+j*h) end y = h*contador endfunction // Trapecio para f de 2 variables con x fijo function y = trapecioCompDoblex(f,xi,a,b,n) h = (b-a)/n contador = f(xi,a)*1/2 + f(xi,b)*1/2 for j = 1:n-1 contador = contador + f(xi,a+j*h) end y = h*contador endfunction // Trapecio para f de 2 variables con y fijo function y = trapecioCompDobley(f,yi,a,b,n) h = (b-a)/n contador = f(a,yi)*1/2 + f(b,yi)*1/2 for j = 1:n-1 contador = contador + f(a+j*h,yi) end y = h*contador endfunction // Metodo de simpson simple function y = simpson(f,a,b) h = (b-a)/2 c = a+h contador = h/3 funciones = f(a)+4*f(c)+f(b) y = contador*funciones endfunction // Metodo de simpson compuesto para n subdivisiones function y = simpsonComp(f,a,b,n) if modulo(n,2) <> 0 then disp("N no es par") y = %nan return end h = (b-a)/n y = f(a)+f(b) for i = 1:n-1 if modulo(i,2) == 0 then y = y+2*f(a+i*h) else y = y+4*f(a+i*h) end end y = y*h/3 endfunction // Metdodo de simpson para f de dos variables con x fija function y = simpsonCompDoblex(f,xi,a,b,n) if modulo(n,2) <> 0 then disp("N no es par") y = %nan return end h = (b-a)/n y = f(xi,a)+f(xi,b) for i = 1:n-1 if modulo(i,2) == 0 then y = y+2*f(xi,a+i*h) else y = y+4*f(xi,a+i*h) end end y = y*h/3 endfunction // Metdodo de simpson para f de dos variables con y fija function y = simpsonCompDobley(f,yi,a,b,n) if modulo(n,2) <> 0 then disp("N no es par") y = %nan return end h = (b-a)/n y = f(a,yi)+f(b,yi) for i = 1:n-1 if modulo(i,2) == 0 then y = y+2*f(a+i*h,yi) else y = y+4*f(a+i*h,yi) end end y = y*h/3 endfunction function y = polinomio(f,x0,x1) pol1 = poly([x1],"x",r) pol1 = pol1 / (x0-x1) pol1 = pol1 * f(x0) pol0 = poly([x0],"x",r) pol0 = pol0 / (x1-x0) pol0 = pol0 * f(x1) y = pol1 + pol0 endfunction // Metodo del Trapecio para f de 2 variables // Con dydx (Primero se integra 'y' luego 'x') function y = TrapecioBi1(f,a,b,c,d,n,m) // a,b valores de integral exterior // c,d valores de integral interior (Se reciben como funcion, si se quiere constante ingresar funciones constantes) // n intervalos entre a y b // m intervalos en c(x) d(x) hx = (b-a)/n for i = 0:n xi = a+i*hx G(i+1) = trapecioCompDoblex(f,xi,c(xi),d(xi),m) end contador = G(1)*1/2 + G(n+1)*1/2 for j = 1:n-1 contador = contador + G(j+1) end y = hx*contador endfunction // Metodo del Trapecio para f de 2 variables // Con dxdy (Primero se integra 'x' luego 'y') function y = TrapecioBi2(f,a,b,c,d,n,m) // a,b valores de integral exterior // c,d valores de integral interior (Se reciben como funcion, si se quiere constante ingresar funciones constantes) // n intervalos entre a y b // m intervalos en c(y) d(y) hy = (b-a)/n for i = 0:n yi = a+i*hx G(i+1) = trapecioCompDobley(f,yi,c(yi),d(yi),m) end contador = G(1)*1/2 + G(n+1)*1/2 for j = 1:n-1 contador = contador + G(j+1) end y = hy*contador endfunction // Metodo de Simpson para f de 2 variables // Con dydx (Primero se integra 'y' luego 'x') function y = SimpsonCompBi(f,a,b,c,d,n,m) // a,b valores de integral exterior // c,d valores de integral interior (Se reciben como funcion, si se quiere constante ingresar funciones constantes) // n intervalos entre a y b // m intervalos en c(x) d(x) // m y n deben ser par if modulo(n,2) <> 0 then disp("N no es par") y = %nan return end hx = (b-a)/n for i = 0:n xi = a+i*hx G(i+1) = simpsonCompDoblex(f,xi,c(xi),d(xi),m) end y = G(1)+G(n+1) for i = 1:n-1 if modulo(i,2) == 0 then y = y+2*G(i+1) else y = y+4*G(i+1) end end y = y*hx/3 endfunction // Metodo de Simpson para f de 2 variables // Con dxdy (Primero se integra 'x' luego 'y') function y = SimpsonCompBi(f,a,b,c,d,n,m) // a,b valores de integral exterior // c,d valores de integral interior (Se reciben como funcion, si se quiere constante ingresar funciones constantes) // n intervalos entre a y b // m intervalos en c(y) d(y) // m y n deben ser par if modulo(n,2) <> 0 then disp("N no es par") y = %nan return end hy = (b-a)/n for i = 0:n yi = a+i*hx G(i+1) = simpsonCompDobley(f,yi,c(xi),d(xi),m) end y = G(1)+G(n+1) for i = 1:n-1 if modulo(i,2) == 0 then y = y+2*G(i+1) else y = y+4*G(i+1) end end y = y*hy/3 endfunction
19e878f10daa046d74971351f21a3af26d215817
4a1effb7ec08302914dbd9c5e560c61936c1bb99
/Project 2/Experiments/GAssist-Interval-C/results/GAssist-Intervalar-C.vowel-10-1tra/result3s0.tst
38f3f05c14b98399e68e130cfd0a95e5d67f83ac
[]
no_license
nickgreenquist/Intro_To_Intelligent_Systems
964cad20de7099b8e5808ddee199e3e3343cf7d5
7ad43577b3cbbc0b620740205a14c406d96a2517
refs/heads/master
2021-01-20T13:23:23.931062
2017-05-04T20:08:05
2017-05-04T20:08:05
90,484,366
0
0
null
null
null
null
UTF-8
Scilab
false
false
972
tst
result3s0.tst
@relation vowel @attribute TT integer[0,1] @attribute SpeakerNumber integer[0,14] @attribute Sex integer[0,1] @attribute F0 real[-5.211,-0.941] @attribute F1 real[-1.274,5.074] @attribute F2 real[-2.487,1.431] @attribute F3 real[-1.409,2.377] @attribute F4 real[-2.127,1.831] @attribute F5 real[-0.836,2.327] @attribute F6 real[-1.537,1.403] @attribute F7 real[-1.293,2.039] @attribute F8 real[-1.613,1.309] @attribute F9 real[-1.68,1.396] @attribute Class{0,1,2,3,4,5,6,7,8,9,10} @inputs TT, SpeakerNumber, Sex, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9 @outputs Class 9 2 0 0 1 0 3 2 2 2 6 6 3 2 5 6 9 9 9 0 10 9 6 6 8 7 1 2 6 6 5 6 1 2 4 6 8 6 1 0 7 6 10 6 6 6 7 6 8 6 2 2 9 9 4 6 4 6 3 2 1 9 10 2 9 9 10 2 4 2 5 9 0 0 2 2 7 7 8 2 10 2 9 8 0 0 2 2 8 2 1 0 2 2 7 7 6 6 5 2 10 2 7 7 9 9 3 2 5 2 10 9 7 4 8 7 4 9 2 9 0 0 0 0 8 7 4 6 5 6 8 7 1 6 2 0 0 0 1 6 4 6 2 2 6 6 6 7 6 6 8 9 7 7 3 2 9 2 0 0 7 8 0 0 10 9 2 2 5 6 3 2 7 7 3 2 10 6 3 6 1 9 5 2 3 6 4 6 5 2 0 9 4 6 9 9 6 6
5b5ee81c86f7c3af4e309490709ea13c4698b81d
449d555969bfd7befe906877abab098c6e63a0e8
/1962/CH6/EX6.2/example6_2.sce
df06db7768c38b096a53bf31516ace977737724f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
269
sce
example6_2.sce
//example 6.2 //page 233 clc; funcprot(0); //initialisation of variable rhom=998.2;//density rhop=858.45;//density mum=1.005*10^-3;//viscosity mup=8/1000;//viscosity Vp=2.5*10;//velocity Vm=Vp*rhop*mum/mup/rhom; disp(Vm,"velocity of model (m/s):"); clear
f5b751449ae9b48b0c965af262768f9461df9f24
449d555969bfd7befe906877abab098c6e63a0e8
/2252/CH5/EX5.18/Ex5_18.sce
ace78dfb571105ee297f9fc8bb9d61a1a2479283
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
660
sce
Ex5_18.sce
mu_not=4D-7*%pi //calculating pull on the armature mu_r=300//rel permeability of iron AT=2000//total ampere turns li=50D-2//length of iron path lg=1.5D-3//length of air gap B=AT/(li/(mu_not*mu_r)+.796*lg*10^6) A=3D-4//area of each pole shoe x=B^2*A/(2*mu_not)//pull on the armature at each pole p=2*x mprintf("Total pull due to both the poles=%f N\n",p) //considering the gap closes to .2 mm lg=.2*1D-3 B=AT/(li/(mu_not*mu_r)+.796*lg*10^6) x=B^2*A/(2*mu_not) p=2*x mprintf("When the gap closes to .2 mm, total force needed due to both the poles, to pull the armature away=%f N",p) //answer vary from the textbook due to round off error
70c2c0fd66faf6520720ca6175d753905d0ddf2f
449d555969bfd7befe906877abab098c6e63a0e8
/2863/CH7/EX7.14/ex7_14.sce
f81fdade2a4093ee25f45f461676db923f5a3044
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
144
sce
ex7_14.sce
//chapter 7 printf("\n"); ht=40; hr=25; f=90*10^6; p=35; LOS=4.12*(sqrt(ht)+sqrt(hr)); printf("the line of sight distance is %gm",LOS);
447a3e9302371acd044c0669807153cdf4919310
449d555969bfd7befe906877abab098c6e63a0e8
/3769/CH12/EX12.20/Ex12_20.sce
4ddab89eb09996a0e0dbb8092db3e0e9bd5cdf5a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
288
sce
Ex12_20.sce
clear //Given E=12 R=30.0 //ohm L=0.22 //Calculation I0=E/R I=I0/2.0 P=E*I dl=(E-(I*R))/L du=L*I*dl //Result printf("\n (i) Energy being delivered by the battery is %0.3f W", P) printf("\n (ii) ENergy being stored in the magnetic field of inductor is %0.3f W",du)
45d3f08fc6dbccfb4727b2f90cce7f54b46662d7
449d555969bfd7befe906877abab098c6e63a0e8
/2375/CH3/EX3.22/ex3_22.sce
d8f9633f20353d8216eadb8d892c1705e4d38174
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,431
sce
ex3_22.sce
// Exa 3.22 (Miss printed as example 3.19) clc; clear; close; format('v',6) // Given data S = 10; bita = 50; h_fe = bita; V_CC= 20;// in V V_CE = 10;// in V R_C = 2;// in k ohm I_C = 4;// in mA I_B =I_C/bita;// in mA // Applying KVL to collector loop, V_CC -I_C*R_C - V_CE - I_E*R_E = 0 or R_E = (V_CC -I_C*R_C - V_CE)/(I_C+I_B);// in k ohm (on putting I_E= I_C+I_B) R_E= round(R_E*10^3);// in ohm disp(R_E,"The value of R_E in ohm is"); // Formula S = (1+bita)*( (1 + (R_B/R_E))/( (1+bita) + (R_B/R_E) ) ) or R_B= (1+bita)*(1-S)*R_E/(S-1-bita);// in ohm // But R_B= R1 || R2= R1*R2/(R1+R2) => R2/(R1+R2)= R_B/R1 (i) // Calculation of R1 and R2 : V_BE= 0.2;// in V // Applying KVL to input loop, V_R2= V_BE+(I_C+I_B)*10^-3*R_E;// in V // But V_R2= R2*V_CC/(R1+R2) => R2/(R1+R2)= V_R2/V_CC (ii) // On comparing eq (i) and (ii) R1= R_B*V_CC/V_R2;// in ohm R2= R1*V_R2/(V_CC-V_R2);// in ohm R1= R1*10^-3;// in k ohm R2= R2*10^-3;// in k ohm disp(R1,"The value of R1 in k ohm is : ") disp(R2,"The value of R2 in k ohm is : ") // Effect of Reducing S or 3 : S=3; // Formula S = (1+bita)*( (1 + (R_B/R_E))/( (1+bita) + (R_B/R_E) ) ) or R_B= (1+bita)*(1-S)*R_E/(S-1-bita);// in ohm R_B= R_B*10^-3;// in k ohm disp(R_B,"When S<=3, the value of R_B in k ohm is : ") disp("Thus S is reduced below 3 at the cost of reduction of it''s input impedance")
ee63da11a7fbb4086338c85a07da383da8dd6e05
449d555969bfd7befe906877abab098c6e63a0e8
/2102/CH6/EX6.9/exa_6_9.sce
9fa8b5622e6da5f69215682547820ff1c6622be3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
332
sce
exa_6_9.sce
// Exa 6.9 clc; clear; close; // Given data I_DSS= 10;// in mA I_DSS= I_DSS*10^-3;// in A I_DS= 2.5;// in mA I_DS= I_DS*10^-3;// in A V_P= 4.5;// in V // Formula I_DS= I_DSS*(1-V_GS/V_P)^2 V_GS= V_P*(1-sqrt(I_DS/I_DSS));// in volts gm= 2*I_DSS/V_P*(1-V_GS/V_P);// in A/V disp(gm*10^3,"Transconductance in mA/V is : ")
a21bf3799e0d01a7774ca9e6b7936a3c1e81b709
28a8d47c4d79b231f8bebc28925792a290f67e9f
/bk/others/prototype/test/test_new_model.tst
f32d39d7f2ed4f5920c623f770f9832a9b8df90b
[]
no_license
ZVlad1980/doo
a1fe7d18ccfd0acf6ced7dbb33927c86a925aae8
e81be8f524b78b9a6ec06b7f83a8c13354fc6412
refs/heads/master
2021-08-17T02:03:54.553822
2017-11-20T17:21:03
2017-11-20T17:21:03
111,440,129
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,529
tst
test_new_model.tst
PL/SQL Developer Test script 3.0 41 -- Created on 22.08.2014 by ZHURAVOV_VB declare -- Local variables here r xxapps.xxapps_service_raw_block; start_time timestamp; l_callback_id varchar2(32); begin --dbms_session.reset_package; return; /*select id into l_callback_id from xxdoo.xxdoo_bk_callbacks_t where rownum = 1; --*/ xxdoo.xxdoo_utl_pkg.init_exceptions; start_time := current_timestamp; --r := xxdoo_ee.xxdoo_bk_ee_gateway_pkg."request"("path" => '/journals/New', "data" => null); /*r := xxdoo_ee.xxdoo_bk_ee_gateway_pkg."request"( "book_name" => 'journals', "path" => null, --'?callback=4', "inputs" => null, "meta" => null); --*/ r := xxdoo_ee.xxdoo_bk_ee_gateway_pkg."request"( "book_name" => 'journals', "path" => '/raw/DEV12/oralce.organaizers.journals/call/ALL/New?callback=9', "inputs" => '', "meta" => 'journals.id.1'-- ); --*/ -- dbms_output.put_line(r.clob_value); -- -- -------------------------------------------------------------------------- --dbms_output.put_line('---------------------------------------------'); dbms_output.put_line('Total processing time = ' || regexp_substr(to_char(current_timestamp - start_time),'[^ ]+',1,2)); xxdoo.xxdoo_utl_pkg.show_errors; --end loop; -- exception when others then xxdoo.xxdoo_utl_pkg.fix_exception; xxdoo.xxdoo_utl_pkg.show_errors; end; 0 2 self.path
57a31b3051d345a6c0343d0b80b6afb25395f41a
33d7960e39a3e71591538dccbe1dd4014c377e78
/Sample Solution/CompFin_2017_SS_Exercise_25_QF.sce
29b47fdebf4af1ccc5519c8761ad5c1e80fafc92
[]
no_license
wiiwins/Compfin
529e2997994babb9e3795283ddbd8ec782131148
2629685421e970a369ec797b76dda3d2803bcbcf
refs/heads/master
2020-05-18T01:25:39.357847
2019-06-27T11:21:46
2019-06-27T11:21:46
184,090,400
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,649
sce
CompFin_2017_SS_Exercise_25_QF.sce
//Write function for computing the price of a European option in the BS-model using Monte-Carlo with control variate S(T) function [V0, epsilon, beta] = EuOption_BS_MC_CV (S0, r, sigma, T, K, M, g) // Determine beta = Cov(V(T),S(T)) / Var(S(T)) by Monte Carlo simulation. X = grand(M, 1, 'nor', 0, 1); ST = S0*exp( (r-0.5*sigma^2)*T + sigma*sqrt(T)*X ); VT = g(ST); Covar = mean( (ST-exp(r*T)*S0) .* (VT-mean(VT)) ); beta = Covar / variance(ST); // (In the Black-Scholes model, we could compute Var(S(T)) also // analytically.) // Compute Monte Carlo estimator using the (discounted) stock as control variate. X = grand(M, 1, 'nor', 0, 1); ST_hat = S0*exp( (r-0.5*sigma^2)*T + sigma*sqrt(T)*X ); Y = g(ST_hat)-beta*ST_hat; V0 = exp(-r*T)*mean(Y) + beta*S0; // Compute radius of 95% confidence interval (not part of the exercise). epsilon = 1.96 * sqrt(variance(Y)/M); endfunction // test parameters S0 = 120; r = 0.05; sigma = 0.2; T = 1; K = 100; M = 1000000; //Payoff function for the European call function y=g(x) y=max(x-K,0); endfunction // display result for test parameters [V0, epsilon, beta] = EuOption_BS_MC_CV (S0, r, sigma, T, K, M, g); disp("Price of European call by use of Monte-Carlo simulation with control variate: " + string(V0) + ", radius of 95% confidence interval: " + string(epsilon) + " Beta chosen in the estimation procedure:" + string(beta)); //Old function that computes the price of a European option in the BS-model using plain Monte-Carlo from C-Exercise 21 function [V0, epsilon] = EuOption_BS_MC (S0, r, sigma, T, K, M, g) // Generate an Mx1-vector of independent samples from // standard normally distributed random variables. X = grand(M, 1, 'nor', 0, 1); ST = S0*exp( (r-0.5*sigma^2)*T + sigma*sqrt(T)*X ); // Compute Monte-Carlo estimator. Y = exp(-r*T)*g(ST); V0 = mean(Y); // Compute radius of 95% confidence interval epsilon = 1.96 * sqrt(variance(Y)/M); endfunction [V0, epsilon] = EuOption_BS_MC (S0, r, sigma, T, K, M, g); disp("Price of European call by use of plain Monte-Carlo simulation: " + string(V0) + ", radius of 95% confidence interval: " + string(epsilon)); //Closed formula for the price of a European Call in the BS-model function V0=BS_EuCall_Closed(S0, r, sigma, T, K) d1=(log(S0/K)+r*T+sigma^2/2*T)/(sigma*sqrt(T)); d2=d1-sigma*sqrt(T); V0=S0*cdfnor("PQ",d1,0,1)-K*exp(-r*T)*cdfnor("PQ",d2,0,1) endfunction V0=BS_EuCall_Closed(S0, r, sigma, T, K); disp("Price of European call by use of the closed formula: " + string(V0));
032cb49b045be9002917c325231882380922f60c
449d555969bfd7befe906877abab098c6e63a0e8
/1979/CH10/EX10.10/Ex10_10.sce
60f0eef066e95508bd9540cd2f27abc4066b8254
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
603
sce
Ex10_10.sce
//chapter-10 page 489 example 10.10 //============================================================================== clc; clear; //For a parabolic antenna Gp=1500;//Power gain w=0.1;//wavelength in m //CALCULATION D=sqrt(Gp)*(w/(%pi));//Diameter of the circular mouth of a parabolic antenna in m HPBW=58*(w/D);//Half Power BeamWidth of the antenna in deg //OUTPUT mprintf('\nDiameter of the circular mouth of a parabolic antenna is D=%1.4f m \nHalf Power BeamWidth of the antenna is HPBW=%1.3f deg',D,HPBW); //=========================END OF PROGRAM===============================
1be48766bb5fa20c807855d7dd07b9348648c27d
449d555969bfd7befe906877abab098c6e63a0e8
/1442/CH10/EX10.3/10_3.sce
2657ee844c8dc88601485af9d3c30c800ac8dfd6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
239
sce
10_3.sce
clc //initialisation of variables p0= 100 //kPa V= 0.12 //m^3 T0= 20 //C //CALCULATIONS I= p0*V dS= I/(273.15+T0) //RESULTS printf (' Irreversibility of the process= %.1f kJ',I) printf (' \n Entropy of the process= %.4f kJ',dS)
fa140a7d866fa529bbdd8b0b0ac21c6678427b21
27fecbbeb6c49dcf03b9bddf1b867c31e13a3825
/Simulações/Relatório 01/relatório 01_kiu.sci
5f4da461c3e109c3a06b4e05f70b11b963cbe57e
[]
no_license
LucasHattoriCosta/Poli
42c9fc2d34c31e01336265fbdac3e4921d56e096
b1ac609c3675539b4e921909c35ea196ffc44df3
refs/heads/master
2023-03-15T12:22:03.745943
2020-06-29T17:32:48
2020-06-29T17:32:48
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,242
sci
relatório 01_kiu.sci
//Condições iniciais alfa = %pi/6; s0 = 0; v0 = 0.1; k1 = 1/v0; k2 = -log(k1); t = 0:0.05:10; g = 9.78; m = 0.033; Cd = 0.3; rho = 1.2; A = 0.0003; c = 0.1; l = -c/m; clf() function [posicao]=s(t) posicao = t*sqrt((2*m*g*sin(alfa))/rho*Cd*A) + k2 //+ log((rho*Cd*A*t + (1/v0))*(1/rho*Cd*A)) endfunction scf(1) //xtitle('Posição do carrinho em função do tempo') plot(t, s) //function [velocidade]=v(t) //velocidade = (1/rho*Cd*A*t+k1)+sqrt((2*m*g*sin(alfa))/rho*Cd*A) //endfunction v = (1/rho*Cd*A*t+k1)+sqrt((2*m*g*sin(alfa))/rho*Cd*A) scf(0) xtitle('Velocidade do carrinho em função do tempo') plot(t, v) function [aceleracao]=a(t) aceleracao = numderivative(v, t) endfunction //plot(t, a) function energiac=K(v) energiac = ((m*v)^2)/2 endfunction //plot(t, T) function energiap=V(s) energiap = -m*g*(s - s0)*sin(alfa) endfunction //plot(t, V) function energia=E(V, K) energia = V + K endfunction //plot(t, E) - VERIFICAR, NÃO ESTAVA PLOTANDO function normal=N(t) normal = m*g*cos(alfa) endfunction //plot(t, N) //O único caso em que ocorre inversão do sentido é nas condições 3) (velocidade inicial negativa) //Analiticamente obtém-se t=0.2040s //t = (-v0)/(g*sin(alfa)) //linsolve(t, v)
582e0cd85bd13ddf5fdfa6068ad0aadbc3e31dfb
717ddeb7e700373742c617a95e25a2376565112c
/587/CH3/EX3.13/example3_13.sce
c5605827b5712ffeb9c9ba2019168b59ea4e689b
[]
no_license
appucrossroads/Scilab-TBC-Uploads
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
refs/heads/master
2021-01-22T04:15:15.512674
2017-09-19T11:51:56
2017-09-19T11:51:56
92,444,732
0
0
null
2017-05-25T21:09:20
2017-05-25T21:09:19
null
UTF-8
Scilab
false
false
592
sce
example3_13.sce
clear; clc; //Example3.13[Heat Loss from Buried Steam Pipes] //Given:- T_esurf=10;//Surface temperatur of earth[degree Celcius] T_psurf=80;//Outer surface temperature of pipe[degree Celcius] k_soil=0.9//Thermal Conductivity of soil[W/m.degree Celcius] L=30;//Length of pipe[m] D=0.1;//Diameter of pipe[m] z=0.5;//Depth at which pipe is kept[m] //Solution:- //Calculating shape factor if(z>(1.5*D))then S=(2*%pi*L)/(log((4*z)/D)), end;//[m] disp(S,"Shape factor is") Q_=S*k_soil*(T_psurf-T_esurf);//[W] disp("W",Q_,"The steady rate of heat transfer from the pipe is")
435067a0a83ea508fc44eaff9049d7f28af62fdf
bbdc72de6d7eef74128eaf52b1f040053943de38
/Code/LagrangePol.sci
494a68cc6770c3a87ba5eb6606792c979308e1e6
[]
no_license
Abdel-BHPC/Numerical-analysis
46bb4dbcd26e00d6c4f405fe59a1ba433b8b72e0
2bcdb80d9ab8890d036eac3cce92b595abb88784
refs/heads/main
2023-03-02T14:11:06.939206
2021-02-08T08:40:07
2021-02-08T08:40:07
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
557
sci
LagrangePol.sci
function y= LagrangePol(x, xj, i) // Computes L_i(x) with interpolation points xj // at points x // Entry : x=vector of points where to evaluate L_i numer = ones(x); // init numer with ones of size of x denom = 1.0; l = length(xj); setindex = setdiff(1:l, i); // extract i from the index disp(setindex) // for j=setindex // loop j<>i numer = numer .* (x-xj(j)); denom = denom .* (xj(i)-xj(j)); end; y = numer / denom; endfunction
234a5ce5146ade878139ca0e29fe4e8974ef87e3
fdc5047b7bf8122bad1e621df236b0481226c36e
/virtualProcessComm_V4/demos/hrtSerialRead.sce
d4a428f2862082d280862c0722016bc3f2f50570
[]
no_license
jpbevila/virtualHartSci
aea3c6ba23d054670eb193f441ea7de982b531cc
a3f5be6041d230bd9f0fd67e5d7efa71f41cfca5
refs/heads/main
2023-07-26T23:05:28.044194
2021-09-09T11:50:59
2021-09-09T11:50:59
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
619
sce
hrtSerialRead.sce
// // This help file was automatically generated from hrtSerialRead.sci using help_from_sci(). // PLEASE DO NOT EDIT // mode(1) // // Demo of hrtSerialRead.sci // halt() // Press return to continue serial = hrtSerialOpen(3,'19200,n,8,1'); [n,status] = hrtSerialStatus(serial); if(n(1)>0)then strFrame=hrtSerialRead(serial,n(1)); end halt() // Press return to continue halt() // Press return to continue //========= E N D === O F === D E M O =========// // // Load this script into the editor // filename = "hrtSerialRead.sce"; dname = get_absolute_file_path(filename); editor ( fullfile(dname,filename) );
d488a57dd46d2a56f0db71ac5159892a6ccaeadc
449d555969bfd7befe906877abab098c6e63a0e8
/42/CH13/EX13.2/sadiku_13_2.sce
b4c6cb804517209f5d177af2a29a4d5b07b2b1a3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
459
sce
sadiku_13_2.sce
clear; clc; format('v',6); c=3*10^8; f=50*10^6; disp(c/(2*f),'Length of halfdipole in meter'); function[P,I]=curpow(E,P,r) n=120*%pi; R=73; I=E*2*r*%pi*sin(P)/(n*(cos((%pi/2)*cos(P)))); P=(I*I*R)/2; disp(I*1000,'Current fed to antenna in mA'); disp(P*1000,'Power radiated by Antenna in mWatt'); endfunction curpow((10*(10)^-6),%pi/2,500*10^3); Zl=73+42.5*%i,Zo=75; T=(Zl-Zo)/(Zl+Zo); s=(1+abs(T))/(1-abs(T)); disp(s,'Standing wave ratio');
a4bfbb728333cfbe0e8853a825b53a835cb1b311
449d555969bfd7befe906877abab098c6e63a0e8
/2882/CH14/EX14.1/Ex14_1.sce
c90e588dbe1a27da3a738363a7e327be249e15c5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
765
sce
Ex14_1.sce
//Tested on Windows 7 Ultimate 32-bit //Chapter 14 Operational Amplifiers Pg no. 418 clear; clc; //Given vICM1=0;//input common mode vOltage in volts vOCM1=5.4;//output common mode vOltage in volts vICM2=1.05;//input common mode vOltage in volts vOCM2=5.0;//output common mode vOltage in volts vO2=5.4;//vOltage at collector of transistor Q2 in volts //Solution disp("vOCM=5.4 Volts"); vO1=2*vOCM1-vO2;//vOltage at collector of transistor Q1 in volts printf("Voltage at collector of transistor Q1 vO1 = %.1f volts\n ",vO1); disp("vOCM=5.0 Volts"); vO1=2*vOCM2-vO2;//vOltage at collector of transistor Q1 in volts printf("Voltage at collector of transistor Q1 vO1 = %.1f volts",vO1); //calculation for vOCM=5 Volts not done in textbook
661b9cfe20c08ab91cd155e98ca8a87a44c7943a
fd6e45f66c41ad779a3d47c3bf8ebfa140d3d657
/P3 - Non-linear equations /Métodos/2- bisect CHECK.sci
f2cc33ea1b368cbd15ee07240968835cfe4965f1
[]
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
938
sci
2- bisect CHECK.sci
function y=fea(x) y=(%e)^x+2 - x^3 endfunction //MÉTODO DE LA BISECCIÓN //Método global: converge para toda función contínua con a y b adecuados. function c=bisect2(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 disp(c) 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 // Tiene menor orden de convergencia (El órden de conv de una sucesión {x_n}-> z es max p : lim n-> inf |x_n+1 - z| / |x_n - z|^p)
908a2a5e79a28697ebd9385df091eaca262c29e7
beca18778f40d44e713160c5b0e8136d8a92cad8
/scilab/acc_limited_fuel.sce
bed05c43c58212c23ffaab25d972b089ba0438b2
[]
no_license
thomasantony/enjomitch-orbiter
9542df3dfc83ce0a6cf06ec78dca91b4c1a0babf
83967b7bf8f8c49d1e90f7b904846e66d1ad6e37
refs/heads/master
2022-12-02T07:47:03.976695
2020-03-22T13:54:57
2020-03-22T13:54:57
286,159,679
0
0
null
null
null
null
UTF-8
Scilab
false
false
292
sce
acc_limited_fuel.sce
t = 486; mfull = 24500; mflow = 7; thrust = 280000; g = 9.81; a = thrust / ( mfull - mflow * t ) - g; a0 = thrust / ( mfull ) - g; s = a * t^2 / 2 * (1 + a/g ); s2 = a * t^2 / 2 * (1 + a/g ); a = thrust / ( mfull - mflow * t ) v = a* t t = mfull * v / ( thrust + mflow*v)
5b1c0496b3d89c95d0f17d24cfbe7220cf8276c7
449d555969bfd7befe906877abab098c6e63a0e8
/275/CH1/EX1.1.35/Ch1_1_35.sce
e7498ceac08eee1e287e962e12384642ad7add07
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
218
sce
Ch1_1_35.sce
clc disp("Example 1.35") printf("\n") disp("find out series resistance in circuit fig 1.32") V=3 rd=0.5 Vr=0.3 IF=174*10^-3 //resistance R=(V-Vr-(IF*rd))/IF printf("The value of resistance is \n%f ohm\n",R)
3af2c7eaede589f9e379a52f68cc237bd0211560
449d555969bfd7befe906877abab098c6e63a0e8
/323/CH2/EX2.60/ex2_60.sci
365112731afc2fab78ecfee04ddf429ce58c15c6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
345
sci
ex2_60.sci
//Chapter 2,Ex2.60,Pg2.76 clc; disp("Refer to diagram shown in the question") A=[-7 1 0;-1 6 -3;0 3 -3] B=[-10;0;20] I=A\B printf("\n I3=%.2f A \n",I(3)) printf("\n In= %.2f A \n",-I(3)) Rn=[(6*1/(6+1)+2)]*3/(3+[(6*1/(6+1)+2)]) printf("\n Rn=%.2f A \n",Rn) //Calculation of Il Il=13.17*(1.46/(1.46+10)) printf("\n Il=%.2f A \n",Il)
82a4fe32583a24ff8a339b6469cd5f3c051bb148
449d555969bfd7befe906877abab098c6e63a0e8
/1409/CH8/EX8.14/8_14.sce
aa566fbf8b6f207e7d79fadb782f90554709aede
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,173
sce
8_14.sce
clc; //page no 8-52 //Example 8.14 //Let Csmax/Csmin be denoted by C fmin=500;//in kHz fmax=1600;//in kHz IF=465;//in kHz C=(fmax/fmin)^2; fomin=fmin+IF; fomax=fmax+IF; disp(C,'Csmax/Csmin='); disp(+'kHz',fomin,'fomin='); disp(+'kHz',fomax,'fomax='); //Let Comax/Comin be denoted by C1 C1=(fomax/fomin)^2; disp(C1,'Comax/Comin='); Csmax=350//in pF Csmin=Csmax/C; disp(+'pF',Csmin,'Csmin='); //We know that //C=[Csmax(Csmin+Cp)/Csmin(Csmax+Cp)] //4.58=350/34.2*((34.2+Cp)/(350+Cp)) Cp=221.3;//in pF Comax=(Csmax*Cp)/(Csmax+Cp); Comin=(Csmin*Cp)/(Csmin+Cp); disp(+'pF',Comax,'Comax='); disp(+'pF',Comin,'Comin='); //Rounding Comax Comax1=135.5; //The oscillator coil frequency can be calculated as Lo=[1/[(2*%pi*(fomin*10^3))^2*(Comax1*10^-12)]]*10^6;//Answer was given wrong in the text book disp(+'microHenry',Lo,'Oscillator coil frequency is'); //At 1000 kHz f=1000;//in kHz fomid=f+IF; Comid=Comax/(fomax/fomid)^2; Comid1=68.2; disp(+'pF',Comid,'Comid='); Csmid=1/[(1/Comid1)-(1/Cp)]; disp(+'pF',Csmid,'Csmid='); fsmid=fmax/sqrt(Csmax/Csmid); disp(+'kHz',fsmid,'fs"'mid="); Terr=fsmid-f; disp(+'kHz',Terr,'Tracking error is');
38e36086c2d3b65a0c3cd0da11a160bb55a8f3e2
449d555969bfd7befe906877abab098c6e63a0e8
/539/CH21/EX21.1/Example_21_1.sce
ae2dcaa12e2c048e3f28bfb0888d5af65969c3ef
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
368
sce
Example_21_1.sce
//Example 20.1 Calculation of absorption coefficient clear; clc; printf("\tExample 21.1\n"); // x is thickness of glass(mm) x=200; //It is intensity of non-absorbed radiation //Io is intensity of non-relected radiation f=0.98; //f=It/Io //b is absorption coefficient b=-log(f)/x; printf("\nAbsorption coefficient is %f mm^-1\n",b); //End
7de2c7b29ead2e1d21575f7ec4afec4d82a69eb9
449d555969bfd7befe906877abab098c6e63a0e8
/3401/CH9/EX9.5/Ex9_5.sce
85b4ac76683b60c29a0e9c3e081c09b854b60add
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
495
sce
Ex9_5.sce
clc T=300 //K k=8.617*10**-5//eV/K e=1.6*10**-19 //C esp=11.7 esp0=8.85*10^-14 phibe=0.67 //V A=114 //A/K^2-cm^2 Na=10^18 //cm^-3 Nd=10^16 //cm^-3 taup0=10^-7 taun0=10^-7 Dp=10 //cm^2/s Dn=25 //cm^2/s Lp=1.0*10**-3 //cm Ln=1.58*10**-3 //cm pn0=2.25*10**4 //cm^-3 np0=2.25*10**2 //cm^-3 a=k*T Jst=(A*T^2)*exp(-phibe/a) disp(Jst,"Richardson constant in A/K^2-cm^2 is=") Js=((e*Dn*np0)/Ln)+((e*Dp*pn0)/Lp) disp(Js,"reverse saturation current density in A/cm^2 is=")
0dae5e2da5b08eb8da9717a9b201b300f780d0d5
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/blog/ngram/5.16_8.tst
c2401c5f0cab286beb8a732967d475d626c2ed40
[]
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
669,050
tst
5.16_8.tst
16 75:1 151:1 335:1 637:1 966:1 1108:1 1131:1 1409:1 1476:1 1566:1 1651:1 1685:1 1725:1 1757:1 1905:1 1914:1 2039:1 2169:1 2269:1 2434:1 2533:1 2812:1 2962:1 3019:1 3810:1 3903:1 3929:1 3958:1 3959:1 4010:1 4076:1 4381:1 4504:1 4636:1 4749:1 4767:1 5058:1 5231:1 5347:1 5361:1 5362:1 5594:1 5677:1 5857:1 6018:1 6217:1 6305:1 6371:2 6415:1 6588:1 6591:1 6618:1 6730:1 6773:1 7019:1 7335:1 7574:1 7840:1 8131:1 8273:1 8413:1 8433:1 8546:1 8597:1 8633:1 8983:1 8987:1 9039:1 9146:1 9151:1 9164:1 9204:1 9280:1 10037:1 10084:1 10146:1 10169:1 10321:1 10393:1 10577:1 10596:1 10731:1 10780:1 11126:1 11148:1 11156:1 11417:1 11556:1 11843:1 11844:1 11846:1 11929:1 11986:1 12218:1 12266:1 12337:1 12375:1 12654:1 12655:1 12656:1 13614:1 13711:1 13739:1 13776:1 13816:1 13838:1 13878:1 14078:1 14237:1 14366:1 15174:1 15216:1 15252:1 15538:1 16032:1 16148:1 16167:1 16706:1 16775:2 16864:1 16919:1 16961:1 16981:1 17232:1 17336:1 17583:1 17587:1 17816:1 18153:1 18171:1 18330:1 18342:1 18355:1 18442:1 18544:1 18625:1 18633:1 19114:2 19265:1 19323:133 19509:1 19584:1 19751:1 19831:1 20086:1 20121:1 20147:1 20212:1 20243:1 20248:1 20523:1 20722:1 20853:1 20897:1 21103:1 21175:1 21258:1 21343:1 21798:1 21822:1 21980:1 22159:1 22228:1 22396:1 22427:1 22705:1 22833:1 22834:1 22985:1 23027:1 23076:1 23160:2 23215:1 23302:1 23575:1 23600:1 23765:1 23819:1 24087:1 24232:1 24235:1 24293:1 24340:1 24449:1 24797:1 24838:1 24932:1 24976:1 25073:1 25264:1 25385:1 25860:1 25998:1 26004:1 26073:1 26232:1 26372:1 26518:1 26653:1 26912:1 27138:2 27144:1 27422:1 27439:1 27809:1 28154:1 28223:1 28258:1 28342:1 28870:1 29183:2 29221:1 29310:1 29666:1 29905:1 29932:1 29936:1 29942:1 30201:1 30348:1 30524:1 30525:1 16 75:1 151:1 190:1 335:1 495:1 637:1 966:1 1038:1 1108:1 1131:1 1333:1 1409:1 1476:1 1499:1 1566:1 1585:1 1608:1 1628:1 1651:1 1671:1 1685:1 1725:1 1734:1 1739:1 1757:1 1905:1 1914:1 1986:1 2039:2 2169:1 2234:1 2269:1 2420:1 2424:1 2434:2 2533:1 2812:2 2952:1 2962:1 3019:2 3118:1 3543:1 3667:1 3711:1 3803:1 3810:1 3903:1 3929:1 3958:1 3959:4 4010:2 4076:1 4123:1 4183:1 4301:1 4318:1 4381:1 4504:1 4636:1 4749:1 4767:1 4948:1 5058:1 5231:1 5308:1 5347:1 5361:1 5362:3 5401:1 5594:1 5677:3 5819:1 5857:1 6018:1 6103:1 6121:1 6217:1 6305:1 6371:2 6415:1 6528:1 6588:1 6591:1 6618:1 6730:1 6736:1 6747:1 6773:1 6930:1 7019:1 7083:1 7335:1 7573:1 7574:1 7788:1 7840:1 7932:1 8005:1 8031:1 8131:3 8152:1 8170:1 8254:1 8273:1 8413:1 8433:1 8523:1 8540:1 8546:1 8597:1 8603:1 8633:2 8793:1 8798:1 8983:1 8987:1 9039:1 9040:1 9139:1 9146:1 9151:1 9164:1 9204:1 9268:1 9273:1 9277:1 9280:1 9594:1 9618:1 9942:1 10037:3 10084:1 10146:1 10169:3 10321:1 10393:1 10410:1 10577:2 10581:1 10596:1 10731:1 10780:1 11063:1 11126:1 11148:1 11156:1 11400:1 11417:1 11556:1 11684:1 11843:1 11844:1 11846:1 11887:1 11918:1 11929:1 11986:1 12065:1 12155:1 12218:1 12228:1 12266:1 12337:1 12375:1 12385:1 12654:1 12655:1 12656:3 12841:1 12902:1 13035:1 13095:1 13276:1 13614:1 13623:1 13711:1 13720:1 13739:1 13776:1 13816:1 13838:1 13842:1 13878:1 13926:1 14011:1 14078:1 14113:1 14237:1 14366:1 14922:1 15010:1 15019:1 15174:1 15216:1 15252:1 15538:1 15875:1 15951:1 16032:2 16148:1 16167:2 16174:1 16353:1 16369:1 16386:1 16484:1 16706:3 16775:5 16864:1 16919:1 16920:1 16961:1 16981:1 17232:1 17236:1 17336:1 17342:1 17372:1 17460:1 17583:1 17587:1 17816:1 17972:1 17998:1 18153:1 18171:1 18249:1 18330:1 18342:1 18355:1 18442:1 18544:1 18625:1 18633:1 18831:1 18977:1 18980:1 19006:1 19114:3 19265:1 19323:219 19413:1 19507:1 19509:1 19584:1 19636:1 19708:1 19751:1 19831:2 20086:1 20091:1 20121:2 20147:2 20178:1 20212:1 20216:1 20243:1 20248:1 20277:1 20477:1 20523:1 20524:1 20573:1 20722:1 20853:1 20897:1 20996:1 21014:1 21103:1 21175:1 21258:1 21301:1 21343:1 21643:1 21660:1 21708:1 21798:1 21822:1 21980:1 22154:1 22159:1 22170:1 22228:1 22298:1 22300:1 22396:1 22425:1 22427:1 22607:1 22705:1 22833:3 22834:1 22985:3 23008:1 23027:1 23052:1 23076:1 23112:1 23160:2 23215:1 23302:1 23575:1 23579:1 23600:1 23699:1 23765:2 23819:1 24003:1 24087:1 24187:1 24232:1 24235:1 24241:1 24293:1 24329:1 24340:2 24449:1 24702:1 24797:1 24838:1 24932:1 24976:1 25073:2 25181:1 25264:1 25339:1 25385:1 25431:1 25503:1 25623:1 25778:1 25860:1 25998:1 26004:1 26073:1 26150:1 26172:1 26232:1 26372:1 26472:1 26518:1 26653:1 26808:1 26912:1 27099:1 27115:1 27138:3 27144:1 27422:2 27424:1 27439:1 27441:1 27534:1 27540:1 27809:1 28099:1 28121:1 28154:1 28223:2 28230:1 28258:1 28338:1 28342:1 28343:1 28848:1 28870:1 29183:2 29184:1 29221:2 29310:1 29334:1 29655:1 29666:1 29745:1 29904:1 29905:1 29932:1 29936:1 29942:1 30201:1 30346:1 30348:1 30524:1 30525:1 16 75:1 151:1 190:1 335:1 495:1 637:1 882:1 966:1 1003:1 1038:1 1065:1 1108:1 1131:1 1333:1 1409:1 1476:1 1499:1 1566:1 1585:1 1608:1 1628:1 1651:1 1671:1 1685:1 1725:1 1734:1 1739:1 1757:1 1905:1 1914:1 1986:1 2039:3 2169:1 2234:1 2269:1 2420:1 2424:1 2434:3 2533:1 2812:3 2854:1 2952:2 2962:1 3019:3 3067:1 3118:2 3543:1 3667:1 3711:1 3731:1 3801:1 3803:1 3810:1 3867:1 3903:1 3929:1 3958:1 3959:5 4010:2 4076:1 4123:2 4183:1 4301:1 4318:1 4381:1 4504:1 4636:1 4749:1 4767:1 4948:1 5058:1 5231:1 5308:1 5347:1 5361:1 5362:4 5401:1 5594:1 5677:4 5819:1 5857:1 6018:1 6103:1 6121:1 6217:1 6305:1 6371:2 6415:1 6528:1 6588:1 6591:1 6618:1 6730:1 6736:1 6747:1 6773:1 6930:1 7000:1 7019:1 7083:1 7335:1 7573:1 7574:1 7577:1 7788:2 7840:1 7932:1 8005:1 8031:1 8131:3 8152:2 8170:1 8254:1 8273:1 8413:1 8433:1 8523:1 8540:1 8546:1 8597:1 8603:1 8633:3 8718:1 8742:1 8793:2 8798:1 8816:1 8873:1 8980:1 8983:1 8987:1 9020:1 9039:1 9040:1 9139:1 9146:1 9151:1 9164:1 9204:1 9268:1 9273:1 9277:1 9280:1 9594:1 9618:1 9663:1 9942:1 10037:4 10084:1 10146:1 10169:4 10321:1 10393:1 10410:1 10577:2 10581:2 10596:1 10731:1 10780:1 11063:1 11126:1 11148:1 11156:1 11400:1 11417:1 11556:1 11684:1 11843:1 11844:1 11846:1 11887:1 11918:1 11929:1 11985:1 11986:1 12056:1 12065:2 12098:1 12155:1 12218:1 12228:1 12266:1 12337:1 12375:1 12385:2 12654:1 12655:1 12656:4 12825:1 12841:1 12902:1 13035:1 13095:1 13227:1 13276:2 13522:1 13614:1 13623:1 13624:1 13711:1 13720:1 13739:1 13768:1 13776:1 13816:1 13838:1 13842:1 13843:1 13878:1 13926:1 13993:1 14011:1 14078:1 14113:1 14237:1 14366:1 14477:1 14503:1 14922:1 15010:1 15019:1 15174:1 15216:1 15252:1 15538:1 15875:2 15951:1 16032:2 16148:1 16167:2 16174:1 16353:1 16369:1 16386:1 16484:1 16706:4 16775:6 16831:1 16864:1 16913:1 16919:1 16920:1 16961:1 16981:1 17232:1 17236:1 17336:1 17342:1 17372:1 17424:1 17460:1 17583:1 17587:1 17816:1 17906:1 17972:1 17998:1 18112:1 18144:1 18153:1 18171:1 18249:1 18330:1 18342:1 18355:1 18442:1 18544:1 18584:1 18625:1 18633:1 18831:2 18977:1 18980:1 19006:1 19114:4 19265:1 19323:294 19395:1 19413:2 19473:1 19507:1 19509:1 19530:1 19539:1 19584:1 19636:2 19708:1 19751:1 19831:3 19918:1 20086:1 20091:1 20121:3 20146:1 20147:2 20178:1 20212:1 20216:1 20243:1 20248:1 20277:1 20477:1 20523:1 20524:1 20573:1 20722:1 20853:1 20897:1 20907:1 20996:1 21014:2 21033:1 21050:1 21103:1 21175:1 21258:1 21301:1 21343:1 21643:1 21660:2 21708:1 21798:1 21822:1 21980:1 22154:1 22159:1 22170:1 22228:1 22298:1 22300:1 22332:1 22396:1 22425:1 22427:1 22607:1 22705:1 22833:3 22834:1 22985:4 23008:1 23027:1 23032:1 23052:1 23076:1 23112:2 23160:2 23215:1 23302:1 23575:1 23579:1 23600:1 23699:1 23765:2 23819:1 24003:1 24087:1 24187:1 24232:1 24235:1 24241:1 24293:1 24329:1 24340:2 24449:1 24702:1 24717:1 24797:1 24838:1 24932:1 24976:1 25073:2 25181:1 25264:1 25339:1 25385:1 25431:1 25503:1 25623:1 25778:1 25860:1 25884:1 25998:1 26004:1 26073:1 26150:2 26172:1 26232:1 26372:1 26472:1 26518:1 26653:1 26808:1 26912:1 27099:1 27115:1 27138:4 27144:1 27422:3 27424:1 27438:1 27439:1 27441:1 27534:1 27540:2 27809:1 28099:1 28121:1 28154:1 28223:2 28230:1 28258:1 28338:1 28342:1 28343:1 28754:1 28848:1 28870:1 29183:3 29184:1 29221:2 29310:1 29334:1 29655:1 29666:1 29745:1 29904:1 29905:1 29932:1 29936:1 29942:1 30201:1 30346:1 30348:1 30524:1 30525:1 16 75:1 151:1 190:1 324:1 335:2 495:1 637:1 778:1 882:1 966:1 1003:1 1029:1 1038:1 1065:1 1108:1 1131:1 1291:1 1333:1 1409:1 1476:1 1499:1 1566:1 1585:1 1608:1 1628:1 1651:1 1657:1 1671:1 1685:1 1725:1 1734:1 1739:1 1742:1 1757:1 1860:1 1905:1 1914:1 1982:1 1986:1 2039:3 2169:1 2170:1 2234:1 2269:1 2408:1 2416:1 2420:1 2424:1 2434:3 2533:1 2645:1 2812:3 2854:1 2952:2 2962:1 2965:1 3019:3 3056:2 3067:1 3118:3 3543:1 3667:1 3711:1 3731:1 3801:1 3803:1 3810:1 3867:1 3903:1 3929:1 3958:1 3959:7 4010:3 4076:1 4123:3 4183:1 4207:1 4301:1 4318:1 4381:1 4504:1 4636:1 4749:1 4767:1 4796:1 4948:1 5058:1 5100:1 5231:1 5308:1 5347:1 5361:1 5362:5 5401:1 5594:1 5677:5 5819:1 5856:1 5857:1 6018:1 6103:1 6121:1 6217:1 6305:1 6371:2 6415:1 6528:1 6588:1 6591:2 6618:2 6730:1 6736:1 6747:1 6773:1 6930:1 7000:1 7019:1 7083:1 7204:1 7236:1 7335:1 7573:1 7574:1 7577:1 7788:2 7840:1 7932:1 8005:1 8031:1 8066:1 8131:4 8151:2 8152:3 8170:1 8254:1 8273:1 8413:1 8433:1 8523:1 8540:1 8546:1 8597:1 8603:1 8633:3 8718:1 8742:1 8793:3 8798:1 8816:1 8858:1 8873:1 8980:1 8983:1 8987:1 9020:1 9039:1 9040:1 9058:1 9139:2 9146:1 9151:1 9164:1 9204:1 9205:1 9268:1 9273:1 9277:1 9280:1 9316:1 9594:1 9618:1 9663:1 9870:1 9942:1 10037:5 10084:1 10146:1 10169:4 10321:1 10362:1 10393:1 10410:2 10577:2 10581:2 10596:1 10731:1 10780:1 11028:1 11061:1 11063:1 11126:1 11148:1 11156:1 11400:1 11417:1 11556:1 11684:1 11843:1 11844:1 11846:1 11852:1 11877:1 11887:1 11918:1 11929:1 11985:1 11986:1 12056:1 12065:2 12095:1 12098:1 12155:1 12218:1 12228:1 12266:1 12337:1 12375:1 12385:2 12628:1 12654:1 12655:1 12656:5 12825:1 12841:1 12902:1 13035:1 13092:1 13095:1 13227:1 13276:2 13277:1 13522:1 13580:1 13614:1 13623:1 13624:1 13700:1 13711:1 13720:1 13739:1 13768:1 13776:1 13816:1 13838:1 13842:1 13843:1 13878:1 13915:1 13926:1 13930:1 13993:1 14011:1 14078:1 14113:1 14237:1 14366:1 14477:1 14503:1 14533:1 14650:1 14654:1 14785:1 14862:1 14922:1 15010:1 15019:1 15060:1 15174:1 15216:1 15252:1 15538:1 15547:1 15875:2 15951:1 16032:2 16148:1 16167:2 16174:1 16353:1 16367:1 16369:1 16386:2 16484:1 16501:1 16646:1 16706:5 16775:8 16831:1 16864:1 16913:1 16919:1 16920:1 16957:1 16961:1 16981:1 17222:1 17232:1 17236:1 17336:1 17342:1 17372:1 17424:1 17460:2 17583:1 17587:1 17797:1 17816:1 17906:1 17972:1 17998:1 18112:1 18136:1 18144:1 18153:1 18171:1 18249:1 18330:2 18342:1 18355:1 18442:1 18544:1 18584:1 18625:1 18633:1 18816:1 18831:2 18977:1 18980:1 19006:1 19016:1 19114:4 19265:1 19323:423 19343:1 19395:1 19413:2 19473:1 19507:1 19509:1 19530:1 19539:1 19584:1 19636:2 19708:1 19751:1 19756:1 19804:1 19817:1 19831:3 19918:1 20032:1 20048:1 20086:1 20091:2 20121:3 20146:1 20147:2 20178:1 20212:1 20216:1 20243:1 20248:1 20277:1 20319:1 20477:1 20523:1 20524:2 20565:1 20573:1 20722:1 20853:1 20897:1 20907:1 20996:2 21014:2 21033:1 21050:1 21103:1 21131:1 21175:1 21196:1 21258:1 21301:1 21343:1 21643:2 21660:3 21708:1 21798:1 21822:1 21896:1 21932:1 21980:1 22154:2 22159:1 22170:1 22228:1 22298:1 22300:1 22332:1 22396:1 22425:1 22427:1 22540:1 22607:2 22705:1 22736:1 22769:1 22833:3 22834:1 22856:1 22909:1 22985:5 23008:1 23027:1 23032:1 23052:1 23073:1 23076:1 23112:2 23160:2 23215:1 23302:2 23575:1 23579:2 23600:1 23666:1 23699:1 23765:2 23819:1 24003:1 24087:1 24187:1 24232:1 24235:1 24241:1 24247:1 24293:1 24329:1 24340:3 24449:1 24702:1 24717:1 24797:1 24838:1 24932:1 24976:1 25005:1 25073:2 25122:1 25181:1 25264:1 25339:1 25385:1 25431:1 25503:1 25623:1 25722:1 25778:1 25860:1 25884:1 25998:1 26004:1 26073:1 26150:2 26172:1 26232:1 26372:1 26472:1 26518:1 26627:1 26653:1 26808:1 26865:1 26912:1 27099:1 27115:1 27138:4 27144:1 27422:3 27424:1 27438:1 27439:1 27441:1 27534:1 27540:2 27580:1 27601:1 27809:1 28099:1 28121:1 28154:1 28223:3 28230:1 28258:1 28338:1 28342:1 28343:1 28754:1 28848:1 28870:1 29155:1 29183:4 29184:1 29221:2 29310:1 29325:1 29334:1 29495:1 29655:1 29666:1 29745:1 29904:1 29905:1 29932:1 29936:1 29942:1 30011:1 30201:1 30346:1 30348:1 30524:1 30525:1 30576:1 16 75:1 151:1 190:1 324:1 335:2 495:1 637:1 694:1 748:1 778:1 795:1 882:1 966:1 975:1 1003:1 1029:1 1038:1 1065:1 1108:1 1131:1 1254:1 1291:2 1333:1 1409:1 1476:1 1499:1 1566:1 1585:1 1608:1 1628:1 1651:1 1657:1 1671:1 1685:1 1725:1 1734:1 1739:1 1742:1 1757:1 1860:1 1905:1 1914:1 1982:1 1986:1 1997:1 2039:3 2090:1 2169:1 2170:1 2234:1 2237:1 2269:1 2408:1 2416:1 2420:1 2422:1 2424:1 2434:3 2437:1 2450:1 2533:1 2599:1 2623:1 2645:1 2812:3 2825:1 2854:1 2888:1 2952:2 2962:1 2965:2 3019:3 3056:2 3067:1 3118:3 3543:1 3667:1 3711:1 3731:1 3796:1 3801:1 3803:1 3810:1 3867:1 3903:1 3929:1 3958:1 3959:10 4010:4 4015:1 4058:1 4076:1 4123:3 4183:1 4207:1 4265:1 4269:1 4301:1 4318:1 4381:1 4504:1 4555:1 4636:2 4749:2 4767:1 4796:1 4855:1 4938:1 4948:1 5058:1 5100:1 5231:1 5288:1 5308:1 5347:1 5348:1 5361:1 5362:7 5401:1 5594:1 5677:7 5819:1 5830:1 5848:1 5856:1 5857:1 5954:1 6018:1 6021:1 6103:1 6121:1 6217:1 6219:1 6305:1 6371:2 6415:1 6528:1 6588:1 6591:2 6618:2 6730:1 6736:1 6747:1 6773:1 6930:1 7000:1 7019:1 7083:1 7115:1 7192:1 7204:1 7236:1 7335:1 7573:1 7574:1 7577:1 7788:2 7840:1 7932:1 8005:1 8031:1 8066:1 8131:6 8151:2 8152:3 8170:1 8254:1 8273:1 8413:1 8433:1 8523:1 8540:1 8546:1 8597:1 8603:1 8633:4 8718:1 8742:1 8793:3 8798:1 8816:1 8858:1 8873:1 8980:1 8983:1 8987:1 9004:1 9020:1 9039:1 9040:1 9058:1 9139:2 9146:1 9151:1 9164:1 9204:1 9205:1 9225:1 9268:1 9273:1 9277:1 9280:1 9316:1 9589:1 9594:1 9618:1 9663:1 9695:1 9870:1 9874:1 9942:1 9972:1 9983:1 10037:7 10078:1 10084:1 10146:1 10169:4 10238:1 10321:2 10362:1 10364:1 10393:1 10410:2 10577:4 10581:2 10596:1 10731:1 10780:1 10880:1 11028:1 11061:1 11063:1 11126:1 11148:1 11156:1 11261:1 11400:1 11417:2 11512:1 11556:1 11668:1 11684:1 11830:1 11843:1 11844:1 11846:1 11852:1 11877:1 11887:1 11918:1 11926:1 11929:1 11985:1 11986:1 12056:1 12065:2 12095:1 12098:1 12155:1 12218:1 12228:1 12266:1 12337:1 12375:1 12385:2 12628:1 12654:1 12655:1 12656:7 12825:1 12841:1 12902:1 12906:1 13035:1 13092:1 13095:1 13227:1 13276:2 13277:1 13486:1 13522:1 13580:1 13614:1 13623:1 13624:1 13700:1 13711:1 13720:1 13739:1 13768:1 13776:1 13816:1 13838:1 13842:1 13843:1 13858:1 13878:1 13915:1 13926:1 13930:1 13993:1 14011:1 14078:1 14113:1 14189:1 14237:1 14366:1 14471:1 14477:1 14503:1 14533:1 14610:1 14650:1 14654:1 14785:1 14862:1 14922:1 15010:1 15011:1 15019:1 15060:1 15174:1 15216:1 15252:1 15276:1 15538:1 15547:1 15695:1 15875:2 15951:1 16021:1 16032:2 16148:1 16167:2 16172:1 16174:1 16303:1 16353:1 16356:1 16357:1 16367:1 16369:1 16386:2 16484:1 16501:1 16646:1 16706:7 16761:1 16775:12 16831:1 16864:1 16913:1 16919:1 16920:1 16957:1 16961:1 16981:1 17222:1 17223:1 17232:1 17236:1 17248:1 17253:1 17336:1 17342:1 17372:1 17424:1 17454:1 17460:2 17583:1 17587:1 17645:1 17797:1 17816:1 17906:1 17972:1 17998:1 18112:1 18136:1 18144:1 18153:1 18171:1 18249:1 18330:2 18342:1 18355:1 18421:1 18442:2 18544:1 18584:1 18589:1 18625:1 18633:1 18816:1 18831:2 18932:1 18977:1 18980:1 19006:1 19016:1 19114:4 19265:1 19323:487 19343:1 19395:1 19413:2 19473:1 19482:1 19507:1 19509:1 19530:1 19539:1 19584:1 19636:2 19708:1 19743:1 19751:1 19756:1 19804:1 19817:1 19831:3 19918:1 20032:1 20048:1 20086:1 20091:2 20121:3 20146:1 20147:3 20178:1 20212:1 20216:1 20243:1 20248:1 20252:1 20277:1 20319:1 20477:1 20492:1 20523:1 20524:2 20565:1 20573:1 20623:1 20722:1 20787:1 20811:1 20853:1 20897:1 20907:1 20996:2 21014:2 21033:1 21050:1 21103:1 21131:1 21175:1 21196:1 21258:1 21301:1 21343:1 21643:2 21660:3 21708:1 21798:1 21822:1 21896:1 21932:1 21980:1 22154:2 22159:1 22170:1 22228:1 22298:1 22300:1 22332:1 22396:1 22425:1 22427:2 22540:1 22607:2 22618:1 22705:2 22736:1 22769:1 22833:3 22834:1 22856:1 22874:1 22909:1 22926:1 22985:7 23008:1 23027:1 23032:1 23052:1 23073:1 23076:2 23112:2 23136:1 23160:2 23212:1 23215:1 23271:1 23302:2 23454:1 23575:1 23579:2 23600:1 23666:1 23699:1 23765:2 23819:1 24003:1 24087:1 24113:1 24168:1 24187:1 24232:1 24235:1 24241:1 24247:1 24293:1 24329:1 24340:4 24449:1 24702:2 24717:1 24797:1 24838:1 24932:1 24976:1 25005:1 25073:2 25122:1 25181:1 25264:1 25339:1 25385:1 25431:1 25495:1 25503:1 25623:1 25673:1 25722:1 25778:1 25860:1 25884:1 25966:1 25998:1 26004:1 26073:1 26097:1 26150:2 26172:1 26232:1 26372:1 26415:1 26472:1 26518:1 26627:2 26652:1 26653:2 26808:1 26865:1 26868:1 26912:1 27065:1 27099:1 27115:1 27138:4 27144:1 27212:1 27422:3 27424:1 27438:1 27439:1 27441:1 27490:1 27534:1 27540:2 27580:1 27601:1 27621:1 27809:1 27852:1 28095:1 28099:1 28121:2 28154:1 28223:4 28224:1 28230:1 28258:1 28338:1 28342:1 28343:1 28524:1 28754:1 28848:1 28870:1 28962:1 28974:1 29155:1 29183:5 29184:1 29221:2 29289:1 29310:1 29325:1 29334:1 29495:1 29589:1 29655:1 29666:1 29745:1 29812:1 29904:1 29905:1 29932:1 29936:1 29942:1 30011:1 30201:1 30346:2 30348:1 30524:1 30525:1 30576:1 30586:1 16 24:1 75:1 94:1 151:1 190:1 285:1 294:1 324:1 335:2 477:2 495:1 510:1 625:1 637:1 688:1 694:1 722:1 730:1 748:1 778:1 795:1 836:1 857:1 882:1 898:1 966:1 975:1 1003:1 1029:1 1032:1 1038:1 1065:1 1069:1 1108:1 1131:1 1170:1 1254:2 1291:2 1333:1 1361:1 1409:1 1476:1 1499:1 1566:1 1585:1 1601:1 1602:1 1608:1 1628:1 1651:1 1657:2 1671:1 1685:1 1690:1 1725:1 1730:1 1734:1 1739:1 1742:1 1757:1 1780:1 1860:1 1863:1 1905:1 1913:1 1914:1 1938:1 1955:1 1982:1 1986:1 1997:1 2021:1 2038:1 2039:4 2090:1 2169:1 2170:1 2234:1 2237:2 2269:1 2407:1 2408:1 2415:1 2416:1 2420:1 2422:1 2424:1 2434:4 2437:2 2450:1 2518:1 2533:1 2599:1 2623:1 2645:1 2705:1 2812:4 2819:1 2825:1 2854:2 2872:1 2888:1 2900:1 2952:2 2962:1 2965:2 3019:4 3056:2 3067:2 3118:5 3128:1 3224:1 3391:1 3543:1 3661:1 3667:1 3711:1 3730:1 3731:1 3746:1 3796:1 3801:1 3803:1 3810:1 3867:1 3903:1 3929:1 3958:1 3959:10 4010:4 4015:1 4058:2 4061:1 4076:1 4079:1 4123:3 4178:1 4183:1 4207:1 4265:1 4269:1 4301:1 4318:1 4368:1 4381:1 4504:1 4555:1 4636:2 4718:1 4749:2 4767:1 4796:1 4855:1 4938:1 4948:1 4989:1 5058:1 5059:1 5100:1 5201:2 5202:1 5231:1 5288:1 5308:1 5347:2 5348:1 5361:1 5362:7 5401:1 5593:1 5594:1 5677:7 5771:1 5819:1 5830:1 5848:1 5856:1 5857:1 5922:1 5954:1 6018:1 6021:1 6044:1 6103:1 6121:1 6217:1 6219:1 6221:1 6305:1 6371:2 6410:1 6415:1 6528:1 6529:1 6540:1 6588:1 6591:2 6618:2 6654:1 6724:1 6730:1 6736:1 6747:1 6773:1 6930:1 7000:1 7019:1 7032:1 7083:1 7115:1 7126:1 7192:1 7204:1 7216:1 7236:1 7308:1 7322:1 7335:1 7342:1 7573:1 7574:1 7577:1 7585:1 7603:1 7788:2 7840:1 7926:1 7932:1 8005:1 8031:1 8054:1 8066:1 8084:1 8131:10 8151:2 8152:5 8170:1 8208:1 8254:1 8273:1 8372:1 8413:1 8433:1 8450:1 8523:1 8540:1 8546:1 8597:1 8603:1 8633:4 8687:1 8718:1 8742:1 8793:3 8798:1 8816:1 8858:1 8873:1 8938:1 8980:1 8983:1 8984:1 8985:1 8986:1 8987:1 9004:1 9020:1 9035:1 9039:2 9040:1 9058:1 9139:2 9146:1 9151:1 9164:1 9204:1 9205:1 9209:1 9225:1 9268:1 9269:1 9273:1 9277:1 9280:1 9304:1 9316:1 9439:1 9506:1 9589:1 9594:1 9618:1 9651:1 9663:1 9695:1 9715:1 9732:1 9870:1 9874:1 9888:1 9930:1 9942:1 9972:1 9983:1 9994:1 10037:7 10043:1 10078:1 10084:1 10109:1 10146:1 10169:4 10238:1 10321:2 10362:1 10364:1 10393:1 10410:2 10446:1 10577:4 10581:2 10596:1 10731:1 10780:2 10809:1 10880:1 10957:1 11009:1 11028:1 11061:1 11063:1 11120:1 11126:1 11134:1 11148:1 11156:1 11166:2 11260:1 11261:1 11268:1 11359:1 11389:1 11400:1 11417:2 11512:1 11556:2 11569:1 11668:1 11684:1 11779:1 11830:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11887:1 11918:1 11926:2 11929:1 11961:1 11985:1 11986:1 12056:1 12065:2 12095:1 12098:1 12130:1 12155:1 12182:1 12194:1 12218:1 12228:1 12266:2 12335:1 12337:1 12375:1 12385:2 12628:1 12654:1 12655:1 12656:7 12660:2 12766:1 12824:1 12825:1 12841:1 12902:1 12906:1 12936:1 12947:1 13035:1 13092:1 13095:1 13207:1 13227:2 13276:2 13277:1 13307:1 13376:1 13486:1 13522:1 13580:1 13614:1 13623:1 13624:1 13700:2 13711:1 13720:1 13735:1 13739:1 13740:1 13768:1 13776:1 13816:1 13833:1 13838:1 13842:1 13843:1 13851:1 13858:1 13873:1 13878:1 13915:2 13926:1 13930:1 13993:1 14011:1 14063:1 14078:1 14113:1 14157:1 14189:1 14228:1 14237:1 14241:1 14366:1 14446:1 14471:1 14477:1 14503:1 14522:1 14533:1 14553:2 14610:1 14650:1 14654:1 14780:1 14785:2 14862:1 14887:1 14922:1 14987:1 15010:1 15011:1 15019:1 15060:1 15096:1 15174:1 15216:1 15252:1 15276:1 15538:1 15547:1 15672:1 15695:1 15875:2 15876:1 15908:1 15951:1 16021:1 16032:2 16096:1 16148:1 16167:3 16172:1 16174:1 16303:1 16309:1 16353:1 16356:1 16357:1 16367:1 16369:1 16386:2 16467:1 16484:1 16501:2 16564:1 16646:2 16660:1 16673:1 16706:7 16761:2 16775:13 16794:1 16831:1 16864:1 16913:1 16919:1 16920:1 16957:1 16961:1 16981:1 17055:1 17222:1 17223:1 17232:1 17236:1 17248:2 17250:1 17253:1 17295:1 17336:1 17342:1 17372:1 17424:1 17454:1 17460:3 17514:1 17553:1 17583:1 17587:1 17645:1 17797:2 17816:1 17877:1 17906:1 17972:1 17998:1 18034:1 18112:1 18129:1 18136:1 18144:1 18153:1 18171:1 18197:1 18249:1 18277:1 18330:2 18342:1 18355:1 18421:1 18442:2 18544:1 18584:1 18589:1 18625:1 18633:2 18636:1 18781:1 18815:1 18816:1 18831:2 18838:1 18872:1 18932:1 18977:1 18980:1 19006:1 19016:1 19079:1 19114:4 19191:1 19244:1 19265:1 19272:1 19323:668 19343:1 19395:1 19413:3 19452:1 19473:1 19482:1 19507:1 19509:1 19530:1 19539:1 19584:1 19636:2 19696:1 19708:1 19743:1 19751:1 19756:1 19804:1 19817:1 19831:4 19918:1 20032:1 20048:1 20086:1 20091:2 20121:3 20146:1 20147:3 20178:1 20212:1 20216:1 20243:1 20248:1 20252:1 20262:1 20277:1 20319:1 20339:1 20349:1 20387:1 20477:1 20492:1 20523:1 20524:3 20565:1 20573:1 20623:1 20669:1 20691:1 20722:1 20787:1 20811:1 20853:1 20897:1 20907:1 20923:2 20996:3 21014:2 21033:1 21050:2 21066:1 21103:1 21131:1 21175:1 21196:2 21258:1 21301:1 21331:1 21343:1 21389:1 21643:3 21660:3 21708:1 21798:1 21822:1 21874:1 21896:1 21911:1 21932:1 21936:1 21980:1 22154:2 22159:1 22170:1 22228:1 22236:1 22298:1 22300:1 22332:1 22396:1 22425:1 22427:2 22447:1 22540:1 22607:2 22618:1 22693:1 22705:2 22720:1 22736:1 22769:1 22833:3 22834:1 22856:1 22874:2 22909:1 22926:1 22985:7 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:2 23112:2 23136:2 23160:2 23212:1 23215:1 23271:1 23284:1 23302:2 23336:1 23454:1 23554:1 23575:1 23579:3 23600:1 23662:1 23666:1 23699:1 23765:2 23788:2 23819:1 23878:1 23971:1 24003:1 24087:1 24113:1 24119:1 24124:2 24128:1 24168:1 24187:1 24232:1 24235:1 24241:1 24247:1 24273:1 24293:1 24329:1 24340:4 24441:1 24449:1 24504:1 24571:1 24653:1 24668:1 24702:2 24717:1 24761:1 24797:1 24814:1 24827:1 24838:1 24932:1 24970:1 24976:1 25005:2 25073:2 25122:1 25181:1 25264:1 25285:1 25339:1 25385:1 25415:1 25431:1 25495:3 25503:1 25510:1 25623:1 25643:1 25673:1 25688:1 25722:1 25778:1 25860:1 25872:1 25884:1 25893:1 25966:1 25998:1 26004:1 26058:1 26073:1 26097:1 26124:1 26150:2 26156:1 26172:1 26232:1 26322:1 26324:1 26372:1 26377:1 26415:1 26435:1 26436:1 26472:1 26489:1 26518:1 26538:2 26627:2 26652:1 26653:2 26681:1 26689:1 26808:1 26865:1 26868:1 26912:1 27065:1 27099:1 27115:1 27138:4 27144:1 27212:1 27308:1 27422:3 27424:1 27438:1 27439:1 27441:1 27490:1 27534:1 27540:2 27580:1 27601:1 27621:1 27809:1 27852:1 28095:2 28099:1 28121:2 28154:1 28223:4 28224:1 28230:1 28258:1 28338:1 28342:1 28343:1 28437:1 28524:1 28754:1 28771:1 28798:1 28848:1 28870:1 28912:1 28962:1 28974:1 29155:1 29179:1 29182:1 29183:8 29184:1 29221:2 29248:1 29276:1 29277:1 29289:1 29310:1 29325:1 29334:1 29495:1 29589:1 29655:1 29666:2 29745:1 29812:1 29904:1 29905:1 29932:2 29936:2 29942:1 30011:1 30129:1 30164:1 30201:1 30222:1 30313:1 30341:1 30346:2 30348:1 30364:1 30435:1 30524:1 30525:1 30527:1 30576:1 30586:1 16 24:1 75:2 94:1 151:1 190:1 224:1 285:1 294:1 324:1 335:2 336:1 477:2 489:1 495:1 510:1 625:1 637:1 673:2 688:1 694:1 722:1 730:1 748:1 778:1 795:1 836:1 857:1 882:1 898:1 943:1 966:1 974:1 975:1 1003:1 1029:1 1032:1 1038:1 1065:1 1069:1 1108:1 1131:1 1170:1 1221:1 1254:2 1280:1 1291:2 1333:1 1361:1 1365:1 1409:1 1476:1 1499:1 1566:1 1585:2 1601:1 1602:1 1608:1 1625:1 1628:1 1651:1 1657:2 1671:1 1685:1 1690:1 1725:1 1730:1 1734:1 1739:1 1742:1 1757:1 1780:1 1788:1 1826:1 1860:1 1863:1 1873:1 1905:1 1913:1 1914:1 1934:1 1938:1 1955:1 1982:1 1986:1 1997:1 2021:1 2038:1 2039:4 2090:1 2169:1 2170:1 2234:1 2237:2 2269:1 2407:1 2408:1 2415:1 2416:1 2417:1 2420:1 2422:1 2424:1 2434:4 2436:1 2437:2 2450:1 2518:1 2533:1 2599:1 2623:1 2645:1 2705:1 2812:4 2819:1 2825:1 2854:2 2872:1 2888:1 2900:1 2952:2 2962:1 2965:2 3019:4 3056:2 3067:3 3118:8 3128:1 3224:1 3391:1 3403:1 3406:1 3543:1 3661:1 3667:1 3711:1 3730:1 3731:1 3746:1 3796:1 3801:1 3803:1 3810:1 3867:1 3902:1 3903:1 3929:1 3958:1 3959:10 3981:1 4010:4 4015:1 4058:2 4061:1 4076:1 4079:1 4123:3 4178:1 4183:1 4207:1 4265:1 4269:1 4285:1 4301:1 4318:1 4368:1 4381:1 4504:1 4555:1 4636:2 4718:1 4749:2 4767:1 4796:1 4855:1 4938:1 4948:1 4989:1 5058:1 5059:1 5100:1 5201:4 5202:1 5231:1 5288:1 5308:1 5345:1 5347:3 5348:1 5361:1 5362:7 5401:1 5593:2 5594:2 5677:7 5735:1 5771:1 5819:1 5830:1 5848:1 5856:1 5857:1 5922:1 5951:1 5954:1 6018:1 6021:1 6044:1 6068:1 6101:1 6103:1 6121:1 6217:1 6219:1 6221:1 6305:1 6371:2 6410:1 6415:1 6444:1 6528:1 6529:1 6540:1 6588:1 6591:2 6618:2 6639:1 6654:1 6724:1 6730:1 6736:1 6747:1 6773:1 6930:1 7000:1 7019:1 7032:2 7060:1 7083:1 7115:1 7126:1 7192:1 7204:1 7216:2 7222:1 7236:1 7308:1 7322:1 7335:1 7342:1 7407:1 7573:1 7574:1 7577:2 7585:2 7601:1 7603:1 7788:2 7830:1 7840:1 7926:1 7932:1 7997:1 8005:1 8031:1 8054:1 8066:1 8084:1 8131:12 8151:2 8152:7 8170:1 8208:1 8254:1 8273:1 8365:1 8372:1 8413:1 8433:1 8450:1 8523:1 8540:1 8546:1 8559:1 8597:1 8603:1 8633:4 8687:1 8718:1 8742:1 8793:3 8798:1 8816:1 8857:1 8858:1 8873:1 8938:1 8980:1 8983:1 8984:2 8985:1 8986:1 8987:1 8995:1 8998:1 9004:1 9020:1 9035:1 9039:2 9040:1 9058:1 9139:2 9146:1 9151:1 9164:1 9204:1 9205:1 9209:1 9225:1 9268:1 9269:1 9273:1 9277:1 9280:1 9304:1 9316:1 9439:1 9480:1 9506:1 9589:1 9594:1 9618:1 9651:1 9663:1 9695:1 9697:1 9715:1 9732:1 9870:1 9874:1 9888:1 9928:1 9930:1 9942:1 9972:1 9983:1 9994:1 10037:7 10043:1 10078:1 10084:1 10109:1 10146:1 10169:5 10238:1 10321:2 10362:1 10364:1 10393:1 10410:2 10446:1 10577:4 10581:2 10596:1 10731:1 10780:2 10784:1 10809:1 10880:1 10957:1 11009:1 11028:1 11061:1 11063:1 11081:1 11120:1 11126:1 11134:2 11148:1 11156:1 11166:2 11234:1 11260:1 11261:1 11268:1 11359:1 11389:1 11400:1 11417:2 11512:1 11556:2 11569:1 11597:1 11668:1 11684:1 11779:1 11830:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11887:1 11918:1 11926:3 11929:1 11961:1 11985:1 11986:1 11991:1 12056:1 12065:2 12095:1 12098:1 12130:1 12155:1 12170:1 12182:1 12193:1 12194:1 12200:1 12202:1 12218:1 12228:1 12266:2 12325:1 12335:1 12337:1 12373:1 12375:1 12385:2 12471:1 12628:1 12629:1 12654:1 12655:1 12656:7 12660:2 12766:1 12824:1 12825:1 12841:1 12902:1 12906:1 12936:1 12947:1 13035:1 13092:1 13095:1 13107:1 13207:1 13227:3 13240:1 13276:2 13277:1 13307:1 13376:1 13486:1 13522:1 13580:1 13614:1 13623:1 13624:1 13700:2 13711:1 13714:1 13720:1 13735:1 13739:1 13740:1 13768:1 13776:1 13816:1 13833:1 13838:2 13842:1 13843:1 13851:1 13858:1 13873:1 13878:1 13915:2 13926:1 13930:1 13993:1 14011:1 14063:1 14078:1 14113:1 14157:1 14189:1 14228:1 14237:1 14239:1 14241:1 14366:2 14377:1 14446:1 14471:1 14477:1 14503:1 14522:1 14533:1 14552:1 14553:2 14563:1 14610:1 14649:1 14650:1 14654:1 14780:1 14785:2 14862:1 14887:1 14922:1 14958:1 14987:1 15010:1 15011:1 15019:1 15060:1 15068:1 15096:1 15174:1 15216:1 15252:1 15276:1 15538:1 15547:1 15552:1 15672:1 15695:1 15788:1 15875:2 15876:1 15908:1 15951:1 16021:1 16032:2 16096:1 16148:1 16167:3 16172:1 16174:1 16303:1 16309:1 16353:1 16356:1 16357:1 16363:1 16367:1 16369:1 16386:2 16467:1 16484:1 16501:2 16507:1 16564:1 16646:2 16659:2 16660:1 16673:1 16674:1 16706:7 16761:2 16775:13 16794:1 16831:1 16864:1 16913:1 16919:1 16920:1 16957:1 16961:1 16981:1 17055:2 17135:1 17217:1 17222:1 17223:1 17232:1 17236:1 17248:2 17250:1 17253:1 17295:1 17336:1 17342:1 17372:1 17424:1 17454:1 17460:6 17514:1 17553:1 17583:1 17587:1 17645:1 17788:1 17797:2 17816:1 17877:2 17906:1 17952:1 17972:1 17998:1 18034:2 18112:1 18129:1 18136:1 18144:1 18147:1 18153:1 18171:1 18197:1 18249:1 18277:1 18330:2 18342:1 18355:1 18421:1 18442:2 18506:1 18544:1 18584:1 18589:1 18625:1 18629:1 18633:2 18636:1 18749:1 18781:1 18815:1 18816:1 18831:2 18838:1 18872:1 18932:1 18977:1 18980:1 19006:1 19016:1 19079:1 19114:4 19191:1 19244:1 19265:1 19272:1 19323:774 19343:1 19395:1 19413:3 19452:1 19473:1 19482:1 19507:1 19509:1 19530:2 19539:2 19584:1 19636:2 19696:2 19708:1 19743:1 19751:1 19756:1 19804:1 19817:1 19831:4 19918:1 20032:1 20048:1 20050:1 20086:1 20091:2 20121:3 20146:1 20147:3 20178:1 20212:1 20216:1 20243:1 20248:1 20252:1 20262:1 20277:1 20313:1 20319:1 20339:1 20349:1 20387:1 20477:1 20492:1 20523:1 20524:6 20565:1 20573:1 20623:1 20669:1 20691:1 20720:1 20722:1 20779:1 20787:1 20811:1 20853:1 20897:1 20907:1 20923:2 20996:6 21014:2 21030:1 21033:1 21050:2 21066:1 21103:1 21131:1 21175:1 21196:2 21258:1 21301:1 21331:1 21343:1 21389:1 21392:1 21532:1 21643:5 21660:3 21708:1 21769:1 21798:1 21822:2 21874:1 21896:1 21911:1 21932:1 21936:1 21980:1 22154:2 22157:2 22159:1 22170:1 22228:1 22236:1 22298:1 22300:2 22332:1 22396:1 22425:1 22427:2 22447:1 22540:1 22607:2 22618:1 22693:1 22705:2 22720:1 22736:1 22740:1 22748:1 22756:1 22769:1 22833:3 22834:1 22856:1 22874:2 22909:1 22926:1 22985:7 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:2 23112:2 23136:2 23160:2 23212:1 23215:1 23246:1 23271:1 23284:1 23302:2 23336:1 23454:1 23554:1 23570:1 23575:1 23579:7 23600:1 23662:1 23666:1 23699:1 23717:1 23765:2 23788:2 23807:1 23819:1 23878:1 23879:1 23971:1 24003:1 24087:1 24113:1 24119:1 24124:2 24128:1 24168:1 24187:1 24232:1 24235:1 24241:1 24247:1 24273:1 24293:1 24329:1 24340:4 24441:1 24449:1 24504:1 24571:1 24591:1 24653:1 24668:1 24702:2 24717:1 24761:1 24797:1 24814:2 24827:1 24838:1 24921:1 24932:1 24970:1 24976:1 25005:2 25014:1 25027:1 25073:2 25122:1 25181:1 25264:1 25285:1 25311:1 25325:1 25327:1 25339:1 25385:1 25398:1 25415:1 25431:1 25471:1 25495:3 25503:1 25510:1 25623:1 25627:1 25643:1 25673:1 25684:1 25688:1 25722:1 25778:1 25823:1 25860:1 25872:1 25884:1 25893:1 25966:1 25998:1 26004:1 26058:1 26073:1 26097:1 26124:1 26150:2 26156:1 26159:1 26172:1 26232:1 26322:1 26324:1 26331:1 26372:1 26377:1 26415:1 26435:1 26436:1 26472:1 26489:2 26518:1 26538:2 26627:2 26652:1 26653:2 26681:1 26689:1 26728:1 26808:1 26865:1 26868:1 26912:1 26915:1 27065:1 27099:1 27115:1 27138:4 27144:1 27212:1 27308:1 27422:3 27424:1 27438:1 27439:1 27440:1 27441:1 27490:1 27534:1 27540:2 27580:1 27601:1 27621:1 27636:1 27809:1 27852:1 27939:1 28095:2 28099:1 28121:2 28154:1 28223:4 28224:1 28230:1 28258:1 28338:1 28342:1 28343:1 28429:1 28437:1 28524:1 28754:2 28771:1 28798:1 28848:1 28870:1 28912:1 28962:1 28974:1 29155:1 29179:1 29182:1 29183:11 29184:1 29192:1 29221:3 29234:1 29248:1 29276:1 29277:1 29289:1 29310:1 29325:1 29334:1 29495:1 29589:1 29591:1 29655:1 29666:2 29745:1 29812:1 29904:1 29905:1 29932:2 29936:2 29942:1 30011:1 30129:2 30164:1 30201:1 30222:1 30269:1 30313:1 30341:1 30346:2 30348:1 30364:1 30435:1 30524:1 30525:1 30527:1 30576:1 30586:1 16 24:1 75:3 94:1 151:1 190:1 224:1 285:1 294:1 324:1 335:2 336:1 477:2 489:1 495:1 510:1 625:1 637:1 660:1 673:2 688:1 694:1 722:1 730:1 748:1 778:1 795:1 836:1 857:1 882:1 898:1 943:1 966:1 974:1 975:1 1003:1 1029:1 1032:1 1038:1 1065:1 1069:1 1108:1 1131:1 1170:1 1171:1 1221:1 1254:2 1280:1 1291:2 1333:1 1361:1 1365:1 1395:1 1409:1 1476:1 1499:1 1566:1 1585:2 1590:1 1601:1 1602:1 1608:1 1625:1 1628:1 1651:1 1657:2 1671:1 1685:1 1690:1 1725:1 1730:1 1734:1 1739:1 1742:1 1757:1 1780:1 1788:1 1826:1 1860:1 1863:1 1873:2 1905:1 1913:1 1914:1 1934:1 1938:1 1955:1 1982:1 1986:1 1997:1 2021:1 2038:1 2039:4 2090:1 2169:1 2170:1 2234:1 2237:2 2269:1 2407:1 2408:1 2415:1 2416:1 2417:1 2420:1 2422:1 2424:1 2434:4 2436:1 2437:2 2450:1 2518:1 2533:1 2599:1 2623:1 2645:1 2705:1 2797:1 2812:4 2819:1 2825:1 2854:3 2872:1 2888:1 2900:1 2952:2 2962:1 2965:2 3019:4 3056:3 3067:4 3118:9 3128:1 3151:1 3224:1 3296:1 3391:1 3403:1 3406:1 3543:1 3649:1 3661:1 3667:1 3711:1 3730:1 3731:1 3746:1 3764:1 3796:1 3801:1 3803:1 3810:1 3867:1 3902:1 3903:1 3929:1 3958:1 3959:10 3981:1 4010:4 4015:1 4058:2 4061:1 4076:1 4079:1 4123:3 4178:1 4183:1 4207:1 4223:1 4258:1 4265:1 4269:1 4285:1 4301:1 4318:1 4368:1 4381:1 4439:1 4474:1 4504:1 4555:1 4636:2 4718:1 4749:2 4767:1 4796:1 4855:1 4938:1 4948:1 4989:1 5058:1 5059:1 5100:1 5201:4 5202:1 5231:1 5288:1 5308:1 5345:1 5347:4 5348:1 5351:1 5361:1 5362:7 5401:1 5593:2 5594:2 5677:7 5703:1 5735:1 5771:1 5819:1 5830:1 5848:1 5856:1 5857:1 5922:1 5951:1 5954:1 5993:1 6018:1 6021:1 6044:1 6063:1 6068:1 6101:1 6103:1 6121:1 6199:1 6217:1 6219:1 6221:1 6305:1 6371:2 6410:1 6415:1 6444:1 6528:1 6529:1 6540:1 6588:1 6591:2 6618:2 6639:1 6654:1 6724:1 6730:1 6734:1 6736:1 6744:1 6747:1 6773:1 6930:1 6932:1 7000:1 7019:1 7032:2 7060:1 7083:1 7115:1 7126:1 7192:1 7204:1 7216:2 7222:1 7236:1 7308:1 7322:1 7335:1 7342:1 7407:1 7412:1 7573:1 7574:1 7577:2 7585:2 7601:1 7603:1 7774:1 7788:2 7830:1 7840:1 7926:1 7932:1 7997:1 8005:1 8031:1 8054:1 8066:1 8084:1 8131:12 8151:3 8152:8 8170:1 8208:1 8254:1 8273:1 8302:1 8365:1 8372:1 8413:1 8433:1 8450:1 8523:1 8540:1 8546:1 8559:1 8597:1 8603:1 8633:4 8687:1 8718:1 8742:1 8748:1 8793:3 8798:1 8816:1 8857:1 8858:1 8873:1 8938:1 8959:1 8980:1 8983:1 8984:2 8985:1 8986:1 8987:1 8995:1 8998:1 9004:1 9020:1 9035:1 9039:2 9040:1 9041:1 9058:1 9061:1 9135:1 9139:2 9146:1 9151:1 9164:1 9204:1 9205:1 9209:1 9225:1 9268:1 9269:1 9273:1 9277:1 9280:1 9304:1 9316:1 9439:1 9442:1 9480:1 9506:1 9589:1 9594:1 9618:1 9651:1 9663:1 9695:1 9697:1 9715:1 9732:1 9870:1 9874:1 9888:1 9909:1 9928:1 9930:1 9942:1 9972:1 9983:1 9994:1 10037:7 10043:1 10078:1 10084:1 10109:1 10128:1 10146:1 10169:5 10238:1 10240:1 10321:2 10322:1 10362:1 10364:1 10379:1 10393:1 10410:2 10446:1 10450:1 10577:4 10581:2 10596:1 10707:1 10731:1 10757:1 10780:2 10784:1 10809:1 10880:1 10957:1 11009:1 11028:1 11061:1 11063:1 11081:1 11120:1 11126:1 11134:3 11148:1 11156:1 11166:2 11234:1 11237:1 11260:1 11261:1 11268:1 11359:1 11389:1 11400:1 11417:2 11512:1 11556:2 11569:1 11597:1 11668:1 11684:1 11779:1 11819:1 11830:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11887:1 11918:1 11926:3 11929:1 11961:1 11985:1 11986:1 11991:1 12056:1 12065:2 12095:1 12098:1 12130:1 12155:1 12170:1 12182:1 12193:1 12194:1 12200:1 12202:1 12218:1 12228:1 12266:2 12325:1 12335:1 12337:1 12373:1 12375:1 12385:2 12471:1 12628:1 12629:1 12654:1 12655:1 12656:7 12660:2 12766:1 12824:1 12825:1 12841:1 12902:1 12906:1 12936:1 12947:1 13035:1 13054:1 13092:1 13095:1 13107:1 13207:1 13227:4 13240:1 13248:1 13276:2 13277:1 13307:1 13376:1 13486:1 13522:1 13580:1 13614:1 13623:1 13624:1 13700:2 13711:1 13714:1 13720:1 13735:1 13739:1 13740:1 13768:1 13776:1 13816:1 13833:1 13835:1 13838:2 13842:1 13843:1 13851:1 13858:1 13873:1 13878:1 13915:2 13926:1 13930:1 13993:1 13994:1 14011:1 14063:1 14078:1 14113:1 14157:1 14189:1 14228:1 14234:1 14237:1 14239:1 14241:1 14366:2 14377:1 14422:1 14446:1 14471:1 14477:1 14503:1 14522:1 14533:1 14552:2 14553:2 14563:1 14610:1 14649:1 14650:1 14654:1 14780:1 14785:2 14862:1 14887:1 14922:1 14958:1 14987:1 15010:1 15011:1 15019:1 15060:1 15068:1 15096:1 15174:1 15190:1 15216:1 15233:1 15252:1 15276:1 15538:1 15547:1 15552:1 15672:1 15695:1 15788:1 15875:2 15876:1 15908:1 15911:1 15951:1 15955:1 16021:1 16032:2 16096:1 16111:1 16148:1 16167:3 16172:2 16174:1 16303:1 16309:1 16317:2 16353:1 16356:1 16357:1 16358:1 16363:1 16367:1 16369:1 16386:2 16467:1 16484:1 16501:2 16507:1 16564:1 16646:2 16659:2 16660:1 16673:1 16674:1 16706:7 16761:2 16775:13 16794:1 16831:1 16864:1 16913:1 16919:1 16920:1 16957:1 16961:1 16981:1 17047:1 17055:2 17135:1 17217:1 17222:1 17223:1 17232:1 17236:1 17248:2 17250:1 17253:1 17295:1 17336:1 17342:1 17372:1 17424:1 17438:1 17454:1 17460:7 17500:1 17514:1 17553:1 17583:1 17585:1 17587:1 17645:1 17646:1 17788:1 17797:2 17816:1 17877:2 17889:1 17906:1 17952:1 17972:1 17998:1 18034:2 18112:1 18129:1 18136:1 18144:1 18147:1 18153:1 18171:1 18197:1 18249:1 18277:1 18330:2 18342:1 18355:1 18421:1 18442:2 18506:1 18544:1 18584:1 18589:1 18602:1 18625:1 18629:1 18633:2 18636:1 18707:1 18748:1 18749:1 18781:1 18815:1 18816:1 18831:2 18838:1 18872:1 18932:1 18956:1 18977:1 18980:1 19006:1 19007:1 19016:1 19079:1 19114:4 19191:1 19244:1 19265:1 19272:1 19323:888 19343:1 19395:1 19413:3 19452:1 19473:1 19482:1 19507:1 19509:1 19530:2 19539:2 19541:1 19584:1 19636:2 19696:2 19708:1 19743:1 19751:1 19756:1 19804:1 19817:1 19831:4 19918:1 20032:1 20048:1 20050:1 20086:1 20090:1 20091:2 20095:1 20121:3 20146:1 20147:3 20178:1 20212:1 20216:1 20243:1 20248:1 20252:1 20262:1 20277:1 20313:1 20319:1 20339:1 20349:1 20387:1 20477:1 20492:1 20502:1 20523:1 20524:7 20565:1 20573:1 20623:1 20648:1 20669:1 20691:1 20720:1 20722:1 20724:1 20731:1 20779:1 20787:1 20811:1 20853:1 20894:1 20897:1 20907:1 20923:2 20996:7 21014:2 21030:1 21033:1 21050:2 21066:1 21103:1 21131:1 21175:1 21196:2 21258:1 21301:1 21328:1 21331:1 21339:1 21343:1 21389:1 21392:1 21532:1 21643:5 21660:3 21664:1 21708:1 21769:1 21773:1 21798:1 21822:2 21874:1 21896:1 21911:1 21932:1 21936:1 21980:1 22154:2 22157:2 22159:1 22170:1 22228:1 22236:1 22281:1 22286:1 22298:1 22300:2 22309:1 22332:1 22384:1 22396:1 22406:1 22425:1 22427:2 22447:1 22540:1 22549:1 22607:2 22618:1 22693:1 22702:1 22705:2 22720:1 22736:1 22740:1 22746:1 22748:1 22756:1 22769:1 22833:3 22834:1 22856:1 22866:1 22874:2 22909:1 22926:1 22985:7 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:2 23102:1 23112:2 23136:2 23160:2 23199:1 23212:1 23215:1 23246:1 23271:1 23284:2 23302:2 23336:1 23454:1 23554:1 23570:1 23575:1 23579:8 23600:1 23662:1 23666:1 23695:1 23699:1 23717:1 23765:2 23788:2 23807:1 23819:1 23878:1 23879:1 23955:1 23971:1 24003:1 24087:1 24103:1 24113:1 24119:1 24124:2 24128:1 24168:1 24187:1 24232:1 24235:1 24241:1 24247:1 24273:1 24293:1 24329:2 24340:4 24441:1 24449:1 24504:1 24509:1 24571:1 24591:1 24653:1 24668:1 24702:2 24717:1 24761:1 24797:1 24814:3 24827:2 24838:1 24845:1 24921:1 24932:1 24970:1 24976:1 25005:2 25014:1 25027:1 25073:2 25122:1 25181:1 25264:1 25285:2 25311:1 25325:1 25327:2 25339:1 25385:1 25398:1 25415:1 25419:1 25431:1 25471:1 25495:3 25503:1 25510:1 25623:1 25627:1 25643:1 25673:1 25684:1 25688:1 25722:1 25778:1 25823:1 25860:1 25872:1 25878:1 25884:1 25893:1 25966:1 25998:1 26004:1 26058:1 26073:1 26097:1 26124:1 26150:2 26156:1 26159:1 26172:1 26232:1 26322:1 26324:1 26331:1 26372:1 26377:1 26415:2 26429:1 26435:1 26436:1 26463:1 26472:1 26489:2 26518:1 26538:2 26627:2 26652:1 26653:2 26681:1 26689:1 26728:1 26808:1 26865:1 26868:1 26912:1 26915:1 27065:1 27099:1 27115:1 27138:4 27144:1 27212:1 27308:1 27422:3 27424:1 27438:1 27439:1 27440:1 27441:1 27490:1 27534:1 27540:2 27580:1 27601:1 27621:1 27636:1 27809:1 27852:1 27939:1 28095:2 28099:1 28121:2 28154:1 28223:4 28224:1 28230:1 28258:1 28338:1 28342:1 28343:1 28395:1 28429:1 28437:1 28443:1 28524:1 28674:1 28754:3 28771:1 28798:1 28848:1 28870:1 28912:1 28928:1 28962:1 28974:1 29112:1 29155:1 29179:1 29182:1 29183:11 29184:2 29192:1 29203:1 29220:1 29221:3 29234:1 29248:1 29276:1 29277:1 29289:1 29310:1 29325:1 29334:1 29495:1 29589:1 29591:1 29636:1 29655:1 29666:2 29745:1 29812:1 29904:1 29905:1 29932:2 29936:2 29942:1 30011:1 30129:3 30164:1 30201:1 30216:1 30222:2 30269:1 30290:1 30313:1 30341:1 30346:2 30348:1 30364:1 30435:1 30441:1 30524:1 30525:1 30527:1 30576:1 30586:1 16 24:1 75:4 94:1 151:1 190:1 224:2 285:1 294:2 324:1 335:2 336:1 360:1 477:2 489:1 495:1 510:1 511:1 625:1 637:1 660:2 673:4 688:1 694:1 722:1 730:1 748:1 778:1 795:1 836:1 857:1 882:1 898:1 943:1 966:1 974:1 975:1 1003:1 1029:1 1032:1 1038:1 1065:1 1069:1 1108:1 1131:1 1170:1 1171:1 1221:1 1254:2 1280:1 1291:2 1333:1 1361:1 1365:1 1395:1 1409:1 1476:1 1499:1 1566:1 1585:2 1590:1 1601:1 1602:1 1608:1 1625:1 1628:1 1651:1 1657:2 1671:1 1681:1 1685:1 1690:1 1725:1 1730:1 1734:1 1739:1 1742:1 1757:1 1780:1 1788:1 1826:1 1860:1 1863:1 1873:2 1905:1 1913:1 1914:1 1934:1 1938:1 1951:1 1955:1 1982:1 1986:1 1997:1 2021:1 2023:1 2038:1 2039:4 2090:1 2125:1 2169:1 2170:1 2234:1 2237:2 2269:1 2407:1 2408:1 2413:1 2415:1 2416:1 2417:1 2420:2 2422:1 2424:1 2434:4 2436:1 2437:2 2450:1 2518:1 2533:1 2599:1 2623:1 2645:1 2705:1 2797:1 2812:4 2819:1 2825:1 2854:3 2872:1 2888:1 2900:1 2952:2 2962:1 2965:2 3019:4 3056:3 3067:5 3118:10 3128:1 3151:1 3224:1 3296:1 3391:1 3403:1 3406:2 3428:1 3543:1 3567:1 3649:1 3661:1 3667:1 3711:1 3730:1 3731:1 3746:1 3764:1 3796:1 3801:1 3803:1 3810:1 3867:1 3902:1 3903:1 3929:1 3958:1 3959:13 3981:1 4010:7 4012:1 4015:2 4042:1 4058:2 4061:1 4076:1 4079:1 4123:3 4178:1 4183:1 4207:1 4216:1 4223:1 4258:1 4265:1 4269:1 4285:1 4301:1 4318:1 4368:1 4381:1 4439:1 4474:1 4504:1 4555:1 4636:3 4718:1 4749:2 4767:1 4796:1 4855:1 4938:1 4948:1 4989:2 5058:1 5059:1 5100:1 5201:6 5202:1 5231:1 5288:1 5308:1 5345:1 5347:4 5348:1 5351:1 5361:1 5362:7 5401:1 5593:2 5594:2 5677:7 5703:1 5735:1 5771:1 5819:1 5830:1 5848:1 5856:1 5857:1 5922:1 5943:1 5951:1 5954:1 5993:1 6018:1 6021:1 6044:1 6063:1 6068:1 6101:1 6103:1 6121:1 6199:1 6217:1 6219:1 6221:1 6305:1 6371:2 6386:1 6410:1 6415:1 6444:1 6528:1 6529:1 6540:1 6588:1 6591:2 6618:2 6639:1 6654:1 6724:1 6730:1 6734:1 6736:1 6744:2 6747:1 6773:1 6930:1 6932:1 7000:2 7019:1 7032:2 7060:1 7083:1 7115:1 7126:1 7192:1 7204:1 7216:2 7222:1 7236:1 7308:1 7322:1 7335:1 7342:1 7407:1 7412:1 7573:1 7574:1 7577:4 7585:2 7601:1 7603:1 7774:1 7788:3 7830:1 7840:1 7926:1 7932:1 7997:1 8005:1 8023:1 8031:1 8054:1 8064:1 8066:1 8084:1 8131:14 8151:3 8152:9 8170:1 8208:1 8238:1 8254:1 8273:1 8302:1 8365:3 8372:1 8413:1 8415:1 8433:1 8450:1 8523:1 8540:1 8546:1 8559:1 8597:1 8603:1 8633:4 8687:1 8718:1 8742:1 8748:1 8760:1 8793:3 8798:1 8816:1 8820:1 8857:1 8858:1 8873:1 8884:1 8938:1 8959:1 8980:2 8983:1 8984:2 8985:1 8986:1 8987:1 8995:1 8998:1 9004:1 9020:1 9027:1 9035:1 9039:2 9040:1 9041:1 9058:1 9061:1 9135:1 9139:2 9146:1 9149:1 9151:1 9164:1 9204:1 9205:1 9209:1 9225:1 9268:1 9269:1 9273:1 9277:1 9280:1 9304:1 9316:1 9339:1 9439:1 9442:1 9450:1 9480:1 9506:1 9589:1 9594:1 9618:1 9646:1 9651:1 9662:1 9663:1 9695:1 9697:1 9715:1 9732:1 9870:1 9874:1 9888:1 9909:1 9928:1 9930:1 9942:1 9972:1 9983:1 9994:1 10037:7 10043:1 10078:2 10084:1 10109:1 10128:1 10146:1 10169:7 10238:2 10240:1 10321:2 10322:1 10362:1 10364:1 10371:1 10379:1 10393:1 10406:1 10410:2 10446:1 10450:1 10577:4 10581:2 10596:1 10601:1 10651:1 10707:1 10731:1 10757:1 10780:3 10784:1 10809:1 10880:1 10892:1 10957:1 11009:1 11028:1 11061:1 11063:1 11081:1 11120:1 11126:1 11134:3 11148:1 11156:1 11166:2 11234:1 11237:1 11260:1 11261:1 11268:1 11359:1 11388:1 11389:1 11400:1 11417:2 11512:1 11556:2 11569:2 11597:1 11668:1 11684:1 11779:1 11819:1 11830:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11887:1 11918:1 11926:3 11929:1 11961:1 11985:1 11986:1 11991:1 12056:1 12065:3 12095:1 12098:1 12130:1 12155:1 12170:1 12182:1 12193:3 12194:1 12200:1 12202:3 12218:1 12228:1 12266:3 12325:2 12335:1 12337:1 12373:1 12375:1 12385:2 12423:1 12471:1 12628:1 12629:1 12654:1 12655:1 12656:7 12660:2 12698:1 12716:1 12766:1 12824:2 12825:1 12841:1 12902:1 12906:1 12936:1 12947:1 13035:1 13054:1 13092:1 13095:1 13107:1 13207:1 13227:5 13240:1 13248:1 13276:2 13277:1 13307:1 13342:1 13376:1 13486:1 13522:1 13580:1 13614:1 13623:1 13624:2 13656:1 13700:2 13711:1 13714:1 13720:1 13735:1 13739:1 13740:1 13768:1 13776:1 13816:1 13833:1 13835:1 13838:3 13842:1 13843:1 13851:1 13858:1 13873:1 13878:1 13915:2 13926:1 13930:1 13993:2 13994:1 14011:1 14063:1 14078:1 14113:1 14157:1 14189:1 14228:1 14234:1 14237:1 14239:1 14241:1 14366:3 14377:1 14422:1 14446:1 14471:1 14477:2 14503:1 14522:1 14533:1 14552:2 14553:2 14563:1 14610:1 14649:1 14650:1 14654:1 14780:1 14785:2 14862:1 14887:1 14922:1 14958:1 14987:1 15008:1 15010:1 15011:1 15019:1 15060:1 15068:1 15096:1 15174:1 15190:1 15216:1 15233:1 15252:1 15276:1 15487:1 15538:1 15547:1 15552:1 15672:1 15695:1 15702:1 15788:1 15875:2 15876:1 15881:1 15908:1 15911:1 15951:1 15955:1 16021:2 16032:2 16096:1 16111:1 16148:2 16167:3 16172:2 16174:1 16303:1 16309:1 16317:2 16353:1 16356:1 16357:1 16358:1 16363:1 16367:1 16369:1 16379:1 16386:2 16467:1 16484:1 16501:2 16507:1 16564:1 16646:2 16659:2 16660:1 16673:1 16674:1 16706:7 16761:2 16775:17 16794:1 16831:1 16864:1 16913:1 16919:1 16920:1 16957:1 16961:1 16981:1 17047:1 17055:2 17135:1 17217:1 17222:1 17223:1 17232:1 17236:1 17248:2 17250:1 17253:1 17295:1 17336:1 17342:1 17372:1 17424:2 17438:1 17454:1 17460:7 17500:1 17514:1 17553:1 17583:1 17585:1 17587:1 17645:1 17646:1 17788:1 17797:2 17816:1 17849:1 17877:2 17889:1 17906:2 17952:1 17972:1 17998:1 18034:2 18112:1 18129:1 18136:1 18144:1 18147:2 18153:1 18171:1 18197:1 18248:1 18249:1 18277:1 18330:2 18342:1 18355:1 18421:1 18442:3 18506:1 18544:1 18584:1 18589:1 18602:1 18625:1 18629:1 18633:3 18636:1 18707:1 18748:2 18749:1 18781:1 18815:1 18816:1 18819:1 18831:2 18838:1 18872:1 18873:1 18932:1 18956:1 18977:1 18980:1 19006:1 19007:1 19016:1 19079:1 19098:1 19114:5 19191:1 19225:1 19244:1 19265:1 19272:1 19323:1041 19343:1 19348:1 19395:1 19413:3 19452:1 19473:1 19482:1 19507:1 19509:1 19530:3 19539:3 19541:1 19584:1 19636:3 19664:1 19696:2 19708:1 19743:1 19751:1 19756:1 19804:1 19817:1 19831:4 19918:1 20032:1 20048:1 20050:1 20086:1 20090:1 20091:2 20095:1 20121:3 20146:1 20147:4 20178:1 20212:1 20216:1 20243:1 20248:1 20252:1 20262:1 20277:1 20313:1 20319:1 20339:1 20349:1 20387:1 20477:1 20492:1 20502:1 20523:1 20524:7 20565:1 20573:1 20613:1 20623:1 20648:1 20669:1 20691:1 20720:1 20722:1 20724:1 20731:1 20779:2 20787:1 20811:1 20853:1 20894:1 20897:1 20907:1 20923:2 20996:7 21014:2 21030:1 21033:1 21050:3 21066:1 21103:1 21131:1 21175:1 21196:2 21258:1 21301:1 21328:1 21331:1 21339:1 21343:1 21389:1 21392:1 21532:1 21596:1 21643:5 21660:3 21664:1 21708:1 21769:2 21773:1 21798:1 21822:3 21874:1 21896:1 21911:1 21932:1 21936:1 21980:1 22048:1 22154:2 22157:2 22159:1 22170:1 22228:1 22236:2 22281:1 22286:1 22298:1 22300:2 22309:1 22332:1 22384:1 22396:1 22406:1 22425:1 22427:3 22447:1 22540:1 22549:2 22607:2 22618:2 22621:1 22693:1 22702:1 22705:3 22720:1 22736:1 22740:1 22746:1 22748:2 22756:1 22769:1 22833:3 22834:1 22856:1 22866:1 22874:2 22909:1 22926:1 22985:7 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:2 23102:1 23112:2 23136:2 23160:2 23199:1 23212:1 23215:1 23246:2 23271:1 23284:2 23302:2 23336:1 23454:2 23462:1 23496:1 23554:1 23570:1 23575:1 23579:8 23600:1 23648:1 23662:1 23666:1 23695:1 23699:1 23717:1 23765:2 23788:2 23807:1 23819:1 23878:1 23879:1 23955:1 23968:1 23971:1 24003:1 24087:1 24103:1 24113:1 24119:1 24124:2 24128:1 24168:1 24187:1 24232:1 24235:1 24241:1 24247:1 24273:1 24280:1 24293:1 24329:2 24340:7 24441:1 24449:1 24504:1 24509:1 24571:1 24591:1 24653:1 24668:1 24702:2 24717:1 24761:1 24797:1 24814:3 24827:2 24838:1 24845:1 24921:1 24932:1 24970:1 24976:1 25005:2 25014:1 25027:1 25073:2 25122:1 25181:1 25252:1 25264:1 25285:2 25311:1 25325:1 25327:2 25339:1 25385:1 25398:1 25415:1 25419:1 25431:1 25471:1 25495:3 25503:1 25510:1 25623:1 25627:1 25643:1 25673:1 25684:1 25688:1 25722:1 25778:1 25823:1 25860:1 25872:1 25878:1 25884:1 25893:1 25966:1 25998:1 26004:1 26058:1 26073:1 26097:1 26124:1 26150:2 26156:1 26159:1 26172:1 26232:1 26322:1 26324:1 26331:1 26371:1 26372:1 26377:1 26415:2 26429:1 26435:2 26436:1 26445:1 26460:1 26463:1 26472:1 26489:2 26518:1 26538:2 26627:2 26652:1 26653:2 26681:1 26689:1 26728:1 26808:1 26865:1 26868:1 26871:1 26912:1 26915:1 27065:1 27099:1 27115:1 27138:5 27144:1 27212:1 27308:1 27422:3 27424:2 27438:1 27439:1 27440:2 27441:1 27490:1 27534:1 27540:2 27580:1 27601:1 27621:1 27636:1 27809:1 27852:1 27939:1 28004:1 28095:2 28099:1 28121:2 28154:1 28223:7 28224:1 28230:1 28258:1 28338:1 28342:1 28343:1 28395:1 28429:1 28437:1 28443:1 28482:1 28499:1 28524:1 28581:1 28674:1 28684:1 28754:3 28771:1 28798:1 28848:1 28870:1 28874:1 28912:1 28928:1 28962:1 28974:1 29112:1 29155:1 29179:1 29182:2 29183:12 29184:2 29192:1 29203:1 29220:1 29221:5 29234:1 29248:1 29276:1 29277:1 29289:1 29310:1 29325:1 29334:1 29495:1 29589:1 29591:2 29636:1 29655:1 29666:2 29745:1 29812:1 29848:1 29904:1 29905:1 29932:2 29936:2 29942:1 30011:1 30129:3 30164:1 30201:1 30216:1 30222:2 30269:1 30290:1 30313:1 30341:1 30346:2 30348:1 30364:1 30435:2 30441:1 30524:1 30525:1 30527:2 30576:1 30586:1 16 24:1 75:4 94:1 151:1 190:1 224:4 285:1 294:2 324:1 335:2 336:1 360:1 436:1 477:2 489:1 493:1 495:1 510:1 511:1 625:1 637:2 660:2 673:4 688:1 694:1 722:1 730:1 748:1 778:2 795:1 836:1 857:1 882:1 898:1 943:1 966:1 974:1 975:1 1003:1 1029:1 1032:1 1038:1 1065:1 1069:1 1108:1 1131:1 1170:1 1171:1 1221:1 1253:1 1254:2 1280:1 1291:2 1333:1 1361:1 1365:1 1395:1 1409:1 1476:1 1499:1 1566:1 1585:2 1590:1 1601:1 1602:1 1608:1 1625:1 1628:1 1651:1 1657:2 1671:1 1681:1 1685:1 1690:1 1725:1 1730:1 1734:1 1739:1 1742:2 1757:1 1776:1 1780:1 1788:1 1826:1 1860:1 1863:1 1873:2 1905:1 1913:1 1914:1 1934:1 1938:1 1951:1 1955:1 1982:1 1986:1 1997:1 2021:1 2023:1 2038:1 2039:4 2090:1 2125:1 2169:1 2170:1 2234:1 2237:2 2269:1 2407:1 2408:1 2413:1 2415:1 2416:1 2417:1 2420:2 2422:1 2424:1 2434:4 2436:1 2437:2 2450:1 2518:1 2533:1 2560:1 2599:1 2623:1 2645:1 2694:1 2705:1 2797:1 2812:4 2819:1 2825:1 2854:3 2872:1 2888:1 2900:1 2952:2 2962:1 2965:2 3019:4 3056:3 3067:5 3118:11 3128:1 3151:1 3224:1 3296:1 3391:1 3403:2 3406:4 3428:2 3543:1 3567:1 3634:1 3649:1 3661:1 3667:1 3711:1 3730:1 3731:1 3746:1 3764:1 3796:1 3801:1 3803:1 3810:1 3867:1 3902:1 3903:1 3929:1 3958:1 3959:14 3981:1 4010:7 4012:1 4015:2 4027:1 4042:1 4058:2 4061:1 4076:2 4079:1 4123:3 4178:1 4183:1 4207:2 4216:1 4223:1 4258:1 4265:1 4269:1 4285:1 4301:1 4318:1 4368:1 4381:1 4439:1 4474:1 4504:1 4555:1 4636:3 4706:1 4718:2 4749:2 4767:1 4796:1 4855:1 4900:1 4938:1 4948:1 4989:2 5058:1 5059:1 5064:1 5100:1 5201:6 5202:1 5231:1 5288:1 5308:1 5314:1 5345:1 5347:4 5348:1 5351:1 5361:1 5362:7 5401:1 5593:2 5594:3 5677:7 5703:1 5735:1 5771:1 5819:1 5830:1 5848:1 5856:1 5857:1 5922:1 5943:1 5951:1 5954:1 5962:1 5993:1 6018:1 6021:1 6044:1 6063:1 6068:1 6101:1 6103:1 6121:1 6199:1 6217:1 6219:1 6221:1 6305:1 6371:3 6386:1 6410:1 6415:1 6444:1 6528:1 6529:1 6540:1 6588:1 6591:2 6618:3 6639:1 6654:1 6724:1 6730:1 6734:1 6736:1 6744:2 6747:1 6773:1 6930:1 6932:1 6977:1 7000:2 7019:1 7032:2 7060:1 7083:1 7115:1 7126:1 7192:1 7201:1 7204:1 7216:2 7222:1 7236:1 7308:1 7322:1 7335:2 7342:1 7407:1 7412:1 7456:1 7573:1 7574:1 7577:4 7585:2 7601:1 7603:1 7774:1 7788:3 7830:1 7840:1 7926:1 7932:1 7997:2 8005:1 8023:1 8031:1 8054:1 8064:1 8066:1 8084:1 8131:14 8151:3 8152:9 8170:1 8208:1 8238:1 8254:1 8273:1 8279:1 8302:1 8365:3 8372:1 8413:1 8415:1 8433:1 8450:1 8523:1 8540:1 8546:1 8559:1 8597:1 8603:1 8633:4 8687:1 8718:1 8742:1 8748:1 8760:1 8793:3 8798:1 8816:1 8820:1 8857:1 8858:1 8873:1 8884:1 8915:1 8938:1 8959:1 8980:2 8983:1 8984:2 8985:1 8986:1 8987:2 8995:1 8998:1 9004:1 9020:1 9027:1 9035:1 9039:2 9040:1 9041:1 9058:1 9061:1 9075:1 9112:1 9135:1 9139:2 9146:1 9149:1 9151:1 9164:1 9204:1 9205:1 9209:1 9225:1 9268:1 9269:1 9273:1 9277:1 9280:1 9304:1 9316:1 9339:1 9439:1 9442:1 9450:1 9471:1 9478:1 9480:1 9506:1 9589:1 9594:1 9618:1 9646:1 9651:1 9662:1 9663:1 9695:1 9697:1 9715:1 9732:1 9870:1 9874:1 9888:1 9909:1 9928:1 9930:1 9942:1 9972:1 9983:1 9994:1 10037:7 10043:1 10069:1 10078:2 10084:2 10109:1 10128:1 10146:1 10169:9 10185:1 10223:1 10238:2 10240:1 10321:2 10322:1 10362:1 10363:1 10364:1 10371:1 10379:1 10393:1 10406:1 10410:2 10446:1 10450:1 10577:4 10581:2 10596:1 10601:1 10651:1 10707:1 10731:1 10757:1 10763:1 10780:3 10784:1 10809:1 10880:1 10892:1 10957:2 11009:1 11028:1 11061:1 11063:1 11081:1 11120:1 11126:1 11134:3 11148:1 11156:1 11166:2 11234:1 11237:1 11260:1 11261:1 11268:1 11359:1 11388:1 11389:1 11400:1 11417:2 11482:1 11512:1 11556:2 11569:2 11597:1 11668:1 11684:1 11740:1 11779:1 11819:1 11830:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11887:1 11918:1 11926:3 11929:1 11961:1 11985:1 11986:1 11991:1 12056:1 12065:3 12095:1 12098:1 12130:1 12155:1 12170:1 12182:1 12193:3 12194:1 12200:1 12202:3 12218:1 12228:1 12266:3 12275:1 12325:4 12335:1 12337:1 12373:1 12375:1 12385:3 12423:1 12471:1 12594:1 12628:1 12629:1 12654:1 12655:1 12656:7 12660:2 12698:1 12716:1 12766:1 12824:2 12825:1 12841:1 12902:1 12906:1 12936:1 12947:1 13035:1 13054:1 13092:1 13095:1 13107:1 13166:1 13207:1 13227:5 13240:1 13248:1 13276:2 13277:1 13307:1 13342:1 13376:1 13486:1 13522:1 13580:1 13614:1 13623:1 13624:2 13656:1 13700:2 13711:1 13714:1 13720:1 13735:1 13739:1 13740:1 13768:1 13776:1 13816:1 13833:1 13835:1 13838:3 13842:1 13843:1 13851:1 13858:1 13873:1 13878:1 13915:2 13926:1 13930:1 13993:2 13994:1 14011:1 14063:1 14078:1 14113:1 14157:1 14177:1 14189:1 14228:1 14234:1 14237:1 14239:1 14241:1 14275:1 14296:1 14366:3 14377:1 14422:1 14446:1 14471:1 14477:2 14503:1 14522:1 14533:1 14552:2 14553:2 14563:1 14584:1 14610:1 14644:1 14649:1 14650:1 14654:1 14780:1 14785:2 14806:1 14862:1 14887:1 14922:1 14958:1 14987:1 15008:1 15010:1 15011:1 15019:1 15060:1 15068:1 15096:1 15174:1 15190:1 15216:1 15233:1 15252:1 15276:1 15319:1 15487:1 15538:1 15547:1 15552:1 15672:1 15695:1 15702:1 15725:1 15772:1 15788:1 15875:2 15876:1 15881:1 15908:1 15911:1 15951:1 15955:1 16021:2 16032:2 16096:1 16111:1 16148:2 16167:3 16172:2 16174:1 16222:1 16303:1 16309:1 16317:2 16353:1 16356:1 16357:1 16358:1 16363:1 16367:1 16369:1 16379:1 16386:2 16467:1 16484:1 16498:1 16501:2 16507:2 16564:1 16646:2 16659:2 16660:1 16673:1 16674:1 16677:1 16706:7 16743:1 16761:2 16775:18 16794:1 16831:1 16864:1 16867:1 16913:1 16919:1 16920:1 16957:1 16961:1 16981:1 17010:1 17047:1 17055:3 17135:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:1 17253:1 17295:1 17336:1 17342:1 17372:1 17422:1 17424:2 17438:1 17454:1 17460:7 17500:1 17514:1 17553:1 17583:1 17585:1 17587:1 17635:1 17645:1 17646:1 17718:1 17788:1 17797:2 17816:1 17849:1 17871:1 17877:2 17889:1 17897:1 17906:2 17952:1 17972:1 17998:1 18034:2 18112:1 18129:1 18136:1 18144:1 18147:2 18153:1 18171:1 18174:1 18197:1 18248:1 18249:1 18277:1 18330:2 18342:1 18355:1 18421:1 18442:3 18506:1 18544:1 18546:1 18584:1 18589:1 18602:1 18625:1 18629:1 18633:3 18636:1 18707:1 18748:2 18749:1 18781:1 18815:1 18816:1 18819:1 18831:2 18838:1 18872:1 18873:1 18932:1 18956:1 18977:1 18980:1 19006:1 19007:1 19016:1 19079:1 19098:1 19114:5 19191:1 19225:1 19244:1 19265:1 19272:1 19323:1109 19343:1 19348:1 19395:1 19413:3 19452:1 19473:2 19482:1 19507:1 19509:1 19530:3 19539:3 19541:1 19584:1 19636:3 19664:1 19696:2 19708:1 19743:1 19751:1 19756:1 19804:1 19817:1 19831:4 19918:1 20032:1 20048:1 20050:1 20074:1 20086:2 20090:1 20091:2 20095:1 20121:4 20146:1 20147:4 20177:1 20178:1 20212:1 20216:1 20243:1 20248:1 20252:1 20262:1 20277:1 20313:1 20319:1 20339:1 20349:1 20387:1 20477:1 20492:1 20502:1 20523:1 20524:7 20565:1 20573:1 20613:1 20623:1 20648:1 20669:1 20691:1 20720:1 20722:1 20724:1 20725:1 20731:1 20779:4 20787:1 20811:1 20853:1 20894:1 20897:1 20907:1 20923:2 20996:7 21014:2 21030:1 21033:1 21050:3 21066:1 21103:1 21131:1 21175:1 21196:2 21258:1 21301:2 21316:1 21328:1 21331:1 21339:1 21343:1 21389:1 21392:1 21532:1 21554:1 21596:1 21643:5 21660:3 21664:1 21708:1 21769:2 21773:1 21798:1 21822:3 21874:1 21896:1 21911:1 21932:1 21936:1 21980:1 22048:1 22154:2 22157:2 22159:1 22170:1 22228:1 22236:2 22281:1 22286:1 22298:1 22300:2 22309:1 22332:1 22349:1 22384:1 22396:1 22406:1 22425:1 22427:3 22430:1 22447:1 22501:1 22540:1 22549:2 22607:2 22618:2 22621:1 22693:1 22702:1 22705:3 22720:1 22736:1 22740:1 22746:1 22748:2 22756:1 22769:1 22833:3 22834:1 22856:1 22866:1 22874:2 22909:1 22926:1 22985:7 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:2 23102:1 23112:2 23136:2 23160:3 23199:1 23212:1 23215:1 23246:2 23256:1 23271:1 23284:2 23302:3 23336:1 23454:2 23462:1 23496:1 23554:1 23570:1 23575:1 23579:9 23600:1 23648:1 23662:1 23666:2 23695:1 23699:1 23717:3 23765:2 23767:1 23788:2 23807:1 23819:1 23878:1 23879:1 23955:1 23968:1 23971:1 24003:1 24087:1 24103:1 24113:1 24119:2 24124:2 24128:1 24168:1 24187:1 24207:1 24232:1 24235:1 24241:1 24247:1 24273:1 24280:1 24293:1 24329:2 24340:7 24441:1 24449:1 24504:1 24509:1 24571:1 24591:1 24653:1 24668:1 24702:2 24717:1 24761:1 24797:1 24814:3 24827:2 24838:1 24845:1 24921:1 24932:1 24970:1 24976:1 25005:2 25014:1 25027:1 25073:2 25122:1 25181:1 25252:1 25264:1 25285:2 25311:1 25325:1 25327:2 25339:1 25385:1 25398:1 25415:1 25419:1 25431:1 25468:1 25471:1 25472:1 25495:3 25503:1 25510:1 25623:1 25627:1 25643:1 25673:1 25684:1 25688:1 25718:1 25722:1 25778:1 25797:1 25823:1 25860:1 25872:1 25878:1 25884:1 25893:1 25966:1 25998:1 26004:1 26058:1 26073:1 26097:1 26124:1 26150:2 26156:1 26159:1 26172:1 26232:1 26322:1 26324:1 26331:1 26371:1 26372:1 26377:1 26415:2 26429:1 26435:2 26436:1 26445:1 26460:1 26463:1 26472:1 26489:2 26513:1 26518:1 26538:2 26627:2 26652:1 26653:2 26681:1 26689:1 26728:2 26782:1 26808:1 26865:1 26868:1 26871:1 26893:1 26912:1 26915:1 26977:1 27065:1 27099:1 27115:1 27138:5 27144:1 27178:1 27212:1 27308:1 27332:1 27422:4 27424:2 27438:1 27439:1 27440:4 27441:1 27490:1 27534:1 27540:2 27580:1 27601:1 27621:1 27636:1 27799:1 27809:1 27852:1 27939:1 27949:1 28004:1 28095:2 28099:1 28118:1 28121:2 28154:1 28223:7 28224:1 28230:1 28258:1 28338:1 28342:1 28343:1 28395:1 28421:1 28429:1 28437:1 28443:1 28482:1 28499:1 28524:1 28581:1 28674:1 28684:1 28754:3 28771:1 28798:1 28848:1 28870:1 28874:1 28912:1 28928:1 28962:1 28974:1 29112:1 29155:1 29179:1 29182:2 29183:12 29184:2 29186:1 29189:1 29192:1 29203:1 29220:1 29221:7 29234:1 29248:1 29276:1 29277:1 29289:1 29310:1 29325:1 29334:1 29454:1 29495:2 29589:1 29591:4 29624:1 29636:1 29655:1 29666:2 29745:1 29812:1 29848:1 29904:1 29905:1 29932:2 29936:2 29942:1 29950:1 30011:1 30129:3 30164:1 30201:1 30216:1 30222:2 30241:1 30269:1 30290:1 30292:1 30313:1 30341:1 30346:2 30348:1 30364:1 30435:2 30441:1 30524:1 30525:1 30527:2 30576:1 30586:1 16 24:1 75:4 94:1 151:1 190:1 206:1 224:4 285:1 294:2 324:1 335:2 336:1 360:1 436:1 477:2 489:1 493:1 495:1 510:1 511:1 625:1 637:2 660:2 673:4 688:1 694:1 722:1 730:1 748:1 778:2 795:1 836:1 857:1 882:1 898:1 943:1 966:1 974:1 975:1 1003:1 1029:1 1032:1 1038:1 1065:1 1069:1 1108:1 1131:1 1161:1 1170:1 1171:1 1221:1 1224:1 1253:1 1254:2 1267:1 1280:1 1291:2 1333:1 1361:1 1365:1 1395:1 1409:1 1476:1 1499:1 1566:1 1585:2 1590:1 1594:1 1601:1 1602:1 1608:1 1625:1 1628:1 1651:1 1657:2 1671:1 1681:1 1685:1 1690:1 1725:1 1730:1 1734:1 1739:1 1742:2 1757:1 1776:1 1780:1 1788:1 1826:1 1857:1 1860:1 1863:1 1873:2 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1951:1 1955:1 1982:1 1986:1 1997:1 2021:1 2023:1 2038:1 2039:4 2052:1 2090:1 2125:1 2169:1 2170:1 2234:1 2237:2 2269:1 2353:1 2407:1 2408:1 2413:1 2415:1 2416:1 2417:1 2420:2 2422:1 2424:1 2427:1 2434:4 2436:1 2437:2 2450:1 2473:1 2518:1 2519:1 2533:1 2560:1 2599:1 2623:1 2645:1 2694:1 2705:1 2797:1 2812:4 2819:1 2825:1 2852:1 2854:3 2872:1 2888:1 2900:1 2943:1 2952:2 2962:1 2965:3 3019:4 3056:5 3067:5 3118:12 3128:1 3151:1 3224:1 3296:1 3391:1 3403:2 3406:4 3428:2 3498:1 3543:1 3567:1 3634:1 3649:1 3661:1 3667:1 3711:1 3730:1 3731:1 3746:1 3764:1 3796:1 3801:1 3803:1 3810:1 3867:1 3902:1 3903:1 3929:1 3958:1 3959:14 3981:1 4010:7 4011:1 4012:1 4015:2 4027:1 4042:1 4057:1 4058:2 4061:1 4076:2 4079:1 4123:3 4178:1 4183:1 4207:2 4216:1 4223:1 4258:1 4265:1 4269:1 4285:1 4301:1 4318:1 4368:1 4381:1 4439:1 4474:1 4504:1 4555:1 4557:1 4636:3 4706:1 4718:2 4749:2 4767:1 4796:1 4855:1 4900:1 4930:1 4938:1 4948:1 4989:2 5058:1 5059:1 5064:1 5092:1 5100:1 5201:6 5202:1 5231:1 5288:1 5308:1 5314:1 5321:1 5323:1 5345:1 5347:4 5348:1 5351:1 5361:1 5362:7 5401:1 5593:2 5594:3 5677:7 5703:1 5735:1 5771:1 5816:1 5819:1 5830:1 5848:1 5856:1 5857:1 5922:1 5943:1 5951:1 5954:1 5962:1 5993:1 6018:1 6021:1 6044:1 6063:1 6068:1 6101:1 6103:1 6121:1 6140:1 6199:1 6217:1 6219:1 6221:1 6305:1 6371:3 6386:1 6410:1 6415:1 6444:1 6491:1 6528:1 6529:1 6540:1 6588:1 6591:2 6618:3 6635:1 6639:1 6654:1 6724:1 6730:1 6734:1 6736:1 6744:2 6745:1 6747:1 6773:1 6878:1 6930:1 6932:1 6977:1 7000:2 7019:1 7032:2 7060:1 7080:1 7083:1 7115:1 7126:1 7192:1 7201:1 7204:1 7216:2 7222:1 7231:1 7236:1 7257:1 7308:1 7322:1 7335:2 7342:1 7407:1 7412:1 7456:1 7573:1 7574:1 7577:4 7585:2 7601:1 7603:1 7610:1 7774:1 7779:1 7788:3 7830:1 7840:1 7926:1 7932:1 7997:2 8005:1 8023:1 8031:1 8054:1 8064:1 8066:1 8084:1 8122:1 8131:14 8133:1 8140:1 8151:4 8152:9 8170:1 8208:2 8238:1 8254:1 8273:1 8279:1 8302:1 8365:3 8372:1 8413:1 8415:1 8433:1 8450:1 8492:1 8523:1 8540:1 8546:1 8559:1 8597:1 8603:1 8633:4 8665:1 8687:1 8718:1 8742:1 8748:1 8760:3 8793:3 8798:1 8816:2 8820:1 8857:1 8858:1 8873:1 8884:1 8915:1 8938:1 8959:1 8980:2 8983:1 8984:2 8985:1 8986:1 8987:2 8995:1 8998:1 9004:1 9020:1 9027:1 9035:1 9039:2 9040:1 9041:1 9058:1 9061:1 9075:1 9112:1 9135:1 9139:2 9146:1 9149:1 9151:1 9164:1 9204:1 9205:1 9209:1 9215:1 9225:1 9268:1 9269:1 9273:1 9277:1 9280:2 9304:1 9316:1 9339:1 9439:1 9442:1 9450:1 9471:1 9478:1 9480:1 9506:1 9589:1 9594:1 9618:1 9646:1 9651:1 9662:1 9663:1 9695:1 9697:1 9715:1 9732:1 9870:1 9874:1 9888:1 9909:1 9928:1 9930:1 9940:1 9942:1 9972:1 9983:1 9994:1 10037:7 10043:1 10069:1 10078:2 10084:2 10109:1 10128:1 10146:1 10169:9 10185:1 10223:1 10238:2 10240:1 10321:2 10322:1 10362:1 10363:1 10364:1 10371:1 10379:1 10393:1 10406:1 10410:2 10446:2 10450:1 10577:4 10581:2 10596:1 10601:1 10651:3 10707:1 10731:1 10757:1 10763:1 10780:3 10784:1 10809:1 10880:1 10892:3 10957:2 11009:1 11028:1 11061:2 11063:1 11070:1 11081:1 11120:1 11126:1 11134:3 11148:1 11156:1 11166:2 11234:1 11237:1 11260:1 11261:1 11268:1 11359:1 11388:1 11389:1 11400:1 11417:2 11418:1 11482:1 11512:1 11556:2 11569:2 11597:1 11668:1 11684:1 11703:1 11710:1 11718:1 11740:1 11779:1 11819:1 11830:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11887:1 11918:1 11926:3 11929:1 11961:1 11985:1 11986:1 11991:1 12029:1 12056:1 12065:3 12095:1 12098:1 12130:1 12155:1 12170:1 12182:1 12193:3 12194:1 12200:1 12202:3 12218:1 12228:1 12253:1 12266:3 12275:1 12325:4 12335:1 12337:1 12373:1 12375:1 12385:3 12423:1 12471:1 12594:1 12628:1 12629:1 12654:1 12655:1 12656:7 12660:3 12698:1 12716:1 12766:1 12824:3 12825:1 12841:1 12902:1 12906:1 12936:1 12947:1 13035:1 13054:1 13092:1 13095:1 13107:1 13166:1 13207:1 13227:5 13240:1 13248:1 13276:2 13277:2 13307:1 13342:1 13371:1 13376:1 13440:1 13443:1 13486:1 13522:1 13580:1 13614:1 13623:1 13624:2 13656:1 13700:2 13711:1 13714:1 13720:1 13735:1 13739:1 13740:1 13768:1 13776:1 13816:1 13833:1 13835:1 13838:3 13842:1 13843:1 13851:1 13858:1 13873:1 13878:1 13915:2 13926:1 13930:1 13944:1 13958:1 13993:2 13994:1 14011:1 14028:1 14063:1 14078:1 14113:1 14157:1 14177:1 14189:1 14228:1 14234:1 14237:1 14239:1 14241:1 14275:1 14296:1 14311:1 14334:1 14366:3 14377:1 14422:1 14446:1 14471:1 14472:1 14477:2 14503:1 14522:1 14533:1 14552:2 14553:3 14563:1 14584:1 14610:1 14644:1 14649:1 14650:1 14654:1 14780:1 14785:2 14806:1 14845:1 14862:1 14887:1 14922:1 14958:1 14987:1 15008:3 15010:1 15011:1 15019:1 15060:1 15068:1 15072:1 15096:1 15174:1 15190:1 15216:1 15233:1 15252:1 15276:1 15319:1 15364:1 15476:1 15487:1 15538:1 15547:1 15552:1 15672:1 15695:1 15702:1 15725:1 15772:1 15788:1 15875:2 15876:1 15881:1 15908:1 15911:1 15951:1 15955:1 16021:2 16032:2 16096:1 16111:1 16148:2 16167:3 16172:2 16174:1 16222:1 16303:1 16309:1 16317:2 16336:1 16353:1 16356:1 16357:1 16358:1 16363:1 16367:1 16369:1 16379:1 16386:2 16467:1 16484:1 16498:1 16501:2 16507:2 16564:1 16646:2 16659:2 16660:1 16673:1 16674:1 16677:1 16706:7 16739:1 16743:1 16761:2 16775:18 16794:1 16831:1 16864:1 16867:1 16913:1 16919:1 16920:1 16957:1 16961:1 16981:1 17010:1 17047:1 17055:3 17116:1 17135:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:1 17253:1 17295:1 17336:1 17342:1 17372:1 17415:1 17422:1 17424:2 17438:1 17454:1 17460:7 17500:1 17514:1 17553:1 17583:1 17585:1 17587:1 17593:1 17635:1 17645:1 17646:1 17718:1 17788:1 17797:2 17816:1 17843:1 17849:1 17859:1 17871:1 17877:2 17889:1 17897:1 17906:2 17952:1 17957:1 17972:1 17998:1 18034:3 18112:1 18129:2 18136:1 18144:1 18147:2 18153:1 18154:1 18171:1 18174:1 18197:1 18223:1 18248:1 18249:1 18277:1 18330:2 18342:1 18355:1 18421:1 18442:3 18478:1 18506:1 18544:1 18546:1 18584:1 18589:1 18602:1 18625:1 18629:1 18633:3 18636:1 18707:1 18748:2 18749:1 18781:1 18815:1 18816:1 18819:1 18831:2 18838:1 18872:1 18873:1 18932:1 18956:2 18977:1 18980:1 19006:1 19007:1 19016:1 19079:1 19098:1 19113:1 19114:5 19191:1 19210:1 19225:1 19244:2 19265:2 19272:1 19323:1178 19343:1 19348:1 19395:1 19413:3 19452:2 19473:2 19482:1 19507:1 19509:1 19530:3 19539:3 19541:1 19584:1 19636:3 19664:1 19696:2 19708:1 19733:1 19743:1 19751:1 19756:1 19804:1 19817:1 19831:4 19918:1 20032:1 20048:1 20050:1 20074:1 20086:2 20090:1 20091:2 20095:1 20121:4 20146:1 20147:4 20177:1 20178:1 20212:1 20216:1 20243:1 20248:1 20252:1 20262:1 20277:1 20313:1 20319:1 20339:1 20349:1 20387:1 20392:1 20477:1 20492:1 20502:1 20523:1 20524:7 20565:1 20573:1 20613:1 20623:1 20648:1 20669:1 20691:1 20720:1 20722:1 20724:1 20725:1 20731:1 20779:4 20787:1 20811:1 20853:1 20894:1 20897:1 20907:1 20923:2 20972:1 20996:7 21014:2 21030:1 21033:1 21050:4 21066:1 21103:1 21131:1 21175:1 21196:2 21258:1 21301:2 21316:1 21328:1 21331:1 21339:1 21343:1 21389:1 21392:1 21532:1 21554:1 21596:1 21643:5 21660:3 21664:1 21690:1 21708:1 21769:2 21773:1 21798:1 21822:3 21830:2 21874:1 21896:1 21911:1 21932:1 21936:1 21980:1 22048:1 22106:1 22154:2 22157:2 22159:1 22170:1 22228:1 22236:2 22251:1 22281:1 22286:1 22298:1 22300:2 22309:1 22332:1 22349:1 22384:1 22396:1 22406:1 22425:1 22427:3 22430:1 22447:1 22501:1 22540:1 22549:2 22563:1 22603:1 22607:2 22618:2 22621:1 22693:1 22702:1 22705:3 22712:1 22720:1 22734:1 22736:1 22740:1 22746:1 22748:2 22756:1 22769:1 22833:3 22834:1 22856:1 22866:1 22874:2 22895:1 22909:1 22926:1 22985:7 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:2 23102:1 23112:2 23136:3 23160:3 23199:1 23212:1 23215:1 23225:1 23246:2 23256:1 23271:1 23284:2 23302:3 23336:1 23454:2 23462:1 23496:3 23554:1 23570:1 23575:1 23579:9 23600:1 23648:1 23662:1 23666:2 23695:1 23699:1 23717:3 23721:1 23750:1 23765:2 23767:1 23788:2 23807:1 23819:1 23859:1 23878:1 23879:1 23891:1 23955:1 23968:1 23971:2 23978:1 24002:1 24003:1 24049:1 24087:1 24103:1 24113:1 24119:2 24124:2 24128:1 24168:1 24183:1 24187:1 24207:1 24232:1 24235:1 24241:2 24247:1 24273:1 24280:1 24293:1 24329:2 24340:7 24408:1 24441:1 24449:1 24504:1 24509:1 24534:1 24571:1 24591:1 24653:1 24656:1 24668:1 24702:2 24717:1 24761:1 24797:1 24814:3 24827:2 24838:1 24845:1 24921:1 24932:1 24970:1 24976:1 25005:2 25014:1 25027:1 25073:2 25122:1 25181:1 25252:1 25264:1 25285:2 25311:1 25325:1 25327:2 25339:1 25347:1 25385:1 25398:1 25415:1 25419:1 25431:1 25468:1 25471:1 25472:1 25495:3 25503:1 25510:1 25561:1 25587:1 25623:1 25627:1 25643:1 25673:1 25684:1 25688:1 25718:1 25722:1 25778:1 25797:1 25823:1 25852:1 25860:1 25872:1 25878:1 25884:1 25893:2 25918:1 25966:1 25998:1 26004:1 26058:1 26073:1 26097:1 26124:1 26150:2 26156:2 26159:1 26172:1 26232:1 26257:1 26322:1 26324:1 26331:1 26371:1 26372:1 26377:1 26415:2 26429:2 26435:2 26436:1 26445:1 26460:1 26463:1 26472:1 26489:2 26513:1 26518:1 26538:2 26627:3 26652:1 26653:2 26681:1 26689:1 26728:2 26782:1 26808:1 26835:1 26844:1 26865:1 26868:1 26871:1 26893:1 26912:1 26915:1 26977:1 26982:1 27010:1 27065:1 27099:1 27115:1 27138:5 27144:1 27178:1 27212:1 27308:1 27332:1 27422:4 27424:2 27438:1 27439:1 27440:4 27441:1 27490:1 27534:1 27540:2 27580:1 27601:1 27621:1 27636:1 27799:1 27809:1 27852:1 27939:1 27949:1 28004:1 28005:1 28095:2 28099:1 28118:1 28121:2 28154:1 28223:7 28224:1 28230:1 28258:1 28338:1 28342:1 28343:1 28395:1 28410:1 28421:1 28429:1 28437:1 28443:1 28472:1 28482:1 28499:1 28524:1 28581:1 28674:1 28684:1 28754:3 28771:1 28798:1 28848:1 28870:1 28874:1 28912:1 28928:1 28962:1 28974:1 29112:1 29130:3 29155:1 29179:1 29182:2 29183:12 29184:2 29186:1 29189:1 29192:1 29203:1 29220:1 29221:7 29234:1 29248:1 29276:1 29277:1 29281:1 29289:1 29310:1 29325:1 29334:1 29382:1 29454:1 29495:2 29587:1 29589:1 29591:4 29595:1 29624:1 29636:1 29655:1 29666:2 29745:1 29812:1 29848:1 29904:1 29905:1 29932:2 29936:2 29942:1 29950:1 30011:1 30129:3 30160:1 30164:1 30201:1 30216:1 30222:2 30241:1 30269:1 30290:1 30292:1 30313:1 30341:1 30346:2 30348:1 30354:1 30364:1 30435:2 30441:1 30524:1 30525:1 30527:2 30576:1 30586:1 30595:1 16 24:1 62:1 75:4 94:1 151:1 190:1 206:1 224:4 266:1 285:1 294:2 324:1 334:1 335:2 336:1 360:1 436:1 477:2 489:1 493:1 495:1 505:1 510:1 511:1 625:1 637:2 660:2 673:4 679:1 688:1 694:1 722:1 730:1 748:1 778:2 795:1 836:1 857:1 882:1 898:1 943:1 949:1 966:1 974:1 975:1 1003:1 1029:1 1032:1 1038:1 1065:2 1069:1 1108:1 1131:1 1161:1 1170:1 1171:1 1221:1 1224:1 1253:1 1254:2 1267:1 1280:1 1291:2 1325:1 1333:1 1347:1 1361:1 1365:1 1395:1 1409:1 1421:1 1446:1 1476:1 1499:1 1566:1 1585:2 1590:1 1594:1 1601:1 1602:1 1608:2 1625:1 1628:1 1651:1 1657:2 1671:1 1681:1 1685:1 1690:2 1725:1 1730:1 1734:1 1739:1 1742:2 1757:1 1776:1 1780:1 1788:1 1826:1 1855:1 1857:1 1860:1 1863:1 1873:2 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1951:1 1954:1 1955:1 1964:1 1982:1 1986:1 1997:1 2016:1 2021:1 2023:1 2038:1 2039:4 2052:1 2090:1 2125:1 2169:1 2170:2 2234:1 2237:2 2269:1 2346:1 2353:1 2407:1 2408:2 2413:1 2415:1 2416:1 2417:1 2420:3 2422:1 2424:1 2427:1 2434:4 2436:1 2437:2 2450:1 2473:1 2518:2 2519:1 2533:1 2560:1 2599:1 2623:1 2645:1 2694:1 2705:1 2797:1 2812:4 2819:1 2825:1 2852:1 2854:3 2856:1 2872:1 2888:1 2900:1 2943:1 2952:2 2962:1 2965:3 3019:4 3056:5 3067:5 3118:14 3128:1 3151:1 3224:2 3296:2 3391:1 3403:2 3406:4 3428:3 3498:2 3543:1 3567:1 3628:1 3634:1 3649:1 3661:1 3667:1 3711:1 3730:1 3731:1 3746:1 3764:1 3796:1 3801:1 3803:1 3810:1 3819:1 3867:1 3902:1 3903:1 3918:1 3929:1 3958:1 3959:14 3981:1 3993:1 3995:1 4010:7 4011:1 4012:1 4015:2 4027:1 4042:1 4057:1 4058:2 4061:1 4076:2 4078:1 4079:1 4123:3 4178:1 4183:1 4196:1 4207:2 4216:1 4223:1 4258:1 4265:1 4269:1 4285:1 4290:1 4301:1 4318:1 4368:1 4381:1 4439:1 4474:1 4504:1 4508:1 4555:1 4557:1 4636:3 4697:1 4706:1 4718:2 4749:2 4767:1 4773:1 4796:1 4855:1 4900:1 4930:1 4938:1 4948:1 4989:2 5058:1 5059:1 5064:1 5092:1 5100:1 5201:6 5202:1 5231:1 5288:1 5308:1 5314:1 5321:1 5323:1 5345:1 5347:4 5348:1 5351:1 5361:1 5362:7 5363:1 5401:1 5593:2 5594:3 5675:1 5677:7 5703:1 5735:1 5771:1 5774:1 5816:1 5819:1 5830:1 5848:1 5856:1 5857:1 5901:1 5921:1 5922:1 5943:1 5951:1 5954:1 5962:1 5987:1 5993:1 6018:1 6021:1 6044:1 6063:1 6068:1 6101:1 6103:1 6121:1 6140:1 6199:1 6217:1 6219:1 6221:1 6227:1 6305:1 6371:3 6386:1 6410:1 6415:1 6444:1 6490:1 6491:1 6499:1 6528:1 6529:1 6539:1 6540:1 6588:1 6591:2 6618:3 6635:1 6639:1 6654:1 6724:1 6730:1 6734:1 6736:2 6744:2 6745:1 6747:1 6756:1 6773:1 6878:1 6895:1 6901:1 6930:1 6932:1 6977:1 7000:2 7019:1 7032:2 7035:1 7060:1 7080:1 7083:1 7115:1 7126:1 7192:1 7201:1 7204:1 7216:2 7222:1 7231:1 7236:2 7257:1 7308:1 7322:1 7335:2 7342:1 7407:1 7412:1 7456:1 7542:1 7573:1 7574:1 7577:4 7585:2 7601:1 7603:1 7610:1 7774:1 7779:1 7788:3 7830:1 7840:1 7926:1 7932:1 7997:2 8005:1 8023:1 8031:1 8054:1 8064:1 8066:1 8084:1 8122:1 8131:15 8133:1 8140:1 8151:4 8152:11 8170:1 8208:3 8238:1 8254:1 8273:1 8279:1 8302:1 8365:3 8372:1 8413:1 8415:1 8433:1 8450:1 8492:1 8523:1 8540:1 8546:1 8559:1 8597:1 8603:1 8633:6 8651:1 8665:1 8687:1 8718:1 8742:1 8748:1 8753:1 8760:3 8779:1 8793:3 8798:1 8816:2 8820:1 8857:1 8858:1 8873:1 8884:1 8899:1 8915:1 8938:1 8959:1 8980:2 8983:1 8984:2 8985:1 8986:1 8987:2 8995:1 8998:1 9004:1 9020:1 9027:1 9035:1 9039:2 9040:1 9041:1 9058:1 9061:1 9075:2 9112:1 9135:1 9139:2 9146:1 9149:1 9151:1 9164:1 9204:1 9205:1 9209:1 9215:1 9225:1 9268:1 9269:1 9273:1 9277:1 9280:2 9304:2 9316:1 9339:1 9439:1 9442:1 9450:1 9453:1 9471:1 9478:1 9480:1 9504:1 9506:1 9589:1 9594:1 9618:1 9646:1 9651:1 9662:1 9663:1 9677:1 9695:1 9697:1 9715:1 9732:1 9870:1 9874:1 9888:1 9909:1 9928:1 9930:1 9940:1 9942:1 9972:1 9977:1 9983:1 9994:1 10037:7 10043:1 10069:1 10078:2 10084:2 10109:1 10128:1 10146:1 10169:9 10185:1 10223:1 10238:2 10240:1 10321:2 10322:1 10356:1 10362:1 10363:1 10364:1 10371:1 10379:1 10393:1 10406:1 10410:2 10446:2 10450:1 10493:1 10577:4 10581:2 10596:1 10601:1 10651:3 10698:1 10707:1 10731:1 10757:1 10763:1 10780:3 10784:1 10809:1 10880:1 10892:3 10957:2 11009:1 11028:1 11060:1 11061:2 11063:1 11070:1 11081:1 11120:1 11126:1 11134:3 11148:1 11156:1 11166:3 11234:1 11237:1 11260:1 11261:1 11262:1 11268:1 11359:1 11388:1 11389:1 11400:1 11417:2 11418:2 11482:1 11512:1 11556:2 11569:2 11597:1 11668:1 11684:1 11703:1 11710:1 11718:1 11740:1 11779:2 11810:1 11819:1 11830:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11887:1 11918:1 11923:1 11926:3 11929:1 11961:1 11985:1 11986:1 11991:1 12029:1 12056:1 12065:3 12066:1 12095:1 12098:2 12130:1 12155:1 12170:1 12182:1 12193:3 12194:1 12200:1 12202:3 12218:1 12228:1 12253:1 12266:3 12270:1 12275:1 12293:1 12314:1 12325:4 12335:1 12337:1 12373:1 12375:1 12385:3 12406:1 12423:1 12471:1 12594:1 12625:1 12628:1 12629:1 12654:1 12655:1 12656:7 12660:4 12698:1 12716:1 12766:1 12815:1 12824:3 12825:2 12841:1 12846:1 12902:1 12906:1 12936:1 12947:1 13019:1 13035:1 13054:1 13092:1 13095:1 13107:1 13117:1 13166:1 13207:1 13227:5 13240:1 13248:1 13276:2 13277:2 13307:1 13342:1 13371:1 13376:2 13440:1 13443:2 13486:1 13522:1 13580:1 13614:1 13623:1 13624:2 13656:1 13700:2 13711:1 13714:1 13720:1 13735:1 13739:1 13740:1 13768:1 13776:1 13816:1 13833:1 13835:1 13838:3 13842:1 13843:1 13851:1 13858:1 13873:1 13878:1 13915:2 13926:1 13930:1 13944:1 13958:1 13981:1 13993:2 13994:1 14011:1 14028:1 14063:1 14078:1 14086:2 14113:1 14157:1 14177:1 14189:1 14228:1 14234:1 14237:1 14239:1 14241:1 14275:1 14296:1 14311:1 14334:1 14366:3 14377:1 14422:1 14445:1 14446:1 14471:1 14472:1 14477:2 14503:1 14522:1 14533:1 14552:2 14553:4 14563:1 14584:1 14610:1 14642:1 14644:1 14649:1 14650:1 14654:1 14780:1 14785:2 14806:1 14845:1 14862:1 14887:1 14922:1 14958:1 14987:1 15008:3 15010:1 15011:1 15019:1 15060:1 15068:1 15072:1 15096:1 15120:1 15174:1 15190:1 15196:1 15216:1 15233:1 15252:1 15276:1 15319:1 15364:1 15476:1 15487:1 15538:1 15547:2 15552:1 15597:1 15605:1 15643:1 15672:1 15695:1 15702:1 15725:1 15772:1 15788:1 15875:2 15876:1 15881:1 15907:1 15908:1 15911:1 15951:1 15955:1 16021:2 16032:2 16096:1 16111:1 16148:2 16167:3 16172:2 16174:1 16222:1 16255:1 16303:1 16309:1 16317:2 16325:1 16336:1 16353:1 16356:1 16357:2 16358:1 16363:1 16367:1 16369:1 16379:1 16386:2 16467:1 16484:1 16495:1 16498:1 16501:2 16507:3 16564:1 16646:2 16659:2 16660:1 16673:1 16674:1 16677:1 16678:1 16706:7 16739:1 16743:1 16761:2 16775:19 16794:1 16831:1 16864:1 16867:1 16913:1 16919:1 16920:1 16921:1 16927:1 16957:1 16961:1 16965:1 16980:1 16981:1 17010:1 17047:1 17055:3 17090:1 17116:1 17135:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:1 17253:1 17295:1 17317:1 17336:1 17342:1 17372:2 17415:1 17422:1 17424:2 17438:1 17454:1 17460:7 17500:1 17514:1 17553:1 17559:1 17583:1 17585:2 17587:1 17593:1 17613:1 17635:1 17645:1 17646:1 17718:1 17788:1 17797:2 17816:1 17843:1 17849:1 17859:1 17871:1 17877:2 17889:1 17897:1 17906:2 17952:1 17957:1 17972:1 17998:1 18034:3 18110:1 18112:1 18129:3 18136:1 18144:1 18147:2 18153:1 18154:1 18171:1 18174:1 18197:1 18223:1 18248:1 18249:1 18277:1 18330:2 18342:1 18355:1 18417:1 18421:1 18442:3 18478:1 18506:1 18544:1 18546:1 18584:1 18589:1 18602:1 18625:1 18629:2 18633:3 18636:1 18707:1 18748:2 18749:1 18781:1 18815:1 18816:1 18819:1 18831:2 18838:1 18872:1 18873:1 18922:1 18932:1 18956:2 18977:1 18980:1 19006:1 19007:1 19016:1 19079:1 19098:1 19113:1 19114:5 19191:1 19210:1 19225:1 19241:1 19244:3 19265:2 19272:1 19276:1 19315:1 19323:1323 19342:1 19343:1 19348:1 19395:1 19413:3 19452:2 19473:2 19482:1 19507:1 19509:1 19530:3 19539:3 19541:1 19584:1 19636:3 19664:1 19696:2 19708:1 19733:1 19743:1 19751:1 19756:1 19804:1 19817:1 19831:4 19918:1 20032:1 20048:1 20050:1 20074:1 20086:2 20090:1 20091:2 20095:1 20121:5 20146:1 20147:4 20177:1 20178:1 20212:1 20216:1 20243:1 20248:1 20250:1 20252:1 20262:1 20277:1 20287:1 20313:1 20319:1 20339:1 20349:1 20387:1 20392:1 20477:1 20492:1 20502:1 20523:1 20524:7 20565:1 20573:1 20613:1 20623:2 20648:1 20669:1 20691:1 20720:1 20722:1 20724:1 20725:1 20731:1 20779:4 20787:1 20811:1 20853:1 20877:1 20894:1 20897:1 20907:1 20908:1 20923:3 20972:1 20996:7 21014:2 21030:1 21033:1 21050:6 21066:1 21103:1 21131:1 21175:1 21196:2 21225:1 21258:1 21301:2 21316:1 21328:1 21331:1 21339:1 21343:1 21389:1 21392:1 21495:1 21532:1 21554:1 21596:1 21643:7 21660:3 21664:1 21690:1 21708:1 21769:2 21773:1 21798:1 21822:3 21830:2 21874:1 21896:1 21911:1 21932:1 21936:1 21980:1 22048:1 22106:1 22154:2 22157:2 22159:1 22170:1 22228:1 22236:2 22241:1 22251:1 22281:1 22286:1 22298:1 22300:2 22305:1 22309:1 22332:1 22349:1 22384:1 22396:1 22405:1 22406:1 22425:1 22427:3 22430:1 22447:1 22501:1 22540:1 22549:2 22563:1 22603:1 22607:2 22618:2 22621:1 22693:1 22702:1 22705:3 22712:1 22720:1 22734:1 22736:1 22740:1 22746:1 22748:2 22756:1 22769:1 22833:3 22834:1 22856:1 22866:1 22874:2 22895:1 22909:1 22926:1 22985:7 22990:1 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:2 23096:1 23102:1 23112:2 23136:3 23153:1 23160:3 23199:1 23212:1 23215:1 23225:1 23246:2 23256:1 23271:1 23284:2 23302:3 23336:1 23454:2 23462:1 23496:3 23554:1 23570:1 23575:1 23579:9 23583:1 23600:1 23648:1 23662:1 23666:2 23695:1 23699:1 23717:4 23721:1 23750:1 23765:2 23767:1 23788:2 23807:1 23819:1 23859:1 23878:1 23879:1 23891:1 23955:1 23968:1 23971:3 23978:1 24002:1 24003:1 24049:1 24087:1 24090:1 24103:1 24113:1 24119:2 24124:2 24128:1 24168:1 24177:1 24183:1 24187:1 24207:2 24232:1 24235:1 24241:2 24247:1 24273:1 24280:1 24293:1 24329:2 24340:7 24408:1 24441:1 24449:1 24504:1 24509:1 24534:1 24571:1 24591:1 24653:1 24656:1 24668:1 24702:2 24717:1 24761:1 24777:1 24797:1 24814:3 24827:2 24838:1 24845:1 24921:1 24932:1 24970:1 24976:1 25005:2 25014:1 25023:1 25027:1 25073:2 25122:1 25181:1 25252:1 25264:1 25285:2 25311:1 25319:1 25325:1 25327:2 25339:1 25347:1 25385:1 25398:1 25415:1 25419:1 25431:1 25468:1 25471:1 25472:1 25495:3 25503:1 25510:1 25561:1 25587:1 25623:1 25627:1 25643:1 25673:1 25684:1 25688:1 25718:1 25722:1 25778:2 25797:1 25823:1 25852:1 25860:1 25872:1 25878:1 25884:1 25893:3 25918:2 25966:1 25998:1 26004:1 26058:1 26073:1 26097:1 26124:1 26150:2 26156:3 26159:1 26172:1 26207:1 26232:1 26257:1 26322:2 26324:1 26331:1 26356:1 26371:1 26372:1 26377:1 26415:2 26429:2 26435:3 26436:1 26445:1 26460:1 26463:1 26472:1 26489:2 26513:2 26518:1 26538:2 26564:1 26627:3 26652:1 26653:2 26681:1 26689:1 26728:2 26782:2 26808:1 26835:1 26844:1 26865:1 26868:1 26871:1 26893:1 26912:1 26915:1 26934:1 26977:2 26982:1 27008:1 27010:1 27065:1 27099:1 27115:1 27138:5 27144:1 27178:1 27192:1 27212:1 27308:1 27332:1 27422:4 27424:2 27438:2 27439:1 27440:4 27441:1 27490:1 27534:1 27540:2 27552:1 27580:2 27601:1 27621:1 27636:1 27799:1 27809:1 27852:1 27863:1 27939:1 27949:1 28004:1 28005:1 28095:2 28099:1 28118:1 28121:3 28154:1 28223:7 28224:1 28230:1 28258:1 28338:1 28342:1 28343:1 28395:1 28410:1 28421:1 28429:1 28437:1 28443:1 28472:1 28482:1 28499:1 28514:1 28524:1 28581:1 28644:1 28659:1 28674:1 28684:1 28754:3 28771:1 28798:1 28848:1 28870:1 28874:1 28878:1 28912:1 28928:1 28931:1 28962:1 28974:1 29004:1 29041:1 29112:1 29130:3 29135:1 29155:1 29179:1 29182:2 29183:12 29184:2 29186:1 29189:1 29192:1 29203:1 29220:1 29221:7 29234:1 29248:1 29276:1 29277:1 29281:1 29289:1 29310:1 29325:1 29334:1 29342:1 29382:1 29454:1 29495:2 29573:1 29587:1 29589:1 29591:4 29595:1 29624:1 29636:1 29655:1 29666:2 29745:1 29812:1 29841:1 29848:1 29904:1 29905:1 29932:2 29936:2 29942:1 29950:1 30011:1 30129:3 30160:2 30164:1 30201:1 30216:1 30222:2 30241:1 30269:1 30285:1 30290:1 30292:1 30313:1 30341:1 30346:2 30348:1 30354:1 30364:1 30429:1 30435:3 30441:1 30507:1 30524:1 30525:1 30527:2 30576:1 30586:1 30593:1 30595:1 16 24:1 62:1 75:4 94:1 121:1 151:1 190:1 206:1 224:4 266:1 285:1 294:2 324:1 334:1 335:2 336:1 360:1 436:1 477:2 489:1 493:1 495:1 505:1 510:1 511:1 625:1 637:3 660:2 673:4 679:1 688:1 694:1 722:1 730:1 737:1 748:1 778:2 795:1 836:1 857:1 882:1 898:1 943:1 949:1 966:1 971:1 974:1 975:1 1003:1 1029:1 1032:1 1038:1 1065:2 1069:1 1108:1 1131:1 1161:1 1170:1 1171:1 1217:1 1221:1 1224:1 1242:1 1253:1 1254:2 1267:1 1280:1 1291:2 1325:1 1333:1 1347:1 1361:1 1365:1 1395:1 1409:1 1421:1 1446:1 1476:1 1499:1 1500:1 1566:1 1585:2 1590:1 1594:1 1601:1 1602:1 1608:2 1625:1 1628:1 1651:1 1657:2 1671:1 1681:1 1685:1 1690:2 1725:1 1730:1 1734:1 1739:1 1742:2 1757:1 1776:1 1780:1 1788:1 1826:1 1855:1 1857:1 1860:1 1863:1 1873:2 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1951:1 1954:1 1955:1 1964:1 1982:1 1986:1 1989:1 1997:1 2016:1 2021:1 2023:1 2038:1 2039:4 2052:1 2090:1 2125:1 2132:1 2153:1 2161:1 2169:1 2170:2 2232:1 2234:1 2237:2 2269:1 2346:1 2353:1 2407:2 2408:2 2413:1 2415:1 2416:1 2417:1 2420:3 2422:1 2424:1 2427:1 2434:4 2436:1 2437:2 2450:1 2473:1 2518:2 2519:1 2533:1 2560:1 2599:1 2623:1 2645:1 2694:1 2705:1 2797:1 2812:4 2819:1 2825:1 2852:1 2854:3 2856:1 2872:1 2888:1 2900:1 2943:1 2952:2 2962:1 2965:3 3019:4 3056:5 3067:6 3118:15 3128:1 3151:1 3224:2 3296:2 3391:1 3403:2 3406:4 3428:3 3498:2 3543:1 3567:1 3613:1 3628:1 3634:1 3643:1 3649:1 3661:1 3667:1 3711:1 3730:1 3731:1 3746:1 3764:1 3796:1 3801:1 3803:1 3810:1 3819:1 3867:1 3886:1 3902:1 3903:1 3918:1 3929:1 3958:1 3959:14 3981:1 3993:1 3995:1 4010:7 4011:1 4012:1 4015:2 4027:1 4042:1 4057:1 4058:2 4061:1 4076:2 4078:1 4079:1 4123:3 4130:1 4178:1 4183:1 4196:1 4207:2 4216:1 4223:1 4258:1 4265:1 4269:1 4285:1 4290:1 4297:1 4301:1 4318:1 4368:1 4381:1 4439:1 4474:1 4504:1 4508:1 4509:1 4555:1 4557:1 4636:3 4697:1 4706:1 4718:2 4749:2 4767:1 4773:1 4796:1 4854:1 4855:2 4900:1 4930:1 4938:1 4948:1 4989:2 5058:1 5059:1 5064:1 5092:1 5100:1 5189:1 5201:9 5202:1 5231:1 5288:1 5308:1 5314:1 5321:1 5323:1 5345:1 5347:4 5348:1 5351:1 5361:1 5362:7 5363:1 5365:1 5370:1 5401:1 5467:1 5593:2 5594:3 5603:2 5652:1 5675:1 5677:7 5703:1 5735:1 5771:1 5774:1 5816:1 5819:1 5830:1 5848:1 5856:1 5857:1 5901:1 5911:1 5921:1 5922:1 5943:1 5951:1 5954:1 5962:1 5987:1 5993:1 6018:1 6021:1 6044:1 6063:1 6065:1 6068:1 6079:1 6101:1 6103:1 6121:1 6140:1 6199:1 6217:1 6219:1 6221:1 6227:1 6305:1 6371:3 6386:1 6410:1 6415:1 6444:1 6490:1 6491:1 6499:1 6528:1 6529:1 6536:1 6539:1 6540:1 6588:1 6591:2 6618:3 6621:1 6635:1 6639:1 6654:1 6724:1 6730:1 6734:1 6736:2 6743:1 6744:2 6745:1 6747:1 6756:1 6773:1 6836:1 6878:1 6895:1 6901:1 6930:1 6932:1 6977:1 6994:1 7000:2 7019:1 7027:2 7032:2 7035:1 7060:2 7080:1 7083:1 7115:1 7126:1 7192:1 7201:1 7204:1 7216:2 7222:1 7231:1 7236:2 7257:1 7308:1 7322:1 7335:2 7342:1 7407:1 7412:1 7456:1 7542:1 7573:1 7574:1 7577:4 7585:2 7601:1 7603:1 7610:1 7625:1 7774:1 7779:1 7788:3 7830:1 7840:2 7926:1 7932:1 7997:2 8005:1 8023:1 8031:1 8054:1 8064:1 8066:2 8084:1 8097:1 8100:1 8122:1 8131:16 8133:1 8140:1 8151:4 8152:12 8161:1 8170:1 8208:3 8238:1 8254:1 8273:1 8279:1 8302:1 8307:1 8365:4 8372:1 8413:1 8415:2 8433:1 8450:1 8492:1 8523:1 8540:1 8546:1 8559:1 8597:1 8603:1 8633:6 8651:1 8665:1 8687:1 8718:1 8742:1 8748:1 8753:1 8760:3 8779:1 8793:3 8798:1 8816:2 8820:2 8857:1 8858:1 8873:1 8884:1 8899:1 8915:1 8938:1 8942:1 8959:1 8980:2 8983:1 8984:2 8985:1 8986:1 8987:2 8995:1 8998:2 9004:1 9020:1 9027:1 9035:1 9039:2 9040:1 9041:1 9058:1 9061:1 9075:2 9112:1 9135:1 9139:2 9146:1 9149:1 9151:1 9164:1 9204:1 9205:1 9209:1 9215:1 9225:1 9227:1 9268:1 9269:1 9273:1 9277:1 9280:3 9301:1 9304:2 9316:1 9339:1 9439:1 9442:1 9450:1 9453:1 9471:1 9478:1 9480:1 9504:1 9506:1 9589:1 9594:1 9618:1 9646:1 9651:1 9662:1 9663:1 9677:1 9695:1 9697:1 9715:1 9732:1 9870:1 9874:1 9888:1 9889:1 9909:1 9928:1 9930:1 9940:1 9942:1 9972:1 9973:1 9977:1 9983:1 9994:1 10037:7 10043:1 10069:1 10078:2 10084:2 10109:1 10128:1 10130:1 10146:1 10169:9 10185:1 10223:1 10238:2 10240:1 10259:1 10321:2 10322:1 10356:1 10362:1 10363:1 10364:1 10371:1 10379:1 10393:1 10406:1 10410:2 10446:2 10450:1 10493:1 10549:1 10552:1 10577:4 10581:2 10596:1 10601:1 10651:3 10698:1 10707:1 10731:1 10757:1 10763:1 10780:3 10784:1 10809:1 10880:1 10892:3 10957:2 11009:1 11028:1 11047:1 11060:1 11061:2 11063:1 11070:1 11081:1 11120:1 11126:1 11134:3 11148:1 11156:1 11160:1 11166:3 11234:1 11237:1 11260:1 11261:1 11262:1 11268:1 11305:1 11359:1 11388:1 11389:1 11400:1 11417:2 11418:2 11482:1 11499:1 11512:2 11535:1 11556:2 11569:2 11597:1 11668:1 11684:1 11703:1 11710:1 11718:1 11740:1 11779:2 11810:1 11819:1 11830:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11887:1 11918:1 11923:1 11926:3 11929:1 11961:1 11985:1 11986:1 11991:1 12009:1 12029:1 12056:1 12065:3 12066:1 12095:2 12098:2 12130:1 12155:1 12170:1 12181:1 12182:1 12189:1 12193:4 12194:1 12200:1 12202:4 12218:1 12228:1 12253:1 12266:3 12270:1 12275:1 12293:1 12314:1 12325:4 12335:1 12337:1 12373:1 12375:1 12385:3 12406:1 12423:1 12470:1 12471:1 12539:1 12594:1 12625:1 12628:1 12629:1 12654:1 12655:1 12656:7 12660:4 12698:1 12716:1 12766:1 12815:1 12824:4 12825:2 12841:1 12846:1 12902:1 12906:1 12936:1 12947:1 12953:1 13019:1 13035:1 13054:1 13057:1 13092:1 13095:1 13107:1 13117:1 13166:1 13207:1 13227:6 13240:1 13248:1 13276:2 13277:2 13307:1 13342:1 13371:1 13376:2 13440:1 13441:1 13443:2 13486:1 13522:1 13580:1 13614:1 13623:1 13624:2 13656:1 13684:1 13700:2 13711:1 13714:1 13720:1 13735:1 13739:1 13740:1 13768:1 13776:1 13816:1 13821:1 13833:1 13835:1 13838:3 13842:1 13843:1 13851:1 13858:1 13873:1 13878:1 13915:2 13926:1 13930:1 13944:1 13958:1 13981:1 13993:2 13994:1 14011:1 14028:1 14037:1 14063:1 14078:1 14086:2 14113:1 14157:1 14177:1 14189:2 14228:1 14234:1 14237:1 14238:1 14239:1 14241:1 14275:1 14296:1 14311:1 14334:1 14366:3 14377:1 14422:1 14445:1 14446:1 14450:1 14471:1 14472:1 14477:2 14503:1 14522:1 14529:1 14533:1 14552:2 14553:4 14563:1 14584:1 14592:1 14610:1 14642:1 14644:1 14649:1 14650:1 14654:1 14780:1 14785:2 14806:1 14845:1 14862:1 14887:1 14922:1 14958:1 14987:1 15008:3 15010:1 15011:1 15019:1 15032:1 15060:1 15068:1 15072:1 15096:1 15120:1 15141:1 15174:1 15190:1 15196:1 15216:1 15233:1 15252:1 15276:1 15319:1 15364:1 15476:1 15487:1 15507:1 15538:1 15547:2 15552:1 15597:1 15605:1 15643:1 15672:1 15695:1 15702:1 15725:1 15772:1 15788:1 15875:2 15876:1 15881:1 15907:1 15908:1 15911:1 15951:1 15955:1 16021:2 16032:2 16054:1 16096:1 16111:1 16148:2 16167:3 16172:2 16174:1 16207:1 16222:2 16255:1 16303:2 16309:1 16317:2 16325:1 16336:1 16353:1 16356:1 16357:2 16358:1 16363:1 16367:1 16369:1 16379:1 16386:2 16467:1 16484:1 16495:1 16498:1 16501:2 16507:3 16564:1 16623:1 16646:2 16659:2 16660:1 16673:1 16674:1 16677:1 16678:1 16706:7 16739:1 16743:1 16761:2 16775:19 16794:1 16831:1 16864:1 16867:1 16913:1 16919:1 16920:1 16921:1 16927:1 16957:1 16961:1 16965:1 16980:1 16981:1 17010:1 17047:1 17055:3 17090:1 17116:1 17135:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:1 17253:1 17295:1 17317:1 17336:1 17342:1 17372:2 17415:1 17422:1 17424:2 17435:1 17438:1 17454:1 17460:7 17500:1 17514:1 17553:1 17559:1 17583:1 17585:2 17587:1 17593:1 17613:1 17635:1 17645:1 17646:1 17718:1 17788:1 17797:2 17816:1 17843:1 17849:1 17859:1 17871:1 17875:1 17877:2 17889:1 17897:1 17906:3 17912:1 17952:1 17957:1 17972:1 17998:1 18006:1 18034:3 18110:1 18112:1 18129:3 18136:1 18144:1 18147:2 18153:1 18154:1 18171:1 18174:1 18197:1 18223:1 18248:1 18249:1 18277:1 18330:2 18342:1 18355:1 18417:2 18421:1 18442:3 18478:1 18506:1 18524:1 18544:1 18546:1 18559:1 18584:1 18589:1 18602:1 18625:1 18629:2 18633:3 18636:1 18707:1 18748:2 18749:1 18781:1 18797:1 18815:1 18816:1 18819:1 18831:2 18838:1 18855:1 18872:1 18873:1 18922:1 18932:1 18956:2 18977:1 18980:1 18984:1 18987:1 19006:1 19007:1 19016:1 19079:1 19098:1 19113:1 19114:5 19191:1 19193:1 19210:1 19225:1 19241:1 19244:3 19265:2 19272:1 19276:1 19315:1 19323:1427 19342:1 19343:1 19348:1 19395:1 19413:3 19452:2 19473:2 19482:1 19507:1 19509:1 19530:3 19539:3 19541:1 19543:1 19584:1 19636:3 19664:1 19696:2 19708:1 19733:1 19743:1 19751:1 19756:1 19804:1 19817:1 19831:4 19918:1 20032:1 20048:1 20050:1 20057:1 20074:1 20086:2 20090:1 20091:2 20095:1 20121:5 20146:1 20147:4 20177:1 20178:1 20212:1 20216:1 20243:1 20248:1 20250:1 20252:1 20262:1 20277:1 20287:1 20313:1 20319:1 20339:1 20349:1 20387:1 20392:1 20477:1 20492:1 20502:1 20523:1 20524:7 20565:1 20573:1 20613:1 20623:2 20648:1 20669:1 20691:1 20720:1 20722:1 20724:1 20725:1 20731:1 20779:4 20787:1 20811:2 20839:1 20853:1 20877:1 20894:1 20897:1 20907:1 20908:1 20923:4 20972:1 20996:7 21014:2 21030:1 21033:1 21050:7 21066:1 21103:1 21131:1 21175:1 21196:2 21225:1 21258:1 21301:2 21316:1 21328:1 21331:1 21339:1 21343:1 21389:1 21392:1 21495:1 21532:1 21554:1 21596:1 21643:8 21660:3 21663:1 21664:1 21684:1 21690:1 21708:1 21769:2 21773:1 21798:1 21822:3 21829:1 21830:2 21874:1 21896:1 21911:1 21932:1 21936:1 21980:1 21987:1 22041:1 22048:1 22050:1 22106:1 22154:2 22157:2 22159:1 22170:1 22228:1 22236:2 22241:1 22251:1 22281:1 22286:1 22298:1 22300:2 22305:1 22309:1 22332:1 22349:1 22384:2 22396:1 22405:1 22406:1 22425:1 22427:3 22430:1 22447:1 22501:1 22534:1 22540:1 22549:2 22563:1 22603:1 22607:2 22614:1 22618:2 22621:1 22693:1 22702:1 22705:3 22712:1 22720:1 22734:1 22736:1 22740:1 22746:1 22748:2 22756:1 22769:1 22795:1 22833:3 22834:1 22856:1 22866:1 22874:2 22895:1 22901:1 22909:1 22926:1 22937:1 22985:7 22990:1 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:2 23096:1 23102:1 23112:2 23136:3 23153:1 23160:3 23199:1 23212:1 23215:1 23225:1 23246:2 23256:1 23271:1 23284:2 23302:3 23317:1 23325:1 23336:1 23454:2 23462:1 23496:3 23554:1 23570:1 23575:1 23579:9 23583:1 23600:1 23611:1 23629:1 23632:1 23648:1 23662:1 23666:2 23695:1 23699:1 23717:4 23721:1 23750:1 23765:2 23767:1 23788:2 23807:1 23819:1 23859:1 23878:1 23879:1 23891:1 23955:1 23968:1 23971:3 23978:1 24002:1 24003:1 24049:1 24087:1 24090:1 24103:1 24108:1 24113:1 24119:2 24124:2 24128:1 24168:1 24177:1 24183:1 24187:1 24188:1 24207:2 24232:1 24235:1 24241:2 24247:1 24273:1 24280:1 24293:1 24329:2 24340:7 24408:1 24441:1 24449:1 24504:1 24509:1 24534:1 24571:1 24591:1 24653:1 24656:1 24668:1 24702:2 24717:1 24761:1 24777:1 24797:1 24814:3 24827:2 24838:1 24845:1 24921:1 24932:1 24970:1 24976:1 25005:2 25014:1 25023:1 25027:1 25073:2 25122:1 25158:1 25181:1 25194:2 25252:1 25264:1 25285:2 25311:1 25319:1 25325:1 25327:2 25339:1 25347:1 25385:1 25398:1 25415:1 25419:1 25431:1 25468:1 25471:1 25472:1 25495:3 25503:1 25510:1 25526:1 25561:1 25587:1 25623:1 25627:1 25643:1 25673:1 25684:1 25688:1 25718:1 25722:1 25778:2 25797:1 25823:1 25852:1 25860:1 25872:1 25878:1 25884:1 25893:3 25918:2 25966:1 25998:1 26004:1 26058:1 26073:1 26097:1 26124:1 26150:2 26156:3 26159:1 26172:1 26207:1 26232:1 26257:1 26322:2 26324:1 26331:1 26356:1 26371:1 26372:1 26377:2 26403:1 26413:1 26415:2 26429:2 26435:3 26436:1 26445:1 26460:1 26463:1 26472:1 26489:2 26513:2 26518:1 26538:2 26564:1 26627:3 26652:1 26653:2 26681:1 26689:1 26728:2 26782:2 26808:1 26835:1 26842:1 26844:1 26865:1 26868:1 26871:1 26893:1 26898:1 26912:1 26915:1 26934:1 26949:1 26977:2 26982:1 27008:1 27010:1 27065:1 27099:1 27115:1 27138:5 27144:1 27178:1 27192:1 27212:1 27295:1 27308:1 27314:1 27332:1 27422:4 27424:2 27438:2 27439:1 27440:4 27441:1 27490:2 27534:1 27540:2 27552:1 27580:2 27601:1 27621:1 27636:1 27673:1 27799:1 27809:1 27852:1 27863:1 27939:1 27949:1 27950:1 28004:1 28005:1 28095:2 28099:1 28118:1 28121:3 28154:1 28223:7 28224:1 28227:1 28230:1 28258:1 28338:1 28342:1 28343:1 28395:1 28410:1 28421:1 28429:1 28432:1 28437:1 28443:1 28472:1 28482:1 28499:1 28514:1 28524:1 28581:1 28644:1 28659:1 28674:1 28675:1 28684:1 28754:3 28771:1 28798:1 28848:1 28870:1 28874:1 28878:1 28912:1 28928:1 28931:1 28962:1 28974:1 29004:1 29041:1 29112:1 29130:3 29135:1 29155:1 29179:1 29182:2 29183:13 29184:2 29186:1 29189:1 29192:1 29203:1 29220:1 29221:7 29224:1 29234:1 29248:1 29276:1 29277:1 29281:1 29289:1 29310:1 29325:1 29334:2 29342:1 29382:1 29454:1 29486:1 29495:2 29573:1 29587:1 29589:1 29591:4 29595:1 29624:1 29636:1 29655:1 29666:2 29745:1 29747:1 29812:1 29841:1 29848:1 29891:1 29904:1 29905:1 29932:2 29936:2 29942:1 29950:1 29969:1 30011:1 30129:3 30160:2 30164:1 30201:1 30216:1 30222:2 30241:1 30269:1 30285:1 30290:1 30292:1 30313:1 30341:1 30346:3 30348:1 30354:1 30364:1 30429:1 30435:3 30441:1 30507:1 30524:1 30525:1 30527:2 30539:1 30576:1 30586:1 30593:1 30595:1 30650:1 16 24:1 62:1 75:4 94:1 121:1 151:1 190:1 206:1 224:4 266:1 285:1 294:2 324:1 334:1 335:2 336:1 360:1 436:1 477:2 489:1 493:1 495:1 505:1 510:1 511:1 546:1 625:1 637:3 660:2 673:4 679:1 688:1 694:1 722:1 730:1 737:1 748:1 778:2 795:1 836:1 857:1 882:1 898:1 943:1 949:1 966:1 971:1 974:1 975:1 1003:1 1029:1 1032:1 1038:1 1065:2 1069:1 1108:1 1131:1 1134:1 1161:1 1170:1 1171:1 1217:2 1221:1 1224:1 1242:2 1253:1 1254:2 1267:1 1280:1 1291:2 1325:1 1333:1 1346:1 1347:2 1361:1 1365:1 1395:1 1409:1 1421:1 1446:1 1476:1 1499:1 1500:2 1566:1 1585:2 1590:1 1594:1 1601:1 1602:1 1608:2 1609:1 1625:1 1628:1 1651:1 1657:2 1671:1 1681:1 1685:1 1690:2 1725:1 1730:1 1734:1 1739:1 1742:2 1757:1 1776:1 1780:1 1788:1 1826:1 1855:1 1857:1 1860:1 1863:1 1873:2 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1951:1 1954:1 1955:1 1964:1 1982:1 1986:1 1989:1 1997:1 2016:1 2021:1 2023:1 2038:1 2039:4 2052:1 2090:1 2125:1 2132:1 2153:1 2161:2 2169:1 2170:3 2232:1 2234:1 2237:2 2269:1 2346:1 2353:1 2407:2 2408:3 2413:1 2415:1 2416:1 2417:1 2420:3 2422:1 2424:1 2427:1 2434:4 2436:1 2437:2 2450:1 2473:1 2518:2 2519:1 2520:1 2533:1 2560:1 2599:1 2623:1 2645:1 2657:1 2694:1 2705:1 2797:1 2812:4 2819:1 2825:1 2852:1 2854:4 2856:1 2872:1 2888:1 2900:1 2943:1 2952:2 2962:1 2965:3 3019:4 3056:5 3067:6 3118:16 3128:1 3151:1 3224:2 3296:2 3391:1 3403:2 3406:4 3428:4 3498:2 3543:1 3567:1 3613:1 3628:1 3634:1 3643:2 3649:1 3661:1 3667:1 3711:1 3730:1 3731:1 3746:1 3764:1 3796:1 3801:1 3803:1 3810:1 3819:2 3867:1 3886:1 3902:1 3903:1 3918:1 3929:1 3958:1 3959:15 3981:1 3993:2 3995:2 4010:8 4011:1 4012:1 4015:3 4027:1 4042:2 4057:1 4058:2 4061:1 4063:1 4076:2 4078:1 4079:1 4123:3 4130:1 4178:1 4182:1 4183:1 4196:2 4207:2 4216:1 4223:1 4258:1 4265:1 4269:1 4285:1 4290:1 4297:1 4301:1 4318:1 4330:1 4368:1 4381:1 4439:1 4474:1 4504:1 4508:1 4509:1 4555:1 4557:1 4636:4 4697:1 4706:1 4718:2 4749:2 4767:1 4773:1 4796:1 4854:1 4855:2 4900:1 4927:1 4930:1 4938:1 4948:1 4989:2 5058:1 5059:1 5064:1 5092:1 5100:1 5189:1 5201:9 5202:1 5231:1 5288:1 5308:1 5314:1 5321:1 5323:1 5345:1 5347:4 5348:1 5351:1 5361:1 5362:8 5363:1 5365:1 5370:1 5401:1 5467:1 5593:2 5594:3 5603:4 5652:1 5675:1 5677:8 5703:1 5735:1 5771:1 5774:1 5816:1 5819:1 5830:1 5848:1 5856:1 5857:1 5901:1 5911:1 5921:1 5922:1 5943:1 5951:1 5954:1 5962:1 5987:2 5993:1 6018:1 6021:1 6044:1 6063:1 6065:1 6068:1 6079:1 6101:1 6103:1 6121:1 6140:1 6199:1 6217:1 6219:1 6221:1 6227:1 6305:1 6371:3 6386:1 6410:1 6415:1 6444:1 6480:1 6490:1 6491:1 6499:1 6528:1 6529:1 6536:1 6539:2 6540:1 6588:1 6591:2 6618:3 6621:1 6635:1 6639:1 6654:1 6724:1 6730:1 6731:1 6734:1 6736:2 6743:1 6744:2 6745:1 6747:1 6756:1 6773:1 6836:1 6878:1 6895:2 6901:1 6930:1 6932:1 6977:1 6994:1 7000:2 7019:1 7027:4 7032:2 7035:1 7060:2 7080:1 7083:1 7115:1 7126:1 7192:1 7201:1 7204:1 7216:2 7222:1 7231:1 7236:2 7257:1 7308:1 7322:1 7335:2 7342:1 7407:1 7412:1 7456:1 7542:1 7573:1 7574:1 7577:4 7585:2 7601:1 7603:1 7610:1 7625:1 7774:1 7779:1 7788:3 7830:1 7840:2 7926:1 7932:1 7997:2 8005:1 8023:1 8031:1 8054:1 8064:1 8066:2 8084:1 8097:1 8100:1 8122:1 8131:17 8133:1 8140:1 8151:4 8152:13 8161:1 8170:1 8208:3 8238:1 8254:1 8273:1 8279:1 8302:1 8307:1 8365:4 8372:1 8413:1 8415:2 8433:1 8450:1 8478:1 8492:1 8523:1 8540:1 8546:1 8559:1 8597:1 8603:1 8623:1 8633:7 8651:1 8665:1 8687:1 8718:1 8742:1 8748:1 8753:2 8760:3 8779:1 8793:3 8798:1 8816:2 8820:2 8857:1 8858:1 8873:1 8884:1 8899:1 8915:1 8938:1 8942:2 8959:1 8980:2 8983:1 8984:2 8985:1 8986:1 8987:2 8995:1 8998:2 9004:1 9020:1 9027:1 9035:1 9039:2 9040:1 9041:1 9058:1 9061:1 9075:2 9112:1 9135:1 9139:2 9146:1 9149:1 9151:1 9164:1 9204:1 9205:1 9209:1 9215:1 9225:1 9227:1 9268:1 9269:1 9273:1 9277:1 9280:3 9301:1 9302:1 9304:3 9316:1 9339:1 9439:1 9442:1 9450:1 9453:1 9471:1 9478:1 9480:1 9504:1 9506:1 9589:1 9594:1 9618:1 9646:1 9651:1 9662:1 9663:1 9677:1 9695:1 9697:1 9715:1 9732:1 9870:1 9874:1 9888:1 9889:2 9909:1 9928:1 9930:1 9940:1 9942:1 9972:1 9973:1 9977:1 9983:1 9994:1 10037:8 10043:1 10069:1 10078:3 10084:2 10109:1 10128:1 10130:2 10146:1 10169:9 10185:1 10211:1 10223:1 10238:3 10240:1 10259:1 10321:2 10322:1 10356:1 10362:1 10363:1 10364:1 10371:1 10379:1 10393:1 10406:1 10410:2 10446:2 10450:1 10493:1 10549:1 10552:1 10577:4 10581:3 10596:1 10601:1 10651:3 10698:2 10707:1 10731:1 10757:1 10763:1 10780:3 10784:1 10809:1 10880:1 10892:3 10957:2 11009:1 11028:1 11047:2 11060:2 11061:2 11063:1 11070:1 11081:1 11120:1 11126:1 11134:3 11148:1 11156:1 11160:1 11166:4 11234:1 11237:1 11260:1 11261:1 11262:1 11268:1 11305:1 11359:1 11388:1 11389:1 11400:1 11417:2 11418:2 11482:1 11499:1 11512:2 11535:1 11556:2 11569:2 11597:1 11668:1 11684:1 11703:1 11710:1 11718:1 11740:1 11754:1 11779:2 11810:1 11819:1 11830:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11887:1 11918:1 11923:1 11926:3 11929:1 11961:1 11985:1 11986:1 11991:1 12009:1 12029:1 12056:1 12065:3 12066:2 12095:2 12098:2 12130:1 12155:1 12170:1 12181:1 12182:1 12189:1 12193:4 12194:1 12200:1 12202:4 12218:1 12228:1 12253:1 12266:3 12270:1 12275:1 12293:1 12314:1 12325:4 12335:1 12337:1 12373:1 12375:1 12385:3 12406:1 12423:1 12470:1 12471:1 12539:1 12594:1 12609:1 12625:1 12628:1 12629:1 12632:1 12654:1 12655:1 12656:8 12660:4 12698:1 12716:2 12766:1 12815:1 12824:5 12825:2 12841:1 12846:1 12902:1 12906:1 12936:1 12947:1 12953:1 12961:1 13019:1 13035:1 13054:1 13057:1 13092:1 13095:1 13107:1 13117:1 13166:1 13207:1 13227:6 13240:1 13248:1 13276:2 13277:2 13307:1 13342:1 13371:1 13376:2 13440:1 13441:1 13443:2 13486:1 13522:1 13580:1 13614:1 13623:1 13624:2 13656:1 13684:1 13700:2 13711:1 13714:1 13720:1 13735:1 13739:1 13740:1 13768:1 13776:1 13816:1 13821:1 13833:1 13835:1 13838:3 13842:1 13843:1 13851:1 13858:1 13873:1 13878:1 13915:2 13926:1 13930:1 13944:1 13958:1 13981:2 13993:2 13994:1 14011:1 14028:1 14037:1 14050:1 14063:1 14078:1 14086:3 14113:1 14157:1 14177:1 14189:2 14228:1 14234:1 14237:1 14238:2 14239:1 14241:1 14275:1 14296:1 14311:1 14334:1 14366:3 14377:1 14422:1 14445:1 14446:1 14450:1 14471:1 14472:1 14477:2 14503:1 14522:1 14529:1 14533:1 14552:2 14553:4 14563:1 14584:1 14592:2 14610:1 14642:2 14644:1 14649:1 14650:1 14654:1 14780:1 14785:2 14806:1 14845:1 14862:1 14887:1 14922:1 14958:1 14987:1 15008:3 15010:1 15011:1 15019:1 15032:1 15060:1 15068:1 15072:1 15096:1 15120:1 15141:1 15174:1 15190:1 15196:1 15216:1 15233:1 15252:1 15276:1 15319:1 15364:1 15476:1 15487:1 15507:2 15538:1 15547:2 15552:1 15597:1 15605:1 15643:2 15672:1 15695:1 15702:1 15725:1 15772:1 15788:1 15875:2 15876:1 15881:1 15907:1 15908:1 15911:1 15951:1 15955:1 16021:2 16032:2 16054:1 16096:1 16111:1 16148:2 16167:3 16172:2 16174:1 16207:1 16222:2 16255:1 16270:1 16303:2 16309:1 16317:2 16325:1 16336:1 16353:1 16356:1 16357:3 16358:1 16363:1 16367:1 16369:1 16379:1 16386:2 16467:1 16484:1 16495:1 16498:1 16501:2 16507:3 16564:1 16623:1 16646:2 16659:2 16660:1 16673:1 16674:1 16677:1 16678:1 16706:8 16739:1 16743:1 16761:2 16775:22 16794:1 16831:1 16864:1 16867:1 16913:1 16919:1 16920:1 16921:1 16927:2 16957:1 16961:1 16965:1 16980:1 16981:1 17010:1 17047:1 17055:3 17090:2 17116:1 17135:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:1 17253:1 17295:1 17317:1 17336:1 17342:1 17372:2 17415:1 17422:1 17424:2 17435:1 17438:1 17454:1 17460:7 17500:1 17514:1 17553:1 17559:1 17583:1 17585:3 17587:1 17593:1 17613:1 17635:1 17645:1 17646:1 17718:1 17788:1 17797:2 17816:1 17843:1 17849:1 17859:1 17871:1 17875:1 17877:2 17889:1 17897:1 17906:3 17912:1 17952:1 17957:1 17972:1 17998:1 18006:1 18034:3 18110:1 18112:1 18129:3 18136:1 18144:1 18147:2 18153:1 18154:1 18171:1 18174:1 18188:1 18197:1 18223:1 18248:1 18249:1 18277:1 18330:2 18342:1 18355:1 18417:2 18421:1 18442:4 18478:1 18506:1 18524:1 18544:1 18546:1 18559:1 18565:1 18584:1 18589:1 18602:1 18625:1 18629:2 18633:3 18636:1 18707:1 18748:2 18749:1 18781:1 18797:1 18815:1 18816:1 18819:1 18831:2 18838:1 18855:1 18872:1 18873:1 18922:1 18932:1 18956:2 18977:1 18980:1 18984:1 18987:2 19006:1 19007:1 19016:1 19079:1 19098:1 19113:1 19114:5 19191:1 19193:1 19210:1 19225:1 19241:1 19244:3 19265:2 19272:1 19276:1 19315:1 19323:1508 19342:1 19343:1 19348:1 19395:1 19413:3 19452:2 19473:2 19482:1 19507:1 19509:1 19530:3 19539:3 19541:1 19543:1 19584:1 19636:3 19664:1 19696:2 19708:1 19733:1 19743:1 19751:1 19756:1 19804:1 19817:1 19831:4 19918:1 20032:1 20048:1 20050:1 20057:1 20074:1 20086:2 20090:1 20091:2 20095:1 20121:5 20146:1 20147:5 20177:1 20178:1 20212:1 20216:1 20243:1 20248:1 20250:1 20252:1 20262:1 20277:1 20287:1 20313:1 20319:1 20339:1 20349:1 20387:1 20392:1 20451:1 20477:1 20492:1 20502:1 20523:1 20524:7 20565:1 20573:1 20613:1 20623:3 20648:1 20669:1 20691:1 20720:1 20722:1 20724:1 20725:1 20731:1 20779:4 20782:1 20787:1 20789:1 20811:2 20839:1 20853:1 20877:1 20894:1 20897:1 20907:1 20908:2 20923:5 20972:1 20996:7 21014:2 21030:1 21033:1 21050:8 21066:1 21088:1 21103:1 21131:1 21175:1 21196:2 21225:1 21258:1 21301:2 21316:1 21328:1 21331:1 21339:1 21343:1 21389:1 21392:1 21474:1 21495:1 21532:1 21554:1 21596:2 21643:8 21660:3 21663:1 21664:1 21684:1 21690:1 21708:1 21769:2 21773:1 21798:1 21822:3 21829:1 21830:2 21874:1 21896:1 21911:1 21932:1 21936:1 21980:1 21987:1 22041:1 22048:1 22050:1 22106:1 22154:2 22157:2 22159:1 22170:1 22183:1 22228:1 22236:2 22241:2 22251:1 22281:1 22286:1 22298:1 22300:2 22305:1 22309:1 22332:1 22349:1 22384:2 22396:1 22405:1 22406:1 22425:1 22427:4 22430:1 22447:1 22501:1 22534:1 22540:1 22549:2 22563:1 22603:1 22607:2 22614:2 22618:2 22621:1 22693:1 22702:1 22705:4 22712:1 22720:1 22734:1 22736:1 22740:1 22746:1 22748:2 22756:1 22769:1 22795:1 22833:3 22834:1 22856:1 22866:1 22874:2 22895:1 22901:1 22909:1 22926:1 22937:1 22985:8 22990:1 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:2 23096:1 23102:1 23112:2 23136:3 23153:2 23160:3 23199:1 23212:1 23215:1 23225:1 23246:2 23256:1 23271:1 23284:2 23302:3 23317:1 23325:1 23336:1 23454:3 23462:1 23496:3 23554:1 23570:1 23575:1 23579:9 23583:2 23600:1 23611:1 23629:1 23632:1 23648:1 23662:1 23666:2 23695:1 23699:1 23717:5 23721:1 23750:1 23765:2 23767:1 23788:2 23807:1 23819:1 23859:1 23878:1 23879:1 23891:1 23955:1 23968:1 23971:3 23978:1 24002:1 24003:1 24049:1 24087:1 24090:2 24103:1 24108:1 24113:1 24119:2 24124:2 24128:1 24168:1 24177:1 24183:1 24187:1 24188:1 24207:3 24232:1 24235:1 24241:2 24247:1 24273:1 24280:1 24293:1 24329:2 24340:8 24408:1 24441:1 24449:1 24504:1 24509:1 24534:1 24571:1 24591:1 24653:1 24656:1 24668:1 24702:2 24717:1 24761:1 24777:1 24797:1 24814:3 24827:2 24838:1 24845:1 24921:1 24932:1 24970:1 24976:1 25005:2 25014:1 25023:1 25027:1 25073:2 25122:1 25158:1 25181:1 25194:4 25252:1 25264:1 25285:2 25288:1 25311:1 25319:1 25325:1 25327:2 25339:1 25347:1 25385:1 25398:1 25415:1 25419:1 25431:1 25468:1 25471:1 25472:1 25495:3 25503:1 25507:1 25510:1 25526:1 25561:1 25587:1 25623:1 25627:1 25643:1 25673:1 25684:1 25688:1 25718:1 25722:1 25778:2 25797:1 25823:1 25852:1 25860:1 25872:1 25878:1 25884:1 25893:3 25918:2 25966:1 25998:1 26004:1 26058:1 26073:1 26097:1 26124:1 26150:2 26156:3 26159:1 26172:1 26207:1 26232:1 26257:1 26318:1 26322:2 26324:1 26331:1 26356:1 26371:1 26372:1 26377:2 26403:1 26413:1 26415:2 26429:2 26435:3 26436:1 26445:1 26460:1 26463:1 26472:1 26489:2 26513:3 26518:1 26538:2 26564:1 26627:3 26652:1 26653:2 26681:1 26689:1 26728:2 26782:3 26808:1 26835:1 26842:2 26844:1 26865:1 26868:1 26871:1 26893:1 26898:1 26912:1 26915:1 26934:1 26949:1 26955:1 26977:3 26982:1 27000:1 27008:2 27010:1 27056:1 27065:1 27099:1 27115:1 27138:5 27144:1 27178:1 27192:2 27212:1 27280:1 27295:1 27308:1 27314:1 27332:1 27422:4 27424:2 27438:2 27439:1 27440:4 27441:1 27490:2 27521:1 27534:1 27540:2 27552:1 27580:2 27601:1 27621:1 27636:1 27673:1 27799:1 27809:1 27852:1 27863:1 27939:1 27949:1 27950:1 28004:1 28005:1 28095:2 28099:1 28118:1 28121:4 28154:1 28223:8 28224:1 28227:2 28230:1 28258:1 28338:1 28342:1 28343:1 28395:1 28410:1 28413:1 28421:1 28429:1 28432:1 28437:1 28443:1 28472:1 28482:1 28499:1 28514:1 28524:1 28581:1 28644:1 28659:1 28674:1 28675:1 28684:1 28754:3 28771:1 28798:1 28848:1 28870:1 28874:1 28878:1 28912:1 28928:1 28931:1 28962:1 28974:1 29004:1 29041:1 29112:1 29130:3 29135:1 29155:1 29179:1 29182:2 29183:13 29184:2 29186:1 29189:1 29192:1 29203:1 29220:1 29221:7 29224:1 29234:1 29248:1 29276:1 29277:1 29281:1 29289:1 29310:1 29325:1 29334:2 29342:1 29382:1 29429:1 29454:1 29486:1 29495:2 29573:1 29587:1 29589:1 29591:4 29595:1 29624:1 29636:1 29655:1 29663:1 29666:2 29745:1 29747:1 29812:1 29841:1 29848:1 29891:2 29904:1 29905:1 29932:2 29936:2 29942:1 29950:1 29969:2 30011:1 30129:3 30160:2 30164:1 30201:1 30216:1 30222:2 30241:1 30269:1 30285:2 30290:1 30292:1 30313:1 30341:1 30346:3 30348:1 30354:1 30364:1 30429:1 30435:4 30441:1 30507:1 30524:1 30525:1 30527:2 30539:1 30576:1 30586:1 30593:1 30595:1 30650:1 16 24:1 26:1 62:1 75:4 94:1 121:1 151:1 190:1 206:1 224:4 266:1 285:1 294:2 324:1 334:1 335:2 336:1 360:1 430:1 436:1 453:1 477:2 489:1 493:1 495:1 503:1 505:1 510:1 511:1 546:1 625:1 637:3 660:2 673:4 679:1 688:1 694:1 722:1 730:1 737:1 748:1 778:2 795:1 836:1 857:1 882:1 898:1 943:1 949:1 966:1 971:1 974:1 975:1 1003:1 1029:2 1032:1 1038:1 1065:2 1069:1 1108:1 1131:1 1134:1 1161:1 1170:1 1171:1 1217:3 1221:1 1224:1 1242:2 1253:1 1254:2 1267:1 1280:1 1291:2 1325:1 1333:1 1346:1 1347:2 1348:1 1361:1 1365:1 1395:1 1409:1 1421:1 1446:1 1476:1 1499:1 1500:2 1566:1 1585:2 1590:1 1594:1 1601:1 1602:1 1608:2 1609:1 1625:1 1628:1 1651:1 1657:2 1671:1 1681:1 1685:1 1690:2 1725:1 1730:1 1734:1 1739:1 1742:2 1757:1 1776:1 1780:2 1788:1 1826:1 1855:1 1857:1 1860:1 1863:1 1873:2 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1951:1 1954:1 1955:1 1964:1 1982:1 1986:1 1989:1 1997:1 2016:1 2021:1 2023:1 2032:1 2038:1 2039:4 2052:1 2090:1 2125:1 2132:1 2153:1 2161:2 2169:1 2170:3 2232:1 2234:1 2237:2 2269:1 2346:1 2353:1 2407:2 2408:3 2413:1 2415:1 2416:1 2417:1 2420:3 2422:1 2424:1 2427:1 2434:4 2436:1 2437:3 2450:1 2473:1 2518:2 2519:1 2520:1 2533:1 2550:1 2560:1 2599:1 2623:1 2645:1 2657:1 2694:1 2705:1 2766:1 2797:1 2812:4 2819:1 2825:1 2849:1 2852:1 2854:4 2856:1 2872:1 2888:1 2900:1 2943:1 2952:2 2962:1 2965:3 3019:4 3056:5 3067:6 3118:16 3128:1 3151:1 3224:2 3232:1 3296:2 3391:1 3403:2 3406:4 3428:4 3498:3 3543:1 3567:1 3613:1 3628:1 3634:1 3643:3 3649:1 3661:1 3667:1 3711:1 3730:1 3731:1 3746:2 3764:1 3796:1 3801:1 3803:1 3810:1 3819:2 3867:1 3886:1 3902:1 3903:1 3918:1 3929:1 3958:1 3959:16 3981:1 3993:2 3995:3 4010:9 4011:1 4012:1 4015:3 4027:1 4042:3 4057:1 4058:2 4061:2 4063:1 4076:2 4078:1 4079:1 4123:3 4130:1 4134:1 4173:1 4178:1 4182:1 4183:1 4196:2 4207:2 4216:1 4223:1 4258:1 4265:1 4269:1 4285:1 4290:1 4297:1 4301:1 4318:1 4330:1 4368:1 4381:1 4439:1 4474:1 4504:1 4508:1 4509:1 4555:1 4557:1 4636:5 4650:1 4697:1 4706:1 4718:2 4749:2 4767:1 4773:1 4787:1 4796:1 4854:1 4855:2 4900:1 4927:1 4930:1 4938:1 4948:1 4989:2 5058:1 5059:1 5064:1 5092:1 5100:1 5189:1 5201:10 5202:1 5231:1 5288:1 5308:1 5314:1 5321:1 5323:1 5345:1 5347:4 5348:1 5351:1 5361:1 5362:9 5363:1 5365:1 5370:1 5401:1 5467:1 5593:2 5594:3 5603:5 5652:1 5675:1 5677:9 5703:1 5735:1 5771:1 5774:1 5816:1 5819:1 5830:1 5848:1 5856:1 5857:1 5901:1 5911:1 5921:1 5922:1 5943:1 5951:1 5954:1 5962:1 5987:2 5993:1 6018:1 6021:1 6038:1 6044:1 6063:1 6065:1 6068:1 6079:1 6101:1 6103:1 6121:1 6140:1 6142:1 6199:2 6217:1 6219:1 6221:1 6227:1 6305:1 6371:3 6386:1 6410:1 6415:1 6444:1 6480:1 6490:1 6491:1 6499:1 6528:1 6529:1 6536:1 6539:2 6540:1 6588:1 6591:2 6618:3 6621:1 6635:1 6639:1 6654:1 6724:1 6727:1 6730:1 6731:1 6734:1 6736:2 6743:1 6744:2 6745:1 6747:1 6756:1 6773:1 6836:1 6878:1 6895:2 6901:1 6930:1 6932:1 6977:1 6994:1 7000:2 7019:1 7027:5 7032:2 7035:1 7060:2 7080:1 7083:1 7115:1 7126:1 7192:1 7201:1 7204:1 7216:2 7222:1 7231:1 7236:2 7257:1 7308:1 7322:1 7335:2 7342:1 7407:1 7412:1 7456:1 7542:1 7573:1 7574:1 7577:4 7585:2 7601:1 7603:1 7610:1 7612:1 7625:1 7774:1 7779:1 7788:3 7830:1 7840:2 7926:1 7932:1 7997:2 8005:1 8023:1 8031:1 8054:1 8064:1 8066:2 8084:1 8097:1 8100:1 8122:1 8131:18 8133:1 8140:1 8151:4 8152:13 8161:1 8170:1 8208:3 8238:1 8254:1 8273:1 8279:1 8302:1 8307:1 8365:4 8372:1 8413:1 8415:2 8433:1 8450:1 8478:1 8492:1 8523:1 8540:1 8546:1 8559:1 8597:1 8603:1 8623:1 8633:7 8651:1 8665:1 8687:1 8718:1 8742:1 8748:1 8753:2 8760:3 8779:1 8793:3 8798:1 8816:2 8820:2 8857:1 8858:1 8863:1 8873:1 8884:1 8899:1 8915:1 8938:1 8942:3 8959:1 8980:2 8983:1 8984:2 8985:1 8986:2 8987:2 8995:1 8998:2 9004:1 9020:1 9027:1 9035:1 9039:2 9040:1 9041:1 9046:1 9058:1 9061:1 9075:2 9112:1 9135:1 9139:2 9146:1 9149:1 9151:1 9164:1 9204:1 9205:1 9209:1 9215:1 9225:1 9227:1 9268:1 9269:1 9273:1 9277:1 9280:3 9301:1 9302:1 9304:3 9316:1 9339:1 9420:1 9439:1 9442:1 9450:1 9453:1 9471:1 9478:1 9480:1 9504:1 9506:1 9589:1 9594:1 9618:1 9646:1 9651:1 9662:1 9663:1 9677:1 9695:1 9697:1 9715:1 9732:1 9870:1 9874:1 9888:1 9889:2 9909:1 9928:1 9930:1 9940:1 9942:1 9972:1 9973:1 9977:1 9983:1 9994:1 10037:9 10043:1 10069:1 10078:3 10084:2 10109:1 10128:1 10130:2 10146:1 10169:9 10185:1 10211:1 10223:1 10238:3 10240:1 10259:1 10321:2 10322:1 10356:2 10362:1 10363:1 10364:1 10371:1 10379:1 10393:1 10406:1 10410:2 10446:2 10450:1 10468:1 10470:1 10493:1 10549:1 10552:1 10577:5 10581:3 10596:1 10601:1 10651:3 10698:2 10707:1 10731:1 10757:1 10763:1 10780:3 10784:1 10809:1 10880:1 10892:3 10903:1 10923:1 10957:2 11009:1 11028:1 11047:2 11060:2 11061:2 11063:1 11070:1 11081:1 11120:1 11126:1 11134:3 11148:1 11156:1 11160:1 11166:4 11234:1 11237:1 11260:1 11261:1 11262:1 11268:1 11305:1 11359:1 11371:1 11388:1 11389:1 11400:1 11417:2 11418:3 11482:1 11499:1 11512:2 11535:1 11556:2 11569:2 11597:1 11668:1 11684:1 11703:1 11710:1 11718:1 11740:1 11754:1 11779:2 11810:1 11819:1 11830:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11887:1 11918:1 11923:1 11926:3 11929:1 11961:1 11985:1 11986:1 11991:1 12009:1 12029:1 12056:1 12065:3 12066:2 12095:2 12098:2 12130:1 12155:2 12170:1 12181:1 12182:1 12189:1 12193:4 12194:1 12200:1 12202:4 12210:1 12218:1 12228:2 12253:1 12266:3 12270:1 12275:1 12293:1 12314:1 12325:4 12335:1 12337:1 12373:1 12375:1 12385:3 12406:1 12423:1 12470:1 12471:1 12539:1 12594:1 12609:1 12625:1 12628:1 12629:1 12632:1 12654:1 12655:1 12656:9 12660:4 12698:1 12705:1 12716:2 12766:1 12815:1 12824:5 12825:2 12841:1 12846:1 12902:1 12906:1 12936:1 12947:1 12953:1 12961:1 13019:1 13035:1 13054:1 13057:1 13092:1 13095:1 13107:1 13117:1 13166:1 13207:1 13227:6 13240:1 13248:1 13276:2 13277:2 13307:1 13342:1 13371:1 13376:2 13440:1 13441:1 13443:2 13486:1 13488:1 13522:1 13580:1 13614:1 13623:1 13624:2 13656:1 13684:1 13700:2 13711:1 13714:1 13720:1 13735:1 13739:1 13740:1 13768:1 13776:1 13816:1 13821:1 13833:1 13835:1 13838:3 13842:1 13843:1 13851:1 13858:1 13873:1 13878:1 13915:3 13926:1 13930:1 13944:1 13958:1 13981:2 13993:2 13994:1 14011:1 14028:1 14037:1 14050:1 14063:2 14078:1 14086:3 14113:1 14145:1 14157:1 14177:1 14189:2 14228:1 14234:1 14237:1 14238:2 14239:1 14241:1 14275:1 14296:1 14311:1 14334:1 14366:3 14377:1 14422:1 14445:1 14446:1 14450:1 14471:1 14472:1 14477:2 14503:1 14522:1 14529:1 14533:1 14552:2 14553:4 14563:1 14584:1 14592:3 14610:1 14642:2 14644:1 14649:1 14650:1 14654:1 14780:1 14785:2 14806:1 14845:1 14862:1 14887:1 14922:1 14958:1 14987:1 15008:3 15010:1 15011:1 15019:1 15032:1 15060:1 15068:1 15072:1 15096:1 15120:1 15141:1 15174:1 15190:1 15196:1 15216:1 15233:1 15252:1 15276:1 15319:1 15364:1 15476:1 15487:1 15507:2 15538:1 15547:2 15548:1 15552:1 15597:1 15605:1 15643:2 15672:1 15695:1 15702:1 15725:1 15734:1 15772:1 15788:1 15875:2 15876:1 15881:1 15907:1 15908:1 15911:1 15951:1 15955:1 15961:1 16021:3 16032:2 16054:1 16096:1 16111:1 16148:2 16167:3 16172:2 16174:1 16207:1 16222:2 16255:1 16270:1 16303:2 16309:1 16317:3 16325:1 16336:1 16353:1 16356:1 16357:3 16358:1 16363:1 16367:1 16369:1 16379:1 16386:2 16467:1 16484:1 16495:1 16498:1 16501:2 16507:3 16564:1 16623:1 16646:3 16659:2 16660:1 16673:1 16674:1 16677:1 16678:1 16706:9 16734:1 16739:1 16743:1 16761:2 16775:24 16794:2 16831:1 16864:1 16867:1 16913:1 16919:1 16920:1 16921:1 16927:2 16957:1 16961:1 16965:1 16980:1 16981:1 17010:1 17047:1 17055:3 17090:2 17116:1 17135:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:1 17253:1 17295:1 17317:1 17336:1 17342:1 17372:2 17415:1 17422:1 17424:2 17435:1 17438:1 17454:1 17460:7 17500:1 17514:1 17553:1 17559:1 17582:1 17583:1 17585:3 17587:1 17593:1 17596:1 17613:1 17635:1 17645:1 17646:1 17718:1 17788:1 17797:2 17816:1 17843:1 17849:1 17859:1 17871:1 17875:1 17877:2 17889:1 17897:1 17906:3 17912:1 17952:1 17957:1 17972:1 17998:1 18006:1 18034:3 18110:1 18112:1 18129:3 18136:1 18144:1 18147:2 18153:1 18154:1 18171:1 18174:1 18188:1 18197:1 18223:1 18248:1 18249:1 18277:1 18330:2 18342:1 18355:1 18417:2 18421:1 18442:5 18478:1 18506:1 18524:1 18544:1 18546:1 18559:1 18565:1 18584:1 18589:1 18602:1 18625:1 18629:2 18633:3 18636:1 18707:1 18748:2 18749:1 18781:1 18797:1 18815:1 18816:1 18819:1 18831:2 18838:1 18855:1 18872:1 18873:1 18922:1 18932:1 18956:2 18977:1 18980:1 18984:1 18987:3 19006:1 19007:1 19016:1 19079:1 19098:1 19113:1 19114:5 19191:1 19193:1 19210:1 19225:1 19241:1 19244:3 19265:2 19272:1 19276:1 19315:1 19323:1621 19342:1 19343:1 19348:1 19395:1 19413:3 19452:2 19473:2 19482:1 19507:1 19509:1 19530:3 19539:3 19541:1 19543:1 19584:1 19636:3 19638:1 19664:1 19696:2 19708:1 19733:1 19743:1 19751:1 19756:1 19804:1 19817:1 19831:4 19856:1 19918:1 20032:1 20048:1 20050:1 20057:1 20074:1 20086:2 20090:1 20091:2 20095:1 20121:6 20146:1 20147:6 20177:1 20178:1 20212:1 20216:1 20243:1 20248:1 20250:1 20252:1 20262:1 20277:1 20287:1 20313:1 20319:1 20339:1 20349:1 20363:1 20387:1 20392:1 20451:1 20477:1 20492:1 20502:1 20523:1 20524:7 20565:1 20573:1 20613:1 20623:3 20648:1 20669:1 20691:1 20720:1 20722:1 20724:1 20725:1 20731:1 20779:4 20782:1 20787:1 20789:1 20811:2 20839:1 20853:1 20877:1 20894:1 20897:1 20907:1 20908:2 20923:5 20972:1 20996:7 21014:2 21017:1 21030:1 21033:1 21050:8 21066:1 21088:1 21103:1 21131:1 21175:1 21196:2 21225:1 21258:1 21301:2 21316:1 21328:1 21331:1 21339:1 21343:1 21389:1 21392:1 21474:1 21495:1 21532:1 21554:1 21596:3 21643:8 21660:3 21663:1 21664:1 21684:1 21690:1 21708:1 21769:2 21773:1 21797:1 21798:1 21822:3 21829:1 21830:2 21874:1 21896:1 21911:1 21932:1 21936:1 21980:1 21987:1 22041:1 22048:1 22050:1 22106:1 22154:2 22157:2 22159:1 22170:1 22183:1 22228:1 22236:2 22241:2 22251:1 22281:1 22286:1 22298:1 22300:2 22305:1 22309:1 22332:1 22349:1 22384:2 22396:1 22405:1 22406:1 22425:1 22427:5 22430:1 22447:1 22501:1 22515:1 22534:1 22540:1 22549:2 22563:1 22603:1 22607:2 22614:2 22618:2 22621:1 22693:1 22702:1 22705:5 22712:1 22720:1 22734:1 22736:1 22740:1 22746:1 22748:2 22756:1 22769:1 22795:1 22833:3 22834:1 22856:1 22866:1 22874:2 22877:1 22895:1 22901:1 22909:1 22926:1 22937:1 22985:9 22990:1 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:2 23096:1 23102:1 23112:2 23125:1 23136:4 23153:2 23160:3 23199:1 23212:1 23215:1 23221:1 23225:1 23246:2 23256:1 23271:1 23284:2 23302:3 23317:1 23325:1 23336:1 23454:3 23462:1 23496:3 23554:1 23570:1 23575:1 23579:9 23583:2 23600:1 23611:1 23629:1 23632:1 23648:1 23662:1 23666:2 23695:1 23699:1 23717:5 23721:1 23750:1 23765:2 23767:1 23788:2 23807:1 23819:1 23859:1 23878:1 23879:1 23891:1 23955:1 23968:1 23971:3 23978:1 24002:1 24003:1 24015:1 24049:1 24087:1 24090:2 24103:1 24108:1 24113:1 24119:2 24124:2 24128:1 24168:1 24177:1 24183:1 24187:1 24188:1 24207:3 24232:1 24235:1 24241:2 24247:1 24273:1 24280:1 24281:1 24293:1 24329:2 24340:9 24408:1 24441:1 24444:1 24449:1 24504:1 24509:1 24534:1 24571:1 24591:1 24653:1 24656:1 24668:1 24702:2 24717:1 24761:1 24777:1 24797:1 24814:3 24827:2 24838:1 24845:1 24921:1 24932:1 24970:1 24976:1 25005:2 25014:1 25023:1 25027:1 25073:2 25122:1 25158:1 25181:1 25194:5 25252:1 25264:1 25275:1 25285:2 25288:1 25311:1 25319:1 25325:1 25327:2 25339:1 25347:1 25385:1 25398:1 25415:1 25419:1 25431:1 25468:1 25471:1 25472:1 25495:3 25503:1 25507:1 25510:1 25526:1 25561:1 25587:1 25623:1 25627:1 25643:1 25673:1 25684:1 25688:1 25718:1 25722:1 25778:2 25797:1 25823:1 25832:1 25852:1 25860:1 25872:1 25878:1 25884:1 25893:3 25918:2 25966:1 25998:1 26004:1 26058:1 26073:1 26076:1 26097:1 26124:1 26150:2 26156:3 26159:1 26172:1 26207:1 26232:1 26257:1 26318:1 26322:2 26324:2 26331:1 26356:1 26371:1 26372:1 26377:2 26403:1 26413:1 26415:2 26429:2 26435:3 26436:1 26445:1 26460:1 26463:1 26472:1 26489:2 26513:3 26518:1 26538:2 26564:1 26627:3 26652:1 26653:2 26681:1 26689:1 26728:2 26782:3 26808:1 26835:1 26842:2 26844:1 26865:1 26868:1 26871:1 26893:1 26898:1 26912:1 26915:1 26934:1 26949:1 26955:1 26977:3 26982:1 27000:1 27008:2 27010:1 27056:1 27065:1 27078:1 27099:1 27115:1 27138:5 27144:1 27178:1 27185:1 27192:2 27212:1 27252:1 27280:1 27295:1 27308:1 27314:1 27332:1 27422:4 27424:2 27438:2 27439:1 27440:4 27441:2 27490:2 27521:1 27534:1 27540:2 27552:1 27580:2 27601:1 27621:1 27636:1 27673:1 27799:1 27809:1 27852:1 27863:1 27939:1 27949:1 27950:1 28004:1 28005:1 28095:2 28099:1 28118:1 28121:4 28154:1 28223:9 28224:1 28227:3 28230:1 28258:1 28338:1 28342:1 28343:1 28395:1 28410:1 28413:1 28421:1 28429:1 28432:1 28437:1 28443:1 28472:1 28482:1 28499:1 28514:1 28524:1 28581:1 28644:1 28659:1 28674:1 28675:1 28684:1 28754:3 28771:1 28798:1 28848:1 28870:1 28874:1 28878:1 28912:1 28928:1 28931:1 28962:1 28974:1 29004:1 29041:1 29112:1 29130:3 29135:1 29155:1 29179:1 29182:2 29183:14 29184:2 29186:1 29189:1 29192:1 29203:1 29220:1 29221:7 29224:1 29234:1 29248:1 29276:1 29277:1 29281:1 29289:1 29310:1 29325:1 29334:2 29342:1 29382:1 29429:1 29454:1 29486:1 29495:2 29537:1 29573:1 29587:2 29589:1 29591:4 29595:1 29624:1 29636:1 29655:1 29663:1 29666:2 29745:1 29747:1 29809:1 29812:1 29841:1 29848:1 29891:3 29904:1 29905:1 29932:2 29936:2 29942:1 29950:1 29969:2 30011:1 30104:1 30129:3 30160:2 30164:1 30201:1 30216:1 30222:2 30241:1 30269:1 30285:2 30290:1 30292:1 30313:1 30341:1 30346:3 30348:1 30354:1 30364:1 30429:1 30435:4 30441:1 30507:1 30524:1 30525:1 30527:2 30539:1 30576:1 30586:1 30593:1 30595:1 30650:1 16 24:1 26:1 62:1 75:4 94:1 121:1 151:1 190:1 206:1 224:4 266:1 285:1 294:2 324:1 334:1 335:2 336:1 360:1 430:1 436:1 453:1 477:2 489:1 493:1 495:1 503:1 505:1 510:1 511:1 546:1 625:1 637:3 660:2 666:1 673:4 679:1 688:1 694:1 722:1 730:1 737:1 748:1 778:2 795:1 836:1 857:1 882:1 898:1 943:1 949:1 966:1 971:1 974:1 975:1 1003:1 1029:2 1032:1 1038:1 1065:2 1069:1 1108:1 1131:1 1134:1 1161:1 1170:1 1171:1 1217:3 1221:1 1224:1 1242:2 1253:1 1254:2 1267:1 1280:1 1291:3 1325:1 1331:1 1333:1 1346:1 1347:2 1348:1 1361:1 1365:1 1395:1 1409:1 1421:1 1446:1 1476:1 1499:1 1500:2 1566:1 1585:2 1590:1 1594:1 1601:1 1602:1 1608:2 1609:1 1625:1 1628:1 1651:1 1657:2 1671:1 1681:1 1685:1 1690:2 1725:1 1730:1 1734:1 1739:1 1742:2 1757:1 1776:1 1780:2 1788:1 1826:1 1840:1 1855:1 1857:1 1860:1 1863:1 1873:2 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1951:1 1954:1 1955:1 1964:1 1982:1 1986:1 1989:1 1997:1 2016:1 2021:1 2023:1 2032:1 2038:1 2039:4 2052:1 2090:1 2125:1 2132:1 2153:1 2161:2 2169:1 2170:3 2232:1 2234:1 2237:2 2269:1 2346:1 2353:1 2407:2 2408:3 2413:1 2415:1 2416:1 2417:1 2420:3 2422:1 2424:1 2427:1 2434:4 2436:1 2437:3 2450:1 2473:1 2518:2 2519:1 2520:1 2533:1 2550:1 2556:1 2560:1 2599:1 2623:1 2645:1 2657:1 2694:1 2705:1 2766:1 2797:1 2812:4 2819:1 2825:1 2849:1 2852:1 2854:4 2856:1 2872:1 2888:1 2896:1 2900:1 2943:1 2952:2 2962:1 2965:3 3019:4 3056:5 3067:6 3118:16 3128:1 3151:1 3224:2 3232:1 3296:2 3391:1 3403:2 3406:4 3428:4 3498:3 3543:1 3567:1 3613:1 3628:1 3634:1 3643:3 3649:1 3661:1 3667:1 3711:1 3730:1 3731:1 3746:2 3764:1 3796:1 3801:1 3803:1 3810:1 3819:2 3846:1 3867:1 3886:1 3902:1 3903:1 3918:1 3929:1 3958:1 3959:20 3981:1 3993:2 3995:3 4010:10 4011:1 4012:1 4015:3 4027:1 4042:3 4057:1 4058:2 4061:2 4063:1 4076:2 4078:1 4079:1 4123:3 4130:1 4134:1 4173:1 4178:1 4182:1 4183:1 4196:2 4207:2 4216:1 4223:1 4258:1 4265:1 4267:1 4269:1 4285:1 4290:1 4297:1 4301:1 4318:1 4330:1 4368:1 4381:1 4439:1 4474:1 4504:1 4508:1 4509:1 4555:1 4557:1 4636:5 4650:1 4697:1 4706:1 4718:2 4749:2 4767:1 4773:1 4787:1 4796:1 4854:1 4855:2 4900:1 4927:1 4930:1 4938:1 4948:1 4989:2 5058:1 5059:1 5064:1 5092:1 5100:1 5189:1 5201:10 5202:1 5231:1 5288:1 5308:1 5314:1 5321:1 5323:1 5345:1 5347:4 5348:1 5351:1 5361:1 5362:11 5363:1 5365:1 5370:1 5401:1 5467:1 5593:2 5594:3 5603:5 5652:1 5675:1 5677:11 5703:1 5735:1 5771:1 5774:1 5816:1 5819:1 5830:1 5848:1 5856:1 5857:1 5901:1 5911:1 5921:1 5922:1 5943:1 5951:1 5954:1 5962:1 5987:2 5993:1 6018:1 6021:2 6038:1 6044:1 6063:1 6065:1 6068:1 6079:1 6101:1 6103:1 6121:1 6140:1 6142:1 6199:2 6217:1 6219:2 6221:1 6227:1 6305:1 6371:3 6386:1 6410:1 6415:1 6444:1 6480:1 6490:1 6491:1 6499:1 6528:1 6529:1 6536:1 6539:2 6540:1 6588:1 6591:2 6618:3 6621:1 6635:1 6639:1 6654:1 6660:1 6724:1 6726:1 6727:1 6730:1 6731:1 6734:1 6736:2 6743:1 6744:2 6745:1 6747:1 6756:1 6773:1 6836:1 6878:1 6895:2 6901:1 6930:1 6932:1 6977:1 6994:1 7000:2 7019:1 7027:5 7032:2 7035:1 7047:1 7060:2 7080:1 7083:1 7115:1 7126:1 7192:1 7201:2 7204:1 7216:2 7222:1 7231:1 7236:2 7257:1 7308:1 7322:1 7335:2 7342:1 7407:1 7412:1 7456:1 7542:1 7573:1 7574:1 7577:5 7585:2 7601:1 7603:1 7610:1 7612:1 7625:1 7774:1 7779:1 7788:3 7830:1 7840:2 7926:1 7932:1 7997:2 8005:1 8023:1 8031:1 8054:1 8064:1 8066:2 8084:1 8097:1 8100:1 8122:1 8128:1 8131:18 8133:1 8140:1 8151:4 8152:13 8161:1 8170:1 8208:3 8238:1 8254:1 8273:1 8279:1 8302:1 8307:1 8365:4 8372:1 8413:1 8415:2 8433:1 8450:1 8478:1 8492:1 8523:1 8540:2 8546:1 8559:1 8597:1 8603:1 8623:1 8633:7 8651:1 8665:1 8687:1 8718:1 8724:1 8742:1 8748:1 8753:2 8760:3 8779:1 8793:3 8798:1 8816:2 8820:2 8845:1 8850:1 8857:1 8858:1 8863:1 8873:1 8884:1 8899:1 8915:1 8938:1 8942:3 8959:1 8980:2 8983:1 8984:2 8985:1 8986:2 8987:2 8995:1 8998:2 9000:1 9004:1 9020:1 9027:1 9035:1 9039:2 9040:1 9041:1 9046:1 9058:1 9061:1 9072:1 9075:2 9112:1 9135:1 9139:3 9146:1 9149:1 9151:1 9164:1 9204:1 9205:1 9209:1 9215:1 9225:2 9227:1 9268:1 9269:1 9273:1 9277:1 9280:3 9301:1 9302:1 9304:3 9316:1 9339:1 9420:1 9439:1 9442:1 9450:1 9453:1 9471:1 9478:1 9480:1 9504:1 9506:1 9589:1 9594:1 9618:2 9646:1 9651:1 9662:1 9663:1 9677:1 9695:1 9697:1 9715:1 9732:1 9870:1 9874:1 9882:1 9888:1 9889:2 9909:1 9928:1 9930:1 9940:1 9942:1 9972:1 9973:1 9977:1 9983:1 9994:1 10037:11 10043:1 10069:1 10078:3 10084:2 10109:1 10128:1 10130:2 10146:1 10169:9 10185:1 10211:1 10223:1 10235:1 10238:3 10240:1 10259:1 10321:2 10322:1 10356:2 10362:1 10363:1 10364:1 10371:1 10379:1 10393:1 10406:1 10410:3 10413:1 10416:1 10446:2 10450:1 10468:1 10470:1 10493:1 10549:1 10552:1 10577:6 10581:3 10596:1 10601:1 10651:3 10698:2 10707:1 10731:1 10757:1 10763:1 10780:3 10784:1 10809:1 10880:1 10892:3 10898:1 10903:1 10923:1 10957:2 11009:1 11028:1 11047:2 11060:2 11061:2 11063:1 11070:1 11081:1 11120:1 11126:1 11134:3 11148:1 11156:1 11160:1 11166:4 11234:1 11237:1 11260:1 11261:1 11262:1 11268:1 11305:1 11359:1 11371:1 11388:1 11389:1 11400:2 11417:2 11418:3 11482:1 11499:1 11512:2 11529:1 11535:1 11556:2 11569:2 11597:1 11668:1 11684:1 11703:1 11710:1 11718:1 11740:1 11754:1 11779:2 11810:1 11819:1 11830:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11887:1 11918:1 11923:1 11926:3 11929:1 11961:1 11985:1 11986:1 11991:1 12009:1 12029:1 12056:1 12065:3 12066:2 12095:2 12098:2 12130:1 12155:2 12170:1 12181:1 12182:1 12189:1 12193:4 12194:1 12200:1 12202:4 12210:1 12218:1 12228:2 12253:1 12266:3 12270:1 12275:1 12293:1 12314:1 12325:4 12335:1 12337:1 12373:1 12375:1 12385:3 12406:1 12423:1 12470:1 12471:1 12539:1 12594:1 12609:1 12625:1 12628:1 12629:1 12632:1 12654:1 12655:1 12656:11 12660:4 12698:1 12705:1 12716:2 12766:1 12815:1 12824:5 12825:2 12841:1 12846:1 12902:1 12906:1 12936:1 12947:1 12953:1 12961:1 13019:1 13035:1 13054:1 13057:1 13092:1 13095:1 13107:1 13117:1 13166:1 13207:1 13227:6 13240:1 13248:1 13276:2 13277:2 13307:1 13342:1 13371:1 13376:2 13440:1 13441:1 13443:2 13486:1 13488:1 13522:1 13580:1 13614:1 13623:1 13624:2 13656:1 13684:1 13700:2 13711:1 13714:1 13720:1 13735:1 13739:1 13740:1 13768:1 13776:1 13816:1 13821:1 13833:1 13835:1 13838:3 13842:1 13843:1 13851:1 13858:2 13873:1 13878:1 13915:3 13926:1 13930:1 13944:1 13958:1 13981:2 13993:2 13994:1 14011:1 14028:1 14037:1 14050:1 14063:2 14078:1 14086:3 14113:1 14129:1 14145:1 14157:1 14177:1 14189:2 14228:1 14234:1 14237:1 14238:2 14239:1 14241:1 14275:1 14296:1 14311:1 14334:1 14366:3 14377:1 14422:1 14445:1 14446:1 14450:1 14471:1 14472:1 14477:3 14503:1 14522:1 14529:1 14533:1 14552:2 14553:4 14563:1 14584:1 14592:3 14610:1 14642:2 14644:1 14649:1 14650:1 14654:1 14780:1 14785:2 14806:1 14845:1 14862:1 14887:1 14922:1 14958:1 14986:1 14987:1 14997:1 15008:3 15010:1 15011:1 15019:1 15032:1 15060:1 15068:1 15072:1 15096:1 15120:1 15141:1 15174:1 15190:1 15196:1 15216:1 15233:1 15252:1 15276:1 15319:1 15364:1 15476:1 15487:1 15507:2 15538:1 15547:2 15548:1 15552:1 15597:1 15605:1 15643:2 15672:1 15695:1 15702:1 15725:1 15734:1 15772:1 15788:1 15875:2 15876:1 15881:1 15907:1 15908:1 15911:1 15951:1 15955:1 15961:1 16021:3 16032:2 16054:1 16096:1 16111:1 16140:1 16148:2 16167:3 16172:2 16174:1 16207:1 16221:1 16222:2 16255:1 16270:1 16303:2 16309:1 16317:4 16325:1 16336:1 16353:1 16356:1 16357:3 16358:1 16363:1 16367:1 16368:1 16369:1 16379:1 16386:4 16467:1 16484:1 16495:1 16498:1 16501:2 16507:3 16564:1 16623:1 16646:3 16659:2 16660:1 16673:1 16674:1 16677:1 16678:1 16706:11 16734:1 16739:1 16743:1 16761:2 16775:27 16794:2 16831:1 16861:1 16864:1 16867:1 16913:1 16919:1 16920:1 16921:1 16927:2 16957:1 16961:1 16965:1 16980:1 16981:1 17010:1 17047:1 17055:3 17090:2 17116:1 17135:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:1 17253:1 17295:1 17317:1 17336:1 17342:1 17372:2 17415:1 17422:1 17424:2 17435:1 17438:1 17454:1 17460:7 17500:1 17514:1 17553:1 17559:1 17582:1 17583:1 17585:3 17587:1 17593:1 17596:1 17613:1 17635:1 17645:1 17646:1 17718:1 17788:1 17797:2 17816:1 17843:1 17849:1 17859:1 17871:1 17875:1 17877:2 17889:1 17897:1 17906:3 17912:1 17952:1 17957:1 17972:1 17998:1 18006:1 18034:3 18110:1 18112:1 18129:3 18136:1 18144:1 18147:2 18153:1 18154:1 18171:1 18174:1 18188:1 18197:1 18223:1 18248:1 18249:1 18277:1 18330:2 18342:1 18355:1 18417:2 18421:1 18442:5 18478:1 18506:1 18524:1 18544:1 18546:1 18559:1 18565:1 18584:1 18589:1 18602:1 18625:1 18629:2 18633:3 18636:1 18707:1 18748:2 18749:1 18781:1 18797:1 18815:1 18816:1 18819:1 18831:2 18838:1 18855:1 18872:1 18873:1 18922:1 18932:1 18956:2 18977:1 18980:1 18984:1 18987:3 19006:1 19007:1 19016:1 19079:1 19098:1 19113:1 19114:5 19191:1 19193:1 19210:1 19225:1 19241:1 19244:3 19265:2 19272:1 19276:2 19315:1 19323:1662 19342:1 19343:1 19348:1 19395:1 19413:3 19452:2 19473:2 19482:1 19507:1 19509:1 19530:3 19539:3 19541:1 19543:1 19584:1 19636:3 19638:1 19664:1 19696:2 19708:1 19733:1 19743:1 19751:1 19756:1 19804:1 19817:1 19820:1 19831:4 19856:1 19918:1 20004:1 20032:1 20048:1 20050:1 20057:1 20074:1 20086:2 20090:1 20091:3 20095:1 20107:1 20121:6 20146:1 20147:6 20177:1 20178:1 20212:1 20216:1 20243:1 20248:1 20250:1 20252:1 20262:1 20277:1 20287:1 20313:1 20319:1 20339:1 20349:1 20363:1 20387:1 20392:1 20451:1 20477:1 20492:1 20502:1 20523:1 20524:7 20565:1 20573:1 20605:1 20613:1 20623:3 20648:1 20669:1 20691:1 20714:1 20720:1 20722:1 20724:1 20725:1 20731:1 20779:4 20782:1 20787:1 20789:1 20811:2 20839:1 20853:1 20877:1 20894:1 20897:1 20907:1 20908:2 20923:5 20972:1 20996:7 21014:2 21017:1 21030:1 21033:1 21050:8 21066:1 21088:1 21103:1 21131:1 21175:1 21196:2 21225:1 21258:1 21301:2 21316:1 21328:1 21331:1 21339:1 21343:1 21389:1 21392:1 21474:1 21495:1 21532:1 21554:1 21596:3 21643:8 21660:3 21663:1 21664:1 21684:1 21690:1 21708:1 21769:2 21773:1 21797:1 21798:1 21822:3 21829:1 21830:2 21874:1 21896:1 21911:1 21932:1 21936:1 21980:1 21987:1 21992:1 22041:1 22048:1 22050:1 22106:1 22154:4 22157:2 22159:1 22170:1 22183:1 22228:1 22236:2 22241:2 22251:1 22268:1 22281:1 22285:1 22286:1 22298:1 22300:2 22305:1 22309:1 22332:1 22349:1 22384:2 22396:1 22405:1 22406:1 22425:1 22427:5 22430:1 22447:1 22501:1 22515:1 22534:1 22540:1 22549:2 22563:1 22603:1 22607:4 22614:2 22618:2 22621:1 22693:1 22702:1 22705:5 22712:1 22720:1 22734:1 22736:1 22740:1 22746:1 22748:2 22756:1 22769:1 22795:1 22833:3 22834:1 22856:1 22866:1 22874:2 22877:1 22895:1 22901:1 22909:1 22926:1 22937:1 22985:11 22990:1 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:2 23096:1 23102:1 23112:2 23125:1 23136:4 23153:2 23160:3 23199:1 23212:1 23215:1 23221:1 23225:1 23244:1 23246:2 23256:1 23271:1 23284:2 23302:3 23317:1 23325:1 23336:1 23454:3 23462:1 23496:3 23554:1 23570:1 23575:1 23579:9 23583:2 23600:1 23611:1 23629:1 23632:1 23639:1 23648:1 23662:1 23666:2 23695:1 23699:1 23717:5 23721:1 23750:1 23765:2 23767:1 23788:2 23807:1 23819:1 23859:1 23878:1 23879:1 23891:1 23955:1 23968:1 23971:3 23978:1 24002:1 24003:1 24015:1 24049:1 24087:1 24090:2 24103:1 24108:1 24113:1 24119:2 24124:2 24128:1 24168:1 24177:1 24183:1 24187:1 24188:1 24207:3 24232:1 24235:1 24241:2 24247:1 24273:1 24280:1 24281:1 24293:1 24329:2 24340:10 24408:1 24441:1 24444:1 24449:1 24504:1 24509:1 24534:1 24571:1 24591:1 24653:1 24656:1 24668:1 24702:2 24717:1 24761:1 24777:1 24797:1 24814:3 24827:2 24838:1 24845:1 24921:1 24932:1 24970:1 24976:1 25004:1 25005:2 25014:1 25023:1 25027:1 25073:2 25122:1 25158:1 25181:1 25194:5 25252:1 25264:1 25275:1 25285:2 25288:1 25311:1 25319:1 25325:1 25327:2 25339:1 25347:1 25385:1 25398:1 25415:1 25419:1 25431:1 25468:1 25471:1 25472:1 25495:3 25503:1 25507:1 25510:1 25526:1 25561:1 25570:1 25587:1 25623:1 25627:1 25643:1 25673:1 25684:1 25688:1 25718:1 25722:1 25778:2 25797:1 25823:1 25832:1 25852:1 25860:1 25872:1 25878:1 25884:1 25893:3 25918:2 25966:1 25998:1 26004:1 26058:1 26073:1 26076:1 26097:1 26124:1 26150:2 26156:3 26159:1 26172:1 26207:1 26232:1 26257:1 26318:1 26322:3 26324:2 26331:1 26356:1 26371:1 26372:1 26377:2 26403:1 26413:1 26415:2 26429:2 26435:3 26436:1 26445:1 26460:1 26463:1 26472:1 26489:2 26513:3 26518:1 26524:1 26538:2 26564:1 26589:1 26627:3 26652:1 26653:2 26681:1 26689:1 26728:2 26782:3 26808:1 26835:1 26842:2 26844:1 26865:1 26868:1 26871:1 26893:1 26898:1 26912:1 26915:1 26934:1 26949:1 26955:1 26977:3 26982:1 27000:1 27008:2 27010:1 27056:1 27065:1 27078:1 27099:1 27115:1 27138:5 27144:1 27178:1 27185:1 27192:2 27212:1 27252:1 27280:1 27295:1 27308:1 27314:1 27332:1 27422:4 27424:2 27438:2 27439:1 27440:4 27441:2 27490:2 27521:1 27534:1 27540:2 27552:1 27580:2 27601:1 27621:1 27636:1 27673:1 27799:1 27809:1 27852:1 27863:1 27939:1 27949:1 27950:1 28004:1 28005:1 28095:2 28099:1 28118:1 28121:4 28154:1 28223:10 28224:1 28227:3 28230:1 28258:1 28338:1 28342:1 28343:1 28395:1 28410:1 28413:1 28421:1 28429:1 28432:1 28437:1 28443:1 28472:1 28482:1 28499:1 28514:1 28524:2 28581:1 28644:1 28659:1 28674:1 28675:1 28684:1 28754:3 28771:1 28798:1 28848:1 28870:1 28874:1 28878:1 28912:1 28928:1 28931:1 28962:1 28974:1 29004:1 29041:1 29111:1 29112:1 29130:3 29135:1 29155:1 29179:1 29182:2 29183:15 29184:2 29186:1 29189:1 29192:1 29203:1 29220:1 29221:7 29224:1 29234:1 29248:1 29276:1 29277:1 29281:1 29289:1 29310:1 29325:1 29334:2 29342:1 29382:1 29429:1 29454:1 29486:1 29495:2 29537:1 29573:1 29587:2 29589:1 29591:4 29595:1 29624:1 29636:1 29655:1 29663:1 29666:2 29741:1 29745:2 29747:1 29809:1 29812:1 29841:1 29848:1 29891:3 29904:1 29905:1 29932:2 29936:2 29942:1 29950:1 29969:2 30011:1 30080:1 30104:1 30129:3 30160:2 30164:1 30201:1 30216:1 30222:2 30241:1 30269:1 30285:2 30290:1 30292:1 30313:1 30341:1 30346:3 30348:1 30354:1 30364:1 30429:1 30435:4 30441:1 30507:1 30524:1 30525:1 30527:2 30539:1 30576:1 30586:1 30593:1 30595:1 30599:1 30650:1 16 24:1 26:1 62:1 75:4 94:1 121:1 151:1 190:1 206:1 224:4 266:1 285:1 294:2 324:1 334:1 335:2 336:1 360:1 430:2 436:1 440:1 453:1 477:2 489:1 493:1 495:1 503:1 505:1 510:1 511:1 546:1 547:1 625:1 637:3 660:2 666:1 673:4 679:1 688:1 694:1 722:1 730:1 737:1 748:1 778:2 795:1 836:1 857:1 882:1 898:1 943:1 949:1 966:1 971:1 974:1 975:1 1003:1 1029:2 1032:1 1038:1 1065:2 1069:1 1108:1 1131:1 1134:1 1161:1 1170:1 1171:1 1217:3 1221:1 1224:1 1242:2 1253:1 1254:2 1267:1 1280:1 1291:3 1319:1 1325:1 1331:1 1333:1 1346:1 1347:2 1348:2 1361:1 1365:1 1395:1 1409:1 1421:1 1446:1 1476:1 1499:1 1500:2 1511:1 1566:1 1585:2 1590:1 1594:1 1601:1 1602:1 1608:2 1609:1 1625:1 1628:1 1651:1 1657:2 1671:1 1681:1 1685:1 1690:2 1725:1 1730:1 1734:1 1739:1 1742:2 1757:1 1776:1 1780:3 1788:1 1826:1 1840:1 1855:1 1857:1 1860:1 1863:1 1873:2 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1939:1 1951:1 1954:1 1955:1 1964:1 1982:1 1986:1 1989:1 1997:1 2016:1 2021:1 2023:1 2032:1 2038:1 2039:4 2052:1 2090:1 2125:1 2132:1 2153:1 2161:2 2169:1 2170:3 2232:1 2234:1 2237:2 2269:1 2346:1 2353:1 2407:2 2408:3 2413:1 2415:1 2416:1 2417:1 2420:3 2422:1 2424:1 2427:1 2434:4 2436:1 2437:3 2450:1 2473:1 2518:2 2519:1 2520:1 2533:1 2550:1 2556:1 2560:1 2599:1 2623:1 2645:1 2657:1 2694:1 2705:1 2766:1 2797:1 2812:4 2819:1 2825:1 2849:1 2852:1 2854:4 2856:1 2872:1 2888:1 2896:1 2900:1 2909:1 2943:1 2952:2 2962:1 2965:3 3019:4 3056:5 3067:6 3118:16 3128:1 3151:1 3224:2 3232:1 3296:2 3391:1 3403:2 3406:4 3428:5 3498:3 3543:1 3567:1 3613:1 3628:1 3634:1 3643:3 3649:1 3661:1 3667:1 3711:1 3730:1 3731:1 3746:3 3764:1 3796:1 3801:1 3803:1 3810:1 3819:2 3846:1 3867:1 3886:1 3902:1 3903:2 3918:1 3929:1 3950:1 3958:1 3959:20 3981:1 3993:2 3995:4 4010:10 4011:2 4012:1 4015:3 4027:1 4042:3 4057:1 4058:2 4061:2 4063:1 4076:2 4078:1 4079:1 4123:3 4130:1 4134:1 4173:1 4178:1 4182:1 4183:1 4196:2 4207:2 4216:1 4223:1 4258:1 4265:1 4267:1 4269:1 4285:1 4290:1 4297:1 4301:1 4318:1 4330:1 4368:1 4381:1 4439:1 4474:1 4498:1 4504:1 4508:1 4509:1 4547:1 4555:1 4557:1 4636:6 4650:1 4697:1 4706:1 4718:2 4749:2 4767:1 4773:1 4787:1 4796:1 4854:1 4855:2 4900:1 4927:1 4930:2 4938:1 4948:1 4966:1 4989:2 5058:1 5059:1 5064:1 5092:1 5100:1 5189:1 5201:10 5202:1 5231:1 5288:1 5308:1 5314:1 5320:1 5321:1 5323:1 5345:1 5347:4 5348:1 5351:1 5361:1 5362:11 5363:1 5365:1 5370:1 5401:1 5467:1 5593:2 5594:3 5603:5 5652:1 5675:1 5677:11 5703:1 5735:1 5771:1 5774:1 5816:1 5819:1 5830:1 5839:1 5848:1 5856:1 5857:1 5901:1 5911:1 5921:1 5922:1 5943:1 5951:1 5954:1 5962:1 5987:2 5993:1 6018:1 6021:2 6038:2 6044:1 6063:1 6065:1 6068:1 6079:1 6101:1 6103:1 6121:1 6140:1 6142:1 6199:2 6217:1 6219:2 6221:1 6227:1 6305:1 6371:4 6386:1 6410:1 6415:1 6444:1 6480:1 6490:1 6491:1 6499:1 6528:1 6529:1 6536:1 6539:2 6540:1 6588:1 6591:2 6618:3 6621:1 6635:1 6639:1 6654:1 6660:1 6724:1 6726:1 6727:1 6730:1 6731:1 6734:1 6736:2 6743:1 6744:2 6745:1 6747:1 6756:1 6773:1 6836:1 6878:1 6895:2 6901:1 6930:1 6932:1 6977:1 6994:1 7000:2 7019:1 7027:5 7032:2 7035:1 7047:1 7060:2 7080:1 7083:1 7115:1 7126:1 7192:1 7201:2 7204:1 7216:2 7222:1 7231:1 7236:2 7257:1 7308:1 7322:1 7335:2 7342:1 7407:1 7412:1 7456:1 7542:1 7573:1 7574:1 7577:5 7585:2 7601:1 7603:1 7610:1 7612:1 7625:1 7774:1 7779:1 7788:3 7830:1 7840:2 7926:1 7932:1 7997:2 8005:1 8023:1 8031:1 8054:1 8064:1 8066:2 8084:1 8097:1 8100:1 8122:1 8128:1 8131:18 8133:1 8140:1 8151:4 8152:13 8161:1 8170:1 8208:3 8238:1 8254:1 8273:1 8279:1 8302:1 8307:1 8362:1 8365:4 8372:1 8413:1 8415:2 8433:1 8450:1 8478:1 8492:1 8523:1 8540:2 8546:1 8559:1 8597:1 8603:1 8623:1 8633:7 8651:1 8665:1 8687:1 8718:1 8724:1 8742:1 8748:1 8753:2 8760:3 8779:1 8789:1 8793:3 8798:1 8816:2 8820:2 8845:1 8850:1 8857:1 8858:1 8863:2 8873:1 8884:1 8887:1 8899:1 8915:1 8932:1 8938:1 8942:3 8959:1 8980:2 8983:1 8984:2 8985:1 8986:2 8987:2 8995:1 8998:2 9000:1 9004:1 9020:1 9027:1 9035:1 9039:2 9040:1 9041:1 9046:1 9058:1 9061:1 9072:1 9075:2 9112:1 9135:1 9139:3 9146:1 9149:1 9151:1 9164:1 9204:1 9205:1 9209:1 9215:1 9225:2 9227:1 9268:1 9269:2 9273:1 9277:1 9280:3 9286:1 9301:1 9302:1 9304:3 9316:1 9339:1 9420:1 9439:1 9442:1 9450:1 9453:1 9471:1 9478:1 9480:1 9504:1 9506:1 9561:1 9589:1 9594:1 9618:2 9646:1 9651:1 9662:1 9663:1 9677:1 9695:1 9697:1 9715:1 9732:1 9870:1 9874:1 9877:1 9882:1 9888:1 9889:2 9909:1 9928:1 9930:1 9940:1 9942:1 9972:1 9973:1 9977:1 9983:1 9994:1 10037:11 10043:1 10069:1 10078:3 10084:2 10109:1 10128:1 10130:2 10146:1 10169:9 10185:1 10211:1 10223:1 10235:1 10238:3 10240:1 10259:1 10321:2 10322:1 10356:3 10362:1 10363:1 10364:1 10371:1 10379:1 10393:1 10406:1 10410:3 10413:1 10416:1 10446:2 10450:1 10468:1 10470:2 10493:1 10549:1 10552:1 10577:6 10581:3 10596:1 10601:1 10651:3 10698:2 10707:1 10731:1 10757:1 10763:1 10780:3 10784:1 10809:1 10880:1 10892:3 10898:1 10903:1 10923:1 10935:1 10957:2 11009:1 11028:1 11047:4 11060:2 11061:2 11063:1 11070:1 11081:1 11120:1 11126:1 11134:3 11148:1 11156:1 11160:1 11166:4 11234:1 11237:1 11260:1 11261:1 11262:1 11268:1 11305:1 11359:1 11371:1 11388:2 11389:1 11400:2 11417:2 11418:3 11482:1 11499:1 11512:2 11529:1 11535:1 11556:2 11569:2 11597:1 11668:1 11684:1 11703:1 11710:1 11718:1 11740:1 11754:1 11779:2 11810:1 11819:1 11830:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11887:1 11918:1 11923:1 11926:3 11929:1 11961:1 11985:1 11986:1 11991:1 11994:1 12009:1 12029:1 12045:1 12056:1 12065:3 12066:2 12077:1 12095:2 12098:2 12130:1 12155:2 12157:1 12170:1 12181:1 12182:1 12189:1 12193:4 12194:1 12200:1 12202:4 12210:1 12218:1 12228:2 12253:2 12266:3 12270:1 12275:1 12293:1 12314:1 12325:4 12335:1 12337:1 12373:1 12375:1 12385:3 12406:1 12423:1 12470:1 12471:1 12539:1 12594:1 12609:1 12625:1 12628:1 12629:1 12632:1 12654:2 12655:2 12656:11 12660:4 12698:1 12705:1 12716:2 12766:1 12815:1 12824:5 12825:2 12841:1 12846:1 12902:1 12906:1 12936:1 12947:1 12953:1 12961:1 13019:1 13035:1 13054:1 13057:1 13092:1 13095:1 13107:1 13117:1 13166:1 13207:1 13227:6 13240:1 13243:1 13248:1 13276:2 13277:2 13307:1 13342:1 13371:1 13376:2 13404:1 13440:1 13441:1 13443:2 13486:1 13488:1 13522:1 13580:1 13614:1 13623:1 13624:2 13656:1 13684:1 13700:2 13711:1 13714:1 13720:1 13735:1 13739:1 13740:1 13768:1 13775:1 13776:1 13780:1 13816:1 13821:1 13833:1 13835:1 13838:3 13842:1 13843:1 13851:1 13858:2 13873:1 13878:1 13883:1 13915:3 13926:1 13930:1 13944:1 13958:1 13981:2 13993:2 13994:1 14011:1 14028:1 14037:1 14050:1 14063:3 14078:1 14086:3 14113:1 14129:1 14145:1 14157:1 14177:1 14189:2 14228:1 14234:1 14237:1 14238:2 14239:1 14241:1 14275:1 14296:1 14311:1 14315:1 14334:1 14366:4 14377:1 14422:1 14445:1 14446:1 14450:1 14471:1 14472:1 14477:3 14503:1 14522:1 14529:1 14533:1 14546:1 14552:2 14553:4 14563:1 14584:1 14592:3 14610:1 14642:2 14644:1 14649:1 14650:1 14654:1 14780:1 14785:2 14806:1 14845:1 14862:1 14887:1 14922:1 14958:1 14986:1 14987:1 14997:1 15008:3 15010:1 15011:1 15019:1 15032:1 15060:1 15068:1 15072:1 15096:1 15120:1 15141:1 15174:1 15190:1 15196:1 15216:1 15233:1 15252:1 15276:1 15319:1 15364:1 15476:1 15487:1 15507:2 15538:2 15547:2 15548:1 15552:1 15554:1 15597:1 15605:1 15643:2 15672:1 15695:1 15702:1 15725:1 15734:1 15772:1 15781:1 15788:1 15868:1 15875:2 15876:1 15881:1 15907:1 15908:1 15911:1 15951:1 15955:1 15961:1 16021:3 16032:2 16054:1 16096:1 16111:1 16140:1 16148:2 16167:3 16172:2 16174:1 16207:1 16221:1 16222:2 16255:1 16270:1 16303:2 16309:1 16317:4 16325:1 16336:1 16353:1 16356:1 16357:3 16358:1 16363:1 16367:1 16368:1 16369:1 16379:2 16386:4 16467:1 16484:1 16495:1 16498:1 16501:2 16507:3 16564:1 16623:1 16646:3 16659:2 16660:1 16673:1 16674:1 16677:1 16678:1 16706:11 16734:1 16739:1 16743:1 16761:2 16775:28 16794:3 16831:1 16861:1 16864:1 16867:1 16913:1 16919:1 16920:1 16921:1 16927:2 16957:1 16961:1 16965:1 16980:1 16981:1 17010:1 17047:1 17055:3 17090:2 17116:1 17135:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:1 17253:1 17295:1 17317:1 17336:1 17342:1 17372:2 17415:1 17422:1 17424:2 17435:1 17438:1 17454:1 17460:7 17500:1 17514:1 17553:1 17559:1 17564:1 17582:1 17583:1 17585:3 17587:1 17589:1 17593:1 17596:1 17613:1 17635:1 17645:1 17646:1 17718:1 17788:1 17797:2 17816:1 17821:1 17843:1 17849:1 17859:1 17871:1 17875:1 17877:2 17889:1 17897:1 17906:3 17912:1 17952:1 17957:1 17972:1 17998:1 18006:1 18034:3 18110:1 18112:1 18129:3 18136:1 18144:1 18147:2 18153:1 18154:1 18171:1 18174:1 18188:1 18197:1 18223:1 18248:1 18249:1 18277:1 18330:2 18338:1 18342:1 18355:1 18417:2 18421:1 18442:6 18478:1 18506:1 18524:1 18544:1 18546:1 18559:1 18565:1 18584:1 18589:1 18602:1 18625:1 18629:2 18633:3 18636:1 18707:1 18748:2 18749:1 18781:1 18797:1 18815:1 18816:1 18819:2 18831:2 18838:1 18855:1 18872:1 18873:2 18922:1 18932:1 18956:2 18977:1 18980:1 18984:1 18987:3 19006:1 19007:1 19016:1 19079:1 19098:1 19113:1 19114:5 19170:1 19191:1 19193:1 19210:1 19225:1 19241:1 19244:3 19265:2 19272:1 19276:2 19315:1 19323:1711 19342:1 19343:1 19348:1 19395:1 19413:3 19452:2 19473:2 19482:1 19507:1 19509:1 19530:3 19539:3 19541:1 19543:1 19584:1 19636:3 19638:1 19664:1 19696:2 19708:1 19721:1 19733:1 19743:1 19751:1 19756:1 19804:1 19817:1 19820:1 19831:4 19856:1 19918:1 19933:1 20004:1 20032:1 20048:1 20050:1 20057:1 20074:1 20086:2 20090:1 20091:3 20095:1 20107:1 20121:6 20146:1 20147:7 20177:1 20178:1 20212:1 20216:1 20243:1 20248:1 20250:1 20252:1 20262:1 20277:1 20287:1 20313:1 20319:1 20339:1 20349:1 20363:1 20387:1 20392:1 20451:1 20477:1 20492:1 20502:1 20523:1 20524:7 20565:1 20573:1 20605:1 20613:1 20623:3 20648:1 20669:1 20691:1 20714:1 20720:1 20722:1 20724:1 20725:1 20731:1 20779:4 20782:1 20787:1 20789:1 20811:2 20839:1 20853:1 20877:1 20894:1 20897:1 20907:1 20908:2 20923:5 20972:1 20996:7 21014:2 21017:1 21030:1 21033:1 21050:8 21066:1 21088:1 21103:1 21131:1 21175:1 21196:2 21225:1 21258:1 21301:2 21316:1 21328:1 21331:1 21339:1 21343:1 21389:1 21392:1 21474:1 21495:1 21532:1 21554:1 21596:3 21643:8 21660:3 21663:1 21664:1 21684:3 21690:1 21708:1 21755:1 21769:2 21773:1 21789:1 21797:1 21798:1 21822:4 21829:1 21830:2 21874:1 21896:1 21911:1 21915:1 21932:1 21936:1 21980:1 21987:1 21992:1 22041:1 22048:1 22050:1 22106:1 22154:4 22157:2 22159:1 22170:1 22183:1 22228:1 22236:2 22241:2 22251:1 22268:1 22281:1 22285:1 22286:1 22298:1 22300:2 22305:1 22309:1 22332:1 22349:1 22384:2 22396:1 22405:1 22406:1 22425:1 22427:6 22430:1 22447:1 22501:1 22515:1 22534:1 22540:1 22549:2 22563:1 22603:1 22607:4 22614:2 22618:2 22621:1 22693:1 22702:1 22705:5 22712:1 22720:1 22734:1 22736:1 22740:1 22746:1 22748:2 22756:1 22769:1 22795:1 22833:3 22834:1 22856:1 22866:1 22874:2 22877:1 22895:1 22901:1 22909:1 22926:1 22937:1 22985:11 22987:1 22990:1 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:2 23096:1 23102:1 23112:2 23125:2 23133:1 23136:4 23153:2 23160:3 23199:1 23212:1 23215:1 23221:1 23225:1 23244:1 23246:2 23256:1 23271:1 23284:2 23302:3 23317:1 23325:1 23336:1 23454:3 23462:1 23496:3 23517:1 23554:1 23570:1 23575:1 23579:9 23583:2 23600:1 23611:1 23629:1 23632:1 23639:1 23648:1 23662:1 23666:2 23695:1 23699:1 23717:5 23721:1 23750:1 23765:2 23767:1 23788:2 23807:1 23819:1 23859:1 23878:1 23879:1 23891:1 23955:1 23968:1 23971:3 23978:1 24002:1 24003:1 24015:1 24049:1 24087:1 24090:2 24103:1 24108:1 24113:1 24119:2 24124:2 24128:1 24168:1 24177:1 24183:1 24187:1 24188:1 24207:3 24232:1 24235:1 24241:2 24247:1 24273:1 24280:1 24281:1 24293:1 24329:2 24340:10 24408:1 24441:1 24444:1 24449:1 24504:1 24509:1 24534:1 24571:1 24591:1 24653:1 24656:2 24668:1 24702:2 24717:1 24761:1 24777:1 24797:1 24814:3 24827:2 24838:1 24844:1 24845:1 24921:1 24932:1 24970:1 24976:1 25004:1 25005:2 25014:1 25023:1 25027:1 25073:2 25122:1 25158:1 25181:1 25194:5 25252:1 25264:1 25275:1 25285:2 25287:1 25288:1 25311:1 25319:1 25325:1 25327:2 25339:1 25347:1 25384:1 25385:1 25398:1 25415:1 25419:1 25431:1 25468:1 25471:1 25472:1 25495:3 25503:1 25507:1 25510:1 25526:1 25561:1 25570:1 25587:1 25597:1 25598:1 25623:1 25627:1 25634:1 25643:1 25673:1 25684:1 25688:1 25718:1 25722:1 25778:2 25797:1 25823:1 25832:1 25852:1 25860:1 25872:1 25878:1 25884:1 25893:3 25918:2 25966:1 25980:1 25998:1 26004:1 26058:1 26073:1 26076:1 26097:1 26124:1 26150:2 26156:3 26159:1 26172:1 26207:1 26232:1 26257:1 26318:1 26322:3 26324:3 26331:1 26356:1 26371:1 26372:1 26377:2 26403:1 26413:1 26415:2 26429:2 26435:4 26436:1 26445:1 26460:1 26463:1 26472:1 26489:2 26513:3 26518:1 26524:1 26538:2 26564:1 26589:1 26627:3 26652:1 26653:2 26681:1 26689:1 26728:2 26782:3 26808:1 26835:1 26842:2 26844:1 26865:1 26868:1 26871:2 26893:1 26898:1 26912:1 26915:1 26934:1 26949:1 26955:1 26977:3 26981:1 26982:1 27000:1 27008:2 27010:1 27056:1 27065:1 27078:1 27099:1 27115:1 27138:5 27144:1 27178:1 27185:1 27192:2 27212:1 27252:1 27266:1 27280:1 27295:1 27308:1 27314:1 27332:1 27422:4 27424:2 27438:2 27439:1 27440:4 27441:2 27490:2 27521:1 27534:1 27540:2 27552:1 27580:2 27601:1 27621:1 27636:1 27673:1 27799:1 27809:1 27852:1 27863:1 27939:1 27949:1 27950:1 28004:1 28005:1 28095:2 28099:1 28118:1 28121:4 28154:1 28223:10 28224:1 28227:3 28230:1 28258:1 28338:1 28342:2 28343:1 28395:1 28405:1 28410:1 28413:1 28421:1 28429:1 28430:1 28432:1 28437:1 28443:1 28472:2 28482:1 28499:1 28514:1 28524:2 28581:1 28644:1 28659:1 28674:1 28675:1 28684:1 28754:3 28771:1 28798:1 28848:1 28870:1 28874:1 28878:1 28912:1 28928:1 28931:1 28962:1 28974:1 29004:1 29041:1 29111:1 29112:1 29130:3 29135:1 29155:1 29179:1 29182:2 29183:15 29184:2 29186:1 29189:1 29192:1 29203:1 29220:1 29221:7 29224:1 29234:1 29240:1 29248:1 29276:1 29277:1 29281:2 29289:1 29310:1 29325:1 29334:2 29342:1 29382:2 29429:1 29454:1 29486:1 29495:2 29537:1 29573:1 29587:2 29589:1 29591:4 29595:1 29620:1 29624:1 29636:1 29655:1 29663:1 29666:2 29741:1 29745:2 29747:1 29795:1 29809:1 29812:1 29841:1 29848:1 29891:3 29904:1 29905:1 29932:2 29936:2 29942:1 29950:1 29969:2 30011:1 30080:1 30104:1 30129:3 30160:2 30164:1 30201:1 30210:1 30216:1 30222:2 30241:1 30269:1 30285:2 30290:1 30292:1 30313:1 30325:1 30341:1 30346:3 30348:1 30354:1 30364:1 30429:1 30435:4 30441:1 30507:1 30524:1 30525:1 30527:2 30539:1 30576:1 30586:1 30593:1 30595:1 30599:1 30650:1 16 24:1 26:1 62:1 75:4 94:1 121:1 151:1 190:1 206:1 224:4 266:1 285:1 294:2 324:1 334:2 335:2 336:1 360:1 430:2 436:1 440:1 453:1 477:2 489:1 493:1 495:1 502:1 503:1 505:1 510:1 511:1 546:1 547:1 625:1 637:3 660:2 666:1 673:4 679:1 688:1 694:1 722:1 730:1 737:1 748:1 778:2 795:1 836:1 857:1 882:1 898:1 943:1 949:1 966:1 971:1 974:1 975:1 1003:1 1029:2 1032:1 1038:1 1065:2 1069:1 1108:1 1131:1 1134:1 1161:1 1170:1 1171:1 1217:3 1221:1 1224:1 1242:2 1253:1 1254:2 1267:1 1280:1 1291:3 1319:1 1325:1 1331:1 1333:1 1346:1 1347:2 1348:2 1361:1 1365:1 1395:1 1409:1 1421:1 1446:1 1476:1 1499:1 1500:3 1511:1 1566:1 1585:2 1590:1 1594:1 1601:1 1602:1 1603:1 1608:2 1609:1 1625:1 1628:1 1651:1 1657:2 1671:1 1681:1 1685:1 1690:2 1725:1 1730:1 1734:1 1739:1 1742:2 1757:1 1776:2 1780:3 1788:1 1826:1 1840:1 1855:1 1857:1 1860:1 1863:1 1873:2 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1939:1 1951:1 1954:1 1955:1 1964:1 1982:1 1986:1 1989:1 1997:1 2016:1 2021:1 2023:1 2032:1 2038:1 2039:4 2052:1 2090:1 2125:1 2132:1 2153:1 2161:2 2169:1 2170:3 2204:1 2232:1 2234:1 2237:2 2269:1 2346:1 2353:1 2406:1 2407:2 2408:3 2413:1 2415:1 2416:1 2417:1 2420:3 2422:1 2424:1 2427:1 2434:4 2436:1 2437:5 2450:1 2473:1 2518:2 2519:1 2520:1 2533:1 2550:1 2556:1 2560:1 2599:1 2623:3 2645:1 2657:1 2694:1 2705:1 2766:1 2797:2 2812:4 2819:1 2825:3 2849:1 2852:1 2854:5 2856:1 2872:1 2888:1 2896:1 2900:1 2909:1 2943:1 2952:2 2962:1 2965:4 3019:4 3056:5 3067:6 3118:17 3128:1 3151:1 3224:2 3232:1 3296:2 3391:1 3403:2 3406:4 3428:6 3454:1 3498:3 3543:1 3567:1 3590:1 3613:1 3628:1 3634:1 3643:3 3649:1 3661:1 3667:1 3711:1 3730:1 3731:1 3746:3 3764:1 3796:1 3801:1 3803:1 3810:1 3819:2 3846:1 3867:1 3886:1 3902:1 3903:2 3918:1 3929:1 3950:1 3958:1 3959:22 3981:1 3993:2 3995:6 4010:12 4011:2 4012:1 4015:3 4027:1 4042:3 4057:1 4058:2 4061:2 4063:1 4076:2 4078:1 4079:1 4122:1 4123:3 4130:1 4134:1 4173:1 4178:1 4182:1 4183:2 4196:2 4207:2 4216:1 4223:1 4258:1 4265:1 4267:1 4269:1 4285:1 4290:1 4294:1 4297:1 4301:1 4318:1 4324:1 4330:1 4368:1 4381:1 4439:1 4474:1 4498:1 4504:1 4508:1 4509:1 4547:1 4555:1 4557:1 4636:8 4650:1 4697:1 4701:1 4706:2 4718:2 4749:3 4767:1 4773:1 4787:1 4796:1 4854:1 4855:2 4900:1 4927:1 4930:2 4938:1 4948:1 4966:1 4989:2 5058:1 5059:1 5064:1 5092:2 5100:1 5189:1 5201:10 5202:1 5231:1 5288:1 5308:1 5314:1 5320:2 5321:1 5323:1 5345:1 5347:5 5348:1 5351:1 5354:1 5361:1 5362:12 5363:1 5365:1 5370:1 5401:1 5467:1 5593:2 5594:3 5603:5 5652:1 5675:1 5677:12 5703:1 5735:1 5771:1 5774:1 5816:1 5819:1 5830:1 5839:1 5848:1 5856:1 5857:1 5901:1 5911:1 5921:1 5922:1 5943:1 5951:1 5954:1 5962:1 5987:2 5993:1 6018:1 6021:2 6038:2 6044:1 6063:1 6065:1 6068:1 6079:1 6101:1 6103:1 6121:1 6140:1 6142:1 6199:2 6217:1 6219:2 6221:1 6227:1 6305:1 6371:4 6386:1 6410:1 6415:1 6444:1 6480:1 6490:1 6491:1 6499:1 6528:1 6529:1 6536:1 6539:2 6540:2 6588:1 6591:2 6618:3 6621:1 6635:1 6639:1 6654:1 6660:1 6721:1 6724:1 6726:1 6727:1 6730:1 6731:1 6734:1 6736:3 6743:1 6744:2 6745:1 6747:1 6756:1 6773:1 6836:1 6872:1 6878:1 6895:2 6901:1 6930:1 6932:1 6977:1 6994:1 7000:2 7019:1 7027:5 7032:2 7035:1 7047:1 7060:2 7080:1 7083:1 7115:1 7126:1 7192:1 7201:2 7204:1 7216:2 7222:1 7231:1 7236:2 7257:1 7308:1 7322:1 7335:2 7342:1 7407:1 7412:1 7456:1 7542:1 7573:1 7574:1 7577:5 7585:2 7601:1 7603:1 7610:1 7612:1 7625:1 7774:1 7779:1 7788:3 7830:1 7840:2 7926:1 7932:1 7997:2 7998:1 8005:1 8023:1 8031:1 8054:1 8064:1 8066:2 8084:1 8097:1 8100:1 8122:1 8128:1 8131:21 8133:1 8140:1 8151:4 8152:14 8161:1 8170:1 8208:3 8238:1 8254:1 8273:1 8279:1 8302:1 8307:1 8362:1 8365:4 8372:1 8413:1 8415:2 8433:1 8450:1 8478:1 8492:1 8523:1 8540:2 8546:1 8559:1 8597:1 8603:1 8623:1 8633:8 8651:1 8664:1 8665:1 8687:2 8718:1 8724:1 8742:1 8748:1 8753:2 8760:3 8779:1 8789:1 8793:3 8798:1 8816:2 8820:2 8840:1 8845:1 8850:1 8857:1 8858:1 8863:2 8873:1 8884:1 8887:2 8899:1 8915:1 8932:1 8938:1 8942:3 8959:1 8980:2 8983:1 8984:2 8985:1 8986:2 8987:2 8995:1 8998:2 9000:1 9004:1 9020:1 9027:1 9035:2 9039:2 9040:1 9041:1 9046:1 9058:1 9061:1 9072:1 9075:2 9112:2 9135:1 9139:3 9146:1 9149:1 9151:1 9164:1 9169:1 9204:1 9205:1 9209:1 9215:2 9225:2 9227:1 9268:1 9269:2 9273:1 9277:1 9280:3 9286:1 9301:1 9302:1 9304:3 9316:1 9339:1 9420:1 9439:1 9442:1 9450:1 9453:1 9471:1 9478:1 9480:1 9504:1 9506:1 9561:1 9589:1 9594:1 9618:2 9646:1 9651:1 9658:1 9662:1 9663:1 9677:1 9695:1 9697:1 9715:1 9732:1 9870:1 9874:1 9877:1 9882:1 9888:1 9889:2 9909:1 9928:1 9930:1 9940:1 9942:1 9972:1 9973:1 9977:1 9983:1 9994:1 10037:12 10043:1 10069:1 10078:3 10084:2 10109:1 10128:1 10130:2 10146:1 10169:9 10185:1 10211:1 10223:2 10235:1 10238:3 10240:1 10259:1 10321:3 10322:1 10356:5 10362:1 10363:2 10364:1 10371:1 10379:1 10393:1 10406:1 10410:3 10413:1 10416:1 10446:3 10450:1 10468:1 10470:2 10493:1 10549:1 10552:1 10577:7 10581:3 10596:1 10601:1 10651:3 10698:2 10707:1 10731:1 10757:1 10763:1 10780:3 10784:1 10809:1 10880:1 10892:3 10898:1 10903:1 10923:1 10935:1 10957:2 10962:2 11009:2 11028:1 11047:5 11060:2 11061:3 11063:1 11070:1 11081:1 11106:1 11120:1 11126:1 11134:3 11148:1 11156:1 11160:1 11166:4 11231:1 11234:1 11237:1 11260:1 11261:1 11262:1 11268:1 11305:1 11359:1 11371:1 11388:2 11389:1 11400:2 11417:3 11418:3 11477:1 11482:1 11499:1 11512:2 11529:1 11535:1 11556:2 11569:2 11597:1 11668:1 11684:1 11703:1 11710:1 11718:1 11740:1 11754:1 11779:2 11810:1 11819:1 11830:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11887:1 11918:1 11923:1 11926:3 11929:1 11961:1 11985:1 11986:1 11991:1 11994:1 12009:1 12029:1 12045:1 12056:1 12065:3 12066:2 12077:2 12095:2 12098:2 12130:1 12155:2 12157:1 12170:1 12181:1 12182:1 12189:1 12193:4 12194:1 12200:1 12202:4 12210:1 12218:1 12228:2 12253:2 12266:3 12270:1 12275:1 12293:1 12314:1 12325:4 12335:1 12337:1 12373:1 12375:1 12385:3 12406:1 12423:1 12440:1 12470:1 12471:1 12539:1 12594:1 12609:1 12625:1 12628:1 12629:1 12632:1 12654:2 12655:2 12656:12 12660:4 12698:1 12705:1 12716:2 12766:1 12815:1 12824:5 12825:2 12841:1 12846:1 12902:1 12906:1 12929:1 12936:1 12943:1 12947:1 12953:1 12961:1 13019:1 13035:1 13054:1 13057:1 13092:1 13095:1 13107:1 13117:1 13166:1 13207:1 13227:6 13240:1 13243:1 13248:1 13276:2 13277:3 13307:1 13342:1 13371:1 13376:2 13404:1 13440:1 13441:1 13443:2 13486:1 13488:1 13522:1 13580:1 13614:1 13623:1 13624:2 13656:1 13684:1 13700:2 13711:1 13714:1 13720:1 13735:1 13739:1 13740:1 13768:1 13775:1 13776:1 13780:2 13816:1 13821:1 13833:2 13835:1 13838:3 13842:1 13843:1 13851:1 13858:2 13873:1 13878:1 13883:2 13915:4 13916:1 13926:1 13930:1 13944:1 13958:1 13981:2 13993:2 13994:1 14011:1 14028:1 14037:1 14050:1 14063:3 14078:1 14086:3 14112:1 14113:1 14129:1 14145:1 14157:2 14177:1 14189:2 14228:1 14234:1 14237:1 14238:2 14239:1 14241:1 14275:1 14296:1 14311:1 14315:1 14334:1 14335:1 14366:5 14377:1 14422:1 14445:1 14446:1 14450:1 14471:1 14472:1 14477:3 14503:1 14522:1 14529:1 14533:1 14546:2 14552:2 14553:4 14563:1 14584:1 14592:3 14610:1 14642:2 14644:1 14649:1 14650:1 14654:1 14780:1 14785:2 14806:1 14845:1 14862:1 14887:1 14922:1 14958:1 14986:1 14987:1 14997:1 15008:3 15010:1 15011:1 15019:1 15032:1 15060:1 15068:1 15072:1 15096:1 15120:1 15141:1 15174:1 15190:1 15196:1 15216:1 15233:1 15252:1 15276:1 15319:2 15364:1 15476:1 15487:1 15507:2 15538:2 15547:2 15548:1 15552:1 15554:1 15573:1 15597:1 15605:1 15625:1 15643:2 15672:1 15695:1 15702:1 15725:1 15734:1 15772:1 15781:1 15788:1 15868:1 15875:2 15876:2 15881:1 15907:1 15908:1 15911:1 15951:1 15955:1 15961:1 16021:3 16032:2 16054:1 16096:1 16111:1 16140:1 16148:2 16167:3 16172:2 16174:1 16207:2 16221:1 16222:2 16255:1 16270:1 16303:2 16309:1 16317:4 16325:1 16336:1 16353:1 16356:1 16357:5 16358:1 16363:1 16367:1 16368:1 16369:1 16379:2 16386:4 16467:1 16484:1 16495:1 16498:1 16501:2 16507:3 16530:1 16564:1 16623:1 16646:4 16659:2 16660:1 16673:1 16674:1 16677:1 16678:1 16706:12 16734:1 16739:1 16743:1 16761:2 16775:32 16794:3 16831:1 16861:1 16864:1 16867:2 16913:1 16919:1 16920:1 16921:1 16927:2 16931:1 16957:1 16961:1 16965:1 16980:1 16981:1 17010:1 17047:1 17055:3 17090:2 17116:1 17135:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:1 17253:1 17295:1 17317:1 17336:1 17342:1 17372:2 17414:1 17415:1 17422:1 17424:2 17435:1 17438:1 17454:1 17460:7 17500:1 17514:2 17553:1 17559:1 17564:1 17582:1 17583:1 17585:3 17587:1 17589:2 17593:1 17596:1 17613:1 17625:1 17635:1 17645:1 17646:2 17718:1 17788:1 17797:2 17816:1 17821:1 17843:1 17849:1 17859:1 17871:1 17875:1 17877:2 17889:1 17897:1 17906:3 17912:1 17952:1 17957:1 17972:1 17998:1 18006:1 18034:3 18099:1 18110:1 18112:1 18129:3 18136:1 18144:1 18147:2 18153:1 18154:1 18171:1 18174:1 18188:1 18197:2 18223:1 18248:1 18249:1 18277:1 18330:2 18338:1 18342:1 18355:1 18417:2 18421:1 18423:1 18442:8 18478:1 18506:1 18524:1 18544:1 18546:1 18559:1 18565:1 18584:1 18589:1 18602:1 18625:1 18629:2 18633:3 18636:1 18707:1 18748:2 18749:1 18781:1 18797:1 18815:1 18816:1 18819:2 18831:2 18838:1 18855:1 18872:1 18873:2 18922:1 18932:1 18956:3 18977:1 18980:1 18984:1 18987:3 19006:1 19007:1 19016:1 19079:1 19098:1 19113:1 19114:5 19170:1 19191:1 19193:1 19210:1 19225:1 19241:1 19244:3 19250:2 19265:2 19272:1 19276:2 19315:1 19323:1770 19342:1 19343:1 19348:1 19395:1 19413:3 19452:3 19473:2 19482:1 19507:1 19509:1 19530:3 19539:3 19541:1 19543:1 19584:1 19636:3 19638:1 19664:1 19696:2 19708:1 19721:1 19733:1 19743:1 19751:1 19756:1 19758:1 19804:1 19817:1 19820:1 19831:4 19856:1 19918:1 19919:1 19933:2 20004:1 20032:1 20048:1 20050:1 20057:1 20074:2 20086:2 20090:1 20091:3 20095:1 20107:1 20121:6 20146:1 20147:9 20177:1 20178:1 20212:1 20216:1 20243:1 20248:1 20250:1 20252:1 20262:1 20277:2 20283:1 20287:1 20313:1 20319:1 20339:1 20349:2 20363:1 20387:1 20392:1 20451:1 20458:1 20477:1 20492:1 20502:1 20523:1 20524:7 20565:1 20573:1 20605:1 20613:1 20623:5 20648:1 20669:1 20691:1 20714:1 20720:1 20722:1 20724:1 20725:1 20731:1 20779:4 20782:1 20787:1 20789:1 20811:2 20839:1 20853:1 20877:1 20894:1 20897:1 20907:1 20908:2 20923:5 20972:1 20996:7 21014:2 21017:1 21030:1 21033:1 21050:9 21066:1 21088:1 21103:1 21131:1 21175:1 21196:2 21225:1 21258:1 21301:2 21316:1 21328:1 21331:1 21339:1 21343:1 21389:1 21392:1 21474:1 21495:1 21532:1 21554:1 21596:3 21625:1 21634:1 21643:8 21660:3 21663:1 21664:1 21684:4 21690:1 21708:1 21755:1 21769:2 21773:1 21789:2 21797:1 21798:1 21822:5 21829:1 21830:2 21874:1 21896:1 21911:1 21915:1 21932:1 21936:1 21943:1 21980:1 21987:1 21992:1 22041:1 22048:1 22050:1 22106:1 22154:4 22157:2 22159:1 22170:1 22183:1 22228:1 22236:2 22241:2 22251:1 22268:1 22281:1 22285:1 22286:1 22298:1 22300:2 22305:2 22309:1 22332:1 22349:1 22384:2 22396:1 22405:1 22406:1 22425:1 22427:8 22430:1 22447:1 22501:2 22515:1 22534:1 22540:1 22549:2 22563:1 22603:1 22607:4 22614:2 22618:2 22621:1 22693:2 22702:1 22705:7 22712:1 22720:1 22734:1 22736:1 22740:1 22746:1 22748:2 22756:1 22769:1 22795:1 22833:3 22834:1 22856:1 22866:1 22874:2 22877:1 22895:1 22901:1 22909:1 22926:1 22937:1 22985:12 22987:1 22990:1 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:2 23096:2 23102:1 23112:2 23125:2 23133:1 23136:4 23153:2 23160:3 23199:1 23212:1 23215:1 23221:1 23225:1 23244:1 23246:2 23256:1 23271:1 23284:2 23302:3 23317:1 23325:1 23336:1 23360:1 23376:1 23454:3 23462:1 23496:3 23517:1 23554:1 23570:1 23575:1 23579:9 23583:2 23600:1 23611:1 23629:1 23632:1 23639:1 23648:1 23662:1 23666:2 23695:1 23699:1 23717:5 23721:1 23750:1 23765:2 23767:1 23788:2 23807:1 23819:1 23859:1 23878:1 23879:1 23891:1 23955:1 23968:1 23971:3 23978:1 24002:1 24003:1 24015:1 24049:1 24087:1 24090:2 24103:1 24108:1 24113:1 24119:2 24124:2 24128:1 24168:1 24177:1 24183:1 24187:1 24188:1 24207:4 24232:1 24235:1 24241:2 24247:1 24273:1 24280:1 24281:1 24293:1 24329:2 24340:12 24408:1 24441:1 24444:1 24449:1 24478:1 24504:1 24509:1 24534:1 24571:1 24591:1 24653:1 24656:2 24668:1 24702:2 24717:1 24761:1 24777:1 24797:1 24814:3 24827:2 24838:1 24844:2 24845:1 24921:1 24932:1 24970:1 24976:1 25004:1 25005:2 25014:1 25023:1 25027:1 25049:1 25073:2 25122:1 25158:1 25181:1 25194:5 25252:1 25264:1 25275:1 25285:2 25287:3 25288:1 25311:1 25319:1 25325:1 25327:2 25339:1 25347:1 25384:1 25385:1 25398:1 25415:1 25419:1 25431:1 25468:1 25471:1 25472:1 25495:3 25503:1 25507:1 25510:1 25526:1 25561:1 25570:1 25587:1 25597:1 25598:1 25623:1 25627:1 25634:1 25643:1 25673:1 25676:1 25684:1 25688:1 25718:1 25722:1 25778:2 25797:2 25823:1 25832:1 25852:1 25860:1 25872:1 25878:1 25884:1 25893:3 25918:2 25966:1 25980:2 25998:1 26004:1 26058:1 26073:1 26076:1 26097:3 26124:1 26150:2 26156:3 26159:1 26172:1 26207:1 26232:1 26257:1 26318:1 26322:4 26324:3 26331:1 26356:1 26371:1 26372:1 26377:2 26403:1 26413:1 26415:2 26429:3 26435:4 26436:1 26445:1 26460:1 26463:1 26472:1 26489:2 26513:4 26518:1 26524:1 26538:2 26564:1 26589:1 26627:4 26652:2 26653:2 26681:1 26689:1 26712:1 26728:2 26782:3 26808:1 26835:1 26842:2 26844:1 26865:1 26868:1 26871:2 26893:1 26898:1 26912:1 26915:1 26934:1 26935:1 26949:2 26955:1 26977:4 26981:1 26982:1 27000:1 27008:2 27010:1 27056:1 27065:1 27078:1 27099:1 27115:1 27138:5 27144:1 27178:1 27185:1 27192:2 27212:1 27252:1 27266:1 27280:1 27295:1 27308:1 27314:1 27332:1 27422:4 27424:2 27438:2 27439:1 27440:4 27441:2 27490:2 27521:1 27534:1 27540:2 27552:1 27580:2 27601:1 27621:1 27636:1 27673:1 27799:1 27809:1 27852:1 27863:1 27910:1 27939:1 27949:1 27950:1 28004:1 28005:2 28095:2 28099:1 28118:1 28121:6 28154:1 28223:12 28224:1 28227:3 28230:1 28258:1 28338:1 28342:2 28343:1 28395:1 28405:1 28410:1 28413:1 28421:1 28429:1 28430:1 28432:1 28437:1 28443:1 28472:2 28482:1 28499:1 28514:1 28524:2 28581:1 28593:1 28644:1 28659:1 28674:1 28675:1 28684:1 28754:3 28771:1 28795:1 28798:1 28848:1 28870:1 28874:1 28878:1 28912:1 28928:1 28931:1 28962:1 28974:1 29004:1 29041:1 29111:1 29112:1 29130:3 29135:1 29155:1 29179:1 29182:2 29183:15 29184:2 29186:1 29189:1 29192:1 29203:1 29220:1 29221:7 29224:1 29234:1 29239:1 29240:1 29248:1 29276:1 29277:1 29281:2 29289:1 29310:1 29325:1 29334:2 29342:1 29382:2 29429:1 29454:1 29486:1 29495:2 29537:1 29573:1 29587:2 29589:1 29591:4 29595:1 29620:1 29624:1 29636:1 29655:1 29663:1 29666:2 29741:1 29745:2 29747:1 29795:1 29809:1 29812:1 29841:1 29848:1 29891:3 29904:1 29905:1 29932:2 29936:2 29942:1 29950:2 29969:2 30011:1 30080:1 30104:1 30129:3 30160:2 30164:1 30201:1 30210:1 30216:1 30222:3 30241:1 30269:1 30285:2 30290:1 30292:1 30313:1 30325:1 30341:1 30346:3 30348:1 30354:1 30364:2 30429:1 30435:4 30441:1 30507:1 30524:1 30525:1 30527:2 30539:1 30576:1 30586:1 30593:1 30595:1 30599:1 30650:1 16 24:1 26:1 62:1 69:1 75:4 91:1 94:1 121:1 151:1 190:1 206:1 224:4 266:1 285:1 294:2 324:1 334:2 335:2 336:1 360:1 430:3 436:1 440:1 453:1 477:2 489:1 493:1 495:1 502:1 503:1 505:1 510:1 511:1 546:1 547:1 625:1 637:3 660:2 666:1 673:4 679:1 688:1 694:1 705:1 722:1 730:1 737:1 748:1 778:2 795:1 836:1 857:1 878:1 882:1 898:1 943:1 949:1 966:1 971:2 974:1 975:1 1003:1 1029:2 1032:1 1038:1 1065:2 1069:1 1108:1 1131:1 1134:1 1155:1 1161:1 1170:1 1171:1 1217:3 1221:1 1224:1 1233:1 1242:2 1253:1 1254:3 1267:1 1280:1 1291:3 1319:1 1324:1 1325:1 1331:1 1333:1 1346:1 1347:2 1348:2 1361:1 1365:1 1377:1 1395:1 1409:1 1421:1 1446:1 1476:1 1499:1 1500:3 1511:1 1519:1 1566:1 1585:2 1590:1 1594:1 1601:1 1602:1 1603:1 1608:2 1609:1 1625:1 1628:1 1651:1 1657:2 1671:1 1681:1 1685:1 1690:2 1725:1 1730:1 1734:1 1739:1 1742:2 1757:1 1776:2 1780:3 1788:1 1802:1 1826:1 1840:1 1855:2 1857:1 1860:1 1863:1 1873:2 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1939:1 1951:1 1954:1 1955:1 1964:1 1970:1 1982:1 1986:1 1989:1 1997:1 2016:1 2021:1 2023:1 2032:1 2038:1 2039:4 2052:1 2090:1 2125:1 2132:1 2153:1 2161:2 2169:1 2170:3 2204:1 2232:1 2234:1 2237:2 2269:2 2346:1 2353:1 2406:1 2407:2 2408:3 2413:1 2415:2 2416:1 2417:1 2420:3 2422:1 2424:1 2427:1 2434:4 2436:2 2437:5 2450:1 2473:1 2486:1 2518:2 2519:1 2520:1 2533:1 2550:1 2556:1 2560:1 2575:1 2599:1 2623:3 2641:1 2645:1 2657:2 2694:1 2705:1 2766:1 2797:2 2812:4 2819:1 2825:3 2842:1 2849:1 2852:1 2854:5 2856:1 2872:1 2888:1 2896:1 2900:1 2909:3 2943:1 2952:2 2962:1 2965:4 3019:4 3056:6 3067:6 3090:1 3118:17 3127:1 3128:1 3151:1 3189:1 3224:2 3232:1 3296:2 3391:1 3403:2 3406:4 3428:6 3442:1 3454:1 3485:1 3498:4 3543:1 3565:1 3567:1 3590:1 3613:1 3628:1 3634:1 3643:3 3649:1 3661:1 3667:1 3711:1 3730:1 3731:1 3746:3 3764:1 3796:1 3801:1 3803:1 3804:1 3810:1 3819:2 3846:1 3867:1 3886:1 3902:1 3903:2 3918:1 3929:1 3950:1 3958:1 3959:24 3981:1 3993:2 3994:1 3995:6 4010:12 4011:2 4012:1 4015:3 4027:2 4042:3 4057:1 4058:2 4061:2 4063:2 4076:2 4078:1 4079:1 4122:1 4123:3 4130:1 4134:1 4173:1 4178:1 4182:1 4183:2 4196:2 4207:2 4216:1 4223:1 4258:1 4265:1 4266:1 4267:1 4269:1 4285:1 4290:1 4294:1 4297:1 4301:1 4318:1 4324:1 4330:1 4368:1 4369:1 4381:1 4439:1 4474:1 4498:1 4504:1 4508:1 4509:1 4547:1 4555:1 4557:1 4636:8 4650:1 4697:1 4701:1 4706:2 4718:2 4749:3 4767:1 4773:1 4787:1 4796:1 4854:1 4855:2 4900:1 4921:1 4927:1 4930:2 4938:1 4948:1 4959:1 4966:1 4989:2 5058:1 5059:1 5064:1 5092:2 5100:1 5189:1 5201:10 5202:1 5231:1 5241:1 5288:1 5308:1 5314:1 5320:2 5321:1 5323:1 5345:1 5347:5 5348:1 5351:1 5354:2 5361:1 5362:13 5363:1 5365:1 5370:1 5371:1 5401:1 5467:1 5593:2 5594:3 5603:5 5652:1 5675:2 5677:13 5703:1 5735:1 5771:1 5774:1 5810:1 5816:1 5819:1 5830:1 5836:1 5839:1 5848:1 5856:1 5857:1 5901:1 5911:1 5921:1 5922:1 5943:1 5951:1 5954:1 5962:1 5965:1 5967:1 5987:2 5993:1 6018:1 6021:2 6038:2 6044:1 6063:1 6065:1 6068:1 6079:1 6101:1 6103:1 6121:1 6140:1 6142:1 6199:2 6217:1 6219:2 6221:1 6227:1 6305:1 6371:4 6386:1 6410:1 6415:1 6444:1 6480:1 6490:1 6491:1 6499:1 6528:1 6529:1 6536:1 6539:2 6540:2 6588:1 6591:2 6596:1 6618:3 6621:1 6635:1 6639:1 6654:1 6660:1 6721:1 6724:1 6726:1 6727:1 6730:1 6731:1 6734:1 6736:3 6743:1 6744:2 6745:1 6747:1 6756:1 6773:1 6836:1 6872:1 6878:1 6895:2 6901:1 6930:1 6932:1 6977:1 6984:1 6994:1 7000:2 7019:1 7027:5 7032:2 7035:1 7047:1 7060:2 7080:1 7083:1 7115:1 7126:1 7192:1 7201:2 7204:1 7216:2 7222:1 7231:1 7236:2 7257:1 7267:1 7308:1 7322:1 7335:2 7342:1 7407:1 7412:1 7456:1 7522:1 7542:1 7573:1 7574:1 7577:5 7585:2 7601:1 7603:1 7610:1 7612:1 7625:1 7774:1 7779:1 7788:3 7830:1 7840:2 7874:1 7926:1 7932:1 7997:2 7998:1 8005:1 8023:1 8031:1 8054:1 8064:1 8065:1 8066:2 8084:1 8097:1 8100:1 8122:1 8128:1 8131:23 8133:1 8140:1 8151:5 8152:14 8161:1 8170:1 8207:1 8208:3 8238:1 8254:1 8273:1 8279:1 8302:1 8307:1 8362:3 8365:4 8372:1 8413:1 8415:2 8433:1 8450:1 8478:1 8492:1 8521:1 8523:1 8540:3 8546:1 8559:1 8597:1 8603:1 8610:1 8623:1 8633:8 8651:1 8664:1 8665:1 8687:2 8718:1 8724:1 8733:1 8742:1 8748:1 8753:2 8760:3 8779:1 8789:1 8793:3 8798:1 8816:2 8820:2 8830:1 8840:1 8842:1 8845:1 8850:1 8857:1 8858:1 8863:2 8873:1 8884:1 8887:2 8899:1 8915:2 8932:1 8938:1 8942:3 8959:1 8980:2 8983:1 8984:2 8985:1 8986:2 8987:2 8995:1 8998:2 9000:1 9004:1 9020:1 9027:1 9035:2 9039:2 9040:1 9041:1 9046:1 9058:1 9061:1 9072:1 9075:2 9112:2 9135:1 9139:3 9146:1 9149:1 9151:1 9164:1 9169:1 9204:1 9205:1 9209:1 9215:2 9225:2 9227:1 9268:1 9269:2 9273:1 9277:1 9280:3 9286:1 9301:1 9302:1 9304:3 9316:1 9339:1 9420:2 9439:1 9442:1 9450:1 9453:1 9471:1 9478:1 9480:1 9504:1 9506:1 9561:2 9589:1 9594:1 9618:3 9646:1 9651:1 9658:1 9662:1 9663:1 9677:1 9695:2 9697:1 9715:1 9732:1 9781:1 9870:1 9874:1 9877:1 9882:1 9888:1 9889:2 9909:1 9928:1 9930:1 9940:1 9942:1 9972:1 9973:1 9977:1 9983:1 9994:1 10037:13 10043:1 10069:1 10078:3 10084:2 10109:1 10128:1 10130:2 10146:1 10169:10 10185:1 10211:1 10223:2 10235:1 10238:3 10240:1 10259:1 10321:3 10322:1 10356:5 10362:1 10363:2 10364:1 10371:1 10379:1 10393:1 10406:1 10410:3 10413:1 10415:1 10416:1 10446:3 10450:1 10468:1 10470:2 10493:1 10549:1 10552:1 10577:7 10580:1 10581:4 10596:1 10601:1 10651:3 10698:2 10707:1 10731:1 10757:1 10763:1 10780:3 10784:1 10809:1 10880:2 10892:3 10898:1 10903:1 10907:1 10917:1 10923:1 10935:1 10957:2 10962:2 11009:2 11028:1 11047:5 11060:2 11061:3 11063:1 11070:1 11081:1 11087:1 11106:1 11120:1 11126:1 11134:3 11148:1 11156:1 11160:1 11166:4 11231:1 11234:1 11237:1 11260:1 11261:1 11262:1 11268:1 11305:1 11359:1 11371:1 11388:2 11389:1 11400:3 11417:3 11418:4 11477:2 11482:1 11499:1 11512:2 11529:1 11535:1 11556:2 11569:2 11597:1 11622:1 11668:1 11680:1 11684:1 11703:1 11710:1 11718:1 11740:1 11753:1 11754:1 11779:2 11810:1 11819:1 11830:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11885:1 11887:1 11918:1 11923:1 11926:4 11929:1 11961:1 11985:1 11986:1 11991:1 11994:1 12009:1 12029:1 12045:1 12056:1 12065:3 12066:2 12077:2 12095:3 12098:2 12130:1 12155:2 12157:1 12170:1 12181:1 12182:1 12189:1 12193:4 12194:1 12200:1 12202:4 12210:1 12218:1 12228:2 12253:2 12266:3 12270:1 12275:1 12293:1 12314:1 12325:4 12335:1 12337:1 12373:1 12375:1 12385:3 12406:1 12423:1 12440:1 12470:1 12471:1 12539:1 12594:1 12609:1 12625:1 12628:1 12629:1 12632:1 12654:2 12655:2 12656:13 12660:4 12679:1 12698:1 12705:1 12716:2 12766:1 12788:1 12815:1 12824:5 12825:2 12841:1 12846:1 12902:1 12906:1 12929:1 12936:1 12943:1 12947:1 12953:1 12961:1 13019:1 13035:1 13054:1 13057:1 13092:1 13095:2 13107:1 13110:1 13117:1 13166:1 13207:1 13227:6 13240:1 13243:1 13248:1 13276:2 13277:3 13307:1 13342:1 13371:1 13376:2 13404:1 13440:1 13441:1 13443:2 13472:1 13486:1 13488:1 13522:1 13580:1 13614:1 13623:1 13624:2 13656:1 13684:1 13700:2 13711:1 13714:1 13720:1 13735:1 13739:1 13740:1 13768:1 13775:1 13776:1 13780:2 13816:1 13821:1 13832:1 13833:2 13835:1 13838:3 13842:1 13843:1 13851:1 13858:2 13873:1 13875:1 13878:1 13883:2 13915:5 13916:1 13926:1 13930:1 13944:1 13958:1 13981:2 13993:2 13994:1 14011:1 14028:1 14037:1 14050:1 14063:3 14078:1 14086:3 14112:1 14113:1 14129:1 14145:1 14157:2 14177:1 14189:2 14228:1 14234:1 14237:1 14238:2 14239:1 14241:1 14275:1 14296:1 14311:1 14315:1 14334:1 14335:1 14366:5 14377:1 14422:1 14445:1 14446:1 14450:1 14471:2 14472:1 14477:3 14503:1 14522:1 14529:1 14533:1 14544:1 14546:2 14552:2 14553:4 14563:1 14584:1 14592:3 14610:1 14642:2 14644:1 14649:1 14650:1 14654:1 14704:1 14780:1 14785:2 14806:1 14833:1 14845:1 14862:1 14887:1 14922:1 14935:1 14958:1 14986:1 14987:1 14997:1 15008:3 15010:1 15011:1 15019:1 15032:2 15060:1 15068:1 15072:1 15096:1 15120:1 15127:1 15141:1 15174:1 15190:1 15196:1 15216:1 15233:1 15252:1 15276:1 15319:2 15364:1 15476:1 15487:1 15507:2 15538:2 15547:2 15548:1 15552:1 15554:1 15556:1 15573:1 15597:1 15605:1 15625:1 15643:2 15672:1 15695:1 15697:1 15702:1 15725:1 15734:1 15771:1 15772:1 15781:1 15788:1 15868:1 15875:2 15876:2 15881:1 15907:1 15908:1 15911:1 15951:1 15955:1 15961:1 15984:1 16018:1 16021:3 16032:2 16054:1 16096:1 16111:1 16121:1 16140:1 16148:2 16167:3 16172:2 16174:1 16207:2 16221:1 16222:2 16255:1 16270:1 16277:1 16303:2 16309:1 16317:4 16325:1 16336:1 16352:1 16353:1 16356:1 16357:5 16358:1 16363:1 16367:1 16368:1 16369:1 16379:2 16386:4 16467:1 16484:1 16495:1 16498:1 16501:2 16507:3 16530:1 16564:1 16593:1 16623:1 16646:5 16659:2 16660:1 16673:1 16674:1 16677:1 16678:1 16706:13 16734:1 16739:1 16743:1 16761:2 16775:35 16794:3 16831:1 16861:1 16864:1 16867:2 16913:1 16919:1 16920:1 16921:1 16927:2 16931:1 16957:1 16961:1 16965:1 16980:1 16981:1 17010:1 17013:1 17047:1 17055:3 17090:2 17116:1 17135:1 17192:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:1 17253:1 17295:1 17317:1 17336:1 17342:1 17372:2 17414:1 17415:1 17422:1 17424:2 17435:1 17438:1 17454:1 17460:7 17500:1 17514:2 17553:1 17559:1 17564:1 17582:1 17583:1 17585:3 17587:1 17589:2 17593:1 17596:1 17613:1 17625:1 17635:1 17645:2 17646:2 17718:1 17788:1 17797:2 17816:1 17821:1 17843:1 17849:1 17859:1 17871:1 17875:1 17877:2 17889:1 17897:1 17906:3 17912:1 17952:1 17957:1 17972:1 17998:1 18006:1 18034:3 18099:1 18110:1 18112:1 18129:3 18136:1 18144:1 18147:2 18153:1 18154:1 18171:1 18174:1 18188:1 18197:2 18223:1 18248:1 18249:1 18277:1 18330:2 18338:1 18342:1 18355:1 18417:2 18421:1 18423:1 18442:8 18460:1 18478:1 18506:1 18524:1 18544:1 18546:1 18559:1 18565:1 18584:1 18589:1 18602:1 18625:1 18629:2 18633:3 18636:1 18707:1 18748:2 18749:1 18781:1 18797:1 18815:1 18816:1 18819:2 18831:2 18838:1 18855:1 18872:1 18873:2 18922:1 18932:1 18956:3 18966:1 18977:1 18980:1 18984:1 18987:3 19006:1 19007:1 19016:1 19018:1 19079:1 19098:1 19113:1 19114:5 19170:1 19191:1 19193:1 19210:1 19217:1 19225:1 19241:1 19244:3 19250:2 19265:2 19272:1 19276:2 19315:1 19323:1907 19342:1 19343:1 19348:1 19395:1 19413:3 19452:3 19473:2 19482:1 19507:1 19509:1 19530:3 19539:3 19541:1 19543:1 19584:1 19586:1 19636:3 19638:1 19664:1 19696:2 19708:1 19721:1 19733:1 19743:1 19751:1 19756:1 19758:1 19804:1 19817:1 19820:1 19831:4 19856:1 19857:1 19918:1 19919:1 19933:2 20004:1 20032:1 20048:1 20050:1 20057:2 20074:2 20086:2 20090:1 20091:3 20095:1 20107:1 20121:6 20146:1 20147:9 20177:1 20178:1 20197:1 20212:1 20216:1 20243:1 20248:1 20250:1 20252:1 20262:1 20277:2 20283:1 20287:1 20313:1 20319:2 20339:1 20349:2 20363:1 20387:1 20392:1 20451:1 20458:1 20477:1 20492:1 20502:1 20523:1 20524:7 20565:1 20573:1 20605:1 20613:1 20623:5 20648:1 20669:1 20691:1 20714:1 20720:1 20722:1 20724:1 20725:1 20731:1 20779:4 20782:1 20787:1 20789:1 20796:1 20811:2 20814:1 20839:1 20853:1 20877:1 20894:1 20897:1 20907:1 20908:2 20923:5 20972:1 20996:7 21014:2 21017:1 21030:1 21033:1 21050:9 21066:1 21088:1 21103:1 21131:1 21175:1 21182:1 21196:2 21225:1 21258:1 21301:2 21316:1 21328:1 21331:1 21339:1 21343:1 21344:1 21389:1 21392:1 21474:1 21495:1 21532:1 21554:1 21596:3 21625:2 21634:1 21638:1 21643:8 21660:3 21663:1 21664:1 21684:4 21690:1 21708:1 21755:1 21769:2 21773:1 21789:2 21797:1 21798:1 21822:5 21829:1 21830:2 21874:1 21896:1 21911:1 21915:1 21932:1 21936:1 21943:1 21980:1 21987:1 21992:1 22041:1 22048:1 22050:1 22106:1 22151:1 22154:4 22157:2 22159:1 22170:1 22179:1 22183:1 22228:1 22236:2 22241:2 22251:1 22268:1 22281:1 22285:1 22286:1 22298:1 22300:2 22305:2 22309:1 22332:1 22349:1 22384:2 22396:1 22405:1 22406:1 22425:1 22427:8 22430:1 22447:1 22501:2 22515:1 22534:1 22540:1 22549:2 22563:1 22603:1 22607:4 22614:2 22618:2 22621:1 22671:1 22693:2 22702:1 22705:7 22712:2 22720:1 22734:1 22736:1 22740:1 22746:1 22748:2 22756:1 22769:1 22777:1 22795:1 22833:4 22834:1 22856:1 22866:1 22874:2 22877:1 22895:1 22901:1 22909:1 22926:1 22937:1 22985:13 22987:1 22990:1 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:2 23093:1 23096:2 23102:1 23112:2 23125:2 23133:1 23136:4 23153:2 23160:3 23199:1 23212:1 23215:1 23221:1 23225:1 23236:1 23244:1 23246:2 23256:1 23269:1 23271:1 23284:3 23302:3 23317:2 23325:1 23336:1 23360:1 23376:1 23445:1 23454:3 23462:1 23481:1 23496:3 23517:1 23554:1 23570:1 23575:1 23579:9 23581:1 23583:2 23600:1 23611:1 23629:1 23632:1 23639:1 23648:1 23662:1 23666:2 23695:1 23699:1 23717:5 23721:1 23750:1 23765:2 23767:1 23788:2 23807:1 23819:1 23859:1 23878:1 23879:1 23891:1 23955:1 23968:1 23971:3 23978:1 24002:1 24003:1 24015:1 24049:1 24087:1 24090:2 24103:1 24108:1 24113:1 24119:2 24124:2 24128:1 24168:1 24177:1 24183:1 24187:1 24188:1 24207:4 24232:1 24235:1 24241:2 24247:1 24273:2 24280:1 24281:1 24293:1 24329:2 24340:12 24408:1 24441:1 24444:1 24449:1 24478:1 24504:1 24509:1 24533:1 24534:1 24571:1 24591:1 24653:1 24656:2 24668:2 24702:2 24717:1 24761:1 24777:1 24797:1 24814:3 24827:2 24833:1 24838:1 24844:2 24845:1 24921:1 24932:1 24970:1 24976:1 25004:1 25005:2 25014:1 25023:1 25027:1 25049:1 25073:2 25122:1 25158:1 25181:1 25194:5 25252:1 25264:1 25273:1 25275:1 25285:2 25287:3 25288:1 25311:1 25319:1 25325:1 25327:2 25339:1 25347:1 25384:1 25385:1 25398:1 25415:1 25419:1 25431:1 25468:1 25471:1 25472:1 25495:3 25503:2 25507:1 25510:1 25526:1 25561:1 25570:1 25587:1 25597:1 25598:1 25623:1 25627:1 25634:1 25643:1 25673:1 25676:1 25684:1 25688:1 25718:1 25722:1 25778:2 25797:2 25823:1 25832:1 25852:1 25860:1 25872:1 25878:1 25884:1 25893:3 25918:2 25921:1 25966:1 25980:2 25998:1 26004:1 26058:1 26073:1 26076:1 26097:3 26124:1 26150:2 26156:3 26159:1 26167:1 26172:1 26207:1 26232:1 26257:1 26318:2 26322:4 26324:3 26331:1 26356:1 26371:1 26372:1 26377:2 26403:1 26413:1 26415:2 26429:3 26435:4 26436:1 26445:1 26460:1 26463:1 26472:1 26489:2 26513:4 26518:1 26524:1 26525:1 26538:2 26564:1 26589:2 26627:4 26652:2 26653:2 26681:1 26689:1 26712:1 26728:2 26782:3 26808:1 26835:1 26842:2 26844:1 26865:1 26868:1 26871:2 26893:1 26898:1 26912:1 26915:1 26934:1 26935:1 26949:2 26955:1 26964:1 26977:4 26981:1 26982:1 26989:1 27000:1 27008:2 27010:1 27056:1 27065:1 27078:1 27099:1 27115:1 27138:5 27144:1 27178:1 27185:1 27192:2 27212:1 27252:1 27266:1 27280:2 27295:1 27308:1 27314:1 27332:1 27407:1 27422:4 27424:2 27438:2 27439:1 27440:4 27441:2 27490:2 27521:1 27534:1 27540:2 27552:1 27580:2 27601:1 27607:1 27621:1 27636:1 27673:1 27755:1 27799:1 27809:1 27852:1 27863:1 27910:1 27939:1 27949:1 27950:1 28004:1 28005:2 28095:2 28099:1 28118:1 28121:6 28154:1 28223:12 28224:1 28227:3 28230:1 28258:1 28338:1 28342:2 28343:1 28395:1 28398:1 28405:1 28410:1 28413:1 28421:1 28429:1 28430:1 28432:1 28437:1 28443:1 28472:2 28482:1 28499:1 28514:1 28524:2 28581:1 28593:1 28644:1 28659:1 28674:1 28675:1 28684:1 28754:4 28771:1 28795:1 28798:1 28848:1 28870:1 28874:1 28878:1 28912:1 28928:1 28931:1 28962:1 28974:1 29004:1 29041:1 29111:1 29112:1 29130:3 29135:1 29155:1 29179:1 29182:2 29183:15 29184:2 29186:1 29189:2 29192:1 29203:1 29220:1 29221:8 29224:1 29234:1 29239:1 29240:1 29248:1 29276:1 29277:1 29281:2 29289:1 29310:1 29325:1 29334:2 29342:1 29377:1 29382:2 29429:1 29454:1 29486:1 29495:2 29537:1 29573:1 29581:1 29587:2 29589:1 29591:4 29595:1 29620:1 29624:1 29636:1 29655:1 29663:1 29666:2 29720:1 29741:2 29745:3 29747:1 29749:1 29795:1 29809:1 29812:1 29841:1 29848:1 29891:3 29904:1 29905:1 29932:2 29936:2 29942:1 29950:2 29969:2 30003:1 30011:1 30056:1 30080:1 30104:1 30129:3 30160:2 30164:1 30201:1 30210:1 30216:1 30222:3 30241:1 30269:1 30285:2 30290:1 30292:1 30313:1 30325:1 30341:1 30346:3 30348:1 30354:1 30364:2 30429:1 30435:4 30441:1 30507:1 30517:1 30524:1 30525:1 30527:2 30539:1 30576:1 30586:1 30593:1 30595:1 30599:1 30650:1 16 24:1 26:1 62:1 69:1 75:4 91:1 94:1 121:1 151:1 190:1 206:1 224:4 266:1 285:1 294:3 315:1 324:1 334:2 335:2 336:1 360:1 375:1 407:1 430:3 436:1 440:1 453:1 477:2 489:1 493:1 495:1 502:1 503:1 505:1 510:1 511:1 546:1 547:1 625:1 637:3 660:2 666:1 673:4 679:1 688:1 694:1 705:1 722:1 730:1 737:1 748:1 778:2 795:1 836:1 857:1 878:1 882:1 898:1 943:1 949:1 966:2 971:3 974:1 975:1 976:1 1003:1 1029:3 1032:1 1038:1 1065:2 1069:1 1108:1 1131:1 1134:1 1155:1 1161:1 1170:1 1171:1 1217:3 1221:1 1224:1 1233:1 1242:2 1253:1 1254:4 1267:1 1280:1 1291:3 1319:1 1324:1 1325:1 1331:1 1333:1 1336:1 1346:1 1347:2 1348:2 1361:1 1365:1 1377:1 1395:1 1409:1 1421:1 1446:1 1476:1 1499:1 1500:3 1511:1 1519:1 1556:1 1566:1 1579:1 1585:3 1590:1 1594:1 1601:1 1602:2 1603:1 1608:2 1609:1 1625:1 1628:1 1651:1 1657:3 1671:1 1677:1 1681:1 1685:1 1690:2 1725:1 1730:1 1734:1 1739:1 1742:2 1757:1 1776:2 1780:3 1788:1 1802:1 1826:1 1840:1 1855:2 1857:1 1860:1 1863:1 1873:2 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1939:1 1951:1 1954:1 1955:1 1964:1 1970:1 1982:1 1986:1 1989:1 1997:1 2016:1 2021:1 2023:1 2032:1 2038:1 2039:4 2052:1 2090:1 2125:1 2132:1 2153:1 2161:2 2167:1 2169:1 2170:3 2204:1 2227:1 2232:1 2234:1 2235:1 2237:2 2269:2 2346:1 2353:1 2404:1 2405:1 2406:1 2407:2 2408:3 2413:1 2415:2 2416:1 2417:1 2420:3 2421:1 2422:1 2424:1 2427:1 2434:4 2436:3 2437:5 2450:1 2473:1 2486:1 2508:1 2518:2 2519:1 2520:1 2532:1 2533:1 2550:1 2556:1 2560:1 2575:1 2599:1 2623:3 2641:1 2645:1 2657:2 2689:1 2693:1 2694:1 2705:1 2766:1 2797:2 2812:4 2819:1 2825:3 2841:1 2842:1 2849:1 2852:1 2854:5 2856:1 2872:1 2888:1 2896:1 2900:1 2909:3 2943:1 2952:2 2962:1 2963:1 2965:4 2976:1 3019:4 3056:6 3067:6 3090:2 3118:19 3127:1 3128:1 3151:1 3189:1 3224:2 3232:1 3296:2 3391:1 3403:2 3406:4 3428:6 3442:1 3454:1 3485:1 3498:4 3543:1 3565:1 3567:1 3590:1 3613:1 3628:1 3634:1 3643:3 3649:1 3661:1 3667:1 3711:1 3730:1 3731:1 3746:3 3764:1 3796:1 3801:1 3803:1 3804:1 3810:1 3812:1 3819:2 3846:1 3867:1 3886:1 3902:1 3903:3 3918:1 3929:1 3950:1 3958:1 3959:24 3981:1 3993:2 3994:1 3995:6 4010:12 4011:2 4012:1 4015:3 4027:2 4042:3 4057:1 4058:2 4061:2 4063:2 4076:2 4078:1 4079:1 4116:1 4122:1 4123:3 4130:1 4134:1 4173:1 4178:1 4182:1 4183:3 4196:2 4207:2 4216:1 4223:1 4258:1 4265:1 4266:1 4267:1 4269:1 4285:1 4290:1 4294:1 4297:1 4301:1 4318:1 4324:1 4330:1 4368:1 4369:1 4381:1 4439:1 4474:1 4486:1 4498:1 4504:1 4508:1 4509:1 4547:1 4555:1 4557:1 4563:1 4636:8 4650:1 4697:1 4701:1 4706:2 4715:1 4718:2 4749:3 4767:1 4773:1 4787:1 4796:1 4854:1 4855:2 4900:1 4921:2 4927:1 4930:2 4938:1 4948:2 4959:1 4966:1 4989:2 4993:1 5058:1 5059:1 5064:1 5076:1 5092:2 5100:1 5189:1 5201:10 5202:1 5231:1 5241:1 5288:1 5308:1 5314:1 5320:2 5321:1 5323:2 5344:1 5345:1 5347:5 5348:1 5351:1 5354:2 5361:1 5362:13 5363:1 5365:1 5370:1 5371:3 5401:1 5467:1 5491:1 5560:1 5593:3 5594:3 5603:5 5652:1 5675:2 5677:13 5684:1 5703:1 5735:1 5771:1 5774:1 5810:1 5816:1 5819:1 5830:1 5836:1 5839:1 5848:1 5856:1 5857:1 5901:1 5911:1 5921:1 5922:1 5943:1 5951:1 5954:1 5962:2 5965:1 5967:1 5987:2 5993:1 6018:1 6021:2 6038:2 6044:1 6063:1 6065:1 6068:1 6079:1 6097:1 6101:1 6103:1 6118:1 6121:1 6140:1 6142:1 6199:2 6217:1 6219:2 6221:1 6227:1 6305:1 6371:4 6386:1 6410:1 6415:1 6444:1 6480:1 6490:1 6491:1 6492:1 6499:1 6528:1 6529:1 6536:1 6539:2 6540:2 6588:1 6591:2 6596:1 6618:3 6621:1 6635:1 6639:1 6654:1 6660:1 6721:1 6724:1 6726:1 6727:1 6730:1 6731:1 6734:2 6736:3 6743:1 6744:2 6745:1 6747:1 6756:1 6773:1 6836:1 6872:1 6878:1 6895:2 6901:1 6930:1 6932:1 6970:1 6977:1 6984:1 6994:1 7000:2 7019:1 7027:5 7032:3 7035:1 7047:1 7060:2 7080:1 7083:1 7115:1 7126:1 7192:1 7201:2 7204:1 7216:3 7222:1 7231:1 7236:2 7257:1 7267:1 7308:1 7322:1 7335:2 7342:1 7407:1 7412:1 7456:1 7522:2 7542:1 7573:1 7574:1 7577:5 7585:2 7601:1 7603:1 7610:1 7612:1 7625:1 7774:1 7779:1 7788:3 7830:1 7840:3 7874:2 7926:1 7932:1 7997:2 7998:1 8005:1 8023:1 8031:1 8054:1 8064:1 8065:3 8066:2 8084:1 8097:1 8100:1 8121:1 8122:1 8128:1 8131:27 8133:1 8140:1 8151:5 8152:15 8161:1 8170:1 8207:1 8208:3 8238:1 8254:1 8273:1 8279:1 8302:1 8307:1 8362:3 8365:4 8372:1 8413:1 8415:2 8433:1 8450:1 8478:1 8492:1 8521:1 8523:1 8540:3 8546:1 8559:1 8570:1 8597:1 8603:1 8610:1 8623:1 8633:9 8651:1 8664:1 8665:1 8687:2 8718:1 8724:1 8733:2 8742:1 8748:1 8753:2 8760:3 8779:1 8789:1 8793:3 8798:1 8816:2 8820:2 8830:1 8840:1 8842:1 8845:1 8850:1 8857:1 8858:1 8863:2 8873:1 8884:1 8887:2 8895:1 8899:1 8915:2 8932:1 8938:1 8942:3 8959:1 8980:2 8983:1 8984:3 8985:1 8986:2 8987:2 8995:1 8998:2 9000:1 9004:1 9020:1 9027:1 9035:2 9039:2 9040:1 9041:1 9046:1 9058:1 9061:1 9072:1 9075:2 9112:2 9135:1 9139:3 9146:1 9149:1 9151:1 9164:1 9169:1 9204:1 9205:1 9209:1 9215:2 9225:2 9227:1 9268:1 9269:2 9273:1 9276:1 9277:1 9280:3 9286:1 9301:1 9302:1 9304:4 9316:1 9339:1 9420:2 9439:1 9442:1 9450:1 9453:1 9471:1 9478:1 9480:1 9504:1 9506:1 9561:2 9589:1 9594:1 9618:3 9640:1 9646:1 9651:1 9658:1 9662:1 9663:1 9677:1 9695:2 9697:1 9715:1 9732:1 9781:1 9809:1 9870:1 9874:1 9877:1 9882:1 9888:1 9889:2 9909:1 9928:1 9930:1 9940:1 9942:1 9972:1 9973:1 9977:1 9983:1 9994:1 10037:13 10043:1 10069:1 10078:3 10084:2 10109:1 10128:1 10130:2 10146:1 10169:11 10185:1 10211:1 10223:2 10235:1 10238:3 10240:1 10259:1 10317:1 10321:3 10322:1 10356:5 10362:1 10363:2 10364:1 10371:1 10379:1 10393:1 10406:1 10410:3 10413:1 10415:1 10416:1 10446:3 10450:1 10468:1 10470:2 10493:1 10533:1 10549:2 10552:1 10577:7 10580:1 10581:4 10596:1 10601:1 10651:3 10698:2 10707:1 10731:1 10757:1 10763:1 10780:3 10784:1 10791:1 10809:1 10830:1 10880:2 10892:3 10898:1 10903:1 10907:1 10917:1 10923:1 10935:1 10939:1 10957:2 10962:2 10973:1 10998:1 11009:2 11028:1 11031:1 11047:5 11060:2 11061:3 11063:1 11070:1 11081:1 11084:1 11087:1 11106:1 11120:1 11126:1 11134:3 11148:2 11156:1 11160:2 11166:5 11231:1 11234:1 11237:1 11260:1 11261:1 11262:1 11268:1 11305:1 11359:1 11366:1 11371:1 11388:2 11389:1 11400:3 11417:3 11418:4 11477:2 11482:1 11499:1 11512:2 11529:1 11535:1 11556:2 11569:2 11597:1 11622:1 11668:1 11678:1 11680:1 11683:1 11684:1 11703:1 11710:1 11718:1 11740:1 11745:1 11753:1 11754:1 11779:2 11810:1 11819:1 11830:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11885:1 11887:1 11918:1 11923:1 11926:4 11929:1 11961:1 11985:1 11986:1 11991:1 11994:1 12009:1 12029:1 12045:1 12056:1 12065:3 12066:2 12077:2 12095:3 12098:2 12130:1 12146:1 12155:2 12157:1 12170:1 12181:1 12182:1 12189:1 12193:4 12194:1 12200:1 12202:4 12210:1 12218:1 12228:2 12253:2 12266:3 12270:1 12275:2 12293:1 12314:1 12325:4 12335:1 12337:1 12373:1 12375:1 12385:3 12406:1 12423:1 12440:1 12470:1 12471:1 12508:1 12539:1 12594:2 12609:1 12625:1 12628:1 12629:1 12632:1 12654:3 12655:3 12656:13 12660:4 12679:1 12698:1 12705:1 12716:2 12766:1 12788:1 12815:1 12824:5 12825:2 12841:1 12846:1 12902:1 12906:1 12929:1 12936:1 12943:1 12947:1 12953:1 12961:1 13019:1 13035:1 13054:1 13057:1 13092:1 13095:2 13107:1 13110:1 13117:1 13166:1 13207:1 13227:6 13240:1 13243:1 13248:1 13276:2 13277:3 13307:1 13342:1 13371:1 13376:2 13404:1 13440:1 13441:1 13443:2 13472:1 13486:1 13488:1 13522:1 13580:1 13614:1 13623:1 13624:2 13649:1 13656:1 13684:1 13700:2 13711:1 13714:2 13720:1 13735:1 13739:1 13740:1 13768:1 13775:1 13776:1 13780:2 13816:1 13821:1 13832:1 13833:2 13835:1 13838:3 13842:2 13843:1 13851:1 13858:2 13873:1 13875:1 13878:1 13883:2 13915:5 13916:1 13923:1 13926:1 13930:1 13944:1 13958:1 13981:2 13993:2 13994:1 14011:1 14028:1 14037:1 14050:1 14063:3 14078:1 14086:3 14112:1 14113:1 14114:1 14129:1 14145:1 14157:2 14177:1 14189:2 14228:1 14234:1 14237:1 14238:2 14239:1 14241:1 14275:1 14296:1 14298:1 14310:1 14311:1 14315:1 14334:1 14335:1 14366:5 14377:1 14422:1 14445:1 14446:1 14450:1 14471:2 14472:1 14477:3 14503:1 14522:1 14529:1 14533:1 14544:2 14546:2 14552:2 14553:4 14563:1 14584:1 14592:3 14610:1 14642:2 14644:1 14649:1 14650:1 14654:1 14704:1 14780:1 14785:2 14806:1 14833:1 14845:1 14862:1 14887:1 14901:1 14922:1 14935:1 14958:1 14976:1 14986:1 14987:1 14997:1 15002:1 15008:3 15010:1 15011:1 15019:1 15032:2 15060:1 15068:1 15072:1 15096:1 15120:1 15127:1 15141:1 15174:1 15181:1 15190:1 15196:2 15216:1 15233:1 15252:1 15276:1 15319:2 15364:1 15476:1 15487:1 15507:2 15538:3 15547:2 15548:1 15552:1 15554:1 15556:1 15573:1 15597:1 15605:1 15625:1 15643:2 15655:1 15672:1 15695:1 15697:1 15702:1 15725:1 15734:1 15771:1 15772:1 15781:1 15788:1 15805:1 15868:1 15875:3 15876:2 15881:1 15907:2 15908:1 15911:1 15951:1 15955:1 15961:1 15984:1 15999:1 16018:1 16021:3 16032:2 16054:1 16073:1 16096:1 16111:1 16121:1 16140:1 16148:2 16167:4 16172:2 16174:1 16181:1 16207:2 16221:1 16222:2 16235:1 16255:1 16270:1 16277:1 16303:2 16307:1 16309:1 16317:4 16325:1 16336:1 16352:1 16353:1 16356:1 16357:5 16358:1 16363:1 16367:1 16368:1 16369:1 16379:2 16386:4 16467:1 16484:1 16495:1 16498:1 16501:2 16507:3 16530:1 16561:1 16564:2 16593:2 16623:1 16646:5 16659:2 16660:2 16673:1 16674:1 16677:1 16678:1 16706:13 16734:1 16739:2 16743:1 16761:2 16775:35 16794:3 16831:1 16861:1 16864:1 16867:2 16908:1 16913:1 16919:1 16920:1 16921:1 16927:2 16931:1 16957:1 16961:1 16965:1 16980:1 16981:1 17010:1 17013:1 17047:1 17055:5 17090:2 17116:1 17130:1 17135:1 17192:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:2 17253:1 17294:1 17295:1 17317:1 17336:1 17342:1 17347:1 17372:2 17414:1 17415:1 17422:1 17424:2 17426:1 17435:1 17438:1 17454:1 17460:8 17500:1 17514:2 17553:1 17559:1 17564:1 17582:1 17583:1 17585:3 17587:1 17589:2 17593:1 17596:1 17613:1 17625:1 17635:1 17645:2 17646:2 17718:1 17788:1 17797:2 17816:1 17821:1 17843:1 17849:1 17859:1 17871:1 17875:1 17877:3 17889:1 17897:1 17906:3 17912:1 17952:1 17957:1 17972:1 17998:1 18006:1 18034:4 18099:1 18110:1 18112:1 18129:3 18136:1 18144:1 18147:2 18153:1 18154:1 18171:1 18174:1 18188:1 18197:2 18223:1 18248:1 18249:1 18277:1 18330:2 18338:1 18342:1 18355:1 18412:1 18415:1 18417:2 18421:1 18423:1 18442:8 18460:1 18474:1 18478:1 18506:1 18524:1 18544:1 18546:1 18559:1 18565:1 18584:1 18589:1 18602:1 18625:1 18629:2 18633:3 18636:1 18707:1 18748:2 18749:1 18757:1 18781:1 18797:1 18815:1 18816:1 18819:2 18831:2 18838:1 18855:1 18872:1 18873:2 18922:1 18932:1 18956:3 18966:1 18977:1 18980:1 18984:1 18987:3 19006:1 19007:1 19016:1 19018:1 19079:1 19098:1 19113:1 19114:5 19170:1 19191:1 19193:1 19210:1 19217:1 19225:1 19241:1 19244:3 19250:2 19265:2 19272:1 19276:2 19315:1 19323:2068 19328:1 19342:2 19343:1 19348:1 19385:1 19395:1 19413:3 19452:3 19473:2 19482:1 19507:1 19509:1 19530:3 19536:1 19539:3 19541:1 19543:1 19584:1 19586:1 19636:3 19638:1 19664:1 19696:2 19708:1 19721:1 19733:1 19743:1 19751:1 19756:1 19758:1 19804:1 19817:1 19820:1 19831:4 19856:1 19857:1 19918:1 19919:1 19933:2 20004:1 20032:1 20048:1 20050:1 20057:2 20074:2 20086:2 20090:1 20091:3 20095:1 20107:1 20121:6 20146:1 20147:9 20177:1 20178:2 20181:1 20197:1 20212:1 20216:1 20236:1 20243:1 20248:1 20250:1 20252:1 20260:1 20262:1 20277:2 20283:1 20287:1 20313:1 20319:2 20339:1 20349:2 20363:1 20387:1 20392:1 20451:1 20458:1 20477:1 20492:1 20502:1 20523:1 20524:8 20565:1 20573:1 20596:1 20605:1 20613:1 20623:5 20648:1 20669:1 20688:1 20691:1 20714:1 20720:1 20722:1 20724:1 20725:1 20731:1 20779:4 20782:1 20787:1 20789:1 20796:1 20811:2 20814:1 20839:1 20849:1 20853:1 20877:1 20894:1 20897:1 20907:1 20908:2 20918:1 20923:6 20972:1 20976:1 20996:8 21014:2 21017:2 21030:1 21033:1 21050:9 21066:1 21088:1 21103:1 21131:1 21175:1 21182:1 21196:2 21214:1 21225:1 21258:1 21301:3 21316:1 21328:1 21331:1 21339:1 21343:1 21344:1 21389:1 21392:1 21468:1 21474:1 21495:1 21511:1 21529:1 21532:1 21554:1 21596:3 21625:2 21634:1 21638:1 21643:9 21660:3 21663:1 21664:1 21684:4 21690:1 21708:1 21755:1 21769:2 21773:1 21789:2 21797:1 21798:1 21822:5 21829:1 21830:2 21874:1 21896:1 21911:1 21915:1 21932:2 21936:1 21943:1 21962:1 21980:1 21987:1 21992:1 22003:1 22041:1 22048:1 22050:1 22106:1 22151:1 22154:4 22157:2 22159:2 22170:1 22179:1 22183:1 22228:1 22236:2 22241:2 22251:1 22268:1 22281:1 22285:1 22286:1 22298:1 22300:3 22305:2 22309:1 22332:1 22349:1 22384:2 22396:1 22405:1 22406:1 22425:1 22427:9 22430:1 22447:1 22461:1 22501:2 22515:1 22534:1 22540:1 22549:2 22563:1 22603:1 22607:4 22614:2 22618:2 22621:1 22671:1 22693:2 22702:1 22705:7 22712:2 22720:1 22734:1 22736:1 22740:1 22746:1 22748:2 22750:1 22756:1 22769:1 22772:2 22777:1 22795:1 22833:4 22834:1 22856:1 22866:1 22874:2 22877:1 22895:1 22901:1 22909:3 22926:1 22937:1 22985:13 22987:1 22990:1 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:2 23093:1 23096:2 23102:1 23112:2 23125:2 23133:1 23136:5 23153:2 23160:3 23199:1 23209:1 23212:1 23215:1 23221:1 23225:1 23236:1 23244:1 23246:2 23256:1 23269:2 23271:1 23284:3 23302:3 23317:2 23325:1 23336:1 23360:1 23376:1 23445:1 23454:3 23462:1 23481:1 23496:3 23517:1 23554:1 23570:1 23575:1 23579:10 23581:1 23583:2 23600:1 23611:1 23629:1 23632:1 23639:1 23648:1 23655:1 23662:1 23666:2 23695:1 23699:2 23717:5 23721:1 23750:1 23765:2 23767:1 23788:2 23807:1 23819:1 23859:1 23878:1 23879:1 23891:1 23955:1 23968:1 23971:3 23978:1 24002:1 24003:1 24015:1 24049:1 24087:1 24090:2 24103:1 24108:1 24113:1 24119:2 24124:2 24128:1 24168:1 24177:1 24183:1 24187:1 24188:1 24207:4 24232:1 24235:1 24241:2 24247:1 24273:2 24280:1 24281:1 24293:1 24329:2 24340:12 24408:1 24419:1 24441:1 24444:1 24449:1 24478:1 24504:1 24509:1 24533:1 24534:1 24538:1 24571:1 24591:1 24653:1 24656:2 24668:2 24702:2 24714:1 24717:1 24761:1 24777:1 24797:1 24814:3 24827:2 24833:1 24838:1 24844:2 24845:1 24921:1 24932:1 24939:1 24970:1 24976:1 25004:1 25005:3 25014:1 25023:1 25027:1 25049:1 25073:2 25122:1 25147:1 25158:1 25181:1 25194:5 25252:1 25264:1 25273:1 25275:1 25285:2 25287:3 25288:1 25311:1 25319:1 25325:1 25327:2 25335:1 25339:1 25347:1 25384:1 25385:2 25398:1 25415:1 25419:1 25431:1 25468:1 25471:1 25472:1 25495:4 25503:2 25507:1 25510:1 25526:1 25561:1 25570:1 25587:1 25597:1 25598:1 25623:1 25627:1 25634:1 25643:1 25673:1 25676:1 25684:1 25688:1 25718:1 25722:1 25778:2 25797:2 25823:1 25832:1 25852:1 25860:1 25872:1 25878:1 25884:1 25893:3 25918:2 25921:1 25966:1 25980:2 25998:1 26004:1 26058:1 26073:1 26076:1 26097:4 26124:1 26150:2 26156:3 26159:1 26167:1 26172:1 26207:1 26232:1 26257:1 26316:1 26318:2 26322:4 26324:3 26331:1 26356:1 26371:1 26372:1 26377:2 26403:1 26413:1 26415:2 26429:3 26435:4 26436:1 26445:1 26460:1 26463:1 26472:1 26489:2 26513:4 26518:1 26524:1 26525:1 26538:2 26564:1 26589:2 26627:4 26652:2 26653:2 26681:1 26689:1 26712:1 26728:2 26782:3 26808:1 26835:1 26842:2 26844:1 26865:1 26868:1 26871:2 26893:1 26898:1 26912:1 26915:1 26934:1 26935:1 26938:1 26949:2 26955:1 26956:1 26964:1 26977:4 26981:1 26982:1 26989:1 27000:1 27008:2 27010:1 27056:1 27065:1 27078:1 27099:1 27115:1 27138:5 27144:1 27178:1 27185:1 27192:2 27212:1 27252:1 27257:1 27266:1 27280:2 27295:1 27308:1 27314:1 27332:1 27407:2 27422:4 27424:2 27438:2 27439:1 27440:4 27441:2 27490:2 27521:1 27534:1 27540:2 27552:1 27580:2 27601:1 27607:1 27621:1 27636:1 27673:1 27718:1 27755:1 27775:1 27799:1 27809:1 27824:1 27852:1 27863:1 27910:1 27939:1 27949:1 27950:1 28004:1 28005:2 28095:2 28099:1 28113:1 28118:1 28121:6 28154:1 28223:12 28224:1 28227:3 28230:1 28258:1 28338:1 28340:2 28342:3 28343:1 28395:1 28398:1 28405:1 28410:1 28413:1 28421:1 28429:1 28430:1 28432:1 28437:1 28443:1 28472:2 28482:1 28499:1 28514:1 28524:2 28548:1 28581:1 28593:1 28644:1 28659:1 28674:1 28675:1 28684:1 28696:1 28754:4 28762:1 28771:1 28795:1 28798:1 28839:1 28848:1 28870:1 28874:1 28878:1 28912:1 28928:1 28931:2 28962:1 28974:1 29004:2 29041:1 29069:1 29111:1 29112:1 29130:3 29135:1 29155:1 29179:1 29182:2 29183:16 29184:2 29186:1 29189:3 29192:1 29203:1 29220:1 29221:9 29224:1 29234:1 29239:1 29240:1 29248:1 29276:1 29277:1 29281:2 29289:1 29290:1 29310:1 29325:1 29334:2 29342:2 29348:1 29377:2 29382:2 29429:1 29454:1 29486:1 29495:2 29536:1 29537:1 29573:1 29581:1 29587:2 29589:1 29591:4 29595:1 29600:1 29620:1 29624:1 29636:1 29655:1 29663:1 29666:3 29720:1 29741:2 29745:3 29747:1 29749:1 29795:1 29809:1 29812:1 29841:1 29848:1 29891:3 29904:1 29905:1 29932:2 29936:2 29942:1 29950:2 29969:2 30003:1 30011:1 30056:1 30080:1 30104:1 30129:3 30160:2 30164:1 30201:1 30210:1 30216:1 30222:3 30241:1 30269:1 30285:2 30290:1 30292:1 30313:1 30325:1 30341:1 30346:4 30348:1 30354:1 30364:2 30429:1 30435:4 30441:1 30507:1 30517:1 30524:1 30525:1 30527:3 30539:1 30576:1 30586:1 30593:1 30595:1 30599:1 30609:1 30650:1 16 24:1 26:1 62:1 69:1 75:4 91:1 94:1 121:1 151:1 190:1 206:1 224:4 266:1 285:1 294:3 315:1 324:1 334:2 335:2 336:1 360:1 375:1 407:1 430:3 436:1 440:1 453:1 477:2 489:1 493:1 495:1 502:1 503:1 505:1 510:1 511:1 546:1 547:1 625:1 637:3 660:2 666:1 673:4 679:1 688:1 694:1 705:1 722:1 730:1 737:1 748:1 778:2 795:1 836:1 845:1 853:1 857:1 878:1 882:1 895:1 898:1 943:1 949:1 966:2 971:3 974:1 975:2 976:1 1003:1 1029:3 1032:1 1038:1 1065:2 1069:1 1108:1 1131:1 1134:1 1155:1 1161:1 1170:1 1171:1 1217:3 1221:1 1224:1 1233:1 1242:2 1253:1 1254:4 1267:1 1280:1 1291:3 1319:1 1324:1 1325:1 1331:1 1333:2 1336:1 1346:1 1347:2 1348:2 1361:1 1365:1 1377:1 1395:1 1409:1 1421:1 1446:1 1476:1 1499:1 1500:3 1511:1 1519:1 1538:1 1556:1 1566:1 1579:1 1585:5 1590:1 1594:1 1601:1 1602:2 1603:1 1608:2 1609:1 1625:1 1628:3 1651:1 1657:3 1671:1 1677:1 1681:1 1685:1 1690:2 1725:1 1730:1 1734:2 1739:3 1742:2 1757:1 1776:2 1780:3 1788:1 1789:1 1802:1 1826:1 1840:1 1855:2 1857:1 1860:1 1863:1 1873:2 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1939:1 1951:1 1954:1 1955:1 1964:1 1970:1 1982:1 1986:1 1989:1 1997:1 2016:1 2021:1 2023:1 2032:1 2038:1 2039:4 2052:1 2070:1 2090:1 2125:1 2132:1 2153:1 2161:2 2167:2 2169:1 2170:3 2204:1 2227:1 2232:1 2234:3 2235:1 2237:2 2269:3 2346:1 2353:1 2404:1 2405:1 2406:1 2407:2 2408:3 2413:1 2415:2 2416:1 2417:1 2420:5 2421:1 2422:1 2424:1 2427:1 2434:4 2436:3 2437:5 2450:1 2473:1 2486:1 2488:1 2508:1 2518:2 2519:1 2520:1 2532:1 2533:1 2550:1 2556:1 2560:1 2575:1 2599:1 2602:1 2623:3 2641:1 2645:1 2657:2 2689:1 2693:1 2694:1 2705:1 2766:1 2797:2 2812:4 2819:1 2825:3 2841:1 2842:1 2849:1 2852:1 2854:5 2856:1 2872:1 2888:1 2896:1 2900:1 2909:3 2943:1 2952:2 2962:1 2963:1 2965:4 2976:2 3019:4 3039:1 3056:7 3067:6 3090:2 3118:19 3127:1 3128:1 3151:1 3189:1 3224:2 3232:1 3296:2 3391:1 3403:2 3406:4 3428:6 3442:1 3454:1 3485:1 3498:4 3543:1 3565:1 3567:1 3590:1 3613:1 3628:1 3634:1 3643:3 3649:1 3661:1 3667:3 3711:2 3730:1 3731:1 3746:3 3764:1 3778:1 3796:1 3801:1 3803:3 3804:1 3810:1 3812:1 3813:1 3819:2 3846:1 3867:1 3886:1 3902:1 3903:3 3918:1 3929:1 3950:1 3958:1 3959:26 3981:1 3993:2 3994:1 3995:6 4010:13 4011:2 4012:1 4015:3 4027:2 4042:3 4057:1 4058:2 4061:2 4063:2 4076:2 4078:1 4079:1 4116:2 4122:1 4123:3 4130:1 4134:1 4173:1 4178:1 4182:1 4183:3 4196:2 4207:2 4216:1 4223:1 4258:1 4265:1 4266:1 4267:1 4269:1 4285:1 4290:1 4294:1 4297:1 4301:2 4318:3 4324:1 4330:1 4368:1 4369:1 4381:1 4439:1 4463:1 4474:1 4483:1 4486:1 4498:1 4504:1 4508:1 4509:1 4547:1 4555:1 4557:1 4563:1 4636:8 4650:1 4697:1 4701:1 4706:2 4715:1 4718:2 4749:3 4767:1 4773:1 4787:1 4796:1 4854:1 4855:2 4900:1 4921:2 4927:1 4930:2 4938:1 4948:2 4959:1 4966:1 4989:2 4993:1 5058:1 5059:1 5064:1 5076:1 5092:2 5100:1 5189:1 5201:10 5202:1 5231:1 5241:1 5288:1 5308:3 5314:1 5320:2 5321:1 5323:3 5344:1 5345:1 5347:5 5348:1 5351:1 5354:2 5361:1 5362:14 5363:1 5365:1 5370:2 5371:3 5397:1 5401:2 5467:1 5491:1 5560:1 5593:3 5594:3 5603:5 5652:1 5675:2 5677:14 5684:1 5703:1 5735:1 5771:1 5774:1 5810:1 5816:1 5819:1 5830:1 5836:1 5839:1 5848:1 5856:1 5857:1 5901:1 5911:1 5921:1 5922:1 5943:1 5951:1 5954:1 5962:2 5965:1 5967:1 5987:2 5993:1 6018:1 6021:2 6038:2 6044:1 6063:1 6065:1 6068:1 6079:1 6097:1 6101:1 6103:1 6118:1 6121:1 6140:1 6142:1 6199:2 6217:1 6219:2 6221:1 6227:1 6305:1 6364:1 6368:1 6371:4 6380:1 6386:1 6410:1 6415:1 6444:1 6480:1 6490:1 6491:1 6492:1 6499:1 6528:2 6529:1 6536:1 6539:2 6540:2 6588:1 6591:2 6596:1 6618:3 6621:1 6635:1 6639:1 6654:1 6660:1 6721:1 6724:1 6725:1 6726:1 6727:1 6728:1 6730:1 6731:1 6734:2 6736:3 6743:1 6744:4 6745:1 6747:1 6756:1 6773:1 6836:1 6872:1 6878:1 6895:2 6901:1 6930:1 6932:1 6970:1 6977:1 6984:1 6994:1 7000:2 7019:1 7027:5 7032:3 7035:1 7047:1 7060:2 7080:1 7083:1 7114:1 7115:1 7126:1 7148:1 7192:1 7201:2 7204:1 7216:3 7222:1 7231:1 7236:2 7257:1 7267:1 7308:1 7322:1 7328:1 7335:2 7342:1 7407:1 7412:1 7432:2 7433:1 7456:1 7522:2 7542:1 7573:1 7574:1 7577:5 7585:2 7601:1 7603:1 7610:1 7612:1 7625:1 7653:1 7769:1 7774:1 7779:1 7788:3 7830:1 7840:3 7874:2 7915:2 7926:1 7932:1 7997:2 7998:1 8005:1 8023:1 8031:3 8054:1 8064:1 8065:3 8066:2 8084:1 8097:1 8100:1 8121:1 8122:1 8128:1 8131:29 8133:1 8140:1 8151:6 8152:15 8161:1 8170:1 8207:1 8208:3 8238:1 8254:1 8273:1 8279:1 8302:1 8307:1 8362:3 8365:4 8372:1 8413:1 8415:2 8433:1 8450:1 8478:1 8492:1 8521:1 8523:3 8540:4 8546:1 8559:1 8570:2 8597:1 8603:1 8610:1 8623:1 8633:11 8651:1 8664:2 8665:1 8687:2 8718:1 8724:1 8733:2 8742:1 8748:1 8753:2 8760:3 8779:1 8789:1 8793:3 8798:2 8816:2 8820:2 8830:1 8840:1 8842:1 8845:1 8850:1 8857:1 8858:1 8863:2 8873:1 8884:1 8887:2 8895:1 8899:1 8915:2 8932:1 8938:1 8942:3 8959:1 8979:1 8980:2 8983:1 8984:3 8985:1 8986:2 8987:3 8995:1 8998:2 9000:1 9004:2 9020:1 9027:1 9035:2 9039:2 9040:1 9041:1 9046:1 9058:1 9061:1 9072:1 9075:2 9112:2 9135:1 9139:3 9146:1 9149:1 9151:1 9164:1 9169:1 9204:1 9205:1 9209:1 9215:2 9225:2 9227:1 9268:3 9269:2 9273:3 9276:1 9277:2 9280:3 9286:1 9301:1 9302:1 9304:4 9316:1 9339:1 9420:2 9439:1 9442:1 9450:1 9453:1 9471:1 9478:1 9480:1 9504:1 9506:1 9561:2 9589:1 9594:3 9608:1 9618:4 9640:1 9646:1 9651:1 9658:1 9662:1 9663:1 9677:1 9695:2 9697:1 9715:1 9732:1 9781:1 9809:1 9870:1 9874:1 9877:1 9882:1 9888:1 9889:2 9909:1 9928:1 9930:1 9940:1 9942:1 9972:1 9973:1 9977:1 9983:1 9994:1 10037:14 10043:1 10069:1 10078:3 10084:2 10109:1 10128:1 10130:2 10146:1 10169:11 10185:1 10211:1 10223:2 10235:1 10238:3 10239:1 10240:1 10259:1 10317:1 10321:3 10322:1 10356:5 10362:2 10363:2 10364:1 10371:1 10379:1 10387:2 10393:1 10395:1 10400:1 10406:1 10410:3 10413:1 10415:1 10416:1 10446:3 10450:1 10468:1 10470:2 10493:1 10533:1 10549:2 10552:1 10577:8 10580:1 10581:4 10596:1 10601:1 10651:3 10698:2 10707:1 10731:1 10757:1 10763:1 10780:4 10784:1 10791:1 10809:1 10830:1 10880:2 10892:3 10898:1 10903:1 10907:1 10917:1 10923:1 10935:1 10939:1 10957:2 10962:2 10973:1 10998:1 11009:2 11028:1 11031:1 11047:5 11060:2 11061:3 11063:2 11070:1 11081:1 11084:1 11087:1 11106:1 11120:1 11126:1 11134:3 11148:2 11156:1 11160:2 11166:5 11230:1 11231:1 11234:1 11237:1 11260:1 11261:1 11262:1 11268:1 11305:1 11315:1 11359:1 11366:1 11371:1 11388:2 11389:1 11400:4 11417:3 11418:4 11477:2 11482:1 11499:1 11512:2 11529:1 11535:1 11556:2 11569:2 11597:1 11622:1 11668:1 11678:1 11680:1 11683:1 11684:2 11703:1 11710:1 11718:1 11740:1 11745:1 11753:1 11754:1 11779:2 11810:1 11819:1 11830:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11885:1 11887:3 11918:1 11923:1 11926:4 11929:1 11961:1 11985:1 11986:1 11991:1 11994:2 12009:1 12029:1 12045:1 12056:1 12065:3 12066:2 12077:2 12095:3 12098:2 12120:1 12130:1 12146:3 12155:3 12157:1 12170:1 12181:1 12182:1 12189:1 12193:4 12194:1 12200:1 12202:4 12210:1 12218:1 12228:3 12253:2 12266:4 12270:1 12275:2 12293:1 12314:1 12325:4 12335:1 12337:1 12373:1 12375:1 12385:3 12406:1 12423:1 12440:1 12470:2 12471:1 12508:1 12539:1 12594:2 12609:1 12625:1 12628:1 12629:1 12632:1 12654:3 12655:3 12656:14 12660:4 12679:1 12698:1 12705:1 12716:2 12766:1 12788:1 12815:1 12824:5 12825:2 12841:1 12846:1 12902:3 12906:1 12929:1 12936:1 12943:2 12947:1 12953:1 12961:1 12992:1 13019:1 13035:3 13054:1 13057:1 13092:1 13095:2 13107:1 13110:1 13117:1 13129:1 13166:1 13207:1 13227:6 13240:1 13243:1 13248:1 13276:2 13277:3 13304:1 13307:1 13342:1 13371:1 13376:2 13404:1 13440:1 13441:1 13443:2 13472:1 13486:1 13488:1 13522:1 13580:1 13614:1 13623:1 13624:2 13649:1 13656:1 13673:1 13684:1 13700:2 13711:1 13714:2 13720:1 13735:1 13739:1 13740:1 13768:1 13775:1 13776:1 13780:2 13816:1 13821:1 13832:1 13833:2 13835:1 13838:4 13842:2 13843:1 13851:1 13858:2 13873:1 13875:1 13878:1 13883:2 13915:5 13916:1 13923:1 13926:1 13930:1 13944:1 13958:1 13981:2 13993:2 13994:1 14011:3 14028:1 14037:1 14050:1 14063:3 14078:1 14086:3 14112:1 14113:2 14114:2 14129:1 14145:1 14157:2 14177:1 14189:2 14228:1 14234:1 14237:1 14238:2 14239:1 14241:1 14275:1 14296:1 14298:1 14310:1 14311:1 14315:1 14334:1 14335:1 14366:5 14377:1 14422:1 14445:1 14446:1 14450:1 14471:2 14472:1 14477:3 14503:1 14522:1 14529:1 14533:1 14544:2 14546:2 14552:2 14553:4 14563:1 14584:1 14592:3 14610:1 14642:2 14644:1 14649:1 14650:1 14654:1 14670:2 14704:1 14780:1 14785:2 14806:1 14833:1 14845:1 14862:1 14887:1 14901:1 14922:1 14935:1 14958:1 14976:1 14986:1 14987:1 14997:1 15002:1 15008:3 15010:1 15011:1 15019:1 15032:2 15060:1 15068:1 15072:1 15096:1 15120:1 15127:1 15141:1 15174:1 15181:1 15190:1 15196:2 15216:1 15233:1 15252:1 15276:1 15319:2 15364:1 15476:1 15487:1 15507:2 15538:3 15547:2 15548:1 15552:1 15554:1 15556:1 15573:1 15597:1 15605:1 15625:1 15643:2 15655:3 15672:1 15695:1 15697:1 15702:1 15725:1 15734:1 15771:1 15772:1 15781:1 15788:1 15805:1 15868:1 15875:3 15876:2 15881:1 15907:2 15908:1 15911:1 15951:3 15955:1 15961:1 15984:1 15999:1 16018:1 16021:3 16032:2 16054:1 16073:2 16096:1 16111:1 16121:1 16140:1 16148:2 16167:6 16172:3 16174:1 16181:1 16207:2 16221:1 16222:2 16235:3 16255:1 16270:1 16277:1 16303:2 16307:1 16309:1 16317:4 16325:1 16336:1 16352:1 16353:2 16356:1 16357:5 16358:1 16363:1 16367:1 16368:1 16369:1 16379:2 16386:4 16467:1 16484:2 16495:1 16498:1 16501:2 16507:3 16530:2 16561:1 16564:2 16593:2 16623:1 16646:5 16659:2 16660:2 16673:1 16674:1 16677:1 16678:1 16706:14 16734:1 16739:2 16743:1 16761:2 16775:37 16794:3 16831:1 16861:1 16864:1 16867:2 16908:1 16913:1 16919:1 16920:2 16921:1 16927:2 16931:1 16944:1 16957:1 16961:1 16965:1 16980:1 16981:1 17010:1 17013:1 17047:1 17055:5 17090:2 17116:1 17130:1 17135:1 17192:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:2 17253:1 17294:1 17295:1 17317:1 17326:1 17336:1 17342:3 17347:1 17372:2 17392:2 17414:1 17415:1 17422:1 17424:2 17426:1 17435:1 17438:1 17454:1 17460:8 17500:1 17514:2 17553:1 17559:1 17564:1 17582:1 17583:1 17585:3 17587:1 17589:2 17593:1 17596:1 17613:1 17625:1 17635:1 17645:2 17646:2 17718:1 17788:1 17797:2 17816:1 17821:1 17843:1 17849:1 17859:1 17871:1 17875:1 17877:3 17889:1 17897:1 17906:3 17912:1 17952:1 17957:1 17972:1 17998:2 18006:1 18034:4 18099:1 18110:1 18112:1 18129:3 18134:1 18136:1 18144:1 18147:2 18153:1 18154:1 18171:1 18174:1 18188:1 18197:2 18223:1 18248:1 18249:2 18277:1 18330:2 18338:1 18342:1 18355:1 18412:1 18415:1 18417:2 18421:1 18423:1 18442:8 18460:1 18474:1 18478:1 18506:1 18517:1 18524:1 18544:1 18546:1 18559:1 18565:1 18584:1 18589:1 18602:1 18625:1 18629:2 18633:4 18636:1 18707:1 18748:2 18749:1 18757:1 18781:1 18797:1 18815:1 18816:1 18819:2 18831:2 18838:1 18855:1 18872:1 18873:2 18922:1 18932:1 18956:3 18966:1 18977:3 18980:1 18984:1 18987:3 19006:1 19007:1 19016:1 19018:1 19079:1 19098:1 19113:1 19114:6 19160:1 19170:1 19191:1 19193:1 19210:1 19217:1 19225:1 19241:1 19244:3 19250:2 19265:2 19272:1 19276:2 19315:1 19323:2124 19328:1 19342:2 19343:1 19348:1 19385:1 19395:1 19413:3 19421:1 19452:3 19473:2 19482:1 19507:2 19509:1 19530:3 19536:1 19539:3 19541:1 19543:1 19584:1 19586:1 19636:3 19638:1 19664:1 19696:2 19708:1 19721:1 19733:1 19743:1 19751:1 19756:1 19758:1 19804:1 19817:2 19820:1 19831:4 19856:1 19857:1 19918:1 19919:1 19933:2 20004:1 20032:1 20048:1 20050:1 20057:2 20074:2 20086:2 20090:1 20091:3 20095:1 20107:1 20121:8 20146:1 20147:10 20177:1 20178:3 20181:1 20197:1 20212:1 20216:3 20236:1 20243:1 20248:1 20250:1 20252:1 20255:1 20260:1 20262:1 20277:2 20283:1 20287:1 20313:1 20319:2 20339:1 20349:2 20363:1 20387:1 20389:1 20392:1 20451:1 20458:1 20477:1 20492:1 20502:1 20523:1 20524:8 20565:1 20573:1 20596:1 20605:1 20613:1 20623:5 20648:1 20669:1 20688:1 20691:1 20714:1 20720:1 20722:1 20724:1 20725:1 20731:1 20779:4 20782:1 20787:1 20789:1 20796:1 20811:2 20814:1 20839:1 20849:1 20853:1 20877:1 20894:1 20897:1 20907:1 20908:2 20918:1 20923:6 20972:1 20976:1 20996:8 21002:1 21014:2 21017:2 21030:1 21033:1 21050:9 21066:1 21088:1 21103:1 21131:1 21175:1 21182:1 21196:2 21214:3 21225:1 21258:2 21301:3 21316:1 21328:1 21331:1 21339:1 21343:1 21344:1 21389:1 21392:1 21451:2 21468:1 21474:1 21495:1 21511:1 21529:1 21532:1 21554:1 21596:3 21625:2 21634:1 21638:1 21643:9 21660:3 21663:1 21664:1 21684:4 21690:1 21708:3 21755:1 21769:2 21773:1 21789:2 21797:1 21798:1 21822:5 21829:1 21830:2 21852:1 21874:1 21896:1 21911:1 21915:1 21932:2 21936:1 21943:1 21949:1 21962:3 21980:1 21987:1 21992:1 22003:1 22041:1 22048:1 22050:1 22106:1 22147:1 22151:1 22154:4 22157:2 22159:2 22170:3 22179:1 22183:1 22228:1 22232:1 22236:2 22241:2 22251:1 22268:1 22281:1 22285:1 22286:1 22298:1 22300:5 22305:2 22309:1 22332:1 22349:1 22354:1 22384:2 22396:1 22405:1 22406:1 22425:1 22427:9 22430:1 22447:1 22457:1 22461:1 22501:2 22515:1 22534:1 22538:2 22540:1 22549:2 22563:1 22603:1 22607:4 22614:2 22618:2 22621:1 22671:1 22693:2 22702:1 22705:7 22712:2 22720:1 22734:1 22735:1 22736:1 22740:1 22746:1 22748:2 22750:1 22756:1 22769:1 22772:2 22777:1 22795:2 22833:4 22834:1 22856:1 22866:1 22874:2 22877:1 22895:1 22901:1 22909:3 22926:1 22937:1 22985:14 22987:1 22990:1 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:2 23093:1 23096:2 23102:1 23112:2 23125:2 23133:1 23136:5 23153:2 23160:3 23199:1 23209:1 23212:1 23215:1 23221:1 23225:1 23236:1 23244:1 23246:2 23256:1 23269:2 23271:1 23284:3 23302:3 23317:2 23325:1 23336:1 23360:1 23376:1 23445:1 23454:3 23462:1 23481:1 23496:3 23517:1 23554:1 23570:1 23575:1 23579:10 23581:1 23583:2 23600:1 23611:1 23629:1 23632:1 23639:1 23648:1 23655:1 23662:1 23666:2 23695:1 23699:2 23717:5 23721:1 23750:1 23765:2 23767:1 23788:2 23807:1 23819:1 23859:1 23878:1 23879:1 23891:1 23955:1 23968:1 23971:3 23978:1 24002:1 24003:1 24015:1 24049:1 24087:1 24090:2 24103:1 24108:1 24113:1 24119:2 24124:2 24128:1 24168:1 24177:1 24183:1 24187:3 24188:1 24207:4 24232:1 24235:1 24237:1 24241:2 24247:1 24273:2 24280:1 24281:1 24293:1 24329:3 24336:1 24340:13 24408:1 24419:1 24441:1 24444:1 24449:1 24478:1 24504:1 24509:1 24533:1 24534:1 24538:1 24571:1 24591:1 24653:1 24656:2 24668:2 24702:4 24714:1 24717:1 24761:1 24777:1 24797:1 24814:3 24827:2 24833:1 24838:1 24844:2 24845:1 24921:1 24932:1 24939:1 24970:1 24976:1 25004:1 25005:3 25014:1 25023:1 25027:1 25049:1 25073:2 25122:1 25147:3 25158:1 25181:1 25194:5 25252:1 25264:1 25273:1 25275:1 25285:2 25287:3 25288:1 25311:1 25319:1 25325:1 25327:2 25335:1 25339:3 25347:1 25384:1 25385:2 25398:1 25415:1 25419:1 25431:1 25468:1 25471:1 25472:1 25495:4 25503:2 25507:1 25510:1 25526:1 25561:1 25570:1 25587:1 25597:1 25598:1 25623:1 25627:1 25634:1 25643:1 25673:1 25676:1 25684:1 25688:1 25718:1 25722:1 25740:2 25778:2 25797:2 25823:1 25832:1 25852:1 25860:1 25872:1 25878:1 25884:1 25893:3 25918:2 25921:1 25922:1 25966:1 25980:2 25998:1 26004:1 26058:1 26073:1 26076:1 26097:4 26124:1 26150:2 26156:3 26159:1 26167:1 26172:2 26207:1 26232:1 26257:1 26316:1 26318:2 26322:4 26324:3 26331:1 26356:1 26371:1 26372:1 26377:2 26403:1 26413:1 26415:3 26429:3 26435:4 26436:1 26445:1 26460:1 26463:1 26472:1 26489:2 26513:4 26518:1 26524:1 26525:1 26534:1 26538:2 26564:1 26589:3 26627:4 26652:2 26653:2 26681:1 26689:1 26712:1 26728:2 26782:3 26808:1 26835:1 26842:2 26844:1 26865:1 26868:1 26871:2 26893:1 26898:1 26912:1 26915:1 26934:1 26935:1 26938:1 26949:2 26955:1 26956:1 26964:1 26977:4 26981:1 26982:1 26989:1 27000:1 27008:2 27010:1 27056:1 27065:1 27078:1 27099:1 27115:3 27138:6 27144:1 27178:1 27185:1 27192:2 27212:1 27252:1 27257:1 27266:1 27280:2 27295:1 27308:1 27314:1 27332:1 27407:2 27422:4 27424:2 27438:2 27439:1 27440:4 27441:3 27444:1 27490:2 27521:1 27534:1 27540:2 27552:1 27580:2 27601:1 27607:1 27621:1 27636:1 27673:1 27709:1 27718:1 27755:1 27775:1 27799:1 27809:1 27824:1 27852:1 27863:1 27910:2 27939:1 27949:1 27950:1 28004:1 28005:2 28095:2 28099:2 28113:1 28118:1 28121:7 28154:1 28223:13 28224:1 28227:3 28230:1 28258:1 28338:2 28340:2 28342:3 28343:1 28395:1 28398:1 28405:1 28410:1 28413:1 28421:1 28429:1 28430:1 28432:1 28437:1 28443:1 28472:2 28482:1 28499:1 28514:1 28524:2 28548:1 28581:1 28593:1 28644:1 28659:1 28674:1 28675:1 28684:1 28696:3 28754:4 28762:1 28771:1 28795:1 28798:1 28839:3 28848:3 28870:1 28874:1 28878:1 28912:1 28928:1 28931:2 28962:1 28974:1 29004:2 29041:1 29069:1 29111:1 29112:1 29130:3 29135:1 29155:1 29179:1 29182:2 29183:19 29184:2 29186:2 29189:3 29192:1 29203:1 29220:1 29221:9 29224:1 29234:1 29239:1 29240:1 29248:1 29276:1 29277:1 29281:2 29289:1 29290:1 29310:1 29325:1 29334:4 29342:2 29348:1 29377:2 29382:2 29429:1 29430:1 29454:1 29486:1 29495:2 29536:1 29537:1 29573:1 29581:1 29587:2 29589:1 29591:4 29595:1 29600:1 29620:1 29624:1 29636:1 29655:3 29663:1 29666:3 29720:1 29741:3 29745:5 29747:1 29749:1 29777:2 29795:1 29809:1 29812:1 29841:1 29848:1 29860:1 29891:3 29901:1 29904:1 29905:1 29932:2 29936:2 29942:1 29950:2 29969:2 30003:1 30011:1 30056:1 30080:1 30104:1 30129:3 30160:2 30164:1 30201:1 30210:1 30216:1 30222:3 30241:1 30269:1 30285:2 30290:1 30292:1 30313:1 30325:1 30341:1 30346:6 30348:1 30354:1 30364:2 30429:1 30435:4 30441:1 30507:1 30517:1 30524:1 30525:1 30527:3 30539:1 30576:1 30586:1 30593:1 30595:1 30599:1 30609:1 30650:1 16 24:1 26:1 62:1 69:1 75:4 91:1 94:1 121:1 151:1 190:1 206:1 224:4 251:1 266:1 285:1 294:3 315:1 324:1 334:2 335:2 336:1 360:1 375:1 407:1 430:3 436:1 440:1 453:1 471:1 477:2 489:1 493:1 495:1 502:1 503:1 505:1 510:1 511:1 546:1 547:1 564:1 625:1 637:3 660:2 666:1 673:4 679:1 688:1 694:1 705:1 722:1 730:1 737:1 748:1 778:2 795:1 798:1 836:1 845:1 853:1 857:1 878:1 882:1 895:1 898:1 931:1 943:1 949:1 966:2 971:3 974:1 975:3 976:2 1003:1 1029:3 1032:2 1038:1 1065:2 1069:1 1108:1 1131:1 1134:1 1155:1 1161:1 1170:1 1171:1 1217:3 1221:1 1224:1 1233:1 1242:2 1253:1 1254:4 1267:1 1280:1 1291:3 1319:1 1324:1 1325:1 1331:1 1333:3 1336:1 1346:1 1347:2 1348:2 1361:1 1365:1 1377:1 1395:2 1409:2 1421:1 1446:1 1476:1 1499:1 1500:3 1511:1 1514:1 1519:1 1538:1 1556:1 1566:1 1579:1 1585:5 1590:1 1594:1 1601:1 1602:2 1603:1 1608:2 1609:1 1614:1 1625:1 1628:3 1651:1 1657:3 1671:1 1677:1 1681:1 1685:1 1690:2 1725:1 1730:1 1734:3 1739:3 1742:2 1757:1 1776:3 1780:3 1788:1 1789:1 1802:1 1826:1 1840:1 1841:1 1855:2 1857:1 1860:1 1863:1 1873:2 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1939:1 1951:1 1954:1 1955:1 1964:1 1970:1 1982:1 1986:1 1989:1 1997:1 2016:1 2021:1 2023:1 2032:1 2038:1 2039:4 2052:1 2070:2 2090:1 2125:1 2132:1 2153:1 2161:2 2167:2 2169:1 2170:3 2204:1 2227:1 2232:1 2234:3 2235:1 2237:2 2269:3 2346:1 2353:1 2404:1 2405:1 2406:1 2407:2 2408:3 2413:1 2415:2 2416:1 2417:1 2420:5 2421:1 2422:2 2424:1 2427:1 2434:4 2436:3 2437:5 2450:1 2473:1 2486:1 2488:1 2508:1 2518:2 2519:1 2520:1 2525:1 2532:1 2533:1 2550:1 2556:1 2560:1 2575:1 2599:1 2602:1 2623:3 2641:1 2645:1 2657:2 2689:1 2693:1 2694:1 2705:1 2766:1 2797:2 2812:4 2819:1 2825:3 2841:1 2842:1 2849:1 2852:1 2854:5 2856:1 2872:1 2888:2 2896:1 2900:1 2902:1 2909:3 2912:1 2943:1 2952:2 2962:1 2963:1 2965:4 2976:2 3019:4 3031:1 3039:1 3056:8 3067:7 3090:2 3099:1 3118:19 3127:1 3128:1 3151:1 3189:1 3224:2 3232:1 3296:3 3391:1 3403:2 3406:4 3428:7 3442:1 3454:1 3485:1 3498:4 3543:1 3565:1 3567:1 3574:1 3590:1 3613:1 3628:1 3634:1 3643:3 3649:1 3661:1 3667:3 3711:2 3730:1 3731:1 3746:3 3764:1 3778:1 3796:1 3801:1 3803:3 3804:1 3810:1 3812:1 3813:1 3819:2 3839:1 3846:1 3867:1 3886:1 3902:1 3903:3 3918:1 3929:1 3950:1 3958:1 3959:27 3981:1 3993:2 3994:1 3995:6 4000:1 4010:14 4011:2 4012:1 4015:3 4027:2 4042:3 4057:1 4058:2 4061:2 4063:2 4076:2 4078:1 4079:1 4116:2 4122:1 4123:3 4130:1 4134:1 4173:1 4178:1 4182:1 4183:3 4196:2 4207:2 4216:1 4223:1 4235:1 4258:1 4265:1 4266:1 4267:1 4269:1 4270:1 4285:1 4290:1 4294:1 4297:1 4301:3 4318:3 4324:1 4330:1 4368:1 4369:1 4381:1 4436:1 4439:1 4463:1 4474:1 4483:1 4486:1 4498:1 4504:1 4508:1 4509:1 4539:1 4547:1 4555:1 4557:1 4563:1 4611:1 4636:8 4650:1 4697:1 4701:1 4706:4 4715:1 4718:2 4749:3 4767:1 4773:1 4787:1 4796:1 4854:1 4855:2 4900:1 4909:1 4921:2 4927:1 4930:2 4938:1 4948:2 4959:1 4966:1 4989:2 4993:1 5058:1 5059:1 5064:1 5076:1 5092:2 5100:1 5159:1 5189:1 5201:11 5202:1 5219:1 5231:1 5241:1 5288:1 5308:3 5314:1 5320:2 5321:1 5323:3 5340:1 5344:1 5345:2 5347:5 5348:1 5351:1 5354:2 5361:1 5362:14 5363:1 5365:1 5370:2 5371:3 5397:1 5401:2 5453:1 5467:1 5491:1 5560:1 5593:3 5594:3 5603:5 5652:1 5675:2 5677:14 5684:1 5703:1 5735:1 5771:1 5774:1 5810:1 5816:1 5819:1 5830:1 5836:1 5839:1 5848:1 5856:1 5857:1 5901:1 5904:1 5911:1 5921:1 5922:1 5943:1 5951:1 5954:1 5962:2 5965:1 5967:1 5987:2 5993:1 6018:1 6021:2 6038:2 6044:1 6063:1 6065:1 6068:1 6079:1 6097:1 6101:1 6103:1 6118:1 6121:1 6140:1 6142:1 6199:2 6217:1 6219:2 6221:1 6227:1 6305:1 6364:1 6368:1 6371:4 6380:1 6386:2 6410:1 6415:1 6444:1 6480:1 6490:1 6491:1 6492:1 6499:1 6528:3 6529:1 6536:1 6539:2 6540:2 6588:1 6591:2 6596:1 6618:3 6621:1 6635:1 6639:1 6654:1 6660:1 6721:1 6724:1 6725:1 6726:1 6727:1 6728:1 6730:1 6731:1 6734:2 6736:3 6743:1 6744:4 6745:1 6746:1 6747:1 6756:1 6773:1 6776:1 6836:1 6872:1 6878:1 6895:2 6901:1 6930:1 6932:1 6970:1 6977:1 6984:1 6994:1 7000:2 7019:1 7027:5 7032:3 7035:1 7046:1 7047:1 7060:2 7080:1 7083:1 7114:1 7115:1 7126:1 7148:1 7192:1 7201:2 7204:1 7216:3 7222:1 7231:1 7236:2 7257:1 7267:1 7308:1 7322:1 7328:1 7335:2 7342:1 7407:1 7412:1 7432:2 7433:1 7456:1 7522:2 7542:1 7548:1 7573:1 7574:1 7577:5 7585:2 7601:1 7603:1 7610:1 7612:1 7625:1 7653:1 7769:1 7774:1 7779:1 7788:3 7830:1 7840:3 7874:2 7915:2 7926:1 7932:1 7997:2 7998:1 8005:1 8023:1 8027:1 8031:3 8054:1 8064:2 8065:4 8066:2 8084:1 8097:1 8100:1 8121:1 8122:1 8128:1 8131:30 8133:1 8140:1 8151:7 8152:15 8161:1 8170:1 8207:1 8208:3 8238:1 8254:1 8273:1 8279:1 8302:2 8307:1 8362:3 8365:5 8372:1 8413:1 8415:3 8433:1 8450:1 8478:1 8492:1 8521:1 8523:3 8540:5 8546:1 8559:1 8570:2 8590:1 8597:1 8603:1 8610:1 8623:1 8633:12 8651:1 8664:2 8665:1 8687:2 8718:1 8724:1 8733:2 8742:1 8748:1 8753:2 8760:3 8779:1 8789:1 8793:3 8798:3 8816:2 8820:2 8830:1 8840:2 8842:1 8845:1 8850:1 8857:1 8858:2 8863:2 8873:1 8884:2 8887:2 8895:1 8899:1 8915:2 8932:1 8938:1 8942:3 8959:1 8966:1 8979:1 8980:2 8983:1 8984:3 8985:1 8986:2 8987:3 8995:1 8998:2 9000:1 9004:2 9020:1 9027:1 9035:2 9039:2 9040:1 9041:1 9046:1 9058:1 9061:1 9072:1 9075:2 9112:4 9135:1 9139:3 9146:1 9149:1 9151:1 9164:1 9169:1 9204:1 9205:1 9209:1 9215:2 9225:2 9227:1 9268:3 9269:2 9273:3 9276:1 9277:2 9280:3 9286:2 9301:1 9302:1 9304:4 9316:1 9339:1 9345:1 9420:2 9439:2 9442:1 9450:1 9453:1 9471:1 9478:1 9480:1 9504:1 9506:1 9561:3 9589:1 9594:3 9608:1 9618:5 9640:1 9646:1 9651:1 9658:1 9662:1 9663:1 9677:1 9686:1 9695:2 9697:1 9715:1 9718:1 9732:1 9781:1 9809:1 9870:1 9874:1 9877:1 9882:1 9888:1 9889:2 9909:1 9928:1 9930:1 9937:1 9940:1 9942:1 9972:1 9973:1 9977:1 9983:1 9994:1 10037:14 10043:1 10069:1 10078:3 10084:2 10109:1 10128:1 10130:2 10146:1 10169:11 10185:1 10190:1 10211:1 10223:4 10235:1 10238:3 10239:1 10240:1 10259:1 10269:1 10317:1 10321:3 10322:1 10356:5 10362:2 10363:3 10364:1 10371:1 10379:1 10387:2 10393:1 10395:1 10400:1 10406:1 10410:3 10413:1 10415:1 10416:1 10446:3 10450:1 10468:1 10470:2 10493:1 10533:1 10549:2 10552:1 10577:8 10580:1 10581:4 10596:1 10601:1 10651:3 10698:2 10707:1 10731:1 10757:1 10763:1 10780:4 10784:1 10791:1 10809:1 10830:1 10880:2 10892:3 10898:1 10903:1 10907:1 10917:1 10923:1 10935:1 10939:1 10957:2 10962:3 10973:1 10998:1 11009:2 11028:2 11031:1 11047:5 11060:2 11061:3 11063:2 11070:1 11081:1 11084:1 11087:1 11106:1 11120:1 11126:1 11134:4 11148:2 11156:1 11160:2 11166:5 11230:1 11231:1 11234:1 11237:1 11260:2 11261:1 11262:1 11268:1 11305:1 11315:1 11359:1 11366:1 11371:1 11388:2 11389:1 11400:5 11417:3 11418:4 11477:3 11482:1 11499:1 11512:2 11528:1 11529:1 11535:1 11556:2 11569:2 11597:1 11622:1 11668:1 11678:1 11680:1 11683:1 11684:3 11703:1 11710:1 11718:1 11740:1 11745:1 11753:1 11754:1 11779:2 11810:2 11819:1 11830:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11885:1 11887:3 11918:1 11923:1 11926:5 11929:1 11961:1 11985:1 11986:1 11991:1 11994:2 12009:1 12029:1 12045:1 12056:1 12065:3 12066:2 12077:2 12095:3 12098:2 12120:1 12130:1 12146:3 12155:4 12157:1 12170:1 12181:1 12182:1 12189:1 12193:5 12194:1 12200:1 12202:5 12210:1 12218:1 12228:4 12253:2 12266:4 12270:1 12275:2 12293:1 12314:1 12325:4 12335:1 12337:1 12373:1 12375:1 12385:3 12406:1 12412:1 12423:1 12440:1 12470:2 12471:1 12508:1 12539:1 12555:1 12594:2 12609:1 12625:1 12628:1 12629:1 12632:1 12654:3 12655:3 12656:14 12660:4 12679:1 12698:1 12705:1 12716:2 12766:1 12788:1 12815:1 12824:5 12825:2 12841:1 12846:2 12902:3 12906:1 12929:1 12936:1 12943:2 12947:1 12953:1 12961:1 12992:1 13011:1 13015:1 13019:1 13035:3 13054:1 13057:1 13092:1 13095:2 13107:1 13110:1 13117:1 13129:1 13166:1 13207:1 13227:6 13240:1 13243:1 13248:1 13276:2 13277:3 13304:1 13307:1 13342:1 13371:1 13376:2 13404:1 13424:1 13440:1 13441:1 13443:2 13472:1 13486:1 13488:1 13522:1 13580:1 13597:1 13614:1 13623:1 13624:2 13649:1 13656:1 13661:1 13673:1 13684:1 13700:2 13711:1 13714:2 13720:1 13735:1 13739:1 13740:1 13768:1 13775:1 13776:1 13780:2 13816:1 13821:1 13832:1 13833:2 13835:1 13838:5 13842:2 13843:1 13851:1 13853:1 13858:2 13873:1 13875:1 13878:1 13883:2 13915:6 13916:1 13923:1 13926:1 13930:1 13944:1 13958:1 13981:2 13993:2 13994:1 14011:3 14028:1 14037:1 14050:1 14063:3 14078:1 14086:3 14112:1 14113:2 14114:2 14129:1 14145:1 14152:1 14157:2 14177:1 14189:2 14221:1 14228:1 14234:1 14237:1 14238:2 14239:1 14241:1 14275:1 14296:1 14298:1 14310:1 14311:1 14315:1 14334:1 14335:1 14366:6 14377:1 14422:1 14445:1 14446:1 14450:1 14471:2 14472:1 14477:3 14503:1 14522:1 14529:1 14533:1 14544:2 14546:2 14552:2 14553:4 14563:1 14584:1 14592:3 14610:1 14622:1 14642:2 14644:1 14649:1 14650:1 14654:1 14670:2 14704:1 14780:1 14785:2 14806:1 14833:1 14845:1 14862:1 14887:1 14901:1 14922:1 14935:1 14958:1 14976:1 14986:1 14987:1 14997:1 15002:1 15008:3 15010:1 15011:1 15019:1 15032:2 15060:1 15068:1 15072:1 15096:1 15120:1 15127:1 15141:1 15174:1 15181:1 15190:1 15196:4 15216:1 15233:1 15247:1 15252:1 15276:1 15319:3 15364:1 15476:1 15487:1 15507:2 15538:3 15547:2 15548:1 15552:1 15554:1 15556:1 15573:1 15577:1 15597:1 15605:1 15625:1 15643:2 15655:3 15672:1 15695:1 15697:1 15702:1 15725:1 15734:1 15771:1 15772:1 15781:1 15788:1 15805:1 15868:1 15875:3 15876:2 15881:1 15907:4 15908:1 15911:1 15951:3 15955:1 15961:1 15984:1 15999:1 16001:1 16018:1 16021:3 16032:2 16038:1 16054:1 16073:2 16096:1 16111:1 16121:1 16140:1 16148:2 16167:6 16172:4 16174:1 16181:1 16207:2 16221:1 16222:2 16235:3 16255:1 16270:1 16277:1 16303:2 16307:1 16309:1 16317:4 16325:1 16336:1 16352:1 16353:3 16356:1 16357:5 16358:1 16363:1 16367:1 16368:1 16369:1 16379:2 16386:4 16467:1 16484:2 16495:1 16498:1 16501:2 16507:3 16530:2 16532:1 16561:1 16564:2 16578:1 16593:2 16623:1 16646:6 16659:2 16660:2 16673:1 16674:1 16677:1 16678:1 16692:1 16706:14 16734:1 16739:2 16743:1 16761:2 16775:39 16794:3 16831:1 16861:1 16864:1 16867:2 16908:1 16913:1 16919:1 16920:3 16921:1 16927:2 16931:1 16944:1 16957:1 16961:1 16965:1 16980:1 16981:1 17010:1 17013:1 17047:1 17055:5 17090:2 17116:1 17130:1 17135:1 17153:1 17192:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:2 17253:1 17294:1 17295:1 17317:1 17322:1 17326:1 17336:1 17342:3 17347:1 17372:2 17392:3 17414:1 17415:1 17422:1 17424:2 17426:1 17435:1 17438:1 17454:1 17460:8 17500:1 17514:2 17521:1 17553:1 17559:1 17564:1 17582:1 17583:1 17585:3 17587:1 17589:2 17593:1 17596:1 17613:1 17625:1 17635:1 17645:2 17646:2 17718:1 17788:1 17797:2 17800:1 17816:1 17821:1 17835:1 17843:1 17844:1 17849:1 17859:1 17871:1 17875:1 17877:3 17889:1 17897:1 17906:3 17912:1 17952:1 17957:1 17972:1 17998:2 18006:1 18011:1 18034:4 18099:1 18110:1 18112:1 18129:3 18131:1 18134:1 18136:1 18144:1 18147:2 18153:1 18154:1 18171:1 18174:1 18188:1 18197:2 18223:1 18248:1 18249:2 18277:1 18330:2 18338:1 18342:1 18355:1 18410:1 18412:1 18415:1 18417:2 18421:2 18423:1 18442:8 18460:1 18474:1 18478:1 18506:1 18517:1 18524:1 18544:1 18546:1 18559:1 18565:1 18584:1 18589:1 18602:1 18625:1 18629:2 18633:4 18636:1 18707:1 18748:2 18749:1 18757:1 18781:1 18797:1 18815:1 18816:1 18819:2 18831:2 18838:1 18855:1 18872:1 18873:2 18922:1 18932:1 18956:3 18966:1 18977:3 18980:1 18984:1 18987:3 19006:1 19007:1 19016:1 19018:1 19079:1 19098:1 19113:1 19114:7 19125:1 19160:1 19170:1 19182:1 19191:2 19193:1 19210:1 19217:1 19225:1 19241:1 19244:3 19250:2 19265:2 19272:1 19276:2 19315:1 19323:2230 19328:1 19342:4 19343:1 19348:2 19385:1 19395:1 19410:1 19413:3 19421:1 19452:3 19473:2 19482:1 19507:3 19509:1 19530:3 19536:1 19539:3 19541:1 19543:1 19584:1 19586:1 19632:1 19636:3 19638:1 19664:1 19696:2 19708:1 19721:1 19733:1 19743:1 19751:1 19756:1 19758:1 19804:1 19817:2 19820:1 19831:4 19845:1 19856:1 19857:1 19918:1 19919:1 19933:2 19984:1 20004:1 20032:2 20048:1 20050:1 20057:2 20074:3 20086:2 20090:1 20091:3 20095:1 20107:1 20121:10 20146:1 20147:11 20177:1 20178:3 20181:1 20197:1 20212:1 20216:3 20236:1 20243:1 20248:1 20250:1 20252:1 20255:1 20260:1 20262:1 20277:2 20283:1 20287:1 20313:1 20319:2 20339:1 20349:3 20363:1 20387:1 20389:1 20392:1 20451:1 20458:1 20477:1 20492:1 20502:1 20523:1 20524:8 20527:1 20565:1 20573:1 20596:1 20605:1 20613:1 20619:1 20623:5 20648:1 20669:1 20688:1 20691:1 20714:1 20720:1 20722:1 20724:1 20725:1 20731:1 20779:4 20782:1 20787:1 20789:1 20796:1 20811:2 20814:1 20839:1 20849:1 20853:1 20877:1 20894:1 20897:1 20907:1 20908:2 20918:1 20923:6 20972:1 20976:1 20996:8 21002:1 21014:2 21017:2 21030:1 21033:1 21050:9 21066:1 21088:1 21103:1 21105:1 21131:1 21144:1 21175:1 21182:1 21196:2 21214:3 21225:1 21258:2 21301:3 21316:1 21328:1 21331:1 21339:1 21343:1 21344:1 21389:1 21392:1 21451:2 21468:1 21474:1 21495:1 21500:1 21511:1 21528:1 21529:1 21532:1 21554:1 21596:3 21625:2 21634:1 21638:1 21643:9 21660:3 21663:1 21664:1 21684:4 21690:1 21708:3 21722:1 21755:2 21769:2 21773:1 21789:2 21797:1 21798:1 21822:6 21829:1 21830:2 21835:1 21852:1 21874:1 21896:1 21911:1 21915:1 21932:2 21936:1 21943:1 21949:1 21962:3 21980:1 21986:1 21987:1 21992:1 22003:1 22041:1 22048:1 22050:1 22106:1 22147:1 22151:1 22154:4 22157:2 22159:2 22170:3 22179:1 22183:1 22228:1 22232:1 22236:2 22241:2 22251:1 22268:1 22281:1 22285:1 22286:1 22298:1 22300:5 22305:2 22309:1 22332:1 22349:1 22354:1 22384:2 22389:1 22396:1 22405:1 22406:1 22425:2 22427:9 22430:1 22447:1 22457:1 22461:1 22469:1 22501:3 22515:1 22534:1 22538:2 22540:1 22542:1 22549:2 22563:1 22603:1 22607:4 22614:2 22618:2 22621:1 22671:1 22693:2 22702:1 22705:7 22712:2 22720:1 22723:1 22734:2 22735:1 22736:1 22740:1 22746:1 22748:2 22750:1 22756:1 22769:2 22772:2 22777:1 22795:2 22833:4 22834:1 22856:1 22866:1 22874:2 22877:1 22895:1 22901:1 22909:4 22926:1 22937:1 22985:14 22987:1 22990:1 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:2 23093:1 23096:2 23102:1 23112:2 23125:2 23133:1 23136:5 23153:2 23160:3 23199:1 23209:1 23212:1 23215:1 23221:1 23225:1 23236:1 23244:1 23246:2 23256:1 23269:2 23271:1 23284:4 23302:3 23317:2 23325:1 23336:1 23360:1 23376:1 23390:1 23445:1 23454:3 23459:1 23462:1 23481:1 23496:3 23517:1 23554:1 23570:1 23575:1 23579:10 23581:1 23583:2 23600:1 23611:1 23629:1 23632:1 23639:1 23648:1 23655:1 23662:1 23666:2 23695:1 23699:2 23717:5 23721:1 23750:1 23765:2 23767:1 23788:2 23807:1 23819:2 23859:1 23878:1 23879:1 23891:1 23955:1 23968:1 23971:3 23978:1 24002:1 24003:1 24012:1 24015:1 24034:1 24049:1 24087:1 24090:2 24103:1 24108:1 24113:1 24119:2 24124:2 24128:1 24168:1 24177:1 24183:1 24187:3 24188:1 24207:5 24216:1 24232:1 24235:1 24237:2 24241:2 24247:1 24273:2 24280:1 24281:2 24283:1 24293:1 24329:3 24336:1 24340:14 24408:1 24419:1 24432:1 24441:1 24444:1 24449:1 24478:1 24504:1 24509:1 24533:1 24534:1 24538:1 24571:1 24591:1 24653:1 24656:2 24668:2 24702:4 24714:1 24717:1 24761:1 24777:1 24797:1 24814:3 24827:2 24833:1 24838:1 24841:1 24844:2 24845:1 24859:1 24921:1 24932:1 24939:1 24970:1 24976:1 25004:1 25005:3 25014:1 25023:1 25027:1 25049:1 25073:2 25122:1 25147:3 25158:1 25181:1 25194:5 25252:1 25264:1 25273:1 25275:1 25285:2 25287:4 25288:1 25311:1 25319:1 25325:1 25327:2 25335:1 25339:3 25347:1 25384:1 25385:2 25398:1 25415:1 25419:2 25431:1 25468:1 25471:1 25472:1 25495:4 25503:2 25507:1 25510:1 25514:1 25526:1 25561:1 25570:1 25587:1 25597:1 25598:1 25623:1 25627:1 25631:1 25634:1 25643:1 25673:1 25676:1 25684:1 25688:1 25718:1 25722:1 25740:2 25778:2 25797:4 25823:1 25832:1 25852:1 25860:1 25871:1 25872:1 25878:2 25884:1 25893:3 25918:2 25921:1 25922:1 25966:1 25980:2 25998:1 26004:1 26058:1 26073:1 26076:1 26097:4 26124:1 26150:2 26156:3 26159:1 26167:1 26172:3 26207:1 26226:1 26232:1 26257:1 26316:1 26318:2 26320:1 26322:4 26324:3 26331:1 26356:1 26371:1 26372:1 26377:2 26403:1 26413:1 26415:4 26429:3 26435:4 26436:1 26445:1 26460:1 26463:1 26472:1 26489:2 26513:5 26518:1 26524:1 26525:1 26534:1 26538:2 26564:1 26589:3 26627:4 26652:2 26653:2 26681:1 26689:1 26712:1 26717:1 26728:3 26754:1 26782:3 26808:1 26835:1 26842:2 26844:1 26865:1 26868:1 26871:2 26893:1 26898:1 26912:1 26915:1 26934:1 26935:1 26938:1 26949:2 26955:1 26956:1 26964:1 26977:5 26981:1 26982:1 26985:1 26989:1 27000:1 27008:2 27010:1 27056:1 27065:1 27078:1 27099:1 27113:1 27115:3 27138:7 27144:1 27178:1 27185:1 27192:2 27212:1 27252:1 27257:1 27266:1 27280:3 27295:1 27308:1 27314:1 27332:1 27407:2 27422:5 27424:2 27438:2 27439:1 27440:4 27441:4 27444:1 27490:2 27521:1 27531:1 27534:1 27540:2 27548:1 27552:1 27580:2 27601:1 27607:1 27621:1 27636:1 27673:1 27709:1 27718:1 27755:1 27775:1 27799:1 27809:1 27824:1 27852:1 27863:1 27883:1 27910:2 27939:1 27949:1 27950:1 28004:1 28005:2 28095:2 28099:3 28113:1 28118:1 28121:8 28154:1 28223:14 28224:1 28227:3 28230:1 28258:1 28338:2 28340:2 28342:3 28343:1 28391:1 28395:1 28398:1 28405:2 28410:1 28413:1 28421:1 28429:1 28430:1 28432:1 28437:1 28443:1 28472:2 28482:1 28499:1 28514:1 28524:2 28548:1 28574:1 28581:1 28593:1 28644:1 28659:1 28674:1 28675:1 28684:1 28696:3 28754:5 28762:1 28771:1 28795:1 28798:1 28839:3 28848:3 28870:1 28874:1 28878:1 28912:1 28928:1 28931:3 28939:1 28962:1 28974:1 29000:1 29004:4 29041:1 29069:1 29111:1 29112:1 29130:3 29135:1 29155:1 29179:1 29182:2 29183:19 29184:2 29186:2 29189:3 29192:1 29203:1 29220:1 29221:9 29224:1 29234:1 29239:1 29240:1 29248:1 29276:1 29277:1 29281:2 29289:1 29290:1 29310:1 29325:1 29334:4 29342:4 29348:1 29377:3 29382:2 29429:1 29430:1 29454:1 29486:1 29495:2 29536:1 29537:1 29573:1 29581:1 29587:2 29589:1 29591:4 29595:1 29600:1 29620:1 29624:1 29636:1 29655:3 29663:1 29666:3 29720:1 29741:3 29745:6 29747:1 29749:1 29754:1 29777:2 29795:1 29809:1 29812:1 29841:1 29848:1 29860:1 29891:3 29901:1 29904:1 29905:1 29932:2 29936:2 29942:1 29950:4 29957:1 29969:2 30003:1 30011:1 30056:1 30080:1 30104:1 30129:4 30160:2 30164:1 30201:1 30210:2 30216:1 30222:3 30241:1 30252:1 30269:1 30285:2 30290:1 30292:1 30313:1 30325:1 30341:1 30346:6 30348:1 30354:1 30364:2 30429:1 30435:4 30441:1 30507:1 30517:1 30524:1 30525:1 30527:3 30533:1 30539:1 30576:1 30586:1 30588:1 30592:1 30593:1 30595:1 30599:1 30609:2 30650:1 16 24:1 26:1 62:1 69:1 75:4 91:1 94:1 121:1 151:1 160:1 190:1 206:1 224:4 251:1 266:1 285:1 294:3 315:1 324:1 334:2 335:2 336:1 360:1 368:1 375:1 407:1 430:3 436:1 440:1 453:1 471:1 477:2 489:1 493:1 495:1 502:1 503:1 505:1 510:1 511:1 546:1 547:1 564:1 625:1 637:3 647:1 660:2 666:1 673:4 679:1 688:1 694:1 705:1 710:1 722:1 730:1 737:1 748:1 778:2 795:1 798:1 815:1 836:1 845:2 853:1 857:1 878:1 882:1 895:1 898:1 931:1 939:1 943:1 949:1 951:2 966:2 971:3 974:1 975:4 976:2 1003:1 1029:3 1032:2 1038:1 1065:2 1069:1 1107:2 1108:1 1131:1 1134:1 1155:1 1161:1 1170:1 1171:1 1217:3 1221:1 1224:1 1233:1 1242:2 1253:1 1254:4 1267:1 1280:1 1291:3 1319:1 1324:1 1325:1 1331:1 1333:3 1336:1 1346:1 1347:2 1348:2 1361:1 1365:1 1377:1 1389:1 1395:2 1409:2 1421:1 1446:1 1476:1 1499:1 1500:3 1511:1 1514:1 1519:1 1538:1 1556:1 1566:3 1579:1 1585:5 1590:1 1594:2 1601:1 1602:2 1603:1 1608:2 1609:1 1614:1 1625:1 1628:3 1651:1 1657:3 1671:1 1677:1 1681:1 1685:1 1690:2 1725:1 1730:1 1734:3 1739:3 1742:2 1757:1 1776:3 1780:3 1788:1 1789:1 1802:1 1807:1 1826:1 1840:1 1841:1 1855:2 1857:1 1860:1 1863:1 1873:2 1886:1 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1939:1 1951:1 1954:1 1955:1 1964:1 1970:1 1982:1 1986:1 1989:1 1997:1 2016:1 2021:1 2023:1 2032:1 2035:1 2038:1 2039:4 2052:1 2070:2 2090:1 2125:1 2132:1 2153:1 2161:2 2167:2 2169:1 2170:3 2204:1 2227:1 2232:1 2234:3 2235:1 2237:2 2269:3 2346:1 2353:1 2404:1 2405:1 2406:1 2407:2 2408:3 2413:1 2415:2 2416:1 2417:1 2420:5 2421:1 2422:2 2424:1 2427:1 2434:4 2436:3 2437:5 2450:1 2473:1 2486:1 2488:1 2508:1 2518:2 2519:1 2520:1 2525:1 2532:1 2533:2 2550:1 2556:1 2560:1 2575:1 2599:1 2602:1 2623:3 2641:1 2645:1 2657:2 2689:1 2693:1 2694:1 2705:1 2742:1 2766:1 2797:2 2812:4 2819:1 2825:3 2841:1 2842:1 2849:1 2852:2 2854:6 2856:2 2872:1 2888:2 2896:1 2900:1 2902:1 2909:3 2912:1 2943:2 2952:2 2962:1 2963:1 2965:4 2976:2 3019:4 3031:1 3039:1 3056:8 3067:7 3090:2 3099:1 3118:20 3127:1 3128:1 3151:1 3170:1 3189:1 3224:2 3232:1 3296:3 3299:1 3391:1 3403:2 3406:4 3428:8 3442:1 3454:1 3485:1 3498:5 3543:1 3565:1 3567:1 3574:1 3590:1 3613:1 3628:1 3634:1 3643:3 3649:1 3654:1 3661:1 3667:3 3711:2 3730:1 3731:1 3746:3 3764:1 3778:1 3796:1 3801:1 3803:3 3804:1 3810:1 3812:1 3813:1 3819:2 3839:1 3846:1 3867:1 3886:1 3902:1 3903:3 3918:1 3929:1 3950:1 3958:1 3959:27 3981:1 3993:2 3994:1 3995:6 4000:1 4009:1 4010:14 4011:2 4012:1 4015:3 4027:2 4042:3 4057:1 4058:3 4061:2 4063:2 4076:2 4078:1 4079:1 4116:2 4122:1 4123:3 4130:1 4134:1 4173:1 4178:1 4182:1 4183:3 4196:2 4207:2 4216:1 4223:1 4235:1 4258:1 4265:1 4266:1 4267:1 4269:1 4270:1 4285:1 4290:1 4294:1 4297:1 4301:3 4318:3 4324:1 4330:1 4368:1 4369:1 4381:1 4436:1 4439:2 4463:2 4474:1 4483:1 4486:1 4498:1 4504:1 4508:1 4509:1 4539:1 4547:1 4555:1 4557:1 4563:1 4611:1 4636:8 4650:1 4697:1 4701:1 4706:4 4715:1 4718:2 4749:3 4767:1 4773:1 4787:1 4796:1 4854:1 4855:2 4900:1 4909:1 4921:2 4927:1 4930:2 4938:1 4948:3 4959:1 4966:1 4989:2 4993:1 5058:1 5059:1 5064:1 5076:1 5092:2 5100:1 5159:1 5189:1 5201:11 5202:1 5219:1 5231:2 5241:1 5288:1 5308:3 5314:1 5320:3 5321:1 5323:3 5340:1 5344:2 5345:2 5347:5 5348:1 5351:1 5354:2 5361:1 5362:14 5363:1 5365:1 5370:2 5371:3 5376:1 5397:1 5401:2 5453:1 5467:1 5478:1 5486:1 5488:1 5491:1 5560:1 5593:3 5594:3 5603:5 5652:1 5675:2 5677:14 5684:1 5703:1 5735:1 5771:1 5774:1 5810:1 5816:1 5819:1 5830:1 5836:1 5839:1 5848:1 5856:1 5857:1 5901:1 5904:1 5908:1 5911:1 5921:1 5922:2 5943:1 5951:1 5954:1 5962:2 5965:1 5967:1 5987:2 5993:1 6018:1 6021:3 6038:2 6044:1 6061:1 6063:1 6065:1 6068:1 6079:1 6097:1 6101:1 6103:1 6118:1 6121:1 6140:1 6142:1 6199:3 6217:1 6219:3 6221:1 6227:1 6243:1 6305:2 6364:1 6368:1 6371:5 6380:1 6386:2 6410:2 6415:1 6444:1 6480:1 6490:2 6491:1 6492:1 6499:1 6528:3 6529:1 6536:1 6539:2 6540:2 6568:1 6588:1 6591:2 6596:1 6618:3 6621:1 6635:1 6636:1 6639:1 6654:1 6660:1 6721:1 6724:1 6725:1 6726:1 6727:1 6728:1 6730:1 6731:2 6734:2 6735:1 6736:3 6743:1 6744:4 6745:1 6746:1 6747:1 6756:1 6773:1 6776:1 6836:1 6872:1 6878:1 6886:1 6895:2 6901:1 6930:1 6932:1 6970:1 6977:1 6984:1 6994:1 7000:2 7019:1 7027:5 7032:3 7035:1 7039:1 7046:1 7047:1 7060:2 7080:1 7083:1 7114:1 7115:1 7126:1 7148:1 7192:1 7201:2 7204:1 7216:3 7222:1 7231:1 7236:2 7257:1 7267:1 7273:1 7308:1 7322:1 7328:1 7335:2 7342:1 7384:1 7407:1 7412:1 7432:2 7433:1 7456:1 7522:2 7542:1 7548:1 7573:1 7574:1 7577:5 7585:2 7601:1 7603:1 7610:1 7612:1 7625:1 7653:1 7769:1 7774:1 7779:1 7788:3 7830:1 7840:3 7874:2 7915:2 7926:1 7932:1 7993:1 7997:2 7998:1 8005:1 8023:1 8027:1 8031:3 8054:1 8064:2 8065:4 8066:2 8084:1 8089:2 8097:1 8100:1 8121:1 8122:1 8128:1 8131:30 8133:1 8140:1 8151:7 8152:16 8161:1 8170:1 8207:1 8208:3 8238:1 8254:1 8273:1 8279:1 8302:2 8307:1 8362:3 8365:5 8372:1 8413:1 8415:3 8433:1 8450:1 8478:1 8492:1 8521:1 8523:3 8540:5 8546:1 8559:1 8570:2 8590:1 8597:1 8603:1 8610:1 8623:1 8624:1 8633:12 8651:1 8664:2 8665:1 8687:2 8718:1 8724:1 8733:2 8742:1 8748:1 8753:2 8760:3 8779:1 8789:1 8793:3 8798:3 8803:1 8816:2 8820:2 8830:1 8840:2 8842:1 8845:1 8850:1 8857:1 8858:2 8863:2 8873:1 8884:2 8887:2 8895:1 8899:1 8915:2 8932:1 8938:1 8942:3 8959:1 8966:1 8979:1 8980:2 8983:1 8984:3 8985:1 8986:2 8987:3 8990:1 8995:1 8998:2 9000:2 9004:2 9020:1 9027:1 9035:2 9039:2 9040:1 9041:1 9046:1 9058:1 9061:1 9072:1 9075:2 9112:4 9135:1 9139:3 9146:1 9149:1 9151:1 9164:1 9169:1 9204:1 9205:1 9209:1 9215:2 9225:2 9227:1 9268:3 9269:2 9273:3 9276:1 9277:2 9280:3 9286:2 9301:1 9302:1 9304:4 9316:1 9339:1 9345:1 9420:2 9439:2 9442:1 9450:1 9453:1 9463:1 9471:1 9478:1 9480:1 9504:1 9506:1 9561:3 9589:1 9592:1 9594:3 9608:1 9618:5 9640:1 9646:1 9651:1 9658:1 9662:1 9663:1 9677:1 9686:1 9695:3 9697:1 9715:1 9718:1 9732:1 9776:1 9781:1 9809:1 9840:1 9870:1 9874:1 9877:1 9882:1 9888:1 9889:2 9909:1 9928:1 9930:1 9937:1 9940:1 9942:1 9972:1 9973:1 9977:2 9983:1 9994:1 10037:14 10043:1 10069:1 10078:3 10084:2 10109:1 10117:1 10128:1 10130:2 10146:1 10169:12 10185:1 10190:1 10211:1 10223:4 10235:1 10238:3 10239:1 10240:1 10259:1 10269:1 10275:1 10317:1 10321:3 10322:1 10356:5 10362:2 10363:3 10364:1 10371:1 10379:1 10387:2 10393:1 10395:1 10400:1 10406:1 10410:3 10413:1 10415:1 10416:1 10423:1 10446:3 10450:1 10468:1 10470:2 10493:1 10533:1 10549:2 10552:1 10577:8 10580:1 10581:4 10596:1 10601:1 10651:3 10698:2 10707:1 10718:1 10731:1 10757:1 10763:1 10780:4 10784:1 10791:1 10809:1 10830:1 10868:1 10880:2 10892:3 10898:1 10903:1 10907:1 10917:1 10923:1 10935:1 10939:1 10957:2 10962:3 10973:1 10998:1 11009:2 11026:2 11028:2 11031:1 11047:5 11060:2 11061:3 11063:2 11070:1 11081:1 11084:1 11087:1 11106:2 11120:1 11126:1 11134:4 11148:2 11156:1 11160:2 11166:6 11230:1 11231:1 11234:1 11237:1 11260:2 11261:2 11262:1 11268:1 11305:1 11315:1 11359:1 11366:1 11371:1 11388:2 11389:1 11400:5 11417:3 11418:5 11477:3 11482:1 11499:1 11512:2 11528:1 11529:1 11535:1 11556:3 11569:2 11597:1 11622:1 11668:1 11673:1 11678:1 11680:1 11683:1 11684:3 11703:1 11710:1 11718:1 11721:1 11740:1 11745:1 11753:1 11754:1 11779:2 11810:2 11819:1 11830:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11885:1 11887:3 11918:1 11923:1 11926:5 11929:1 11961:1 11985:1 11986:1 11991:1 11994:2 12009:1 12029:1 12045:1 12056:1 12065:3 12066:2 12077:3 12095:3 12098:2 12120:1 12130:1 12146:3 12155:4 12157:1 12170:1 12181:1 12182:1 12189:1 12193:5 12194:1 12200:1 12202:5 12210:1 12218:1 12228:4 12253:2 12266:4 12270:1 12275:2 12293:1 12314:1 12325:4 12333:1 12335:1 12337:1 12373:1 12375:1 12385:3 12406:1 12412:1 12423:1 12440:1 12470:2 12471:1 12508:1 12539:1 12555:1 12594:2 12609:1 12625:1 12628:1 12629:1 12632:1 12654:3 12655:3 12656:14 12660:4 12679:1 12698:1 12705:1 12716:2 12766:1 12788:1 12815:1 12824:5 12825:2 12841:1 12846:2 12902:3 12906:1 12929:1 12936:1 12943:2 12947:1 12953:1 12961:1 12976:1 12992:1 13011:1 13015:1 13019:1 13035:3 13054:1 13057:1 13092:1 13095:2 13107:1 13110:1 13117:1 13129:1 13166:1 13207:1 13227:6 13240:1 13243:1 13248:1 13276:2 13277:3 13304:1 13307:1 13342:1 13371:1 13376:2 13404:1 13424:1 13440:1 13441:1 13443:2 13472:1 13486:1 13488:1 13494:1 13522:1 13580:1 13597:1 13614:1 13623:1 13624:2 13649:1 13656:1 13661:1 13673:1 13681:1 13684:1 13700:2 13711:1 13714:2 13720:1 13735:1 13739:1 13740:1 13768:1 13775:1 13776:1 13780:2 13816:1 13821:1 13832:1 13833:2 13835:1 13838:5 13842:3 13843:1 13851:1 13853:1 13858:2 13873:2 13875:1 13878:1 13883:3 13915:7 13916:1 13923:1 13926:1 13930:1 13931:2 13944:1 13958:1 13981:2 13993:2 13994:1 14011:3 14028:1 14037:1 14050:1 14063:3 14078:1 14086:3 14112:1 14113:2 14114:2 14129:1 14145:1 14152:1 14157:2 14177:1 14189:2 14221:1 14228:1 14234:1 14237:1 14238:2 14239:1 14241:1 14275:1 14296:1 14298:1 14307:1 14310:1 14311:1 14315:2 14334:1 14335:1 14366:6 14377:1 14422:1 14426:1 14445:1 14446:1 14450:1 14471:2 14472:1 14477:3 14503:1 14522:1 14529:1 14533:1 14544:2 14546:3 14552:2 14553:4 14563:1 14584:1 14592:3 14610:1 14622:1 14642:2 14644:1 14649:1 14650:1 14654:1 14670:2 14704:1 14780:1 14785:2 14806:1 14833:1 14845:1 14862:1 14887:1 14901:1 14921:1 14922:1 14935:1 14958:1 14976:1 14986:1 14987:1 14997:1 15002:1 15008:3 15010:1 15011:1 15019:1 15032:2 15060:1 15068:1 15072:1 15096:2 15120:1 15127:1 15141:1 15166:1 15174:1 15181:1 15190:1 15196:4 15216:1 15233:1 15247:1 15252:1 15276:1 15319:3 15364:1 15476:1 15487:1 15507:2 15538:3 15547:2 15548:1 15552:1 15554:1 15556:1 15573:1 15577:1 15597:1 15605:1 15625:1 15643:2 15655:3 15672:1 15693:1 15695:1 15697:1 15702:1 15725:1 15734:1 15771:1 15772:1 15781:1 15788:1 15805:1 15868:1 15875:3 15876:2 15881:1 15907:4 15908:1 15911:1 15951:3 15955:1 15961:1 15984:1 15999:1 16001:1 16008:1 16018:1 16021:3 16028:1 16032:2 16038:1 16054:1 16066:1 16073:2 16096:1 16111:1 16121:1 16140:1 16148:2 16167:7 16172:5 16174:1 16181:1 16207:2 16221:1 16222:2 16235:3 16255:1 16270:1 16277:1 16303:2 16307:1 16309:1 16317:4 16325:1 16336:1 16352:1 16353:3 16356:1 16357:5 16358:1 16363:1 16367:1 16368:1 16369:1 16379:3 16386:4 16467:1 16480:1 16484:2 16495:2 16498:1 16501:2 16507:3 16530:2 16532:1 16561:2 16564:2 16578:1 16593:2 16610:1 16623:1 16638:1 16646:7 16659:2 16660:2 16673:1 16674:1 16677:1 16678:1 16692:1 16706:14 16734:1 16739:5 16743:1 16761:2 16775:40 16794:3 16831:1 16861:1 16864:1 16867:2 16908:1 16913:1 16919:1 16920:3 16921:1 16927:2 16931:1 16944:1 16957:1 16961:1 16965:1 16980:1 16981:1 17010:1 17013:1 17047:1 17055:5 17090:2 17095:1 17116:1 17130:1 17135:1 17153:1 17192:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:2 17253:1 17294:1 17295:1 17317:1 17322:1 17326:1 17336:1 17342:3 17347:1 17369:1 17372:3 17392:3 17414:1 17415:1 17422:1 17424:2 17426:1 17427:1 17435:1 17438:1 17454:1 17460:9 17470:1 17500:1 17514:2 17521:1 17553:1 17559:1 17564:1 17582:1 17583:1 17585:3 17587:1 17589:2 17593:1 17596:1 17613:1 17625:1 17635:1 17641:1 17645:2 17646:2 17718:1 17788:1 17797:2 17800:1 17816:1 17821:1 17835:1 17843:2 17844:1 17849:1 17859:1 17871:1 17875:1 17877:3 17881:1 17889:1 17897:1 17906:3 17912:1 17932:1 17933:1 17952:1 17957:1 17972:1 17998:2 18006:1 18011:1 18034:4 18099:1 18110:1 18112:1 18115:1 18129:3 18131:1 18134:1 18136:1 18144:1 18147:2 18153:1 18154:1 18171:1 18174:1 18187:1 18188:1 18197:2 18223:1 18248:1 18249:2 18277:1 18330:2 18338:1 18342:1 18355:1 18410:1 18412:1 18415:1 18417:2 18421:2 18423:1 18442:8 18460:1 18474:1 18478:1 18506:1 18517:1 18524:1 18543:1 18544:1 18546:1 18559:1 18565:1 18584:1 18589:1 18602:1 18625:1 18629:2 18633:4 18634:1 18636:1 18678:1 18707:1 18748:2 18749:1 18757:1 18781:1 18797:1 18815:1 18816:1 18819:2 18831:2 18838:1 18855:1 18872:1 18873:3 18922:1 18932:1 18956:3 18966:1 18977:3 18980:1 18984:1 18987:3 19006:1 19007:1 19016:1 19018:1 19079:1 19098:1 19113:1 19114:7 19118:1 19125:1 19160:1 19170:1 19182:1 19191:2 19193:1 19210:1 19217:1 19225:1 19241:1 19244:3 19250:2 19265:2 19272:1 19276:2 19315:1 19323:2365 19328:1 19342:4 19343:1 19348:2 19385:1 19395:1 19410:1 19413:3 19421:1 19452:3 19473:2 19482:1 19507:3 19509:1 19530:3 19536:1 19539:3 19541:1 19543:1 19584:1 19586:1 19632:1 19636:3 19638:1 19664:1 19696:2 19708:1 19721:1 19733:1 19743:1 19751:1 19756:1 19758:1 19804:1 19817:2 19820:1 19831:4 19845:1 19856:1 19857:1 19918:1 19919:1 19933:3 19984:1 20004:1 20024:1 20032:2 20048:1 20050:1 20057:2 20074:3 20086:2 20090:1 20091:3 20095:1 20107:1 20121:10 20144:1 20146:1 20147:11 20159:1 20177:1 20178:3 20181:1 20197:1 20212:1 20216:3 20236:1 20243:1 20248:1 20250:2 20252:1 20255:1 20260:1 20262:1 20277:2 20279:1 20283:1 20287:1 20313:1 20319:2 20326:1 20339:1 20349:3 20363:1 20387:1 20389:1 20392:1 20447:1 20451:1 20458:1 20477:1 20492:1 20502:1 20523:1 20524:9 20527:1 20565:1 20573:1 20596:1 20605:1 20613:1 20619:1 20623:5 20648:1 20669:2 20688:1 20691:1 20714:1 20720:1 20722:1 20724:1 20725:1 20731:1 20779:4 20782:1 20787:1 20789:1 20796:1 20811:2 20814:1 20839:1 20849:1 20853:1 20871:1 20877:1 20894:1 20897:1 20907:1 20908:2 20918:2 20923:6 20972:1 20976:1 20987:1 20996:9 21002:1 21014:2 21017:2 21030:1 21033:1 21050:9 21066:1 21088:1 21103:1 21105:1 21131:1 21144:1 21175:1 21182:1 21196:2 21214:4 21216:1 21225:1 21231:1 21258:2 21301:3 21316:1 21328:1 21331:1 21339:1 21343:1 21344:1 21389:1 21392:1 21451:2 21468:1 21474:1 21495:1 21500:1 21511:1 21528:1 21529:1 21532:1 21554:1 21575:1 21596:3 21625:2 21630:1 21634:1 21638:1 21643:9 21660:3 21663:1 21664:1 21674:1 21684:4 21690:1 21708:3 21722:1 21755:2 21769:2 21773:1 21789:2 21797:1 21798:1 21822:6 21829:1 21830:2 21835:1 21852:1 21874:1 21891:1 21896:1 21911:1 21915:1 21932:2 21936:1 21943:1 21949:1 21962:3 21980:1 21986:1 21987:1 21992:1 22003:1 22041:1 22048:1 22050:1 22106:1 22147:1 22151:1 22154:4 22157:2 22159:2 22170:3 22179:1 22181:1 22183:1 22228:1 22232:1 22236:2 22241:2 22251:1 22268:1 22281:1 22285:1 22286:1 22298:1 22300:5 22305:2 22309:1 22332:1 22349:1 22354:1 22384:2 22389:1 22396:1 22405:1 22406:1 22425:2 22427:9 22430:1 22447:1 22456:1 22457:1 22461:1 22469:1 22501:3 22515:1 22534:1 22538:2 22540:1 22542:1 22549:2 22563:1 22603:1 22607:4 22614:2 22618:2 22621:1 22671:1 22693:2 22702:1 22705:7 22712:2 22720:1 22723:1 22734:2 22735:1 22736:1 22740:1 22746:1 22748:2 22750:1 22756:1 22757:1 22769:2 22772:2 22777:1 22795:2 22833:4 22834:1 22856:1 22866:1 22874:2 22877:1 22895:1 22901:1 22909:4 22917:1 22926:1 22937:1 22985:14 22987:1 22990:1 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:2 23093:1 23096:2 23102:1 23112:2 23125:2 23133:1 23136:8 23153:2 23160:3 23199:1 23209:1 23212:1 23215:2 23221:1 23225:1 23236:1 23244:1 23246:2 23256:1 23269:2 23271:1 23284:5 23302:3 23317:2 23325:1 23336:1 23360:1 23376:1 23390:1 23445:1 23454:3 23459:1 23462:1 23481:1 23496:3 23517:1 23554:1 23570:1 23575:1 23579:11 23581:1 23583:2 23600:1 23611:1 23629:1 23632:1 23639:1 23648:1 23652:1 23655:1 23662:1 23665:1 23666:2 23673:1 23695:1 23699:3 23716:1 23717:5 23721:1 23750:1 23765:2 23767:1 23788:2 23807:1 23819:2 23859:1 23878:2 23879:1 23891:2 23955:1 23968:1 23971:3 23978:1 23987:1 24002:1 24003:1 24012:1 24015:1 24034:1 24049:1 24087:1 24090:2 24103:1 24108:1 24113:1 24119:2 24124:3 24128:1 24168:1 24177:1 24183:1 24187:3 24188:1 24207:5 24216:1 24231:1 24232:1 24235:1 24237:2 24241:2 24247:1 24273:2 24280:1 24281:2 24283:1 24293:1 24329:4 24336:1 24340:14 24391:1 24408:1 24419:1 24432:1 24441:1 24444:1 24449:1 24478:1 24504:2 24509:1 24533:1 24534:1 24538:1 24571:1 24591:1 24653:1 24656:2 24668:2 24702:4 24714:1 24717:1 24761:1 24777:1 24797:1 24814:3 24827:2 24833:1 24838:1 24841:1 24844:2 24845:1 24859:1 24881:1 24921:1 24932:1 24939:1 24944:1 24970:1 24976:1 25004:1 25005:3 25014:1 25021:1 25023:1 25027:1 25049:1 25073:2 25122:1 25147:3 25158:1 25181:1 25194:5 25252:1 25264:1 25273:1 25275:1 25285:2 25287:4 25288:1 25311:1 25319:1 25325:1 25327:2 25335:1 25339:3 25347:2 25384:1 25385:2 25398:1 25415:1 25419:2 25431:1 25447:1 25468:1 25471:1 25472:1 25495:4 25503:2 25507:1 25510:1 25514:1 25526:1 25561:1 25570:1 25587:1 25597:1 25598:1 25623:1 25627:1 25631:1 25634:1 25643:1 25673:1 25676:1 25684:1 25688:1 25718:1 25722:1 25740:2 25778:3 25797:4 25823:1 25832:1 25852:1 25860:1 25871:1 25872:1 25878:2 25884:1 25893:3 25918:2 25921:1 25922:1 25966:1 25980:3 25998:1 26004:1 26058:1 26073:1 26076:1 26097:4 26124:1 26150:2 26156:3 26159:1 26167:1 26172:3 26207:1 26226:1 26232:1 26257:1 26316:1 26318:2 26320:1 26322:4 26324:3 26331:1 26356:1 26371:1 26372:1 26376:1 26377:2 26403:1 26413:1 26415:4 26429:3 26435:5 26436:1 26445:1 26460:1 26463:1 26472:1 26489:2 26513:5 26518:1 26524:1 26525:1 26534:1 26538:2 26564:1 26589:3 26627:4 26652:2 26653:2 26681:2 26689:1 26712:1 26717:1 26728:3 26754:1 26782:3 26808:1 26835:1 26842:2 26844:1 26865:1 26868:1 26871:2 26891:1 26893:1 26898:1 26912:1 26915:1 26920:1 26934:1 26935:1 26938:1 26949:2 26955:1 26956:1 26964:1 26977:5 26981:1 26982:1 26985:1 26989:1 27000:1 27008:2 27010:1 27056:1 27065:1 27078:1 27099:1 27113:1 27115:3 27138:7 27144:1 27178:1 27185:1 27192:2 27212:1 27252:1 27257:1 27266:1 27280:3 27295:1 27308:1 27314:1 27332:1 27407:2 27422:5 27424:2 27431:1 27438:2 27439:1 27440:4 27441:4 27444:1 27490:2 27521:1 27531:1 27534:1 27540:2 27548:1 27552:1 27580:2 27601:1 27607:1 27621:1 27636:1 27673:1 27709:1 27718:1 27755:1 27775:1 27799:1 27809:1 27824:1 27852:1 27854:1 27863:1 27883:2 27893:1 27910:2 27939:1 27949:1 27950:1 28004:1 28005:2 28095:2 28099:3 28113:1 28118:1 28121:8 28154:1 28211:1 28223:14 28224:1 28227:3 28230:1 28258:1 28338:2 28340:3 28342:3 28343:1 28391:1 28395:1 28398:1 28405:2 28410:1 28413:1 28421:1 28429:1 28430:1 28432:1 28437:1 28443:1 28472:2 28482:1 28499:1 28514:1 28524:2 28526:1 28544:1 28548:1 28551:1 28574:1 28581:1 28593:1 28644:1 28659:1 28674:1 28675:1 28684:1 28696:3 28754:5 28762:1 28771:1 28795:1 28798:1 28839:3 28848:3 28866:1 28870:1 28874:1 28878:1 28912:1 28928:1 28931:3 28939:1 28962:1 28974:1 29000:1 29004:4 29041:1 29069:1 29111:1 29112:1 29130:4 29135:1 29143:1 29155:1 29179:1 29182:2 29183:21 29184:2 29186:2 29189:3 29192:1 29203:1 29220:1 29221:10 29224:1 29234:1 29239:1 29240:1 29248:1 29276:1 29277:1 29281:2 29289:1 29290:1 29310:1 29325:1 29334:4 29342:4 29348:1 29377:3 29382:2 29394:1 29429:1 29430:1 29454:1 29486:1 29495:2 29536:1 29537:1 29573:1 29575:1 29581:1 29587:2 29589:1 29591:4 29595:1 29600:1 29620:1 29624:1 29636:1 29655:6 29663:1 29666:3 29718:1 29720:1 29741:3 29745:6 29747:1 29749:1 29754:1 29777:2 29795:1 29809:1 29812:1 29841:1 29848:1 29860:1 29891:3 29901:1 29904:1 29905:1 29932:2 29936:3 29942:1 29950:4 29957:1 29969:2 30003:1 30011:1 30056:1 30080:1 30104:1 30107:1 30129:4 30160:2 30164:1 30201:1 30210:2 30216:1 30222:3 30241:1 30252:1 30269:1 30285:2 30290:1 30292:1 30313:1 30325:1 30341:1 30346:6 30348:1 30354:1 30364:2 30429:1 30435:4 30441:2 30507:1 30517:1 30518:1 30524:1 30525:1 30527:3 30533:1 30539:1 30576:1 30586:1 30588:1 30592:1 30593:1 30595:1 30599:1 30609:2 30650:1 16 24:1 26:1 62:1 69:1 75:4 91:1 94:1 121:1 136:1 151:1 160:1 190:1 206:1 220:1 224:4 251:1 266:1 285:1 294:3 315:1 324:1 334:2 335:2 336:1 360:1 368:1 369:1 375:1 407:1 430:3 436:1 440:1 453:1 471:1 477:2 489:1 493:1 495:1 502:1 503:1 505:1 510:1 511:1 546:1 547:1 564:1 625:1 637:3 647:1 660:2 666:1 673:4 679:1 688:1 694:1 705:1 710:1 722:1 730:1 737:1 748:1 778:2 795:1 798:1 815:1 836:1 845:2 853:1 857:1 878:1 882:1 895:1 898:1 931:1 939:1 943:1 949:1 951:2 966:2 971:3 974:1 975:5 976:2 1003:1 1029:3 1032:2 1038:1 1065:2 1069:1 1107:2 1108:1 1131:1 1134:1 1137:1 1155:1 1161:1 1170:1 1171:1 1217:3 1221:1 1224:1 1233:1 1242:2 1253:1 1254:4 1267:1 1280:1 1291:3 1319:1 1324:1 1325:1 1331:1 1333:3 1336:1 1346:1 1347:2 1348:2 1361:1 1365:1 1377:1 1389:1 1395:2 1409:2 1421:1 1422:1 1446:2 1476:1 1499:1 1500:3 1511:1 1514:1 1519:1 1538:1 1556:1 1566:5 1579:1 1585:5 1590:1 1594:2 1601:1 1602:2 1603:1 1608:2 1609:1 1614:1 1625:1 1628:3 1651:1 1657:3 1671:1 1677:1 1681:1 1685:1 1690:2 1725:1 1730:1 1734:3 1739:3 1742:2 1757:1 1776:3 1780:3 1788:1 1789:1 1802:1 1807:1 1826:1 1840:1 1841:1 1855:2 1857:1 1860:1 1863:1 1873:2 1886:2 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1939:1 1951:1 1954:1 1955:1 1964:1 1970:1 1982:1 1986:1 1989:1 1997:1 1999:1 2016:1 2021:1 2023:1 2032:1 2035:1 2038:1 2039:4 2052:1 2069:1 2070:2 2090:1 2125:1 2132:1 2153:1 2161:2 2167:2 2169:1 2170:3 2204:1 2227:1 2232:1 2234:3 2235:1 2237:2 2269:3 2296:1 2337:1 2346:1 2353:1 2363:1 2404:1 2405:1 2406:1 2407:2 2408:3 2413:1 2415:2 2416:1 2417:1 2420:5 2421:1 2422:2 2424:1 2427:1 2434:4 2436:3 2437:5 2450:1 2473:1 2486:1 2488:1 2495:1 2508:1 2518:2 2519:1 2520:1 2525:1 2532:1 2533:2 2550:1 2556:1 2560:1 2575:1 2599:1 2602:1 2623:3 2633:1 2641:1 2645:1 2657:2 2681:1 2689:1 2693:1 2694:1 2705:1 2742:1 2747:1 2766:1 2797:2 2812:4 2819:1 2825:3 2841:1 2842:1 2849:1 2852:2 2854:6 2856:2 2872:1 2888:2 2896:1 2900:1 2902:1 2909:3 2912:1 2943:2 2952:2 2962:1 2963:1 2965:4 2976:2 3019:4 3031:1 3039:1 3056:9 3067:7 3090:2 3099:1 3118:20 3127:1 3128:1 3151:1 3152:1 3170:1 3189:1 3224:2 3232:1 3296:3 3299:1 3318:1 3378:1 3391:1 3403:2 3406:4 3428:9 3442:1 3454:1 3485:1 3498:5 3543:1 3565:1 3567:1 3574:1 3590:1 3609:1 3613:1 3628:1 3634:1 3643:3 3649:1 3654:1 3661:1 3667:3 3711:2 3730:1 3731:1 3746:3 3764:1 3778:1 3796:1 3801:1 3803:3 3804:1 3810:1 3812:1 3813:1 3819:2 3839:1 3846:1 3867:1 3886:1 3902:1 3903:3 3913:1 3918:1 3929:1 3950:1 3958:2 3959:28 3981:1 3993:2 3994:1 3995:7 4000:1 4009:1 4010:16 4011:2 4012:1 4015:3 4027:2 4042:3 4057:1 4058:3 4061:2 4063:2 4076:2 4078:1 4079:1 4116:2 4122:1 4123:3 4130:1 4134:1 4173:1 4178:1 4182:1 4183:3 4196:2 4207:2 4216:1 4219:1 4223:1 4235:1 4258:1 4265:1 4266:1 4267:1 4269:1 4270:1 4285:1 4290:1 4294:1 4297:1 4301:3 4318:3 4324:1 4330:1 4368:1 4369:1 4381:1 4436:1 4439:2 4463:2 4474:1 4483:1 4486:1 4498:1 4504:1 4508:1 4509:1 4539:1 4547:1 4555:1 4557:1 4563:1 4611:1 4636:8 4650:1 4697:1 4701:1 4706:4 4715:1 4718:2 4749:3 4767:1 4773:1 4787:1 4796:1 4854:1 4855:2 4900:1 4909:1 4921:2 4927:1 4930:2 4938:1 4948:3 4959:1 4966:1 4989:2 4993:1 5058:1 5059:1 5062:1 5064:1 5076:1 5092:2 5100:1 5159:1 5189:1 5201:11 5202:1 5211:1 5219:1 5231:2 5241:1 5260:2 5275:1 5288:1 5308:3 5314:1 5320:3 5321:1 5323:4 5340:1 5344:2 5345:2 5347:5 5348:1 5351:1 5354:2 5356:1 5361:1 5362:14 5363:1 5365:1 5370:2 5371:3 5376:1 5397:1 5401:2 5453:1 5467:1 5478:1 5486:1 5488:1 5491:1 5560:1 5593:3 5594:3 5603:5 5652:1 5670:1 5675:2 5677:14 5684:1 5703:1 5712:1 5735:1 5771:1 5774:1 5810:1 5816:1 5819:1 5830:1 5836:1 5839:1 5848:1 5856:1 5857:1 5901:1 5904:1 5908:1 5911:1 5921:1 5922:2 5943:1 5951:1 5954:1 5962:2 5965:1 5967:1 5987:2 5993:1 6018:1 6021:3 6038:2 6044:1 6061:1 6063:1 6065:1 6068:1 6079:1 6097:1 6101:1 6103:1 6118:1 6121:1 6140:1 6142:1 6199:3 6217:1 6219:3 6221:1 6227:1 6243:1 6305:2 6364:1 6368:1 6371:5 6380:1 6386:2 6410:2 6415:1 6444:1 6465:1 6480:1 6490:2 6491:1 6492:1 6499:1 6528:3 6529:1 6536:1 6539:2 6540:2 6568:1 6588:1 6591:2 6596:1 6618:3 6621:1 6635:1 6636:1 6639:1 6648:1 6654:1 6660:1 6721:2 6724:1 6725:1 6726:1 6727:1 6728:1 6730:1 6731:2 6734:2 6735:3 6736:3 6743:1 6744:5 6745:1 6746:1 6747:1 6756:1 6773:1 6776:1 6836:1 6872:1 6878:1 6886:1 6895:2 6901:1 6930:1 6932:1 6970:1 6977:1 6984:1 6994:1 7000:2 7019:1 7026:1 7027:5 7032:3 7035:1 7039:1 7046:1 7047:1 7060:2 7080:1 7083:2 7114:1 7115:1 7126:1 7148:1 7166:1 7192:1 7200:1 7201:2 7204:1 7216:3 7222:1 7231:1 7236:2 7257:1 7267:1 7273:1 7308:1 7322:1 7328:1 7335:2 7342:1 7384:1 7407:1 7412:1 7432:2 7433:1 7456:1 7522:2 7542:1 7548:1 7556:1 7573:1 7574:1 7577:5 7585:2 7601:1 7603:1 7610:1 7612:1 7625:1 7635:1 7653:1 7769:1 7774:1 7779:1 7788:3 7830:1 7840:3 7874:2 7915:2 7926:1 7932:1 7993:1 7997:2 7998:1 8005:1 8023:1 8027:1 8031:3 8054:1 8064:2 8065:4 8066:2 8084:1 8089:2 8097:1 8100:1 8121:1 8122:1 8128:1 8131:30 8133:1 8140:1 8151:8 8152:16 8161:1 8164:1 8170:1 8207:1 8208:3 8238:1 8254:1 8273:1 8279:1 8302:2 8307:1 8316:1 8362:3 8365:5 8372:1 8413:1 8415:3 8433:1 8450:1 8478:1 8492:1 8521:1 8523:3 8540:5 8546:1 8559:1 8570:2 8590:1 8597:1 8603:1 8610:1 8623:1 8624:1 8633:13 8651:1 8664:2 8665:1 8687:2 8718:1 8724:1 8733:2 8742:1 8748:1 8753:2 8760:3 8779:1 8789:1 8793:3 8798:3 8803:1 8816:2 8820:2 8830:1 8840:2 8842:1 8845:1 8850:1 8857:1 8858:2 8863:2 8873:1 8884:2 8887:2 8895:1 8899:1 8915:2 8932:1 8938:1 8942:3 8959:1 8966:1 8979:1 8980:2 8983:1 8984:3 8985:1 8986:2 8987:3 8990:1 8995:1 8998:2 9000:2 9004:2 9020:1 9027:1 9035:2 9039:2 9040:1 9041:1 9046:1 9058:1 9061:1 9072:1 9075:2 9112:4 9135:1 9139:3 9146:1 9149:1 9151:1 9164:1 9169:1 9204:1 9205:1 9209:1 9215:2 9225:2 9227:1 9268:3 9269:2 9273:3 9274:1 9276:1 9277:2 9280:3 9286:2 9301:1 9302:1 9304:4 9316:1 9339:2 9345:1 9420:2 9439:2 9442:1 9450:1 9453:1 9463:1 9471:1 9478:1 9480:1 9504:1 9506:1 9561:3 9589:1 9592:1 9594:3 9608:1 9618:5 9640:1 9646:2 9651:1 9658:1 9662:1 9663:1 9677:1 9686:1 9695:3 9697:1 9715:1 9718:1 9721:1 9732:1 9776:1 9781:1 9809:1 9840:1 9870:1 9874:1 9877:1 9882:1 9888:1 9889:2 9909:1 9928:1 9930:1 9937:1 9940:1 9942:1 9972:1 9973:1 9977:2 9983:1 9994:1 10037:14 10043:1 10069:2 10078:3 10084:2 10085:1 10109:1 10117:1 10128:1 10130:2 10146:1 10169:13 10185:1 10190:1 10211:1 10223:4 10229:1 10235:1 10238:3 10239:1 10240:1 10259:1 10269:1 10275:1 10317:1 10321:3 10322:1 10356:6 10362:2 10363:3 10364:2 10371:1 10379:1 10387:2 10393:2 10395:1 10400:1 10406:1 10410:3 10413:1 10415:1 10416:1 10423:1 10446:3 10450:2 10468:1 10470:2 10493:1 10533:1 10547:1 10549:3 10552:1 10577:8 10580:1 10581:4 10596:1 10601:1 10651:3 10698:2 10707:1 10718:1 10731:1 10757:1 10763:1 10780:4 10784:1 10791:1 10809:1 10830:1 10868:1 10880:2 10892:3 10898:1 10903:1 10907:1 10917:1 10923:1 10935:1 10939:1 10957:2 10962:3 10973:1 10998:1 11009:2 11026:2 11028:2 11031:1 11040:1 11047:5 11060:2 11061:3 11063:2 11070:1 11081:1 11084:1 11087:1 11105:1 11106:2 11120:1 11126:1 11134:4 11148:2 11156:1 11160:2 11166:6 11230:1 11231:1 11234:1 11237:1 11260:2 11261:2 11262:1 11268:1 11305:1 11315:1 11359:1 11366:1 11371:1 11388:2 11389:1 11400:5 11417:3 11418:5 11430:1 11477:3 11482:1 11499:1 11512:2 11528:1 11529:1 11535:1 11556:3 11569:2 11597:1 11622:1 11668:1 11673:1 11678:1 11680:1 11683:1 11684:3 11703:1 11710:1 11718:1 11721:2 11740:1 11745:1 11753:1 11754:1 11779:2 11810:2 11819:1 11830:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11885:1 11887:3 11918:1 11923:1 11926:5 11929:1 11961:1 11985:1 11986:1 11991:1 11994:2 12009:1 12029:1 12045:1 12056:1 12065:3 12066:2 12077:3 12081:1 12095:3 12098:2 12120:1 12130:1 12135:1 12146:3 12155:4 12157:1 12170:1 12181:1 12182:1 12189:1 12193:5 12194:1 12200:1 12202:5 12210:1 12218:1 12228:4 12253:2 12266:4 12270:1 12275:2 12293:1 12314:1 12325:4 12333:1 12335:1 12337:1 12373:1 12375:1 12385:3 12406:1 12412:1 12423:1 12440:1 12470:2 12471:1 12508:1 12539:1 12555:1 12594:2 12609:1 12625:1 12628:1 12629:1 12632:1 12654:3 12655:3 12656:14 12660:4 12679:1 12698:1 12705:1 12716:2 12745:1 12766:1 12788:1 12815:1 12824:5 12825:2 12841:1 12846:2 12902:3 12906:1 12929:1 12936:1 12943:2 12947:1 12953:1 12961:1 12976:1 12992:1 13011:1 13015:1 13019:1 13035:3 13054:1 13057:1 13092:1 13095:2 13107:1 13110:1 13117:1 13129:1 13166:1 13207:1 13227:6 13240:1 13243:1 13248:1 13276:2 13277:3 13304:1 13307:1 13342:1 13371:1 13376:2 13404:1 13424:1 13440:1 13441:1 13443:2 13472:1 13486:1 13488:1 13494:1 13522:1 13580:1 13597:1 13614:1 13623:1 13624:2 13649:1 13652:1 13656:1 13661:1 13673:1 13681:1 13684:1 13700:2 13711:1 13714:2 13720:1 13735:1 13739:1 13740:1 13768:1 13775:1 13776:1 13780:2 13816:1 13821:1 13832:1 13833:2 13835:1 13838:5 13842:3 13843:1 13851:1 13853:1 13858:2 13873:2 13875:1 13878:1 13883:3 13915:7 13916:1 13923:1 13926:1 13930:1 13931:2 13944:1 13958:1 13981:2 13993:2 13994:1 14011:3 14028:1 14037:1 14050:1 14063:3 14078:1 14086:4 14112:1 14113:2 14114:2 14129:1 14145:1 14152:1 14157:2 14177:1 14189:2 14221:1 14228:1 14234:1 14237:1 14238:2 14239:1 14241:1 14274:1 14275:1 14296:1 14298:1 14307:1 14310:1 14311:1 14315:2 14334:1 14335:1 14366:6 14377:1 14422:1 14426:1 14445:1 14446:1 14450:1 14471:2 14472:1 14477:3 14503:1 14522:1 14529:1 14533:1 14544:2 14546:3 14552:2 14553:4 14563:1 14584:1 14592:3 14610:1 14622:1 14642:2 14644:1 14649:1 14650:1 14654:1 14670:2 14699:1 14704:1 14780:1 14785:2 14806:1 14833:1 14845:1 14862:1 14887:1 14901:1 14921:1 14922:1 14935:1 14958:1 14976:1 14986:1 14987:1 14997:1 15002:1 15008:3 15010:1 15011:1 15019:1 15020:1 15032:2 15060:1 15068:1 15072:1 15088:1 15096:2 15120:1 15127:1 15141:1 15166:1 15174:1 15181:1 15190:1 15196:4 15216:1 15233:1 15247:1 15252:1 15276:1 15319:3 15364:1 15476:1 15487:1 15507:2 15538:3 15547:2 15548:1 15552:1 15554:1 15556:1 15573:1 15577:1 15597:1 15605:1 15625:1 15643:2 15655:3 15672:1 15693:1 15695:1 15697:1 15702:1 15725:1 15734:1 15771:1 15772:1 15775:1 15781:1 15788:1 15805:1 15814:1 15868:1 15875:3 15876:2 15881:1 15907:4 15908:1 15911:1 15933:1 15951:3 15955:1 15961:1 15962:1 15968:1 15984:1 15999:1 16001:1 16008:1 16018:1 16021:3 16028:1 16032:2 16038:1 16054:1 16066:1 16073:2 16096:1 16111:1 16121:1 16140:1 16148:2 16167:7 16172:6 16174:1 16181:1 16207:2 16221:1 16222:2 16235:3 16255:1 16270:1 16277:1 16303:2 16307:1 16309:1 16317:4 16325:1 16336:1 16352:1 16353:3 16356:2 16357:5 16358:1 16363:1 16367:1 16368:1 16369:1 16378:1 16379:4 16386:4 16467:1 16480:1 16484:2 16495:2 16498:1 16501:2 16507:3 16519:1 16530:2 16532:1 16561:2 16564:2 16578:1 16593:2 16610:1 16623:1 16638:2 16646:7 16659:2 16660:2 16673:1 16674:1 16677:1 16678:1 16692:1 16697:1 16706:14 16734:1 16739:5 16740:1 16743:1 16761:2 16775:43 16794:3 16831:1 16861:1 16864:1 16866:1 16867:2 16908:1 16913:1 16915:1 16919:2 16920:3 16921:1 16927:2 16931:1 16944:1 16957:1 16961:1 16965:1 16980:1 16981:1 17010:1 17013:1 17047:1 17055:5 17075:1 17090:2 17095:1 17116:1 17130:1 17135:1 17153:1 17192:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:2 17253:1 17294:1 17295:1 17317:1 17322:1 17326:1 17336:1 17342:3 17347:1 17369:1 17372:3 17392:3 17414:1 17415:1 17422:1 17424:2 17426:1 17427:1 17435:1 17438:1 17454:1 17460:9 17470:1 17500:1 17514:2 17521:1 17553:1 17559:1 17564:1 17582:1 17583:1 17585:3 17587:1 17589:2 17593:1 17596:1 17608:1 17613:1 17625:1 17635:1 17641:1 17645:2 17646:2 17718:2 17742:1 17788:1 17797:2 17800:1 17816:1 17821:1 17835:1 17843:2 17844:1 17849:1 17859:1 17871:1 17875:1 17877:3 17881:1 17889:1 17897:1 17906:3 17912:1 17932:1 17933:1 17952:1 17957:1 17972:1 17998:2 18006:1 18011:1 18034:4 18099:1 18110:1 18112:1 18115:1 18129:3 18131:1 18134:1 18136:1 18144:1 18147:2 18153:1 18154:1 18171:1 18174:2 18187:1 18188:1 18197:2 18223:1 18226:1 18248:1 18249:2 18277:1 18330:2 18338:1 18342:1 18355:1 18366:2 18410:1 18412:1 18415:1 18417:2 18421:2 18423:1 18441:1 18442:8 18460:1 18474:1 18478:1 18506:1 18517:1 18524:1 18543:1 18544:1 18546:1 18559:1 18565:1 18584:1 18589:1 18602:1 18625:1 18629:2 18633:4 18634:1 18636:1 18646:1 18678:1 18707:1 18748:2 18749:1 18757:1 18781:1 18786:1 18797:1 18815:1 18816:1 18819:2 18831:2 18838:1 18855:1 18866:1 18872:1 18873:3 18922:1 18932:1 18956:3 18966:1 18977:3 18980:1 18984:1 18987:3 19006:1 19007:1 19016:1 19018:1 19022:1 19079:1 19098:1 19113:1 19114:7 19118:1 19125:1 19132:1 19160:1 19170:1 19182:1 19191:2 19193:1 19210:1 19217:1 19225:1 19241:1 19244:3 19250:2 19265:3 19272:1 19276:2 19315:1 19323:2526 19328:1 19342:4 19343:1 19348:2 19385:1 19395:1 19410:1 19413:3 19421:1 19452:3 19473:2 19482:2 19505:1 19507:3 19509:1 19530:3 19536:1 19539:3 19541:1 19543:1 19584:1 19586:1 19632:1 19636:3 19638:1 19664:1 19696:2 19702:1 19708:1 19721:1 19733:1 19743:1 19751:1 19756:1 19758:1 19804:1 19815:1 19817:2 19820:1 19831:4 19845:1 19856:1 19857:1 19882:1 19918:1 19919:1 19933:3 19984:1 20004:1 20024:1 20032:2 20043:1 20048:1 20050:1 20057:2 20074:3 20086:2 20090:1 20091:3 20095:1 20107:1 20121:10 20141:1 20142:1 20144:1 20146:1 20147:11 20159:1 20177:1 20178:3 20181:1 20197:1 20212:1 20216:3 20236:1 20243:1 20248:1 20250:2 20252:1 20255:1 20260:1 20262:1 20277:2 20279:1 20283:1 20287:1 20313:1 20319:2 20326:1 20339:1 20349:3 20363:1 20387:1 20389:1 20392:1 20447:1 20451:1 20458:1 20477:1 20492:1 20502:1 20523:1 20524:9 20527:1 20565:1 20573:1 20596:1 20605:1 20613:1 20619:1 20623:5 20648:1 20669:2 20688:1 20691:1 20714:1 20720:1 20722:1 20724:1 20725:1 20731:1 20749:1 20779:4 20782:1 20787:1 20789:1 20796:1 20811:2 20814:1 20839:1 20849:1 20853:1 20871:1 20877:1 20894:1 20897:1 20903:1 20907:1 20908:2 20918:2 20923:6 20942:1 20972:1 20976:1 20987:1 20996:9 21002:1 21014:2 21017:2 21030:1 21033:1 21049:1 21050:9 21066:1 21088:1 21103:1 21105:1 21131:1 21144:1 21175:1 21182:1 21196:2 21214:4 21216:1 21225:1 21231:1 21258:2 21301:4 21313:1 21316:1 21328:1 21331:1 21339:1 21343:1 21344:1 21389:1 21392:1 21451:2 21468:1 21474:1 21495:1 21500:1 21511:1 21528:1 21529:1 21532:1 21554:1 21575:1 21596:3 21625:2 21630:1 21634:1 21638:1 21643:9 21660:3 21663:1 21664:1 21674:1 21684:4 21690:1 21708:3 21722:1 21755:2 21769:2 21773:1 21789:2 21797:1 21798:1 21822:6 21829:1 21830:2 21835:1 21852:1 21874:1 21891:1 21896:1 21911:1 21915:1 21932:2 21936:1 21939:1 21943:1 21949:1 21962:3 21980:1 21986:1 21987:1 21992:1 22003:1 22041:1 22048:1 22050:1 22106:1 22147:1 22151:1 22154:4 22157:2 22159:2 22170:3 22179:1 22181:1 22183:1 22228:1 22232:1 22236:2 22241:2 22251:1 22268:1 22281:1 22285:1 22286:1 22298:1 22300:5 22305:2 22309:1 22319:1 22332:1 22349:1 22354:1 22384:2 22389:1 22396:1 22405:1 22406:1 22409:1 22425:2 22427:9 22430:1 22447:1 22456:1 22457:1 22461:1 22469:1 22501:3 22515:1 22534:1 22538:2 22540:1 22542:1 22549:3 22563:1 22603:1 22607:4 22614:2 22618:2 22621:1 22671:1 22693:2 22702:1 22703:1 22705:7 22709:1 22712:2 22720:1 22723:1 22734:2 22735:1 22736:1 22740:1 22746:1 22748:2 22750:1 22756:1 22757:1 22769:2 22772:2 22777:1 22795:2 22833:4 22834:1 22856:1 22866:1 22874:2 22877:1 22895:1 22901:1 22909:4 22917:1 22926:1 22937:1 22985:14 22987:1 22990:1 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:2 23093:1 23096:2 23102:1 23112:2 23125:2 23133:1 23136:8 23153:2 23160:3 23199:1 23209:1 23212:1 23215:2 23221:1 23225:1 23236:1 23239:1 23244:1 23246:2 23256:1 23269:2 23271:1 23284:5 23302:3 23317:2 23325:1 23336:1 23360:1 23376:2 23390:1 23445:1 23454:3 23459:1 23462:1 23481:1 23496:3 23517:1 23535:1 23549:1 23554:1 23570:1 23575:1 23579:11 23581:1 23583:2 23600:1 23611:1 23629:1 23632:1 23639:1 23648:1 23652:1 23655:1 23662:1 23665:1 23666:2 23673:1 23695:1 23699:3 23716:1 23717:5 23721:1 23750:1 23765:2 23767:1 23788:2 23807:1 23813:1 23819:2 23859:1 23878:2 23879:1 23891:2 23913:1 23955:1 23968:1 23969:1 23971:3 23978:1 23987:1 24002:1 24003:1 24012:1 24015:1 24034:1 24049:1 24087:1 24090:2 24103:1 24108:2 24113:1 24119:2 24124:3 24128:1 24151:1 24168:1 24177:1 24183:1 24187:3 24188:1 24207:5 24216:1 24219:1 24231:1 24232:1 24235:1 24237:2 24241:2 24247:1 24273:2 24280:1 24281:2 24283:1 24293:1 24329:4 24336:1 24340:16 24344:1 24391:1 24408:1 24419:1 24432:1 24441:1 24444:1 24449:1 24478:1 24504:2 24509:1 24533:1 24534:1 24538:1 24571:1 24591:1 24602:1 24653:1 24656:2 24668:2 24702:4 24714:1 24717:1 24761:1 24777:1 24797:1 24814:3 24827:2 24833:1 24838:1 24841:1 24844:2 24845:1 24859:1 24881:1 24921:1 24932:1 24939:1 24944:1 24970:1 24976:1 25004:1 25005:3 25014:1 25021:1 25023:1 25027:1 25049:1 25073:2 25090:1 25122:1 25147:3 25158:1 25181:1 25194:5 25252:1 25264:1 25273:1 25275:1 25285:2 25287:4 25288:1 25311:1 25319:1 25325:1 25327:2 25335:1 25339:3 25347:2 25384:1 25385:2 25398:1 25415:1 25419:2 25431:1 25447:1 25468:1 25471:1 25472:1 25495:4 25503:2 25507:1 25510:1 25514:1 25526:1 25561:1 25570:1 25587:1 25597:1 25598:1 25623:1 25627:1 25631:1 25634:1 25643:1 25673:1 25676:1 25684:1 25688:1 25718:1 25722:1 25733:1 25740:2 25778:3 25797:4 25823:1 25832:1 25852:1 25860:1 25871:1 25872:1 25878:2 25884:1 25893:3 25918:2 25921:1 25922:1 25952:1 25966:1 25980:4 25998:1 26004:1 26058:1 26073:1 26076:1 26097:4 26119:1 26124:1 26150:2 26156:3 26159:1 26167:1 26172:3 26207:1 26226:1 26232:1 26257:1 26304:1 26316:1 26318:2 26320:1 26322:4 26324:3 26331:1 26356:1 26371:1 26372:1 26376:1 26377:2 26403:1 26413:1 26415:5 26424:1 26429:3 26435:5 26436:1 26445:1 26460:1 26463:1 26472:1 26489:2 26513:5 26518:1 26524:1 26525:1 26534:1 26538:2 26564:1 26589:3 26627:4 26628:1 26652:2 26653:2 26681:2 26689:1 26712:1 26717:1 26728:3 26754:1 26761:1 26782:3 26808:1 26835:1 26842:2 26844:1 26865:1 26868:1 26871:2 26891:1 26893:1 26898:1 26912:1 26915:1 26920:1 26934:1 26935:1 26938:1 26949:2 26955:1 26956:1 26964:1 26977:5 26981:1 26982:1 26985:1 26989:1 27000:1 27008:2 27010:1 27056:1 27065:1 27078:1 27099:1 27113:1 27115:3 27138:7 27144:1 27178:1 27185:1 27192:2 27212:1 27244:1 27252:1 27257:1 27266:1 27280:3 27288:1 27295:1 27308:1 27314:1 27332:1 27407:3 27422:5 27424:2 27431:1 27438:2 27439:1 27440:4 27441:4 27444:1 27470:1 27490:2 27521:1 27531:1 27534:1 27540:2 27548:1 27552:1 27580:2 27601:1 27607:1 27621:1 27636:1 27673:1 27709:1 27718:1 27755:1 27775:1 27799:1 27809:1 27824:1 27852:1 27854:2 27863:1 27875:1 27883:2 27893:2 27910:2 27925:1 27939:1 27949:1 27950:1 28004:1 28005:2 28095:2 28099:3 28113:1 28118:1 28121:8 28154:1 28211:1 28223:16 28224:1 28227:3 28230:1 28238:1 28246:1 28258:1 28285:1 28338:2 28340:3 28342:3 28343:1 28391:1 28395:1 28398:1 28405:2 28410:1 28413:1 28421:1 28429:1 28430:1 28432:1 28437:1 28443:1 28472:2 28482:1 28499:1 28514:1 28524:2 28525:1 28526:1 28544:1 28548:1 28551:1 28574:1 28581:1 28593:1 28644:1 28645:1 28659:1 28674:1 28675:1 28684:1 28696:3 28754:6 28762:1 28771:1 28795:1 28798:1 28839:3 28848:3 28866:1 28870:1 28874:1 28878:1 28912:1 28928:1 28931:3 28939:1 28962:2 28974:1 29000:1 29004:4 29030:1 29041:1 29069:1 29111:1 29112:1 29130:4 29135:1 29143:1 29155:1 29168:1 29179:1 29182:2 29183:21 29184:2 29186:2 29189:3 29192:1 29203:1 29220:1 29221:11 29224:1 29234:1 29239:1 29240:1 29248:1 29276:1 29277:1 29281:2 29289:1 29290:1 29310:1 29325:1 29334:4 29342:4 29346:1 29348:1 29377:3 29382:2 29394:1 29429:1 29430:1 29454:1 29486:1 29495:2 29536:1 29537:1 29564:1 29573:1 29575:1 29581:1 29587:2 29589:1 29591:4 29595:1 29600:1 29620:1 29624:1 29636:1 29655:7 29663:1 29666:3 29718:1 29720:1 29741:3 29745:6 29747:1 29749:1 29754:1 29777:2 29790:1 29795:1 29809:1 29812:1 29814:1 29821:1 29841:3 29848:1 29860:1 29891:3 29901:1 29904:1 29905:1 29932:2 29936:3 29942:1 29950:4 29957:1 29969:2 30003:1 30011:1 30056:1 30080:1 30104:1 30107:1 30129:4 30160:2 30164:1 30170:1 30177:1 30201:1 30210:2 30216:1 30222:3 30241:1 30252:1 30269:1 30285:2 30290:1 30292:1 30313:1 30325:1 30341:1 30346:6 30348:1 30354:1 30364:2 30402:2 30429:1 30435:4 30441:2 30507:1 30517:1 30518:1 30524:1 30525:1 30527:3 30533:1 30539:1 30576:1 30586:1 30588:1 30592:1 30593:1 30595:1 30599:1 30609:2 30650:1 16 24:1 26:1 62:1 69:1 75:4 91:1 94:1 121:1 136:1 151:1 160:1 190:1 206:1 220:1 224:4 251:1 266:1 285:1 294:4 315:1 324:1 334:2 335:2 336:1 360:1 368:1 369:1 375:1 407:1 430:3 436:1 440:2 453:1 471:1 477:2 489:1 493:1 495:1 502:1 503:1 505:1 510:1 511:2 546:1 547:1 564:2 625:1 637:3 647:1 660:2 666:1 673:4 679:1 688:1 694:1 705:1 710:1 722:1 730:1 737:1 748:1 778:2 795:1 798:1 815:1 836:1 845:2 853:1 857:1 870:1 878:1 882:1 895:1 898:1 931:1 939:1 943:1 949:1 951:2 966:2 971:3 973:1 974:1 975:5 976:2 1003:1 1029:3 1032:2 1038:1 1058:1 1065:2 1069:1 1107:2 1108:1 1131:1 1134:1 1137:1 1155:1 1161:1 1170:1 1171:1 1217:3 1221:1 1224:1 1233:1 1242:2 1253:1 1254:4 1267:1 1273:1 1280:1 1291:3 1319:1 1324:1 1325:1 1331:1 1333:3 1336:1 1346:1 1347:2 1348:2 1361:1 1365:1 1377:1 1379:1 1389:1 1395:2 1409:2 1421:1 1422:1 1446:2 1476:1 1499:1 1500:3 1503:1 1511:1 1514:1 1519:1 1538:1 1556:1 1566:6 1579:1 1585:5 1590:1 1594:2 1601:1 1602:2 1603:1 1608:2 1609:1 1614:1 1625:1 1628:3 1651:1 1657:5 1671:1 1677:1 1681:1 1685:1 1690:2 1725:1 1730:1 1734:3 1739:3 1742:2 1757:1 1759:1 1776:4 1780:3 1788:1 1789:1 1802:1 1807:1 1826:1 1840:1 1841:1 1855:2 1857:1 1860:1 1863:1 1873:2 1886:2 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1939:1 1951:1 1954:1 1955:1 1964:1 1970:1 1982:1 1986:1 1989:1 1997:1 1999:1 2016:1 2021:1 2023:1 2032:1 2035:1 2038:1 2039:4 2046:1 2052:1 2069:1 2070:2 2090:1 2125:1 2132:1 2153:1 2161:2 2162:1 2167:2 2169:1 2170:3 2204:1 2227:1 2231:1 2232:1 2234:3 2235:1 2237:2 2269:3 2296:1 2307:1 2337:1 2339:1 2346:1 2351:1 2353:1 2363:1 2404:1 2405:1 2406:1 2407:2 2408:3 2413:1 2415:3 2416:1 2417:1 2420:5 2421:1 2422:3 2424:1 2427:1 2434:4 2436:3 2437:5 2450:1 2473:1 2486:1 2488:1 2495:1 2508:1 2518:2 2519:1 2520:1 2525:1 2532:1 2533:2 2550:1 2556:1 2560:1 2575:1 2599:1 2602:1 2623:3 2633:1 2641:1 2645:1 2657:2 2681:1 2689:1 2693:1 2694:1 2705:1 2742:1 2747:1 2766:1 2797:2 2812:4 2819:1 2825:3 2841:1 2842:1 2849:1 2852:2 2854:6 2856:2 2872:1 2888:2 2896:1 2900:1 2902:1 2909:3 2912:1 2943:2 2952:2 2962:1 2963:1 2965:4 2976:2 3019:4 3024:1 3031:1 3039:1 3056:10 3067:7 3090:2 3099:1 3118:21 3127:1 3128:1 3151:1 3152:1 3170:1 3189:1 3224:2 3232:1 3296:3 3299:1 3311:1 3318:1 3378:1 3391:1 3403:2 3406:4 3428:10 3442:1 3454:1 3469:1 3485:1 3498:5 3543:1 3565:1 3567:1 3574:1 3590:1 3609:1 3613:1 3628:1 3634:1 3643:3 3649:1 3654:1 3661:1 3667:3 3711:2 3730:1 3731:1 3746:3 3764:1 3778:1 3796:1 3801:1 3803:3 3804:1 3810:2 3812:1 3813:1 3819:2 3839:1 3846:1 3867:1 3886:1 3902:1 3903:3 3913:1 3918:1 3929:1 3950:1 3958:2 3959:30 3981:1 3993:2 3994:1 3995:7 4000:1 4009:1 4010:16 4011:2 4012:1 4015:4 4027:2 4042:3 4057:1 4058:3 4061:2 4063:2 4076:2 4078:1 4079:1 4116:2 4122:1 4123:3 4130:1 4134:1 4173:1 4178:1 4182:1 4183:3 4196:2 4207:2 4216:1 4219:1 4223:1 4235:1 4256:1 4258:1 4265:1 4266:1 4267:1 4269:1 4270:1 4285:1 4290:1 4294:1 4297:1 4301:3 4318:3 4324:1 4330:1 4368:1 4369:1 4381:1 4436:1 4439:2 4463:2 4474:1 4483:1 4486:1 4498:2 4504:1 4508:1 4509:1 4539:1 4547:1 4555:1 4557:1 4563:1 4611:1 4636:8 4650:1 4697:1 4701:1 4706:5 4715:1 4718:2 4749:3 4767:1 4773:1 4787:1 4796:1 4854:1 4855:2 4896:1 4900:1 4909:1 4921:2 4927:1 4930:2 4938:1 4948:3 4959:1 4966:2 4989:2 4993:1 5058:1 5059:1 5062:1 5064:1 5076:1 5092:2 5100:1 5153:1 5159:1 5186:1 5189:1 5201:12 5202:1 5211:1 5219:1 5231:2 5241:1 5260:2 5275:1 5288:1 5308:3 5314:1 5320:3 5321:1 5323:4 5340:1 5344:2 5345:2 5347:5 5348:1 5351:1 5354:2 5356:1 5361:1 5362:15 5363:1 5365:1 5370:2 5371:3 5376:1 5397:1 5401:2 5453:1 5467:1 5478:1 5486:1 5488:1 5491:1 5560:1 5593:3 5594:3 5603:5 5652:1 5670:1 5675:2 5677:15 5684:1 5703:1 5712:1 5735:2 5771:1 5774:1 5786:1 5810:1 5816:1 5819:1 5830:1 5836:1 5839:1 5848:1 5856:1 5857:1 5901:1 5902:1 5904:1 5908:1 5911:1 5921:1 5922:2 5943:1 5951:1 5954:1 5956:1 5962:2 5965:1 5967:1 5987:2 5993:1 6018:1 6021:3 6038:2 6044:1 6061:1 6063:1 6065:1 6068:1 6079:1 6097:1 6101:1 6103:1 6118:1 6121:1 6140:1 6142:1 6199:3 6217:1 6219:3 6221:1 6227:1 6243:1 6305:2 6364:1 6368:1 6371:5 6380:1 6386:2 6410:2 6415:1 6444:1 6465:1 6480:1 6490:2 6491:2 6492:1 6498:1 6499:1 6528:3 6529:1 6536:1 6539:2 6540:2 6568:1 6588:1 6591:2 6596:1 6618:3 6621:1 6635:1 6636:1 6639:1 6648:1 6654:1 6660:1 6721:2 6724:1 6725:1 6726:1 6727:1 6728:1 6730:2 6731:2 6734:2 6735:3 6736:3 6743:2 6744:5 6745:1 6746:1 6747:2 6756:1 6773:1 6776:1 6836:1 6872:1 6878:1 6886:1 6895:2 6901:1 6930:1 6932:1 6970:1 6977:1 6984:1 6994:1 7000:2 7019:1 7026:1 7027:5 7032:3 7035:1 7039:1 7046:1 7047:1 7060:2 7080:1 7083:2 7114:1 7115:1 7118:1 7126:1 7148:1 7166:1 7192:1 7200:1 7201:2 7204:1 7216:3 7222:1 7231:1 7236:2 7257:1 7267:1 7273:1 7308:1 7322:1 7328:1 7335:2 7342:1 7384:1 7407:1 7412:1 7432:2 7433:1 7455:1 7456:1 7522:2 7542:1 7548:1 7556:1 7573:1 7574:1 7577:5 7585:2 7601:1 7603:1 7610:1 7612:1 7625:1 7635:1 7653:1 7717:1 7769:1 7774:1 7779:1 7788:4 7830:1 7840:3 7874:3 7915:2 7926:1 7932:1 7954:1 7993:1 7997:2 7998:1 8005:1 8023:1 8027:1 8031:3 8054:1 8064:2 8065:4 8066:2 8084:1 8089:2 8097:1 8100:1 8121:1 8122:1 8128:1 8131:32 8133:1 8134:1 8140:1 8151:9 8152:17 8161:1 8164:1 8170:1 8207:1 8208:3 8238:1 8254:1 8273:1 8279:1 8302:2 8307:1 8316:1 8362:3 8365:5 8372:1 8413:1 8415:3 8433:1 8450:1 8467:1 8478:1 8492:1 8521:1 8523:3 8540:5 8546:1 8559:1 8570:2 8590:1 8597:1 8603:1 8610:1 8623:1 8624:1 8633:15 8651:1 8655:1 8664:2 8665:1 8687:2 8718:1 8724:1 8733:2 8742:1 8748:1 8753:2 8760:3 8779:1 8789:1 8793:3 8798:3 8803:1 8816:2 8820:2 8830:1 8840:2 8842:1 8845:1 8850:1 8857:1 8858:2 8863:2 8873:1 8884:2 8887:2 8895:1 8899:1 8915:2 8932:1 8938:1 8942:3 8959:1 8966:1 8979:1 8980:2 8983:1 8984:3 8985:1 8986:2 8987:3 8990:1 8995:1 8998:2 9000:2 9004:3 9020:1 9027:1 9035:2 9039:2 9040:1 9041:1 9045:1 9046:1 9058:1 9061:1 9072:1 9075:2 9112:5 9135:1 9139:3 9146:1 9149:1 9151:1 9158:1 9164:1 9169:1 9204:1 9205:1 9209:1 9215:2 9225:2 9227:1 9268:3 9269:2 9273:3 9274:1 9276:1 9277:2 9280:3 9286:2 9301:1 9302:1 9304:4 9316:1 9318:1 9339:2 9345:1 9420:2 9439:2 9442:1 9450:1 9453:1 9463:1 9471:1 9478:1 9480:1 9495:1 9504:1 9506:1 9561:3 9589:1 9592:1 9594:3 9608:1 9618:5 9640:1 9646:2 9651:1 9658:1 9662:1 9663:1 9677:1 9686:1 9695:3 9697:1 9715:1 9718:1 9721:1 9732:1 9776:1 9781:1 9809:1 9840:1 9870:1 9874:1 9877:2 9882:1 9888:1 9889:2 9909:1 9928:1 9930:1 9937:1 9940:1 9942:1 9972:1 9973:1 9977:2 9983:1 9994:1 10037:15 10043:1 10069:2 10078:4 10084:2 10085:1 10109:1 10117:1 10128:1 10130:2 10146:1 10169:13 10185:1 10190:2 10202:1 10211:1 10223:5 10229:1 10235:1 10238:3 10239:1 10240:1 10259:1 10269:1 10275:1 10317:1 10321:3 10322:1 10356:6 10362:2 10363:4 10364:2 10371:1 10379:1 10387:2 10393:2 10395:1 10400:1 10406:1 10410:3 10413:1 10415:1 10416:1 10423:1 10446:3 10450:2 10468:1 10470:2 10493:1 10533:1 10547:1 10549:3 10552:1 10577:9 10580:1 10581:4 10596:1 10601:1 10651:3 10698:2 10707:1 10718:1 10731:1 10757:1 10763:1 10780:4 10784:1 10791:1 10809:1 10830:1 10868:1 10880:2 10892:3 10898:1 10903:1 10907:1 10917:1 10923:1 10935:1 10939:1 10957:2 10962:3 10973:1 10998:1 11009:2 11026:2 11028:2 11031:1 11040:1 11047:6 11060:2 11061:3 11063:3 11070:1 11081:1 11084:1 11087:1 11105:1 11106:2 11120:1 11126:1 11134:4 11148:2 11156:1 11160:2 11166:6 11230:1 11231:1 11234:1 11237:1 11260:2 11261:2 11262:1 11268:1 11305:1 11315:1 11324:1 11359:1 11366:1 11371:1 11388:2 11389:1 11400:5 11417:3 11418:5 11430:1 11477:4 11482:1 11499:1 11512:2 11528:1 11529:1 11535:1 11556:3 11569:2 11597:1 11622:1 11668:1 11673:1 11678:1 11680:1 11683:1 11684:3 11703:1 11710:1 11718:1 11721:2 11740:1 11745:1 11753:1 11754:1 11779:2 11810:2 11819:1 11824:1 11830:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11885:1 11887:3 11918:1 11923:1 11926:5 11929:1 11961:1 11985:1 11986:1 11991:1 11994:2 12009:1 12029:1 12045:1 12056:1 12065:4 12066:2 12077:3 12081:1 12095:3 12098:2 12120:1 12130:1 12135:1 12146:3 12153:1 12155:4 12157:1 12170:1 12171:1 12181:1 12182:1 12189:1 12193:5 12194:1 12200:1 12202:5 12210:1 12218:1 12228:4 12253:2 12266:4 12270:1 12275:2 12280:1 12293:1 12314:1 12325:4 12333:1 12335:1 12337:1 12373:1 12375:1 12385:3 12406:1 12412:1 12423:1 12440:1 12470:2 12471:2 12508:1 12539:1 12555:2 12594:2 12609:1 12625:1 12628:1 12629:1 12632:1 12654:3 12655:3 12656:15 12660:4 12679:1 12698:1 12705:1 12716:2 12745:1 12766:1 12788:1 12815:1 12824:5 12825:2 12841:1 12845:1 12846:2 12850:1 12871:1 12902:3 12906:1 12929:1 12936:1 12943:2 12947:1 12953:1 12961:1 12976:1 12992:1 13011:1 13015:1 13019:1 13035:3 13054:1 13057:1 13092:1 13095:2 13107:1 13110:1 13117:1 13129:1 13166:1 13207:1 13227:6 13240:1 13243:1 13248:1 13251:1 13276:2 13277:3 13304:1 13307:1 13342:1 13371:1 13376:2 13404:1 13424:1 13429:1 13440:1 13441:1 13443:2 13472:1 13486:1 13488:1 13494:1 13522:1 13580:1 13597:2 13609:1 13614:1 13623:1 13624:2 13630:1 13649:1 13652:1 13656:1 13661:1 13664:1 13673:1 13681:1 13684:1 13700:2 13711:1 13714:2 13720:1 13735:1 13739:1 13740:1 13768:1 13775:1 13776:1 13780:2 13816:1 13821:1 13832:1 13833:2 13835:1 13838:5 13842:3 13843:1 13851:1 13853:1 13858:2 13873:3 13875:1 13878:1 13883:3 13915:7 13916:1 13923:1 13926:1 13930:1 13931:2 13944:1 13958:1 13981:2 13993:2 13994:1 14011:3 14028:1 14037:1 14050:1 14063:3 14078:1 14086:5 14112:1 14113:2 14114:2 14129:1 14145:1 14152:1 14157:2 14177:1 14189:2 14221:1 14228:1 14234:1 14237:1 14238:2 14239:1 14241:1 14274:1 14275:1 14291:1 14296:1 14298:1 14307:1 14310:1 14311:1 14315:2 14318:1 14334:1 14335:1 14366:6 14377:1 14422:1 14426:1 14445:1 14446:1 14450:1 14468:1 14471:2 14472:1 14477:3 14503:1 14522:1 14529:1 14533:1 14544:2 14546:3 14552:2 14553:4 14563:1 14584:1 14592:3 14610:1 14622:2 14642:2 14644:1 14649:1 14650:1 14654:1 14664:1 14670:2 14699:1 14704:1 14769:1 14780:1 14785:2 14806:1 14833:1 14845:1 14862:1 14887:1 14901:1 14921:1 14922:1 14935:1 14952:1 14958:1 14976:1 14986:1 14987:1 14997:1 15002:1 15008:3 15010:1 15011:1 15019:1 15020:1 15032:2 15060:1 15068:1 15072:1 15088:1 15096:2 15120:1 15127:1 15141:1 15162:1 15166:1 15174:1 15181:1 15190:1 15196:4 15216:1 15233:1 15247:1 15252:1 15276:1 15290:1 15319:4 15364:1 15476:1 15487:1 15507:2 15538:3 15547:3 15548:1 15552:1 15554:1 15556:1 15573:1 15577:1 15597:1 15605:1 15625:1 15643:2 15646:1 15655:3 15672:1 15683:1 15693:1 15695:1 15697:1 15702:1 15725:1 15734:1 15771:1 15772:1 15775:1 15781:1 15788:1 15805:1 15814:1 15868:2 15875:3 15876:2 15881:1 15907:4 15908:1 15911:1 15933:1 15951:3 15955:1 15961:1 15962:1 15968:1 15984:1 15999:1 16001:1 16008:1 16018:1 16021:3 16028:1 16032:2 16038:2 16054:1 16066:1 16073:2 16096:1 16111:1 16121:1 16140:1 16148:2 16167:7 16172:7 16174:1 16181:1 16207:2 16218:1 16221:1 16222:2 16235:3 16255:1 16270:1 16277:1 16303:2 16307:1 16309:1 16317:4 16325:1 16336:1 16345:1 16352:1 16353:3 16356:2 16357:5 16358:1 16363:1 16367:1 16368:1 16369:1 16378:1 16379:5 16386:4 16467:1 16480:1 16484:2 16495:2 16498:1 16501:2 16507:3 16519:1 16530:2 16532:1 16561:2 16564:2 16578:1 16593:2 16610:1 16623:1 16638:2 16646:7 16659:2 16660:2 16673:1 16674:2 16677:1 16678:1 16692:1 16697:1 16706:15 16734:1 16739:5 16740:1 16743:1 16761:2 16775:46 16794:3 16799:1 16831:1 16861:1 16864:1 16866:1 16867:2 16908:1 16913:2 16915:1 16916:1 16919:2 16920:3 16921:1 16927:2 16931:1 16944:1 16957:1 16961:1 16965:1 16980:1 16981:1 17010:1 17013:1 17047:1 17055:5 17075:1 17090:2 17095:1 17116:1 17130:1 17135:1 17153:1 17192:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:2 17253:1 17294:1 17295:1 17317:1 17322:1 17326:1 17336:2 17342:3 17343:1 17347:1 17369:1 17372:3 17392:3 17405:1 17414:1 17415:1 17422:1 17424:2 17426:1 17427:1 17435:1 17438:1 17445:1 17454:1 17460:10 17470:1 17500:1 17514:2 17521:1 17553:1 17559:1 17564:1 17582:1 17583:1 17585:3 17587:1 17589:2 17593:1 17596:1 17608:1 17613:1 17625:1 17635:1 17641:1 17645:2 17646:2 17718:2 17742:1 17788:1 17797:2 17800:1 17816:1 17821:1 17835:1 17843:2 17844:1 17849:1 17859:1 17871:1 17875:1 17877:3 17881:1 17889:1 17897:1 17906:3 17912:1 17932:1 17933:1 17952:1 17957:1 17972:1 17998:2 18006:1 18011:1 18034:4 18099:1 18110:1 18112:1 18115:1 18129:3 18131:1 18134:1 18136:1 18144:1 18147:2 18153:1 18154:1 18171:2 18174:2 18182:1 18187:1 18188:1 18197:2 18221:1 18223:1 18226:1 18248:2 18249:2 18277:1 18282:1 18285:1 18330:2 18338:2 18342:1 18355:1 18366:2 18410:1 18412:1 18415:1 18417:2 18421:2 18423:1 18441:1 18442:8 18446:1 18460:1 18474:1 18478:1 18506:1 18517:1 18524:1 18543:1 18544:1 18546:1 18559:2 18565:1 18576:1 18584:1 18589:1 18602:1 18625:1 18629:2 18633:4 18634:1 18636:1 18646:1 18678:1 18707:1 18748:3 18749:1 18757:1 18781:1 18786:1 18797:1 18807:1 18815:1 18816:1 18819:3 18831:2 18838:1 18855:1 18866:1 18872:1 18873:3 18922:1 18932:1 18956:3 18966:1 18977:3 18980:1 18984:1 18987:3 19006:1 19007:1 19016:1 19018:1 19022:1 19079:1 19098:1 19113:1 19114:9 19118:1 19125:1 19132:1 19160:1 19170:1 19182:1 19191:2 19193:1 19210:1 19217:1 19225:1 19241:1 19244:3 19250:2 19265:3 19272:1 19276:2 19315:1 19323:2640 19328:1 19342:4 19343:1 19348:2 19385:1 19395:1 19405:1 19410:1 19413:3 19421:1 19452:3 19473:2 19482:2 19505:1 19507:3 19509:2 19530:3 19536:1 19539:3 19541:1 19543:1 19584:1 19586:1 19609:1 19632:1 19636:4 19638:1 19658:1 19664:1 19696:2 19702:1 19708:1 19721:1 19733:1 19743:1 19751:1 19756:1 19758:1 19804:1 19815:1 19817:2 19820:1 19831:4 19845:1 19856:1 19857:1 19882:1 19918:1 19919:1 19933:3 19984:1 20004:1 20024:1 20032:2 20043:1 20048:1 20050:1 20057:2 20074:4 20086:2 20090:1 20091:3 20095:1 20107:1 20121:10 20141:1 20142:1 20144:1 20146:1 20147:12 20159:1 20177:1 20178:3 20181:1 20197:1 20212:1 20216:3 20236:1 20243:1 20248:1 20250:2 20252:2 20255:1 20260:1 20262:1 20277:2 20279:1 20283:1 20287:1 20313:1 20319:2 20326:1 20339:1 20349:3 20363:1 20387:1 20389:1 20392:1 20447:1 20451:1 20458:1 20477:1 20492:1 20493:1 20502:1 20523:1 20524:10 20527:1 20565:1 20573:1 20596:1 20605:1 20613:1 20619:1 20623:5 20648:1 20669:2 20688:1 20691:1 20714:1 20720:1 20722:1 20724:1 20725:1 20731:1 20749:1 20779:4 20782:1 20787:1 20789:1 20796:1 20811:2 20814:1 20821:1 20839:1 20849:1 20853:1 20871:1 20877:1 20894:1 20897:1 20903:1 20907:1 20908:2 20918:2 20923:6 20942:1 20972:1 20976:1 20987:1 20996:10 21002:1 21014:2 21017:2 21030:1 21033:1 21049:1 21050:9 21066:1 21088:1 21103:1 21105:1 21131:1 21144:1 21175:1 21182:1 21196:2 21214:4 21216:1 21225:1 21231:1 21258:2 21301:4 21313:1 21316:1 21328:1 21331:1 21339:1 21343:1 21344:1 21389:1 21392:1 21413:1 21451:2 21468:1 21474:1 21495:1 21500:1 21511:1 21528:1 21529:1 21532:1 21554:1 21575:1 21596:3 21625:2 21630:1 21634:1 21638:1 21643:9 21655:1 21660:3 21663:1 21664:1 21674:1 21684:5 21690:1 21708:3 21722:1 21755:2 21769:2 21773:1 21789:2 21797:1 21798:1 21822:6 21829:1 21830:2 21835:1 21852:1 21874:1 21891:1 21896:1 21911:1 21915:1 21916:1 21932:2 21936:1 21939:1 21943:1 21949:1 21962:3 21980:1 21986:1 21987:1 21992:1 22003:1 22041:1 22048:1 22050:1 22106:1 22147:1 22151:1 22154:4 22157:2 22159:3 22170:3 22179:1 22181:1 22183:1 22228:1 22232:1 22233:1 22236:2 22241:2 22251:1 22268:1 22281:1 22285:1 22286:1 22298:1 22300:5 22305:2 22309:1 22319:1 22332:1 22349:1 22354:1 22383:1 22384:2 22389:1 22396:1 22405:1 22406:1 22409:1 22425:2 22427:10 22430:1 22447:1 22456:1 22457:1 22461:1 22469:1 22481:1 22501:4 22515:1 22534:2 22538:2 22540:1 22542:1 22549:3 22563:1 22603:1 22604:1 22607:4 22614:2 22618:2 22621:1 22671:1 22693:2 22702:1 22703:1 22705:7 22709:1 22712:2 22720:1 22721:1 22723:1 22734:2 22735:1 22736:1 22740:1 22746:1 22748:2 22750:1 22756:1 22757:1 22769:2 22772:2 22777:1 22795:2 22822:1 22833:4 22834:1 22856:1 22860:1 22866:1 22874:2 22877:1 22895:1 22901:1 22909:4 22917:1 22926:1 22937:1 22985:15 22987:1 22990:1 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:2 23093:1 23096:2 23102:1 23112:2 23125:2 23133:1 23136:8 23153:2 23160:3 23199:1 23209:1 23212:1 23215:2 23221:1 23225:1 23236:1 23239:1 23244:1 23246:2 23256:1 23269:2 23271:1 23284:6 23302:3 23317:2 23325:1 23336:1 23360:1 23376:2 23390:1 23413:1 23445:1 23454:3 23459:1 23462:1 23481:1 23496:3 23517:1 23535:1 23549:1 23554:1 23570:1 23575:1 23579:12 23581:1 23583:2 23600:1 23611:1 23629:1 23632:1 23639:1 23648:1 23652:1 23655:1 23662:1 23665:1 23666:2 23673:1 23695:1 23699:3 23716:1 23717:5 23721:1 23750:1 23752:1 23765:2 23767:1 23788:2 23807:1 23813:1 23819:2 23859:1 23875:1 23878:2 23879:1 23891:2 23913:1 23955:1 23968:1 23969:1 23971:3 23978:1 23987:1 24002:1 24003:1 24012:1 24015:1 24034:1 24049:1 24087:1 24090:2 24103:1 24108:2 24113:1 24119:2 24124:3 24128:1 24151:1 24168:1 24177:1 24183:1 24187:3 24188:1 24207:6 24216:1 24219:1 24231:1 24232:1 24235:1 24237:2 24241:2 24247:1 24273:2 24280:1 24281:2 24283:1 24293:1 24329:4 24336:1 24340:17 24344:1 24391:1 24408:1 24419:1 24432:1 24441:1 24444:1 24449:1 24478:1 24504:2 24509:1 24533:1 24534:1 24538:1 24548:1 24571:1 24591:1 24602:1 24653:1 24656:2 24668:2 24702:4 24714:1 24717:1 24761:1 24777:1 24797:1 24814:3 24827:2 24833:1 24838:1 24841:1 24844:2 24845:1 24859:1 24881:1 24907:1 24921:1 24932:1 24939:1 24944:1 24970:1 24976:1 25004:1 25005:5 25014:1 25021:1 25023:1 25027:1 25049:1 25073:2 25090:1 25122:1 25147:3 25158:1 25181:1 25194:5 25252:2 25264:1 25273:1 25275:1 25285:2 25287:4 25288:1 25311:1 25319:1 25325:1 25327:2 25335:1 25339:3 25347:2 25384:1 25385:2 25398:2 25415:1 25419:2 25431:1 25447:1 25468:1 25471:1 25472:1 25487:1 25495:4 25503:2 25507:1 25510:1 25514:1 25526:1 25561:2 25570:1 25587:1 25597:1 25598:1 25614:1 25623:1 25627:2 25631:1 25634:1 25643:1 25673:1 25676:1 25684:1 25688:1 25718:1 25722:1 25733:1 25740:2 25778:3 25797:5 25823:1 25832:1 25852:1 25860:1 25871:1 25872:1 25878:2 25884:1 25893:3 25918:2 25921:1 25922:1 25952:1 25966:1 25980:4 25998:1 26004:1 26021:1 26058:1 26073:1 26076:1 26097:4 26119:1 26124:1 26150:2 26156:3 26159:1 26167:1 26172:3 26207:1 26226:1 26232:1 26257:1 26304:1 26316:1 26318:2 26320:1 26322:4 26324:3 26331:1 26356:1 26371:1 26372:1 26376:1 26377:2 26403:1 26413:1 26415:5 26424:1 26429:3 26435:5 26436:1 26445:1 26460:1 26463:1 26472:1 26489:2 26513:6 26518:1 26524:1 26525:1 26534:1 26538:2 26564:1 26579:1 26589:3 26627:4 26628:1 26652:2 26653:2 26681:2 26689:1 26712:1 26717:1 26728:3 26754:1 26761:1 26782:3 26808:1 26835:1 26842:2 26844:1 26848:1 26865:1 26868:1 26871:2 26891:1 26893:1 26898:1 26912:1 26915:1 26920:1 26934:1 26935:1 26938:1 26949:2 26955:1 26956:1 26964:1 26977:6 26981:1 26982:1 26985:1 26989:1 27000:1 27001:1 27003:1 27008:2 27010:1 27056:1 27065:1 27078:1 27099:1 27113:1 27115:3 27138:9 27144:1 27178:1 27185:1 27192:2 27212:1 27244:1 27252:1 27257:1 27266:1 27280:3 27288:1 27295:1 27308:1 27314:2 27332:1 27407:3 27422:5 27424:2 27431:1 27438:2 27439:1 27440:4 27441:4 27444:1 27470:1 27490:2 27521:1 27531:1 27534:1 27540:3 27548:1 27552:1 27580:3 27601:1 27607:1 27621:1 27626:1 27636:1 27673:1 27709:1 27718:1 27755:1 27775:1 27799:1 27809:1 27824:1 27834:1 27852:1 27854:2 27863:1 27875:1 27883:2 27893:2 27910:2 27925:1 27939:1 27949:1 27950:1 28004:1 28005:2 28017:1 28095:2 28099:3 28110:1 28113:1 28118:1 28121:8 28154:1 28211:1 28223:17 28224:1 28227:3 28230:1 28238:1 28246:1 28258:1 28285:1 28338:2 28340:3 28342:3 28343:1 28391:1 28395:1 28398:1 28405:2 28410:1 28413:1 28421:1 28429:1 28430:1 28432:1 28437:1 28443:1 28472:2 28482:1 28499:1 28514:1 28524:2 28525:1 28526:1 28544:1 28548:1 28551:1 28574:1 28581:1 28593:1 28644:1 28645:1 28659:1 28674:1 28675:1 28684:1 28696:3 28754:7 28762:1 28771:1 28795:1 28798:1 28839:3 28848:3 28866:1 28870:1 28874:1 28878:1 28912:1 28928:1 28931:3 28939:1 28962:2 28974:1 29000:2 29004:4 29030:1 29039:1 29041:1 29069:1 29111:1 29112:1 29130:4 29135:1 29143:1 29155:1 29168:1 29179:1 29182:2 29183:22 29184:2 29186:2 29189:3 29192:1 29193:1 29203:1 29220:1 29221:11 29224:1 29234:1 29239:1 29240:1 29248:1 29276:1 29277:1 29281:2 29289:1 29290:1 29310:1 29325:1 29334:4 29342:4 29346:1 29348:1 29377:3 29382:2 29388:1 29394:1 29429:1 29430:1 29454:1 29486:1 29495:2 29536:1 29537:1 29564:1 29573:1 29575:1 29581:1 29587:2 29589:1 29591:4 29595:1 29600:1 29620:2 29624:1 29636:1 29655:7 29663:1 29666:3 29718:1 29720:1 29741:3 29745:6 29747:1 29749:1 29754:1 29771:1 29777:2 29790:1 29795:1 29809:1 29812:1 29814:1 29821:1 29841:3 29848:1 29860:1 29891:3 29896:1 29901:1 29904:1 29905:1 29932:2 29935:1 29936:4 29942:1 29950:5 29957:1 29969:2 30003:1 30011:1 30056:1 30080:1 30104:1 30107:1 30129:4 30160:2 30164:1 30170:1 30177:1 30201:1 30210:2 30216:1 30222:3 30232:1 30241:1 30252:1 30269:1 30285:2 30290:1 30292:1 30313:1 30325:2 30341:1 30346:6 30348:1 30354:1 30364:2 30402:2 30407:1 30429:1 30435:4 30441:2 30507:1 30517:1 30518:1 30524:1 30525:1 30527:3 30533:1 30539:1 30576:1 30586:1 30588:1 30592:1 30593:1 30595:1 30599:1 30609:2 30650:1 16 24:1 26:1 62:1 69:1 75:4 91:1 94:1 121:1 136:1 151:1 160:1 190:1 206:1 220:1 224:4 251:1 266:1 285:1 294:4 315:1 324:1 334:2 335:2 336:1 360:1 368:1 369:1 375:1 407:1 430:3 436:1 440:2 453:1 471:1 477:2 489:1 493:1 495:1 502:1 503:1 505:1 510:1 511:2 546:1 547:1 564:2 625:1 637:3 647:1 660:2 666:1 673:4 679:1 688:1 694:1 705:1 710:1 722:1 730:1 737:1 748:1 778:2 795:1 798:1 815:1 836:1 845:2 853:1 857:1 870:1 878:1 882:1 895:1 898:1 931:1 939:2 943:1 949:1 951:2 966:2 971:3 973:1 974:1 975:5 976:2 1003:1 1028:1 1029:4 1032:2 1038:1 1058:1 1065:2 1069:1 1107:2 1108:1 1131:1 1134:1 1137:1 1155:1 1161:1 1170:1 1171:1 1217:3 1221:1 1224:1 1233:1 1236:1 1242:2 1253:1 1254:4 1267:1 1273:1 1280:1 1291:3 1319:1 1324:1 1325:1 1331:1 1333:3 1336:1 1346:1 1347:2 1348:2 1361:1 1365:1 1377:1 1379:1 1389:1 1395:2 1409:2 1421:1 1422:1 1446:2 1476:1 1499:1 1500:3 1503:1 1511:1 1514:1 1519:1 1538:1 1556:1 1566:6 1579:1 1585:5 1590:1 1594:2 1601:1 1602:2 1603:1 1608:2 1609:1 1614:1 1625:1 1628:3 1651:1 1657:5 1671:1 1677:1 1681:1 1685:1 1690:2 1725:2 1730:1 1734:3 1739:3 1742:2 1756:1 1757:1 1759:1 1776:4 1780:3 1788:1 1789:1 1802:1 1807:1 1826:1 1840:1 1841:1 1855:2 1857:1 1860:1 1863:1 1873:2 1886:2 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1939:1 1951:1 1954:1 1955:1 1964:1 1970:1 1982:1 1986:1 1989:1 1997:1 1999:1 2016:1 2021:1 2023:1 2026:1 2032:1 2035:1 2038:1 2039:4 2046:1 2052:1 2069:1 2070:2 2090:1 2125:1 2132:1 2153:1 2161:2 2162:1 2164:1 2167:2 2169:1 2170:3 2204:1 2227:1 2231:1 2232:1 2234:3 2235:1 2237:2 2269:3 2296:1 2307:1 2337:1 2339:1 2346:1 2351:1 2353:1 2363:1 2404:1 2405:1 2406:1 2407:2 2408:4 2413:1 2415:3 2416:1 2417:1 2420:5 2421:1 2422:3 2424:1 2427:1 2434:4 2436:3 2437:6 2450:1 2473:1 2486:1 2488:1 2495:1 2508:1 2518:2 2519:1 2520:1 2525:1 2532:1 2533:2 2550:1 2556:1 2560:1 2575:1 2599:1 2602:1 2623:3 2633:1 2641:1 2645:1 2657:2 2681:1 2689:1 2693:1 2694:1 2705:1 2742:1 2747:1 2766:1 2797:2 2812:4 2819:1 2825:3 2834:1 2841:1 2842:1 2849:1 2852:2 2854:6 2856:2 2872:1 2888:2 2896:1 2900:1 2902:1 2909:3 2912:1 2943:2 2952:2 2962:1 2963:1 2965:4 2976:2 3019:4 3024:1 3031:1 3039:1 3056:10 3067:7 3090:2 3099:1 3118:21 3127:1 3128:1 3151:1 3152:1 3170:1 3189:1 3224:2 3232:1 3296:3 3299:1 3311:1 3318:1 3342:1 3378:1 3391:1 3403:2 3406:4 3428:10 3442:1 3454:1 3469:1 3485:1 3498:5 3543:1 3565:1 3567:1 3574:1 3590:1 3609:1 3613:1 3628:1 3634:1 3643:3 3649:1 3654:1 3661:1 3667:3 3711:2 3730:1 3731:1 3746:3 3764:1 3778:1 3796:1 3801:1 3803:3 3804:1 3810:2 3812:1 3813:1 3819:2 3839:1 3846:1 3867:1 3886:1 3902:1 3903:3 3913:1 3918:1 3929:1 3950:1 3958:2 3959:30 3981:1 3993:2 3994:1 3995:7 4000:1 4009:1 4010:16 4011:2 4012:1 4015:4 4027:2 4042:3 4057:1 4058:3 4061:2 4063:2 4076:2 4078:1 4079:1 4116:2 4122:1 4123:3 4130:1 4134:1 4173:1 4178:1 4182:1 4183:3 4196:2 4207:2 4216:1 4219:1 4223:1 4235:1 4256:1 4258:1 4265:1 4266:1 4267:1 4269:1 4270:1 4285:1 4290:1 4294:1 4297:1 4301:3 4318:3 4324:1 4330:1 4368:1 4369:1 4381:1 4423:1 4436:1 4439:2 4463:2 4474:1 4483:1 4486:1 4498:2 4504:1 4508:1 4509:1 4539:1 4547:1 4555:1 4557:1 4563:1 4611:1 4636:8 4650:1 4697:1 4701:1 4706:5 4715:1 4718:2 4749:3 4767:1 4773:1 4787:1 4796:1 4854:1 4855:2 4896:1 4900:1 4909:1 4921:2 4927:1 4930:2 4938:1 4948:3 4959:1 4966:2 4989:2 4993:1 5058:1 5059:1 5062:1 5064:1 5076:1 5092:2 5100:1 5153:1 5159:1 5186:1 5189:1 5201:12 5202:1 5211:1 5219:1 5231:2 5241:1 5260:2 5275:1 5288:1 5308:3 5314:1 5320:3 5321:1 5323:4 5340:1 5344:2 5345:2 5347:5 5348:1 5351:1 5354:2 5356:1 5361:1 5362:15 5363:1 5365:1 5370:2 5371:3 5376:1 5397:1 5401:2 5453:1 5467:1 5478:1 5486:1 5488:1 5491:1 5560:1 5593:3 5594:3 5603:5 5652:1 5670:1 5675:2 5677:15 5684:1 5703:1 5712:1 5735:2 5771:1 5774:1 5786:1 5810:1 5816:1 5819:1 5830:1 5836:1 5839:1 5848:1 5856:1 5857:1 5901:1 5902:1 5904:1 5908:1 5911:1 5921:1 5922:2 5943:1 5951:1 5954:1 5956:1 5962:2 5965:1 5967:1 5987:2 5993:1 6018:1 6021:3 6038:2 6044:1 6061:1 6063:1 6065:1 6068:1 6079:1 6097:1 6101:1 6103:1 6118:1 6121:1 6136:1 6140:1 6142:1 6199:3 6217:1 6219:3 6221:1 6227:1 6243:1 6305:2 6364:1 6368:1 6371:5 6380:1 6386:2 6410:2 6415:1 6444:1 6465:1 6480:1 6490:2 6491:2 6492:1 6498:1 6499:1 6528:3 6529:1 6536:1 6539:2 6540:2 6568:1 6588:1 6591:2 6596:1 6618:4 6621:1 6635:1 6636:1 6639:1 6648:1 6654:1 6660:1 6721:2 6724:1 6725:1 6726:1 6727:1 6728:1 6730:2 6731:2 6734:2 6735:3 6736:3 6743:2 6744:5 6745:1 6746:1 6747:2 6756:1 6773:1 6776:1 6836:1 6872:1 6878:1 6886:1 6895:2 6901:1 6930:1 6932:1 6970:1 6977:1 6984:1 6994:1 7000:2 7019:1 7026:1 7027:5 7032:3 7035:1 7039:1 7046:1 7047:1 7060:2 7080:1 7083:2 7114:1 7115:1 7118:1 7126:1 7148:1 7166:1 7192:1 7200:1 7201:2 7204:1 7216:3 7222:1 7231:1 7236:2 7257:1 7267:1 7273:1 7308:1 7322:1 7328:1 7335:2 7342:1 7384:1 7407:1 7412:1 7432:2 7433:1 7455:1 7456:1 7522:2 7542:1 7548:1 7556:1 7573:1 7574:1 7577:5 7585:2 7601:1 7603:1 7610:1 7612:1 7625:1 7635:1 7653:1 7717:1 7769:1 7774:1 7779:1 7788:4 7830:1 7840:3 7874:4 7915:2 7926:1 7932:1 7954:1 7993:1 7997:2 7998:1 8005:1 8023:1 8027:1 8031:3 8054:1 8064:2 8065:4 8066:2 8084:1 8089:2 8097:1 8100:1 8121:1 8122:1 8128:1 8131:34 8133:1 8134:1 8140:1 8151:9 8152:17 8161:1 8164:1 8170:1 8207:1 8208:3 8238:1 8254:1 8273:1 8279:1 8302:2 8307:1 8316:1 8362:3 8365:5 8372:1 8413:1 8415:3 8433:1 8450:1 8467:1 8478:1 8492:1 8521:1 8523:3 8540:5 8546:2 8559:1 8570:2 8590:1 8597:1 8603:1 8610:1 8623:1 8624:1 8633:15 8651:1 8655:1 8664:2 8665:1 8687:2 8718:1 8724:1 8733:2 8742:1 8748:1 8753:2 8760:3 8779:1 8789:1 8793:3 8798:3 8803:1 8816:2 8820:2 8830:1 8840:2 8842:1 8845:1 8850:1 8857:1 8858:2 8863:2 8873:1 8884:2 8887:2 8895:1 8899:1 8915:2 8932:1 8938:1 8942:3 8959:1 8966:1 8979:1 8980:2 8983:1 8984:3 8985:1 8986:2 8987:3 8990:1 8995:1 8998:2 9000:2 9004:3 9020:1 9027:1 9035:2 9039:2 9040:1 9041:1 9045:1 9046:1 9058:1 9061:1 9072:1 9075:2 9081:1 9112:5 9135:1 9139:3 9146:1 9149:1 9151:1 9158:1 9164:1 9169:1 9204:1 9205:1 9209:1 9215:2 9225:2 9227:1 9268:3 9269:2 9273:3 9274:1 9276:1 9277:2 9280:3 9286:2 9301:1 9302:1 9304:4 9316:1 9318:1 9339:2 9345:1 9420:2 9439:2 9442:1 9450:1 9453:1 9463:1 9471:1 9478:1 9480:1 9495:1 9504:1 9506:1 9561:3 9589:1 9592:1 9594:3 9608:1 9618:5 9640:2 9646:2 9651:1 9658:1 9662:1 9663:1 9677:1 9686:1 9695:3 9697:1 9715:1 9718:1 9721:1 9732:1 9776:1 9781:1 9809:1 9840:1 9870:1 9874:1 9877:2 9882:1 9888:1 9889:2 9909:1 9928:1 9930:1 9937:1 9940:1 9942:1 9972:1 9973:1 9977:2 9983:1 9994:1 10037:15 10043:1 10069:2 10078:4 10084:2 10085:1 10109:1 10117:1 10128:1 10130:2 10146:1 10169:13 10185:1 10190:2 10202:1 10211:1 10223:5 10229:1 10235:1 10238:3 10239:1 10240:1 10241:1 10259:1 10269:1 10275:1 10317:2 10321:3 10322:1 10356:6 10362:2 10363:4 10364:2 10371:1 10379:1 10387:2 10393:2 10395:1 10400:1 10406:1 10410:3 10413:1 10415:1 10416:1 10423:1 10446:3 10450:2 10468:1 10470:2 10493:1 10533:1 10547:1 10549:3 10552:1 10577:9 10580:1 10581:4 10596:1 10601:1 10651:3 10691:1 10698:2 10707:1 10718:1 10731:1 10757:1 10763:1 10780:4 10784:1 10791:1 10809:1 10830:1 10868:1 10880:2 10892:3 10898:1 10903:1 10907:1 10917:1 10923:1 10935:1 10939:1 10957:2 10962:3 10973:1 10998:1 11009:2 11026:2 11028:2 11031:1 11040:1 11047:6 11060:2 11061:3 11063:3 11070:1 11081:1 11084:1 11087:1 11105:1 11106:2 11120:1 11126:1 11134:4 11148:2 11156:1 11160:2 11166:6 11230:1 11231:1 11234:1 11237:1 11260:2 11261:2 11262:1 11268:1 11305:1 11315:1 11324:1 11359:1 11366:1 11371:1 11388:2 11389:1 11400:5 11417:3 11418:5 11430:1 11477:4 11482:1 11499:1 11512:2 11528:1 11529:1 11535:1 11556:3 11569:2 11597:1 11622:1 11668:1 11673:1 11676:1 11678:1 11680:1 11683:1 11684:3 11703:1 11710:1 11718:1 11721:2 11740:1 11745:1 11753:1 11754:1 11779:2 11808:1 11810:2 11819:1 11824:1 11830:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11885:1 11887:3 11918:1 11923:1 11926:5 11929:1 11961:1 11985:1 11986:1 11991:1 11994:2 12009:1 12029:1 12045:1 12056:1 12065:4 12066:2 12077:3 12081:1 12095:3 12098:2 12120:1 12130:1 12135:1 12146:3 12153:1 12155:4 12157:1 12170:1 12171:1 12181:1 12182:1 12189:1 12193:5 12194:1 12200:1 12202:5 12210:1 12218:1 12228:4 12253:2 12266:4 12270:1 12275:2 12280:1 12293:1 12314:1 12325:4 12333:1 12335:1 12337:2 12373:1 12375:1 12385:3 12406:1 12412:1 12423:1 12440:1 12470:2 12471:2 12508:1 12539:1 12555:2 12594:2 12609:1 12625:1 12628:1 12629:1 12632:1 12654:3 12655:3 12656:15 12660:4 12679:1 12698:1 12705:1 12716:2 12745:1 12766:1 12788:1 12815:1 12824:5 12825:2 12841:1 12845:1 12846:2 12850:1 12871:1 12902:3 12906:1 12929:1 12936:1 12943:2 12947:1 12953:1 12961:1 12976:1 12992:1 13011:1 13015:1 13019:1 13035:3 13054:1 13057:1 13092:1 13095:2 13107:1 13110:1 13117:1 13129:1 13166:1 13207:1 13227:6 13240:1 13243:1 13248:1 13251:1 13276:2 13277:3 13304:1 13307:1 13342:1 13371:1 13376:2 13404:1 13424:1 13429:1 13440:1 13441:1 13443:2 13472:1 13486:1 13488:1 13494:1 13522:1 13580:1 13597:2 13609:1 13614:1 13623:1 13624:2 13630:1 13649:1 13652:1 13656:1 13661:1 13664:1 13673:1 13681:1 13684:1 13700:2 13711:1 13712:1 13714:2 13720:1 13735:1 13739:1 13740:1 13768:1 13775:1 13776:1 13780:2 13816:2 13821:1 13832:1 13833:2 13835:1 13838:6 13842:3 13843:1 13851:1 13853:1 13858:2 13873:3 13875:1 13878:1 13883:3 13915:7 13916:1 13923:1 13926:1 13930:1 13931:2 13944:1 13958:1 13981:2 13993:2 13994:1 14011:3 14028:1 14037:1 14050:1 14063:3 14078:1 14085:1 14086:5 14112:1 14113:2 14114:2 14129:1 14145:1 14152:1 14157:2 14177:1 14189:2 14221:1 14228:1 14234:1 14237:1 14238:2 14239:1 14241:1 14274:1 14275:1 14291:1 14296:1 14298:1 14307:1 14310:1 14311:1 14315:2 14318:1 14334:1 14335:1 14366:7 14377:1 14422:1 14426:1 14445:1 14446:1 14450:1 14468:1 14471:2 14472:1 14477:3 14503:1 14522:1 14529:1 14533:1 14544:2 14546:3 14552:2 14553:4 14563:1 14584:1 14592:3 14610:1 14622:2 14642:2 14644:1 14649:1 14650:1 14654:1 14664:1 14665:1 14670:2 14699:1 14704:1 14769:1 14771:1 14780:1 14785:2 14806:1 14833:1 14845:1 14862:1 14887:1 14901:1 14921:1 14922:1 14935:1 14952:1 14958:1 14976:2 14986:1 14987:1 14997:1 15002:1 15008:3 15010:1 15011:1 15019:1 15020:1 15032:2 15060:1 15068:1 15072:1 15088:1 15096:2 15120:1 15127:1 15141:1 15162:1 15166:1 15174:1 15181:1 15190:1 15196:4 15216:1 15233:1 15238:1 15247:1 15252:1 15276:1 15290:1 15319:4 15364:1 15476:1 15487:1 15507:2 15538:3 15547:3 15548:1 15552:1 15554:1 15556:1 15573:1 15577:1 15597:1 15605:1 15625:1 15643:2 15646:1 15655:3 15672:1 15683:1 15693:1 15695:1 15697:1 15702:1 15725:1 15734:1 15771:1 15772:1 15775:1 15781:1 15788:1 15805:1 15814:1 15868:2 15875:3 15876:2 15881:1 15907:4 15908:1 15911:1 15933:1 15951:3 15955:1 15961:1 15962:1 15968:1 15984:1 15999:1 16001:1 16008:1 16018:1 16021:3 16028:2 16032:2 16038:2 16054:1 16066:1 16073:2 16096:1 16111:1 16121:1 16140:1 16148:3 16167:7 16172:7 16174:1 16181:1 16207:2 16218:1 16221:1 16222:2 16235:3 16255:1 16270:1 16277:1 16303:2 16307:1 16309:1 16317:4 16325:1 16336:1 16345:1 16352:1 16353:3 16356:2 16357:5 16358:1 16363:1 16367:1 16368:1 16369:1 16378:1 16379:5 16386:4 16467:1 16480:1 16484:2 16495:2 16498:1 16501:2 16507:4 16519:1 16530:2 16532:1 16561:2 16564:2 16578:1 16593:2 16610:1 16623:1 16638:2 16646:8 16659:2 16660:2 16673:1 16674:2 16677:1 16678:1 16692:1 16697:1 16706:15 16734:1 16739:5 16740:1 16743:1 16761:2 16775:46 16794:3 16799:1 16831:1 16861:1 16864:1 16866:1 16867:2 16908:1 16913:2 16915:1 16916:1 16919:2 16920:3 16921:1 16927:2 16931:1 16944:1 16957:1 16961:1 16965:1 16980:1 16981:1 17010:1 17013:1 17047:1 17055:5 17075:1 17090:2 17095:1 17116:1 17130:1 17135:1 17153:1 17192:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:2 17253:1 17294:1 17295:1 17317:1 17322:1 17326:1 17336:2 17342:3 17343:1 17347:1 17369:1 17372:3 17392:3 17405:1 17414:1 17415:1 17422:1 17424:2 17426:1 17427:1 17435:1 17438:1 17445:1 17454:1 17460:10 17470:1 17500:1 17514:2 17521:1 17553:1 17559:1 17564:1 17582:1 17583:2 17585:3 17587:1 17589:2 17593:1 17596:1 17608:1 17613:1 17625:1 17635:1 17641:1 17645:2 17646:2 17675:1 17718:2 17742:1 17788:1 17797:2 17800:1 17816:1 17821:1 17835:1 17843:2 17844:1 17849:1 17859:1 17871:1 17875:1 17877:3 17881:1 17889:1 17897:1 17906:3 17912:1 17932:1 17933:1 17952:1 17957:1 17972:1 17998:2 18006:1 18011:1 18034:4 18099:1 18110:1 18112:1 18115:1 18129:3 18131:1 18134:1 18136:1 18144:1 18147:2 18153:1 18154:1 18171:2 18174:2 18182:1 18187:1 18188:1 18197:2 18221:1 18223:1 18226:1 18248:2 18249:2 18277:1 18282:1 18285:1 18330:2 18338:2 18342:1 18355:1 18366:2 18410:1 18412:1 18415:1 18417:2 18421:2 18423:1 18441:1 18442:8 18446:1 18460:1 18474:1 18478:1 18506:1 18517:1 18524:1 18543:1 18544:2 18546:1 18559:2 18562:1 18565:1 18576:1 18584:1 18589:1 18602:1 18625:1 18629:2 18633:4 18634:1 18636:1 18646:1 18678:1 18707:1 18748:3 18749:1 18757:1 18781:1 18786:1 18797:1 18807:1 18815:1 18816:1 18819:3 18831:2 18838:1 18855:1 18866:1 18872:1 18873:3 18922:1 18932:1 18956:3 18966:1 18977:3 18980:1 18984:1 18987:3 19006:1 19007:1 19016:1 19018:1 19022:1 19079:1 19098:1 19113:1 19114:9 19118:1 19125:1 19132:1 19160:1 19170:1 19182:1 19191:2 19193:1 19210:1 19217:1 19225:1 19241:1 19244:3 19250:2 19265:3 19272:1 19276:2 19315:1 19323:2711 19328:1 19342:4 19343:1 19348:2 19385:1 19395:1 19405:1 19410:1 19413:3 19421:1 19452:3 19473:2 19482:2 19505:1 19507:3 19509:2 19530:3 19536:1 19539:3 19541:1 19543:1 19584:1 19586:1 19609:1 19632:1 19636:4 19638:1 19658:1 19664:1 19696:2 19702:1 19708:1 19721:1 19733:1 19743:1 19751:1 19756:1 19758:1 19804:1 19815:1 19817:2 19820:1 19831:4 19845:1 19856:1 19857:1 19882:1 19918:1 19919:1 19933:3 19984:1 20004:1 20024:1 20032:2 20043:1 20048:2 20050:1 20057:2 20074:4 20086:2 20090:1 20091:3 20095:1 20107:1 20121:10 20141:1 20142:1 20144:1 20146:1 20147:12 20159:1 20177:1 20178:3 20181:1 20197:1 20212:1 20216:3 20236:1 20243:2 20248:1 20250:2 20252:2 20255:1 20260:1 20262:1 20277:2 20279:1 20283:1 20287:1 20313:1 20319:3 20326:1 20339:1 20349:3 20363:1 20387:1 20389:1 20392:1 20447:1 20451:1 20458:1 20477:1 20492:1 20493:1 20502:1 20523:1 20524:10 20527:1 20565:1 20573:1 20596:1 20605:1 20613:1 20619:1 20623:5 20648:1 20669:2 20688:1 20691:1 20714:1 20719:1 20720:1 20722:1 20724:1 20725:1 20731:1 20749:1 20779:4 20782:1 20787:1 20789:1 20796:1 20811:2 20814:1 20821:1 20839:1 20849:1 20853:1 20871:1 20877:1 20894:1 20897:1 20903:2 20907:1 20908:2 20918:2 20923:6 20942:1 20972:1 20976:1 20987:1 20996:10 21002:1 21014:2 21017:2 21030:1 21033:1 21049:1 21050:9 21066:1 21088:1 21103:1 21105:1 21131:1 21144:1 21175:1 21182:1 21196:2 21214:4 21216:1 21225:1 21231:1 21258:2 21301:4 21313:1 21316:1 21328:1 21331:1 21339:1 21343:1 21344:1 21389:1 21392:1 21413:1 21451:2 21468:1 21474:1 21495:1 21500:1 21511:1 21528:1 21529:1 21532:1 21554:1 21575:1 21596:3 21625:2 21630:1 21634:1 21638:1 21643:9 21655:1 21660:3 21663:1 21664:1 21674:1 21684:5 21690:1 21708:3 21722:1 21755:2 21769:2 21773:1 21789:2 21797:1 21798:1 21822:7 21829:1 21830:2 21835:1 21852:1 21874:1 21891:1 21896:1 21911:1 21915:1 21916:1 21932:2 21936:1 21939:1 21943:1 21949:1 21962:3 21980:1 21986:1 21987:1 21992:1 22003:1 22041:1 22048:1 22050:1 22106:1 22147:1 22151:1 22154:4 22157:2 22159:3 22170:3 22179:1 22181:1 22183:1 22228:1 22232:1 22233:1 22236:2 22241:2 22251:1 22268:1 22281:1 22285:1 22286:1 22298:1 22300:5 22305:2 22309:1 22319:1 22332:1 22349:1 22354:1 22383:1 22384:2 22389:1 22396:1 22405:1 22406:1 22409:1 22422:1 22425:2 22427:10 22430:1 22447:1 22456:1 22457:1 22461:1 22469:1 22481:1 22501:4 22515:1 22534:2 22538:2 22540:1 22542:1 22549:3 22563:1 22603:1 22604:1 22607:4 22614:2 22618:2 22621:1 22671:1 22693:2 22702:1 22703:1 22705:7 22709:1 22712:2 22720:1 22721:1 22723:1 22734:2 22735:1 22736:1 22740:1 22746:1 22748:2 22750:1 22756:1 22757:1 22769:2 22772:2 22777:1 22795:2 22822:1 22833:4 22834:1 22856:1 22860:1 22866:1 22874:2 22877:1 22895:1 22901:1 22909:4 22917:1 22926:1 22937:1 22985:15 22987:1 22990:1 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:2 23093:1 23096:2 23102:1 23112:2 23125:2 23133:1 23136:8 23153:2 23160:3 23199:1 23209:1 23212:1 23215:2 23221:1 23225:1 23236:1 23239:1 23244:1 23246:2 23256:1 23269:2 23271:1 23284:6 23302:3 23317:2 23325:1 23336:1 23360:1 23376:2 23390:1 23413:1 23445:1 23454:3 23459:1 23462:1 23481:1 23496:3 23517:1 23535:1 23549:1 23554:1 23570:1 23575:1 23579:12 23581:1 23583:2 23600:1 23611:1 23624:1 23629:1 23632:1 23639:1 23648:1 23652:1 23655:1 23662:1 23665:1 23666:2 23673:1 23695:1 23699:3 23716:1 23717:5 23721:1 23750:1 23752:1 23765:2 23767:1 23788:2 23807:1 23813:1 23819:2 23859:1 23875:1 23878:2 23879:1 23891:2 23913:1 23955:1 23968:1 23969:1 23971:3 23978:1 23987:1 24002:1 24003:1 24012:1 24015:1 24034:1 24049:1 24087:1 24090:2 24103:1 24108:2 24113:1 24119:2 24124:3 24128:1 24151:1 24168:1 24177:1 24183:1 24187:3 24188:1 24207:6 24216:1 24219:1 24231:1 24232:1 24235:1 24237:2 24241:2 24247:1 24273:2 24280:1 24281:2 24283:1 24293:1 24329:4 24336:1 24340:17 24344:1 24391:1 24408:1 24419:1 24432:1 24441:1 24444:1 24449:1 24478:1 24504:2 24509:1 24533:1 24534:1 24538:1 24548:1 24571:1 24591:1 24602:1 24653:1 24656:2 24668:2 24702:4 24714:1 24717:1 24756:1 24761:1 24777:1 24797:2 24814:3 24827:2 24833:1 24838:1 24841:1 24844:2 24845:1 24859:1 24881:1 24907:1 24921:1 24932:1 24939:1 24944:1 24970:1 24976:1 25004:1 25005:5 25014:1 25021:1 25023:1 25027:1 25049:1 25073:2 25090:1 25122:1 25147:3 25158:1 25181:1 25194:5 25252:2 25259:1 25264:1 25273:1 25275:1 25285:2 25287:4 25288:1 25311:1 25319:1 25325:1 25327:2 25335:1 25339:3 25347:2 25384:1 25385:2 25398:2 25415:1 25419:2 25431:2 25447:1 25468:1 25471:1 25472:1 25487:1 25495:4 25503:2 25507:1 25510:1 25514:1 25526:1 25561:2 25570:1 25587:1 25597:1 25598:1 25614:1 25623:1 25627:2 25631:1 25634:1 25643:1 25673:1 25676:1 25684:1 25688:1 25718:1 25722:1 25733:1 25740:2 25778:3 25797:5 25823:1 25832:1 25852:1 25860:1 25871:1 25872:1 25878:2 25884:1 25893:3 25918:2 25921:1 25922:1 25952:1 25966:1 25980:4 25998:1 26004:1 26021:1 26058:1 26073:1 26076:1 26097:4 26119:1 26123:1 26124:1 26150:2 26156:3 26159:1 26167:1 26172:3 26207:1 26226:1 26232:1 26257:1 26304:1 26316:1 26318:2 26320:1 26322:4 26324:3 26331:1 26356:1 26371:1 26372:1 26376:1 26377:2 26403:1 26413:1 26415:5 26424:1 26429:3 26435:5 26436:1 26445:1 26460:1 26463:1 26472:1 26489:2 26513:6 26518:1 26524:1 26525:1 26534:1 26538:2 26564:1 26579:1 26589:3 26627:4 26628:1 26652:2 26653:2 26681:2 26689:1 26712:1 26717:1 26728:3 26754:1 26761:1 26782:3 26808:1 26835:1 26842:2 26844:1 26848:1 26865:1 26868:1 26871:2 26891:1 26893:1 26898:1 26901:1 26912:1 26915:1 26920:1 26934:1 26935:1 26938:1 26949:2 26955:1 26956:1 26964:1 26977:6 26981:1 26982:1 26985:1 26989:1 27000:1 27001:1 27003:1 27008:2 27010:1 27056:1 27065:1 27078:1 27099:1 27113:1 27115:3 27138:9 27144:1 27178:1 27185:1 27192:2 27212:1 27244:1 27252:1 27257:1 27266:1 27280:3 27288:1 27295:1 27308:1 27314:2 27332:1 27407:3 27422:5 27424:2 27431:1 27438:2 27439:1 27440:4 27441:4 27444:1 27470:1 27490:2 27521:1 27531:1 27534:1 27540:3 27548:1 27552:1 27580:3 27601:1 27607:1 27621:1 27626:1 27636:1 27673:1 27709:1 27718:1 27755:1 27775:1 27799:1 27809:1 27824:1 27834:1 27852:1 27854:2 27863:1 27875:1 27883:2 27893:2 27910:2 27925:1 27939:1 27949:1 27950:1 28004:1 28005:2 28017:1 28095:2 28099:3 28110:1 28113:1 28118:1 28121:8 28154:2 28211:1 28223:17 28224:1 28227:3 28230:1 28238:1 28246:1 28258:1 28285:1 28338:2 28340:3 28342:3 28343:1 28391:1 28395:1 28398:1 28405:2 28410:1 28413:1 28421:1 28429:1 28430:1 28432:1 28437:1 28443:1 28472:2 28482:1 28499:1 28514:1 28524:2 28525:1 28526:1 28544:1 28548:1 28551:1 28574:1 28581:1 28593:1 28644:1 28645:1 28659:1 28674:1 28675:1 28680:1 28684:1 28696:3 28754:7 28762:1 28771:1 28795:1 28798:1 28839:3 28848:3 28866:1 28870:1 28874:1 28878:1 28912:1 28928:1 28931:3 28939:1 28962:2 28974:1 29000:2 29004:4 29030:1 29039:1 29041:1 29069:1 29111:1 29112:1 29130:4 29135:1 29143:1 29155:1 29168:1 29179:1 29182:2 29183:22 29184:2 29186:2 29189:3 29192:1 29193:1 29203:1 29220:1 29221:12 29224:1 29234:1 29239:1 29240:1 29248:1 29276:1 29277:1 29281:2 29289:1 29290:1 29310:1 29325:1 29334:4 29342:4 29346:1 29348:1 29377:3 29382:2 29388:1 29394:1 29429:1 29430:1 29454:1 29486:1 29495:2 29536:1 29537:1 29564:1 29573:1 29575:1 29581:1 29587:2 29589:1 29591:4 29595:1 29600:1 29620:2 29624:1 29636:1 29655:7 29663:1 29666:3 29718:1 29720:1 29741:3 29745:6 29747:1 29749:1 29754:1 29771:1 29777:2 29790:1 29795:1 29809:1 29812:1 29814:1 29821:1 29841:3 29848:1 29860:1 29891:3 29896:1 29901:1 29904:1 29905:2 29932:2 29935:1 29936:4 29942:1 29950:5 29957:1 29969:2 30003:1 30011:1 30056:1 30080:1 30104:1 30107:1 30129:4 30160:2 30164:1 30170:1 30177:1 30201:1 30210:2 30216:1 30222:3 30232:1 30241:1 30252:1 30269:1 30285:2 30290:1 30292:1 30313:1 30325:2 30341:1 30345:1 30346:6 30348:1 30354:1 30364:2 30402:2 30407:1 30429:1 30435:4 30441:2 30507:1 30517:1 30518:1 30524:1 30525:1 30527:3 30533:1 30539:1 30576:1 30586:1 30588:1 30592:1 30593:1 30595:1 30599:1 30609:2 30650:1 16 24:1 26:1 62:1 69:1 75:4 91:1 94:1 121:1 136:1 151:1 160:1 190:1 206:1 220:1 224:4 251:1 266:1 285:1 294:4 315:1 324:1 334:2 335:2 336:1 360:1 368:1 369:1 375:1 407:1 430:3 436:1 440:2 453:1 471:1 477:2 489:1 493:1 495:1 502:1 503:1 505:1 510:1 511:2 546:1 547:1 564:3 625:1 637:3 647:1 660:2 666:1 673:4 679:1 688:1 694:1 705:1 710:1 722:1 730:1 737:1 748:1 778:2 795:1 798:1 815:1 836:1 845:2 853:1 857:1 870:1 878:1 882:1 895:1 898:1 931:1 939:2 943:1 949:1 951:2 965:1 966:2 971:3 973:1 974:2 975:5 976:2 1003:1 1028:1 1029:5 1032:2 1038:1 1058:1 1065:2 1069:1 1107:2 1108:1 1131:1 1134:1 1137:1 1155:1 1161:1 1170:1 1171:1 1217:3 1221:1 1224:1 1233:1 1236:1 1242:2 1253:1 1254:4 1267:1 1273:1 1280:1 1291:3 1319:1 1324:1 1325:1 1331:1 1333:3 1336:1 1346:1 1347:2 1348:2 1361:1 1365:1 1377:1 1379:1 1389:1 1395:2 1409:2 1421:1 1422:1 1446:2 1476:1 1499:1 1500:3 1503:1 1511:1 1514:1 1519:1 1538:1 1556:1 1566:6 1579:1 1585:5 1590:1 1594:2 1601:1 1602:2 1603:1 1608:2 1609:1 1614:1 1618:1 1625:1 1628:3 1651:1 1657:5 1671:1 1677:1 1681:1 1685:1 1690:2 1725:2 1730:1 1734:3 1739:3 1742:2 1743:1 1756:1 1757:1 1759:1 1776:4 1780:3 1788:1 1789:1 1802:1 1807:1 1826:1 1840:1 1841:1 1855:2 1857:1 1860:1 1863:1 1873:2 1886:2 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1939:1 1951:1 1954:1 1955:1 1964:1 1970:1 1982:1 1986:1 1989:1 1997:1 1999:1 2016:1 2021:1 2023:1 2026:1 2032:1 2035:1 2038:1 2039:4 2046:1 2052:1 2069:1 2070:2 2090:1 2125:1 2132:1 2149:1 2153:1 2161:2 2162:2 2164:1 2167:2 2169:1 2170:3 2204:1 2227:1 2231:1 2232:1 2234:3 2235:1 2237:2 2269:4 2296:1 2307:1 2337:1 2339:1 2346:1 2351:1 2353:2 2363:1 2404:1 2405:1 2406:1 2407:2 2408:4 2413:1 2415:3 2416:1 2417:1 2420:5 2421:1 2422:3 2424:1 2427:1 2434:5 2436:3 2437:6 2450:1 2473:1 2486:1 2488:1 2495:1 2508:1 2518:2 2519:2 2520:1 2525:1 2532:1 2533:2 2550:1 2556:1 2560:1 2575:1 2599:1 2602:1 2623:3 2633:1 2641:1 2645:1 2657:2 2681:1 2689:1 2693:1 2694:1 2705:1 2742:1 2747:1 2766:1 2797:2 2803:1 2812:4 2819:1 2825:3 2834:1 2841:1 2842:1 2849:1 2852:2 2854:7 2856:2 2872:1 2874:1 2888:2 2896:1 2900:1 2902:1 2909:3 2912:1 2943:2 2952:2 2962:1 2963:1 2965:4 2976:2 3019:4 3024:1 3031:1 3039:1 3056:10 3067:7 3090:2 3099:1 3118:22 3127:1 3128:1 3151:1 3152:1 3170:1 3189:1 3196:1 3224:2 3227:1 3232:1 3296:3 3299:1 3311:1 3318:1 3342:1 3378:1 3390:1 3391:1 3403:2 3406:4 3428:10 3442:1 3454:1 3469:1 3485:1 3498:5 3543:1 3565:1 3567:1 3574:1 3590:1 3609:1 3613:1 3628:1 3634:1 3643:3 3649:1 3654:1 3661:1 3667:3 3711:2 3713:1 3730:1 3731:1 3746:3 3764:1 3778:1 3796:1 3801:1 3803:3 3804:1 3810:2 3812:1 3813:1 3819:2 3839:1 3846:1 3867:1 3886:1 3898:1 3902:1 3903:3 3913:1 3918:1 3929:1 3950:1 3958:2 3959:32 3981:1 3993:2 3994:1 3995:7 4000:1 4009:1 4010:18 4011:2 4012:1 4015:4 4027:2 4042:3 4057:1 4058:3 4061:2 4063:2 4076:2 4078:1 4079:1 4116:2 4122:1 4123:3 4130:1 4134:1 4173:1 4178:1 4182:1 4183:3 4196:2 4207:2 4209:1 4216:1 4219:1 4223:1 4235:1 4256:1 4258:1 4265:1 4266:1 4267:1 4269:1 4270:1 4285:1 4290:1 4294:1 4297:1 4301:3 4318:3 4324:1 4330:1 4368:1 4369:1 4381:1 4423:1 4436:1 4439:2 4463:2 4474:1 4483:1 4486:1 4498:2 4504:1 4508:1 4509:1 4539:1 4547:1 4555:1 4557:1 4563:1 4599:1 4611:1 4636:8 4650:1 4697:1 4701:1 4706:5 4715:1 4718:2 4749:4 4767:1 4773:1 4787:1 4796:1 4840:1 4854:1 4855:2 4880:1 4896:1 4900:1 4906:1 4909:1 4921:2 4927:1 4930:2 4938:1 4948:3 4959:1 4966:2 4989:2 4993:1 4994:1 5044:1 5058:1 5059:1 5062:1 5064:1 5076:1 5092:2 5100:1 5153:1 5159:1 5186:1 5189:1 5201:13 5202:1 5211:1 5219:1 5231:2 5241:1 5260:2 5275:1 5288:1 5308:3 5314:1 5320:3 5321:1 5323:4 5340:1 5344:2 5345:2 5347:6 5348:1 5350:1 5351:1 5354:2 5356:1 5361:1 5362:17 5363:1 5365:1 5370:2 5371:3 5376:1 5397:1 5401:2 5453:2 5467:1 5478:1 5486:1 5488:1 5491:1 5560:1 5593:3 5594:3 5603:5 5648:1 5652:1 5670:1 5675:2 5677:17 5684:1 5703:1 5710:1 5712:1 5735:2 5771:1 5774:1 5786:1 5810:1 5816:1 5819:1 5830:1 5836:1 5839:1 5848:1 5856:2 5857:1 5901:1 5902:1 5904:1 5908:1 5911:1 5921:1 5922:2 5943:1 5951:1 5954:1 5956:1 5962:2 5965:1 5967:1 5987:2 5993:1 6018:1 6021:3 6038:2 6044:1 6061:1 6063:1 6065:1 6068:1 6079:1 6097:1 6101:1 6103:1 6118:1 6121:1 6136:1 6140:1 6142:1 6199:3 6217:1 6219:3 6221:1 6227:1 6243:1 6280:1 6305:2 6330:1 6364:1 6368:1 6371:5 6380:1 6386:2 6410:2 6415:1 6444:1 6465:1 6471:1 6480:1 6490:2 6491:2 6492:1 6498:1 6499:1 6528:3 6529:1 6536:1 6539:2 6540:2 6568:1 6588:1 6591:2 6596:1 6602:1 6618:5 6621:1 6635:1 6636:1 6639:1 6648:1 6654:1 6660:1 6721:2 6724:1 6725:1 6726:1 6727:1 6728:1 6730:2 6731:2 6734:2 6735:3 6736:3 6743:2 6744:6 6745:1 6746:1 6747:2 6756:1 6773:1 6776:1 6797:1 6836:1 6872:1 6878:1 6886:1 6895:2 6901:1 6930:1 6932:1 6970:1 6977:1 6984:1 6994:1 7000:2 7019:1 7026:1 7027:5 7032:3 7035:1 7039:1 7046:1 7047:1 7060:2 7080:1 7083:3 7114:1 7115:1 7118:1 7126:1 7148:1 7166:1 7192:1 7200:1 7201:2 7204:1 7216:3 7222:1 7231:1 7236:2 7242:1 7257:1 7267:1 7273:1 7308:1 7322:1 7328:1 7333:1 7335:2 7342:1 7384:1 7407:1 7412:1 7432:2 7433:1 7455:1 7456:1 7522:2 7542:1 7548:1 7556:1 7573:1 7574:1 7577:5 7585:2 7601:1 7603:1 7610:1 7612:1 7625:1 7635:1 7653:1 7717:1 7769:1 7774:1 7779:1 7788:4 7830:1 7840:3 7874:4 7915:2 7926:1 7932:1 7954:1 7993:1 7997:2 7998:1 8005:1 8023:1 8027:1 8031:3 8054:1 8064:3 8065:4 8066:2 8084:1 8089:2 8097:1 8100:1 8121:1 8122:1 8128:1 8131:35 8133:1 8134:1 8140:1 8151:9 8152:18 8161:1 8164:1 8170:1 8173:1 8207:1 8208:3 8238:1 8254:1 8273:1 8279:1 8302:2 8307:1 8316:1 8362:3 8365:5 8372:1 8408:1 8413:1 8415:4 8430:1 8433:1 8450:1 8467:1 8478:1 8492:1 8521:1 8523:3 8540:5 8546:2 8559:1 8570:2 8590:1 8597:1 8603:1 8610:1 8623:1 8624:1 8633:16 8651:1 8655:1 8664:2 8665:1 8687:2 8718:1 8724:1 8733:2 8742:1 8748:1 8753:2 8760:3 8779:1 8789:1 8793:3 8798:3 8803:1 8816:2 8820:3 8830:1 8840:2 8842:1 8845:1 8850:1 8857:1 8858:2 8863:2 8873:1 8884:2 8887:2 8895:1 8898:1 8899:1 8915:2 8932:1 8938:1 8942:3 8953:1 8959:1 8966:1 8979:1 8980:2 8983:1 8984:3 8985:1 8986:2 8987:4 8990:1 8995:1 8998:2 9000:2 9004:3 9020:1 9027:1 9035:2 9039:2 9040:1 9041:1 9045:1 9046:1 9058:1 9061:1 9072:1 9075:2 9081:1 9109:1 9112:5 9135:1 9139:3 9146:1 9149:1 9151:1 9158:1 9164:1 9169:1 9204:1 9205:1 9209:1 9215:2 9225:3 9227:1 9248:1 9268:3 9269:2 9273:3 9274:1 9276:1 9277:2 9280:3 9286:2 9301:1 9302:1 9304:4 9316:1 9318:1 9339:2 9345:1 9420:2 9439:2 9442:1 9450:1 9453:1 9463:1 9471:1 9478:1 9480:1 9495:1 9504:1 9506:1 9523:1 9561:3 9589:1 9592:1 9594:3 9608:1 9618:5 9640:2 9646:2 9651:1 9658:1 9662:1 9663:1 9677:1 9686:1 9695:3 9697:1 9715:1 9718:1 9721:1 9732:1 9776:1 9781:1 9809:1 9840:1 9870:1 9874:1 9877:2 9882:2 9888:1 9889:2 9909:1 9928:1 9930:1 9937:1 9940:1 9942:1 9972:1 9973:1 9977:2 9983:1 9994:1 10009:1 10037:17 10043:1 10060:1 10069:2 10078:4 10084:2 10085:1 10109:1 10117:1 10128:1 10130:2 10146:1 10169:13 10185:1 10190:2 10202:1 10211:1 10223:5 10229:1 10235:1 10238:3 10239:1 10240:1 10241:1 10259:1 10269:1 10275:1 10317:2 10321:3 10322:1 10356:6 10362:2 10363:4 10364:2 10371:1 10379:1 10387:2 10393:2 10395:1 10400:1 10406:1 10410:3 10413:1 10415:1 10416:1 10423:1 10446:3 10450:3 10468:1 10470:2 10483:1 10493:1 10533:1 10547:1 10549:3 10552:1 10577:9 10580:1 10581:5 10596:1 10601:1 10651:3 10691:1 10698:2 10707:1 10718:1 10731:1 10757:1 10763:1 10780:4 10784:1 10791:1 10794:1 10809:1 10828:1 10830:1 10868:1 10880:2 10892:3 10898:1 10903:1 10907:1 10917:1 10923:1 10935:1 10939:1 10957:2 10962:3 10973:1 10998:1 11009:2 11026:2 11028:2 11031:1 11040:1 11047:6 11060:2 11061:3 11063:3 11070:1 11081:1 11084:1 11087:1 11105:1 11106:2 11120:1 11126:1 11134:4 11148:2 11156:1 11160:2 11166:6 11230:1 11231:1 11234:1 11237:1 11260:2 11261:2 11262:1 11268:1 11305:1 11315:1 11324:1 11359:1 11364:1 11366:1 11371:1 11388:2 11389:1 11400:5 11417:3 11418:5 11430:1 11441:1 11477:4 11482:1 11499:1 11512:2 11528:1 11529:2 11535:1 11556:3 11569:2 11597:1 11622:1 11641:1 11668:1 11673:1 11676:1 11677:1 11678:1 11680:1 11683:1 11684:3 11703:1 11710:1 11718:1 11721:2 11740:1 11745:1 11753:1 11754:1 11779:2 11808:1 11810:2 11819:1 11824:1 11830:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11885:1 11887:3 11918:1 11923:2 11926:5 11929:1 11961:1 11985:1 11986:1 11991:1 11994:2 12009:1 12029:2 12045:1 12056:1 12063:1 12065:4 12066:2 12077:3 12081:1 12095:3 12098:2 12120:1 12130:1 12135:1 12146:3 12153:1 12155:4 12157:1 12170:1 12171:1 12176:1 12181:1 12182:1 12189:1 12193:5 12194:1 12200:1 12202:5 12210:1 12218:1 12228:4 12253:2 12266:5 12270:1 12275:2 12280:1 12293:1 12314:1 12325:4 12333:1 12335:1 12337:2 12373:1 12375:1 12385:3 12406:1 12412:1 12415:1 12423:1 12440:1 12470:2 12471:2 12506:1 12508:1 12539:1 12555:3 12594:2 12609:1 12625:1 12628:1 12629:1 12632:1 12654:3 12655:3 12656:17 12660:4 12679:1 12681:1 12698:1 12705:1 12716:2 12745:1 12766:1 12788:1 12815:1 12824:6 12825:2 12841:1 12845:1 12846:2 12850:1 12871:1 12902:3 12906:1 12929:1 12936:1 12943:2 12947:1 12953:1 12961:1 12976:1 12992:1 13011:1 13015:1 13019:1 13035:3 13054:1 13057:1 13092:1 13095:2 13103:1 13107:1 13110:1 13117:1 13129:1 13166:1 13183:1 13207:1 13227:6 13240:1 13243:1 13248:1 13251:1 13276:2 13277:3 13304:1 13307:1 13342:1 13371:1 13376:2 13404:1 13424:1 13429:1 13440:1 13441:1 13443:2 13472:1 13486:2 13488:1 13494:1 13522:1 13580:1 13597:3 13609:1 13614:1 13623:1 13624:2 13630:1 13649:1 13652:1 13656:1 13661:1 13664:1 13673:1 13681:1 13684:1 13700:2 13709:1 13711:1 13712:1 13714:2 13720:1 13735:1 13739:1 13740:1 13768:1 13775:1 13776:1 13780:2 13816:2 13821:1 13832:1 13833:2 13835:1 13838:6 13842:3 13843:1 13851:1 13853:1 13858:3 13873:3 13875:1 13878:1 13883:3 13898:1 13915:7 13916:1 13923:1 13926:1 13930:1 13931:2 13943:1 13944:1 13958:1 13981:2 13993:2 13994:1 14011:3 14016:1 14028:1 14037:1 14050:2 14063:3 14078:1 14085:2 14086:5 14112:1 14113:2 14114:2 14129:1 14145:1 14152:1 14157:2 14177:1 14189:2 14221:1 14228:1 14234:1 14237:1 14238:2 14239:1 14241:1 14245:1 14264:1 14274:1 14275:1 14291:1 14296:1 14298:1 14307:1 14310:1 14311:1 14315:2 14318:1 14320:1 14334:1 14335:1 14366:7 14377:1 14422:1 14426:1 14445:1 14446:1 14450:1 14468:1 14471:2 14472:1 14477:4 14503:1 14522:1 14529:1 14533:1 14544:2 14546:3 14552:2 14553:4 14563:1 14584:1 14592:3 14610:1 14622:2 14642:2 14644:1 14649:1 14650:1 14654:1 14664:1 14665:2 14670:2 14699:1 14704:1 14769:1 14771:1 14780:1 14785:2 14806:1 14833:1 14845:1 14862:1 14887:1 14901:1 14921:1 14922:1 14935:1 14952:1 14958:1 14976:2 14986:2 14987:1 14997:1 15002:1 15008:3 15010:1 15011:1 15019:1 15020:1 15032:2 15060:1 15068:1 15072:1 15088:1 15096:2 15120:1 15127:1 15141:1 15162:1 15166:1 15174:1 15181:1 15190:1 15196:4 15216:1 15233:1 15238:1 15247:2 15252:1 15276:1 15290:1 15319:4 15364:1 15476:1 15487:1 15493:1 15507:2 15538:3 15547:3 15548:1 15552:1 15554:1 15556:1 15573:1 15577:1 15597:1 15605:1 15625:1 15643:2 15646:1 15655:3 15672:1 15683:1 15693:1 15695:2 15697:1 15702:1 15725:1 15734:1 15771:1 15772:1 15775:1 15781:1 15788:1 15805:1 15814:1 15868:2 15875:3 15876:3 15881:1 15907:4 15908:1 15911:1 15933:1 15951:3 15955:1 15961:1 15962:1 15968:1 15984:1 15999:1 16001:1 16008:1 16018:1 16021:3 16028:2 16032:2 16038:2 16054:1 16066:1 16073:2 16096:1 16111:1 16121:1 16140:1 16148:3 16167:8 16172:7 16174:1 16181:1 16207:2 16218:1 16221:2 16222:2 16235:3 16255:1 16263:1 16270:1 16277:1 16303:2 16307:1 16309:1 16317:4 16325:2 16336:1 16345:1 16347:1 16352:1 16353:3 16356:2 16357:5 16358:1 16363:1 16367:1 16368:1 16369:1 16378:1 16379:5 16386:4 16467:1 16480:1 16484:2 16495:2 16498:1 16501:2 16507:4 16519:1 16530:2 16532:1 16561:2 16564:2 16578:1 16593:2 16610:1 16623:1 16630:1 16638:2 16646:8 16659:2 16660:2 16673:1 16674:2 16677:1 16678:1 16692:1 16697:1 16706:17 16734:1 16739:5 16740:1 16743:1 16761:2 16775:50 16794:3 16799:1 16831:1 16861:1 16864:1 16866:1 16867:2 16908:1 16913:2 16915:1 16916:2 16919:2 16920:3 16921:1 16927:2 16931:1 16944:1 16957:1 16961:1 16965:1 16980:1 16981:1 17010:1 17013:1 17047:1 17055:5 17075:1 17090:2 17095:1 17116:1 17130:1 17135:1 17139:1 17153:1 17192:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:2 17253:1 17294:2 17295:1 17317:1 17322:1 17326:1 17336:2 17342:3 17343:1 17347:1 17369:1 17372:3 17392:3 17405:1 17414:1 17415:1 17422:1 17424:2 17426:1 17427:1 17435:1 17438:1 17445:1 17454:1 17460:10 17470:1 17500:1 17514:2 17520:1 17521:1 17553:1 17559:1 17564:1 17582:1 17583:2 17585:3 17587:1 17589:2 17593:1 17596:1 17608:1 17613:1 17625:1 17635:1 17641:1 17645:2 17646:2 17675:1 17718:2 17727:1 17742:1 17788:1 17797:2 17800:1 17816:1 17821:2 17831:1 17835:1 17843:2 17844:1 17849:2 17859:1 17871:1 17875:1 17877:3 17881:1 17889:1 17897:1 17906:3 17912:1 17932:1 17933:1 17952:1 17957:1 17972:2 17998:2 18006:1 18011:1 18034:4 18099:1 18110:1 18112:1 18115:1 18129:3 18131:1 18134:1 18136:1 18144:1 18147:2 18153:1 18154:1 18171:2 18174:2 18182:1 18187:1 18188:1 18197:2 18214:1 18221:1 18223:1 18226:1 18248:2 18249:2 18277:1 18280:1 18282:1 18285:1 18310:1 18330:2 18338:2 18342:1 18355:1 18366:2 18410:1 18412:1 18415:1 18417:2 18421:2 18423:1 18441:1 18442:8 18446:1 18460:1 18474:1 18478:1 18506:1 18517:1 18524:1 18543:1 18544:2 18546:2 18559:2 18562:1 18565:1 18576:1 18584:1 18589:1 18602:1 18625:1 18629:2 18633:4 18634:1 18636:1 18646:1 18678:1 18707:1 18748:3 18749:1 18757:1 18781:1 18786:1 18797:1 18807:1 18815:1 18816:1 18819:3 18831:2 18838:1 18855:1 18866:1 18872:1 18873:3 18922:1 18932:1 18956:3 18966:1 18977:3 18980:1 18984:1 18987:3 19006:1 19007:1 19016:1 19018:1 19022:1 19079:1 19098:1 19113:1 19114:9 19118:1 19125:1 19132:1 19145:1 19160:1 19170:1 19182:1 19191:2 19193:1 19210:1 19217:1 19225:1 19241:1 19244:3 19250:2 19251:1 19265:3 19269:1 19272:1 19276:2 19277:1 19315:1 19323:2849 19328:1 19342:4 19343:1 19348:2 19376:1 19385:1 19395:1 19405:1 19410:1 19413:3 19421:1 19452:3 19473:2 19482:2 19505:1 19507:3 19509:2 19530:3 19536:1 19539:3 19541:1 19543:1 19584:1 19586:1 19609:1 19632:1 19636:4 19638:1 19658:1 19664:1 19696:2 19702:1 19708:1 19721:1 19733:1 19743:1 19751:1 19756:1 19758:1 19804:1 19815:1 19817:2 19820:1 19831:4 19845:1 19856:1 19857:1 19882:1 19918:1 19919:1 19933:3 19984:1 20004:1 20024:1 20032:2 20043:1 20048:2 20050:1 20057:2 20074:4 20086:2 20090:1 20091:3 20095:1 20107:1 20121:10 20141:1 20142:1 20144:1 20146:1 20147:12 20159:1 20177:1 20178:3 20181:1 20197:1 20212:1 20216:3 20236:1 20243:2 20248:1 20250:3 20252:2 20255:1 20260:1 20262:1 20277:2 20279:1 20283:1 20287:1 20313:1 20319:3 20326:1 20339:1 20349:3 20363:1 20387:1 20389:1 20392:1 20447:1 20451:1 20458:1 20477:1 20492:1 20493:1 20502:1 20523:1 20524:10 20527:1 20565:1 20573:1 20596:1 20605:1 20613:1 20619:1 20623:5 20648:1 20669:2 20688:1 20691:1 20714:1 20719:1 20720:1 20722:1 20724:1 20725:1 20731:1 20749:1 20779:4 20782:1 20787:1 20789:1 20796:1 20811:2 20814:1 20821:1 20839:1 20849:1 20853:1 20871:1 20877:2 20894:1 20897:1 20903:2 20907:1 20908:2 20918:2 20923:6 20942:1 20972:1 20976:1 20987:1 20996:10 21002:1 21014:2 21017:2 21030:1 21033:1 21049:1 21050:10 21066:1 21088:1 21103:1 21105:1 21131:1 21144:1 21175:1 21182:1 21196:2 21214:4 21216:1 21225:1 21231:1 21258:2 21301:4 21313:1 21316:2 21328:1 21331:1 21339:1 21343:1 21344:1 21389:1 21392:1 21413:1 21451:2 21468:1 21474:1 21495:1 21500:2 21511:1 21528:1 21529:1 21532:1 21554:1 21575:1 21596:3 21625:2 21630:1 21634:1 21638:1 21643:9 21655:1 21660:3 21663:1 21664:1 21674:1 21684:5 21690:1 21708:3 21711:1 21722:1 21755:2 21769:2 21773:1 21789:2 21797:1 21798:1 21822:7 21829:1 21830:2 21835:1 21852:1 21874:1 21891:1 21896:1 21911:1 21915:1 21916:1 21932:2 21936:1 21939:1 21943:1 21949:1 21962:3 21980:1 21986:1 21987:1 21992:1 22003:1 22005:1 22041:1 22048:1 22050:1 22106:1 22147:1 22151:1 22154:4 22157:2 22159:3 22170:3 22179:1 22181:1 22183:1 22228:1 22232:1 22233:1 22236:2 22241:2 22251:1 22268:1 22281:1 22285:1 22286:1 22298:1 22300:5 22305:2 22309:1 22319:1 22332:1 22349:1 22354:1 22383:1 22384:2 22389:1 22396:1 22405:1 22406:1 22409:1 22422:1 22425:2 22427:10 22430:1 22447:1 22456:1 22457:1 22461:1 22469:1 22481:1 22501:4 22515:1 22534:2 22538:2 22540:1 22542:1 22549:4 22563:1 22603:1 22604:1 22607:4 22614:2 22618:3 22621:1 22671:1 22693:3 22702:1 22703:1 22705:7 22709:1 22712:2 22720:1 22721:1 22723:1 22734:2 22735:1 22736:1 22740:1 22746:1 22748:2 22750:1 22756:1 22757:1 22769:2 22772:2 22777:1 22795:2 22822:1 22833:4 22834:1 22856:1 22860:1 22866:1 22874:2 22877:1 22895:1 22901:1 22909:4 22917:1 22926:1 22937:1 22985:17 22987:2 22990:1 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:2 23093:1 23096:2 23102:1 23106:1 23112:2 23125:2 23133:1 23136:8 23153:2 23160:3 23199:1 23209:1 23212:1 23215:2 23221:1 23225:1 23236:1 23239:1 23244:1 23246:2 23256:1 23269:2 23271:1 23284:6 23302:3 23317:2 23325:1 23336:1 23360:1 23376:2 23390:1 23413:1 23445:1 23454:3 23459:1 23462:1 23481:1 23496:3 23517:1 23535:1 23549:1 23554:1 23570:1 23575:1 23579:12 23581:1 23583:2 23600:1 23611:1 23624:1 23629:1 23632:1 23639:1 23648:1 23652:1 23655:1 23662:1 23665:1 23666:2 23673:1 23687:1 23695:1 23699:3 23716:1 23717:5 23721:1 23750:1 23752:1 23765:2 23767:1 23788:2 23807:1 23813:1 23819:2 23859:1 23875:1 23878:2 23879:1 23891:2 23913:1 23955:1 23968:1 23969:1 23971:3 23978:1 23987:1 24002:1 24003:1 24012:1 24015:1 24034:1 24049:1 24087:1 24090:2 24103:1 24108:2 24113:1 24119:2 24124:3 24128:1 24151:1 24168:1 24177:1 24183:1 24187:3 24188:1 24207:6 24216:1 24219:1 24231:1 24232:1 24235:1 24237:2 24241:2 24247:1 24273:2 24280:1 24281:2 24283:1 24293:1 24329:4 24336:1 24340:19 24344:1 24391:1 24408:1 24419:1 24432:1 24441:1 24444:1 24449:1 24478:1 24504:2 24508:1 24509:1 24533:1 24534:1 24538:1 24548:1 24571:1 24591:1 24602:1 24653:1 24656:2 24668:2 24702:4 24714:1 24717:1 24756:1 24761:1 24775:1 24777:1 24797:2 24814:3 24827:2 24833:1 24838:1 24841:1 24844:2 24845:1 24859:1 24881:1 24907:1 24921:1 24932:1 24939:1 24944:1 24970:1 24976:1 24999:1 25004:1 25005:5 25014:1 25021:1 25023:1 25027:1 25049:1 25073:2 25090:1 25122:1 25147:3 25158:1 25181:1 25190:1 25194:5 25252:2 25259:1 25264:1 25273:1 25275:1 25285:2 25287:5 25288:1 25311:1 25319:1 25325:1 25327:2 25335:1 25339:3 25347:2 25384:1 25385:2 25398:2 25415:1 25419:2 25431:2 25447:1 25468:1 25471:1 25472:1 25487:1 25495:4 25503:2 25507:1 25510:1 25514:1 25526:1 25561:2 25570:1 25576:1 25587:1 25597:1 25598:2 25614:1 25623:1 25627:2 25631:1 25634:1 25643:1 25652:1 25673:1 25676:1 25684:1 25688:1 25716:1 25718:1 25722:1 25733:1 25740:2 25778:3 25797:5 25823:1 25832:1 25852:1 25860:1 25871:1 25872:1 25878:2 25884:1 25893:3 25900:1 25918:2 25921:1 25922:1 25952:1 25966:1 25980:4 25998:1 26004:1 26007:1 26021:1 26048:1 26058:1 26073:1 26076:1 26097:4 26119:1 26123:1 26124:1 26150:2 26156:3 26159:1 26167:1 26172:3 26207:1 26226:1 26232:1 26257:1 26304:1 26316:1 26318:2 26320:1 26322:7 26324:3 26331:1 26356:1 26371:1 26372:1 26376:1 26377:2 26403:1 26413:1 26415:5 26424:1 26429:3 26435:5 26436:1 26445:1 26460:1 26463:1 26472:1 26489:2 26513:6 26518:1 26524:1 26525:1 26534:1 26538:2 26564:1 26579:1 26589:3 26627:4 26628:1 26652:2 26653:2 26681:2 26689:1 26712:1 26717:1 26728:3 26754:1 26761:1 26782:4 26808:1 26835:1 26839:1 26842:2 26844:1 26848:1 26862:1 26865:1 26868:2 26871:2 26891:1 26893:1 26898:1 26901:1 26912:1 26915:1 26920:1 26934:1 26935:1 26938:1 26949:2 26955:1 26956:1 26964:1 26977:6 26981:1 26982:1 26985:1 26989:1 27000:1 27001:1 27003:1 27008:2 27010:1 27056:1 27065:1 27078:1 27099:1 27107:1 27113:1 27115:3 27138:9 27144:1 27178:1 27185:1 27188:1 27192:2 27212:1 27244:1 27252:1 27257:1 27266:1 27280:3 27288:1 27295:1 27308:1 27314:2 27332:1 27407:3 27422:5 27424:2 27431:1 27438:2 27439:1 27440:4 27441:4 27444:1 27470:1 27490:2 27521:1 27531:1 27534:1 27540:3 27548:1 27552:1 27580:3 27601:1 27607:1 27621:2 27626:1 27636:1 27673:1 27676:1 27709:1 27718:1 27735:1 27755:1 27775:1 27799:1 27809:1 27824:1 27834:1 27852:1 27854:2 27863:1 27875:1 27883:2 27893:2 27910:2 27925:1 27939:1 27949:1 27950:1 28004:1 28005:2 28017:1 28095:2 28099:3 28110:1 28113:1 28118:1 28121:8 28154:2 28211:1 28223:19 28224:1 28227:3 28230:1 28238:1 28246:1 28258:2 28285:1 28338:2 28340:3 28342:3 28343:1 28388:1 28391:1 28395:1 28398:1 28405:2 28410:2 28413:1 28421:1 28429:1 28430:1 28432:1 28437:1 28443:1 28448:1 28472:2 28482:1 28499:1 28514:1 28524:2 28525:1 28526:1 28544:1 28548:1 28551:1 28574:1 28581:1 28593:1 28644:1 28645:1 28659:1 28674:1 28675:1 28680:1 28684:1 28696:3 28754:7 28762:1 28771:1 28795:1 28798:1 28839:3 28848:3 28866:1 28870:1 28874:1 28878:1 28912:1 28928:1 28931:3 28939:1 28962:2 28974:1 29000:3 29004:4 29030:1 29039:1 29041:1 29069:1 29111:1 29112:1 29130:4 29135:1 29143:1 29155:1 29167:1 29168:1 29179:1 29182:2 29183:23 29184:2 29186:2 29189:4 29192:1 29193:1 29203:1 29220:1 29221:12 29224:1 29234:1 29239:1 29240:1 29248:1 29276:1 29277:1 29281:2 29289:2 29290:1 29300:1 29310:1 29325:1 29334:4 29342:4 29346:1 29348:1 29377:3 29382:2 29388:1 29394:1 29429:1 29430:1 29454:1 29486:1 29495:2 29536:1 29537:1 29542:1 29564:1 29573:1 29575:1 29581:1 29587:2 29589:1 29591:4 29595:1 29600:1 29620:2 29624:1 29636:1 29655:7 29663:1 29666:3 29718:1 29720:1 29741:3 29745:6 29747:1 29749:1 29754:1 29771:1 29776:1 29777:2 29790:1 29795:1 29809:1 29812:1 29814:1 29821:1 29841:3 29848:1 29860:1 29891:3 29896:1 29898:1 29901:1 29904:1 29905:2 29932:2 29935:1 29936:4 29942:1 29950:5 29957:1 29969:2 30003:1 30011:1 30056:1 30080:1 30104:1 30107:1 30121:1 30129:4 30160:2 30164:1 30170:1 30177:1 30201:1 30210:2 30216:1 30222:3 30232:1 30241:1 30252:1 30269:1 30285:3 30290:1 30292:1 30313:1 30325:2 30341:1 30345:1 30346:6 30348:1 30354:1 30364:2 30401:1 30402:2 30407:1 30429:1 30435:4 30441:2 30507:1 30517:1 30518:1 30524:1 30525:1 30527:3 30533:1 30539:1 30571:1 30576:1 30586:1 30588:1 30592:1 30593:1 30595:1 30599:1 30609:2 30650:1 16 24:1 26:1 62:1 69:1 75:4 91:1 94:1 121:1 136:1 151:1 160:1 163:1 190:1 206:1 220:1 224:4 251:1 266:1 285:1 294:4 315:1 324:1 334:2 335:2 336:1 360:1 368:1 369:1 375:1 407:1 430:3 436:1 440:2 453:1 471:1 477:2 489:1 493:1 495:1 502:1 503:1 505:1 510:1 511:2 546:1 547:1 564:3 625:1 637:3 647:1 660:2 666:1 673:4 679:1 688:1 694:1 705:1 710:1 722:1 730:1 737:1 748:1 778:2 795:1 798:1 815:1 836:1 845:2 853:1 857:1 870:1 878:1 882:1 895:1 898:1 931:1 939:2 942:1 943:1 949:1 951:2 965:1 966:2 971:3 973:1 974:3 975:6 976:2 981:1 1003:1 1028:1 1029:6 1032:2 1038:1 1058:1 1065:2 1069:1 1107:2 1108:1 1131:1 1134:1 1137:1 1155:1 1161:1 1170:1 1171:1 1216:1 1217:3 1221:1 1224:1 1233:1 1236:1 1242:2 1253:1 1254:4 1267:2 1273:1 1280:1 1290:1 1291:3 1319:1 1324:1 1325:1 1331:1 1333:4 1336:1 1346:1 1347:2 1348:2 1361:1 1365:1 1377:1 1379:1 1389:1 1395:2 1409:2 1421:1 1422:1 1446:2 1476:1 1499:1 1500:3 1503:1 1511:1 1514:1 1516:1 1519:1 1538:1 1556:1 1566:6 1579:1 1585:6 1590:1 1594:2 1601:1 1602:2 1603:1 1608:2 1609:1 1614:1 1618:1 1625:1 1628:4 1642:1 1651:1 1657:5 1671:1 1677:1 1681:1 1685:1 1690:2 1725:2 1730:1 1734:4 1739:4 1742:2 1743:1 1756:1 1757:1 1759:1 1776:4 1780:3 1788:1 1789:1 1802:1 1807:1 1826:1 1840:1 1841:1 1855:2 1857:1 1860:1 1863:1 1873:2 1886:2 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1939:1 1951:1 1954:1 1955:1 1964:1 1970:1 1982:1 1986:1 1989:1 1997:1 1999:1 2016:1 2021:1 2023:1 2026:1 2032:1 2035:1 2038:1 2039:4 2042:1 2046:1 2052:1 2069:1 2070:3 2090:1 2096:1 2124:1 2125:1 2132:1 2149:1 2153:1 2161:2 2162:2 2164:1 2167:2 2169:1 2170:3 2204:1 2227:1 2231:1 2232:1 2234:3 2235:1 2237:2 2269:4 2296:1 2307:1 2337:1 2339:1 2346:1 2351:1 2353:3 2363:1 2404:1 2405:1 2406:1 2407:2 2408:4 2413:1 2415:4 2416:1 2417:1 2420:5 2421:1 2422:3 2424:1 2427:1 2434:5 2436:3 2437:6 2450:1 2455:1 2473:1 2486:1 2488:1 2495:1 2508:1 2518:2 2519:2 2520:1 2525:1 2532:1 2533:2 2550:1 2556:1 2560:1 2575:1 2599:1 2602:1 2623:3 2633:1 2641:1 2645:1 2657:2 2681:1 2689:1 2693:1 2694:1 2705:1 2742:1 2747:1 2766:1 2797:2 2803:1 2812:4 2819:1 2825:3 2834:1 2841:2 2842:1 2849:1 2852:2 2854:7 2856:2 2872:1 2874:1 2888:2 2896:1 2900:1 2902:1 2909:3 2912:1 2936:1 2943:2 2952:2 2962:1 2963:1 2965:4 2976:2 3019:4 3024:1 3031:1 3039:1 3056:10 3067:7 3090:2 3099:1 3118:24 3127:1 3128:1 3151:1 3152:1 3170:1 3189:1 3196:1 3224:2 3227:1 3232:1 3296:3 3299:1 3311:1 3318:1 3342:1 3378:1 3379:1 3390:1 3391:1 3403:2 3406:4 3428:10 3442:1 3454:1 3469:1 3485:1 3498:6 3543:1 3565:1 3567:1 3574:1 3590:1 3601:2 3609:1 3613:1 3628:1 3634:1 3643:3 3649:1 3654:1 3661:1 3667:4 3711:3 3713:1 3730:1 3731:1 3746:3 3764:1 3778:1 3796:1 3801:1 3803:3 3804:1 3810:2 3812:1 3813:1 3819:2 3839:1 3846:1 3867:1 3886:1 3898:1 3902:1 3903:3 3913:1 3918:1 3929:1 3950:1 3958:2 3959:32 3981:1 3993:2 3994:1 3995:7 4000:1 4009:1 4010:18 4011:2 4012:1 4015:4 4027:2 4042:3 4057:2 4058:3 4061:2 4063:2 4076:2 4078:1 4079:1 4095:1 4116:2 4122:1 4123:3 4130:1 4134:1 4173:1 4178:1 4182:1 4183:3 4196:2 4207:2 4209:1 4216:1 4219:1 4223:1 4235:2 4242:1 4256:1 4258:1 4265:1 4266:1 4267:1 4269:1 4270:1 4285:1 4290:1 4294:1 4297:1 4301:4 4318:4 4324:1 4330:1 4368:1 4369:1 4373:1 4381:1 4423:1 4436:1 4439:2 4463:2 4474:1 4483:1 4486:1 4498:2 4504:1 4505:1 4508:1 4509:1 4539:1 4547:1 4555:1 4557:1 4563:1 4599:1 4611:1 4636:8 4650:1 4697:1 4701:1 4706:5 4715:1 4718:2 4749:4 4767:1 4773:1 4787:1 4796:1 4840:1 4854:1 4855:2 4880:1 4896:1 4900:1 4906:1 4909:1 4921:2 4927:1 4930:2 4938:1 4948:3 4959:1 4966:3 4989:2 4993:1 4994:1 5044:1 5058:1 5059:1 5062:1 5064:1 5076:1 5092:2 5100:1 5153:1 5159:1 5186:1 5189:1 5201:13 5202:1 5211:1 5219:1 5231:2 5241:1 5260:2 5275:1 5288:1 5308:3 5314:1 5320:3 5321:1 5323:4 5340:1 5344:2 5345:2 5347:6 5348:1 5350:1 5351:1 5354:2 5356:1 5361:1 5362:17 5363:1 5365:1 5370:2 5371:3 5376:1 5397:1 5401:3 5453:2 5467:1 5478:1 5486:1 5488:1 5491:1 5560:1 5593:3 5594:3 5603:5 5648:1 5652:1 5670:1 5675:2 5677:17 5684:1 5703:1 5710:3 5712:1 5735:2 5771:1 5774:1 5786:1 5810:1 5816:1 5819:1 5830:1 5836:1 5839:1 5848:1 5856:2 5857:1 5901:1 5902:1 5904:1 5908:1 5911:1 5920:1 5921:1 5922:2 5943:1 5951:1 5954:1 5956:1 5962:2 5965:1 5967:1 5987:2 5993:1 6018:1 6021:3 6038:2 6044:1 6061:1 6063:1 6065:1 6068:1 6079:1 6095:1 6097:1 6101:1 6103:1 6118:1 6121:1 6136:1 6140:1 6142:1 6199:3 6217:1 6219:3 6221:1 6227:1 6231:1 6243:1 6280:1 6305:2 6330:1 6364:1 6368:1 6371:5 6380:1 6386:2 6410:2 6415:1 6444:1 6465:1 6471:1 6480:1 6490:2 6491:2 6492:1 6498:1 6499:1 6528:4 6529:1 6536:1 6539:2 6540:2 6568:1 6588:1 6591:2 6596:1 6602:1 6618:5 6621:1 6635:1 6636:1 6639:1 6648:1 6654:1 6660:1 6721:2 6724:1 6725:1 6726:1 6727:1 6728:1 6730:2 6731:2 6734:2 6735:3 6736:3 6743:2 6744:6 6745:1 6746:1 6747:2 6756:1 6773:1 6776:1 6797:1 6836:1 6872:1 6878:1 6886:1 6895:2 6901:1 6930:1 6932:1 6970:1 6977:1 6984:1 6994:1 7000:2 7019:1 7026:1 7027:5 7032:3 7035:1 7039:1 7046:1 7047:1 7060:2 7080:1 7083:3 7114:1 7115:1 7118:1 7126:1 7148:1 7166:1 7192:1 7200:1 7201:2 7204:1 7216:3 7222:1 7231:1 7236:2 7242:1 7257:1 7267:1 7273:1 7308:1 7322:1 7328:1 7333:1 7335:2 7342:1 7384:1 7407:1 7412:1 7432:2 7433:1 7455:1 7456:2 7495:1 7522:2 7542:1 7548:1 7556:1 7573:1 7574:1 7577:5 7585:2 7601:1 7603:1 7610:1 7612:1 7625:1 7635:1 7653:1 7717:1 7769:1 7774:1 7779:1 7788:4 7830:1 7840:3 7874:4 7915:2 7926:1 7932:2 7954:1 7963:1 7993:1 7997:2 7998:1 8005:1 8023:1 8027:1 8031:4 8054:1 8064:3 8065:4 8066:2 8084:1 8089:2 8094:1 8097:1 8100:1 8121:1 8122:2 8128:1 8130:1 8131:36 8133:1 8134:1 8140:2 8151:9 8152:20 8161:1 8164:1 8170:1 8173:1 8207:1 8208:4 8238:1 8254:1 8273:1 8279:1 8302:2 8307:1 8316:1 8362:3 8365:5 8372:1 8408:1 8413:1 8415:4 8430:1 8433:1 8450:1 8467:1 8478:1 8492:1 8521:1 8523:3 8540:6 8546:2 8559:1 8570:2 8590:1 8597:1 8603:1 8610:1 8623:1 8624:1 8633:17 8651:1 8655:1 8664:2 8665:1 8687:2 8718:1 8724:1 8733:2 8742:1 8748:1 8753:2 8760:3 8779:1 8789:1 8793:3 8798:4 8803:1 8816:2 8820:3 8830:1 8840:2 8842:1 8845:1 8850:1 8857:1 8858:2 8863:2 8873:1 8884:2 8887:2 8895:1 8898:1 8899:1 8915:2 8932:1 8938:1 8942:3 8953:1 8959:1 8966:1 8973:1 8979:1 8980:2 8983:1 8984:3 8985:1 8986:2 8987:4 8990:1 8995:1 8998:2 9000:2 9004:3 9020:1 9027:1 9035:2 9039:2 9040:1 9041:1 9045:1 9046:1 9058:1 9061:1 9072:1 9075:2 9081:1 9109:1 9112:5 9135:1 9139:3 9146:1 9149:1 9151:1 9158:1 9164:1 9169:1 9204:1 9205:1 9209:1 9215:2 9225:3 9227:1 9248:1 9268:4 9269:2 9273:4 9274:1 9276:1 9277:3 9280:3 9286:2 9301:1 9302:1 9304:4 9316:1 9318:1 9339:2 9345:1 9420:2 9439:2 9442:1 9450:1 9453:1 9463:1 9471:1 9478:1 9480:1 9495:1 9504:1 9506:1 9523:1 9561:3 9589:1 9592:1 9594:3 9608:1 9618:6 9640:2 9646:2 9651:1 9658:1 9662:1 9663:1 9677:1 9686:1 9695:3 9697:1 9715:1 9718:1 9721:1 9732:1 9776:1 9781:1 9809:1 9840:1 9870:1 9874:1 9877:3 9882:2 9888:1 9889:2 9909:1 9928:1 9930:1 9937:2 9940:1 9942:1 9972:1 9973:1 9977:2 9983:1 9994:1 10009:1 10037:17 10043:1 10060:1 10069:2 10078:4 10084:2 10085:1 10109:1 10117:1 10128:1 10130:2 10146:1 10169:14 10185:1 10190:2 10202:1 10211:1 10223:5 10229:1 10235:1 10238:3 10239:1 10240:1 10241:1 10259:1 10269:1 10275:1 10317:2 10321:3 10322:1 10356:6 10362:2 10363:4 10364:2 10371:1 10379:1 10387:2 10393:2 10395:1 10400:1 10406:1 10410:3 10413:1 10415:1 10416:1 10423:1 10446:3 10450:3 10468:1 10470:2 10483:1 10493:1 10533:1 10547:1 10549:3 10552:1 10577:9 10580:1 10581:5 10596:1 10601:1 10651:3 10691:1 10698:2 10707:1 10718:1 10731:1 10757:1 10763:1 10780:4 10784:1 10791:1 10794:1 10809:1 10828:1 10830:1 10868:1 10880:2 10892:3 10898:1 10903:1 10907:1 10917:1 10923:1 10935:1 10939:1 10957:2 10962:3 10973:1 10998:1 11009:2 11026:2 11028:2 11031:1 11040:1 11047:6 11060:2 11061:3 11062:1 11063:3 11070:1 11081:1 11084:1 11087:1 11105:1 11106:2 11120:1 11126:1 11134:4 11148:2 11156:1 11160:2 11166:7 11230:1 11231:1 11234:1 11237:1 11260:2 11261:2 11262:1 11268:1 11276:1 11305:1 11315:1 11324:1 11359:1 11364:1 11366:1 11371:1 11388:2 11389:1 11400:6 11417:3 11418:6 11430:1 11441:1 11443:1 11477:4 11482:1 11499:1 11512:2 11528:1 11529:2 11535:1 11556:3 11569:2 11597:1 11622:1 11628:1 11641:1 11668:1 11673:1 11676:1 11677:1 11678:1 11680:1 11683:1 11684:4 11703:1 11710:1 11718:1 11721:2 11740:1 11745:1 11753:1 11754:1 11779:2 11808:1 11810:2 11819:1 11824:1 11830:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11885:1 11887:3 11918:1 11923:2 11926:5 11929:1 11961:1 11985:1 11986:1 11991:1 11994:2 12009:1 12029:3 12045:1 12056:1 12063:1 12065:4 12066:2 12077:3 12081:1 12095:3 12098:2 12120:1 12130:2 12135:1 12146:3 12153:2 12155:6 12157:1 12170:1 12171:1 12176:1 12181:1 12182:1 12189:1 12193:5 12194:1 12200:1 12202:5 12210:1 12218:1 12228:6 12253:2 12266:5 12270:1 12275:2 12280:1 12293:1 12314:1 12325:4 12333:1 12335:1 12337:2 12373:1 12375:1 12385:3 12406:1 12412:1 12415:1 12423:1 12440:1 12470:2 12471:2 12506:1 12508:1 12539:1 12555:3 12594:2 12609:1 12625:1 12628:1 12629:1 12632:1 12654:3 12655:3 12656:17 12660:5 12671:1 12679:1 12681:2 12698:1 12705:1 12716:2 12745:1 12766:1 12788:1 12815:1 12824:7 12825:2 12841:1 12845:1 12846:2 12850:1 12871:1 12902:3 12906:1 12929:1 12936:1 12943:2 12947:1 12953:1 12961:1 12976:1 12992:1 13011:1 13015:1 13019:1 13035:3 13054:1 13057:1 13092:1 13095:3 13103:1 13107:1 13110:1 13117:1 13129:1 13166:1 13183:1 13207:1 13227:6 13240:1 13241:1 13243:1 13248:1 13251:1 13276:2 13277:3 13304:1 13307:1 13342:1 13371:1 13376:2 13404:1 13424:1 13429:2 13440:1 13441:1 13443:2 13472:1 13486:2 13488:1 13494:1 13522:1 13580:1 13597:3 13609:1 13614:1 13623:1 13624:2 13630:1 13649:1 13652:1 13656:1 13661:1 13664:1 13673:1 13681:1 13684:1 13700:2 13709:1 13711:1 13712:1 13714:2 13720:1 13735:1 13739:2 13740:1 13768:1 13775:1 13776:1 13780:2 13816:2 13821:1 13823:1 13832:1 13833:2 13835:1 13838:6 13842:3 13843:1 13851:1 13853:1 13856:1 13858:3 13873:3 13875:1 13878:1 13883:3 13898:1 13915:7 13916:1 13923:1 13926:1 13930:1 13931:2 13943:1 13944:2 13958:1 13981:2 13993:2 13994:1 14011:4 14016:1 14028:1 14037:1 14050:2 14063:3 14078:1 14085:2 14086:6 14112:1 14113:2 14114:2 14129:1 14145:1 14152:1 14156:1 14157:2 14177:1 14189:2 14206:1 14221:2 14228:1 14234:1 14237:1 14238:2 14239:1 14241:1 14245:1 14264:1 14274:1 14275:1 14291:1 14296:1 14298:1 14307:1 14310:1 14311:1 14315:2 14318:1 14320:1 14334:1 14335:1 14366:7 14377:1 14422:1 14426:1 14445:1 14446:1 14447:1 14450:1 14468:2 14471:2 14472:1 14477:4 14503:1 14522:1 14529:1 14533:1 14544:2 14546:3 14552:2 14553:5 14563:1 14584:1 14592:3 14610:1 14622:2 14642:2 14644:1 14649:1 14650:1 14654:1 14664:1 14665:2 14670:2 14699:1 14704:1 14769:1 14771:1 14780:1 14785:2 14806:1 14833:1 14845:1 14862:1 14887:1 14901:1 14921:1 14922:1 14935:1 14952:1 14958:1 14976:2 14986:2 14987:1 14997:1 15002:1 15008:3 15010:1 15011:1 15019:1 15020:1 15032:2 15060:1 15068:1 15072:1 15088:1 15096:2 15120:1 15127:1 15141:1 15162:1 15166:1 15174:1 15181:1 15190:1 15196:4 15216:1 15233:1 15238:1 15247:2 15252:1 15276:1 15290:1 15319:4 15364:1 15476:1 15487:1 15493:1 15507:2 15538:3 15547:3 15548:1 15552:1 15554:1 15556:1 15573:1 15577:1 15597:1 15605:1 15625:1 15643:2 15646:1 15655:3 15672:1 15683:1 15693:1 15695:2 15697:1 15702:1 15725:1 15734:1 15771:1 15772:1 15775:1 15781:1 15788:1 15805:1 15814:1 15868:2 15875:3 15876:3 15881:1 15907:4 15908:1 15911:1 15933:1 15951:4 15955:1 15961:1 15962:1 15968:1 15984:1 15999:1 16001:1 16008:1 16018:1 16021:3 16028:2 16032:2 16038:2 16054:1 16066:1 16073:2 16096:1 16111:1 16121:1 16140:1 16148:3 16153:1 16167:8 16172:8 16174:1 16181:1 16207:2 16218:1 16221:2 16222:2 16235:3 16255:1 16263:1 16270:1 16277:1 16303:2 16307:1 16309:1 16317:4 16325:2 16334:1 16336:1 16337:1 16345:1 16347:1 16352:1 16353:4 16356:2 16357:5 16358:1 16363:1 16367:1 16368:1 16369:1 16378:1 16379:5 16386:4 16467:1 16480:1 16484:2 16495:2 16498:1 16501:2 16507:4 16519:1 16530:2 16532:1 16561:2 16564:2 16578:1 16593:2 16610:1 16617:1 16623:1 16630:1 16638:2 16646:8 16659:2 16660:2 16673:1 16674:2 16677:1 16678:1 16692:1 16697:1 16706:17 16734:1 16739:5 16740:1 16743:1 16761:2 16775:50 16794:3 16799:1 16831:1 16861:1 16864:1 16866:1 16867:2 16884:1 16908:1 16913:2 16915:1 16916:2 16919:2 16920:4 16921:1 16927:2 16931:1 16944:1 16957:1 16961:1 16965:1 16980:1 16981:1 17010:1 17013:1 17047:1 17055:5 17075:1 17090:2 17095:1 17116:1 17130:1 17135:1 17139:1 17153:1 17192:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:2 17253:1 17294:2 17295:1 17317:1 17322:1 17326:1 17336:2 17342:4 17343:1 17347:1 17369:1 17372:3 17392:3 17405:1 17414:1 17415:1 17422:1 17424:2 17426:1 17427:1 17435:1 17438:1 17445:1 17454:1 17460:10 17470:1 17500:1 17514:2 17520:1 17521:1 17553:1 17559:1 17564:1 17582:1 17583:2 17585:3 17587:1 17589:2 17593:1 17596:1 17608:1 17613:1 17625:1 17635:1 17641:1 17645:2 17646:2 17675:1 17689:1 17718:3 17727:1 17742:1 17788:1 17797:2 17800:1 17816:1 17821:2 17831:1 17835:1 17843:2 17844:1 17849:2 17859:2 17871:1 17875:1 17877:3 17881:1 17889:1 17896:1 17897:1 17906:3 17912:1 17932:1 17933:1 17952:1 17957:1 17972:2 17998:2 18006:1 18011:1 18034:4 18099:1 18110:1 18112:1 18115:1 18129:4 18131:1 18134:1 18136:1 18144:1 18147:2 18153:1 18154:1 18171:2 18174:2 18182:1 18187:1 18188:1 18197:2 18206:1 18214:1 18221:1 18223:1 18226:1 18241:1 18248:2 18249:2 18277:1 18280:1 18282:1 18285:1 18310:1 18330:2 18338:2 18342:1 18355:1 18366:2 18410:2 18412:1 18415:1 18417:2 18421:2 18423:1 18441:1 18442:8 18446:2 18460:1 18474:1 18478:1 18506:1 18517:1 18524:1 18543:1 18544:2 18546:3 18559:2 18562:2 18565:1 18576:1 18584:1 18589:1 18602:1 18625:1 18629:2 18633:4 18634:1 18636:1 18646:1 18678:1 18707:1 18748:3 18749:1 18757:1 18781:1 18786:1 18797:1 18807:1 18815:1 18816:1 18819:3 18831:2 18838:1 18855:1 18866:1 18872:1 18873:3 18922:1 18932:1 18956:3 18966:1 18977:4 18980:1 18984:1 18987:3 19006:1 19007:1 19016:1 19018:1 19022:1 19079:1 19098:1 19113:1 19114:9 19118:1 19125:1 19132:1 19145:1 19160:1 19170:1 19182:1 19191:2 19193:1 19210:1 19217:1 19225:1 19241:1 19244:4 19250:2 19251:1 19265:3 19269:1 19272:1 19276:2 19277:1 19315:1 19323:2958 19328:1 19342:4 19343:1 19348:2 19376:1 19385:1 19395:1 19405:1 19410:1 19413:3 19421:1 19452:3 19473:2 19482:2 19505:1 19507:4 19509:2 19530:3 19536:1 19539:3 19541:1 19543:1 19571:1 19584:1 19586:1 19609:1 19632:1 19636:4 19638:1 19658:1 19664:1 19696:2 19702:1 19708:1 19721:1 19733:1 19743:1 19751:1 19756:1 19758:1 19804:1 19815:1 19817:2 19820:1 19831:4 19845:1 19856:1 19857:1 19882:1 19918:1 19919:1 19933:3 19984:1 20004:1 20024:1 20032:2 20043:1 20048:2 20050:1 20057:2 20074:4 20086:2 20090:1 20091:3 20095:1 20107:1 20121:12 20141:1 20142:1 20144:1 20146:1 20147:14 20159:1 20177:1 20178:4 20181:1 20197:1 20212:1 20216:4 20236:1 20243:2 20248:1 20250:3 20252:2 20255:1 20260:1 20262:1 20277:2 20279:1 20283:1 20287:1 20313:1 20319:3 20326:1 20339:1 20349:3 20363:1 20387:1 20389:1 20392:1 20447:1 20451:1 20458:1 20477:1 20486:1 20492:1 20493:1 20502:1 20523:1 20524:10 20527:1 20565:1 20573:1 20596:1 20605:1 20613:1 20619:1 20623:5 20644:1 20648:1 20669:2 20688:1 20691:1 20714:1 20719:1 20720:1 20722:1 20724:1 20725:1 20731:1 20749:1 20779:4 20782:1 20787:1 20789:1 20796:1 20811:2 20814:1 20821:1 20839:1 20849:1 20853:1 20871:1 20877:4 20894:1 20897:1 20903:2 20907:1 20908:2 20918:2 20923:7 20942:1 20972:1 20976:1 20987:1 20996:11 21002:1 21014:2 21017:2 21030:1 21033:1 21049:1 21050:11 21066:1 21088:1 21099:1 21103:1 21105:1 21131:1 21144:1 21175:1 21182:1 21196:2 21214:4 21216:2 21225:1 21231:1 21258:2 21301:5 21313:1 21316:3 21328:1 21331:1 21339:1 21343:1 21344:1 21355:1 21389:1 21392:1 21413:1 21451:2 21468:1 21474:1 21487:1 21495:1 21500:2 21511:1 21528:1 21529:1 21532:1 21554:1 21575:1 21596:3 21625:2 21630:1 21634:1 21638:1 21643:10 21655:1 21660:3 21663:1 21664:1 21674:1 21684:5 21690:1 21708:4 21711:1 21722:1 21741:1 21755:2 21769:2 21773:1 21789:2 21797:1 21798:1 21822:7 21829:1 21830:2 21835:1 21852:1 21874:1 21891:1 21896:1 21911:1 21915:1 21916:1 21932:2 21936:1 21939:1 21943:1 21949:1 21962:3 21980:1 21986:1 21987:1 21992:1 22003:1 22005:1 22041:1 22048:1 22050:1 22106:1 22147:1 22151:1 22154:4 22157:2 22159:3 22170:4 22179:1 22181:1 22183:1 22228:1 22232:1 22233:1 22236:2 22241:2 22251:1 22268:1 22281:1 22285:1 22286:1 22298:1 22300:6 22305:2 22309:1 22319:1 22332:1 22349:1 22354:1 22383:1 22384:2 22389:1 22396:1 22405:1 22406:1 22409:1 22422:1 22425:3 22427:11 22430:1 22447:1 22456:1 22457:1 22461:1 22469:1 22481:1 22501:4 22515:1 22534:2 22538:2 22540:1 22542:1 22549:4 22563:1 22579:1 22603:1 22604:1 22607:4 22614:2 22618:3 22621:1 22671:1 22693:3 22702:1 22703:1 22705:7 22709:1 22712:2 22720:2 22721:1 22723:1 22734:2 22735:1 22736:1 22740:1 22746:1 22748:2 22750:1 22756:1 22757:1 22764:1 22769:2 22772:2 22777:1 22795:2 22822:1 22833:5 22834:1 22856:1 22860:1 22866:1 22874:2 22877:1 22895:1 22901:1 22909:4 22917:1 22926:1 22937:1 22985:17 22987:2 22990:1 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:2 23093:1 23096:2 23102:1 23106:1 23112:2 23125:2 23133:1 23136:8 23153:2 23160:3 23166:1 23199:1 23209:1 23212:1 23215:2 23221:1 23225:1 23236:1 23239:1 23244:1 23246:2 23256:1 23269:2 23271:1 23284:6 23302:3 23317:2 23325:1 23336:1 23360:1 23376:2 23390:1 23413:1 23445:1 23454:3 23459:1 23462:1 23473:1 23481:1 23496:3 23517:1 23534:1 23535:1 23549:1 23554:1 23570:1 23575:1 23579:12 23581:1 23583:2 23600:1 23611:2 23624:1 23629:1 23632:1 23639:1 23648:1 23652:1 23655:1 23662:1 23665:1 23666:2 23673:1 23687:1 23695:1 23699:3 23716:1 23717:5 23721:1 23750:1 23752:1 23765:2 23767:1 23788:2 23807:1 23813:1 23819:2 23859:1 23875:1 23878:2 23879:1 23891:2 23913:1 23955:1 23968:1 23969:1 23971:4 23978:1 23987:1 24002:1 24003:1 24012:1 24015:1 24034:1 24049:1 24087:1 24090:2 24103:1 24108:2 24113:1 24119:2 24124:3 24128:1 24151:1 24168:1 24177:1 24183:1 24187:3 24188:1 24207:6 24216:1 24219:1 24231:1 24232:1 24235:1 24237:3 24241:2 24247:1 24273:2 24280:1 24281:2 24283:1 24293:1 24329:4 24336:1 24340:19 24344:1 24391:1 24408:1 24419:1 24432:2 24441:1 24444:1 24449:1 24478:1 24504:2 24508:1 24509:1 24533:1 24534:1 24538:1 24548:1 24571:1 24591:1 24602:1 24653:1 24656:2 24668:2 24702:4 24714:1 24717:1 24756:1 24761:1 24775:1 24777:1 24797:2 24814:3 24827:2 24833:1 24838:1 24841:1 24844:2 24845:1 24859:1 24881:1 24907:1 24921:1 24932:1 24939:1 24944:1 24970:1 24976:1 24999:1 25004:1 25005:5 25014:1 25021:1 25023:1 25027:1 25049:1 25073:2 25090:1 25122:1 25147:3 25158:1 25181:1 25190:1 25194:5 25252:2 25259:1 25264:1 25273:1 25275:1 25285:2 25287:5 25288:1 25311:1 25319:1 25325:1 25327:2 25331:1 25335:1 25339:3 25347:2 25384:1 25385:2 25398:2 25415:1 25419:2 25431:2 25447:1 25468:1 25471:1 25472:1 25487:1 25495:4 25503:3 25507:1 25510:1 25514:1 25526:1 25561:2 25570:1 25576:1 25587:1 25597:1 25598:2 25614:1 25623:1 25627:2 25631:1 25634:1 25643:1 25652:1 25673:1 25676:1 25684:1 25688:1 25716:1 25718:1 25722:1 25733:1 25740:2 25778:3 25797:5 25823:1 25832:1 25836:1 25852:1 25860:1 25871:1 25872:1 25878:2 25884:1 25893:4 25894:1 25900:1 25918:2 25921:1 25922:1 25952:1 25966:1 25980:4 25998:1 26004:1 26007:1 26021:1 26048:1 26058:2 26073:1 26076:1 26097:5 26119:1 26123:1 26124:1 26150:2 26156:4 26159:1 26167:1 26172:4 26176:1 26207:1 26226:1 26232:1 26257:1 26304:1 26316:1 26318:2 26320:1 26322:7 26324:3 26331:1 26356:1 26371:1 26372:1 26376:1 26377:2 26403:1 26413:1 26415:6 26424:1 26429:3 26435:5 26436:1 26445:1 26460:1 26463:1 26472:1 26489:2 26513:6 26518:1 26524:1 26525:1 26534:1 26538:2 26548:1 26564:1 26579:1 26589:3 26627:4 26628:1 26652:2 26653:2 26681:2 26689:1 26712:1 26717:1 26728:3 26754:1 26761:1 26782:4 26808:1 26835:1 26839:1 26842:2 26844:1 26848:1 26862:1 26865:1 26868:2 26871:2 26891:1 26893:1 26898:1 26901:1 26912:1 26915:1 26920:1 26934:1 26935:1 26938:1 26949:2 26955:1 26956:1 26964:1 26977:6 26981:1 26982:1 26985:1 26989:1 27000:1 27001:1 27003:1 27008:2 27010:2 27056:1 27065:1 27078:1 27099:1 27107:1 27113:1 27115:3 27138:9 27144:1 27178:1 27185:1 27188:1 27192:2 27212:1 27244:1 27252:1 27257:1 27266:1 27280:3 27288:1 27295:1 27308:1 27314:2 27332:1 27407:3 27422:5 27424:2 27431:1 27438:2 27439:1 27440:4 27441:6 27444:1 27470:1 27490:2 27521:1 27531:1 27534:1 27540:3 27548:1 27552:1 27580:3 27601:1 27607:1 27621:2 27626:1 27636:1 27673:1 27676:1 27709:1 27718:1 27735:1 27755:1 27775:1 27799:1 27809:1 27824:1 27834:1 27852:1 27854:2 27863:1 27875:1 27883:2 27893:2 27910:2 27925:1 27939:1 27949:1 27950:1 28004:1 28005:2 28017:1 28087:1 28095:2 28099:4 28110:1 28113:1 28118:1 28121:9 28154:2 28155:1 28211:1 28223:19 28224:1 28227:3 28230:1 28238:1 28246:1 28258:2 28285:1 28338:2 28340:3 28342:3 28343:2 28385:1 28388:1 28391:1 28395:1 28398:1 28405:2 28410:2 28413:1 28421:1 28429:1 28430:1 28432:1 28437:1 28443:1 28448:3 28472:2 28482:1 28499:1 28514:1 28524:2 28525:1 28526:1 28544:1 28548:1 28551:1 28574:1 28581:1 28593:1 28644:1 28645:1 28659:1 28674:1 28675:1 28680:1 28684:1 28696:3 28754:7 28762:1 28771:1 28795:1 28798:1 28839:3 28848:3 28866:1 28870:1 28874:1 28878:1 28912:1 28928:1 28931:3 28939:1 28962:2 28974:1 29000:3 29004:4 29030:1 29039:1 29041:1 29069:1 29073:1 29111:1 29112:1 29130:4 29135:1 29143:1 29155:1 29167:3 29168:1 29179:1 29182:2 29183:24 29184:2 29186:2 29189:4 29192:1 29193:1 29203:1 29220:1 29221:13 29224:1 29234:1 29239:1 29240:1 29248:1 29276:1 29277:1 29281:2 29289:2 29290:1 29300:1 29310:1 29325:1 29334:4 29342:4 29346:1 29348:1 29377:3 29382:2 29388:1 29394:1 29429:1 29430:1 29454:1 29486:1 29495:2 29536:1 29537:1 29542:1 29564:1 29573:1 29574:1 29575:1 29581:1 29587:2 29589:1 29591:4 29595:1 29600:1 29620:2 29624:1 29636:1 29655:8 29663:1 29666:3 29718:1 29720:1 29741:3 29745:7 29747:1 29749:1 29753:1 29754:1 29771:1 29776:1 29777:2 29790:1 29795:1 29809:1 29812:1 29814:1 29821:1 29841:3 29848:1 29860:1 29891:3 29896:1 29898:1 29901:1 29904:1 29905:2 29928:1 29932:2 29935:1 29936:4 29942:1 29950:5 29957:1 29969:2 30003:1 30011:1 30056:1 30080:1 30104:2 30107:1 30121:1 30129:4 30160:2 30164:1 30170:1 30177:1 30201:1 30210:2 30216:1 30222:3 30232:1 30241:1 30252:1 30269:1 30285:3 30290:1 30292:1 30313:1 30325:2 30341:1 30345:1 30346:6 30348:1 30354:1 30364:2 30401:1 30402:2 30407:1 30429:1 30435:4 30441:2 30507:1 30517:1 30518:1 30524:1 30525:1 30527:3 30533:1 30539:1 30571:1 30576:2 30586:1 30588:1 30592:1 30593:1 30595:1 30599:1 30609:2 30650:1 30660:1 16 5:1 24:1 26:1 27:1 38:1 62:1 69:1 75:4 91:1 94:1 121:1 136:1 151:1 160:1 163:1 190:1 197:1 202:1 206:1 220:1 224:4 229:1 230:1 251:1 266:1 285:1 294:4 315:1 324:1 334:2 335:2 336:1 360:1 368:1 369:1 375:1 407:1 430:3 436:1 440:2 453:1 471:1 477:2 489:1 493:1 495:1 502:1 503:1 505:1 510:1 511:2 546:1 547:1 564:4 622:1 625:2 637:3 647:1 660:2 666:1 673:4 679:1 688:1 694:1 705:1 710:1 722:1 730:1 737:1 748:1 778:2 795:1 798:1 815:1 836:1 845:2 853:1 855:1 857:1 870:1 878:1 882:1 895:1 898:2 931:1 939:2 942:1 943:1 949:1 951:2 965:1 966:2 971:3 973:1 974:3 975:6 976:2 981:1 1003:1 1028:1 1029:6 1032:2 1038:1 1058:1 1065:2 1069:1 1107:2 1108:1 1131:1 1134:1 1137:1 1155:1 1161:1 1170:1 1171:1 1216:1 1217:3 1221:1 1224:1 1233:1 1236:1 1242:2 1253:1 1254:4 1267:2 1273:1 1280:1 1290:1 1291:3 1319:1 1324:1 1325:2 1331:1 1333:4 1336:1 1346:1 1347:4 1348:2 1349:1 1361:1 1365:1 1377:1 1379:1 1389:1 1395:3 1409:2 1421:1 1422:1 1446:2 1476:1 1499:1 1500:3 1503:1 1511:1 1514:1 1516:1 1519:2 1528:1 1538:1 1556:1 1566:6 1579:1 1585:6 1590:1 1594:2 1601:1 1602:2 1603:1 1608:3 1609:1 1614:1 1618:1 1625:1 1628:4 1642:1 1651:1 1657:5 1671:1 1677:1 1681:1 1685:1 1690:2 1725:2 1730:1 1734:4 1739:4 1742:2 1743:1 1756:1 1757:1 1759:1 1776:4 1780:3 1788:1 1789:1 1802:1 1807:1 1826:1 1840:1 1841:1 1855:2 1857:1 1860:1 1863:1 1873:3 1886:2 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1939:1 1951:1 1954:1 1955:1 1964:1 1970:1 1977:1 1982:1 1986:1 1989:1 1997:1 1999:1 2016:1 2021:1 2023:1 2026:1 2032:1 2035:1 2038:2 2039:4 2042:1 2046:1 2052:1 2069:1 2070:3 2090:1 2096:1 2124:1 2125:1 2132:1 2149:1 2153:1 2161:2 2162:2 2164:1 2167:2 2169:1 2170:3 2204:1 2227:1 2231:1 2232:1 2234:3 2235:1 2237:2 2269:4 2296:1 2307:1 2337:1 2339:1 2346:1 2351:1 2353:3 2363:1 2404:1 2405:1 2406:1 2407:2 2408:4 2413:1 2415:5 2416:1 2417:1 2420:5 2421:1 2422:3 2424:1 2427:1 2434:5 2436:3 2437:6 2450:1 2455:1 2469:1 2473:1 2486:1 2488:1 2495:1 2508:1 2514:1 2518:2 2519:2 2520:1 2525:1 2532:1 2533:2 2543:1 2550:1 2556:1 2560:1 2575:1 2599:1 2602:1 2623:3 2633:1 2641:1 2645:1 2657:2 2659:1 2681:1 2689:1 2693:1 2694:1 2705:1 2742:1 2747:1 2766:1 2797:2 2803:1 2812:4 2819:1 2825:3 2834:1 2841:2 2842:1 2849:1 2852:2 2854:7 2856:2 2872:1 2874:1 2888:2 2896:1 2900:1 2902:1 2909:3 2912:1 2936:2 2943:2 2952:2 2962:1 2963:1 2965:4 2976:2 3019:4 3024:1 3031:1 3039:1 3056:11 3067:7 3090:2 3099:1 3118:24 3127:1 3128:1 3151:1 3152:1 3170:1 3189:1 3196:1 3222:1 3224:2 3227:1 3232:1 3296:3 3299:1 3311:1 3318:1 3342:1 3358:1 3378:1 3379:1 3390:1 3391:1 3403:2 3406:4 3428:10 3442:1 3454:1 3469:1 3485:1 3498:7 3543:1 3565:1 3567:1 3574:1 3590:1 3601:2 3609:1 3613:1 3628:1 3634:1 3643:3 3649:1 3654:1 3661:1 3667:4 3711:3 3713:1 3730:1 3731:1 3746:3 3764:1 3778:1 3796:1 3801:1 3803:3 3804:1 3810:2 3812:1 3813:1 3819:2 3839:1 3846:1 3867:1 3886:1 3898:1 3902:1 3903:3 3906:1 3913:1 3918:1 3929:1 3950:1 3958:2 3959:34 3981:1 3993:2 3994:1 3995:7 4000:1 4009:1 4010:19 4011:2 4012:1 4015:4 4027:2 4042:3 4057:2 4058:3 4061:2 4063:2 4076:2 4078:1 4079:1 4095:1 4116:2 4122:1 4123:3 4126:1 4130:1 4134:1 4173:1 4178:1 4182:1 4183:3 4196:2 4207:2 4209:1 4216:1 4219:1 4223:1 4235:2 4242:1 4256:1 4258:1 4265:1 4266:1 4267:1 4269:1 4270:1 4285:1 4290:2 4294:1 4297:1 4301:4 4318:4 4324:1 4330:1 4360:1 4368:1 4369:1 4373:1 4381:1 4423:1 4436:1 4439:3 4447:1 4463:2 4474:1 4483:1 4486:1 4498:2 4504:1 4505:2 4508:1 4509:1 4539:1 4547:1 4555:1 4557:1 4563:1 4599:1 4611:1 4623:1 4636:9 4650:1 4697:2 4701:1 4706:5 4715:1 4718:2 4749:5 4767:1 4773:1 4781:1 4787:1 4796:1 4840:1 4854:1 4855:2 4880:1 4896:1 4900:1 4906:2 4909:1 4921:2 4927:1 4930:2 4938:1 4948:3 4959:1 4966:3 4989:2 4993:1 4994:1 5014:1 5044:1 5058:1 5059:1 5062:1 5064:1 5076:1 5090:1 5092:2 5100:1 5153:1 5159:1 5186:1 5189:1 5191:1 5201:13 5202:1 5211:1 5219:1 5231:2 5241:1 5260:2 5275:1 5288:1 5308:3 5314:1 5320:3 5321:1 5323:4 5340:1 5344:2 5345:2 5347:6 5348:1 5350:1 5351:1 5354:2 5356:1 5361:1 5362:18 5363:1 5365:1 5370:2 5371:3 5376:2 5397:1 5401:3 5453:2 5467:1 5478:1 5486:1 5488:1 5491:1 5560:1 5593:3 5594:3 5603:5 5648:1 5652:1 5670:1 5675:2 5677:18 5684:1 5703:1 5710:3 5712:1 5735:2 5771:1 5774:1 5786:1 5810:1 5816:1 5819:1 5830:1 5836:1 5839:1 5848:1 5856:2 5857:1 5901:1 5902:1 5904:1 5908:1 5911:1 5920:1 5921:1 5922:2 5943:1 5951:1 5954:1 5956:1 5962:2 5965:1 5967:1 5973:2 5987:2 5991:1 5993:1 6018:1 6021:3 6038:2 6044:1 6061:1 6063:1 6065:1 6068:1 6079:1 6086:1 6095:1 6097:1 6101:1 6103:1 6118:1 6121:1 6136:1 6140:1 6141:1 6142:1 6199:3 6217:1 6219:3 6221:1 6227:1 6231:1 6243:1 6280:1 6305:2 6330:1 6364:1 6368:1 6371:6 6380:1 6386:2 6410:2 6415:1 6444:1 6465:1 6471:1 6480:1 6481:1 6490:2 6491:2 6492:1 6498:1 6499:1 6528:4 6529:1 6536:1 6539:2 6540:2 6564:1 6568:1 6588:1 6591:2 6596:1 6602:1 6618:5 6621:1 6635:1 6636:1 6639:1 6648:1 6654:1 6660:1 6673:1 6721:2 6724:1 6725:1 6726:1 6727:1 6728:1 6730:2 6731:2 6734:2 6735:3 6736:4 6743:2 6744:6 6745:1 6746:1 6747:2 6756:1 6773:1 6776:1 6797:2 6802:1 6836:1 6872:1 6878:1 6886:1 6895:2 6901:1 6930:1 6932:1 6970:1 6977:1 6984:1 6994:1 7000:2 7019:1 7026:1 7027:5 7032:3 7035:1 7039:1 7046:1 7047:1 7060:2 7080:1 7083:3 7114:1 7115:1 7118:1 7126:1 7148:1 7166:1 7192:1 7200:1 7201:2 7204:1 7216:3 7220:1 7222:1 7231:3 7236:2 7242:1 7257:1 7267:2 7273:1 7308:1 7322:1 7328:1 7333:1 7335:2 7342:1 7384:1 7407:1 7412:1 7432:2 7433:1 7455:1 7456:2 7495:1 7522:2 7542:1 7548:1 7556:1 7573:1 7574:1 7577:5 7585:2 7601:1 7603:1 7610:1 7612:1 7625:1 7635:1 7653:1 7717:1 7769:1 7774:1 7779:1 7788:4 7830:1 7840:3 7874:4 7915:2 7926:1 7932:2 7954:1 7963:1 7993:1 7997:2 7998:1 8004:1 8005:1 8023:1 8027:1 8031:4 8054:1 8064:3 8065:4 8066:2 8084:1 8089:2 8094:1 8097:1 8100:1 8105:1 8121:1 8122:2 8128:1 8130:1 8131:37 8133:1 8134:1 8140:2 8151:10 8152:20 8161:1 8164:1 8170:1 8173:1 8207:1 8208:5 8238:1 8254:1 8273:1 8279:1 8302:2 8307:1 8316:1 8321:1 8362:3 8365:5 8372:1 8408:1 8413:1 8415:4 8430:1 8433:1 8450:1 8467:1 8478:1 8492:1 8521:1 8523:3 8540:7 8546:2 8550:1 8559:1 8570:2 8590:1 8597:1 8603:1 8610:1 8623:1 8624:1 8633:17 8651:1 8655:1 8664:2 8665:1 8687:2 8718:1 8724:1 8733:2 8742:1 8748:1 8753:2 8760:4 8779:1 8789:1 8793:3 8798:4 8803:2 8816:2 8820:3 8830:1 8840:2 8842:1 8845:1 8850:1 8857:1 8858:2 8863:2 8873:1 8884:2 8887:2 8895:1 8898:1 8899:1 8915:2 8932:1 8938:1 8942:3 8953:1 8959:1 8966:1 8973:1 8979:1 8980:2 8983:1 8984:3 8985:1 8986:2 8987:4 8990:1 8995:1 8998:2 9000:2 9004:3 9020:1 9027:1 9035:2 9039:3 9040:1 9041:1 9045:1 9046:1 9058:1 9061:1 9072:1 9075:2 9081:1 9109:1 9112:5 9135:1 9139:3 9146:1 9149:1 9151:2 9158:1 9164:1 9169:1 9204:1 9205:1 9209:1 9215:2 9225:3 9227:1 9248:1 9268:4 9269:2 9273:4 9274:1 9276:1 9277:3 9280:3 9286:2 9301:1 9302:1 9304:4 9316:1 9318:1 9339:2 9345:1 9400:1 9420:2 9439:2 9442:2 9450:1 9453:1 9463:1 9471:1 9478:1 9480:1 9495:1 9504:1 9506:1 9523:1 9561:3 9589:1 9592:1 9594:3 9608:1 9618:7 9640:2 9646:2 9651:1 9658:1 9662:1 9663:1 9677:1 9686:1 9695:3 9697:1 9715:1 9718:1 9721:1 9732:1 9776:1 9781:1 9809:1 9825:1 9840:1 9870:1 9874:1 9877:3 9882:2 9888:1 9889:2 9909:1 9928:1 9930:1 9937:2 9940:1 9942:1 9972:1 9973:1 9977:2 9983:1 9993:1 9994:1 10009:1 10037:18 10043:1 10060:1 10069:2 10078:4 10084:2 10085:1 10109:1 10117:1 10128:1 10130:2 10146:1 10169:14 10185:1 10190:2 10202:1 10211:1 10223:5 10229:1 10235:1 10238:3 10239:1 10240:1 10241:1 10259:1 10269:1 10275:1 10317:2 10321:3 10322:1 10356:6 10362:2 10363:4 10364:2 10371:2 10379:1 10387:2 10393:2 10395:1 10400:1 10406:1 10410:3 10413:1 10415:1 10416:1 10423:1 10446:3 10450:3 10468:1 10470:2 10483:1 10493:2 10533:1 10547:1 10549:3 10552:1 10577:10 10580:1 10581:5 10596:1 10601:1 10651:4 10691:1 10698:2 10707:1 10718:1 10731:1 10735:1 10757:3 10763:1 10780:4 10784:1 10791:1 10794:1 10809:1 10828:1 10830:1 10850:1 10868:1 10880:2 10892:4 10898:1 10903:1 10907:1 10917:2 10923:1 10935:1 10939:1 10957:2 10962:4 10973:1 10998:1 11009:2 11026:2 11028:2 11031:2 11040:1 11047:6 11060:2 11061:3 11062:1 11063:3 11070:1 11081:1 11084:1 11087:1 11105:1 11106:2 11120:1 11126:1 11134:4 11145:1 11148:2 11156:1 11160:2 11166:7 11230:1 11231:1 11234:1 11237:1 11260:2 11261:2 11262:1 11268:1 11276:1 11305:1 11315:1 11324:1 11359:1 11364:1 11366:1 11371:1 11388:2 11389:1 11400:7 11417:3 11418:7 11430:2 11441:1 11443:1 11453:1 11469:1 11477:4 11482:1 11499:1 11512:2 11528:1 11529:2 11535:2 11556:3 11569:2 11597:1 11622:1 11628:1 11641:1 11668:1 11673:1 11676:1 11677:1 11678:1 11680:1 11683:1 11684:4 11685:1 11703:1 11710:1 11718:1 11721:2 11740:1 11745:1 11753:1 11754:1 11779:2 11808:1 11810:3 11816:1 11819:1 11824:1 11830:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11885:1 11887:3 11914:1 11918:1 11923:3 11926:5 11929:1 11931:1 11961:1 11985:1 11986:1 11991:1 11994:2 12009:1 12029:3 12045:1 12056:1 12063:1 12065:4 12066:2 12077:3 12081:1 12095:3 12098:2 12120:1 12130:2 12135:1 12146:3 12153:2 12155:7 12157:1 12170:1 12171:1 12176:1 12181:1 12182:1 12189:1 12193:5 12194:1 12200:1 12202:5 12210:1 12218:1 12228:7 12253:2 12266:5 12270:1 12275:2 12280:1 12293:1 12314:1 12325:4 12333:1 12335:1 12337:2 12373:1 12375:1 12385:3 12406:1 12412:1 12415:2 12423:1 12440:1 12459:1 12470:2 12471:2 12506:2 12508:1 12539:1 12555:4 12594:2 12609:1 12616:1 12625:1 12628:1 12629:1 12632:1 12654:3 12655:3 12656:18 12660:6 12671:1 12679:1 12681:2 12698:1 12705:1 12716:2 12745:1 12766:1 12788:1 12815:1 12824:7 12825:2 12841:1 12845:1 12846:3 12850:1 12871:1 12902:3 12906:1 12929:1 12936:1 12943:2 12947:1 12953:1 12961:1 12976:1 12992:1 13011:1 13015:1 13019:1 13035:3 13054:1 13057:1 13092:1 13095:3 13103:1 13107:1 13110:1 13114:1 13117:1 13129:1 13166:1 13167:1 13174:1 13183:1 13207:1 13227:6 13240:1 13241:1 13243:1 13248:1 13251:1 13276:2 13277:3 13304:1 13307:2 13342:1 13371:1 13376:2 13404:1 13424:1 13429:2 13440:1 13441:1 13443:2 13472:1 13486:2 13488:1 13494:1 13522:1 13580:1 13597:4 13609:1 13614:1 13623:1 13624:2 13630:1 13649:2 13652:1 13656:1 13661:1 13664:1 13673:1 13681:1 13684:1 13700:2 13709:1 13711:1 13712:1 13714:2 13720:1 13735:1 13739:2 13740:1 13768:1 13775:1 13776:1 13780:2 13816:2 13821:1 13823:1 13832:1 13833:2 13835:1 13838:6 13842:3 13843:1 13851:1 13853:1 13856:1 13858:3 13873:3 13875:1 13878:1 13883:3 13898:1 13915:7 13916:1 13923:1 13926:1 13930:1 13931:2 13943:1 13944:2 13958:2 13981:2 13993:2 13994:1 14011:4 14016:1 14027:1 14028:1 14037:1 14050:2 14063:3 14078:1 14085:2 14086:6 14112:1 14113:2 14114:2 14115:1 14129:1 14145:1 14152:1 14156:1 14157:2 14177:1 14189:2 14206:1 14221:2 14228:1 14234:1 14237:1 14238:2 14239:1 14241:1 14245:1 14264:1 14274:1 14275:1 14280:1 14291:1 14296:1 14298:1 14307:1 14310:1 14311:1 14315:2 14318:1 14320:1 14334:1 14335:1 14366:7 14377:1 14422:1 14426:1 14445:1 14446:1 14447:2 14450:2 14468:2 14471:2 14472:1 14477:4 14503:1 14522:1 14529:1 14533:1 14544:2 14546:3 14552:2 14553:6 14563:1 14584:1 14592:3 14610:1 14622:2 14642:2 14644:1 14649:1 14650:1 14654:1 14664:1 14665:2 14670:2 14699:1 14704:1 14769:1 14771:1 14780:1 14785:2 14806:1 14833:1 14845:1 14862:1 14887:1 14901:1 14921:1 14922:1 14935:1 14952:1 14958:1 14976:2 14986:2 14987:1 14997:1 15002:1 15008:4 15010:1 15011:1 15019:1 15020:1 15032:2 15033:1 15054:1 15060:1 15068:1 15072:1 15088:1 15096:2 15120:1 15127:1 15141:1 15162:1 15166:1 15174:1 15181:1 15190:1 15196:4 15216:1 15233:1 15238:1 15247:2 15252:1 15276:1 15290:1 15319:4 15346:1 15364:1 15475:1 15476:1 15487:1 15493:1 15507:2 15538:3 15547:3 15548:1 15552:1 15554:1 15556:1 15573:1 15577:1 15597:2 15605:1 15625:1 15643:2 15646:1 15655:3 15672:1 15683:1 15693:1 15695:2 15697:1 15702:1 15725:1 15734:1 15771:1 15772:1 15775:1 15781:1 15788:1 15805:1 15814:1 15868:2 15875:3 15876:3 15881:1 15907:4 15908:1 15911:1 15933:1 15951:4 15955:1 15961:1 15962:1 15968:1 15984:1 15999:1 16001:1 16008:1 16018:1 16021:3 16028:2 16032:2 16038:2 16054:1 16066:1 16073:2 16096:1 16111:1 16121:1 16140:1 16148:3 16153:1 16167:8 16172:8 16174:1 16181:1 16207:2 16218:1 16221:2 16222:2 16235:3 16255:1 16263:1 16270:1 16277:1 16303:2 16307:1 16309:1 16317:4 16325:3 16334:1 16336:1 16337:2 16345:2 16347:1 16352:1 16353:4 16356:2 16357:6 16358:1 16363:2 16367:1 16368:1 16369:1 16378:1 16379:5 16386:4 16467:1 16480:1 16484:2 16495:2 16498:1 16501:2 16507:4 16519:1 16530:2 16532:1 16543:1 16561:2 16564:2 16578:1 16593:2 16610:1 16617:1 16623:1 16630:1 16638:2 16646:8 16659:2 16660:2 16661:1 16673:1 16674:2 16677:1 16678:2 16692:1 16697:1 16706:18 16734:1 16739:5 16740:1 16743:1 16761:2 16775:52 16794:3 16799:1 16831:1 16861:1 16864:1 16866:1 16867:2 16884:1 16908:1 16913:2 16915:1 16916:2 16919:2 16920:4 16921:1 16927:2 16931:1 16944:1 16957:1 16961:1 16965:1 16980:1 16981:1 17010:1 17013:1 17047:1 17055:5 17075:1 17090:2 17095:1 17116:1 17130:1 17135:1 17139:1 17153:1 17192:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:2 17253:1 17294:2 17295:1 17317:1 17322:1 17326:1 17336:2 17342:4 17343:1 17347:1 17369:1 17372:3 17392:3 17405:1 17414:1 17415:1 17422:1 17424:2 17426:1 17427:1 17435:1 17438:1 17445:1 17454:1 17460:10 17470:1 17474:1 17500:2 17514:2 17520:1 17521:1 17553:1 17559:1 17561:1 17564:1 17582:1 17583:2 17585:3 17587:1 17589:2 17593:1 17596:1 17608:1 17613:1 17625:1 17635:1 17641:1 17645:2 17646:2 17675:2 17689:1 17718:3 17727:1 17742:1 17788:1 17797:2 17800:1 17816:1 17821:2 17831:1 17835:1 17843:2 17844:1 17849:2 17859:2 17871:1 17875:1 17877:3 17881:1 17889:1 17896:1 17897:1 17906:3 17912:1 17932:1 17933:1 17952:1 17957:1 17972:2 17998:2 18006:1 18011:1 18034:4 18083:1 18099:1 18110:1 18112:1 18115:1 18129:5 18131:1 18134:1 18136:1 18144:1 18147:2 18153:1 18154:1 18169:1 18171:2 18174:2 18182:1 18187:1 18188:1 18197:2 18206:1 18214:1 18221:1 18223:1 18226:1 18241:1 18248:2 18249:2 18277:1 18280:1 18282:1 18285:1 18310:1 18330:2 18338:2 18342:1 18355:1 18366:2 18410:2 18412:1 18415:1 18417:2 18421:2 18423:1 18441:1 18442:9 18446:2 18460:1 18474:1 18478:1 18506:1 18517:1 18524:1 18543:1 18544:2 18546:3 18559:2 18562:2 18565:1 18576:1 18584:1 18589:1 18602:1 18625:1 18629:3 18633:4 18634:2 18636:1 18646:1 18678:1 18707:1 18709:1 18748:3 18749:1 18757:1 18781:1 18786:1 18797:1 18807:1 18815:1 18816:1 18819:3 18831:2 18838:1 18855:1 18866:1 18872:1 18873:3 18922:2 18932:1 18956:4 18966:1 18977:4 18980:1 18984:1 18987:3 19006:1 19007:1 19016:1 19018:2 19022:1 19079:1 19098:1 19113:1 19114:10 19118:1 19125:1 19132:1 19145:1 19160:1 19170:1 19182:1 19191:2 19193:1 19210:1 19217:1 19225:1 19229:1 19241:1 19244:5 19250:2 19251:1 19265:3 19269:1 19272:1 19276:2 19277:1 19315:1 19323:3067 19328:1 19342:4 19343:1 19348:2 19376:1 19385:1 19395:1 19405:1 19410:1 19413:3 19414:1 19421:1 19452:3 19473:2 19482:2 19505:1 19507:4 19509:2 19530:3 19536:1 19539:3 19541:1 19543:1 19571:1 19584:1 19586:1 19596:1 19609:1 19632:1 19636:4 19638:1 19658:1 19664:1 19696:2 19702:1 19708:1 19721:1 19733:1 19743:1 19751:1 19756:1 19758:1 19804:1 19815:1 19817:2 19820:1 19831:4 19845:1 19856:1 19857:1 19882:1 19918:1 19919:1 19933:3 19984:1 20004:1 20024:1 20032:2 20043:1 20048:2 20050:1 20057:2 20074:4 20086:2 20090:1 20091:3 20095:1 20107:1 20121:14 20141:1 20142:1 20144:2 20146:1 20147:15 20159:1 20177:1 20178:4 20181:1 20197:2 20212:1 20216:4 20236:1 20243:2 20248:1 20250:4 20252:2 20255:1 20260:1 20262:1 20277:2 20278:1 20279:1 20283:1 20287:1 20313:1 20319:3 20326:1 20339:1 20349:3 20363:1 20387:1 20389:1 20392:1 20447:1 20451:1 20458:1 20477:1 20486:1 20492:1 20493:1 20502:1 20523:1 20524:10 20527:1 20565:1 20573:1 20596:1 20605:1 20613:1 20619:1 20623:6 20644:1 20648:1 20656:1 20669:2 20682:1 20688:1 20691:1 20714:1 20719:1 20720:1 20722:1 20724:1 20725:1 20731:1 20749:1 20779:4 20782:1 20787:1 20789:1 20796:1 20811:2 20814:1 20821:1 20839:1 20849:1 20853:1 20871:1 20877:4 20894:2 20897:1 20903:2 20907:1 20908:2 20918:2 20923:7 20942:1 20972:1 20976:1 20987:1 20996:11 21002:1 21014:2 21017:2 21030:1 21033:1 21049:1 21050:11 21066:1 21088:1 21099:1 21103:1 21105:1 21131:1 21144:1 21175:1 21182:1 21196:2 21213:1 21214:4 21216:2 21225:1 21231:1 21258:2 21301:5 21312:1 21313:1 21316:3 21328:1 21331:1 21339:1 21343:1 21344:1 21355:1 21389:1 21392:1 21413:1 21451:2 21466:1 21468:1 21474:1 21487:1 21495:1 21500:2 21511:1 21528:1 21529:1 21532:1 21554:1 21575:1 21596:3 21625:2 21630:1 21631:1 21634:1 21638:1 21643:11 21655:1 21660:3 21663:2 21664:1 21674:1 21684:5 21690:1 21708:4 21711:1 21722:1 21741:1 21755:2 21757:1 21769:2 21773:1 21789:2 21797:1 21798:1 21822:7 21829:1 21830:2 21835:1 21852:1 21874:1 21891:1 21896:1 21911:1 21915:1 21916:1 21932:2 21936:1 21939:1 21943:1 21949:1 21962:3 21980:1 21986:1 21987:1 21992:1 22003:1 22005:1 22041:1 22048:1 22050:1 22106:1 22147:1 22151:1 22154:4 22157:2 22159:3 22170:4 22179:1 22181:1 22183:1 22228:1 22232:1 22233:1 22236:2 22241:2 22251:1 22268:1 22281:1 22285:1 22286:1 22298:1 22300:6 22305:3 22309:1 22319:1 22332:1 22349:1 22354:1 22383:1 22384:2 22389:1 22396:1 22405:1 22406:1 22409:1 22422:1 22425:3 22427:12 22430:1 22447:1 22456:2 22457:1 22461:1 22469:1 22479:1 22481:1 22501:5 22515:1 22534:2 22538:2 22540:1 22542:1 22549:4 22563:1 22579:1 22603:1 22604:1 22607:4 22614:2 22618:3 22621:1 22671:1 22693:3 22702:1 22703:1 22705:8 22709:1 22712:2 22720:2 22721:1 22723:1 22734:2 22735:1 22736:1 22740:1 22746:2 22748:2 22750:1 22756:1 22757:1 22764:1 22769:2 22772:2 22777:1 22795:2 22822:1 22833:5 22834:1 22856:1 22860:1 22866:1 22874:2 22877:1 22895:1 22901:1 22909:4 22917:1 22926:1 22929:1 22937:1 22985:18 22987:2 22990:1 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:2 23093:1 23096:2 23102:1 23106:1 23112:2 23125:2 23133:1 23136:8 23153:2 23160:3 23166:1 23199:1 23202:1 23209:1 23212:1 23215:2 23221:1 23225:1 23236:1 23239:1 23244:1 23246:2 23256:1 23269:2 23271:1 23284:9 23302:3 23317:2 23325:1 23336:1 23360:1 23376:2 23390:1 23391:1 23413:1 23445:1 23454:3 23459:1 23462:1 23473:1 23481:1 23496:4 23517:1 23534:1 23535:1 23549:1 23554:1 23570:1 23574:1 23575:1 23579:12 23581:1 23583:2 23600:1 23611:2 23624:1 23629:1 23632:1 23639:1 23648:1 23652:1 23655:1 23662:2 23665:1 23666:2 23673:1 23687:1 23695:1 23699:3 23716:1 23717:5 23721:1 23750:1 23752:1 23765:2 23767:1 23788:2 23807:1 23813:1 23819:2 23838:1 23851:1 23859:1 23864:1 23875:1 23878:2 23879:1 23891:2 23913:1 23955:1 23968:1 23969:1 23971:5 23978:1 23987:1 24002:1 24003:1 24012:1 24015:1 24034:1 24049:1 24087:1 24090:2 24103:1 24108:2 24113:1 24119:2 24124:4 24128:1 24151:1 24168:1 24177:1 24183:1 24187:3 24188:2 24196:1 24207:6 24216:1 24219:1 24231:1 24232:1 24235:1 24237:3 24241:2 24247:1 24252:1 24273:2 24280:1 24281:2 24283:1 24293:1 24329:4 24336:1 24340:20 24344:1 24391:1 24408:1 24419:1 24432:2 24440:1 24441:1 24444:1 24449:1 24464:1 24478:1 24504:2 24506:1 24508:1 24509:1 24533:1 24534:1 24538:1 24548:1 24571:1 24591:1 24602:1 24625:1 24653:1 24656:2 24668:2 24702:4 24714:1 24717:1 24756:1 24761:1 24775:1 24777:1 24797:2 24814:3 24827:2 24833:1 24838:1 24841:1 24844:2 24845:1 24859:1 24881:1 24907:1 24921:1 24932:1 24939:1 24944:1 24970:1 24976:1 24999:1 25004:1 25005:5 25014:1 25021:1 25023:1 25027:1 25049:1 25073:2 25090:1 25122:1 25147:3 25158:1 25181:1 25190:1 25194:5 25252:2 25259:1 25264:1 25273:1 25275:1 25285:2 25287:5 25288:1 25311:1 25319:1 25325:1 25327:2 25331:1 25335:1 25339:3 25347:2 25384:1 25385:2 25398:2 25415:1 25419:2 25431:2 25447:1 25468:1 25471:1 25472:1 25487:1 25495:4 25503:3 25507:1 25510:1 25514:1 25526:1 25527:1 25549:1 25561:2 25570:1 25576:1 25587:1 25597:1 25598:2 25614:1 25623:1 25627:2 25631:1 25634:1 25643:1 25652:1 25664:1 25673:1 25676:1 25684:1 25688:1 25716:1 25718:1 25722:1 25733:1 25740:2 25778:3 25797:5 25823:1 25832:1 25836:1 25852:1 25860:1 25871:1 25872:1 25878:2 25880:1 25884:1 25893:5 25894:1 25900:1 25918:2 25921:1 25922:1 25952:1 25966:1 25980:4 25998:1 26004:1 26007:1 26011:1 26021:1 26048:1 26058:2 26073:1 26076:1 26097:6 26119:1 26123:1 26124:1 26150:2 26156:5 26159:1 26167:1 26172:4 26176:1 26207:1 26226:1 26232:1 26257:1 26304:1 26315:1 26316:1 26318:2 26319:1 26320:1 26322:7 26324:3 26331:1 26356:1 26371:1 26372:2 26376:1 26377:2 26403:1 26413:1 26415:6 26416:1 26424:1 26429:4 26435:5 26436:1 26445:1 26458:1 26460:1 26463:1 26472:1 26489:2 26513:6 26518:1 26524:1 26525:1 26534:1 26538:2 26548:1 26564:2 26579:1 26589:3 26608:1 26627:4 26628:1 26652:2 26653:2 26681:2 26689:1 26712:1 26717:1 26728:3 26754:1 26761:1 26782:4 26808:1 26835:1 26839:1 26842:2 26844:1 26848:1 26862:1 26865:1 26868:2 26871:2 26891:1 26893:1 26898:1 26901:1 26912:1 26915:1 26920:1 26934:2 26935:1 26938:1 26949:2 26955:1 26956:1 26964:1 26977:6 26981:1 26982:1 26985:1 26989:1 27000:1 27001:1 27003:1 27008:2 27010:2 27056:1 27065:1 27078:1 27099:1 27102:1 27107:1 27113:1 27115:3 27138:10 27144:1 27178:1 27185:1 27188:1 27192:2 27212:1 27244:1 27252:1 27257:1 27266:1 27280:3 27288:1 27295:1 27308:1 27314:2 27332:1 27407:3 27422:5 27424:2 27426:1 27431:1 27438:2 27439:1 27440:4 27441:7 27444:1 27470:1 27490:2 27521:1 27531:1 27534:1 27540:3 27548:1 27552:1 27580:3 27601:1 27607:1 27621:2 27626:1 27636:1 27673:1 27676:1 27709:1 27718:1 27735:1 27755:1 27775:1 27799:1 27809:1 27824:1 27834:1 27852:1 27854:2 27863:1 27875:1 27883:2 27893:2 27910:2 27925:1 27939:1 27949:1 27950:1 28004:1 28005:2 28017:2 28087:1 28095:2 28099:4 28110:1 28113:1 28118:1 28121:9 28137:1 28154:2 28155:1 28211:1 28223:20 28224:1 28227:3 28230:1 28238:1 28246:1 28258:3 28285:1 28338:2 28340:3 28342:3 28343:2 28385:2 28388:1 28391:1 28395:1 28398:1 28405:2 28410:2 28413:1 28421:1 28429:1 28430:1 28432:1 28437:1 28443:1 28448:3 28472:2 28482:1 28499:1 28514:1 28524:2 28525:1 28526:1 28544:1 28548:1 28551:1 28574:1 28581:1 28593:1 28600:1 28644:1 28645:1 28659:1 28669:1 28674:1 28675:1 28680:1 28684:1 28696:3 28697:1 28754:7 28762:1 28771:1 28795:1 28798:1 28839:3 28848:3 28866:1 28870:1 28874:1 28878:1 28912:1 28928:1 28931:3 28939:1 28962:2 28974:1 29000:4 29004:4 29028:1 29030:1 29039:1 29041:1 29051:1 29069:1 29073:1 29111:1 29112:1 29130:4 29135:1 29143:1 29155:1 29167:3 29168:1 29179:1 29182:2 29183:24 29184:2 29186:2 29189:4 29192:1 29193:1 29203:1 29220:1 29221:13 29224:1 29234:1 29239:1 29240:1 29248:1 29276:1 29277:1 29281:2 29289:2 29290:1 29300:1 29301:1 29310:1 29325:1 29334:4 29342:4 29346:1 29348:1 29377:3 29382:2 29388:1 29394:1 29429:1 29430:1 29454:1 29486:1 29495:2 29536:1 29537:1 29542:1 29564:1 29573:1 29574:1 29575:1 29581:1 29583:1 29587:2 29589:1 29591:4 29595:1 29600:1 29620:2 29624:1 29636:1 29655:8 29659:1 29663:1 29666:3 29718:1 29720:1 29741:3 29745:8 29747:1 29749:1 29753:1 29754:1 29771:1 29776:1 29777:2 29790:1 29795:1 29809:1 29812:1 29814:1 29821:1 29841:3 29848:1 29860:1 29891:3 29896:1 29898:1 29901:1 29904:1 29905:2 29928:2 29932:3 29935:1 29936:4 29942:1 29950:5 29957:1 29969:2 30003:1 30011:1 30056:1 30080:1 30104:3 30107:1 30121:1 30129:4 30160:2 30164:1 30170:1 30177:1 30201:1 30210:2 30216:1 30222:3 30232:1 30241:1 30252:1 30269:1 30285:3 30290:1 30292:1 30313:1 30325:2 30341:1 30345:1 30346:6 30348:1 30354:1 30364:2 30401:1 30402:2 30407:1 30429:1 30435:4 30441:2 30446:1 30475:1 30507:1 30517:1 30518:1 30524:1 30525:1 30527:3 30533:1 30539:1 30571:1 30576:2 30586:1 30588:1 30592:1 30593:1 30595:1 30599:1 30609:2 30650:1 30660:1 16 5:1 24:1 26:1 27:1 38:1 62:1 69:1 75:4 91:1 94:1 121:1 136:1 151:1 156:1 160:2 163:1 190:1 197:1 202:1 206:1 220:1 224:4 229:1 230:1 251:1 266:1 285:1 294:4 297:1 315:1 324:1 334:2 335:2 336:1 360:1 368:1 369:1 375:1 392:1 407:1 430:3 436:1 440:2 453:1 463:1 471:1 477:2 489:1 493:1 495:1 502:1 503:1 505:1 510:1 511:2 546:1 547:1 564:5 622:1 625:2 637:3 647:1 660:2 666:1 673:4 679:1 688:1 694:1 705:1 706:1 710:1 722:1 730:1 737:1 748:1 768:2 778:2 795:1 798:1 815:1 836:1 845:2 853:1 855:1 857:1 870:1 878:1 882:1 895:1 898:2 931:1 939:2 942:1 943:1 949:1 951:2 965:1 966:2 971:3 973:1 974:3 975:6 976:2 981:1 1003:1 1028:1 1029:6 1032:2 1038:1 1058:1 1065:2 1069:1 1107:2 1108:1 1131:1 1134:1 1137:1 1155:1 1161:1 1170:1 1171:1 1216:1 1217:3 1220:1 1221:1 1224:1 1233:1 1236:1 1242:2 1253:1 1254:4 1267:2 1273:1 1280:1 1290:1 1291:3 1319:1 1324:1 1325:2 1331:1 1333:4 1336:1 1346:1 1347:4 1348:2 1349:1 1361:1 1365:1 1377:1 1379:1 1389:1 1395:3 1409:2 1421:1 1422:1 1446:2 1476:1 1499:1 1500:3 1503:1 1511:1 1514:1 1516:1 1519:2 1528:1 1538:1 1556:1 1566:6 1579:1 1585:6 1590:1 1594:2 1601:1 1602:2 1603:1 1608:3 1609:1 1614:1 1618:1 1625:1 1628:4 1642:1 1651:1 1657:5 1671:1 1677:1 1681:1 1685:1 1690:2 1696:1 1725:2 1730:1 1734:4 1739:4 1742:2 1743:1 1756:1 1757:1 1759:1 1776:4 1780:3 1788:1 1789:1 1800:1 1802:1 1807:1 1826:1 1840:1 1841:1 1855:2 1857:1 1860:1 1863:1 1873:3 1886:2 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1939:1 1951:1 1954:1 1955:1 1964:1 1970:1 1977:1 1982:1 1986:1 1989:1 1997:1 1999:1 2016:1 2021:1 2023:1 2026:1 2032:1 2035:1 2038:2 2039:4 2042:1 2046:1 2048:1 2052:1 2069:1 2070:3 2090:1 2096:1 2124:1 2125:1 2131:1 2132:1 2149:1 2153:1 2161:2 2162:2 2164:1 2167:2 2169:1 2170:3 2204:1 2227:1 2231:1 2232:1 2234:3 2235:1 2237:2 2269:4 2296:1 2307:1 2337:1 2339:1 2346:1 2351:1 2353:3 2363:1 2404:1 2405:1 2406:1 2407:2 2408:4 2413:1 2415:5 2416:1 2417:1 2420:5 2421:1 2422:4 2424:1 2427:1 2434:5 2436:3 2437:6 2450:1 2455:1 2469:1 2473:1 2486:1 2488:1 2495:1 2508:1 2514:1 2518:2 2519:2 2520:1 2525:1 2532:1 2533:2 2543:1 2550:1 2556:1 2560:1 2575:1 2599:1 2602:1 2623:3 2633:1 2641:1 2645:1 2657:2 2659:1 2681:1 2689:1 2693:1 2694:1 2705:1 2742:1 2747:1 2766:1 2797:2 2803:1 2812:4 2819:1 2825:3 2834:1 2841:2 2842:1 2849:1 2852:2 2854:9 2856:2 2872:1 2874:1 2888:2 2894:1 2896:1 2900:1 2902:1 2909:3 2912:1 2936:2 2943:2 2952:2 2962:1 2963:1 2965:5 2976:2 3019:4 3024:1 3030:1 3031:1 3039:1 3056:11 3067:7 3090:2 3099:1 3118:27 3127:1 3128:1 3151:1 3152:1 3170:1 3189:1 3196:2 3222:1 3224:2 3227:1 3232:1 3296:3 3299:1 3311:1 3318:1 3342:1 3358:1 3378:1 3379:1 3390:1 3391:1 3403:2 3406:4 3428:10 3442:1 3454:1 3469:1 3485:1 3498:7 3543:1 3565:1 3567:1 3574:1 3590:1 3601:2 3609:1 3613:1 3628:1 3634:1 3643:3 3649:1 3654:1 3661:1 3667:4 3711:3 3713:1 3730:1 3731:1 3746:3 3764:1 3778:1 3793:1 3796:1 3801:1 3803:3 3804:1 3810:2 3812:1 3813:1 3819:2 3839:1 3846:1 3867:1 3886:1 3898:1 3902:2 3903:3 3906:1 3913:1 3918:1 3929:1 3950:1 3958:2 3959:35 3966:1 3981:1 3993:2 3994:1 3995:7 4000:1 4009:1 4010:20 4011:2 4012:1 4015:4 4027:2 4042:3 4057:2 4058:3 4061:2 4063:2 4076:2 4078:1 4079:1 4095:1 4116:2 4122:1 4123:3 4126:1 4130:1 4134:1 4173:1 4176:2 4178:1 4182:1 4183:3 4196:2 4207:2 4209:1 4216:1 4219:1 4223:1 4235:2 4242:1 4256:1 4258:1 4265:1 4266:1 4267:1 4269:1 4270:1 4285:1 4290:2 4294:1 4297:1 4301:4 4318:4 4324:1 4330:1 4360:1 4368:1 4369:1 4373:1 4381:1 4416:1 4423:1 4436:1 4439:3 4447:1 4463:2 4474:1 4483:1 4486:1 4498:2 4504:1 4505:2 4508:1 4509:1 4539:1 4547:1 4555:1 4557:1 4563:1 4599:1 4611:1 4623:1 4636:9 4650:1 4697:2 4701:1 4706:5 4715:1 4718:2 4749:6 4767:1 4773:1 4781:1 4787:1 4796:1 4840:1 4854:1 4855:2 4880:1 4896:1 4900:1 4906:2 4909:1 4921:2 4927:1 4930:2 4938:1 4948:4 4959:1 4966:3 4989:3 4993:2 4994:1 5014:1 5044:1 5058:1 5059:1 5062:1 5064:1 5076:1 5090:1 5092:2 5100:2 5153:1 5159:1 5186:1 5189:1 5191:1 5201:14 5202:2 5211:1 5219:1 5231:2 5241:1 5260:2 5275:1 5288:1 5308:3 5314:1 5320:3 5321:1 5323:4 5340:1 5344:2 5345:2 5347:6 5348:1 5350:1 5351:1 5354:2 5356:1 5361:1 5362:19 5363:1 5365:1 5370:2 5371:3 5376:2 5397:1 5401:3 5453:2 5467:1 5478:1 5483:1 5486:1 5488:1 5491:1 5560:1 5593:3 5594:3 5603:5 5648:1 5652:1 5670:1 5675:2 5677:19 5684:1 5703:1 5710:3 5712:1 5735:2 5771:1 5774:1 5786:1 5810:1 5816:1 5819:2 5830:1 5836:1 5839:1 5848:1 5851:1 5856:2 5857:1 5901:1 5902:1 5904:1 5908:1 5911:1 5920:1 5921:1 5922:2 5943:1 5951:1 5954:1 5956:1 5962:2 5965:1 5967:1 5973:2 5987:2 5991:1 5993:1 6018:1 6021:3 6038:2 6044:1 6061:1 6063:1 6065:1 6068:1 6079:1 6086:1 6094:1 6095:1 6097:1 6101:1 6103:1 6115:1 6118:1 6121:1 6136:1 6140:1 6141:1 6142:1 6199:3 6217:1 6219:3 6221:1 6227:1 6231:1 6243:1 6280:1 6305:2 6330:1 6364:1 6368:1 6371:7 6380:1 6386:2 6410:2 6415:1 6421:1 6444:1 6465:1 6471:1 6474:1 6480:1 6481:1 6490:2 6491:2 6492:1 6498:1 6499:1 6528:4 6529:1 6536:1 6539:2 6540:2 6564:1 6568:1 6588:1 6591:2 6596:1 6602:1 6618:5 6621:1 6635:1 6636:1 6639:1 6648:1 6654:1 6660:1 6673:1 6721:3 6724:1 6725:1 6726:1 6727:1 6728:1 6730:2 6731:2 6734:2 6735:3 6736:4 6743:2 6744:7 6745:1 6746:1 6747:2 6756:1 6773:1 6776:1 6797:3 6802:1 6836:1 6872:1 6878:1 6886:1 6895:2 6901:1 6930:1 6932:1 6970:1 6977:1 6984:1 6994:2 7000:2 7019:1 7026:1 7027:5 7032:3 7035:1 7039:1 7046:1 7047:1 7060:2 7080:1 7082:1 7083:3 7088:2 7114:1 7115:1 7118:1 7126:1 7148:1 7166:1 7175:1 7192:1 7200:1 7201:2 7204:1 7216:3 7220:1 7222:1 7231:3 7236:3 7242:1 7257:1 7267:2 7273:1 7308:1 7322:1 7325:1 7328:1 7333:1 7335:2 7342:1 7384:1 7407:1 7412:1 7432:2 7433:1 7455:1 7456:2 7495:1 7522:2 7542:1 7548:1 7556:1 7573:1 7574:1 7577:5 7585:2 7589:1 7601:1 7603:1 7610:1 7612:1 7625:1 7635:1 7653:1 7705:1 7717:1 7733:1 7769:1 7774:1 7779:1 7782:1 7788:4 7830:1 7840:3 7874:4 7915:2 7926:1 7932:2 7954:1 7963:1 7993:1 7997:2 7998:1 8004:1 8005:1 8023:1 8027:1 8031:4 8054:1 8064:4 8065:4 8066:2 8084:1 8089:2 8094:1 8097:1 8100:1 8105:1 8121:1 8122:2 8128:1 8130:1 8131:38 8133:1 8134:1 8140:2 8142:1 8151:11 8152:23 8161:1 8164:1 8170:1 8173:1 8207:1 8208:5 8238:1 8254:1 8273:1 8279:1 8302:2 8307:1 8316:1 8321:1 8362:3 8365:5 8372:1 8408:1 8413:1 8415:5 8430:1 8433:1 8450:1 8467:1 8478:1 8492:1 8521:1 8523:3 8540:7 8546:2 8550:1 8559:1 8570:2 8590:1 8597:1 8603:1 8610:1 8623:1 8624:1 8633:17 8651:1 8655:1 8664:2 8665:1 8687:2 8718:1 8724:1 8733:2 8742:1 8748:1 8753:2 8760:4 8779:1 8789:1 8793:3 8798:4 8803:2 8816:2 8820:3 8830:1 8840:2 8842:1 8845:1 8850:1 8857:1 8858:2 8863:2 8873:1 8884:2 8887:2 8895:1 8898:1 8899:1 8915:2 8932:1 8938:1 8942:3 8953:1 8959:1 8966:1 8973:1 8979:1 8980:2 8983:1 8984:3 8985:2 8986:2 8987:4 8990:1 8995:1 8998:2 9000:2 9004:3 9020:1 9027:1 9035:2 9039:3 9040:1 9041:1 9045:1 9046:1 9058:1 9061:1 9072:1 9075:2 9081:1 9109:1 9112:5 9135:1 9139:3 9146:1 9149:1 9151:2 9158:1 9164:1 9169:1 9204:1 9205:1 9209:1 9215:2 9225:3 9227:1 9248:1 9268:4 9269:2 9273:4 9274:1 9276:1 9277:3 9280:3 9286:2 9301:2 9302:1 9304:4 9316:1 9318:1 9339:2 9345:1 9400:1 9420:2 9439:2 9442:2 9450:1 9453:1 9463:1 9471:1 9478:1 9480:1 9495:1 9504:1 9506:1 9523:1 9539:1 9561:3 9589:1 9592:1 9594:3 9608:1 9618:7 9640:2 9646:3 9651:1 9658:1 9662:1 9663:1 9677:1 9686:1 9695:3 9697:1 9715:1 9718:1 9721:1 9732:1 9776:1 9781:1 9809:1 9825:1 9840:1 9870:1 9874:1 9877:3 9882:2 9888:1 9889:2 9909:1 9928:1 9930:1 9937:2 9940:1 9942:1 9972:1 9973:1 9977:2 9983:1 9993:1 9994:1 10009:1 10037:19 10043:1 10060:1 10069:2 10078:4 10084:2 10085:1 10109:1 10117:1 10128:1 10130:2 10146:1 10169:14 10185:1 10190:2 10202:1 10211:1 10223:5 10229:1 10235:1 10238:3 10239:1 10240:1 10241:1 10259:1 10269:1 10275:1 10281:1 10286:1 10317:2 10321:3 10322:1 10356:6 10362:2 10363:4 10364:2 10371:2 10379:1 10380:1 10387:2 10393:2 10395:1 10400:2 10406:1 10410:3 10413:1 10415:1 10416:1 10423:1 10438:1 10446:3 10450:3 10468:1 10470:2 10483:1 10493:2 10533:1 10547:1 10549:3 10552:1 10577:10 10580:1 10581:6 10596:1 10601:1 10627:1 10651:4 10691:1 10698:2 10707:1 10718:1 10731:1 10735:1 10757:3 10763:1 10780:4 10784:1 10791:1 10794:1 10809:1 10828:1 10830:1 10850:1 10868:1 10880:2 10892:4 10898:1 10903:1 10907:1 10917:2 10923:1 10935:1 10939:1 10957:2 10962:4 10973:1 10998:1 11009:2 11026:2 11028:2 11031:2 11040:1 11047:6 11060:2 11061:4 11062:1 11063:3 11070:1 11081:1 11084:1 11087:1 11105:1 11106:3 11120:1 11126:1 11134:4 11145:1 11148:2 11156:1 11160:2 11166:7 11230:1 11231:1 11234:1 11237:1 11260:2 11261:2 11262:1 11268:1 11276:1 11305:1 11315:1 11324:1 11359:1 11364:1 11366:1 11371:1 11388:2 11389:1 11400:7 11417:3 11418:7 11430:2 11441:1 11443:1 11453:1 11469:1 11477:4 11482:1 11499:1 11512:2 11528:1 11529:2 11535:3 11556:3 11569:3 11597:1 11622:1 11628:1 11641:1 11668:1 11673:1 11676:1 11677:1 11678:1 11680:1 11683:1 11684:4 11685:1 11703:1 11710:1 11718:1 11721:2 11740:1 11745:1 11753:1 11754:1 11779:2 11808:1 11810:3 11816:1 11819:1 11824:1 11830:1 11839:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11885:1 11887:3 11914:1 11918:1 11923:3 11926:5 11929:1 11931:1 11961:1 11985:1 11986:1 11991:1 11994:2 12009:1 12029:3 12045:1 12056:1 12063:1 12065:4 12066:2 12077:3 12081:1 12093:2 12095:3 12098:2 12107:1 12120:1 12130:3 12135:1 12146:3 12153:2 12155:7 12157:1 12170:1 12171:1 12176:1 12177:1 12181:1 12182:1 12189:1 12190:1 12193:5 12194:1 12200:1 12202:5 12210:1 12218:1 12222:1 12228:7 12253:2 12266:5 12270:1 12275:2 12280:1 12293:1 12314:1 12325:4 12333:1 12335:1 12337:2 12373:1 12375:1 12385:3 12406:1 12412:1 12415:2 12423:1 12440:1 12459:1 12470:2 12471:2 12506:2 12508:1 12539:1 12555:5 12594:2 12609:1 12616:1 12625:1 12628:1 12629:1 12632:1 12637:1 12654:3 12655:3 12656:19 12660:6 12671:1 12679:1 12681:2 12698:1 12705:1 12716:2 12745:1 12766:1 12788:1 12815:1 12824:9 12825:2 12841:1 12845:1 12846:3 12850:1 12871:1 12902:3 12906:1 12929:1 12936:1 12943:2 12947:1 12953:1 12961:1 12976:1 12992:1 13011:1 13015:2 13019:1 13035:3 13054:2 13057:1 13092:1 13095:3 13103:1 13107:1 13110:1 13114:1 13117:1 13129:1 13166:1 13167:1 13174:1 13183:1 13207:1 13227:6 13240:1 13241:1 13243:1 13248:1 13251:1 13276:2 13277:4 13304:1 13307:2 13342:1 13371:1 13376:2 13404:1 13424:1 13429:2 13440:1 13441:1 13443:2 13472:1 13486:2 13488:1 13494:1 13522:1 13580:1 13597:5 13609:1 13614:1 13623:1 13624:2 13630:1 13649:2 13652:1 13656:1 13661:1 13664:1 13673:1 13681:1 13684:1 13700:2 13709:1 13711:1 13712:1 13714:2 13720:1 13735:1 13739:2 13740:1 13768:1 13775:1 13776:1 13780:2 13816:2 13821:2 13823:1 13832:1 13833:2 13835:1 13838:6 13842:4 13843:1 13851:1 13853:1 13856:1 13858:3 13873:3 13875:1 13878:1 13883:3 13898:1 13915:7 13916:1 13923:1 13926:1 13930:1 13931:2 13943:1 13944:2 13958:2 13981:2 13993:2 13994:1 14011:4 14016:1 14027:1 14028:1 14037:1 14050:2 14063:3 14078:1 14085:2 14086:6 14112:2 14113:2 14114:2 14115:1 14129:1 14145:1 14152:1 14156:1 14157:2 14177:1 14189:2 14206:1 14221:2 14228:1 14234:1 14237:1 14238:2 14239:1 14241:1 14245:1 14264:1 14274:1 14275:1 14280:1 14291:1 14296:1 14298:1 14307:1 14310:1 14311:1 14315:2 14318:1 14320:1 14334:1 14335:1 14366:7 14375:2 14377:1 14382:1 14422:1 14426:1 14445:1 14446:1 14447:2 14450:2 14468:2 14471:2 14472:1 14477:4 14503:1 14522:1 14529:1 14533:1 14544:2 14546:3 14552:2 14553:6 14563:1 14584:1 14592:3 14610:1 14622:2 14642:2 14644:1 14649:1 14650:1 14654:1 14664:1 14665:2 14670:2 14699:1 14704:1 14769:1 14771:1 14777:1 14780:1 14785:2 14806:1 14833:1 14845:1 14862:1 14887:1 14901:1 14921:1 14922:1 14935:1 14952:1 14958:1 14971:1 14976:2 14986:2 14987:1 14997:1 15002:1 15008:4 15010:1 15011:1 15019:1 15020:1 15032:2 15033:1 15054:1 15060:1 15068:1 15072:1 15088:1 15096:2 15120:1 15127:1 15141:1 15157:1 15162:1 15166:1 15174:1 15181:1 15190:1 15196:4 15216:1 15233:1 15238:1 15247:2 15252:1 15276:1 15290:1 15319:4 15330:1 15346:1 15364:1 15475:1 15476:1 15487:1 15493:1 15507:2 15538:3 15547:3 15548:1 15552:1 15554:1 15556:1 15573:1 15577:1 15597:2 15605:1 15625:1 15641:1 15643:2 15646:1 15655:3 15672:1 15683:1 15693:1 15695:2 15697:1 15702:2 15725:1 15734:1 15771:1 15772:1 15775:1 15781:1 15788:1 15805:1 15813:1 15814:1 15868:2 15875:3 15876:3 15881:1 15907:4 15908:1 15911:1 15933:1 15951:4 15955:1 15961:1 15962:1 15968:1 15984:1 15999:1 16001:1 16008:1 16018:1 16021:3 16028:2 16032:2 16038:2 16054:1 16066:1 16073:2 16096:1 16111:1 16121:1 16140:1 16148:3 16153:1 16167:8 16172:8 16174:1 16181:1 16207:2 16218:1 16221:2 16222:2 16235:3 16255:1 16263:1 16270:1 16277:1 16279:1 16303:3 16307:1 16309:1 16317:4 16325:3 16334:1 16336:1 16337:2 16345:2 16347:1 16352:1 16353:4 16356:2 16357:6 16358:1 16363:2 16367:1 16368:1 16369:1 16378:1 16379:5 16386:4 16387:2 16427:1 16467:1 16480:1 16484:2 16495:2 16498:1 16501:2 16507:4 16519:1 16530:2 16532:1 16543:1 16561:2 16564:2 16578:1 16593:2 16610:1 16617:1 16623:1 16630:1 16638:2 16646:8 16659:2 16660:2 16661:1 16673:1 16674:2 16677:1 16678:2 16692:1 16697:1 16706:19 16734:1 16739:5 16740:1 16743:1 16761:2 16775:54 16794:3 16799:1 16831:1 16861:1 16864:1 16866:1 16867:2 16884:1 16904:1 16908:1 16913:2 16915:1 16916:2 16919:2 16920:4 16921:1 16927:2 16931:1 16944:1 16957:1 16961:1 16965:1 16971:1 16980:1 16981:1 17010:1 17013:1 17047:1 17055:5 17075:1 17090:2 17095:1 17116:1 17130:1 17135:1 17139:1 17153:1 17192:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:2 17253:1 17294:2 17295:1 17317:1 17322:1 17326:1 17336:2 17342:4 17343:1 17347:1 17369:1 17372:3 17392:3 17398:1 17405:1 17414:1 17415:1 17422:1 17424:2 17426:1 17427:1 17435:1 17438:1 17445:1 17454:1 17460:11 17470:1 17474:1 17500:2 17514:2 17520:1 17521:1 17553:1 17559:1 17561:1 17564:1 17582:1 17583:2 17585:3 17587:1 17589:2 17593:1 17596:1 17608:1 17613:1 17625:1 17635:1 17641:1 17645:2 17646:2 17675:2 17678:2 17689:1 17711:1 17717:1 17718:3 17727:1 17742:1 17788:1 17797:2 17800:1 17816:1 17821:2 17822:1 17831:1 17835:1 17843:2 17844:1 17849:3 17859:2 17871:1 17875:1 17877:3 17881:1 17889:1 17896:1 17897:1 17906:3 17912:1 17932:1 17933:1 17952:1 17957:1 17972:2 17998:2 18006:1 18011:1 18034:4 18083:1 18093:1 18099:1 18110:1 18112:1 18115:1 18129:5 18131:1 18134:1 18136:1 18144:1 18147:2 18153:1 18154:1 18169:1 18171:2 18174:2 18182:1 18187:1 18188:1 18197:2 18206:1 18214:1 18221:1 18223:1 18226:1 18241:1 18248:2 18249:2 18277:1 18280:1 18282:1 18285:1 18310:1 18330:2 18338:2 18342:1 18355:1 18366:2 18410:2 18412:1 18415:1 18417:2 18421:2 18423:1 18441:1 18442:9 18446:2 18460:1 18474:1 18478:2 18506:1 18517:1 18524:1 18543:1 18544:2 18546:3 18559:2 18562:2 18565:1 18576:1 18583:1 18584:1 18589:1 18602:1 18625:1 18629:3 18633:4 18634:2 18636:1 18646:1 18678:1 18707:1 18709:1 18748:3 18749:1 18757:1 18781:1 18786:1 18797:1 18807:1 18815:1 18816:1 18819:3 18831:2 18838:1 18855:1 18866:1 18872:1 18873:3 18922:2 18928:1 18932:1 18956:4 18966:1 18977:4 18980:1 18984:1 18987:3 19006:1 19007:1 19016:1 19018:2 19022:1 19079:1 19098:2 19113:1 19114:10 19118:1 19125:1 19132:1 19145:1 19160:1 19170:1 19182:1 19191:2 19193:1 19194:1 19210:1 19217:1 19225:1 19229:1 19241:1 19244:5 19250:2 19251:1 19265:3 19269:1 19272:1 19276:2 19277:1 19315:1 19323:3188 19328:1 19342:4 19343:1 19348:2 19376:1 19385:1 19395:1 19405:1 19410:1 19413:3 19414:1 19421:1 19452:3 19473:2 19482:2 19505:1 19507:4 19509:2 19530:3 19536:1 19539:3 19541:1 19543:1 19571:1 19584:1 19586:1 19596:1 19609:1 19632:1 19636:4 19638:1 19654:1 19658:1 19664:1 19670:1 19696:2 19702:1 19708:1 19721:1 19733:1 19743:1 19751:1 19756:1 19758:1 19804:1 19815:1 19817:2 19820:1 19831:4 19845:1 19856:1 19857:1 19869:1 19882:1 19918:1 19919:1 19933:3 19984:1 20004:1 20024:1 20032:2 20043:1 20048:2 20050:1 20057:2 20074:4 20086:2 20090:1 20091:3 20095:1 20107:1 20121:14 20141:1 20142:1 20144:2 20146:1 20147:15 20159:2 20177:1 20178:4 20180:1 20181:1 20197:2 20212:1 20216:4 20236:1 20243:2 20248:1 20250:5 20252:2 20255:1 20260:1 20262:1 20277:2 20278:1 20279:1 20283:1 20287:1 20313:1 20319:3 20326:1 20339:1 20349:3 20363:1 20387:1 20389:1 20392:1 20447:1 20451:1 20458:1 20477:1 20486:1 20492:1 20493:1 20502:1 20523:1 20524:11 20527:1 20565:1 20573:1 20596:1 20605:1 20613:1 20619:1 20623:6 20644:1 20648:1 20656:1 20669:2 20682:1 20688:1 20691:1 20714:1 20719:1 20720:1 20722:1 20724:1 20725:1 20731:1 20749:1 20779:4 20782:1 20787:1 20789:1 20796:1 20811:3 20814:1 20821:1 20839:2 20849:1 20853:1 20871:1 20877:4 20894:2 20897:1 20903:2 20907:1 20908:2 20918:2 20923:7 20942:1 20972:1 20976:1 20987:1 20996:12 21002:1 21014:2 21017:2 21030:1 21033:1 21049:1 21050:13 21066:1 21088:1 21099:1 21103:1 21105:1 21131:1 21144:1 21175:1 21182:1 21196:2 21213:1 21214:4 21216:2 21225:1 21231:1 21258:2 21301:5 21312:1 21313:1 21316:3 21328:1 21331:1 21339:1 21343:1 21344:1 21355:1 21389:1 21392:1 21413:1 21451:2 21466:1 21468:1 21474:1 21487:1 21495:1 21500:2 21511:1 21528:1 21529:1 21532:1 21554:1 21575:1 21596:3 21625:2 21630:1 21631:1 21634:1 21638:1 21643:12 21655:1 21660:3 21663:3 21664:1 21674:1 21678:1 21684:5 21690:1 21708:4 21711:1 21716:2 21722:1 21741:1 21755:2 21756:1 21757:1 21769:2 21773:1 21789:2 21797:1 21798:1 21822:7 21829:1 21830:2 21835:1 21852:1 21874:1 21891:1 21896:1 21911:1 21915:1 21916:1 21932:2 21936:1 21939:1 21943:1 21949:1 21962:3 21977:1 21980:1 21986:1 21987:1 21992:1 22003:1 22005:1 22041:1 22048:1 22050:1 22106:1 22147:1 22151:1 22154:4 22157:2 22159:3 22170:4 22179:1 22181:1 22183:1 22228:1 22232:1 22233:1 22236:2 22241:2 22251:1 22258:1 22268:1 22281:1 22285:1 22286:1 22298:1 22300:6 22305:3 22309:1 22319:1 22332:1 22349:1 22354:1 22383:1 22384:2 22389:1 22396:1 22405:1 22406:1 22409:1 22422:1 22425:3 22427:12 22430:1 22447:1 22456:2 22457:1 22461:1 22469:1 22479:1 22481:1 22501:5 22515:1 22534:2 22538:3 22540:1 22542:1 22549:4 22563:1 22579:1 22603:1 22604:1 22607:4 22614:2 22618:3 22621:1 22671:1 22693:3 22702:1 22703:1 22705:8 22709:2 22712:2 22720:2 22721:1 22723:1 22734:2 22735:1 22736:1 22740:1 22746:2 22748:2 22750:1 22756:1 22757:1 22758:1 22764:1 22769:2 22772:2 22777:1 22795:2 22822:1 22833:5 22834:1 22856:1 22860:1 22866:1 22868:1 22874:2 22877:1 22895:1 22901:1 22909:4 22917:1 22926:1 22929:1 22937:1 22985:19 22987:2 22990:1 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:2 23093:1 23096:2 23102:1 23106:1 23112:2 23125:2 23133:1 23136:8 23153:2 23160:3 23166:1 23199:1 23202:1 23209:1 23212:1 23215:2 23221:1 23225:1 23236:1 23239:1 23244:1 23246:2 23256:1 23269:2 23271:1 23284:9 23302:3 23317:3 23325:1 23336:1 23360:1 23376:2 23390:1 23391:1 23413:1 23445:1 23454:3 23459:1 23462:1 23473:1 23481:1 23496:4 23517:1 23534:1 23535:1 23549:1 23554:1 23570:1 23574:1 23575:2 23579:13 23581:1 23583:2 23600:1 23611:2 23624:1 23629:1 23632:1 23639:1 23648:2 23652:1 23655:1 23662:2 23665:1 23666:2 23673:1 23687:1 23695:1 23699:3 23710:1 23716:1 23717:5 23721:1 23750:1 23752:1 23765:2 23767:1 23788:2 23801:1 23807:1 23813:1 23819:2 23838:1 23851:1 23859:1 23864:1 23875:1 23878:2 23879:1 23891:2 23913:1 23948:1 23955:1 23968:1 23969:1 23971:5 23978:1 23987:1 24002:1 24003:1 24012:1 24015:1 24034:1 24049:1 24087:1 24090:2 24103:1 24108:2 24113:1 24119:2 24124:4 24128:1 24141:1 24151:1 24168:1 24177:1 24183:1 24187:3 24188:3 24196:1 24207:6 24216:1 24219:1 24231:1 24232:1 24235:1 24237:3 24241:2 24247:1 24252:1 24273:2 24280:1 24281:2 24283:1 24293:1 24296:1 24329:4 24336:1 24340:21 24344:1 24391:1 24408:1 24419:1 24432:2 24440:1 24441:1 24444:1 24449:1 24464:1 24478:1 24504:2 24506:1 24508:1 24509:1 24533:1 24534:1 24538:1 24548:1 24571:1 24591:1 24602:1 24625:1 24653:1 24656:2 24668:2 24702:4 24714:1 24717:1 24756:1 24761:1 24775:1 24777:1 24797:2 24814:3 24827:2 24833:1 24838:1 24841:1 24844:2 24845:1 24859:1 24873:1 24881:1 24907:1 24921:1 24931:1 24932:1 24939:1 24944:1 24970:1 24976:1 24999:1 25004:1 25005:5 25014:1 25021:1 25023:1 25027:1 25049:1 25073:2 25090:1 25122:1 25147:3 25158:1 25181:1 25190:1 25194:5 25252:2 25259:1 25264:1 25273:1 25275:1 25285:2 25287:5 25288:1 25311:1 25319:1 25325:1 25327:2 25331:1 25335:1 25339:3 25347:2 25384:1 25385:2 25398:2 25415:1 25419:2 25431:2 25447:1 25468:1 25471:1 25472:1 25487:1 25495:4 25503:3 25507:1 25510:1 25514:1 25526:1 25527:1 25549:1 25551:1 25561:2 25570:1 25576:1 25587:1 25597:1 25598:2 25614:1 25623:1 25627:2 25631:1 25634:1 25643:1 25652:1 25664:1 25673:1 25676:1 25684:1 25688:1 25716:1 25718:1 25722:1 25733:1 25740:2 25778:3 25797:5 25823:1 25832:1 25836:1 25852:1 25860:1 25871:1 25872:1 25878:2 25880:1 25884:1 25893:5 25894:1 25900:1 25918:2 25921:1 25922:1 25952:1 25966:1 25980:4 25998:1 26004:1 26007:1 26011:1 26021:1 26048:1 26058:3 26073:1 26076:1 26097:7 26119:1 26123:1 26124:1 26150:2 26156:5 26159:1 26167:1 26172:4 26175:1 26176:1 26207:1 26226:1 26232:1 26257:1 26304:1 26315:1 26316:1 26318:2 26319:1 26320:1 26322:7 26324:3 26331:1 26356:1 26371:1 26372:2 26376:1 26377:2 26403:1 26413:1 26415:6 26416:1 26424:1 26429:4 26435:5 26436:1 26445:2 26458:1 26460:1 26463:1 26472:1 26489:2 26513:6 26518:1 26524:1 26525:1 26534:1 26538:2 26548:1 26564:2 26579:1 26589:3 26608:1 26627:5 26628:1 26652:2 26653:2 26681:2 26689:1 26712:1 26717:1 26728:3 26754:1 26761:1 26782:4 26808:1 26813:1 26835:1 26839:1 26842:2 26844:1 26848:1 26862:1 26865:1 26868:2 26871:2 26891:1 26893:1 26898:1 26901:1 26912:1 26915:1 26920:1 26934:2 26935:1 26938:1 26949:2 26955:1 26956:1 26964:1 26977:6 26981:1 26982:1 26985:1 26989:1 27000:1 27001:1 27003:1 27008:2 27010:2 27029:1 27056:1 27065:1 27078:1 27099:1 27102:1 27107:1 27113:1 27115:3 27138:10 27144:1 27178:1 27185:1 27188:1 27192:2 27212:1 27223:1 27244:1 27252:1 27257:1 27266:1 27280:3 27288:1 27295:1 27308:1 27314:2 27332:1 27394:2 27407:3 27422:5 27424:2 27426:1 27431:1 27438:2 27439:1 27440:4 27441:7 27444:1 27450:1 27470:1 27490:2 27521:1 27531:1 27534:1 27540:3 27548:1 27552:1 27580:3 27601:1 27607:1 27611:1 27621:2 27626:1 27636:1 27668:1 27673:1 27676:1 27709:1 27718:1 27735:1 27755:1 27775:1 27799:1 27809:1 27824:1 27834:1 27852:1 27854:2 27863:1 27875:1 27883:2 27893:2 27910:2 27925:1 27939:1 27949:1 27950:1 28004:2 28005:2 28017:2 28059:1 28087:1 28095:2 28099:4 28110:1 28113:1 28118:1 28121:9 28137:1 28154:2 28155:1 28211:1 28223:21 28224:1 28227:3 28230:1 28238:1 28246:1 28258:3 28285:1 28338:2 28340:3 28342:3 28343:2 28385:2 28388:1 28391:1 28395:1 28398:1 28405:2 28410:2 28413:1 28421:1 28429:1 28430:1 28432:1 28437:2 28443:1 28448:3 28450:1 28472:2 28482:1 28496:1 28499:2 28514:1 28524:2 28525:1 28526:1 28544:1 28548:1 28551:1 28574:1 28581:1 28593:1 28600:1 28644:1 28645:1 28659:1 28669:1 28674:1 28675:1 28680:1 28684:1 28696:3 28697:1 28754:7 28762:1 28771:1 28795:2 28798:1 28839:3 28848:3 28866:1 28870:1 28874:2 28878:1 28912:1 28928:1 28931:3 28939:1 28962:2 28974:1 29000:5 29004:4 29028:1 29030:1 29039:1 29041:1 29051:1 29069:1 29073:1 29111:1 29112:1 29130:4 29135:1 29143:1 29155:1 29167:3 29168:1 29179:1 29182:2 29183:25 29184:2 29186:2 29189:4 29192:1 29193:1 29203:1 29220:1 29221:13 29224:1 29234:1 29239:1 29240:1 29248:1 29276:1 29277:1 29281:2 29289:2 29290:1 29300:1 29301:1 29302:2 29310:1 29325:1 29334:4 29342:4 29346:1 29348:2 29377:3 29382:2 29388:1 29394:1 29409:1 29429:1 29430:1 29454:1 29486:1 29495:2 29502:1 29536:1 29537:1 29542:1 29564:1 29573:1 29574:1 29575:1 29581:1 29583:1 29587:2 29589:1 29591:4 29595:1 29600:1 29620:2 29624:1 29636:1 29655:8 29659:1 29663:1 29666:3 29669:1 29718:1 29720:1 29741:3 29745:8 29747:1 29749:1 29753:1 29754:1 29771:1 29776:2 29777:2 29790:1 29795:1 29809:1 29812:1 29814:1 29821:1 29841:3 29848:2 29860:1 29891:3 29896:1 29898:1 29901:1 29904:1 29905:2 29928:2 29932:3 29935:1 29936:4 29942:1 29950:5 29957:1 29969:2 30003:1 30011:1 30056:1 30080:1 30104:3 30107:1 30121:1 30129:4 30160:2 30164:1 30170:1 30177:1 30201:1 30210:2 30216:1 30222:3 30232:1 30241:1 30252:1 30269:1 30285:3 30290:1 30292:1 30313:1 30325:2 30341:1 30345:1 30346:6 30348:1 30354:1 30364:2 30401:1 30402:2 30407:1 30429:1 30435:5 30441:2 30446:1 30475:1 30507:1 30517:1 30518:1 30524:1 30525:1 30527:5 30533:1 30539:1 30571:1 30576:2 30586:1 30588:1 30592:1 30593:1 30595:1 30599:1 30609:2 30650:1 30660:1 16 5:1 24:1 26:1 27:1 38:1 62:1 69:1 75:4 91:1 94:1 121:1 136:1 151:1 156:1 160:2 163:1 190:1 197:1 202:1 206:1 220:1 224:4 229:1 230:1 251:1 266:1 285:1 294:4 297:1 315:1 324:1 334:2 335:3 336:1 360:1 368:1 369:1 375:1 392:1 407:1 430:3 436:1 440:2 453:1 463:1 471:1 477:2 489:1 493:1 495:1 502:1 503:1 505:1 510:1 511:2 546:1 547:1 564:5 622:1 625:3 637:3 647:1 660:2 666:1 673:4 679:1 688:1 694:1 705:1 706:1 710:1 722:1 730:1 737:1 748:1 768:2 778:2 795:1 798:1 815:1 836:1 845:2 853:1 855:1 857:1 870:1 878:1 882:1 895:1 898:2 931:1 939:2 942:1 943:1 949:1 951:2 965:2 966:2 971:3 973:1 974:3 975:6 976:2 981:1 1002:1 1003:1 1026:1 1028:1 1029:6 1032:2 1038:1 1058:1 1065:2 1069:1 1107:2 1108:1 1131:1 1134:1 1137:1 1155:2 1161:1 1170:1 1171:1 1216:1 1217:3 1220:1 1221:1 1224:1 1233:1 1236:1 1242:2 1253:1 1254:4 1267:2 1273:1 1280:1 1290:1 1291:3 1319:1 1324:1 1325:2 1331:1 1333:4 1336:1 1346:1 1347:4 1348:2 1349:1 1361:1 1365:1 1377:1 1379:1 1389:1 1395:3 1409:2 1421:1 1422:1 1446:2 1476:1 1499:1 1500:3 1503:1 1511:1 1514:1 1516:1 1519:2 1528:1 1538:1 1556:1 1566:6 1574:1 1579:1 1585:6 1590:1 1594:2 1601:1 1602:2 1603:1 1608:3 1609:1 1614:1 1618:1 1625:1 1628:4 1642:1 1651:1 1653:1 1657:5 1671:1 1677:1 1681:2 1685:1 1690:2 1696:1 1725:2 1730:1 1734:4 1739:4 1742:2 1743:1 1756:1 1757:1 1759:1 1776:5 1780:3 1788:1 1789:1 1800:1 1802:1 1807:1 1826:1 1840:1 1841:1 1855:2 1857:1 1860:1 1863:1 1873:3 1886:2 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1939:1 1951:1 1954:1 1955:1 1964:1 1970:1 1977:1 1982:1 1986:1 1989:1 1997:1 1999:1 2005:1 2016:1 2021:1 2023:1 2026:1 2032:1 2035:1 2038:2 2039:4 2042:1 2046:1 2048:1 2052:1 2069:1 2070:3 2090:1 2096:1 2101:1 2124:1 2125:1 2131:1 2132:1 2149:1 2153:1 2161:2 2162:2 2164:1 2167:2 2169:1 2170:3 2204:1 2227:1 2231:1 2232:1 2234:3 2235:1 2237:2 2269:4 2296:2 2307:1 2337:1 2339:1 2346:1 2351:1 2353:3 2363:1 2404:1 2405:1 2406:1 2407:2 2408:4 2413:1 2415:5 2416:1 2417:1 2420:5 2421:1 2422:4 2424:1 2427:1 2434:5 2436:3 2437:7 2450:1 2455:1 2469:1 2473:1 2486:1 2488:1 2495:1 2508:1 2514:1 2518:2 2519:2 2520:1 2525:1 2532:1 2533:2 2543:1 2550:1 2556:1 2560:1 2575:1 2597:1 2599:1 2602:1 2623:5 2633:1 2641:1 2645:1 2657:2 2659:1 2681:1 2689:1 2693:1 2694:1 2705:1 2742:1 2747:1 2766:1 2797:2 2803:1 2812:4 2819:1 2825:4 2834:1 2841:2 2842:1 2849:1 2852:2 2854:10 2856:2 2872:1 2874:1 2888:2 2894:1 2896:1 2900:1 2902:1 2909:3 2912:1 2936:2 2943:2 2952:2 2962:1 2963:1 2965:5 2976:2 3019:4 3024:1 3030:1 3031:1 3039:1 3056:11 3067:7 3090:2 3099:1 3118:29 3127:1 3128:2 3151:1 3152:1 3170:1 3189:1 3196:2 3222:1 3224:2 3227:1 3232:2 3296:3 3299:1 3311:1 3318:1 3342:1 3358:1 3378:1 3379:1 3390:1 3391:1 3403:2 3406:4 3428:10 3442:1 3454:1 3469:1 3485:1 3498:7 3543:1 3565:1 3567:1 3574:1 3590:1 3601:2 3609:1 3613:1 3628:1 3634:1 3643:3 3649:1 3654:1 3661:1 3667:4 3711:3 3713:1 3730:1 3731:1 3746:3 3764:1 3778:1 3793:1 3796:1 3801:1 3803:3 3804:2 3810:2 3812:1 3813:1 3819:2 3829:1 3839:1 3846:1 3867:1 3886:1 3898:1 3902:2 3903:3 3906:1 3913:1 3918:1 3929:1 3950:1 3958:2 3959:35 3966:1 3981:1 3993:2 3994:1 3995:8 4000:1 4009:1 4010:21 4011:2 4012:1 4015:4 4027:2 4042:3 4057:2 4058:3 4061:2 4063:2 4076:2 4078:1 4079:1 4095:1 4116:2 4122:1 4123:3 4126:1 4130:1 4134:1 4173:1 4176:2 4178:1 4182:1 4183:3 4196:2 4207:2 4209:1 4216:1 4219:1 4223:1 4235:2 4242:1 4256:1 4258:1 4265:1 4266:1 4267:1 4269:1 4270:1 4285:1 4290:2 4294:1 4297:1 4301:4 4318:4 4324:1 4330:1 4360:1 4368:1 4369:1 4373:1 4381:1 4416:1 4423:1 4436:1 4439:3 4447:1 4463:2 4474:1 4483:1 4486:1 4498:2 4504:1 4505:2 4508:1 4509:1 4539:1 4547:1 4555:1 4557:1 4563:1 4599:1 4611:1 4623:1 4636:9 4650:1 4697:2 4701:1 4706:5 4715:1 4718:2 4749:6 4767:1 4773:1 4781:1 4787:1 4796:1 4840:1 4854:1 4855:2 4880:1 4896:1 4900:1 4906:2 4909:1 4921:2 4927:1 4930:2 4938:1 4948:4 4959:1 4966:3 4989:3 4993:2 4994:1 5014:1 5044:1 5058:1 5059:1 5062:1 5064:1 5076:1 5090:1 5092:2 5100:2 5153:1 5159:1 5186:1 5189:1 5191:1 5201:15 5202:2 5211:1 5219:1 5231:2 5241:1 5260:2 5275:1 5288:1 5308:3 5314:1 5320:3 5321:1 5323:4 5340:1 5344:2 5345:2 5347:7 5348:1 5350:1 5351:1 5353:1 5354:2 5356:1 5361:1 5362:19 5363:1 5365:1 5370:2 5371:3 5376:2 5397:1 5401:3 5453:2 5467:1 5478:1 5483:1 5486:1 5488:1 5491:1 5560:1 5593:3 5594:3 5603:5 5648:1 5652:1 5670:1 5675:2 5677:19 5684:1 5703:1 5710:3 5712:1 5735:2 5771:1 5774:1 5786:1 5810:1 5816:1 5819:2 5830:1 5836:1 5839:1 5848:1 5851:1 5856:2 5857:1 5901:1 5902:1 5904:1 5908:1 5911:1 5920:1 5921:1 5922:2 5943:1 5951:1 5954:1 5956:1 5962:2 5965:1 5967:1 5973:2 5987:2 5991:1 5993:1 6018:1 6021:3 6038:2 6044:1 6061:1 6063:1 6065:1 6068:1 6079:1 6086:1 6094:1 6095:1 6097:1 6101:1 6103:1 6114:1 6115:1 6118:1 6121:1 6136:1 6140:1 6141:1 6142:1 6179:1 6199:3 6217:1 6219:3 6221:1 6227:1 6231:1 6239:1 6243:1 6280:1 6305:2 6330:1 6334:1 6364:1 6368:2 6371:8 6380:1 6386:2 6410:2 6415:1 6420:1 6421:1 6444:1 6465:1 6471:1 6474:1 6480:1 6481:2 6490:2 6491:2 6492:1 6498:1 6499:1 6528:4 6529:1 6536:1 6539:2 6540:2 6564:1 6568:1 6588:1 6591:3 6596:1 6602:1 6618:5 6621:1 6635:1 6636:1 6639:1 6648:1 6654:1 6660:1 6673:1 6721:4 6724:2 6725:1 6726:1 6727:1 6728:1 6730:2 6731:2 6734:2 6735:3 6736:4 6743:2 6744:7 6745:1 6746:1 6747:2 6756:1 6773:1 6776:1 6797:3 6802:1 6836:1 6872:1 6875:1 6878:1 6886:1 6895:2 6901:1 6930:1 6932:1 6970:1 6977:1 6984:1 6994:2 7000:2 7002:1 7019:1 7026:1 7027:5 7032:3 7035:1 7039:1 7046:1 7047:1 7060:2 7080:1 7082:1 7083:3 7088:2 7114:1 7115:1 7118:1 7126:1 7148:1 7166:1 7175:1 7192:1 7200:1 7201:2 7204:1 7216:3 7220:1 7222:1 7231:3 7236:3 7242:1 7257:1 7267:2 7273:1 7308:1 7322:1 7325:1 7328:1 7333:1 7335:2 7342:1 7363:1 7384:1 7407:2 7412:1 7432:2 7433:1 7448:1 7455:1 7456:2 7495:1 7522:2 7542:1 7548:1 7556:1 7573:1 7574:1 7577:5 7585:2 7589:1 7601:1 7603:1 7610:1 7612:1 7625:1 7635:1 7653:1 7705:1 7717:1 7733:1 7769:1 7774:1 7779:1 7782:1 7788:4 7830:1 7840:3 7874:4 7915:2 7926:1 7932:2 7954:1 7963:2 7993:1 7997:2 7998:1 8004:1 8005:1 8023:1 8027:1 8031:4 8054:1 8064:4 8065:5 8066:2 8084:1 8089:2 8094:1 8097:1 8100:1 8105:1 8121:1 8122:2 8128:1 8130:1 8131:39 8133:1 8134:1 8140:2 8142:1 8151:11 8152:25 8161:1 8164:1 8170:1 8173:1 8207:1 8208:5 8238:1 8254:1 8273:1 8279:1 8302:2 8307:1 8316:1 8321:1 8362:3 8365:6 8372:1 8408:1 8413:1 8415:5 8430:1 8433:1 8450:1 8467:1 8478:1 8492:1 8521:1 8523:3 8540:7 8546:2 8550:1 8559:1 8570:2 8590:1 8597:1 8603:1 8610:1 8623:1 8624:1 8633:17 8651:1 8655:1 8664:2 8665:1 8687:2 8718:1 8724:1 8733:2 8742:1 8748:1 8753:2 8760:4 8779:1 8789:1 8793:3 8798:4 8803:2 8816:2 8820:3 8830:1 8840:2 8842:1 8845:2 8850:1 8857:1 8858:2 8863:2 8873:1 8884:2 8887:2 8895:1 8898:1 8899:1 8915:2 8932:1 8938:1 8942:3 8953:1 8959:1 8966:1 8973:1 8979:1 8980:2 8983:1 8984:3 8985:2 8986:2 8987:5 8990:1 8995:2 8998:2 9000:2 9004:3 9020:1 9027:1 9035:2 9039:3 9040:1 9041:1 9045:1 9046:1 9058:1 9061:1 9072:1 9075:2 9081:1 9086:1 9109:1 9112:5 9135:1 9139:3 9146:1 9149:1 9151:2 9158:1 9164:1 9169:1 9204:1 9205:1 9209:1 9215:2 9225:3 9227:1 9248:2 9268:4 9269:2 9273:4 9274:1 9276:1 9277:4 9280:3 9286:2 9301:2 9302:1 9304:4 9316:1 9318:1 9339:2 9345:1 9400:1 9420:2 9439:2 9442:2 9450:1 9453:1 9463:1 9471:1 9478:1 9480:1 9495:1 9504:1 9506:1 9523:1 9539:1 9561:3 9589:2 9592:1 9594:3 9608:1 9618:7 9640:2 9646:3 9651:1 9658:1 9662:1 9663:1 9677:1 9686:1 9695:3 9697:1 9715:1 9718:1 9721:1 9732:1 9776:1 9781:1 9809:1 9818:1 9825:1 9840:1 9870:1 9874:1 9877:3 9882:2 9888:1 9889:2 9890:1 9909:1 9928:1 9930:1 9937:2 9940:1 9942:1 9972:1 9973:1 9977:2 9983:1 9993:1 9994:1 10009:1 10037:19 10043:1 10060:1 10069:2 10078:4 10084:2 10085:1 10109:1 10117:1 10128:1 10130:2 10146:1 10152:1 10169:14 10184:2 10185:1 10190:2 10202:1 10211:1 10223:5 10229:1 10235:1 10238:3 10239:1 10240:1 10241:1 10259:1 10269:1 10275:1 10281:1 10286:1 10317:2 10321:3 10322:1 10336:1 10356:7 10362:2 10363:4 10364:2 10371:2 10379:1 10380:1 10387:2 10393:2 10395:1 10400:2 10406:1 10410:3 10413:1 10415:1 10416:1 10423:1 10438:1 10446:3 10450:3 10468:1 10470:2 10483:1 10493:2 10533:1 10547:1 10549:3 10552:1 10577:10 10580:1 10581:6 10596:1 10601:1 10602:1 10627:1 10651:4 10691:1 10698:2 10707:1 10718:1 10731:1 10735:2 10757:3 10763:1 10780:4 10784:1 10791:1 10794:1 10809:1 10828:1 10830:1 10850:1 10868:1 10880:2 10892:4 10898:1 10903:1 10907:1 10917:2 10923:1 10935:2 10939:1 10957:2 10962:5 10973:1 10998:1 11009:2 11026:2 11028:2 11031:2 11040:1 11047:6 11060:2 11061:4 11062:1 11063:3 11070:1 11081:1 11084:1 11087:1 11105:1 11106:3 11120:1 11126:1 11134:4 11145:1 11148:2 11156:1 11160:2 11166:7 11230:1 11231:1 11234:1 11237:1 11260:2 11261:2 11262:1 11268:1 11276:1 11297:1 11305:1 11315:1 11324:1 11359:1 11364:1 11366:1 11371:1 11388:2 11389:1 11400:7 11417:3 11418:7 11430:2 11441:1 11443:1 11453:1 11458:2 11469:1 11477:4 11482:1 11499:1 11512:2 11528:1 11529:2 11535:4 11556:3 11569:3 11597:1 11622:1 11628:1 11641:1 11668:1 11673:1 11676:1 11677:1 11678:1 11680:1 11683:1 11684:4 11685:1 11703:1 11710:1 11718:1 11721:2 11740:1 11745:1 11753:1 11754:1 11779:2 11808:1 11810:3 11816:1 11819:1 11824:1 11830:1 11831:1 11839:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11885:1 11887:3 11914:1 11918:1 11923:3 11926:5 11929:1 11931:1 11961:1 11985:1 11986:1 11991:1 11994:2 12009:1 12029:3 12045:1 12056:1 12063:1 12065:4 12066:2 12077:3 12081:1 12093:2 12095:3 12098:2 12107:1 12120:1 12130:3 12135:1 12146:3 12153:2 12155:7 12157:1 12170:1 12171:1 12176:1 12177:1 12181:1 12182:1 12189:1 12190:1 12193:6 12194:1 12200:1 12202:6 12210:1 12218:1 12222:1 12228:7 12253:2 12266:5 12270:1 12275:2 12280:1 12293:1 12314:1 12325:4 12333:1 12335:1 12337:2 12373:1 12375:1 12385:3 12406:1 12412:1 12415:2 12423:1 12440:1 12459:1 12470:2 12471:2 12506:2 12508:1 12539:1 12555:5 12594:2 12609:1 12616:1 12625:1 12628:1 12629:1 12632:1 12637:1 12654:3 12655:3 12656:19 12660:6 12671:1 12679:1 12681:2 12698:1 12705:1 12716:2 12745:1 12766:2 12788:1 12815:1 12824:9 12825:2 12841:1 12845:1 12846:3 12850:1 12871:1 12902:3 12906:1 12929:1 12936:1 12943:2 12947:1 12953:1 12961:1 12976:2 12992:1 13011:1 13015:2 13019:1 13035:3 13054:2 13057:1 13092:1 13095:3 13103:1 13107:1 13110:1 13114:1 13117:1 13129:1 13166:1 13167:1 13174:1 13183:1 13207:1 13227:6 13240:1 13241:1 13243:1 13248:1 13251:1 13276:2 13277:4 13304:1 13307:2 13342:1 13371:1 13376:2 13404:1 13424:1 13429:2 13440:1 13441:1 13443:2 13472:1 13486:2 13488:1 13494:1 13522:1 13580:1 13597:5 13609:1 13614:1 13623:1 13624:2 13630:1 13649:2 13652:1 13656:1 13661:1 13664:1 13673:1 13681:1 13684:1 13700:2 13709:1 13711:1 13712:1 13714:2 13720:1 13735:1 13739:2 13740:1 13768:1 13775:1 13776:1 13780:2 13816:2 13821:2 13823:1 13832:1 13833:2 13835:1 13838:6 13842:4 13843:1 13851:2 13853:1 13856:1 13858:3 13873:3 13875:1 13878:1 13883:3 13898:1 13915:7 13916:1 13923:1 13926:1 13930:1 13931:2 13943:1 13944:2 13958:2 13981:2 13993:2 13994:1 14011:4 14016:1 14027:1 14028:1 14037:1 14050:2 14063:3 14078:1 14085:2 14086:6 14112:2 14113:2 14114:2 14115:1 14129:1 14145:1 14152:1 14156:1 14157:2 14177:1 14189:2 14206:1 14221:2 14228:1 14234:1 14237:1 14238:2 14239:1 14241:1 14245:1 14264:1 14274:1 14275:1 14280:1 14291:1 14296:1 14298:1 14307:1 14310:1 14311:1 14315:2 14318:1 14320:1 14334:1 14335:1 14366:7 14375:2 14377:1 14382:1 14422:1 14426:1 14445:1 14446:1 14447:2 14450:2 14468:2 14471:2 14472:1 14477:4 14503:1 14522:1 14529:1 14533:1 14544:2 14546:3 14552:2 14553:6 14563:1 14584:2 14592:3 14610:1 14622:2 14642:2 14644:1 14649:1 14650:1 14654:1 14664:1 14665:2 14670:2 14699:1 14704:1 14769:1 14771:1 14777:1 14780:1 14785:2 14806:1 14833:1 14845:1 14862:1 14887:1 14901:1 14921:1 14922:1 14935:1 14952:1 14958:1 14971:1 14976:3 14986:2 14987:1 14997:1 15002:1 15008:4 15010:1 15011:1 15019:1 15020:1 15032:2 15033:1 15054:1 15060:1 15068:1 15072:1 15088:1 15096:2 15120:1 15127:1 15141:1 15157:1 15162:1 15166:1 15174:1 15181:1 15190:1 15196:4 15216:1 15233:1 15238:1 15247:2 15252:1 15276:1 15290:1 15319:4 15330:1 15346:1 15364:1 15402:1 15475:1 15476:1 15487:1 15493:1 15507:2 15538:3 15547:3 15548:1 15552:1 15554:1 15556:1 15573:1 15577:1 15597:2 15605:1 15625:1 15641:1 15643:2 15646:1 15655:3 15672:1 15683:1 15693:1 15695:2 15697:1 15702:2 15725:1 15734:2 15771:1 15772:1 15775:1 15781:1 15788:1 15805:1 15813:1 15814:1 15868:2 15875:3 15876:4 15881:1 15907:4 15908:1 15911:1 15933:1 15951:4 15955:1 15961:1 15962:1 15968:1 15984:1 15999:1 16001:1 16008:1 16018:1 16021:3 16028:2 16032:2 16038:2 16054:1 16066:1 16073:2 16096:1 16111:1 16121:1 16140:1 16148:3 16153:1 16167:8 16172:8 16174:1 16181:1 16207:2 16218:1 16221:2 16222:2 16235:3 16255:1 16263:1 16270:1 16277:1 16279:1 16303:3 16307:1 16309:1 16317:6 16325:3 16334:1 16336:1 16337:2 16345:2 16347:1 16352:1 16353:4 16356:2 16357:6 16358:1 16363:2 16367:1 16368:1 16369:1 16378:1 16379:6 16386:4 16387:2 16427:1 16467:1 16480:1 16484:2 16494:1 16495:2 16498:1 16501:2 16507:5 16519:1 16530:2 16532:1 16543:2 16561:2 16564:2 16578:1 16593:2 16610:1 16617:1 16623:1 16630:1 16638:3 16646:8 16659:2 16660:2 16661:1 16673:1 16674:2 16677:1 16678:2 16692:1 16697:1 16706:19 16734:1 16739:5 16740:1 16743:1 16761:2 16775:55 16794:3 16799:1 16831:1 16861:1 16864:1 16866:1 16867:2 16884:1 16904:1 16908:1 16913:2 16915:1 16916:2 16919:2 16920:4 16921:1 16927:2 16931:1 16944:1 16957:1 16961:1 16965:1 16971:1 16980:1 16981:1 17010:1 17013:1 17047:1 17055:5 17075:1 17090:2 17095:1 17116:1 17130:1 17135:1 17139:1 17153:1 17192:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:2 17253:1 17294:2 17295:1 17317:1 17322:1 17326:1 17336:2 17342:4 17343:1 17347:1 17369:1 17372:3 17392:3 17398:1 17405:1 17414:1 17415:1 17422:1 17424:2 17426:1 17427:1 17435:1 17438:1 17445:1 17454:1 17459:1 17460:13 17470:1 17474:1 17500:2 17514:2 17520:1 17521:1 17553:1 17559:1 17561:1 17564:1 17582:1 17583:2 17585:3 17587:1 17589:2 17593:1 17596:2 17608:1 17613:1 17625:1 17635:1 17641:1 17645:2 17646:2 17675:2 17678:2 17689:1 17711:1 17717:1 17718:3 17727:1 17742:1 17788:1 17797:2 17800:1 17816:1 17819:1 17821:2 17822:1 17831:1 17835:1 17843:2 17844:1 17849:3 17859:2 17871:1 17875:1 17877:3 17881:1 17889:1 17896:1 17897:1 17906:3 17912:1 17932:1 17933:1 17952:1 17957:1 17972:2 17997:1 17998:2 18006:1 18011:1 18034:4 18083:1 18087:1 18093:1 18099:1 18110:1 18112:1 18115:1 18129:5 18131:1 18134:1 18136:1 18144:1 18147:2 18153:1 18154:1 18169:1 18171:2 18174:2 18182:1 18187:1 18188:1 18197:2 18206:1 18214:1 18221:1 18223:1 18226:1 18241:1 18248:2 18249:2 18277:1 18280:1 18282:1 18285:1 18310:1 18330:3 18338:2 18342:1 18355:1 18366:2 18410:3 18412:1 18415:1 18417:2 18421:2 18423:1 18441:1 18442:9 18446:2 18460:1 18474:1 18478:2 18506:1 18517:1 18524:1 18543:1 18544:2 18546:3 18559:2 18562:2 18565:1 18576:1 18583:1 18584:1 18589:1 18602:1 18625:1 18629:4 18633:4 18634:2 18636:1 18646:1 18676:1 18678:1 18707:1 18709:1 18748:3 18749:1 18757:1 18781:1 18786:1 18797:1 18807:1 18815:1 18816:1 18819:3 18831:2 18838:1 18855:1 18866:1 18872:1 18873:3 18879:1 18922:2 18928:1 18932:2 18954:1 18956:4 18966:1 18977:4 18980:1 18984:1 18987:3 19006:1 19007:1 19016:1 19018:2 19022:1 19079:1 19098:2 19113:1 19114:10 19118:1 19125:1 19132:1 19145:1 19160:1 19170:1 19182:1 19191:2 19193:1 19194:1 19210:1 19217:1 19225:1 19229:1 19241:1 19244:5 19250:2 19251:1 19265:3 19269:2 19272:1 19276:2 19277:1 19315:1 19323:3302 19328:1 19342:4 19343:1 19348:2 19376:1 19385:1 19395:1 19405:1 19410:1 19413:3 19414:1 19421:1 19452:3 19473:2 19482:2 19505:1 19507:4 19509:2 19530:3 19536:1 19539:3 19541:1 19543:1 19571:1 19584:1 19586:1 19596:1 19609:1 19632:1 19636:4 19638:1 19654:1 19658:1 19664:1 19670:1 19696:2 19702:1 19708:1 19721:1 19733:1 19743:1 19751:1 19756:1 19758:1 19804:1 19815:1 19817:2 19820:1 19831:4 19845:1 19856:1 19857:1 19869:1 19882:1 19918:1 19919:2 19933:3 19984:1 20004:1 20024:1 20030:1 20032:2 20043:1 20048:2 20050:1 20057:2 20074:4 20086:2 20090:1 20091:3 20095:1 20107:1 20121:14 20141:1 20142:1 20144:3 20146:1 20147:17 20159:2 20177:1 20178:5 20180:1 20181:1 20197:2 20212:1 20216:4 20236:1 20243:2 20248:1 20250:6 20252:2 20255:1 20260:1 20262:1 20277:2 20278:1 20279:1 20283:1 20287:1 20313:1 20319:3 20326:1 20339:1 20349:3 20363:1 20387:1 20389:1 20392:1 20447:1 20451:1 20458:1 20477:1 20486:1 20492:1 20493:1 20502:1 20523:1 20524:13 20527:1 20565:1 20573:1 20596:1 20605:1 20613:1 20619:1 20623:6 20644:1 20648:1 20656:1 20669:2 20682:1 20688:1 20691:1 20714:1 20719:1 20720:1 20722:1 20724:1 20725:1 20731:1 20749:1 20779:4 20782:1 20787:1 20789:1 20796:1 20811:3 20814:1 20821:1 20839:2 20849:1 20853:1 20871:1 20877:4 20894:2 20897:1 20903:2 20907:1 20908:2 20918:2 20923:7 20942:1 20972:1 20976:1 20987:1 20996:14 21002:1 21014:2 21017:2 21030:1 21033:1 21049:1 21050:13 21066:1 21088:1 21099:1 21103:1 21105:1 21131:1 21144:1 21175:1 21182:1 21196:2 21213:1 21214:4 21216:2 21225:1 21231:1 21258:2 21301:5 21312:1 21313:1 21316:3 21328:1 21331:1 21339:1 21343:1 21344:1 21355:1 21389:1 21392:1 21413:1 21451:2 21466:1 21468:1 21474:1 21487:1 21495:1 21500:2 21511:1 21528:1 21529:1 21532:2 21554:1 21560:1 21575:1 21596:3 21625:2 21630:1 21631:1 21634:1 21638:1 21643:13 21655:1 21660:3 21663:4 21664:1 21674:2 21678:1 21684:5 21690:1 21708:4 21711:1 21716:2 21722:1 21723:1 21741:1 21755:2 21756:1 21757:1 21769:2 21773:1 21789:2 21797:1 21798:1 21822:7 21829:1 21830:2 21835:1 21852:1 21874:1 21891:1 21896:1 21911:1 21915:1 21916:1 21932:2 21936:1 21939:1 21943:1 21949:1 21962:3 21977:1 21980:1 21986:1 21987:1 21992:1 22003:1 22005:1 22041:1 22048:1 22050:1 22106:1 22147:1 22151:1 22154:4 22157:2 22159:3 22170:4 22179:1 22181:1 22183:1 22223:1 22228:1 22232:1 22233:1 22236:2 22241:2 22251:1 22258:1 22268:1 22281:1 22285:1 22286:1 22298:1 22300:6 22305:3 22309:1 22319:1 22325:1 22332:1 22349:1 22354:1 22382:1 22383:1 22384:2 22389:1 22396:1 22405:1 22406:1 22409:1 22422:1 22425:4 22427:13 22430:1 22447:1 22456:2 22457:1 22461:1 22466:1 22469:1 22479:1 22481:1 22501:5 22515:1 22534:2 22538:3 22540:1 22542:1 22549:4 22563:1 22579:1 22603:1 22604:1 22607:4 22614:2 22618:3 22621:1 22671:1 22693:4 22702:1 22703:1 22705:8 22709:2 22712:2 22720:2 22721:1 22723:1 22734:2 22735:1 22736:1 22740:1 22746:2 22748:2 22750:1 22756:1 22757:1 22758:1 22764:1 22769:2 22772:2 22777:1 22795:2 22822:1 22833:5 22834:1 22856:1 22860:1 22866:1 22868:1 22874:2 22877:1 22895:1 22901:1 22909:4 22917:1 22926:1 22929:1 22937:1 22985:19 22987:2 22990:1 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:2 23093:1 23096:2 23102:1 23106:1 23112:2 23125:2 23133:1 23136:8 23153:2 23160:4 23166:1 23199:1 23202:1 23209:1 23212:1 23215:2 23221:1 23225:1 23236:1 23239:1 23244:1 23246:2 23256:1 23269:2 23271:1 23284:9 23302:3 23317:3 23325:1 23336:1 23360:1 23376:2 23390:1 23391:1 23413:1 23445:1 23454:3 23459:1 23462:1 23473:1 23481:1 23496:4 23517:1 23534:1 23535:1 23549:1 23554:1 23570:1 23574:2 23575:2 23579:15 23581:1 23583:2 23600:1 23611:2 23624:1 23629:1 23632:1 23639:1 23648:2 23652:1 23655:1 23662:3 23665:1 23666:2 23673:1 23687:1 23695:1 23699:3 23710:1 23716:1 23717:5 23721:1 23750:1 23752:1 23765:2 23767:1 23788:2 23801:1 23805:1 23807:1 23813:1 23819:2 23838:1 23851:1 23859:1 23864:1 23875:1 23878:2 23879:1 23891:2 23903:1 23913:1 23948:1 23955:1 23968:1 23969:1 23971:5 23978:1 23987:1 24002:1 24003:1 24012:1 24015:1 24023:1 24034:1 24049:1 24087:1 24090:2 24103:1 24108:2 24113:1 24119:2 24124:4 24128:1 24141:1 24151:1 24168:1 24177:1 24183:1 24187:3 24188:4 24195:1 24196:1 24207:6 24216:1 24219:1 24231:1 24232:1 24235:1 24237:3 24241:2 24247:1 24252:1 24273:2 24280:1 24281:2 24283:1 24293:1 24296:1 24329:4 24336:1 24340:22 24344:1 24391:1 24408:1 24419:1 24432:2 24440:1 24441:1 24444:1 24449:1 24464:1 24478:1 24504:3 24506:1 24508:1 24509:2 24533:1 24534:1 24538:1 24548:1 24568:1 24571:1 24591:1 24602:1 24625:1 24653:1 24656:2 24668:2 24702:4 24714:1 24717:1 24745:1 24755:1 24756:1 24761:1 24775:1 24777:1 24797:2 24814:3 24827:2 24833:1 24838:1 24841:1 24844:2 24845:1 24859:1 24873:1 24881:1 24907:1 24921:1 24931:1 24932:1 24939:1 24944:1 24970:1 24976:1 24999:1 25004:1 25005:5 25014:1 25021:1 25023:1 25027:1 25049:1 25073:2 25090:1 25122:1 25147:3 25158:1 25181:1 25190:1 25194:5 25252:2 25259:1 25264:1 25273:1 25275:1 25285:2 25287:5 25288:1 25311:1 25319:1 25325:1 25327:2 25331:1 25335:1 25339:3 25347:2 25384:1 25385:2 25398:2 25415:1 25419:2 25431:2 25447:1 25468:1 25471:1 25472:1 25487:1 25495:4 25503:3 25507:1 25510:1 25514:1 25526:1 25527:1 25549:1 25551:1 25560:1 25561:2 25570:1 25576:1 25577:1 25587:1 25597:1 25598:2 25614:1 25623:1 25627:2 25631:1 25634:1 25643:1 25652:1 25664:1 25673:1 25676:1 25684:1 25688:1 25716:1 25718:1 25722:1 25733:1 25740:2 25778:3 25797:5 25823:1 25832:1 25836:1 25852:1 25860:1 25871:1 25872:1 25878:2 25880:1 25884:1 25893:5 25894:1 25900:1 25918:2 25921:1 25922:1 25952:1 25966:1 25980:4 25998:1 26004:1 26007:1 26011:1 26021:1 26048:1 26058:3 26073:1 26076:1 26097:7 26119:1 26123:1 26124:1 26150:2 26156:5 26159:1 26167:1 26172:4 26175:1 26176:1 26207:1 26226:1 26232:1 26257:1 26304:1 26315:1 26316:1 26318:2 26319:1 26320:1 26322:8 26324:3 26331:1 26356:1 26371:1 26372:3 26376:1 26377:2 26403:1 26413:1 26415:6 26416:1 26424:1 26429:4 26435:5 26436:1 26445:2 26458:1 26460:1 26463:1 26472:1 26489:2 26513:6 26518:1 26524:1 26525:1 26534:1 26538:2 26548:1 26564:2 26579:1 26589:3 26608:1 26627:5 26628:1 26652:2 26653:2 26659:1 26681:2 26689:1 26712:1 26717:1 26728:3 26754:1 26761:1 26782:4 26808:1 26813:1 26835:1 26839:1 26842:2 26844:1 26848:1 26862:1 26865:1 26868:2 26871:2 26891:1 26893:1 26898:1 26901:1 26912:1 26915:1 26920:1 26934:2 26935:1 26938:1 26949:2 26955:1 26956:1 26964:1 26977:6 26981:1 26982:1 26985:1 26989:2 27000:1 27001:1 27003:1 27008:2 27010:2 27029:1 27056:1 27065:1 27078:1 27099:1 27102:1 27107:1 27113:1 27115:3 27138:10 27144:1 27178:1 27185:1 27188:1 27192:2 27212:1 27223:1 27244:1 27252:1 27257:1 27266:1 27280:3 27288:1 27292:1 27295:1 27308:1 27314:2 27332:1 27394:2 27407:3 27422:5 27424:2 27426:1 27431:1 27438:2 27439:1 27440:4 27441:7 27444:1 27450:1 27470:1 27490:2 27521:1 27531:1 27534:1 27540:3 27548:1 27552:1 27580:3 27600:1 27601:1 27607:1 27611:1 27621:2 27626:1 27636:1 27668:1 27673:1 27676:1 27709:1 27718:1 27735:1 27755:1 27775:1 27799:1 27809:1 27824:1 27834:1 27852:1 27854:2 27863:1 27875:1 27883:2 27893:2 27910:2 27925:1 27939:1 27949:1 27950:1 28004:2 28005:2 28017:2 28059:1 28087:1 28095:2 28099:4 28110:1 28113:1 28118:1 28121:9 28137:1 28154:2 28155:1 28211:1 28223:22 28224:1 28227:3 28230:1 28238:1 28246:1 28258:3 28285:1 28288:1 28331:1 28338:2 28340:3 28342:3 28343:2 28349:1 28356:1 28385:2 28388:1 28391:1 28395:1 28398:1 28405:2 28410:2 28413:2 28421:1 28429:1 28430:1 28431:1 28432:1 28437:2 28443:1 28448:3 28450:1 28472:2 28482:1 28496:1 28499:2 28514:1 28524:2 28525:1 28526:1 28544:1 28548:1 28551:1 28574:1 28581:1 28593:1 28600:1 28644:1 28645:1 28659:1 28669:2 28674:1 28675:1 28680:1 28684:1 28696:3 28697:1 28754:7 28762:1 28771:1 28786:1 28795:2 28798:1 28839:3 28848:3 28866:1 28870:1 28874:2 28878:1 28912:1 28928:1 28931:3 28939:1 28962:2 28974:1 29000:5 29004:4 29028:1 29030:1 29039:1 29041:1 29051:1 29069:1 29073:1 29111:1 29112:1 29130:4 29135:1 29143:1 29155:1 29167:3 29168:1 29179:1 29182:2 29183:27 29184:2 29186:2 29189:4 29192:1 29193:1 29203:1 29220:1 29221:13 29224:1 29234:1 29239:1 29240:1 29248:1 29276:1 29277:1 29281:2 29289:2 29290:1 29300:1 29301:2 29302:2 29310:1 29325:1 29334:4 29342:4 29346:1 29348:2 29377:3 29381:1 29382:2 29388:1 29394:1 29409:1 29429:1 29430:1 29454:1 29486:1 29495:2 29502:1 29536:1 29537:1 29542:1 29564:1 29573:1 29574:1 29575:1 29581:1 29583:1 29587:2 29589:1 29591:4 29595:2 29600:1 29620:2 29624:1 29636:1 29655:8 29659:1 29663:1 29666:3 29669:1 29718:1 29720:1 29741:3 29745:8 29747:1 29749:1 29753:1 29754:1 29771:1 29776:2 29777:2 29790:1 29795:1 29809:1 29812:2 29814:1 29821:1 29841:3 29848:2 29860:1 29891:3 29896:1 29898:1 29901:1 29904:1 29905:2 29928:2 29932:3 29935:1 29936:4 29942:1 29950:5 29957:1 29969:2 30003:1 30011:1 30056:1 30080:1 30104:3 30107:1 30121:1 30129:4 30160:2 30164:1 30170:1 30177:1 30201:1 30210:2 30216:1 30222:3 30232:1 30241:1 30252:1 30269:1 30285:3 30290:1 30292:1 30313:1 30325:2 30341:1 30345:1 30346:6 30348:1 30354:1 30364:2 30401:1 30402:2 30407:1 30429:1 30435:5 30441:2 30446:1 30475:1 30507:1 30517:1 30518:1 30524:1 30525:1 30527:5 30533:1 30539:1 30571:1 30576:2 30586:1 30588:1 30592:1 30593:1 30595:1 30599:1 30609:2 30650:1 30660:1 16 5:1 24:1 26:2 27:1 38:1 62:1 69:1 75:4 91:1 94:1 121:1 136:1 151:1 156:1 160:2 163:1 190:1 197:1 202:1 206:1 220:1 224:4 229:1 230:1 251:1 266:1 285:1 294:4 297:1 315:1 324:1 334:2 335:3 336:1 360:1 368:1 369:1 375:1 392:1 407:1 430:3 436:2 440:2 453:1 463:1 471:1 477:2 489:1 493:1 495:1 502:1 503:1 505:1 510:1 511:2 546:1 547:1 564:5 622:1 625:3 637:3 647:1 660:2 666:1 673:4 679:1 688:1 694:1 705:1 706:1 710:1 722:1 730:1 737:1 748:1 768:2 778:2 795:1 798:1 815:1 836:1 845:2 853:1 855:1 857:1 870:2 878:1 882:2 895:1 898:2 931:2 935:1 939:2 942:1 943:1 949:1 951:2 965:2 966:2 971:3 973:1 974:3 975:6 976:2 981:2 1002:1 1003:1 1026:1 1028:1 1029:6 1032:2 1038:1 1058:1 1065:2 1069:1 1107:2 1108:1 1131:1 1134:1 1137:1 1155:2 1161:1 1170:2 1171:1 1216:1 1217:3 1220:1 1221:1 1224:1 1233:1 1236:1 1242:2 1253:1 1254:4 1267:2 1273:1 1280:1 1290:1 1291:3 1319:1 1324:1 1325:2 1331:2 1333:4 1336:1 1346:2 1347:4 1348:2 1349:1 1361:1 1365:1 1377:1 1379:1 1389:1 1393:1 1395:3 1409:2 1421:1 1422:1 1446:2 1476:1 1499:1 1500:3 1503:1 1511:1 1514:1 1516:1 1519:2 1528:1 1538:1 1556:1 1566:6 1574:1 1579:1 1585:6 1590:1 1594:2 1601:1 1602:2 1603:1 1608:3 1609:1 1614:1 1618:1 1625:1 1628:4 1642:1 1651:1 1653:1 1657:5 1671:1 1677:2 1681:2 1685:1 1690:2 1696:1 1725:2 1730:1 1734:4 1739:4 1742:2 1743:1 1756:1 1757:1 1759:1 1776:5 1780:3 1788:1 1789:1 1800:1 1802:1 1807:1 1812:1 1826:1 1840:1 1841:1 1855:2 1857:1 1860:1 1863:1 1873:3 1886:2 1900:1 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1939:1 1947:1 1951:1 1954:1 1955:1 1964:1 1970:1 1977:1 1982:1 1986:1 1989:1 1997:1 1999:1 2003:1 2005:1 2016:1 2021:1 2023:1 2026:1 2032:1 2035:1 2038:2 2039:4 2042:1 2046:1 2048:1 2052:1 2069:1 2070:3 2072:1 2090:1 2096:1 2101:1 2124:1 2125:1 2131:1 2132:1 2149:1 2153:1 2161:2 2162:2 2164:1 2167:2 2169:1 2170:3 2204:1 2227:1 2231:1 2232:1 2234:3 2235:1 2237:2 2238:1 2239:1 2269:4 2296:2 2307:1 2337:1 2339:1 2346:1 2351:1 2353:3 2363:1 2404:2 2405:1 2406:1 2407:2 2408:4 2413:1 2415:5 2416:1 2417:1 2420:5 2421:1 2422:4 2424:1 2427:1 2431:1 2434:6 2436:3 2437:7 2448:1 2450:2 2455:1 2469:1 2473:1 2486:1 2488:1 2495:1 2508:1 2514:1 2518:2 2519:2 2520:1 2525:1 2532:1 2533:2 2543:1 2550:1 2556:2 2560:1 2575:1 2597:1 2599:1 2602:1 2623:5 2633:1 2641:1 2645:1 2657:2 2659:1 2681:1 2689:1 2693:1 2694:1 2705:1 2742:1 2747:1 2766:1 2797:2 2803:1 2812:4 2819:1 2825:4 2834:1 2841:2 2842:1 2849:1 2852:3 2854:10 2856:2 2872:1 2874:1 2886:1 2888:2 2894:1 2896:1 2900:1 2902:1 2909:3 2912:1 2936:2 2943:2 2952:2 2962:1 2963:1 2965:5 2976:2 3019:4 3024:1 3030:1 3031:1 3039:1 3056:11 3067:7 3090:2 3099:1 3105:1 3118:30 3127:1 3128:2 3151:1 3152:1 3170:1 3189:1 3196:2 3222:1 3224:2 3227:1 3232:2 3296:3 3299:1 3311:1 3318:1 3342:1 3358:1 3378:1 3379:1 3390:1 3391:1 3397:1 3403:2 3406:4 3417:1 3428:12 3442:1 3454:1 3461:1 3469:1 3485:1 3498:7 3543:1 3565:1 3567:1 3574:1 3588:1 3590:2 3601:2 3609:1 3613:1 3628:1 3634:1 3643:3 3649:1 3654:1 3661:1 3667:4 3707:1 3711:3 3713:1 3730:1 3731:1 3746:3 3764:1 3778:1 3793:1 3796:1 3801:1 3803:3 3804:2 3810:2 3812:1 3813:1 3819:2 3829:1 3839:1 3846:1 3867:1 3886:1 3898:1 3902:2 3903:4 3906:1 3913:1 3918:1 3929:1 3950:1 3958:2 3959:41 3966:1 3981:1 3993:2 3994:1 3995:9 4000:1 4009:1 4010:23 4011:2 4012:1 4015:4 4027:2 4042:3 4057:2 4058:3 4061:2 4063:2 4076:2 4078:1 4079:1 4095:1 4116:2 4122:1 4123:3 4126:1 4130:1 4134:1 4171:1 4173:1 4176:2 4178:1 4182:1 4183:3 4196:2 4207:2 4209:1 4216:1 4219:1 4223:1 4235:2 4242:1 4256:1 4258:1 4265:1 4266:1 4267:1 4269:1 4270:1 4285:1 4290:2 4294:1 4297:1 4301:4 4318:4 4324:1 4330:1 4360:1 4368:1 4369:1 4373:1 4381:1 4416:1 4423:1 4436:1 4439:3 4447:1 4463:2 4474:1 4483:1 4486:1 4498:2 4504:1 4505:2 4508:1 4509:1 4539:1 4547:2 4555:1 4557:1 4563:1 4599:1 4611:1 4623:1 4636:11 4650:1 4665:1 4697:2 4701:1 4706:5 4715:1 4718:2 4749:7 4767:1 4773:1 4781:1 4787:1 4796:1 4840:1 4854:1 4855:2 4880:1 4896:1 4900:1 4906:2 4909:1 4921:2 4927:1 4930:2 4938:1 4948:4 4959:1 4966:3 4989:3 4993:2 4994:1 5014:1 5044:1 5058:1 5059:1 5062:1 5064:1 5076:1 5090:1 5092:2 5100:2 5153:1 5159:1 5186:1 5189:1 5191:1 5201:15 5202:2 5211:1 5219:1 5231:2 5241:1 5260:2 5275:1 5288:1 5308:3 5314:1 5320:3 5321:1 5323:4 5340:1 5344:2 5345:3 5347:7 5348:1 5350:1 5351:1 5353:1 5354:2 5356:1 5361:1 5362:20 5363:1 5365:1 5370:2 5371:3 5376:2 5397:1 5401:3 5453:2 5467:1 5478:1 5483:1 5486:1 5488:1 5491:1 5560:1 5593:3 5594:3 5603:5 5648:1 5652:1 5670:1 5675:2 5677:20 5684:1 5703:1 5710:3 5712:1 5735:3 5771:1 5774:1 5786:1 5810:1 5816:1 5819:2 5830:1 5836:1 5839:1 5848:1 5851:1 5856:2 5857:1 5863:1 5901:1 5902:1 5904:1 5908:1 5911:1 5920:1 5921:1 5922:2 5943:2 5951:1 5954:1 5956:1 5962:2 5965:1 5967:1 5973:2 5978:1 5987:2 5991:1 5993:1 6018:1 6021:5 6038:2 6044:1 6061:1 6063:1 6065:1 6068:1 6079:1 6086:1 6094:1 6095:1 6097:1 6101:1 6103:1 6114:1 6115:1 6118:1 6121:1 6136:1 6140:1 6141:1 6142:1 6179:1 6199:3 6217:1 6219:5 6221:1 6227:1 6231:1 6239:1 6243:1 6280:1 6305:2 6330:1 6334:1 6364:1 6368:2 6371:8 6380:1 6386:2 6410:2 6415:1 6420:1 6421:1 6444:1 6465:1 6471:1 6474:1 6480:1 6481:2 6490:2 6491:2 6492:1 6498:1 6499:1 6528:4 6529:1 6536:1 6539:2 6540:2 6564:1 6568:1 6588:1 6591:3 6596:1 6602:1 6618:5 6621:1 6635:1 6636:1 6639:1 6648:1 6654:1 6660:1 6673:1 6721:5 6724:2 6725:1 6726:1 6727:1 6728:1 6730:2 6731:2 6734:2 6735:3 6736:5 6743:2 6744:7 6745:1 6746:1 6747:2 6756:1 6773:1 6776:1 6797:3 6802:1 6836:1 6872:1 6875:1 6878:1 6886:1 6895:2 6901:1 6930:1 6932:1 6970:1 6977:1 6984:1 6994:3 7000:2 7002:1 7019:1 7026:1 7027:5 7032:3 7035:1 7039:1 7046:1 7047:1 7060:2 7080:1 7082:1 7083:3 7088:2 7114:1 7115:1 7118:1 7126:1 7148:1 7166:1 7171:1 7175:1 7192:3 7200:1 7201:2 7204:1 7216:3 7220:1 7222:2 7231:3 7236:3 7242:1 7257:1 7267:3 7273:1 7308:1 7322:1 7325:1 7328:1 7333:1 7335:2 7342:1 7363:1 7384:1 7407:2 7412:1 7432:2 7433:1 7448:1 7455:1 7456:2 7495:1 7522:2 7542:1 7548:1 7556:1 7573:1 7574:1 7577:5 7580:1 7585:3 7589:1 7601:1 7603:1 7610:1 7612:1 7625:1 7635:1 7653:1 7705:1 7717:1 7728:1 7733:1 7769:1 7774:1 7779:1 7782:1 7788:5 7830:1 7840:3 7874:4 7915:2 7926:1 7932:2 7954:1 7963:2 7993:1 7997:2 7998:1 8004:1 8005:1 8023:1 8027:1 8031:4 8054:1 8064:4 8065:5 8066:2 8084:1 8089:2 8094:2 8097:1 8100:1 8105:1 8121:1 8122:2 8128:1 8130:1 8131:42 8133:1 8134:1 8140:2 8142:1 8151:11 8152:26 8161:1 8164:1 8170:1 8173:1 8207:1 8208:5 8238:1 8254:1 8273:1 8279:2 8302:2 8307:1 8316:1 8321:1 8362:3 8365:6 8372:1 8408:1 8413:1 8415:5 8430:1 8433:1 8450:1 8467:1 8478:1 8492:1 8521:1 8523:3 8540:7 8546:2 8550:1 8559:1 8570:2 8585:1 8590:1 8597:2 8603:1 8610:1 8623:1 8624:1 8633:17 8651:1 8655:1 8664:2 8665:1 8687:2 8718:1 8724:1 8733:2 8742:1 8748:1 8753:2 8760:4 8764:1 8779:1 8789:1 8793:3 8798:4 8803:2 8816:2 8820:3 8830:1 8840:2 8842:1 8845:2 8850:1 8857:1 8858:2 8863:2 8873:1 8884:2 8887:2 8895:1 8898:1 8899:1 8915:2 8932:1 8938:1 8942:3 8953:1 8959:1 8966:1 8973:1 8979:1 8980:2 8983:1 8984:3 8985:2 8986:2 8987:5 8990:1 8995:2 8998:2 9000:2 9004:3 9020:1 9027:2 9035:2 9039:3 9040:1 9041:1 9045:1 9046:1 9058:1 9061:1 9072:1 9075:2 9081:1 9086:1 9109:1 9112:5 9135:1 9139:4 9146:1 9149:1 9151:2 9158:1 9164:1 9169:1 9204:1 9205:1 9209:1 9215:3 9225:3 9227:1 9248:2 9268:4 9269:2 9273:4 9274:1 9276:1 9277:4 9280:3 9286:2 9301:3 9302:1 9304:4 9316:1 9318:1 9339:2 9345:1 9400:1 9420:2 9439:2 9442:2 9450:1 9453:1 9463:1 9471:1 9478:1 9480:1 9495:1 9504:1 9506:1 9523:1 9539:1 9561:3 9589:2 9592:1 9594:3 9605:1 9608:1 9618:7 9640:2 9646:3 9651:1 9658:1 9662:1 9663:1 9677:1 9686:1 9695:3 9697:1 9715:1 9718:1 9719:1 9721:1 9732:1 9776:1 9781:1 9809:1 9818:1 9825:1 9840:1 9870:1 9874:1 9877:3 9882:2 9888:1 9889:2 9890:1 9909:1 9928:2 9930:1 9937:2 9940:1 9942:1 9972:1 9973:1 9977:3 9983:1 9993:1 9994:1 10009:1 10037:20 10043:1 10060:1 10069:2 10078:4 10084:2 10085:1 10109:1 10114:1 10117:1 10120:1 10128:1 10130:2 10146:2 10152:1 10169:14 10184:2 10185:1 10190:2 10202:1 10211:1 10223:5 10229:1 10235:1 10238:3 10239:1 10240:1 10241:1 10259:1 10269:1 10275:1 10281:1 10286:1 10317:2 10321:3 10322:1 10336:1 10356:8 10362:2 10363:4 10364:2 10371:2 10379:1 10380:1 10387:2 10393:2 10395:1 10400:2 10406:2 10410:4 10413:4 10415:1 10416:1 10423:1 10438:1 10446:3 10450:3 10468:1 10470:2 10483:1 10493:2 10533:1 10547:1 10549:3 10552:1 10577:11 10580:1 10581:6 10596:1 10601:1 10602:1 10627:1 10651:4 10691:1 10698:2 10707:1 10718:1 10731:1 10735:2 10757:4 10763:1 10780:4 10784:1 10789:1 10791:1 10794:1 10809:1 10828:1 10830:1 10850:1 10868:1 10880:2 10892:5 10898:1 10903:1 10907:1 10917:2 10923:1 10935:2 10939:1 10957:2 10962:6 10973:1 10998:1 11009:2 11026:2 11028:2 11031:2 11040:1 11047:6 11060:2 11061:4 11062:1 11063:3 11070:1 11081:1 11084:1 11087:1 11105:1 11106:3 11120:1 11126:1 11134:4 11145:1 11148:2 11156:1 11160:2 11166:7 11230:1 11231:1 11234:1 11237:1 11260:2 11261:2 11262:1 11268:1 11276:1 11297:1 11305:1 11315:1 11324:1 11359:1 11364:1 11366:1 11371:1 11388:2 11389:1 11400:7 11417:3 11418:7 11430:2 11441:1 11443:1 11453:1 11458:2 11469:1 11477:4 11482:1 11499:1 11512:2 11528:1 11529:2 11535:5 11546:1 11556:3 11569:3 11582:1 11595:1 11597:1 11598:1 11622:1 11626:1 11628:1 11641:1 11653:1 11668:1 11673:1 11676:1 11677:1 11678:1 11680:1 11683:1 11684:4 11685:1 11703:1 11710:1 11718:1 11721:2 11740:1 11745:1 11753:1 11754:1 11779:2 11808:1 11810:3 11816:1 11819:1 11820:2 11824:1 11830:1 11831:1 11839:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11885:1 11887:3 11914:1 11918:1 11923:3 11926:6 11929:1 11931:1 11961:1 11985:1 11986:1 11991:1 11994:2 12009:1 12029:3 12045:1 12056:1 12063:1 12065:5 12066:2 12077:3 12081:1 12093:2 12095:3 12098:2 12107:1 12120:1 12130:3 12135:1 12146:3 12153:2 12155:9 12157:1 12170:1 12171:1 12176:1 12177:1 12181:1 12182:1 12189:1 12190:2 12193:6 12194:1 12200:1 12202:6 12210:1 12218:1 12222:1 12228:9 12253:2 12266:5 12270:1 12275:2 12280:1 12293:1 12314:1 12325:4 12333:1 12335:1 12337:2 12373:1 12375:1 12385:3 12406:1 12412:1 12415:2 12423:1 12440:1 12459:1 12470:2 12471:2 12506:2 12508:1 12539:1 12555:5 12594:2 12609:1 12616:1 12625:1 12628:1 12629:1 12632:1 12637:1 12654:4 12655:4 12656:20 12660:6 12671:1 12679:1 12681:2 12698:2 12705:1 12716:2 12745:1 12766:2 12788:1 12815:1 12824:9 12825:2 12841:1 12845:1 12846:3 12850:2 12871:1 12902:3 12906:1 12929:1 12936:1 12943:2 12947:1 12953:1 12961:1 12976:2 12992:1 13011:1 13015:2 13019:1 13035:3 13054:2 13057:1 13092:1 13095:3 13103:1 13107:1 13110:1 13114:1 13117:1 13129:1 13146:1 13166:1 13167:1 13174:1 13183:1 13207:1 13227:6 13240:1 13241:1 13243:1 13248:1 13251:1 13276:2 13277:4 13304:1 13307:2 13342:1 13371:1 13376:2 13404:1 13424:1 13429:2 13433:1 13440:1 13441:1 13443:2 13472:1 13486:2 13488:1 13494:1 13522:1 13524:1 13580:1 13597:5 13609:1 13614:1 13623:1 13624:3 13630:1 13649:2 13652:1 13656:1 13661:1 13664:1 13673:1 13681:1 13684:2 13700:2 13709:1 13711:1 13712:1 13714:2 13720:1 13735:1 13739:2 13740:1 13768:1 13775:1 13776:1 13780:2 13816:2 13821:3 13823:1 13832:1 13833:2 13835:1 13838:7 13842:4 13843:1 13851:2 13853:1 13856:1 13858:3 13873:3 13875:1 13878:2 13883:3 13898:1 13915:7 13916:1 13923:1 13926:1 13930:1 13931:2 13943:1 13944:2 13958:2 13981:2 13993:3 13994:1 14011:4 14016:1 14027:1 14028:1 14037:1 14050:2 14063:3 14078:1 14085:2 14086:6 14112:2 14113:2 14114:2 14115:1 14129:3 14145:1 14152:1 14156:1 14157:2 14177:1 14189:2 14206:1 14221:2 14223:1 14228:1 14234:1 14237:2 14238:2 14239:2 14241:2 14245:1 14264:1 14274:1 14275:1 14280:1 14291:1 14296:1 14298:1 14307:1 14310:1 14311:1 14315:2 14318:1 14320:1 14334:1 14335:1 14366:8 14375:2 14377:1 14382:1 14422:1 14426:1 14445:1 14446:1 14447:2 14450:2 14468:2 14471:2 14472:1 14477:5 14503:1 14522:1 14529:1 14533:1 14544:2 14546:3 14552:2 14553:6 14563:2 14584:2 14592:3 14610:1 14622:2 14642:2 14644:1 14649:2 14650:1 14654:1 14664:1 14665:2 14670:2 14688:1 14699:1 14704:1 14769:1 14771:1 14777:1 14780:1 14785:2 14806:1 14833:1 14845:1 14862:1 14887:1 14901:1 14921:1 14922:1 14935:1 14952:1 14958:1 14971:1 14976:3 14986:2 14987:1 14997:1 15002:1 15008:5 15010:1 15011:1 15019:1 15020:1 15032:2 15033:1 15054:1 15060:1 15068:1 15072:1 15088:1 15096:2 15120:1 15127:1 15141:1 15157:1 15162:1 15166:1 15174:1 15181:2 15190:1 15196:4 15216:1 15233:1 15238:1 15247:2 15252:1 15276:1 15290:1 15319:4 15330:1 15346:1 15364:1 15402:1 15475:1 15476:1 15487:1 15493:1 15507:2 15538:4 15547:3 15548:1 15552:1 15554:1 15556:1 15573:1 15577:1 15597:2 15605:1 15625:1 15641:1 15643:2 15646:1 15655:3 15672:1 15683:1 15693:1 15695:2 15697:1 15701:1 15702:2 15725:1 15734:2 15771:1 15772:1 15775:1 15781:1 15788:1 15805:1 15813:1 15814:1 15868:2 15875:3 15876:4 15881:1 15907:4 15908:1 15911:1 15933:1 15951:4 15955:1 15961:1 15962:1 15968:1 15984:1 15999:1 16001:1 16008:1 16018:1 16021:3 16028:2 16032:2 16038:2 16054:1 16066:1 16073:2 16096:1 16111:1 16121:1 16140:1 16148:3 16153:1 16167:8 16172:8 16174:1 16181:1 16207:2 16218:1 16221:2 16222:2 16235:3 16255:1 16263:1 16270:1 16277:1 16279:1 16303:3 16307:1 16309:1 16317:6 16325:3 16334:1 16336:1 16337:2 16345:2 16347:1 16349:1 16352:1 16353:5 16356:2 16357:7 16358:1 16363:2 16367:2 16368:1 16369:1 16378:1 16379:6 16386:4 16387:2 16427:1 16467:1 16480:1 16484:2 16494:1 16495:2 16498:1 16501:2 16507:5 16519:1 16530:2 16532:1 16543:2 16561:2 16564:2 16578:1 16593:2 16610:1 16617:1 16623:1 16630:1 16638:3 16646:8 16659:2 16660:2 16661:1 16673:1 16674:2 16677:1 16678:4 16692:1 16697:1 16706:20 16714:1 16734:1 16739:5 16740:1 16743:1 16761:2 16775:60 16794:3 16799:1 16831:1 16861:1 16864:1 16866:1 16867:3 16884:1 16904:1 16908:1 16913:2 16915:1 16916:2 16919:2 16920:4 16921:1 16927:2 16931:1 16944:1 16957:1 16961:1 16965:1 16971:1 16980:1 16981:1 17010:1 17013:1 17047:1 17055:5 17075:1 17090:2 17095:1 17116:1 17130:1 17135:2 17139:1 17153:1 17192:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:2 17253:1 17294:2 17295:1 17317:1 17322:1 17326:1 17336:2 17342:4 17343:1 17347:1 17369:1 17372:3 17392:3 17398:1 17405:1 17414:1 17415:1 17422:1 17424:3 17426:1 17427:2 17435:1 17438:1 17445:1 17450:1 17454:3 17459:1 17460:13 17470:1 17474:1 17500:2 17514:2 17520:1 17521:2 17553:1 17559:1 17561:1 17564:2 17582:1 17583:2 17585:3 17587:1 17589:3 17593:1 17596:2 17608:1 17613:1 17625:1 17635:1 17641:1 17645:2 17646:2 17675:2 17678:2 17689:1 17711:1 17717:1 17718:3 17727:1 17742:1 17771:1 17788:1 17792:1 17797:2 17800:1 17816:1 17819:1 17820:1 17821:2 17822:1 17831:1 17835:1 17843:2 17844:1 17849:3 17859:2 17871:1 17875:1 17877:3 17881:1 17889:1 17896:1 17897:1 17906:3 17912:1 17932:2 17933:1 17952:1 17957:1 17972:2 17997:1 17998:2 18006:1 18011:1 18012:1 18034:4 18083:1 18087:1 18093:1 18099:1 18110:1 18112:1 18115:1 18129:5 18131:1 18134:1 18136:1 18144:1 18147:2 18153:1 18154:1 18169:1 18171:2 18174:2 18182:1 18187:1 18188:1 18197:2 18206:1 18214:1 18221:1 18223:1 18226:1 18241:1 18248:2 18249:2 18277:1 18280:1 18282:1 18285:1 18286:1 18310:1 18330:3 18338:2 18342:1 18355:1 18366:2 18410:3 18412:1 18414:1 18415:1 18417:2 18421:2 18423:1 18441:1 18442:11 18446:2 18460:1 18474:1 18478:2 18506:1 18517:1 18524:1 18543:1 18544:2 18546:3 18559:2 18562:2 18565:1 18576:1 18583:1 18584:1 18589:1 18598:1 18602:1 18625:1 18629:4 18633:4 18634:2 18636:1 18646:2 18676:1 18678:1 18707:1 18709:1 18748:3 18749:1 18757:1 18781:1 18786:1 18797:1 18807:1 18815:1 18816:1 18819:3 18831:2 18838:1 18855:1 18856:1 18860:1 18866:1 18872:1 18873:3 18879:1 18922:4 18928:1 18932:2 18954:1 18956:4 18966:1 18977:4 18980:1 18984:1 18987:3 19006:1 19007:1 19016:1 19018:2 19022:1 19078:1 19079:1 19098:2 19113:1 19114:10 19118:1 19125:1 19132:1 19145:1 19160:1 19170:1 19182:1 19191:2 19193:1 19194:1 19210:1 19217:1 19219:1 19225:1 19229:1 19241:1 19244:5 19250:2 19251:1 19265:3 19269:2 19272:1 19276:2 19277:1 19315:1 19323:3371 19328:1 19342:4 19343:1 19348:2 19376:1 19385:1 19395:1 19405:1 19410:1 19413:3 19414:1 19421:1 19449:1 19452:3 19473:2 19482:2 19505:1 19507:5 19509:2 19530:3 19536:1 19539:3 19541:1 19543:1 19571:1 19584:1 19586:1 19596:1 19609:1 19632:1 19636:5 19638:1 19642:1 19654:1 19658:1 19664:1 19670:1 19696:3 19702:1 19708:1 19721:2 19733:1 19743:1 19751:1 19756:1 19758:1 19804:1 19815:1 19817:2 19820:1 19831:4 19845:1 19856:1 19857:1 19869:1 19875:1 19882:1 19918:1 19919:3 19933:3 19984:1 20004:1 20024:1 20030:1 20032:2 20043:1 20048:2 20050:1 20057:2 20074:4 20086:2 20090:1 20091:4 20095:1 20107:4 20121:16 20141:1 20142:1 20144:3 20146:1 20147:20 20159:2 20177:1 20178:5 20180:1 20181:1 20197:2 20212:1 20216:4 20236:1 20243:2 20248:1 20250:6 20252:2 20255:1 20260:1 20262:1 20277:2 20278:1 20279:1 20283:1 20287:1 20313:1 20319:3 20326:1 20339:1 20349:3 20363:1 20387:1 20389:1 20392:1 20447:1 20451:1 20458:1 20477:1 20486:1 20492:1 20493:1 20502:1 20523:1 20524:13 20527:1 20565:1 20573:1 20596:1 20605:1 20613:1 20619:1 20623:7 20644:1 20648:1 20656:1 20669:2 20682:1 20688:1 20691:1 20714:1 20719:1 20720:1 20722:1 20724:2 20725:1 20731:1 20749:1 20779:4 20782:1 20787:1 20789:1 20796:1 20811:3 20814:1 20821:1 20839:3 20849:1 20853:1 20871:1 20877:4 20894:2 20897:1 20903:2 20907:1 20908:2 20918:2 20923:7 20942:1 20972:1 20976:1 20987:1 20996:15 21002:1 21014:2 21017:2 21030:1 21033:1 21049:1 21050:13 21066:1 21088:1 21099:1 21103:1 21105:1 21131:1 21144:2 21175:1 21182:1 21196:2 21213:1 21214:4 21216:2 21225:1 21231:1 21258:2 21301:5 21312:1 21313:1 21316:3 21328:1 21331:1 21339:1 21343:1 21344:1 21355:1 21389:1 21392:1 21413:2 21451:2 21466:1 21468:1 21474:1 21487:1 21495:1 21500:2 21511:1 21528:1 21529:1 21532:2 21554:1 21560:1 21575:1 21596:3 21625:2 21630:1 21631:1 21633:1 21634:1 21638:1 21643:13 21655:1 21660:3 21663:5 21664:1 21674:2 21678:1 21684:5 21690:1 21708:4 21711:1 21716:2 21722:1 21723:1 21741:1 21755:2 21756:1 21757:1 21769:2 21773:1 21789:2 21797:1 21798:1 21822:8 21829:1 21830:2 21835:1 21852:1 21874:1 21891:1 21896:1 21911:1 21915:1 21916:1 21932:2 21936:1 21939:1 21943:1 21949:1 21962:3 21977:1 21980:1 21986:2 21987:1 21992:1 21996:1 22003:1 22005:1 22041:1 22048:2 22050:1 22106:1 22147:1 22151:1 22154:4 22157:2 22159:3 22170:4 22179:1 22181:1 22183:1 22223:1 22228:1 22232:1 22233:1 22236:2 22241:2 22251:1 22258:1 22268:1 22281:1 22285:1 22286:1 22298:2 22300:6 22305:3 22309:1 22319:1 22325:1 22332:1 22349:1 22354:1 22382:2 22383:1 22384:2 22389:2 22396:1 22405:1 22406:1 22409:1 22422:1 22425:4 22427:15 22430:1 22447:1 22456:2 22457:2 22461:1 22466:1 22469:1 22479:1 22481:1 22501:5 22515:1 22534:2 22538:3 22540:1 22542:1 22549:4 22563:1 22579:1 22603:1 22604:1 22607:4 22614:2 22618:3 22621:1 22671:1 22693:4 22702:1 22703:1 22705:9 22709:2 22712:2 22720:2 22721:1 22723:1 22734:2 22735:1 22736:2 22740:1 22746:2 22748:2 22750:1 22756:1 22757:1 22758:1 22764:1 22769:2 22772:2 22777:1 22795:2 22822:1 22833:5 22834:1 22856:1 22860:1 22866:1 22868:2 22874:2 22877:1 22881:1 22895:1 22901:1 22909:4 22917:1 22926:1 22929:1 22937:1 22985:20 22987:2 22990:1 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:4 23093:1 23096:2 23102:1 23106:1 23112:2 23125:2 23133:1 23136:8 23153:2 23160:4 23166:1 23199:1 23202:2 23209:1 23212:1 23215:2 23221:2 23225:1 23236:1 23239:1 23244:1 23246:2 23256:1 23269:2 23271:1 23284:10 23302:4 23317:4 23325:1 23336:1 23360:1 23376:2 23390:1 23391:1 23413:1 23445:1 23454:3 23459:1 23462:1 23473:1 23481:1 23493:1 23496:4 23517:1 23534:1 23535:1 23549:1 23554:1 23570:1 23574:2 23575:2 23579:15 23581:1 23583:2 23600:1 23611:2 23624:1 23629:1 23632:1 23639:1 23648:2 23652:1 23655:1 23662:3 23665:1 23666:2 23673:1 23687:1 23695:1 23699:3 23710:1 23716:1 23717:5 23721:1 23750:1 23752:1 23765:2 23767:1 23788:2 23801:1 23805:1 23807:1 23813:1 23819:2 23838:1 23851:1 23859:1 23864:1 23875:1 23878:2 23879:1 23891:2 23903:1 23913:1 23948:1 23955:1 23968:1 23969:1 23971:5 23978:1 23987:1 24002:1 24003:1 24012:1 24015:1 24023:1 24034:1 24049:1 24087:1 24090:2 24103:1 24108:2 24113:1 24119:2 24124:4 24128:1 24141:1 24151:1 24168:1 24177:1 24183:1 24187:3 24188:5 24195:1 24196:1 24207:6 24216:1 24219:1 24231:1 24232:1 24235:1 24237:3 24241:2 24247:1 24252:1 24273:2 24280:1 24281:2 24283:1 24293:1 24296:1 24329:4 24336:1 24340:24 24344:1 24391:1 24408:1 24419:1 24432:2 24440:1 24441:1 24444:1 24449:1 24464:1 24478:1 24504:3 24506:1 24508:1 24509:2 24533:1 24534:1 24538:1 24548:1 24568:1 24571:1 24591:1 24602:1 24625:1 24653:1 24656:2 24668:2 24702:4 24714:1 24717:1 24745:1 24755:1 24756:1 24761:1 24775:1 24777:1 24797:2 24814:3 24827:2 24833:1 24838:1 24839:1 24841:1 24844:2 24845:1 24859:1 24873:1 24881:1 24907:1 24921:1 24931:1 24932:1 24939:1 24944:1 24970:1 24976:1 24999:1 25004:1 25005:5 25014:1 25021:1 25023:1 25027:1 25028:1 25049:1 25073:2 25090:1 25122:1 25147:3 25158:1 25181:1 25190:1 25194:5 25211:1 25252:2 25259:1 25264:1 25273:1 25275:1 25285:2 25287:5 25288:1 25292:1 25311:1 25319:1 25325:2 25327:2 25331:1 25335:1 25339:3 25347:2 25384:2 25385:2 25398:2 25415:1 25419:2 25431:2 25447:1 25468:1 25471:1 25472:1 25487:1 25495:4 25503:3 25507:1 25510:1 25514:1 25526:1 25527:1 25534:1 25549:1 25551:1 25560:1 25561:2 25570:1 25576:2 25577:1 25587:1 25597:1 25598:2 25614:1 25623:1 25627:2 25631:1 25634:1 25643:1 25652:1 25664:1 25673:1 25676:1 25684:1 25688:1 25716:1 25718:1 25722:1 25733:1 25740:2 25778:3 25797:5 25823:1 25832:1 25836:1 25852:1 25860:1 25871:1 25872:1 25878:2 25880:1 25884:1 25893:5 25894:1 25900:1 25918:2 25921:1 25922:1 25952:1 25966:1 25980:4 25998:1 26004:1 26007:1 26011:1 26021:1 26048:1 26058:4 26073:1 26076:1 26097:8 26119:1 26123:1 26124:1 26150:2 26156:5 26159:1 26167:1 26169:1 26172:4 26175:1 26176:1 26207:1 26226:1 26232:1 26257:1 26304:1 26315:1 26316:1 26318:2 26319:1 26320:1 26322:8 26324:3 26331:1 26356:1 26371:1 26372:3 26376:1 26377:2 26403:1 26413:1 26415:6 26416:1 26424:1 26429:4 26435:5 26436:2 26445:2 26458:1 26460:1 26463:1 26472:1 26489:2 26513:6 26518:1 26524:1 26525:1 26534:1 26538:2 26548:1 26564:2 26579:1 26589:3 26608:1 26627:5 26628:1 26652:2 26653:4 26659:1 26681:2 26689:1 26712:1 26717:1 26728:3 26754:1 26761:1 26781:1 26782:4 26808:1 26813:1 26835:1 26839:1 26842:2 26844:1 26848:1 26862:1 26865:1 26868:2 26871:2 26891:1 26893:1 26898:1 26901:1 26912:1 26915:1 26920:1 26934:2 26935:1 26938:1 26949:2 26955:1 26956:1 26964:1 26977:6 26981:1 26982:1 26985:1 26989:2 27000:1 27001:1 27003:1 27008:2 27010:2 27029:1 27056:1 27065:1 27078:1 27099:1 27102:1 27107:1 27113:1 27115:3 27138:10 27144:1 27178:1 27185:1 27188:1 27192:2 27212:1 27223:1 27244:1 27252:1 27257:1 27266:1 27280:3 27288:1 27292:1 27295:1 27308:1 27314:2 27332:1 27394:2 27407:3 27422:5 27424:2 27426:1 27431:1 27438:2 27439:1 27440:4 27441:9 27444:1 27450:1 27470:1 27490:2 27521:1 27531:1 27534:1 27540:4 27548:1 27552:1 27571:1 27580:3 27600:1 27601:1 27607:1 27611:1 27621:2 27626:1 27636:1 27668:1 27673:1 27676:1 27709:1 27718:1 27735:1 27755:1 27775:1 27799:1 27809:1 27824:1 27834:1 27852:1 27854:2 27863:1 27875:1 27883:2 27893:2 27910:2 27925:1 27939:1 27949:1 27950:1 28004:2 28005:2 28017:2 28059:1 28087:1 28095:2 28099:5 28110:1 28113:1 28118:1 28121:9 28137:1 28154:2 28155:1 28211:1 28223:24 28224:1 28227:3 28230:1 28238:1 28246:1 28258:4 28285:1 28288:1 28331:1 28338:2 28340:3 28342:4 28343:2 28349:1 28356:1 28385:2 28388:1 28391:1 28395:1 28398:1 28405:2 28410:2 28413:2 28421:1 28429:1 28430:1 28431:1 28432:1 28437:3 28443:1 28448:3 28450:1 28472:2 28482:1 28496:1 28499:2 28514:1 28524:2 28525:1 28526:1 28544:1 28548:1 28551:1 28574:1 28581:2 28593:1 28600:1 28644:1 28645:1 28659:1 28669:2 28674:1 28675:1 28680:1 28684:1 28696:3 28697:1 28754:9 28762:1 28771:1 28786:1 28795:2 28798:1 28839:3 28848:3 28866:1 28870:1 28874:2 28878:1 28912:1 28928:1 28931:3 28939:1 28962:2 28966:1 28974:1 28975:1 29000:5 29004:4 29028:1 29030:1 29039:1 29041:1 29051:1 29055:1 29069:1 29073:1 29111:1 29112:1 29130:4 29135:1 29143:1 29155:1 29167:3 29168:1 29179:1 29182:2 29183:27 29184:2 29186:2 29189:4 29192:1 29193:1 29203:1 29220:1 29221:13 29224:1 29234:1 29239:1 29240:1 29248:1 29276:1 29277:1 29281:2 29289:2 29290:1 29300:1 29301:2 29302:2 29310:1 29325:1 29334:4 29342:4 29346:1 29348:2 29377:3 29381:1 29382:2 29388:1 29394:1 29409:1 29429:1 29430:1 29454:1 29486:1 29495:2 29502:1 29536:1 29537:1 29542:1 29564:1 29573:1 29574:1 29575:1 29581:1 29583:1 29587:2 29589:1 29591:4 29595:2 29600:1 29620:2 29624:1 29636:1 29655:8 29659:1 29663:1 29666:4 29669:1 29718:1 29720:1 29741:3 29745:8 29747:1 29749:1 29753:1 29754:1 29771:1 29776:2 29777:2 29790:1 29795:1 29809:1 29812:2 29814:1 29821:1 29841:3 29848:2 29860:1 29891:3 29896:1 29898:1 29901:1 29904:1 29905:2 29907:1 29928:2 29932:3 29935:1 29936:5 29942:1 29950:5 29957:1 29969:2 30003:1 30011:1 30056:1 30080:1 30087:1 30104:3 30107:1 30121:1 30129:4 30160:2 30164:1 30170:1 30177:1 30201:1 30210:2 30216:1 30222:3 30232:1 30241:1 30252:1 30269:1 30285:3 30290:1 30292:1 30313:1 30325:2 30341:1 30345:1 30346:6 30348:1 30354:1 30364:2 30401:1 30402:2 30407:1 30429:1 30435:5 30441:2 30446:1 30475:1 30507:1 30512:1 30517:1 30518:1 30524:1 30525:1 30527:5 30533:1 30539:1 30571:1 30576:2 30586:1 30588:1 30592:1 30593:1 30595:1 30599:1 30609:2 30650:1 30660:1 16 5:1 24:1 26:2 27:1 38:1 62:1 69:1 75:4 91:1 94:1 121:1 136:1 151:1 156:1 160:2 163:1 190:1 197:1 202:1 206:1 220:1 224:4 229:1 230:1 251:2 266:1 285:1 294:4 297:1 315:1 324:1 334:2 335:3 336:1 360:1 368:1 369:1 375:1 392:1 407:1 430:3 436:2 440:2 453:1 463:1 471:1 477:2 489:1 493:1 495:1 502:1 503:1 505:1 510:1 511:2 546:1 547:1 564:5 622:1 625:3 637:3 647:1 660:2 666:1 673:4 679:1 688:1 694:1 705:1 706:1 710:1 722:1 730:1 737:1 748:1 768:2 778:2 795:1 798:1 815:1 836:1 845:2 853:1 855:1 857:1 870:2 878:1 882:2 895:1 898:2 931:2 935:1 939:2 942:1 943:1 949:1 951:2 965:2 966:2 971:3 973:1 974:3 975:6 976:2 981:2 1002:1 1003:2 1026:1 1028:1 1029:6 1032:2 1038:1 1058:1 1065:2 1069:1 1107:2 1108:1 1131:1 1134:1 1137:1 1155:2 1161:1 1170:2 1171:1 1216:1 1217:3 1220:1 1221:1 1224:1 1233:1 1236:1 1242:2 1253:1 1254:4 1267:2 1273:1 1280:1 1290:1 1291:3 1319:1 1324:1 1325:2 1331:2 1333:4 1336:1 1346:2 1347:5 1348:2 1349:1 1361:1 1365:1 1377:1 1379:1 1389:1 1393:1 1395:3 1409:2 1421:1 1422:1 1446:2 1476:1 1499:1 1500:3 1503:1 1511:1 1514:1 1516:1 1519:2 1528:1 1538:1 1556:1 1566:6 1574:1 1579:1 1585:6 1590:1 1594:2 1601:1 1602:2 1603:1 1608:3 1609:1 1614:1 1618:1 1625:1 1628:4 1642:1 1651:1 1653:1 1657:5 1671:1 1677:2 1681:2 1685:1 1690:2 1696:1 1725:2 1730:1 1734:4 1739:4 1742:2 1743:1 1756:1 1757:1 1759:1 1776:5 1780:3 1788:1 1789:1 1800:1 1802:1 1807:2 1812:1 1826:1 1840:1 1841:1 1855:2 1857:1 1858:1 1860:1 1863:1 1873:3 1886:2 1900:1 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1939:1 1947:1 1951:1 1954:1 1955:1 1964:1 1970:2 1977:1 1982:1 1986:1 1989:1 1997:1 1999:1 2003:1 2005:1 2016:1 2021:1 2023:1 2026:1 2032:1 2035:1 2038:2 2039:4 2042:1 2046:1 2048:1 2052:1 2069:1 2070:3 2072:1 2090:1 2096:1 2101:1 2124:1 2125:1 2131:1 2132:1 2149:1 2153:1 2161:2 2162:2 2164:1 2167:2 2169:1 2170:3 2204:1 2227:1 2231:1 2232:1 2234:3 2235:1 2237:2 2238:1 2239:1 2269:4 2296:2 2307:1 2337:1 2339:1 2346:1 2351:1 2353:3 2363:1 2404:2 2405:1 2406:1 2407:2 2408:4 2413:1 2415:6 2416:1 2417:1 2420:5 2421:1 2422:4 2424:1 2427:1 2431:1 2434:6 2436:3 2437:7 2448:1 2450:2 2455:1 2469:1 2473:1 2486:1 2488:1 2495:1 2508:1 2514:1 2518:2 2519:2 2520:1 2525:1 2532:1 2533:3 2538:1 2543:1 2550:1 2556:2 2560:1 2575:1 2597:1 2599:1 2602:1 2623:5 2633:1 2641:1 2645:1 2657:2 2659:1 2681:1 2689:1 2693:1 2694:1 2705:1 2742:1 2747:1 2766:1 2797:2 2803:1 2812:4 2819:1 2825:4 2834:1 2841:2 2842:1 2849:1 2852:3 2854:10 2856:2 2872:1 2874:1 2886:1 2888:2 2894:1 2896:1 2900:1 2902:1 2909:3 2912:1 2936:2 2943:2 2952:2 2962:1 2963:1 2965:5 2976:2 3019:4 3024:1 3030:1 3031:1 3039:1 3056:11 3067:7 3090:2 3099:1 3105:1 3118:30 3127:1 3128:2 3151:1 3152:1 3170:1 3189:1 3196:2 3222:1 3224:2 3227:1 3232:2 3296:3 3299:1 3311:1 3318:1 3342:1 3358:1 3378:1 3379:1 3390:1 3391:1 3397:1 3403:2 3406:4 3417:1 3428:12 3442:1 3454:1 3461:1 3469:1 3485:1 3498:7 3543:1 3565:1 3567:1 3574:1 3588:1 3590:2 3601:2 3609:1 3613:1 3628:1 3634:1 3643:3 3649:1 3654:1 3661:1 3667:4 3707:1 3711:3 3713:1 3730:1 3731:1 3746:3 3764:1 3778:1 3793:1 3796:1 3801:1 3803:4 3804:2 3810:2 3812:1 3813:1 3819:2 3829:2 3839:1 3846:1 3867:1 3886:1 3898:1 3902:2 3903:4 3906:1 3913:1 3918:1 3929:1 3950:1 3958:4 3959:43 3966:1 3981:1 3993:2 3994:1 3995:9 4000:1 4009:1 4010:26 4011:2 4012:1 4015:4 4027:2 4042:3 4057:2 4058:3 4061:2 4063:2 4076:2 4078:1 4079:1 4095:1 4116:2 4122:1 4123:3 4126:1 4130:1 4134:1 4171:1 4173:1 4176:2 4178:1 4182:1 4183:3 4196:2 4207:2 4209:1 4216:1 4219:1 4223:1 4235:2 4242:1 4256:1 4258:1 4265:1 4266:2 4267:1 4269:1 4270:1 4285:1 4290:2 4294:1 4297:1 4301:4 4318:4 4324:1 4330:1 4360:1 4368:1 4369:1 4373:1 4381:1 4416:1 4423:1 4436:1 4439:3 4447:1 4463:2 4474:1 4483:1 4486:1 4498:2 4504:1 4505:2 4508:1 4509:1 4539:1 4547:2 4555:1 4557:1 4563:1 4586:1 4599:1 4611:1 4623:1 4636:13 4650:1 4665:1 4697:2 4701:1 4706:5 4715:1 4718:2 4749:7 4767:1 4773:1 4781:1 4787:1 4796:1 4840:1 4854:1 4855:2 4880:1 4896:1 4900:1 4906:2 4909:1 4921:2 4927:1 4930:2 4938:1 4948:4 4959:1 4966:3 4989:3 4993:2 4994:1 5014:1 5044:1 5058:1 5059:1 5062:1 5064:1 5076:1 5090:1 5092:2 5100:2 5153:1 5159:1 5186:1 5189:1 5191:1 5201:16 5202:2 5211:1 5219:1 5231:2 5241:1 5257:1 5260:2 5275:1 5281:1 5288:1 5308:3 5314:1 5320:3 5321:1 5323:4 5340:1 5344:2 5345:3 5347:8 5348:1 5350:1 5351:1 5353:1 5354:2 5356:1 5361:1 5362:22 5363:1 5365:1 5370:2 5371:3 5376:2 5377:1 5397:1 5401:3 5425:1 5453:2 5467:1 5478:1 5483:1 5486:1 5488:1 5491:1 5560:1 5593:3 5594:3 5603:5 5610:1 5648:1 5652:1 5670:1 5675:2 5677:22 5684:1 5703:1 5710:3 5712:1 5735:3 5771:1 5774:1 5786:1 5810:1 5816:1 5819:2 5830:1 5836:1 5839:1 5848:1 5851:1 5856:2 5857:1 5863:1 5901:1 5902:1 5904:1 5908:1 5911:1 5920:1 5921:1 5922:2 5943:3 5951:1 5954:1 5956:1 5962:2 5965:1 5967:1 5973:2 5978:1 5987:2 5991:1 5993:1 6018:1 6021:5 6038:2 6044:1 6061:1 6063:1 6065:1 6068:1 6079:1 6086:1 6094:1 6095:1 6097:1 6101:1 6103:1 6114:1 6115:1 6118:1 6121:1 6136:1 6140:1 6141:1 6142:1 6179:1 6199:3 6217:1 6219:5 6221:1 6227:1 6231:1 6239:1 6243:1 6280:1 6305:2 6330:1 6334:1 6364:1 6368:3 6371:8 6380:1 6386:2 6410:2 6415:1 6420:1 6421:1 6444:1 6463:1 6465:1 6471:1 6474:1 6480:1 6481:2 6488:1 6490:2 6491:2 6492:1 6498:1 6499:1 6528:4 6529:1 6536:1 6539:2 6540:2 6564:1 6568:1 6588:1 6591:3 6596:1 6602:1 6618:5 6621:1 6635:1 6636:1 6639:1 6648:1 6654:1 6660:1 6673:1 6721:6 6724:2 6725:1 6726:1 6727:1 6728:1 6730:2 6731:2 6734:2 6735:3 6736:5 6743:2 6744:7 6745:1 6746:1 6747:2 6756:1 6773:1 6776:1 6797:3 6802:1 6833:1 6836:1 6872:1 6875:1 6878:1 6886:1 6895:2 6901:1 6930:1 6932:1 6970:1 6977:1 6984:1 6994:3 7000:2 7002:1 7019:1 7026:1 7027:5 7032:3 7035:1 7039:1 7046:1 7047:1 7060:2 7080:1 7082:1 7083:3 7088:2 7114:1 7115:1 7118:1 7126:1 7148:1 7166:1 7171:1 7175:1 7192:3 7200:1 7201:2 7204:1 7216:3 7220:1 7222:2 7231:3 7236:3 7242:1 7257:1 7267:3 7273:1 7308:1 7322:1 7325:1 7328:1 7333:1 7335:2 7342:1 7363:1 7384:1 7407:2 7412:1 7432:2 7433:1 7448:1 7455:1 7456:2 7495:1 7522:2 7542:1 7548:1 7556:1 7573:1 7574:1 7577:5 7580:1 7585:3 7589:1 7601:1 7603:1 7610:1 7612:1 7625:1 7635:1 7653:1 7705:1 7717:1 7728:1 7733:1 7769:1 7774:1 7779:1 7782:1 7788:5 7830:1 7840:3 7874:4 7915:2 7926:1 7932:2 7954:1 7963:2 7993:1 7997:2 7998:1 8004:1 8005:1 8023:1 8027:1 8031:4 8054:1 8064:4 8065:5 8066:2 8084:1 8089:2 8094:2 8097:1 8100:1 8105:1 8121:1 8122:2 8128:1 8130:1 8131:43 8133:1 8134:1 8140:2 8142:1 8151:11 8152:26 8161:1 8164:1 8170:1 8173:1 8207:1 8208:5 8238:1 8254:1 8273:1 8279:2 8302:2 8307:1 8316:1 8321:1 8362:3 8365:7 8372:1 8408:1 8413:1 8415:5 8430:1 8433:1 8450:1 8457:1 8467:1 8478:1 8492:1 8521:1 8523:3 8540:7 8546:2 8550:1 8559:1 8570:2 8585:2 8590:1 8597:2 8603:1 8610:1 8623:1 8624:1 8633:18 8651:1 8655:1 8664:2 8665:1 8687:2 8718:1 8724:1 8733:2 8742:1 8748:1 8753:2 8760:4 8764:1 8779:1 8789:1 8793:3 8798:4 8803:2 8816:2 8820:4 8830:1 8840:2 8842:1 8845:2 8850:1 8857:1 8858:2 8863:2 8873:1 8884:2 8887:2 8895:1 8898:1 8899:1 8915:2 8932:1 8938:1 8942:3 8953:1 8959:1 8966:1 8973:1 8979:1 8980:2 8983:1 8984:3 8985:2 8986:2 8987:5 8990:1 8995:2 8998:2 9000:2 9004:3 9020:1 9027:2 9035:2 9039:3 9040:1 9041:1 9045:1 9046:1 9058:1 9061:1 9072:1 9075:2 9081:1 9086:2 9109:1 9112:5 9135:1 9139:5 9146:1 9148:1 9149:1 9151:2 9158:1 9164:1 9169:1 9204:1 9205:1 9209:1 9215:3 9225:3 9227:1 9248:2 9268:4 9269:2 9273:4 9274:1 9276:1 9277:4 9280:3 9286:2 9301:3 9302:1 9304:4 9316:1 9318:1 9339:2 9345:1 9400:1 9420:2 9439:2 9442:2 9450:1 9453:1 9463:1 9471:1 9478:1 9480:1 9495:1 9504:1 9506:1 9523:1 9539:1 9561:3 9589:2 9592:1 9594:4 9605:1 9608:1 9618:7 9640:2 9646:3 9651:1 9658:1 9662:1 9663:1 9677:1 9686:1 9695:3 9697:1 9715:1 9718:1 9719:1 9721:1 9732:1 9776:1 9781:1 9809:1 9818:1 9825:1 9840:1 9870:1 9874:1 9877:3 9882:2 9888:1 9889:2 9890:1 9909:1 9928:2 9930:1 9937:2 9940:1 9942:1 9972:1 9973:1 9977:3 9983:1 9993:1 9994:1 10009:1 10037:22 10043:1 10060:1 10069:2 10078:4 10084:2 10085:1 10109:1 10114:1 10117:1 10120:1 10128:1 10130:2 10146:2 10152:1 10156:1 10169:14 10184:2 10185:1 10190:2 10202:1 10211:1 10223:5 10229:1 10235:1 10238:3 10239:1 10240:1 10241:1 10259:1 10269:1 10275:1 10281:1 10286:1 10317:2 10321:3 10322:1 10336:1 10356:8 10362:2 10363:4 10364:2 10371:3 10379:1 10380:1 10387:2 10393:3 10395:1 10396:1 10400:2 10406:2 10410:4 10413:4 10415:1 10416:1 10423:1 10438:1 10446:3 10450:3 10468:1 10470:2 10483:1 10493:2 10533:1 10547:1 10549:3 10552:1 10577:12 10580:1 10581:6 10596:1 10601:1 10602:1 10627:1 10651:4 10691:1 10698:2 10707:1 10718:1 10731:1 10735:2 10757:4 10763:1 10780:4 10784:1 10789:1 10791:1 10794:1 10809:1 10828:1 10830:1 10850:1 10868:1 10880:2 10892:5 10898:1 10903:1 10907:1 10917:2 10923:1 10935:2 10939:1 10957:2 10962:7 10972:1 10973:1 10998:1 11009:2 11026:3 11028:2 11031:2 11040:1 11047:6 11060:2 11061:4 11062:1 11063:3 11070:1 11081:1 11084:1 11087:1 11105:1 11106:3 11120:1 11126:1 11134:4 11145:1 11148:2 11156:1 11160:2 11166:7 11230:1 11231:1 11234:1 11237:1 11260:2 11261:2 11262:1 11268:1 11276:1 11297:1 11305:1 11315:1 11324:1 11359:1 11364:1 11366:1 11371:1 11388:2 11389:1 11399:1 11400:7 11417:4 11418:7 11430:2 11441:1 11443:1 11453:1 11458:2 11469:1 11477:4 11482:1 11499:1 11512:2 11528:1 11529:2 11535:5 11546:1 11556:3 11564:1 11569:3 11582:1 11595:1 11597:1 11598:1 11622:1 11626:1 11628:1 11641:1 11653:1 11668:1 11673:1 11676:1 11677:1 11678:1 11680:1 11683:1 11684:4 11685:1 11703:1 11710:1 11718:1 11721:2 11740:1 11745:1 11753:1 11754:1 11779:2 11808:1 11810:4 11816:1 11819:1 11820:2 11824:1 11830:1 11831:1 11839:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11885:1 11887:4 11914:1 11918:1 11923:3 11926:6 11929:1 11931:1 11942:2 11961:1 11985:1 11986:1 11991:1 11994:2 12009:1 12029:3 12045:1 12056:1 12063:1 12065:5 12066:2 12077:3 12081:1 12093:2 12095:3 12098:2 12107:1 12120:1 12130:3 12135:1 12146:3 12153:2 12155:9 12157:1 12170:1 12171:1 12176:1 12177:1 12181:1 12182:1 12189:1 12190:3 12193:7 12194:1 12200:1 12202:7 12210:1 12218:1 12222:1 12228:10 12253:2 12266:5 12270:1 12275:2 12280:1 12293:1 12314:1 12325:4 12333:1 12335:1 12337:2 12373:1 12375:1 12385:3 12406:1 12412:1 12415:2 12423:1 12440:1 12459:1 12470:2 12471:2 12506:2 12508:1 12539:1 12555:5 12594:2 12609:1 12616:1 12625:1 12628:1 12629:1 12632:1 12637:1 12654:4 12655:4 12656:22 12660:6 12671:1 12679:1 12681:2 12698:2 12705:1 12716:2 12745:1 12766:2 12788:1 12815:1 12824:9 12825:2 12841:1 12845:1 12846:4 12850:2 12871:1 12902:3 12906:1 12929:1 12936:1 12943:2 12947:1 12953:1 12961:1 12976:2 12992:1 13011:1 13015:2 13019:1 13035:4 13054:2 13057:1 13092:1 13095:3 13103:1 13107:1 13110:1 13114:1 13117:1 13129:1 13146:1 13166:1 13167:1 13174:1 13175:1 13183:1 13207:1 13227:6 13240:1 13241:1 13243:1 13248:1 13251:1 13276:2 13277:4 13304:1 13307:3 13342:1 13371:1 13376:2 13404:1 13424:1 13429:2 13433:1 13440:1 13441:1 13443:2 13472:1 13486:2 13488:1 13494:1 13522:1 13524:1 13580:1 13597:5 13599:1 13609:1 13614:1 13623:1 13624:3 13630:1 13649:2 13652:1 13656:1 13661:1 13664:1 13673:1 13681:1 13684:2 13700:2 13709:1 13711:1 13712:1 13714:2 13720:1 13735:1 13739:2 13740:1 13768:1 13775:1 13776:1 13780:2 13816:2 13821:3 13823:1 13832:1 13833:2 13835:1 13838:7 13842:4 13843:1 13851:2 13853:1 13856:1 13858:3 13873:3 13875:1 13878:2 13883:3 13898:1 13915:7 13916:1 13923:1 13926:1 13930:1 13931:3 13943:1 13944:2 13958:2 13981:2 13993:3 13994:1 14011:4 14016:1 14027:1 14028:1 14037:1 14050:2 14063:3 14078:1 14080:1 14085:2 14086:6 14112:2 14113:2 14114:2 14115:1 14129:3 14145:1 14152:1 14156:1 14157:2 14177:1 14189:2 14206:1 14221:2 14223:1 14228:1 14234:1 14237:2 14238:2 14239:2 14241:2 14245:1 14264:1 14274:1 14275:1 14280:1 14291:1 14296:1 14298:1 14307:1 14310:1 14311:1 14315:2 14318:1 14320:1 14334:1 14335:1 14366:8 14375:2 14377:1 14382:1 14422:1 14426:1 14445:1 14446:1 14447:2 14450:2 14468:2 14471:2 14472:1 14477:5 14503:1 14522:1 14529:1 14533:1 14544:2 14546:3 14552:2 14553:6 14563:2 14584:2 14592:3 14610:1 14622:2 14642:2 14644:1 14649:2 14650:1 14654:1 14664:1 14665:2 14670:2 14688:1 14699:1 14704:1 14769:1 14771:1 14777:1 14780:1 14785:2 14806:1 14833:1 14845:1 14862:1 14887:1 14891:2 14901:1 14921:1 14922:1 14935:1 14952:1 14958:1 14971:1 14976:3 14986:2 14987:1 14997:1 15002:1 15008:5 15010:1 15011:1 15019:1 15020:1 15032:2 15033:1 15054:1 15060:1 15068:1 15072:1 15088:1 15096:2 15102:1 15120:1 15127:1 15141:1 15157:1 15162:1 15166:1 15174:1 15181:2 15190:1 15196:4 15216:1 15233:1 15238:1 15247:2 15252:1 15276:1 15290:1 15319:4 15330:1 15346:1 15364:1 15402:1 15475:1 15476:1 15487:1 15493:1 15507:2 15538:4 15547:3 15548:2 15552:1 15554:1 15556:1 15573:1 15577:1 15597:2 15605:1 15625:1 15641:1 15643:2 15646:1 15655:3 15672:1 15683:1 15693:1 15695:2 15697:1 15701:1 15702:2 15725:1 15734:2 15771:1 15772:1 15775:1 15780:1 15781:1 15788:1 15805:1 15813:1 15814:1 15868:2 15875:3 15876:4 15881:1 15907:4 15908:1 15911:1 15933:1 15951:4 15955:2 15961:1 15962:1 15968:1 15984:1 15999:1 16001:1 16008:1 16018:1 16021:3 16028:2 16032:2 16038:2 16054:1 16066:1 16073:2 16096:1 16111:1 16121:1 16140:1 16148:3 16153:1 16167:9 16172:8 16174:1 16181:1 16207:2 16218:1 16221:2 16222:2 16235:3 16255:1 16263:1 16270:1 16277:1 16279:1 16303:3 16307:1 16309:1 16317:6 16325:3 16334:1 16336:1 16337:2 16345:3 16347:1 16349:1 16352:1 16353:5 16356:2 16357:7 16358:1 16363:2 16367:2 16368:1 16369:1 16378:1 16379:6 16386:4 16387:2 16427:1 16467:1 16480:1 16484:2 16494:1 16495:2 16498:1 16501:2 16507:6 16519:1 16530:2 16532:1 16543:2 16561:2 16564:3 16578:1 16593:2 16610:1 16617:1 16623:1 16630:1 16638:3 16646:8 16659:2 16660:2 16661:1 16673:1 16674:2 16677:1 16678:4 16692:1 16697:1 16706:22 16714:1 16734:1 16739:5 16740:1 16743:1 16761:2 16775:65 16794:3 16799:1 16831:1 16861:1 16864:1 16866:1 16867:3 16884:1 16904:1 16908:1 16913:2 16915:1 16916:2 16919:2 16920:4 16921:1 16927:2 16931:2 16944:1 16957:1 16961:1 16965:1 16971:1 16980:1 16981:1 17010:1 17013:1 17047:1 17055:5 17075:1 17090:2 17095:1 17116:1 17130:1 17135:2 17139:1 17153:1 17192:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:2 17253:1 17294:2 17295:1 17317:1 17322:1 17326:1 17336:2 17342:4 17343:1 17347:1 17369:1 17372:3 17392:3 17398:1 17405:1 17414:1 17415:1 17422:1 17424:3 17426:1 17427:2 17435:1 17438:1 17445:1 17450:1 17454:3 17459:1 17460:13 17470:1 17474:1 17500:2 17514:2 17520:1 17521:2 17553:1 17559:1 17561:1 17564:2 17582:1 17583:2 17585:3 17587:1 17589:3 17593:1 17596:2 17608:1 17613:1 17625:1 17635:1 17641:1 17645:2 17646:2 17675:2 17678:2 17689:1 17711:1 17717:1 17718:3 17727:1 17742:1 17771:1 17788:1 17792:1 17797:2 17800:1 17816:1 17819:1 17820:1 17821:2 17822:1 17831:1 17835:1 17843:2 17844:1 17849:3 17859:2 17871:1 17875:1 17877:3 17881:1 17889:1 17896:1 17897:1 17906:3 17912:1 17932:2 17933:1 17952:1 17957:1 17972:2 17997:1 17998:2 18006:1 18011:1 18012:1 18034:4 18083:1 18087:1 18093:1 18099:1 18110:1 18112:1 18115:1 18129:5 18131:1 18134:1 18136:1 18144:1 18147:2 18153:1 18154:1 18169:1 18171:2 18174:2 18182:1 18187:1 18188:1 18197:2 18206:1 18214:1 18221:1 18223:1 18226:1 18241:1 18248:2 18249:2 18277:1 18280:1 18282:1 18285:1 18286:1 18310:1 18330:3 18338:2 18342:1 18355:1 18366:3 18410:3 18412:1 18414:1 18415:1 18417:2 18421:2 18423:2 18424:1 18441:1 18442:13 18446:2 18460:1 18474:1 18478:2 18506:1 18517:1 18524:1 18543:1 18544:2 18546:3 18559:2 18562:2 18565:1 18576:1 18583:1 18584:1 18589:1 18598:1 18602:1 18625:1 18629:4 18633:4 18634:2 18636:1 18646:2 18676:1 18678:1 18707:1 18709:1 18748:3 18749:1 18757:1 18781:1 18786:1 18797:1 18805:1 18807:1 18815:1 18816:1 18819:3 18831:2 18838:1 18855:1 18856:1 18860:1 18866:1 18872:1 18873:3 18879:1 18922:4 18928:1 18932:2 18954:1 18956:4 18966:1 18977:4 18980:1 18984:1 18987:3 19006:1 19007:1 19016:1 19018:2 19022:1 19078:1 19079:1 19098:2 19113:1 19114:10 19118:1 19125:1 19132:1 19145:1 19160:1 19170:1 19182:1 19183:1 19190:2 19191:2 19193:1 19194:1 19210:1 19217:1 19219:1 19225:1 19229:2 19241:1 19244:5 19250:2 19251:1 19265:3 19269:2 19272:1 19276:2 19277:1 19315:1 19323:3484 19328:1 19342:4 19343:1 19348:2 19376:1 19385:1 19395:2 19405:1 19410:1 19413:3 19414:1 19421:1 19449:1 19452:3 19473:2 19482:2 19505:1 19507:5 19509:2 19530:3 19536:1 19539:3 19541:1 19543:1 19571:1 19584:1 19586:1 19596:1 19609:1 19632:1 19636:5 19638:1 19642:1 19654:1 19658:1 19664:1 19670:1 19696:3 19702:1 19708:1 19721:2 19733:1 19743:1 19751:1 19756:1 19758:1 19804:1 19815:1 19817:2 19820:1 19831:4 19845:2 19856:1 19857:1 19869:1 19875:1 19882:1 19918:1 19919:4 19933:3 19984:1 20004:1 20024:1 20030:1 20032:2 20043:1 20048:2 20050:1 20057:2 20074:4 20086:2 20090:1 20091:4 20095:1 20107:4 20121:16 20141:1 20142:1 20144:3 20146:1 20147:22 20159:2 20177:1 20178:5 20180:1 20181:1 20197:2 20212:1 20216:4 20236:1 20243:2 20248:1 20250:6 20252:2 20255:1 20260:1 20262:1 20277:2 20278:1 20279:1 20283:1 20287:1 20313:1 20319:3 20326:1 20339:1 20349:3 20363:1 20387:1 20389:1 20392:1 20447:1 20451:1 20458:1 20477:1 20486:1 20492:1 20493:1 20502:1 20523:1 20524:13 20527:1 20565:1 20573:1 20596:1 20605:1 20613:1 20619:1 20623:7 20644:1 20648:1 20656:1 20669:2 20682:1 20688:1 20691:1 20709:1 20714:1 20719:1 20720:1 20722:2 20724:2 20725:1 20731:2 20749:1 20779:4 20782:1 20787:1 20789:1 20796:1 20811:3 20814:1 20821:1 20839:3 20849:1 20853:1 20871:1 20877:5 20894:2 20897:1 20903:2 20907:1 20908:2 20918:2 20923:7 20942:1 20970:1 20972:1 20976:1 20987:1 20996:15 21002:1 21014:2 21017:2 21030:1 21033:1 21049:1 21050:13 21066:1 21088:1 21099:1 21103:1 21105:1 21131:1 21144:2 21175:1 21182:1 21196:2 21213:1 21214:4 21216:2 21225:1 21231:1 21258:2 21301:5 21312:1 21313:1 21316:3 21328:1 21330:1 21331:1 21339:1 21343:1 21344:1 21355:1 21389:1 21392:1 21413:2 21451:2 21466:1 21468:1 21474:1 21487:1 21495:1 21500:2 21511:1 21528:1 21529:1 21532:2 21554:1 21560:1 21575:1 21596:3 21625:2 21630:1 21631:1 21633:1 21634:1 21638:1 21643:13 21655:1 21660:3 21663:5 21664:1 21674:3 21678:1 21684:5 21690:1 21708:4 21711:1 21716:2 21722:1 21723:1 21741:1 21755:2 21756:1 21757:1 21769:2 21773:1 21789:2 21797:1 21798:1 21822:8 21829:1 21830:2 21835:1 21852:1 21874:1 21891:1 21896:1 21911:1 21915:1 21916:1 21932:2 21936:1 21939:1 21943:1 21949:1 21962:3 21977:1 21980:1 21986:2 21987:1 21992:1 21996:1 22003:1 22005:1 22041:1 22048:2 22050:1 22105:1 22106:1 22147:1 22151:1 22154:4 22157:2 22159:3 22170:4 22179:1 22181:1 22183:1 22223:1 22228:1 22232:1 22233:1 22236:2 22241:2 22251:1 22258:1 22268:1 22273:1 22281:1 22285:1 22286:1 22298:2 22300:6 22305:3 22309:1 22319:1 22320:1 22325:1 22332:1 22342:1 22349:1 22354:1 22382:2 22383:1 22384:2 22389:2 22396:1 22405:1 22406:1 22409:1 22422:1 22425:4 22427:17 22430:1 22447:1 22456:2 22457:2 22461:1 22466:1 22469:1 22479:1 22481:1 22501:5 22515:1 22534:2 22538:3 22540:1 22542:1 22549:4 22563:1 22579:1 22600:1 22603:1 22604:1 22607:4 22614:2 22618:3 22621:1 22671:1 22693:4 22702:2 22703:1 22705:11 22709:2 22712:2 22720:2 22721:1 22723:1 22734:2 22735:1 22736:2 22740:1 22746:2 22748:2 22750:1 22756:1 22757:1 22758:1 22764:1 22769:2 22772:2 22777:1 22795:2 22822:1 22833:5 22834:1 22856:1 22860:1 22866:1 22868:2 22874:2 22877:1 22881:1 22895:1 22901:1 22906:1 22909:4 22917:1 22926:1 22929:1 22937:1 22985:22 22987:2 22990:1 23008:1 23027:1 23032:1 23052:1 23065:1 23073:1 23076:4 23093:1 23096:2 23102:1 23106:1 23112:2 23125:2 23133:1 23136:8 23153:2 23160:4 23166:1 23199:1 23202:2 23209:1 23212:1 23215:2 23221:2 23225:1 23236:1 23239:1 23244:1 23246:2 23256:1 23269:2 23271:1 23284:10 23302:4 23317:4 23325:1 23336:1 23360:1 23376:2 23390:1 23391:1 23413:1 23445:1 23454:3 23459:1 23462:1 23473:1 23481:1 23493:1 23496:4 23517:1 23534:1 23535:1 23549:1 23554:1 23570:1 23573:1 23574:2 23575:2 23579:15 23581:1 23583:2 23600:1 23611:2 23624:1 23629:1 23632:1 23639:1 23648:2 23652:1 23655:1 23662:3 23665:1 23666:2 23673:1 23687:1 23695:1 23699:3 23710:1 23716:1 23717:5 23721:1 23750:1 23752:1 23765:2 23767:1 23788:2 23801:1 23805:1 23807:1 23813:1 23819:2 23838:1 23851:1 23859:1 23864:1 23875:1 23878:2 23879:1 23891:2 23903:1 23913:1 23948:1 23955:1 23968:1 23969:1 23971:5 23978:1 23987:1 24002:1 24003:1 24012:2 24015:1 24023:1 24034:1 24049:1 24087:1 24090:2 24103:1 24108:2 24113:1 24119:2 24124:4 24128:1 24141:1 24151:1 24168:1 24177:1 24183:1 24187:3 24188:5 24195:1 24196:1 24207:6 24216:1 24219:1 24231:1 24232:1 24235:1 24237:3 24241:2 24247:1 24252:1 24273:2 24280:1 24281:2 24283:1 24293:1 24296:1 24329:5 24336:1 24340:27 24344:1 24391:1 24408:1 24419:1 24432:2 24438:1 24440:1 24441:1 24444:1 24449:1 24464:1 24478:1 24504:3 24506:1 24508:1 24509:2 24533:1 24534:1 24538:1 24548:1 24568:1 24571:1 24591:1 24602:1 24625:1 24653:1 24656:2 24668:2 24685:1 24702:4 24714:1 24717:1 24745:1 24755:1 24756:1 24761:1 24775:1 24777:1 24797:2 24814:3 24827:2 24833:1 24838:1 24839:1 24841:1 24844:2 24845:1 24859:1 24873:1 24881:1 24907:1 24921:1 24931:1 24932:1 24939:1 24944:2 24970:1 24976:1 24999:1 25004:1 25005:5 25014:1 25021:1 25023:1 25027:1 25028:1 25049:2 25073:2 25090:1 25122:1 25125:1 25147:3 25158:1 25181:1 25190:1 25194:5 25211:1 25252:2 25259:1 25264:1 25273:1 25275:1 25285:2 25287:5 25288:1 25292:1 25311:1 25319:1 25325:2 25327:2 25331:1 25335:1 25339:3 25347:2 25351:1 25384:2 25385:2 25398:2 25415:1 25419:2 25431:2 25447:1 25468:1 25471:1 25472:1 25487:1 25495:4 25503:3 25507:1 25510:1 25514:1 25526:1 25527:1 25534:1 25549:1 25551:1 25560:1 25561:2 25570:1 25576:2 25577:1 25587:1 25597:1 25598:2 25614:1 25623:1 25627:2 25631:1 25634:1 25643:1 25652:1 25664:1 25673:1 25676:1 25684:1 25688:1 25716:1 25718:1 25722:1 25733:1 25740:2 25778:3 25797:5 25823:1 25832:1 25836:1 25852:1 25860:1 25871:1 25872:1 25878:2 25880:1 25884:1 25893:5 25894:1 25900:1 25918:2 25921:1 25922:1 25952:2 25966:1 25980:4 25998:1 26004:1 26007:1 26011:1 26021:1 26048:1 26058:4 26073:1 26076:1 26097:8 26119:1 26123:1 26124:1 26150:2 26156:5 26159:1 26167:1 26169:1 26172:4 26175:1 26176:1 26207:1 26226:1 26232:1 26257:1 26304:1 26315:1 26316:1 26318:2 26319:1 26320:2 26322:8 26324:3 26331:1 26356:1 26371:1 26372:3 26376:1 26377:2 26403:1 26413:1 26415:6 26416:1 26424:1 26429:4 26435:5 26436:2 26445:2 26458:1 26460:1 26463:1 26472:1 26489:2 26513:6 26518:1 26524:1 26525:1 26534:1 26538:2 26548:1 26564:2 26579:1 26589:3 26608:1 26627:5 26628:1 26652:2 26653:4 26659:1 26681:2 26689:1 26712:1 26717:1 26728:3 26754:1 26761:1 26781:1 26782:4 26808:1 26813:1 26835:1 26839:1 26842:2 26844:1 26848:1 26862:1 26865:1 26868:2 26871:2 26891:1 26893:1 26898:1 26901:1 26912:1 26915:1 26920:1 26934:2 26935:1 26938:1 26949:2 26955:1 26956:1 26964:1 26977:6 26981:1 26982:1 26985:1 26989:2 27000:1 27001:1 27003:1 27008:2 27010:2 27029:1 27056:1 27065:1 27078:1 27099:1 27102:1 27107:1 27113:1 27115:3 27138:10 27144:1 27178:1 27185:1 27188:1 27192:2 27212:1 27223:1 27244:1 27252:1 27257:1 27266:1 27280:3 27288:1 27292:1 27295:1 27308:1 27314:2 27332:1 27394:2 27407:3 27422:5 27424:2 27426:1 27431:1 27438:2 27439:1 27440:4 27441:9 27444:1 27450:1 27470:1 27490:2 27521:1 27531:1 27534:1 27540:4 27548:1 27552:1 27571:1 27580:3 27600:1 27601:1 27607:1 27611:1 27621:2 27625:1 27626:1 27636:1 27668:1 27673:1 27676:1 27709:1 27718:1 27735:1 27755:1 27775:1 27799:1 27809:1 27824:1 27834:1 27852:1 27854:2 27863:1 27875:1 27883:2 27893:2 27910:2 27925:1 27939:1 27949:1 27950:1 28004:2 28005:2 28017:2 28059:1 28087:1 28095:2 28099:5 28110:1 28113:1 28118:1 28121:9 28137:1 28154:2 28155:1 28207:1 28211:1 28223:27 28224:1 28227:3 28230:1 28238:1 28246:1 28258:4 28285:1 28288:1 28331:1 28338:2 28340:3 28342:4 28343:2 28349:1 28356:1 28385:2 28388:1 28391:1 28395:1 28398:1 28405:2 28410:2 28413:2 28421:1 28429:1 28430:1 28431:1 28432:1 28437:3 28443:1 28448:3 28450:1 28472:2 28482:1 28496:1 28499:2 28514:1 28524:2 28525:1 28526:1 28544:1 28548:1 28551:1 28574:1 28581:2 28593:1 28600:1 28644:1 28645:1 28659:1 28669:2 28674:1 28675:1 28680:1 28684:1 28696:3 28697:1 28754:9 28762:1 28771:1 28786:1 28795:2 28798:1 28839:3 28848:3 28866:1 28870:1 28874:2 28878:1 28912:1 28928:1 28931:3 28939:1 28962:2 28966:1 28974:1 28975:1 29000:5 29004:4 29028:1 29030:1 29039:1 29041:1 29051:1 29055:1 29069:1 29073:1 29111:1 29112:1 29130:4 29135:1 29143:1 29155:1 29167:3 29168:1 29179:1 29182:2 29183:27 29184:2 29186:2 29189:4 29192:1 29193:1 29203:1 29220:1 29221:13 29224:1 29234:1 29239:1 29240:1 29248:1 29276:1 29277:1 29281:2 29289:2 29290:1 29300:1 29301:2 29302:2 29310:1 29325:1 29334:5 29342:4 29346:1 29348:2 29377:3 29381:1 29382:2 29388:1 29394:1 29409:1 29429:1 29430:1 29454:1 29486:1 29495:2 29502:1 29536:1 29537:1 29542:1 29564:1 29573:1 29574:1 29575:1 29581:1 29583:1 29587:2 29589:1 29591:4 29595:2 29600:1 29620:2 29624:1 29636:1 29655:8 29659:1 29661:2 29663:1 29666:4 29669:1 29718:1 29720:1 29741:3 29745:8 29747:1 29749:1 29753:1 29754:1 29771:1 29776:2 29777:2 29790:1 29795:1 29809:1 29812:2 29814:1 29821:1 29841:3 29848:2 29860:1 29891:3 29896:1 29898:1 29901:1 29904:1 29905:2 29907:1 29928:2 29932:3 29935:2 29936:5 29942:1 29950:5 29957:1 29969:2 30003:1 30011:1 30056:1 30080:1 30087:1 30104:3 30107:2 30121:1 30129:4 30160:2 30164:1 30170:1 30177:1 30201:1 30206:1 30210:2 30216:1 30222:3 30232:1 30241:1 30252:1 30269:1 30285:3 30290:1 30292:1 30313:1 30325:2 30341:1 30345:1 30346:6 30348:1 30354:1 30364:2 30401:1 30402:3 30407:1 30429:1 30435:5 30441:2 30446:1 30475:1 30507:1 30512:1 30517:1 30518:1 30524:1 30525:1 30527:5 30533:1 30539:1 30571:1 30576:2 30586:1 30588:1 30592:1 30593:1 30595:1 30599:1 30609:2 30650:1 30660:1 16 5:1 24:1 26:2 27:1 38:1 62:1 69:1 75:5 91:1 94:1 121:1 136:1 150:1 151:1 156:1 160:2 163:1 190:1 197:1 202:1 206:1 220:1 224:4 229:1 230:1 251:2 266:1 285:1 294:4 297:1 315:1 324:1 334:2 335:3 336:1 360:1 368:1 369:1 375:1 392:1 407:1 430:3 436:2 440:2 453:1 463:1 471:1 477:2 489:1 493:1 495:1 502:1 503:1 505:1 510:2 511:2 546:1 547:1 564:5 622:1 625:3 631:1 637:3 647:1 660:3 666:1 673:4 679:1 688:1 694:1 705:1 706:1 710:1 722:1 730:1 737:1 748:1 768:2 778:2 795:1 798:1 815:1 836:1 845:2 853:1 855:1 857:1 870:2 878:1 882:2 895:1 898:2 931:2 935:1 939:2 942:1 943:1 949:1 951:2 965:2 966:2 971:3 973:1 974:3 975:6 976:2 981:2 1002:1 1003:2 1026:1 1028:1 1029:6 1032:2 1038:1 1058:1 1065:2 1069:1 1107:2 1108:1 1131:1 1134:1 1137:1 1155:2 1161:1 1170:2 1171:1 1216:1 1217:3 1220:1 1221:1 1224:1 1233:1 1236:1 1242:2 1253:1 1254:4 1267:2 1273:1 1280:1 1290:2 1291:3 1319:1 1324:1 1325:2 1331:2 1333:4 1336:1 1346:2 1347:5 1348:2 1349:1 1361:1 1365:1 1377:1 1379:1 1389:1 1393:1 1395:3 1409:2 1421:1 1422:1 1446:2 1458:1 1473:1 1476:1 1499:1 1500:3 1503:1 1511:1 1514:1 1516:1 1519:2 1528:1 1538:1 1556:1 1566:6 1574:1 1579:1 1585:6 1590:1 1594:2 1601:1 1602:2 1603:1 1608:3 1609:1 1614:1 1618:1 1624:1 1625:1 1628:4 1642:1 1651:1 1653:1 1657:6 1671:1 1677:2 1681:2 1685:1 1690:2 1696:1 1725:2 1730:1 1734:4 1739:4 1742:2 1743:1 1756:1 1757:1 1759:1 1776:5 1780:3 1788:1 1789:1 1800:1 1802:1 1807:2 1812:1 1826:1 1840:1 1841:1 1855:2 1857:1 1858:1 1860:1 1863:1 1873:3 1886:3 1900:1 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1939:1 1947:1 1951:1 1954:1 1955:1 1964:1 1970:2 1977:1 1982:1 1986:1 1989:1 1997:1 1999:1 2003:1 2005:1 2016:2 2021:1 2023:1 2026:1 2032:1 2035:1 2038:2 2039:4 2042:1 2046:1 2048:1 2052:1 2069:1 2070:3 2072:1 2090:1 2096:1 2101:1 2124:1 2125:1 2131:1 2132:1 2149:1 2153:1 2161:2 2162:2 2164:1 2167:2 2169:1 2170:3 2204:1 2227:1 2231:1 2232:1 2234:3 2235:1 2237:2 2238:1 2239:1 2269:4 2296:2 2307:1 2337:1 2339:1 2346:1 2351:1 2353:3 2363:1 2374:1 2404:2 2405:1 2406:1 2407:2 2408:4 2412:1 2413:1 2415:6 2416:1 2417:1 2420:5 2421:1 2422:4 2424:1 2427:1 2431:1 2434:6 2436:3 2437:7 2442:1 2443:1 2448:1 2450:2 2455:1 2469:1 2473:1 2486:1 2488:1 2495:1 2508:1 2514:1 2518:2 2519:2 2520:1 2525:1 2532:1 2533:3 2538:1 2543:1 2550:1 2556:2 2560:1 2575:1 2597:1 2599:1 2602:1 2623:5 2633:1 2641:1 2645:1 2650:2 2657:2 2659:1 2681:1 2689:1 2693:1 2694:1 2705:1 2742:2 2747:1 2766:1 2797:2 2803:1 2812:4 2819:1 2825:4 2834:1 2841:2 2842:1 2849:1 2852:3 2854:10 2856:2 2872:1 2874:1 2886:1 2888:2 2894:1 2896:1 2900:1 2902:1 2909:3 2912:1 2918:1 2936:2 2943:2 2952:2 2962:1 2963:1 2965:5 2976:4 3019:4 3024:1 3027:1 3030:1 3031:1 3039:1 3056:12 3067:7 3090:2 3099:1 3105:1 3118:30 3127:1 3128:2 3151:1 3152:1 3170:1 3189:1 3196:2 3222:1 3224:2 3227:1 3232:2 3296:3 3299:1 3311:2 3318:1 3342:1 3358:1 3378:1 3379:1 3390:1 3391:1 3397:1 3403:2 3406:4 3417:1 3428:12 3442:1 3454:1 3461:1 3469:2 3485:1 3498:7 3516:1 3543:1 3565:1 3567:1 3574:1 3588:1 3590:2 3601:2 3609:1 3613:1 3628:1 3634:1 3640:1 3643:3 3649:1 3654:1 3661:1 3667:4 3707:1 3711:3 3713:1 3729:1 3730:1 3731:1 3746:3 3764:1 3778:1 3793:1 3796:1 3801:1 3803:4 3804:2 3810:2 3812:1 3813:1 3819:2 3829:2 3839:1 3846:1 3867:1 3886:1 3898:1 3902:2 3903:4 3906:1 3913:1 3918:1 3929:1 3950:1 3958:4 3959:43 3966:1 3981:1 3993:2 3994:1 3995:9 4000:1 4007:1 4009:1 4010:26 4011:2 4012:2 4015:4 4018:1 4027:2 4042:3 4057:2 4058:4 4061:2 4063:2 4076:2 4078:1 4079:1 4095:1 4116:2 4122:1 4123:3 4126:1 4130:1 4134:1 4171:1 4173:1 4176:2 4178:1 4182:1 4183:3 4196:2 4207:2 4209:1 4216:1 4219:1 4223:1 4232:1 4234:1 4235:2 4242:1 4256:1 4258:1 4265:1 4266:2 4267:1 4269:1 4270:1 4285:1 4290:2 4294:1 4297:1 4301:4 4318:4 4324:1 4330:1 4360:1 4368:1 4369:1 4373:1 4381:1 4416:1 4423:1 4436:1 4439:3 4447:1 4463:2 4474:1 4483:1 4486:1 4498:2 4504:1 4505:2 4508:1 4509:1 4539:1 4547:2 4555:1 4557:1 4563:1 4586:1 4599:1 4611:1 4623:1 4636:13 4650:1 4665:1 4697:2 4701:1 4706:5 4715:1 4718:2 4749:7 4767:1 4773:1 4781:1 4787:1 4796:1 4840:1 4854:1 4855:2 4880:1 4896:1 4900:1 4906:2 4909:1 4921:2 4927:1 4930:2 4938:1 4948:4 4959:1 4966:4 4989:3 4993:2 4994:1 5014:1 5044:1 5058:1 5059:1 5062:1 5064:1 5076:1 5090:1 5092:2 5100:2 5153:2 5159:1 5186:1 5189:1 5191:1 5201:17 5202:2 5211:1 5219:1 5231:2 5241:1 5257:1 5260:2 5275:1 5281:1 5288:1 5308:3 5314:1 5320:3 5321:1 5323:4 5340:1 5344:2 5345:4 5347:8 5348:1 5350:1 5351:1 5353:1 5354:2 5356:1 5361:1 5362:23 5363:1 5365:1 5370:2 5371:3 5376:2 5377:1 5397:1 5401:3 5425:2 5453:2 5467:1 5478:1 5483:1 5486:1 5488:1 5491:1 5560:1 5593:3 5594:3 5603:5 5610:1 5648:1 5652:1 5670:1 5675:2 5677:23 5684:1 5703:1 5710:3 5712:1 5735:3 5771:1 5774:1 5786:1 5810:1 5816:1 5819:2 5830:1 5836:1 5839:1 5848:1 5851:1 5856:2 5857:1 5863:1 5901:1 5902:1 5904:1 5908:1 5911:1 5920:1 5921:1 5922:2 5932:1 5943:3 5951:1 5954:1 5956:1 5962:2 5965:1 5967:1 5973:2 5978:1 5987:2 5991:1 5993:1 6018:1 6021:5 6038:2 6044:1 6061:1 6063:1 6065:1 6068:1 6079:1 6086:1 6094:1 6095:1 6097:1 6101:1 6103:1 6114:1 6115:1 6118:1 6121:1 6136:1 6140:1 6141:1 6142:1 6179:1 6199:3 6217:1 6219:5 6221:1 6227:1 6231:1 6239:1 6243:1 6257:1 6280:1 6305:2 6330:1 6334:1 6364:1 6368:3 6371:8 6380:1 6386:2 6410:2 6415:1 6420:1 6421:1 6444:1 6463:1 6465:1 6471:1 6474:1 6480:1 6481:2 6488:1 6490:2 6491:2 6492:1 6498:1 6499:1 6528:4 6529:1 6536:1 6539:2 6540:2 6564:1 6568:1 6588:1 6591:3 6596:1 6602:1 6618:5 6621:1 6635:1 6636:1 6639:1 6648:1 6654:1 6660:1 6673:1 6721:6 6724:2 6725:1 6726:1 6727:1 6728:1 6730:2 6731:2 6734:2 6735:3 6736:5 6743:2 6744:7 6745:1 6746:1 6747:2 6756:1 6773:1 6776:1 6797:3 6802:1 6820:1 6833:2 6836:1 6872:1 6875:1 6878:1 6886:1 6895:2 6901:1 6930:1 6932:1 6970:1 6977:1 6984:1 6994:3 7000:2 7002:1 7019:1 7026:1 7027:5 7032:3 7035:1 7039:1 7046:1 7047:1 7060:2 7080:1 7082:1 7083:3 7087:1 7088:2 7114:1 7115:1 7118:1 7126:1 7148:1 7166:1 7171:1 7175:1 7192:3 7200:2 7201:2 7204:1 7216:3 7220:1 7222:2 7231:3 7236:3 7242:1 7257:1 7264:1 7267:3 7273:1 7308:1 7322:1 7325:1 7328:1 7333:1 7335:2 7342:1 7363:1 7375:1 7384:1 7407:2 7412:1 7432:2 7433:1 7448:1 7455:1 7456:2 7495:1 7522:2 7542:1 7548:1 7556:2 7573:1 7574:1 7577:5 7580:1 7585:3 7589:1 7601:1 7603:1 7610:1 7612:1 7625:1 7635:1 7653:1 7705:1 7717:1 7728:1 7733:1 7769:1 7774:1 7779:1 7782:1 7788:5 7830:1 7840:3 7874:4 7915:2 7926:1 7932:2 7954:1 7963:2 7968:1 7993:1 7997:2 7998:1 8004:1 8005:2 8023:1 8027:1 8031:4 8054:1 8064:4 8065:5 8066:3 8084:1 8089:2 8094:2 8097:1 8100:1 8105:1 8121:1 8122:2 8128:1 8130:1 8131:46 8133:1 8134:1 8140:2 8142:1 8151:12 8152:26 8161:1 8164:1 8170:1 8173:1 8207:1 8208:5 8238:1 8254:1 8273:1 8279:2 8302:2 8307:1 8316:1 8321:1 8362:3 8365:7 8372:1 8408:1 8413:1 8415:5 8430:1 8433:1 8450:1 8457:1 8467:1 8478:1 8492:1 8521:1 8523:3 8531:2 8540:7 8546:2 8550:1 8559:1 8567:1 8570:2 8585:2 8590:1 8597:2 8603:1 8610:1 8623:1 8624:1 8633:19 8651:1 8655:1 8664:2 8665:1 8687:2 8718:1 8724:1 8733:2 8742:1 8748:1 8753:2 8760:4 8764:1 8779:1 8789:1 8793:3 8798:4 8803:2 8816:2 8820:4 8830:1 8840:2 8842:1 8845:2 8850:1 8857:1 8858:2 8863:2 8873:1 8884:2 8887:2 8895:1 8898:1 8899:1 8915:2 8932:1 8938:1 8942:3 8953:1 8959:1 8966:1 8973:1 8979:1 8980:2 8983:1 8984:3 8985:2 8986:2 8987:5 8990:1 8991:1 8995:2 8998:2 9000:2 9004:3 9020:1 9027:2 9035:2 9039:3 9040:1 9041:1 9045:1 9046:1 9058:1 9061:1 9072:1 9075:2 9081:1 9086:2 9109:1 9112:5 9135:1 9139:5 9146:1 9148:1 9149:1 9151:2 9158:1 9164:1 9169:1 9204:1 9205:1 9209:1 9215:3 9225:3 9227:1 9248:2 9268:4 9269:2 9273:4 9274:1 9276:1 9277:4 9280:3 9286:2 9301:3 9302:1 9304:4 9316:1 9318:1 9339:2 9345:1 9400:1 9420:2 9439:2 9442:2 9450:1 9453:1 9463:1 9471:1 9478:1 9480:1 9495:1 9504:1 9506:1 9508:1 9523:1 9539:1 9561:3 9589:2 9592:1 9594:4 9605:1 9608:1 9618:7 9640:2 9646:3 9651:1 9658:1 9662:1 9663:1 9677:1 9686:1 9695:3 9697:1 9715:1 9718:1 9719:1 9721:1 9732:2 9776:1 9781:1 9809:1 9818:1 9825:1 9840:1 9867:1 9870:1 9874:1 9877:3 9882:2 9888:1 9889:2 9890:1 9909:1 9928:2 9930:1 9937:2 9940:1 9942:1 9972:1 9973:1 9977:3 9983:1 9993:1 9994:1 10009:1 10037:23 10043:1 10060:1 10069:2 10078:4 10084:2 10085:1 10109:1 10114:1 10117:1 10120:1 10127:1 10128:1 10130:2 10146:2 10152:1 10156:1 10169:14 10184:2 10185:1 10190:2 10202:1 10211:1 10223:5 10229:1 10235:1 10238:3 10239:1 10240:1 10241:1 10259:1 10269:1 10275:1 10281:1 10286:1 10317:2 10321:3 10322:1 10336:1 10356:8 10362:2 10363:4 10364:2 10371:3 10379:1 10380:1 10387:2 10393:3 10395:1 10396:1 10400:2 10406:2 10410:4 10413:4 10415:1 10416:1 10423:1 10438:1 10440:1 10446:3 10450:3 10468:1 10470:2 10483:1 10493:2 10533:1 10547:1 10549:3 10552:1 10577:12 10580:1 10581:6 10596:1 10601:1 10602:1 10627:1 10651:4 10691:1 10698:2 10707:1 10718:1 10731:1 10735:2 10757:4 10763:1 10777:1 10780:4 10784:1 10789:1 10791:1 10794:1 10809:1 10828:1 10830:1 10850:1 10868:1 10880:2 10892:5 10898:1 10903:1 10907:1 10917:2 10923:1 10935:2 10939:1 10957:2 10962:7 10972:1 10973:1 10998:1 11009:2 11026:3 11028:2 11031:2 11040:1 11047:6 11060:2 11061:4 11062:1 11063:3 11070:1 11081:1 11084:1 11087:1 11105:1 11106:3 11120:1 11126:1 11134:4 11145:1 11148:2 11156:1 11160:2 11166:7 11230:1 11231:1 11234:1 11237:1 11260:2 11261:2 11262:1 11268:1 11276:1 11297:1 11305:1 11315:1 11324:1 11359:1 11364:1 11366:1 11371:1 11388:2 11389:1 11399:1 11400:7 11417:4 11418:7 11430:3 11441:1 11443:1 11453:1 11458:2 11469:1 11477:4 11482:1 11499:1 11512:2 11528:1 11529:2 11535:5 11546:1 11556:3 11564:1 11569:3 11582:1 11595:1 11597:1 11598:1 11622:1 11626:1 11628:1 11641:1 11653:1 11668:1 11673:1 11676:1 11677:1 11678:1 11680:1 11683:1 11684:4 11685:1 11703:1 11710:1 11718:1 11721:2 11740:1 11745:1 11753:1 11754:1 11779:2 11808:1 11810:4 11816:1 11819:1 11820:2 11824:1 11830:1 11831:1 11839:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11885:1 11887:4 11914:1 11918:1 11923:3 11926:6 11929:1 11931:2 11942:3 11961:1 11985:1 11986:1 11989:1 11991:1 11994:2 12009:1 12029:3 12045:1 12056:1 12063:1 12065:5 12066:2 12076:1 12077:3 12081:1 12093:2 12095:3 12098:2 12107:1 12120:1 12130:3 12135:1 12146:3 12153:2 12155:9 12157:1 12170:1 12171:1 12176:1 12177:1 12181:1 12182:1 12189:1 12190:3 12192:1 12193:7 12194:1 12200:1 12202:7 12210:1 12218:1 12222:1 12228:10 12253:2 12266:5 12270:1 12275:2 12280:1 12293:1 12314:1 12325:4 12333:1 12335:1 12337:2 12373:1 12375:1 12385:3 12406:1 12412:1 12415:2 12423:1 12440:1 12451:1 12459:1 12470:2 12471:2 12506:2 12508:1 12539:1 12555:5 12594:2 12609:1 12616:1 12623:1 12625:1 12628:1 12629:1 12632:1 12637:1 12654:4 12655:4 12656:23 12660:6 12671:1 12679:1 12681:2 12698:2 12705:1 12716:2 12745:1 12749:1 12766:2 12784:1 12788:1 12815:1 12824:9 12825:2 12841:1 12845:1 12846:4 12850:2 12871:1 12894:1 12902:3 12906:1 12929:1 12936:1 12943:2 12947:1 12953:1 12961:1 12976:2 12992:1 13011:1 13015:2 13019:1 13035:4 13054:2 13057:1 13092:1 13095:3 13103:1 13106:1 13107:1 13110:1 13114:1 13117:1 13129:1 13146:1 13166:1 13167:1 13174:1 13175:1 13183:1 13207:1 13227:6 13240:1 13241:1 13243:1 13248:1 13251:1 13276:2 13277:4 13304:1 13307:3 13342:1 13371:1 13376:2 13404:1 13424:1 13429:2 13433:1 13440:1 13441:1 13443:2 13472:1 13486:2 13488:1 13494:1 13522:1 13524:1 13580:1 13597:5 13599:1 13609:1 13613:1 13614:1 13623:1 13624:3 13630:1 13649:2 13652:1 13656:1 13661:1 13664:1 13673:1 13681:1 13684:2 13688:1 13700:2 13709:1 13711:1 13712:1 13714:2 13720:1 13735:1 13739:2 13740:1 13768:1 13775:1 13776:1 13780:2 13816:2 13821:3 13823:1 13832:1 13833:2 13835:1 13838:7 13842:4 13843:1 13851:2 13853:1 13856:1 13858:3 13873:3 13875:1 13878:2 13883:3 13898:1 13915:7 13916:1 13923:1 13926:1 13930:1 13931:3 13943:1 13944:2 13958:2 13981:2 13993:3 13994:1 14011:4 14016:1 14027:1 14028:1 14037:1 14050:2 14063:3 14078:1 14080:1 14085:2 14086:7 14112:2 14113:2 14114:2 14115:1 14116:1 14129:3 14145:1 14152:1 14156:1 14157:2 14177:1 14189:2 14206:1 14221:2 14223:1 14228:1 14234:1 14237:2 14238:2 14239:2 14241:2 14245:1 14264:1 14274:1 14275:1 14278:1 14279:1 14280:1 14291:1 14296:2 14298:1 14307:1 14310:1 14311:1 14315:2 14318:1 14320:1 14334:1 14335:1 14366:8 14375:2 14377:1 14382:1 14422:1 14426:1 14445:1 14446:1 14447:2 14450:2 14468:2 14471:2 14472:1 14477:5 14503:1 14522:1 14529:1 14533:1 14544:2 14546:3 14552:2 14553:6 14563:2 14584:2 14592:3 14610:1 14622:2 14642:2 14644:1 14649:2 14650:1 14654:1 14664:1 14665:2 14670:2 14688:1 14699:1 14704:1 14769:1 14771:1 14777:1 14780:1 14785:2 14806:1 14833:1 14845:1 14862:1 14887:1 14891:3 14901:1 14921:1 14922:1 14935:1 14952:1 14958:1 14971:1 14976:3 14986:2 14987:1 14997:1 15002:1 15008:5 15010:1 15011:1 15019:1 15020:1 15032:2 15033:1 15054:1 15060:1 15068:1 15072:1 15088:1 15096:2 15102:1 15120:1 15127:1 15141:1 15157:1 15162:1 15166:1 15174:1 15181:2 15190:1 15196:4 15216:2 15233:1 15238:1 15247:2 15252:1 15276:1 15290:1 15319:4 15330:1 15346:1 15364:1 15402:1 15475:1 15476:1 15487:1 15493:1 15507:2 15538:4 15547:3 15548:2 15552:1 15554:1 15556:1 15573:1 15577:1 15597:2 15605:1 15625:1 15641:1 15643:2 15646:1 15655:3 15672:1 15683:1 15693:1 15695:2 15697:1 15701:1 15702:2 15725:1 15734:2 15771:1 15772:1 15775:1 15780:1 15781:1 15788:1 15805:1 15813:1 15814:1 15868:2 15875:3 15876:4 15881:1 15907:4 15908:1 15911:1 15933:1 15951:4 15955:2 15961:1 15962:1 15968:1 15984:1 15999:1 16001:1 16008:1 16018:1 16021:3 16028:2 16032:2 16038:2 16054:1 16066:1 16073:2 16088:1 16096:1 16111:1 16121:1 16122:1 16140:1 16148:3 16153:1 16167:9 16172:8 16174:1 16181:1 16207:2 16218:1 16221:2 16222:2 16235:3 16255:1 16263:1 16270:1 16277:1 16279:1 16303:3 16307:1 16309:1 16317:6 16325:3 16327:1 16334:1 16336:1 16337:2 16345:3 16347:1 16349:1 16352:1 16353:5 16356:2 16357:7 16358:1 16363:2 16367:2 16368:1 16369:1 16378:1 16379:6 16386:4 16387:2 16427:1 16467:1 16480:1 16484:2 16494:1 16495:2 16498:1 16501:2 16507:6 16519:1 16530:2 16532:1 16543:2 16561:2 16564:3 16578:1 16593:2 16610:1 16617:1 16623:1 16630:1 16638:3 16644:1 16646:8 16659:2 16660:2 16661:1 16673:1 16674:2 16677:1 16678:4 16692:1 16697:1 16706:23 16714:1 16734:1 16739:5 16740:1 16743:1 16761:2 16775:66 16794:3 16799:1 16831:1 16861:1 16864:1 16866:1 16867:3 16884:1 16904:1 16908:1 16913:2 16915:1 16916:2 16919:2 16920:4 16921:1 16927:2 16930:1 16931:2 16944:1 16957:1 16961:1 16965:1 16971:1 16980:1 16981:1 17010:1 17013:1 17047:1 17055:5 17075:1 17090:2 17095:2 17116:1 17130:1 17135:2 17139:1 17153:1 17192:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:2 17253:1 17294:2 17295:1 17317:1 17322:1 17326:1 17336:3 17342:4 17343:1 17347:1 17369:1 17372:3 17392:3 17398:1 17405:2 17414:1 17415:1 17422:1 17424:3 17426:1 17427:2 17429:1 17435:1 17438:1 17445:1 17450:1 17454:3 17459:1 17460:13 17470:1 17474:1 17500:2 17514:2 17520:1 17521:2 17553:1 17559:1 17561:1 17564:2 17582:1 17583:2 17585:3 17587:1 17589:3 17593:1 17596:2 17608:1 17613:1 17614:1 17625:1 17635:1 17641:1 17645:2 17646:2 17675:2 17678:2 17689:1 17711:1 17717:1 17718:3 17727:1 17742:1 17771:1 17788:1 17792:1 17797:2 17800:1 17816:1 17819:1 17820:1 17821:2 17822:1 17831:1 17835:1 17843:2 17844:1 17849:3 17859:2 17871:1 17875:1 17877:3 17881:1 17889:1 17896:1 17897:1 17906:3 17912:1 17932:2 17933:1 17952:1 17957:1 17972:2 17997:1 17998:2 18006:1 18011:1 18012:1 18034:4 18083:1 18087:1 18093:1 18099:1 18110:1 18112:1 18115:1 18129:5 18131:1 18134:1 18136:1 18144:1 18147:2 18148:1 18153:1 18154:1 18169:1 18171:2 18174:2 18182:1 18187:1 18188:1 18197:2 18206:1 18214:1 18221:1 18222:1 18223:1 18226:1 18241:1 18248:2 18249:2 18277:1 18280:1 18282:2 18285:1 18286:1 18310:1 18330:3 18338:2 18342:1 18355:1 18366:3 18410:3 18412:1 18414:1 18415:1 18417:2 18421:2 18423:2 18424:1 18441:1 18442:13 18446:2 18460:1 18474:1 18478:2 18489:1 18506:1 18517:1 18524:1 18543:1 18544:2 18546:3 18559:2 18562:2 18565:1 18576:1 18583:1 18584:1 18589:1 18598:1 18602:1 18625:1 18629:4 18633:4 18634:2 18636:1 18646:2 18676:1 18678:1 18707:1 18709:1 18731:1 18748:3 18749:1 18757:1 18781:1 18786:1 18797:1 18805:1 18807:1 18815:1 18816:1 18819:3 18831:2 18838:1 18855:1 18856:1 18860:1 18866:1 18872:1 18873:3 18879:1 18907:1 18922:4 18928:1 18932:2 18954:1 18956:4 18966:1 18977:4 18980:1 18984:1 18987:3 19006:2 19007:1 19016:1 19018:2 19022:1 19078:1 19079:1 19098:2 19113:1 19114:11 19118:1 19125:1 19132:1 19145:1 19160:1 19170:1 19182:1 19183:1 19190:3 19191:2 19193:1 19194:1 19210:1 19217:1 19219:1 19225:1 19229:2 19241:1 19244:5 19250:2 19251:1 19265:4 19269:2 19272:1 19276:2 19277:1 19315:1 19323:3628 19328:1 19342:4 19343:1 19348:2 19376:1 19385:1 19395:2 19405:1 19410:1 19413:3 19414:1 19421:1 19449:1 19452:3 19473:2 19482:2 19505:1 19507:5 19509:2 19530:3 19536:1 19539:3 19541:1 19543:1 19571:1 19584:1 19586:1 19596:1 19609:1 19632:1 19636:5 19638:1 19642:1 19654:1 19658:1 19664:1 19670:1 19696:3 19702:1 19708:1 19721:2 19733:1 19743:1 19751:1 19756:1 19758:1 19804:1 19815:1 19817:2 19820:1 19831:4 19845:2 19856:1 19857:1 19869:1 19875:1 19882:1 19918:1 19919:4 19933:3 19984:1 20004:1 20024:1 20030:1 20032:2 20043:1 20048:2 20050:1 20057:2 20074:4 20086:2 20090:1 20091:4 20095:1 20107:4 20121:16 20141:1 20142:1 20144:3 20146:1 20147:22 20159:2 20177:1 20178:6 20180:1 20181:1 20197:2 20212:1 20216:4 20236:1 20243:2 20248:1 20250:6 20252:2 20255:1 20260:1 20262:1 20277:2 20278:1 20279:1 20283:1 20287:1 20313:1 20319:3 20326:1 20339:1 20349:3 20363:1 20387:1 20389:1 20392:1 20447:1 20451:1 20458:1 20477:1 20486:1 20492:1 20493:1 20502:1 20523:1 20524:13 20527:1 20565:1 20573:1 20596:1 20605:1 20613:1 20619:1 20623:7 20644:1 20648:1 20656:1 20669:2 20682:1 20688:1 20691:1 20709:1 20714:1 20719:1 20720:1 20722:2 20724:2 20725:1 20731:2 20749:1 20779:4 20782:1 20787:1 20789:1 20796:1 20811:3 20814:1 20821:1 20839:3 20849:1 20853:1 20871:1 20877:5 20894:2 20897:1 20903:2 20907:1 20908:2 20918:2 20920:1 20923:7 20942:1 20970:1 20972:1 20976:1 20987:1 20996:15 21002:1 21014:2 21017:3 21030:1 21033:1 21049:1 21050:13 21066:1 21088:1 21099:1 21103:1 21105:1 21131:1 21144:2 21175:1 21182:1 21196:2 21213:1 21214:4 21216:2 21225:1 21231:1 21258:2 21293:1 21301:5 21312:1 21313:1 21316:3 21328:1 21330:1 21331:1 21339:1 21343:1 21344:1 21355:1 21389:1 21392:1 21413:2 21451:2 21466:1 21468:1 21474:1 21487:1 21495:1 21500:2 21511:1 21528:1 21529:1 21532:2 21554:1 21556:1 21560:1 21575:1 21596:3 21625:2 21630:1 21631:1 21633:1 21634:1 21638:1 21643:13 21652:1 21655:2 21660:3 21663:5 21664:1 21674:3 21678:1 21684:5 21690:1 21708:4 21711:1 21716:2 21722:1 21723:1 21741:1 21755:2 21756:1 21757:1 21769:2 21773:1 21789:2 21797:1 21798:1 21822:8 21829:1 21830:2 21835:1 21847:1 21852:1 21863:1 21874:1 21891:1 21896:1 21911:1 21915:1 21916:1 21932:2 21936:1 21939:1 21943:1 21949:1 21962:3 21977:1 21980:1 21986:2 21987:1 21992:1 21996:1 22003:1 22005:1 22041:1 22048:2 22050:1 22105:1 22106:1 22142:1 22147:1 22151:1 22154:4 22157:2 22159:3 22170:4 22179:1 22181:1 22183:1 22223:1 22228:1 22232:1 22233:1 22236:2 22241:2 22251:1 22258:1 22268:1 22273:2 22281:1 22285:1 22286:1 22298:2 22300:6 22305:3 22309:1 22319:1 22320:1 22325:1 22332:1 22342:1 22349:1 22354:1 22382:2 22383:1 22384:2 22389:2 22396:2 22405:1 22406:1 22409:1 22422:1 22425:4 22427:17 22430:1 22447:1 22456:2 22457:2 22461:1 22466:1 22469:1 22479:1 22481:1 22501:5 22515:1 22534:2 22538:3 22540:1 22542:1 22549:4 22563:1 22579:1 22600:1 22603:1 22604:1 22606:1 22607:4 22614:2 22618:3 22621:1 22671:1 22693:4 22702:2 22703:1 22705:11 22709:3 22712:2 22720:2 22721:1 22723:1 22734:2 22735:1 22736:3 22740:1 22746:2 22748:2 22750:1 22756:1 22757:1 22758:1 22764:1 22769:2 22772:2 22777:1 22795:2 22800:1 22822:1 22833:5 22834:1 22856:1 22860:1 22866:1 22868:2 22874:2 22877:1 22881:1 22895:1 22901:1 22906:1 22909:4 22917:1 22926:1 22929:1 22937:1 22969:1 22985:23 22987:2 22990:1 23008:1 23027:1 23032:2 23052:1 23065:1 23073:1 23076:4 23093:1 23096:2 23102:1 23106:1 23112:2 23125:2 23133:1 23136:8 23153:2 23160:4 23166:1 23199:1 23202:2 23209:1 23212:1 23215:2 23221:2 23225:1 23236:1 23239:1 23244:1 23246:2 23256:1 23269:2 23271:1 23284:10 23302:4 23311:1 23317:4 23325:1 23336:1 23360:1 23376:2 23390:1 23391:1 23413:1 23445:1 23454:3 23459:1 23462:1 23473:1 23481:1 23493:1 23496:4 23514:1 23517:1 23534:1 23535:1 23549:1 23554:1 23570:1 23573:1 23574:2 23575:2 23579:15 23581:1 23583:2 23600:1 23611:2 23624:1 23629:1 23632:1 23639:1 23648:2 23652:1 23655:1 23662:3 23665:1 23666:2 23669:1 23673:1 23687:1 23695:1 23699:3 23710:1 23716:1 23717:5 23721:1 23750:1 23752:1 23765:2 23767:1 23788:2 23801:1 23805:1 23807:1 23813:1 23819:2 23838:1 23851:1 23859:1 23864:1 23875:1 23878:2 23879:1 23891:2 23903:1 23913:1 23948:1 23955:1 23968:1 23969:1 23971:5 23978:1 23987:1 24002:1 24003:1 24012:2 24015:1 24023:1 24034:1 24049:1 24060:1 24087:1 24090:2 24103:1 24108:2 24113:1 24119:2 24124:4 24128:1 24141:1 24151:1 24168:2 24177:1 24183:1 24187:3 24188:5 24195:1 24196:1 24207:6 24216:1 24219:1 24231:1 24232:1 24235:1 24237:3 24241:2 24247:1 24252:1 24273:2 24274:1 24280:1 24281:2 24283:1 24293:1 24296:1 24329:5 24336:1 24340:27 24344:1 24391:1 24408:1 24419:1 24432:2 24438:1 24440:2 24441:1 24444:1 24449:1 24464:1 24478:1 24504:3 24506:1 24508:1 24509:2 24533:1 24534:1 24538:1 24548:1 24568:1 24571:1 24591:1 24602:1 24625:1 24653:1 24656:2 24668:2 24685:1 24702:4 24714:1 24717:1 24745:1 24755:1 24756:1 24761:1 24775:1 24777:1 24797:2 24814:3 24827:2 24833:1 24838:2 24839:1 24841:1 24844:2 24845:1 24859:1 24873:1 24881:1 24890:1 24907:1 24921:1 24931:1 24932:1 24939:1 24944:2 24970:1 24976:1 24999:1 25004:1 25005:6 25014:1 25021:1 25023:1 25027:1 25028:1 25049:2 25073:2 25090:1 25122:1 25125:1 25139:1 25147:3 25158:1 25181:1 25190:1 25194:5 25211:1 25220:1 25252:2 25259:1 25264:1 25273:1 25275:1 25285:2 25287:5 25288:1 25292:1 25311:1 25319:1 25325:2 25327:2 25331:1 25335:1 25339:3 25347:2 25351:1 25384:2 25385:2 25398:2 25415:1 25419:2 25431:2 25447:1 25468:1 25471:1 25472:1 25487:1 25495:4 25503:3 25507:1 25510:1 25514:1 25526:1 25527:1 25534:1 25549:1 25551:1 25560:1 25561:2 25570:1 25576:2 25577:1 25587:1 25597:1 25598:2 25614:1 25623:1 25627:2 25631:1 25634:1 25643:1 25652:1 25664:1 25673:1 25676:1 25684:1 25688:1 25716:1 25718:1 25722:1 25733:1 25740:2 25778:3 25797:5 25823:1 25832:1 25836:1 25852:1 25860:1 25871:1 25872:1 25878:2 25880:1 25884:1 25893:5 25894:1 25900:1 25918:2 25921:1 25922:1 25952:2 25966:1 25980:4 25998:1 26004:1 26007:1 26011:1 26021:1 26048:1 26058:4 26073:1 26076:1 26097:8 26099:1 26119:1 26123:1 26124:1 26150:2 26156:5 26159:1 26167:1 26169:1 26172:4 26175:1 26176:1 26207:1 26226:1 26232:1 26257:1 26304:1 26315:1 26316:1 26318:2 26319:1 26320:2 26322:8 26324:3 26331:1 26356:1 26371:1 26372:3 26376:1 26377:2 26403:1 26413:1 26415:6 26416:1 26424:1 26429:4 26435:5 26436:2 26445:2 26458:1 26460:1 26463:1 26472:1 26489:2 26513:6 26518:1 26524:1 26525:1 26534:1 26538:2 26548:1 26564:2 26579:1 26589:3 26608:1 26627:5 26628:1 26652:2 26653:4 26659:1 26681:2 26689:1 26712:1 26717:1 26728:3 26754:1 26761:1 26781:1 26782:4 26808:1 26813:1 26835:1 26839:1 26842:2 26844:1 26848:1 26862:1 26865:1 26868:2 26871:2 26891:1 26893:1 26898:1 26901:1 26912:1 26915:1 26920:1 26934:2 26935:1 26938:1 26949:2 26955:1 26956:1 26964:1 26977:6 26981:1 26982:1 26985:1 26989:2 27000:1 27001:1 27003:1 27008:2 27010:2 27029:1 27056:1 27065:2 27078:1 27099:1 27102:1 27107:1 27113:1 27115:3 27138:11 27144:1 27178:1 27185:1 27188:1 27192:2 27212:1 27223:1 27244:1 27252:1 27257:1 27266:1 27280:3 27288:1 27292:1 27295:1 27308:1 27314:2 27332:1 27394:2 27407:3 27422:5 27424:2 27426:1 27431:1 27438:2 27439:1 27440:4 27441:9 27444:1 27450:1 27470:1 27490:2 27521:1 27531:1 27534:1 27540:4 27548:1 27552:1 27571:1 27580:3 27600:1 27601:1 27607:1 27611:1 27621:2 27625:1 27626:1 27636:1 27663:1 27668:1 27673:1 27676:1 27709:1 27718:1 27735:1 27755:1 27775:1 27799:1 27809:1 27824:1 27834:1 27852:1 27854:2 27863:1 27875:1 27883:2 27893:2 27910:2 27925:1 27939:1 27949:1 27950:1 27957:1 28004:2 28005:2 28017:2 28059:1 28087:1 28095:2 28099:5 28110:1 28113:1 28118:1 28121:9 28137:1 28154:2 28155:1 28207:1 28211:1 28223:27 28224:1 28227:3 28230:1 28238:1 28246:1 28258:5 28285:1 28288:1 28331:1 28338:2 28340:3 28342:4 28343:2 28349:1 28356:1 28385:2 28388:1 28391:1 28395:1 28398:1 28405:2 28410:2 28413:2 28419:2 28421:1 28429:1 28430:1 28431:1 28432:1 28437:3 28443:1 28448:3 28450:1 28472:2 28482:1 28496:1 28499:2 28514:1 28524:2 28525:1 28526:1 28544:1 28548:1 28551:1 28574:1 28581:2 28593:1 28600:1 28644:1 28645:1 28659:1 28663:1 28669:2 28674:1 28675:1 28680:1 28681:1 28684:1 28696:3 28697:1 28726:1 28754:9 28762:1 28771:1 28786:1 28795:2 28798:1 28839:3 28848:3 28866:1 28870:1 28874:2 28878:1 28912:1 28928:1 28931:3 28939:1 28962:2 28966:1 28974:1 28975:1 29000:5 29004:4 29028:1 29030:1 29039:2 29041:1 29051:1 29055:1 29069:1 29073:1 29111:1 29112:1 29130:4 29135:1 29143:1 29155:1 29167:3 29168:1 29179:1 29182:2 29183:28 29184:2 29186:3 29189:4 29192:1 29193:1 29203:1 29220:1 29221:13 29224:1 29234:1 29239:1 29240:1 29248:1 29276:1 29277:1 29281:2 29289:2 29290:1 29300:1 29301:2 29302:2 29310:1 29320:1 29325:1 29334:6 29342:4 29346:1 29348:2 29377:3 29381:1 29382:2 29388:1 29394:1 29409:1 29410:1 29429:1 29430:1 29454:1 29463:1 29486:1 29495:2 29502:1 29536:1 29537:1 29542:1 29564:1 29573:1 29574:1 29575:1 29581:1 29583:1 29587:2 29589:1 29591:4 29595:2 29600:1 29615:1 29620:2 29624:1 29636:1 29655:8 29659:1 29661:3 29663:1 29666:4 29669:1 29718:1 29720:1 29741:3 29745:8 29747:1 29749:1 29753:1 29754:1 29771:1 29776:2 29777:2 29790:1 29795:1 29809:1 29812:2 29814:1 29821:1 29841:3 29848:2 29860:1 29891:3 29896:1 29898:1 29901:2 29904:1 29905:2 29907:1 29928:2 29932:3 29935:2 29936:5 29942:1 29950:5 29957:1 29969:2 30003:1 30011:1 30056:1 30080:1 30087:1 30104:3 30107:2 30121:1 30129:4 30160:2 30164:1 30170:1 30177:1 30201:1 30206:1 30210:2 30216:1 30222:3 30232:1 30241:1 30246:1 30252:1 30269:1 30285:3 30288:1 30290:1 30292:1 30294:1 30313:1 30325:2 30341:1 30344:1 30345:1 30346:6 30348:1 30354:1 30364:2 30401:1 30402:3 30407:1 30429:1 30435:5 30441:2 30446:1 30475:1 30507:1 30510:1 30512:1 30517:1 30518:1 30524:1 30525:1 30527:5 30533:1 30539:1 30571:1 30576:2 30586:1 30588:1 30592:1 30593:1 30595:1 30599:1 30609:2 30650:1 30658:1 30660:1 16 5:1 24:1 26:2 27:1 38:1 62:1 69:1 74:1 75:5 91:1 94:1 121:1 136:1 150:1 151:2 156:1 160:2 163:1 190:1 197:1 202:2 206:1 220:1 224:4 229:1 230:1 251:2 266:1 285:1 294:4 297:1 315:1 324:1 334:2 335:3 336:1 360:1 368:1 369:1 375:1 392:1 407:1 430:3 436:2 440:2 453:1 463:1 471:1 477:2 489:1 493:1 495:1 502:1 503:1 505:1 510:2 511:2 546:1 547:1 564:5 622:1 625:3 631:1 637:3 647:1 660:3 666:1 673:4 679:1 688:1 694:1 705:1 706:1 710:1 722:1 730:1 737:1 748:1 768:2 778:2 795:1 798:1 815:1 836:1 845:2 853:1 855:1 857:1 870:3 878:1 882:2 887:1 895:1 898:2 931:2 935:1 939:2 942:1 943:1 949:1 951:2 965:2 966:2 971:3 973:1 974:3 975:6 976:2 981:2 1002:1 1003:2 1026:1 1028:1 1029:6 1032:2 1038:1 1058:1 1065:2 1069:1 1107:2 1108:1 1131:1 1134:1 1137:1 1155:2 1161:1 1170:2 1171:1 1196:1 1216:1 1217:3 1220:1 1221:1 1224:1 1233:1 1236:1 1242:2 1253:1 1254:4 1267:2 1273:1 1277:1 1280:1 1290:2 1291:3 1319:1 1324:1 1325:2 1331:2 1333:4 1336:1 1346:2 1347:5 1348:2 1349:1 1361:1 1365:1 1377:1 1379:1 1389:1 1393:1 1395:3 1409:2 1421:1 1422:1 1446:2 1458:1 1473:1 1476:1 1499:1 1500:3 1503:1 1511:1 1514:1 1516:1 1519:2 1528:1 1538:1 1556:1 1566:6 1574:1 1579:1 1585:6 1590:1 1594:2 1601:1 1602:2 1603:1 1608:3 1609:1 1614:1 1618:1 1624:1 1625:1 1628:4 1642:1 1651:1 1653:1 1657:8 1671:1 1677:3 1679:1 1680:1 1681:2 1685:1 1690:2 1696:1 1725:2 1730:1 1734:4 1739:4 1742:2 1743:1 1756:1 1757:1 1759:1 1776:5 1780:3 1788:1 1789:1 1800:1 1802:1 1807:2 1812:1 1826:1 1840:1 1841:1 1855:2 1857:1 1858:1 1860:1 1863:1 1873:3 1886:4 1900:1 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1939:1 1947:1 1951:1 1954:1 1955:1 1964:1 1970:2 1977:1 1982:1 1986:1 1989:1 1997:1 1999:1 2003:1 2005:1 2016:3 2021:1 2023:1 2026:1 2032:1 2035:1 2038:2 2039:4 2042:1 2046:1 2048:1 2052:1 2069:1 2070:3 2072:1 2090:1 2096:1 2101:1 2124:1 2125:1 2131:1 2132:1 2149:1 2153:1 2161:2 2162:2 2164:1 2167:2 2169:1 2170:3 2204:1 2227:1 2231:1 2232:1 2234:3 2235:1 2237:2 2238:1 2239:1 2269:4 2296:2 2307:1 2337:1 2339:1 2346:1 2351:1 2353:3 2363:1 2374:1 2404:2 2405:1 2406:1 2407:2 2408:4 2412:2 2413:1 2415:6 2416:1 2417:1 2420:5 2421:1 2422:4 2424:1 2427:1 2431:1 2434:6 2436:3 2437:7 2442:1 2443:1 2448:1 2450:2 2455:1 2461:1 2469:1 2473:1 2486:1 2488:1 2495:1 2508:1 2514:1 2518:2 2519:2 2520:1 2525:1 2532:1 2533:3 2538:1 2543:1 2550:1 2556:2 2560:1 2575:1 2597:1 2599:1 2602:1 2623:5 2633:1 2641:1 2645:1 2650:2 2657:2 2659:1 2681:1 2689:1 2693:1 2694:1 2705:1 2742:2 2747:1 2766:1 2797:2 2803:1 2812:4 2819:1 2825:4 2834:1 2841:2 2842:1 2849:1 2852:3 2854:10 2856:2 2872:1 2874:1 2886:1 2888:2 2894:1 2896:1 2900:1 2902:1 2909:4 2912:1 2918:1 2936:2 2943:2 2952:2 2962:1 2963:1 2965:5 2976:4 3019:4 3024:1 3027:1 3030:1 3031:1 3039:1 3043:1 3056:13 3067:7 3081:1 3090:2 3099:1 3105:1 3118:30 3127:1 3128:2 3151:1 3152:1 3170:1 3181:1 3189:1 3196:2 3222:1 3224:2 3227:1 3232:2 3296:3 3299:1 3311:3 3318:1 3342:1 3358:1 3378:1 3379:1 3389:1 3390:1 3391:1 3397:1 3403:2 3406:4 3417:1 3428:13 3442:1 3454:1 3461:1 3469:2 3485:1 3498:7 3516:1 3543:1 3565:1 3567:1 3574:1 3588:1 3590:2 3601:2 3609:1 3613:1 3628:1 3634:1 3640:2 3643:3 3649:1 3654:1 3661:1 3667:4 3707:1 3711:3 3713:1 3729:1 3730:1 3731:1 3746:3 3764:1 3778:1 3793:1 3796:1 3801:1 3803:4 3804:2 3810:2 3812:1 3813:1 3819:2 3829:2 3839:1 3846:1 3867:1 3886:1 3898:1 3902:2 3903:4 3906:1 3913:1 3918:1 3929:1 3950:1 3958:4 3959:44 3966:1 3981:1 3993:2 3994:1 3995:9 4000:1 4007:1 4009:1 4010:27 4011:2 4012:2 4015:6 4018:1 4027:2 4042:3 4057:2 4058:4 4061:2 4063:2 4076:2 4078:1 4079:1 4095:1 4116:2 4122:1 4123:3 4126:1 4130:1 4134:1 4171:1 4173:1 4176:2 4178:1 4182:1 4183:3 4196:2 4207:2 4209:1 4216:1 4219:1 4223:1 4232:1 4234:1 4235:2 4242:1 4256:1 4258:1 4265:1 4266:2 4267:1 4269:1 4270:1 4285:1 4290:2 4294:1 4297:1 4301:4 4318:4 4324:1 4330:1 4360:1 4368:1 4369:1 4373:1 4381:1 4389:1 4416:1 4423:1 4436:1 4439:3 4447:1 4463:2 4474:1 4483:1 4486:1 4498:2 4504:1 4505:2 4508:1 4509:1 4539:1 4547:2 4555:1 4557:1 4563:1 4586:1 4599:1 4611:1 4623:1 4636:14 4650:1 4665:1 4697:2 4701:1 4706:5 4715:1 4718:2 4749:7 4759:1 4767:1 4773:1 4781:1 4787:1 4796:1 4840:1 4854:1 4855:2 4880:1 4896:1 4900:1 4906:2 4909:1 4921:2 4927:1 4930:2 4938:1 4948:4 4959:1 4962:1 4966:4 4989:3 4990:1 4993:2 4994:1 5014:1 5044:1 5058:1 5059:1 5062:1 5064:1 5076:1 5090:1 5092:2 5100:2 5153:2 5159:1 5186:1 5189:1 5191:1 5201:17 5202:2 5211:1 5219:1 5231:2 5241:1 5257:1 5260:2 5275:1 5281:1 5288:1 5308:3 5314:1 5320:3 5321:1 5323:4 5340:1 5344:2 5345:4 5347:8 5348:1 5350:1 5351:1 5353:1 5354:2 5356:1 5361:1 5362:24 5363:1 5365:1 5370:2 5371:3 5376:2 5377:1 5397:1 5401:3 5425:2 5453:2 5467:1 5478:1 5483:1 5486:1 5488:1 5491:1 5495:1 5560:1 5572:1 5593:3 5594:3 5603:5 5610:1 5648:1 5652:1 5670:1 5675:2 5677:24 5684:1 5703:1 5708:1 5710:3 5712:1 5735:3 5769:1 5771:1 5774:1 5786:1 5810:1 5816:1 5819:2 5830:1 5836:1 5839:1 5848:1 5851:1 5856:2 5857:1 5863:1 5901:1 5902:1 5904:1 5908:1 5911:1 5920:1 5921:1 5922:2 5932:1 5943:4 5951:1 5954:1 5956:1 5962:2 5965:1 5967:1 5973:2 5978:1 5987:2 5991:1 5993:1 6018:1 6021:5 6038:2 6044:1 6061:1 6063:1 6065:1 6068:1 6079:1 6086:1 6094:1 6095:1 6097:1 6101:1 6103:1 6114:1 6115:1 6118:1 6121:1 6136:1 6140:1 6141:1 6142:1 6179:1 6199:3 6217:1 6219:5 6221:1 6227:1 6231:1 6239:1 6243:1 6257:1 6280:1 6305:2 6330:1 6334:1 6364:1 6368:3 6371:9 6380:1 6386:2 6410:2 6415:1 6420:1 6421:1 6444:1 6463:1 6465:1 6471:1 6474:1 6480:1 6481:2 6488:1 6490:2 6491:2 6492:1 6498:1 6499:1 6528:4 6529:1 6536:1 6539:2 6540:2 6564:1 6568:1 6588:1 6591:3 6596:1 6602:1 6618:5 6621:1 6635:1 6636:1 6639:1 6648:1 6654:1 6660:1 6673:1 6721:6 6724:2 6725:1 6726:1 6727:1 6728:1 6730:2 6731:2 6734:2 6735:3 6736:5 6743:2 6744:7 6745:1 6746:1 6747:3 6756:1 6764:1 6773:1 6776:1 6797:3 6802:1 6820:1 6833:2 6836:1 6872:1 6875:1 6878:1 6886:1 6895:2 6901:1 6930:1 6932:1 6970:1 6977:1 6984:1 6994:3 7000:2 7002:1 7019:1 7026:1 7027:5 7032:3 7035:1 7039:1 7046:1 7047:1 7060:2 7080:1 7082:1 7083:3 7087:1 7088:2 7114:1 7115:1 7118:1 7126:1 7148:1 7166:1 7171:1 7175:1 7192:3 7200:3 7201:2 7204:1 7216:3 7220:1 7222:2 7231:4 7236:3 7242:1 7257:1 7264:1 7267:3 7273:1 7308:1 7322:1 7325:1 7328:1 7333:1 7335:2 7342:1 7363:1 7375:1 7384:1 7407:2 7412:1 7432:2 7433:1 7448:1 7455:1 7456:2 7495:1 7522:2 7542:1 7548:1 7556:2 7573:1 7574:1 7577:5 7580:1 7585:3 7587:1 7589:1 7601:1 7603:1 7610:1 7612:1 7625:1 7635:1 7653:1 7705:1 7717:1 7728:1 7733:1 7769:1 7774:1 7779:1 7782:1 7788:5 7830:1 7840:3 7874:4 7915:2 7920:1 7926:1 7932:2 7954:1 7963:2 7968:1 7993:1 7997:2 7998:1 8004:1 8005:2 8023:1 8027:1 8031:4 8054:1 8064:4 8065:5 8066:3 8084:1 8089:2 8094:2 8097:1 8100:1 8105:1 8121:1 8122:2 8128:1 8130:1 8131:47 8133:1 8134:1 8140:2 8142:1 8151:13 8152:26 8161:1 8164:1 8170:1 8173:1 8207:1 8208:5 8238:1 8254:1 8273:1 8279:2 8302:3 8307:1 8316:1 8321:1 8362:4 8365:7 8372:1 8408:1 8413:1 8415:5 8430:1 8433:1 8450:1 8457:1 8467:1 8478:1 8492:1 8521:1 8523:3 8531:2 8540:7 8546:2 8550:1 8559:1 8567:1 8570:2 8585:2 8590:1 8597:2 8603:1 8610:1 8623:1 8624:1 8633:21 8640:1 8651:1 8655:2 8664:2 8665:1 8687:2 8718:1 8724:1 8733:2 8742:1 8748:1 8753:2 8760:4 8764:1 8779:1 8789:1 8793:3 8798:4 8803:3 8816:2 8820:4 8830:1 8840:2 8842:1 8845:2 8850:1 8857:1 8858:2 8863:2 8873:1 8884:2 8887:2 8892:1 8895:1 8898:1 8899:1 8915:2 8932:1 8938:1 8942:3 8953:1 8959:1 8966:1 8973:1 8979:1 8980:2 8983:1 8984:3 8985:2 8986:2 8987:5 8990:1 8991:1 8995:2 8998:2 9000:2 9004:3 9020:1 9027:3 9035:2 9039:3 9040:1 9041:1 9045:1 9046:1 9058:1 9061:1 9072:2 9075:2 9081:1 9086:2 9109:1 9112:5 9135:1 9139:5 9146:1 9148:1 9149:1 9151:2 9158:1 9164:1 9169:1 9204:1 9205:1 9209:1 9215:3 9225:3 9227:1 9248:2 9268:5 9269:2 9273:4 9274:1 9276:1 9277:4 9280:3 9286:2 9301:3 9302:1 9304:4 9316:1 9318:1 9339:2 9345:1 9400:1 9420:2 9439:2 9442:2 9450:1 9453:1 9463:1 9471:1 9478:1 9480:1 9495:1 9504:1 9506:1 9508:1 9523:1 9539:1 9561:4 9589:2 9592:1 9594:4 9605:1 9608:1 9618:7 9640:2 9646:3 9651:1 9658:1 9662:1 9663:1 9677:1 9686:1 9695:3 9697:1 9715:1 9718:1 9719:1 9721:1 9732:2 9776:1 9781:1 9809:1 9818:1 9825:1 9840:1 9867:1 9870:1 9874:1 9877:3 9882:2 9888:1 9889:2 9890:1 9909:1 9928:2 9930:1 9937:2 9940:1 9942:1 9972:1 9973:1 9977:3 9983:1 9993:1 9994:1 10009:1 10037:24 10043:1 10060:1 10069:2 10078:6 10084:2 10085:1 10109:1 10114:1 10117:1 10120:1 10127:1 10128:1 10130:2 10146:2 10152:1 10156:1 10169:14 10184:2 10185:1 10190:2 10202:1 10211:1 10223:5 10229:1 10235:1 10238:3 10239:1 10240:1 10241:1 10259:1 10269:1 10275:1 10281:1 10286:1 10317:2 10321:3 10322:1 10336:1 10356:8 10362:2 10363:4 10364:2 10371:3 10379:1 10380:1 10387:2 10393:3 10395:1 10396:1 10400:2 10406:2 10410:4 10413:5 10415:1 10416:1 10423:1 10438:1 10440:1 10446:3 10450:3 10468:1 10470:2 10483:1 10493:2 10533:1 10547:1 10549:3 10552:1 10577:12 10580:1 10581:6 10596:1 10601:1 10602:1 10627:1 10651:4 10691:1 10698:2 10707:1 10718:1 10731:1 10735:2 10757:4 10763:1 10777:1 10780:4 10784:1 10789:1 10791:1 10794:1 10809:1 10828:1 10830:1 10850:1 10868:1 10880:2 10892:5 10898:1 10903:1 10907:1 10917:2 10923:1 10935:2 10939:1 10957:2 10962:7 10972:1 10973:1 10998:1 11009:2 11026:3 11028:2 11031:2 11040:1 11047:6 11048:1 11060:2 11061:4 11062:1 11063:4 11070:1 11081:1 11084:3 11087:1 11105:1 11106:3 11120:1 11126:1 11134:4 11145:1 11148:2 11156:1 11160:2 11166:7 11230:1 11231:1 11234:1 11237:1 11260:2 11261:2 11262:1 11268:1 11276:1 11297:1 11305:1 11315:1 11324:1 11359:1 11364:1 11366:1 11371:1 11388:3 11389:1 11399:1 11400:7 11417:4 11418:7 11430:3 11441:1 11443:1 11453:1 11458:2 11469:1 11477:4 11482:1 11499:1 11512:2 11528:1 11529:2 11535:5 11546:1 11556:3 11564:1 11569:3 11582:1 11595:1 11597:1 11598:1 11622:1 11626:1 11628:1 11641:1 11653:1 11668:1 11673:1 11676:1 11677:1 11678:1 11680:1 11683:1 11684:4 11685:1 11703:1 11710:1 11718:1 11721:2 11738:1 11740:1 11745:1 11753:1 11754:1 11779:2 11808:1 11810:4 11816:1 11819:1 11820:2 11824:1 11830:1 11831:1 11839:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11885:1 11887:4 11914:1 11918:1 11923:3 11926:6 11929:1 11931:2 11942:3 11961:1 11985:1 11986:1 11989:1 11991:1 11994:2 12009:1 12029:3 12045:1 12056:1 12063:1 12065:5 12066:2 12076:1 12077:3 12081:1 12093:2 12095:3 12098:2 12107:1 12120:1 12130:3 12135:1 12146:3 12153:2 12155:9 12157:1 12170:1 12171:1 12176:1 12177:1 12181:1 12182:1 12189:1 12190:3 12192:1 12193:7 12194:1 12200:1 12202:7 12210:1 12218:1 12222:1 12228:10 12253:2 12266:5 12270:1 12275:2 12280:1 12293:1 12314:1 12325:4 12333:1 12335:1 12337:2 12373:1 12375:1 12385:3 12406:1 12412:1 12415:2 12423:1 12440:1 12451:1 12459:1 12470:2 12471:2 12506:2 12508:1 12539:1 12555:5 12594:2 12609:1 12616:1 12623:1 12625:1 12628:1 12629:1 12632:1 12637:1 12654:4 12655:4 12656:24 12660:6 12671:1 12679:1 12681:2 12698:3 12705:1 12716:2 12745:1 12749:1 12766:2 12784:1 12788:1 12815:1 12824:9 12825:2 12841:1 12845:1 12846:4 12850:2 12871:1 12894:1 12902:3 12906:1 12929:1 12936:1 12943:2 12947:1 12953:1 12961:1 12976:2 12979:1 12992:1 13011:1 13015:2 13019:1 13035:4 13054:2 13057:1 13063:1 13092:1 13095:3 13103:1 13106:1 13107:1 13110:1 13114:1 13117:1 13129:1 13146:1 13166:1 13167:1 13174:1 13175:1 13183:1 13207:1 13227:6 13240:1 13241:1 13243:1 13248:1 13251:1 13276:2 13277:4 13304:1 13307:3 13342:1 13371:1 13376:2 13404:1 13424:1 13429:2 13433:1 13440:1 13441:1 13443:2 13472:1 13486:2 13488:1 13494:1 13522:1 13524:1 13579:1 13580:1 13597:5 13599:1 13609:1 13613:1 13614:1 13623:1 13624:3 13630:1 13649:2 13652:1 13656:1 13661:1 13664:1 13673:1 13681:1 13684:2 13688:1 13700:2 13709:1 13711:1 13712:1 13714:2 13720:1 13735:1 13739:2 13740:1 13768:1 13775:1 13776:1 13780:2 13816:2 13821:3 13823:1 13832:1 13833:2 13835:1 13838:7 13839:1 13842:4 13843:1 13851:2 13853:1 13856:1 13858:3 13873:3 13875:1 13878:2 13883:3 13898:1 13915:7 13916:1 13923:1 13926:1 13929:1 13930:1 13931:3 13943:1 13944:2 13958:2 13981:2 13993:3 13994:1 14011:5 14016:1 14027:1 14028:1 14037:1 14050:2 14063:3 14078:1 14080:1 14085:2 14086:7 14112:2 14113:2 14114:2 14115:1 14116:1 14129:4 14145:1 14152:1 14156:1 14157:2 14177:1 14189:2 14206:1 14221:2 14223:1 14228:1 14234:1 14237:2 14238:2 14239:2 14241:2 14245:1 14264:1 14274:1 14275:1 14278:1 14279:1 14280:1 14291:1 14296:2 14298:1 14307:1 14310:1 14311:1 14315:3 14318:1 14320:1 14334:1 14335:1 14366:8 14375:2 14377:1 14382:1 14422:1 14426:1 14445:1 14446:1 14447:2 14450:2 14468:2 14471:2 14472:1 14477:5 14503:1 14522:1 14529:1 14533:1 14544:2 14546:3 14552:2 14553:6 14563:2 14584:2 14592:3 14610:1 14622:2 14642:2 14644:1 14649:2 14650:1 14654:1 14664:1 14665:2 14670:2 14688:1 14699:1 14704:1 14769:1 14771:1 14777:1 14780:1 14785:2 14806:1 14833:1 14845:1 14862:1 14887:1 14891:3 14901:1 14921:1 14922:1 14929:1 14935:1 14952:1 14958:1 14971:1 14976:3 14986:2 14987:1 14997:1 15002:1 15008:5 15010:1 15011:1 15019:1 15020:1 15032:2 15033:1 15054:1 15060:1 15068:1 15072:1 15088:1 15096:2 15102:1 15120:1 15127:1 15141:1 15157:1 15162:1 15166:1 15174:1 15181:2 15190:1 15196:4 15216:2 15233:1 15238:1 15247:2 15252:1 15276:1 15290:1 15319:4 15330:1 15346:1 15364:1 15402:1 15475:1 15476:1 15487:1 15493:1 15507:2 15538:4 15547:3 15548:2 15552:1 15554:1 15556:1 15573:1 15577:1 15597:2 15605:1 15618:1 15625:1 15641:1 15643:2 15646:1 15655:3 15672:1 15683:1 15693:1 15695:2 15697:1 15701:1 15702:2 15725:1 15734:2 15771:1 15772:2 15775:1 15780:1 15781:1 15788:1 15805:1 15813:1 15814:1 15868:2 15875:3 15876:4 15881:1 15907:4 15908:1 15911:1 15933:1 15951:5 15955:2 15961:1 15962:1 15968:1 15984:1 15999:1 16001:1 16008:1 16018:1 16021:4 16028:2 16032:2 16038:2 16054:1 16066:1 16073:2 16088:1 16096:1 16111:1 16121:1 16122:1 16140:1 16148:3 16153:1 16167:9 16172:8 16174:1 16181:1 16207:2 16218:1 16221:2 16222:2 16235:3 16255:1 16263:1 16270:1 16277:1 16279:1 16303:3 16307:1 16309:1 16317:7 16325:3 16327:1 16334:1 16336:1 16337:2 16345:3 16347:1 16349:1 16352:1 16353:5 16356:2 16357:7 16358:1 16363:2 16367:2 16368:1 16369:1 16378:1 16379:6 16386:4 16387:2 16427:1 16467:1 16480:1 16484:2 16488:1 16494:1 16495:2 16498:1 16501:2 16507:6 16519:1 16530:2 16532:1 16543:2 16561:2 16564:3 16578:1 16593:2 16610:1 16617:1 16623:1 16630:1 16638:3 16644:1 16646:8 16659:2 16660:2 16661:1 16673:1 16674:3 16677:1 16678:4 16692:1 16697:1 16706:24 16714:1 16734:1 16739:5 16740:1 16743:1 16761:2 16775:70 16794:3 16799:1 16831:1 16861:1 16864:1 16866:1 16867:3 16884:1 16904:1 16908:1 16909:1 16913:2 16915:1 16916:2 16919:3 16920:4 16921:1 16927:2 16930:1 16931:2 16937:1 16944:1 16957:1 16961:1 16965:1 16971:1 16980:1 16981:1 17010:1 17013:1 17047:1 17055:5 17075:1 17090:2 17095:3 17116:1 17130:1 17135:2 17139:1 17153:1 17192:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:2 17253:1 17294:2 17295:1 17317:1 17322:1 17326:1 17336:3 17342:4 17343:1 17347:1 17369:1 17372:3 17383:1 17392:3 17398:1 17405:3 17414:1 17415:1 17422:1 17424:3 17426:1 17427:2 17429:1 17435:1 17438:1 17445:1 17450:1 17454:3 17459:1 17460:13 17470:1 17474:2 17500:2 17514:2 17520:1 17521:2 17553:1 17559:1 17561:1 17564:2 17582:1 17583:2 17585:3 17587:1 17589:3 17593:1 17596:2 17608:1 17613:1 17614:1 17625:1 17635:1 17638:1 17641:1 17645:2 17646:2 17675:2 17678:2 17685:1 17689:1 17711:1 17717:1 17718:3 17725:1 17726:1 17727:1 17742:1 17771:1 17788:1 17792:1 17797:2 17800:1 17816:1 17819:1 17820:1 17821:2 17822:1 17831:1 17835:1 17843:2 17844:1 17849:3 17859:2 17867:1 17871:1 17875:1 17877:3 17881:1 17889:1 17896:1 17897:1 17906:3 17912:1 17932:2 17933:1 17952:1 17957:1 17972:2 17997:1 17998:2 18006:1 18011:1 18012:1 18034:4 18083:1 18087:1 18093:1 18099:1 18110:1 18112:1 18115:1 18129:5 18131:1 18134:1 18136:1 18144:1 18147:2 18148:2 18153:2 18154:1 18169:1 18171:2 18174:2 18182:1 18187:1 18188:1 18197:2 18206:1 18214:1 18221:1 18222:1 18223:1 18226:1 18235:1 18241:1 18248:2 18249:2 18277:1 18280:1 18282:2 18285:1 18286:1 18310:1 18330:3 18338:2 18342:1 18355:1 18366:3 18410:3 18412:1 18414:1 18415:1 18417:2 18421:2 18423:2 18424:1 18441:1 18442:14 18446:2 18460:1 18474:1 18478:2 18489:1 18506:1 18517:1 18524:1 18543:1 18544:2 18546:3 18559:2 18562:2 18565:1 18576:1 18583:1 18584:1 18589:1 18598:1 18602:1 18625:1 18629:4 18633:4 18634:2 18636:1 18646:2 18676:1 18678:1 18707:1 18709:1 18731:1 18748:3 18749:1 18757:1 18781:1 18786:1 18797:1 18805:1 18807:1 18815:1 18816:1 18819:3 18831:2 18838:1 18855:1 18856:1 18860:1 18866:1 18872:1 18873:4 18879:1 18907:1 18922:4 18928:1 18932:2 18954:1 18956:4 18966:1 18977:4 18980:1 18984:1 18987:3 19006:2 19007:1 19016:1 19018:2 19022:1 19078:1 19079:1 19098:2 19102:1 19113:1 19114:13 19118:1 19125:1 19132:1 19145:1 19160:1 19170:1 19182:1 19183:1 19190:3 19191:2 19193:1 19194:1 19195:1 19210:1 19217:1 19219:1 19225:1 19229:2 19241:1 19244:5 19250:2 19251:1 19265:4 19269:2 19272:1 19276:2 19277:1 19315:1 19323:3709 19328:1 19342:4 19343:1 19348:2 19376:1 19385:1 19395:2 19405:1 19410:1 19413:3 19414:1 19421:1 19449:1 19452:3 19473:2 19482:2 19505:1 19507:5 19509:2 19530:3 19536:1 19539:3 19541:1 19543:1 19556:1 19571:1 19584:1 19586:1 19596:1 19609:1 19632:1 19636:5 19638:1 19642:1 19654:1 19658:1 19664:1 19670:1 19696:3 19702:1 19708:1 19721:2 19733:1 19743:1 19751:1 19756:1 19758:1 19804:1 19815:1 19817:2 19820:1 19831:4 19845:2 19856:1 19857:1 19869:1 19875:1 19882:1 19918:1 19919:4 19933:3 19976:1 19984:1 20004:1 20024:1 20030:1 20032:2 20043:1 20048:2 20050:1 20057:2 20074:4 20086:2 20090:1 20091:4 20095:1 20107:5 20121:16 20141:1 20142:1 20144:3 20146:1 20147:23 20159:2 20177:1 20178:6 20180:1 20181:1 20197:2 20212:1 20216:5 20236:1 20243:2 20248:1 20250:6 20252:2 20255:1 20260:1 20262:1 20277:2 20278:1 20279:1 20283:1 20287:1 20313:1 20319:3 20326:1 20339:1 20349:3 20363:1 20387:1 20389:1 20392:1 20398:1 20447:1 20451:1 20458:1 20477:1 20486:1 20492:1 20493:1 20502:1 20523:1 20524:13 20527:1 20565:1 20573:1 20574:1 20596:1 20605:1 20613:1 20619:1 20623:7 20644:1 20648:1 20656:1 20669:2 20682:1 20688:1 20691:1 20709:1 20714:1 20719:1 20720:1 20722:2 20724:2 20725:1 20731:2 20749:1 20779:4 20782:1 20787:1 20789:1 20796:1 20811:3 20814:1 20821:1 20839:3 20849:1 20853:1 20871:1 20877:5 20894:2 20897:1 20903:2 20907:1 20908:2 20918:2 20920:1 20923:7 20942:1 20970:1 20972:1 20976:1 20987:1 20996:15 21002:1 21014:2 21017:3 21030:1 21033:1 21049:1 21050:13 21066:1 21088:1 21099:1 21103:1 21105:1 21131:1 21144:2 21170:1 21175:1 21182:1 21196:2 21213:1 21214:4 21216:2 21225:1 21231:1 21258:2 21293:1 21301:5 21312:1 21313:1 21316:3 21328:1 21330:1 21331:1 21339:1 21343:1 21344:1 21355:1 21389:1 21392:1 21413:2 21451:2 21466:1 21468:1 21474:1 21487:1 21495:1 21498:1 21500:2 21511:1 21528:1 21529:1 21532:2 21554:1 21556:1 21560:1 21575:1 21596:3 21625:2 21630:1 21631:1 21633:1 21634:1 21638:1 21643:13 21652:1 21655:2 21660:3 21661:1 21663:5 21664:1 21674:3 21678:1 21684:5 21690:1 21708:4 21711:1 21716:2 21722:1 21723:1 21741:1 21755:2 21756:1 21757:1 21769:2 21773:1 21789:2 21797:1 21798:1 21822:8 21829:1 21830:2 21835:1 21847:1 21852:1 21863:1 21874:1 21891:1 21896:1 21911:1 21915:1 21916:1 21932:3 21936:1 21939:1 21943:1 21949:1 21962:3 21977:1 21980:1 21986:2 21987:1 21992:1 21996:1 22003:1 22005:1 22041:1 22048:3 22050:1 22105:1 22106:1 22115:1 22142:1 22147:1 22151:1 22154:4 22157:2 22159:3 22170:4 22179:1 22181:1 22183:1 22223:1 22228:1 22232:1 22233:1 22236:2 22241:2 22251:1 22258:1 22267:1 22268:1 22272:1 22273:2 22281:1 22285:1 22286:1 22298:2 22300:6 22305:3 22309:1 22319:1 22320:1 22325:1 22332:1 22342:1 22349:1 22354:1 22377:1 22382:2 22383:1 22384:2 22389:2 22396:2 22405:1 22406:1 22409:1 22422:1 22425:4 22427:18 22430:1 22447:1 22456:2 22457:2 22461:1 22466:1 22469:1 22479:1 22481:2 22501:5 22515:1 22534:2 22538:3 22540:1 22542:1 22549:4 22563:1 22579:1 22600:1 22603:1 22604:1 22606:1 22607:4 22614:2 22618:3 22621:1 22671:1 22693:4 22702:2 22703:1 22705:12 22709:3 22712:2 22720:2 22721:1 22723:1 22734:3 22735:1 22736:3 22740:1 22746:2 22748:2 22750:1 22756:1 22757:1 22758:1 22764:1 22769:2 22772:2 22777:1 22795:2 22800:1 22822:1 22833:5 22834:1 22856:1 22860:1 22866:1 22868:2 22874:2 22877:1 22881:1 22895:1 22901:1 22906:1 22909:4 22917:1 22926:1 22929:1 22937:1 22969:1 22985:24 22987:2 22990:1 23008:1 23027:1 23032:2 23052:1 23065:1 23073:1 23076:4 23093:1 23096:2 23102:1 23106:1 23112:2 23125:2 23133:1 23136:8 23141:1 23153:2 23160:4 23166:1 23199:1 23202:2 23209:1 23212:1 23215:2 23221:2 23225:1 23236:1 23239:1 23242:1 23244:1 23246:2 23256:1 23269:2 23271:1 23284:10 23302:4 23311:1 23317:4 23325:1 23336:1 23360:1 23376:2 23390:1 23391:1 23413:1 23445:1 23454:3 23459:1 23462:1 23473:1 23481:1 23493:1 23496:4 23514:1 23517:1 23534:1 23535:1 23549:1 23554:1 23570:1 23573:1 23574:2 23575:2 23579:15 23581:1 23583:2 23600:1 23609:1 23611:2 23624:1 23629:1 23632:1 23639:1 23648:2 23652:1 23655:1 23662:3 23665:1 23666:2 23669:1 23673:1 23687:1 23695:1 23699:3 23710:1 23716:1 23717:5 23721:1 23750:1 23752:1 23765:2 23767:1 23788:2 23801:1 23805:1 23807:1 23813:1 23819:2 23838:1 23851:1 23859:1 23864:1 23875:1 23878:2 23879:1 23891:2 23903:1 23913:1 23948:1 23955:1 23968:1 23969:1 23971:5 23978:1 23987:1 24002:1 24003:1 24012:2 24015:1 24023:1 24034:1 24049:1 24060:1 24087:1 24090:2 24103:1 24108:2 24113:1 24119:2 24124:4 24128:1 24141:1 24151:1 24168:2 24177:1 24183:1 24187:3 24188:5 24195:1 24196:1 24207:6 24216:1 24219:1 24222:1 24231:1 24232:1 24235:1 24237:3 24241:2 24247:1 24252:1 24273:2 24274:1 24280:1 24281:2 24283:1 24293:1 24296:1 24329:5 24336:1 24340:29 24344:1 24391:1 24408:1 24419:1 24432:2 24438:1 24440:2 24441:1 24444:1 24449:1 24464:1 24478:1 24504:3 24506:1 24508:1 24509:2 24533:1 24534:1 24538:1 24548:2 24568:1 24571:1 24591:1 24602:1 24625:1 24653:1 24656:2 24668:2 24685:1 24702:4 24709:1 24714:1 24717:1 24745:1 24755:1 24756:1 24761:1 24775:1 24777:1 24797:2 24814:3 24827:2 24833:1 24838:2 24839:1 24841:1 24844:2 24845:1 24859:1 24873:1 24881:1 24890:1 24907:1 24921:1 24931:1 24932:1 24939:1 24944:2 24970:1 24976:1 24999:1 25004:1 25005:8 25014:1 25021:1 25023:1 25027:1 25028:1 25049:2 25062:1 25073:2 25090:1 25122:1 25125:1 25139:1 25147:3 25158:1 25181:1 25190:1 25194:5 25211:1 25220:1 25252:2 25259:1 25264:1 25273:1 25275:1 25285:2 25287:5 25288:1 25292:1 25311:1 25319:1 25325:2 25327:2 25331:1 25335:1 25339:3 25347:2 25351:1 25384:2 25385:2 25398:3 25415:1 25419:2 25431:2 25447:1 25468:1 25471:1 25472:1 25487:1 25495:4 25503:3 25507:1 25510:1 25514:1 25526:1 25527:1 25534:1 25549:1 25551:1 25560:1 25561:2 25570:1 25576:2 25577:1 25587:1 25597:1 25598:2 25614:1 25623:1 25627:3 25631:1 25634:1 25643:1 25652:1 25664:1 25673:1 25676:1 25684:1 25688:1 25716:1 25718:1 25722:1 25733:1 25740:2 25778:3 25797:5 25823:1 25832:1 25836:1 25852:1 25860:1 25871:1 25872:1 25878:2 25880:1 25884:1 25893:5 25894:1 25900:1 25918:2 25921:1 25922:1 25952:2 25966:1 25980:4 25998:1 26004:1 26007:1 26011:1 26021:1 26048:1 26058:4 26073:1 26076:1 26097:8 26099:1 26119:2 26123:1 26124:1 26150:2 26156:5 26159:1 26167:1 26169:1 26172:4 26175:1 26176:1 26207:1 26226:1 26232:1 26257:1 26304:1 26315:1 26316:1 26318:2 26319:1 26320:2 26322:8 26324:3 26331:1 26356:1 26371:1 26372:3 26376:1 26377:2 26403:1 26413:1 26415:6 26416:1 26424:1 26429:4 26435:6 26436:2 26445:2 26458:1 26460:1 26463:1 26472:1 26489:2 26494:1 26513:6 26518:1 26524:1 26525:1 26534:1 26538:2 26548:1 26564:2 26579:1 26589:3 26608:1 26627:5 26628:1 26652:3 26653:4 26659:1 26681:2 26689:1 26712:1 26717:1 26728:3 26754:1 26761:1 26781:1 26782:4 26808:1 26813:1 26835:1 26839:1 26842:2 26844:1 26848:1 26862:1 26865:1 26868:2 26871:3 26891:1 26893:1 26898:1 26901:2 26912:1 26915:1 26920:1 26934:2 26935:1 26938:1 26949:2 26955:1 26956:1 26964:1 26977:6 26981:1 26982:1 26985:1 26989:2 27000:1 27001:1 27003:1 27008:2 27010:2 27029:1 27056:1 27065:2 27078:1 27099:1 27102:1 27107:1 27113:1 27115:3 27138:13 27144:1 27178:1 27185:1 27188:1 27192:2 27212:1 27223:1 27244:1 27252:1 27257:1 27266:1 27280:3 27288:1 27292:1 27295:1 27308:1 27314:2 27332:1 27394:2 27407:3 27422:5 27424:2 27426:1 27431:1 27438:2 27439:1 27440:4 27441:9 27444:1 27450:1 27470:1 27486:1 27490:2 27521:1 27531:1 27534:1 27540:4 27548:1 27552:1 27571:1 27580:3 27600:1 27601:1 27607:1 27611:1 27621:2 27625:1 27626:1 27636:1 27663:2 27668:1 27673:1 27676:1 27705:1 27709:1 27718:1 27735:1 27740:1 27755:1 27775:1 27799:1 27809:1 27824:1 27834:1 27852:1 27854:2 27863:1 27875:1 27883:2 27893:2 27910:2 27925:1 27939:1 27949:1 27950:1 27957:1 28004:2 28005:2 28017:2 28059:1 28087:1 28095:2 28099:5 28110:1 28113:1 28118:1 28121:9 28135:1 28137:1 28154:2 28155:1 28207:1 28211:1 28223:29 28224:1 28227:3 28230:1 28238:1 28246:1 28258:5 28285:1 28288:1 28331:1 28338:2 28340:3 28342:4 28343:2 28349:1 28356:1 28385:2 28388:1 28391:1 28395:1 28398:1 28405:2 28410:2 28413:2 28419:2 28421:1 28429:1 28430:1 28431:1 28432:1 28437:3 28443:1 28448:3 28450:1 28472:2 28482:1 28496:1 28499:2 28514:1 28524:2 28525:1 28526:1 28544:1 28548:1 28551:1 28574:1 28581:3 28593:1 28600:1 28644:1 28645:1 28659:1 28663:2 28669:2 28674:1 28675:1 28680:1 28681:1 28684:1 28696:3 28697:1 28726:1 28754:11 28762:1 28771:1 28786:1 28795:2 28798:1 28839:3 28848:3 28866:1 28870:1 28874:2 28878:1 28912:1 28928:1 28931:3 28939:1 28962:2 28964:1 28966:1 28974:1 28975:1 29000:5 29004:4 29028:1 29030:1 29039:3 29041:1 29051:1 29055:1 29069:1 29073:1 29095:1 29111:1 29112:1 29130:4 29135:1 29143:1 29155:1 29167:3 29168:1 29179:1 29182:2 29183:28 29184:2 29186:3 29189:4 29192:1 29193:1 29203:1 29220:1 29221:13 29224:1 29234:1 29239:1 29240:1 29248:1 29276:1 29277:1 29281:2 29289:2 29290:1 29300:1 29301:2 29302:2 29310:1 29320:1 29325:1 29334:6 29342:4 29346:1 29348:2 29377:3 29381:1 29382:2 29388:1 29394:1 29409:1 29410:1 29429:1 29430:1 29454:1 29463:1 29486:1 29495:2 29502:1 29536:1 29537:1 29542:1 29564:1 29573:1 29574:1 29575:1 29581:1 29583:1 29587:2 29589:1 29591:4 29595:2 29600:1 29615:1 29620:2 29624:1 29636:1 29655:8 29659:1 29661:3 29663:1 29666:4 29669:1 29718:1 29720:1 29741:3 29745:8 29747:1 29749:1 29753:1 29754:1 29771:2 29776:2 29777:2 29790:1 29795:1 29809:1 29812:2 29814:1 29821:1 29841:3 29848:2 29860:1 29891:3 29896:1 29898:1 29901:2 29904:1 29905:2 29907:1 29928:2 29932:3 29935:2 29936:5 29942:1 29950:5 29957:1 29969:2 30003:1 30011:1 30056:1 30070:1 30080:1 30087:1 30104:3 30107:2 30121:1 30129:4 30160:2 30164:1 30170:1 30177:1 30201:1 30206:1 30210:2 30216:1 30222:3 30232:1 30241:1 30246:1 30252:1 30269:1 30285:3 30288:1 30290:1 30292:1 30294:1 30313:1 30325:2 30341:1 30344:1 30345:1 30346:6 30348:1 30354:1 30364:2 30401:1 30402:3 30407:1 30429:1 30435:5 30441:2 30446:1 30475:1 30507:1 30510:1 30512:1 30517:1 30518:1 30524:1 30525:1 30527:5 30533:1 30539:1 30571:1 30576:2 30586:1 30588:1 30592:1 30593:1 30595:1 30599:1 30609:2 30650:1 30658:1 30660:1 16 5:1 24:1 26:2 27:1 38:1 52:1 62:1 66:1 69:1 74:1 75:5 91:1 94:1 121:1 136:1 150:1 151:3 156:1 160:2 163:1 190:1 197:1 202:2 206:1 220:1 224:4 229:1 230:1 251:2 266:1 285:1 294:4 297:1 315:1 324:1 334:2 335:3 336:1 360:1 368:1 369:1 375:1 392:1 407:1 430:3 436:2 440:2 453:1 463:1 471:1 477:2 489:1 491:1 493:1 495:1 502:1 503:1 505:1 510:2 511:2 546:1 547:1 564:5 622:1 625:3 631:1 637:3 647:1 660:3 666:1 673:4 679:1 688:1 694:1 705:1 706:1 710:1 722:1 730:1 737:1 748:1 768:2 778:2 795:1 798:1 815:1 836:1 845:2 851:1 853:1 855:1 857:1 870:3 878:1 882:2 887:2 895:1 898:2 931:2 935:1 939:2 942:1 943:1 949:1 951:2 965:2 966:2 971:3 973:1 974:3 975:6 976:2 981:2 1002:1 1003:2 1026:1 1028:1 1029:6 1032:2 1038:1 1058:1 1065:2 1069:2 1107:2 1108:1 1131:1 1134:1 1137:1 1155:2 1161:1 1170:2 1171:1 1191:1 1196:1 1216:1 1217:3 1220:1 1221:1 1224:1 1233:2 1236:1 1242:2 1253:1 1254:4 1267:2 1273:1 1277:1 1280:1 1290:2 1291:3 1319:1 1324:1 1325:2 1331:2 1333:4 1336:1 1346:2 1347:6 1348:2 1349:1 1361:1 1365:1 1377:1 1379:1 1389:1 1393:1 1395:3 1409:2 1421:2 1422:1 1446:2 1458:1 1473:1 1476:2 1499:1 1500:3 1503:1 1511:1 1514:1 1516:1 1519:2 1528:1 1538:1 1556:1 1566:6 1574:1 1579:1 1585:6 1590:1 1594:2 1601:1 1602:2 1603:1 1608:4 1609:1 1614:1 1618:1 1624:1 1625:1 1628:4 1642:1 1651:1 1653:1 1657:8 1671:1 1677:3 1679:1 1680:1 1681:2 1685:1 1690:2 1696:1 1725:2 1730:1 1734:4 1739:4 1742:2 1743:1 1756:1 1757:1 1759:1 1776:5 1780:3 1788:1 1789:1 1800:1 1802:1 1807:2 1812:1 1826:1 1840:1 1841:1 1855:2 1857:1 1858:1 1860:1 1863:1 1873:4 1886:4 1900:1 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1939:1 1947:1 1951:1 1954:1 1955:1 1964:1 1969:2 1970:2 1977:1 1982:1 1986:1 1989:1 1997:1 1999:1 2003:1 2005:1 2016:3 2021:1 2023:1 2026:1 2032:1 2035:1 2038:2 2039:4 2042:1 2046:1 2048:1 2052:1 2069:1 2070:3 2072:1 2090:1 2096:1 2101:1 2124:1 2125:1 2131:1 2132:1 2149:1 2153:1 2161:2 2162:2 2164:1 2167:2 2169:1 2170:3 2204:1 2227:1 2231:1 2232:1 2234:3 2235:1 2237:2 2238:1 2239:1 2269:4 2296:2 2307:1 2337:1 2339:1 2346:1 2351:1 2353:3 2363:1 2366:1 2374:1 2404:2 2405:1 2406:1 2407:2 2408:4 2412:2 2413:1 2415:6 2416:1 2417:1 2420:5 2421:1 2422:4 2424:1 2427:1 2431:1 2434:6 2436:3 2437:7 2442:1 2443:1 2448:1 2450:2 2455:1 2461:1 2469:1 2473:1 2486:1 2488:1 2495:1 2508:1 2514:1 2518:2 2519:2 2520:1 2525:1 2532:1 2533:3 2538:1 2543:1 2550:1 2556:2 2560:1 2575:1 2597:1 2599:1 2602:1 2623:5 2633:1 2641:1 2645:1 2650:2 2657:3 2659:1 2681:1 2689:1 2693:1 2694:1 2705:1 2742:2 2747:1 2766:1 2797:2 2803:1 2812:4 2819:1 2825:4 2834:1 2841:2 2842:1 2849:1 2852:3 2854:12 2856:2 2872:1 2874:1 2886:1 2888:2 2894:1 2896:1 2900:1 2901:1 2902:1 2909:4 2912:1 2918:1 2936:2 2943:2 2952:2 2962:1 2963:1 2965:5 2976:4 3019:4 3024:1 3027:1 3030:1 3031:1 3039:1 3043:1 3056:14 3067:7 3081:1 3090:2 3099:1 3105:1 3118:32 3127:1 3128:2 3151:1 3152:1 3170:1 3181:1 3189:1 3196:2 3222:1 3224:2 3227:1 3229:1 3232:2 3296:3 3299:1 3311:3 3318:1 3342:1 3358:1 3378:1 3379:1 3389:1 3390:1 3391:1 3397:1 3403:2 3406:4 3417:1 3428:13 3442:1 3454:1 3461:1 3469:2 3485:1 3498:7 3516:1 3543:1 3565:1 3567:1 3574:1 3588:1 3590:2 3601:3 3609:1 3613:1 3628:1 3634:1 3640:2 3643:3 3649:1 3654:1 3661:1 3667:4 3707:1 3711:3 3713:1 3729:1 3730:1 3731:1 3746:3 3764:1 3778:1 3793:1 3796:1 3801:1 3803:4 3804:2 3810:2 3812:1 3813:1 3819:2 3829:2 3839:1 3846:1 3867:1 3886:1 3898:1 3902:2 3903:4 3906:1 3913:1 3918:1 3929:1 3950:1 3958:4 3959:44 3966:1 3981:1 3993:2 3994:1 3995:9 4000:1 4007:1 4009:1 4010:27 4011:2 4012:2 4015:6 4018:1 4027:2 4042:3 4057:3 4058:4 4061:2 4063:3 4076:2 4078:2 4079:1 4095:1 4116:2 4122:1 4123:3 4126:1 4130:1 4134:1 4167:1 4171:1 4173:1 4176:2 4178:1 4182:1 4183:3 4196:2 4207:2 4209:1 4216:1 4219:1 4223:1 4232:1 4234:1 4235:2 4242:1 4256:1 4258:1 4265:1 4266:2 4267:1 4269:1 4270:1 4285:1 4290:2 4294:1 4297:1 4301:4 4318:4 4324:1 4330:1 4360:1 4368:1 4369:1 4373:1 4381:1 4389:1 4416:1 4423:1 4436:1 4439:3 4447:1 4463:2 4474:1 4483:1 4486:1 4498:2 4504:2 4505:2 4508:1 4509:1 4539:1 4547:2 4555:1 4557:1 4563:1 4586:1 4599:1 4611:2 4623:1 4636:14 4650:1 4665:1 4697:2 4701:1 4706:5 4715:1 4718:2 4749:7 4759:1 4767:1 4773:1 4776:1 4781:1 4787:1 4796:1 4840:1 4854:1 4855:2 4880:1 4896:1 4900:2 4906:2 4909:1 4921:2 4927:1 4930:2 4938:1 4948:4 4959:1 4962:1 4966:4 4989:3 4990:1 4993:2 4994:1 5002:1 5014:1 5044:1 5058:1 5059:1 5062:1 5064:1 5076:1 5090:1 5092:2 5100:2 5153:2 5159:1 5186:1 5189:1 5191:1 5201:17 5202:2 5211:1 5219:1 5231:2 5241:1 5257:1 5260:2 5275:1 5281:1 5288:1 5308:3 5314:1 5320:3 5321:1 5323:4 5340:1 5344:2 5345:4 5347:8 5348:1 5350:1 5351:1 5353:1 5354:3 5356:1 5361:1 5362:24 5363:1 5365:1 5370:2 5371:3 5376:2 5377:1 5397:1 5401:3 5403:1 5425:2 5453:2 5467:1 5478:1 5483:1 5486:1 5488:1 5491:1 5495:1 5560:1 5572:1 5593:3 5594:3 5603:5 5610:1 5648:1 5652:1 5670:1 5675:2 5677:24 5684:1 5703:1 5708:1 5710:3 5712:1 5735:3 5745:1 5769:1 5771:1 5774:1 5786:1 5810:1 5816:1 5819:2 5830:1 5836:1 5839:1 5848:1 5851:1 5856:2 5857:1 5863:1 5901:1 5902:1 5904:1 5908:1 5911:1 5920:1 5921:1 5922:2 5932:1 5943:4 5951:1 5954:1 5956:1 5962:2 5965:1 5967:1 5973:2 5978:1 5987:2 5991:1 5993:2 6010:1 6018:1 6021:5 6038:2 6044:1 6061:1 6063:1 6065:1 6068:1 6079:1 6086:1 6094:1 6095:1 6097:1 6101:1 6103:1 6114:1 6115:1 6118:1 6121:1 6136:1 6140:1 6141:1 6142:1 6179:1 6199:3 6217:1 6219:5 6221:1 6225:1 6227:1 6231:1 6239:2 6243:1 6257:1 6280:1 6302:1 6305:2 6330:1 6334:1 6364:1 6368:4 6371:9 6380:1 6386:2 6404:1 6410:2 6415:1 6420:1 6421:1 6444:1 6463:1 6465:1 6471:1 6474:1 6480:1 6481:2 6488:1 6490:2 6491:2 6492:1 6498:1 6499:1 6528:4 6529:1 6536:1 6539:2 6540:2 6564:1 6568:1 6577:1 6588:1 6591:3 6596:1 6602:1 6618:5 6621:1 6624:1 6635:1 6636:1 6639:1 6648:1 6654:1 6660:1 6673:1 6721:6 6724:2 6725:1 6726:1 6727:1 6728:1 6730:2 6731:2 6734:2 6735:3 6736:5 6743:3 6744:8 6745:1 6746:1 6747:3 6756:1 6764:1 6773:1 6776:1 6797:3 6802:1 6820:1 6833:2 6836:1 6872:1 6875:1 6878:1 6886:1 6895:2 6901:1 6930:1 6932:1 6970:1 6977:1 6984:1 6994:3 7000:2 7002:1 7019:1 7026:1 7027:5 7032:3 7035:1 7039:1 7046:1 7047:1 7060:2 7080:1 7082:1 7083:3 7087:1 7088:2 7114:1 7115:1 7118:1 7126:1 7148:1 7166:1 7171:1 7175:1 7192:3 7200:3 7201:2 7204:1 7216:3 7220:1 7222:2 7231:4 7236:3 7242:1 7257:1 7263:1 7264:1 7267:3 7273:1 7299:1 7308:1 7322:1 7325:1 7328:1 7333:1 7335:2 7342:1 7363:1 7375:1 7384:1 7407:2 7412:1 7432:2 7433:1 7448:1 7455:1 7456:2 7468:1 7495:1 7522:2 7542:1 7546:2 7548:1 7556:2 7573:1 7574:1 7577:5 7580:1 7584:1 7585:3 7587:1 7589:1 7601:1 7603:1 7610:1 7612:1 7625:1 7635:1 7653:1 7705:1 7717:1 7728:1 7733:1 7769:1 7774:1 7779:1 7782:1 7788:5 7830:1 7840:3 7859:1 7874:5 7915:2 7920:1 7926:1 7932:2 7954:1 7963:2 7968:1 7993:1 7997:2 7998:1 8004:1 8005:2 8023:1 8027:1 8031:4 8054:1 8064:4 8065:5 8066:3 8084:1 8089:2 8090:1 8094:2 8097:1 8100:1 8105:1 8121:1 8122:2 8128:1 8130:1 8131:47 8133:1 8134:1 8140:2 8142:1 8151:14 8152:28 8161:1 8164:1 8170:1 8173:1 8207:1 8208:6 8238:1 8254:1 8273:1 8279:2 8302:3 8307:1 8316:1 8321:1 8362:4 8365:7 8372:1 8408:1 8413:1 8415:5 8430:1 8432:1 8433:1 8450:1 8457:1 8467:1 8478:1 8492:1 8521:1 8523:3 8531:2 8537:1 8540:7 8546:2 8550:1 8559:1 8567:1 8570:2 8585:2 8590:1 8597:2 8603:1 8610:1 8623:1 8624:1 8633:23 8640:1 8651:1 8655:2 8664:2 8665:1 8687:2 8718:1 8724:1 8733:2 8742:1 8748:1 8753:2 8760:4 8764:1 8779:1 8789:1 8793:3 8798:4 8803:3 8816:2 8820:4 8830:1 8840:2 8842:1 8845:2 8850:1 8857:1 8858:2 8863:2 8873:1 8884:2 8887:2 8892:1 8895:1 8898:1 8899:1 8915:2 8917:1 8932:1 8938:1 8942:3 8953:1 8959:1 8966:1 8973:1 8979:1 8980:2 8983:1 8984:3 8985:2 8986:2 8987:5 8990:1 8991:1 8995:2 8998:2 9000:2 9004:3 9020:1 9027:3 9035:2 9039:3 9040:1 9041:1 9045:1 9046:1 9058:1 9061:1 9072:2 9075:2 9081:1 9086:2 9109:1 9112:5 9135:1 9139:5 9146:1 9148:1 9149:1 9151:2 9158:1 9164:1 9169:1 9204:1 9205:1 9209:1 9215:3 9225:3 9227:1 9248:2 9268:5 9269:2 9273:4 9274:1 9276:1 9277:4 9280:3 9286:2 9301:3 9302:1 9304:4 9316:1 9318:1 9339:2 9345:1 9400:1 9420:2 9439:2 9442:2 9450:1 9453:1 9463:1 9471:1 9478:1 9480:1 9495:1 9504:1 9506:1 9508:1 9523:1 9539:1 9561:4 9589:2 9592:1 9594:4 9605:1 9608:1 9618:7 9640:2 9646:3 9651:1 9658:1 9662:1 9663:1 9677:1 9686:1 9695:3 9697:1 9715:1 9718:1 9719:1 9721:1 9732:2 9776:1 9781:1 9809:1 9818:1 9825:1 9840:1 9842:1 9867:1 9870:1 9874:1 9877:3 9882:2 9888:1 9889:2 9890:1 9909:1 9928:2 9930:1 9937:2 9940:1 9942:1 9954:1 9972:1 9973:1 9977:3 9983:1 9993:1 9994:1 10009:1 10037:24 10043:1 10060:1 10069:2 10078:6 10084:2 10085:1 10109:1 10114:1 10117:1 10120:1 10127:1 10128:1 10130:2 10146:2 10152:1 10156:1 10169:14 10184:2 10185:1 10190:2 10202:1 10211:1 10222:1 10223:5 10229:1 10235:1 10238:3 10239:1 10240:2 10241:1 10259:1 10269:1 10275:1 10281:1 10286:1 10301:1 10317:2 10321:3 10322:1 10336:1 10356:8 10362:2 10363:4 10364:2 10371:3 10379:1 10380:1 10387:2 10393:3 10395:1 10396:1 10400:2 10406:2 10410:4 10413:5 10415:1 10416:1 10423:1 10438:1 10440:1 10446:3 10450:4 10468:1 10470:2 10483:1 10493:2 10533:1 10547:1 10549:3 10552:1 10577:12 10580:1 10581:6 10596:1 10601:1 10602:1 10627:1 10651:4 10691:1 10698:2 10707:1 10718:1 10731:1 10735:2 10757:4 10763:1 10777:1 10780:4 10784:1 10789:1 10791:1 10794:1 10809:1 10828:1 10830:1 10850:1 10868:1 10880:2 10892:5 10898:1 10903:1 10907:1 10917:2 10923:1 10935:2 10939:1 10957:3 10962:7 10972:1 10973:1 10998:1 11009:2 11026:3 11028:2 11031:2 11040:1 11047:6 11048:1 11060:2 11061:4 11062:1 11063:4 11070:1 11081:1 11084:3 11087:1 11105:1 11106:3 11120:1 11126:1 11134:4 11145:1 11148:2 11156:1 11160:2 11166:7 11230:1 11231:1 11234:1 11237:1 11260:2 11261:2 11262:1 11268:1 11276:1 11297:2 11305:1 11315:1 11324:1 11359:2 11364:1 11366:1 11371:1 11388:3 11389:1 11399:1 11400:7 11417:4 11418:7 11430:3 11441:1 11443:1 11453:1 11458:2 11469:1 11477:4 11482:1 11499:1 11512:2 11528:1 11529:2 11535:5 11546:1 11556:4 11564:1 11569:3 11582:1 11595:1 11597:1 11598:1 11621:1 11622:1 11626:1 11628:1 11641:1 11653:1 11668:1 11673:1 11676:1 11677:1 11678:1 11680:1 11683:1 11684:4 11685:1 11703:1 11710:1 11718:1 11721:2 11738:1 11740:1 11745:1 11753:1 11754:1 11779:2 11808:1 11810:4 11816:1 11819:1 11820:2 11824:1 11830:1 11831:1 11839:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11885:1 11887:4 11914:1 11918:1 11923:3 11926:6 11929:1 11931:2 11942:3 11961:1 11985:1 11986:1 11989:1 11991:1 11994:2 12009:1 12029:3 12045:1 12056:1 12063:1 12065:5 12066:2 12076:1 12077:3 12081:1 12093:2 12095:3 12098:2 12107:1 12120:1 12130:3 12135:1 12146:3 12153:2 12155:9 12157:1 12170:1 12171:1 12176:1 12177:1 12181:1 12182:1 12189:1 12190:3 12192:1 12193:7 12194:1 12200:1 12202:7 12210:1 12218:1 12222:1 12228:10 12253:2 12266:5 12270:2 12275:2 12280:1 12293:1 12314:1 12325:4 12333:1 12335:1 12337:2 12373:1 12375:1 12385:3 12406:1 12412:1 12415:2 12423:1 12440:1 12451:1 12459:1 12470:2 12471:2 12506:2 12508:1 12539:1 12555:5 12594:2 12609:1 12616:1 12623:1 12625:1 12628:1 12629:1 12632:1 12637:1 12654:4 12655:4 12656:24 12660:7 12671:1 12679:1 12681:2 12698:3 12705:1 12716:2 12745:1 12749:1 12766:2 12784:1 12788:1 12815:3 12824:9 12825:2 12841:1 12845:1 12846:4 12850:2 12871:1 12894:1 12902:3 12906:1 12929:1 12936:1 12943:2 12947:1 12953:1 12961:1 12976:2 12979:1 12992:1 13011:1 13015:2 13019:1 13035:4 13054:2 13057:1 13063:1 13092:1 13095:3 13103:1 13106:1 13107:1 13110:1 13114:1 13117:1 13129:1 13146:1 13166:1 13167:1 13174:1 13175:1 13183:1 13194:1 13207:1 13227:6 13240:1 13241:1 13243:1 13248:1 13251:1 13276:2 13277:4 13304:1 13307:3 13342:1 13371:1 13376:2 13404:1 13424:1 13429:2 13433:1 13440:1 13441:1 13443:3 13472:1 13486:2 13488:1 13494:1 13522:1 13524:1 13579:1 13580:1 13582:1 13597:5 13599:1 13609:1 13613:1 13614:1 13623:1 13624:3 13630:1 13649:2 13652:1 13656:1 13661:1 13664:1 13673:1 13681:1 13684:2 13688:1 13700:2 13709:1 13711:1 13712:1 13714:2 13720:1 13735:1 13739:2 13740:1 13768:1 13775:1 13776:1 13780:2 13816:2 13821:3 13823:1 13832:1 13833:2 13835:1 13838:7 13839:1 13842:4 13843:1 13851:2 13853:1 13856:1 13858:3 13873:3 13875:1 13878:2 13883:3 13898:1 13915:7 13916:1 13923:1 13926:1 13929:1 13930:1 13931:3 13943:1 13944:2 13958:2 13973:1 13981:2 13993:3 13994:1 14009:1 14011:5 14016:1 14027:1 14028:1 14037:1 14050:2 14063:3 14078:1 14080:1 14085:2 14086:7 14112:2 14113:2 14114:2 14115:1 14116:1 14129:4 14145:1 14152:2 14156:1 14157:2 14177:1 14189:2 14206:1 14221:2 14223:1 14228:1 14234:1 14237:2 14238:2 14239:2 14241:2 14245:1 14264:1 14274:1 14275:1 14278:1 14279:1 14280:1 14291:1 14296:2 14298:1 14307:1 14310:1 14311:1 14315:3 14318:1 14320:1 14334:1 14335:1 14366:8 14375:2 14377:1 14382:1 14422:1 14426:1 14445:2 14446:1 14447:2 14450:2 14468:2 14471:2 14472:1 14477:5 14503:1 14522:1 14529:1 14533:1 14544:2 14546:3 14552:3 14553:7 14563:2 14584:2 14592:3 14610:1 14622:2 14642:2 14644:1 14649:2 14650:1 14654:1 14664:1 14665:2 14670:2 14674:1 14688:1 14699:1 14704:1 14769:1 14771:1 14777:1 14780:1 14785:2 14806:1 14833:1 14845:1 14862:1 14887:1 14891:3 14901:1 14921:1 14922:1 14929:1 14935:1 14952:1 14953:1 14958:1 14971:1 14976:3 14986:2 14987:1 14997:1 15002:1 15008:5 15010:1 15011:1 15019:1 15020:1 15032:2 15033:1 15054:1 15060:1 15068:1 15072:1 15088:1 15096:2 15102:1 15120:2 15127:1 15141:1 15157:1 15162:2 15166:1 15174:1 15181:2 15190:1 15196:5 15216:2 15233:1 15238:1 15247:2 15252:1 15276:1 15290:1 15319:4 15330:1 15346:1 15364:1 15402:1 15475:1 15476:1 15487:1 15493:1 15507:2 15538:4 15547:3 15548:2 15552:1 15554:1 15556:1 15573:2 15577:1 15597:2 15605:1 15618:1 15625:1 15641:1 15643:2 15646:1 15655:3 15672:1 15683:1 15693:1 15695:2 15697:1 15701:1 15702:2 15725:1 15734:2 15771:1 15772:2 15775:1 15780:1 15781:1 15788:1 15805:1 15813:1 15814:1 15868:2 15875:3 15876:4 15881:1 15907:5 15908:1 15911:1 15933:1 15951:5 15955:2 15961:1 15962:1 15968:1 15984:1 15999:1 16001:1 16008:1 16010:1 16018:1 16021:4 16028:3 16032:2 16038:2 16054:1 16066:1 16073:2 16088:1 16096:1 16111:1 16121:1 16122:1 16126:1 16140:1 16148:3 16153:1 16167:10 16172:8 16174:1 16181:1 16207:2 16218:1 16221:2 16222:2 16235:3 16255:1 16263:1 16270:1 16277:1 16279:1 16303:3 16307:1 16309:1 16317:7 16325:3 16327:1 16334:1 16336:1 16337:2 16345:3 16347:1 16349:1 16352:1 16353:5 16356:2 16357:7 16358:1 16363:2 16367:2 16368:1 16369:1 16378:1 16379:6 16386:4 16387:2 16427:1 16467:1 16480:1 16481:1 16484:2 16488:1 16494:1 16495:2 16498:1 16501:2 16507:6 16519:1 16530:2 16532:1 16543:2 16561:2 16564:3 16578:1 16593:2 16610:1 16617:1 16623:1 16630:1 16638:3 16644:1 16646:8 16659:2 16660:2 16661:1 16673:1 16674:3 16677:1 16678:4 16692:1 16697:1 16706:24 16714:1 16734:1 16739:6 16740:1 16743:1 16761:2 16775:70 16794:3 16799:1 16831:1 16861:1 16864:1 16866:1 16867:3 16884:1 16904:1 16908:1 16909:1 16911:1 16913:2 16915:1 16916:2 16919:3 16920:4 16921:1 16927:3 16930:1 16931:2 16937:1 16944:1 16957:1 16961:1 16965:2 16971:1 16980:1 16981:1 17010:1 17013:1 17047:1 17055:5 17075:1 17090:2 17095:3 17116:1 17130:1 17135:2 17139:1 17144:1 17153:1 17192:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:2 17253:1 17268:1 17289:1 17294:2 17295:1 17317:1 17322:1 17326:1 17336:3 17342:4 17343:1 17347:1 17369:1 17372:3 17383:1 17392:3 17398:1 17405:3 17414:1 17415:1 17422:1 17424:3 17426:1 17427:2 17429:1 17435:1 17438:1 17445:1 17450:1 17454:3 17459:1 17460:13 17470:1 17474:2 17500:2 17514:2 17520:1 17521:3 17553:1 17559:1 17561:1 17564:2 17582:1 17583:2 17585:5 17587:1 17589:3 17593:1 17596:2 17608:1 17613:1 17614:1 17625:1 17635:1 17638:1 17641:1 17645:2 17646:2 17675:2 17678:2 17685:1 17689:1 17711:1 17717:1 17718:3 17725:1 17726:1 17727:1 17742:1 17771:1 17788:1 17792:1 17797:2 17800:1 17816:1 17819:1 17820:1 17821:2 17822:1 17831:1 17835:1 17843:2 17844:1 17849:3 17859:2 17867:1 17871:1 17875:1 17877:3 17881:1 17889:1 17896:1 17897:1 17906:3 17912:1 17932:2 17933:1 17952:1 17957:1 17972:2 17997:1 17998:2 18006:1 18011:1 18012:1 18034:4 18083:1 18087:1 18093:1 18099:1 18110:1 18112:1 18115:1 18129:6 18131:2 18134:1 18136:1 18144:1 18147:2 18148:2 18153:2 18154:1 18169:1 18171:2 18174:2 18182:1 18187:1 18188:1 18197:2 18206:1 18214:1 18221:1 18222:1 18223:1 18226:1 18235:1 18241:1 18248:2 18249:2 18277:1 18280:1 18282:2 18285:1 18286:1 18310:1 18329:2 18330:3 18338:2 18342:1 18355:1 18366:3 18410:3 18412:1 18414:1 18415:1 18417:2 18421:2 18423:2 18424:1 18441:1 18442:14 18446:2 18460:1 18474:1 18478:2 18489:1 18506:1 18517:1 18524:1 18543:1 18544:2 18546:3 18559:2 18562:2 18565:1 18576:1 18583:1 18584:1 18589:1 18598:1 18602:1 18625:1 18629:4 18633:4 18634:2 18636:1 18646:2 18676:2 18678:1 18707:1 18709:1 18731:1 18748:3 18749:1 18757:1 18781:1 18786:1 18797:1 18805:1 18807:1 18815:1 18816:1 18819:3 18831:2 18838:1 18855:1 18856:1 18860:1 18866:1 18872:1 18873:4 18879:1 18896:1 18907:1 18922:4 18928:1 18932:2 18954:1 18956:4 18966:1 18977:4 18980:1 18984:1 18987:3 18990:1 19006:2 19007:1 19016:1 19018:2 19022:1 19078:1 19079:1 19098:2 19102:1 19113:1 19114:14 19118:1 19125:1 19132:1 19138:1 19145:1 19160:1 19170:1 19171:1 19182:1 19183:1 19190:3 19191:2 19193:1 19194:1 19195:1 19210:1 19217:1 19219:1 19225:1 19229:2 19241:1 19244:6 19250:2 19251:1 19265:4 19269:2 19272:1 19276:2 19277:1 19315:1 19323:3813 19328:1 19342:5 19343:1 19348:2 19376:1 19385:1 19395:2 19405:1 19410:1 19413:3 19414:1 19421:1 19449:1 19452:3 19473:2 19482:2 19505:1 19507:5 19509:2 19530:3 19536:1 19539:3 19541:1 19543:1 19556:1 19571:1 19584:1 19586:1 19596:1 19609:1 19632:1 19636:5 19638:1 19642:1 19649:1 19654:1 19658:1 19664:1 19670:1 19696:3 19702:1 19708:1 19721:2 19733:1 19743:1 19751:1 19756:1 19758:1 19804:1 19815:1 19817:2 19820:1 19822:1 19831:4 19845:2 19856:1 19857:1 19869:1 19875:1 19882:1 19918:1 19919:4 19933:3 19976:1 19984:1 20004:1 20024:1 20030:1 20032:2 20043:1 20048:2 20050:1 20057:2 20074:4 20086:2 20090:1 20091:4 20095:1 20107:5 20121:16 20141:1 20142:1 20144:3 20146:1 20147:23 20159:2 20177:1 20178:6 20180:1 20181:1 20197:2 20212:1 20216:5 20236:1 20243:2 20248:1 20250:6 20252:2 20255:1 20260:1 20262:1 20277:2 20278:1 20279:1 20283:1 20287:1 20313:1 20319:3 20326:1 20339:1 20349:3 20363:1 20387:1 20389:1 20392:1 20398:1 20447:1 20451:1 20458:1 20477:1 20486:1 20492:1 20493:1 20502:1 20523:1 20524:13 20527:1 20565:1 20573:1 20574:1 20596:1 20605:1 20613:1 20619:1 20623:7 20644:1 20648:1 20656:1 20669:2 20682:1 20688:1 20691:1 20709:1 20714:1 20719:1 20720:1 20722:2 20724:2 20725:1 20731:2 20749:1 20779:4 20782:1 20787:1 20789:1 20796:1 20811:3 20814:1 20821:1 20839:3 20849:1 20853:1 20871:1 20877:5 20894:2 20897:1 20903:2 20907:1 20908:2 20918:2 20920:1 20923:7 20942:1 20970:1 20972:1 20976:1 20987:1 20996:15 21002:1 21014:2 21017:3 21030:1 21033:1 21049:1 21050:15 21066:1 21080:1 21088:1 21099:1 21103:1 21105:1 21131:1 21144:2 21170:1 21175:1 21180:1 21182:1 21196:2 21213:1 21214:4 21216:2 21225:1 21231:1 21258:2 21293:1 21301:5 21312:1 21313:1 21316:3 21328:1 21330:1 21331:1 21339:1 21343:1 21344:1 21355:1 21389:1 21392:1 21413:2 21451:2 21466:1 21468:1 21474:1 21487:1 21495:1 21498:1 21500:2 21511:1 21528:1 21529:1 21532:2 21554:1 21556:1 21560:1 21575:1 21596:3 21625:2 21630:1 21631:1 21633:1 21634:1 21638:1 21643:14 21652:1 21655:2 21660:3 21661:1 21663:5 21664:1 21674:3 21678:1 21684:5 21690:1 21708:4 21711:1 21716:2 21722:1 21723:1 21741:1 21755:2 21756:1 21757:1 21769:2 21773:1 21789:2 21797:1 21798:1 21822:8 21829:1 21830:2 21835:1 21847:1 21852:1 21863:1 21874:1 21891:1 21896:1 21911:1 21915:1 21916:1 21932:3 21936:1 21939:1 21943:1 21949:1 21962:3 21977:1 21980:1 21986:2 21987:1 21990:1 21992:1 21996:1 22003:1 22005:1 22041:1 22048:3 22050:1 22105:1 22106:1 22115:1 22142:1 22147:1 22151:1 22154:4 22157:2 22159:3 22170:4 22179:1 22181:1 22183:1 22223:1 22228:1 22232:1 22233:1 22236:2 22241:2 22251:1 22258:1 22267:1 22268:1 22270:1 22272:1 22273:2 22281:1 22285:1 22286:1 22298:2 22300:6 22305:3 22309:1 22319:1 22320:1 22325:1 22332:1 22342:1 22349:1 22354:1 22377:1 22382:2 22383:1 22384:2 22389:3 22396:2 22405:1 22406:1 22409:1 22422:1 22425:4 22427:18 22430:1 22447:1 22456:2 22457:2 22461:1 22466:1 22469:1 22479:1 22481:2 22501:5 22515:1 22534:3 22536:1 22538:3 22540:1 22542:1 22549:5 22563:1 22579:1 22600:1 22603:1 22604:1 22606:1 22607:4 22614:2 22618:3 22621:1 22671:1 22693:4 22702:2 22703:1 22705:12 22709:3 22712:2 22720:2 22721:1 22723:1 22734:3 22735:1 22736:3 22739:1 22740:1 22744:1 22746:2 22748:2 22750:1 22756:1 22757:1 22758:1 22764:1 22769:2 22772:2 22777:1 22780:1 22795:2 22800:1 22822:1 22833:5 22834:1 22856:1 22860:1 22866:1 22868:2 22874:2 22877:1 22881:1 22895:1 22901:1 22906:1 22909:4 22917:1 22926:1 22929:1 22937:1 22969:1 22985:24 22987:2 22990:1 23008:1 23027:1 23032:2 23052:1 23065:1 23073:1 23076:4 23078:1 23093:1 23096:2 23102:1 23106:1 23112:2 23125:2 23133:1 23136:9 23141:1 23153:2 23160:4 23166:1 23199:1 23202:2 23209:1 23212:1 23215:2 23221:2 23225:1 23236:1 23239:1 23242:1 23244:1 23246:2 23256:1 23269:2 23271:1 23284:10 23302:4 23311:1 23317:4 23325:1 23336:1 23360:1 23376:2 23390:1 23391:1 23413:1 23445:1 23454:3 23459:1 23462:1 23473:1 23481:1 23493:1 23496:4 23514:1 23517:1 23534:1 23535:1 23545:1 23549:1 23554:1 23570:1 23573:1 23574:2 23575:2 23579:15 23581:1 23583:2 23600:1 23609:1 23611:2 23624:1 23629:1 23632:1 23639:1 23648:2 23652:1 23655:1 23662:3 23665:1 23666:2 23669:1 23673:1 23687:1 23695:1 23699:3 23710:1 23716:1 23717:5 23721:1 23749:1 23750:1 23752:1 23765:2 23767:1 23788:2 23794:1 23801:1 23805:1 23807:1 23813:1 23819:2 23838:1 23851:1 23859:1 23864:1 23875:1 23878:2 23879:1 23891:2 23903:1 23913:1 23948:1 23955:1 23968:1 23969:1 23971:6 23978:1 23987:1 24002:1 24003:1 24012:2 24015:1 24023:1 24034:1 24049:1 24060:1 24087:1 24090:3 24103:1 24108:2 24113:1 24119:2 24124:4 24128:1 24141:1 24151:1 24168:2 24177:1 24183:1 24187:3 24188:5 24195:1 24196:1 24207:6 24216:1 24219:1 24222:1 24231:1 24232:1 24235:1 24237:3 24241:2 24247:1 24252:1 24273:2 24274:1 24280:1 24281:2 24283:1 24293:1 24296:1 24329:5 24336:1 24340:29 24344:1 24391:1 24408:1 24419:1 24432:2 24438:1 24440:2 24441:1 24444:1 24449:1 24464:1 24478:1 24504:3 24506:1 24508:1 24509:2 24533:1 24534:1 24538:1 24548:2 24568:1 24571:1 24591:1 24602:1 24625:1 24653:1 24656:2 24668:2 24685:1 24702:4 24709:1 24714:1 24717:1 24745:1 24755:1 24756:1 24761:1 24775:1 24777:1 24797:2 24814:3 24827:2 24833:1 24838:2 24839:1 24841:1 24844:2 24845:1 24859:1 24873:1 24881:1 24890:1 24907:1 24921:1 24931:1 24932:1 24939:1 24944:2 24955:1 24970:1 24976:1 24989:1 24999:1 25004:1 25005:8 25014:1 25021:1 25023:1 25027:1 25028:1 25049:2 25059:1 25062:1 25073:2 25090:1 25122:1 25125:1 25139:1 25147:3 25158:1 25181:1 25190:1 25194:5 25211:1 25220:1 25252:2 25259:1 25264:1 25273:1 25275:1 25282:1 25285:3 25287:5 25288:1 25292:1 25311:1 25319:1 25325:2 25327:3 25331:1 25335:1 25339:3 25347:2 25351:1 25384:2 25385:2 25398:3 25415:1 25419:2 25431:2 25447:1 25468:1 25471:1 25472:1 25487:1 25495:4 25503:3 25507:1 25510:1 25514:1 25526:1 25527:1 25534:1 25549:1 25551:1 25554:1 25560:1 25561:2 25570:1 25576:2 25577:1 25587:1 25597:1 25598:2 25614:1 25623:1 25627:3 25631:1 25634:1 25643:1 25652:1 25664:1 25673:1 25676:1 25684:1 25688:1 25716:1 25718:1 25722:1 25733:1 25740:2 25778:3 25797:5 25823:1 25832:1 25836:1 25852:1 25860:1 25871:1 25872:1 25878:2 25880:1 25884:1 25893:6 25894:1 25900:1 25918:3 25921:1 25922:1 25952:2 25966:1 25980:4 25998:1 26004:1 26007:1 26011:1 26021:1 26048:1 26058:4 26073:1 26076:1 26097:8 26099:1 26119:3 26123:1 26124:1 26150:2 26156:6 26159:1 26167:1 26169:1 26172:4 26175:1 26176:1 26207:1 26226:1 26232:1 26257:1 26304:1 26315:1 26316:1 26318:3 26319:1 26320:2 26322:8 26324:3 26331:1 26337:1 26356:1 26371:1 26372:3 26376:1 26377:2 26403:1 26413:1 26415:6 26416:1 26424:1 26429:4 26435:6 26436:2 26445:2 26458:1 26460:1 26463:1 26472:1 26489:2 26494:1 26513:6 26518:1 26524:1 26525:1 26534:1 26538:2 26548:1 26564:2 26579:1 26589:3 26608:1 26627:5 26628:1 26652:4 26653:4 26659:1 26681:2 26689:1 26712:1 26717:1 26728:3 26754:1 26761:1 26781:1 26782:4 26808:1 26813:1 26835:1 26839:1 26842:2 26844:1 26848:1 26862:1 26865:1 26868:2 26871:3 26891:1 26893:1 26898:1 26901:2 26912:1 26915:1 26920:1 26934:2 26935:1 26938:1 26949:2 26955:1 26956:1 26964:1 26977:6 26981:1 26982:1 26984:1 26985:1 26989:2 27000:1 27001:1 27003:1 27008:2 27010:3 27029:1 27056:1 27065:2 27078:1 27099:1 27102:1 27107:1 27113:1 27115:3 27138:15 27144:1 27178:1 27185:1 27188:1 27192:2 27212:1 27223:1 27244:1 27252:1 27257:1 27266:1 27280:3 27288:1 27292:1 27295:1 27308:1 27314:2 27332:1 27394:2 27407:3 27422:5 27424:2 27426:1 27431:1 27438:2 27439:1 27440:4 27441:9 27444:1 27450:1 27470:1 27486:1 27490:2 27521:1 27531:1 27534:1 27540:4 27548:1 27552:1 27571:1 27580:3 27600:1 27601:1 27607:1 27611:1 27621:2 27625:1 27626:1 27636:1 27663:2 27668:1 27673:2 27676:1 27705:1 27709:1 27718:1 27735:1 27740:1 27755:1 27775:1 27799:1 27809:1 27824:1 27834:1 27852:1 27854:2 27863:1 27875:1 27883:3 27893:2 27910:2 27925:1 27939:1 27949:1 27950:1 27957:1 28004:2 28005:2 28017:2 28059:1 28076:1 28087:1 28095:2 28098:1 28099:5 28110:1 28113:1 28118:1 28121:9 28135:1 28137:1 28142:1 28154:2 28155:1 28207:1 28211:1 28223:29 28224:1 28227:3 28230:1 28238:1 28246:1 28258:5 28281:1 28285:1 28288:1 28331:1 28338:3 28340:3 28342:4 28343:2 28349:1 28356:1 28385:2 28388:1 28391:1 28395:1 28398:1 28405:2 28410:2 28413:2 28419:2 28421:1 28429:1 28430:1 28431:1 28432:1 28434:1 28437:3 28443:1 28448:3 28450:1 28472:2 28482:1 28496:1 28499:2 28514:1 28524:2 28525:1 28526:1 28530:1 28544:1 28548:1 28551:1 28568:1 28574:1 28581:3 28593:1 28600:1 28644:2 28645:1 28659:1 28663:2 28665:2 28669:2 28674:1 28675:1 28680:1 28681:1 28684:1 28696:3 28697:1 28726:1 28754:12 28762:1 28771:1 28786:1 28795:2 28798:1 28839:3 28848:3 28866:1 28870:1 28874:2 28878:1 28912:1 28928:1 28931:4 28939:1 28962:2 28964:1 28966:1 28974:1 28975:1 29000:5 29004:5 29028:1 29030:1 29039:3 29041:1 29051:1 29055:1 29069:1 29073:1 29095:1 29111:1 29112:1 29130:4 29135:1 29143:1 29155:1 29167:3 29168:1 29179:1 29182:2 29183:28 29184:2 29186:3 29189:4 29192:1 29193:1 29203:1 29220:1 29221:13 29224:1 29234:1 29239:1 29240:1 29248:1 29276:1 29277:1 29281:2 29289:2 29290:1 29300:1 29301:2 29302:2 29310:1 29320:1 29325:1 29334:6 29342:5 29346:1 29348:2 29377:3 29381:1 29382:2 29388:1 29394:1 29409:1 29410:1 29429:1 29430:1 29454:1 29463:1 29486:1 29495:2 29502:1 29536:2 29537:2 29542:1 29564:1 29573:1 29574:1 29575:1 29581:1 29583:1 29587:2 29589:1 29591:4 29595:2 29600:1 29615:1 29620:2 29624:1 29636:1 29655:8 29659:1 29661:3 29663:1 29666:4 29669:1 29718:1 29720:1 29741:3 29745:8 29747:1 29749:1 29753:1 29754:1 29771:2 29776:2 29777:2 29790:1 29795:1 29809:2 29812:2 29814:1 29821:1 29841:3 29848:2 29860:1 29891:3 29896:1 29898:1 29901:2 29904:1 29905:2 29907:1 29928:2 29932:3 29935:2 29936:5 29942:1 29950:5 29957:1 29969:2 30003:1 30011:1 30056:1 30070:1 30080:1 30087:1 30104:3 30107:2 30121:1 30129:4 30146:1 30160:2 30164:1 30170:1 30177:1 30201:1 30206:1 30210:2 30216:1 30222:3 30232:1 30241:1 30246:1 30252:1 30269:1 30285:3 30288:1 30290:1 30292:1 30294:1 30313:1 30325:2 30341:1 30344:1 30345:1 30346:6 30348:1 30354:2 30364:2 30401:1 30402:3 30407:1 30429:1 30435:5 30441:2 30446:1 30475:1 30507:1 30510:1 30512:1 30517:1 30518:1 30524:1 30525:1 30527:5 30533:1 30539:1 30571:1 30576:2 30586:1 30588:1 30592:1 30593:1 30595:1 30599:1 30609:2 30650:1 30658:1 30660:1 16 5:1 24:1 26:2 27:1 38:1 52:1 62:1 66:1 69:1 74:1 75:5 91:1 94:1 121:1 136:1 150:1 151:4 156:1 160:2 163:1 190:1 197:1 202:3 206:1 220:1 224:4 229:1 230:1 251:2 266:1 285:1 294:4 297:1 315:1 324:1 334:2 335:3 336:1 360:1 368:1 369:1 375:1 392:1 407:1 430:3 436:2 440:2 453:1 463:1 471:1 477:2 489:1 491:1 493:1 495:1 502:1 503:1 505:1 510:2 511:2 546:1 547:1 564:5 622:1 625:3 631:1 637:3 647:1 660:3 666:1 673:4 679:1 688:1 694:1 705:1 706:1 710:1 722:1 730:1 737:1 748:1 768:2 778:2 795:1 798:1 815:1 836:1 845:2 851:1 853:1 855:1 857:1 870:4 878:1 882:3 887:2 895:1 898:2 931:2 935:1 939:2 942:1 943:1 949:1 951:2 965:2 966:2 971:3 973:1 974:3 975:6 976:2 981:2 1002:1 1003:2 1026:1 1028:1 1029:6 1032:2 1038:1 1058:1 1065:2 1069:2 1107:2 1108:1 1131:1 1134:1 1137:1 1155:2 1161:1 1170:2 1171:1 1191:1 1196:2 1216:1 1217:3 1220:1 1221:1 1224:1 1233:2 1236:1 1242:2 1253:1 1254:4 1267:2 1273:1 1277:2 1280:1 1290:2 1291:3 1319:1 1324:1 1325:2 1331:2 1333:5 1336:1 1346:2 1347:7 1348:2 1349:1 1361:1 1365:1 1377:1 1379:1 1389:1 1393:1 1395:3 1409:2 1421:2 1422:1 1446:2 1458:1 1473:1 1476:2 1499:1 1500:3 1503:1 1511:1 1514:1 1516:1 1519:2 1528:1 1538:1 1556:1 1566:6 1574:1 1579:1 1585:7 1590:1 1594:2 1601:1 1602:2 1603:1 1608:4 1609:1 1614:1 1618:1 1624:1 1625:1 1628:5 1642:1 1651:1 1653:1 1657:9 1671:1 1677:3 1679:2 1680:2 1681:2 1685:1 1690:2 1696:1 1725:2 1730:1 1734:5 1739:5 1742:2 1743:1 1756:1 1757:1 1759:1 1776:5 1780:3 1788:1 1789:1 1800:1 1802:1 1807:2 1812:1 1826:1 1840:1 1841:1 1855:2 1857:1 1858:1 1860:1 1863:1 1873:4 1886:5 1900:1 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1939:1 1947:1 1951:1 1954:1 1955:1 1964:1 1969:2 1970:2 1977:1 1982:1 1986:1 1989:1 1997:1 1999:1 2003:1 2005:1 2016:4 2021:1 2023:1 2026:2 2032:1 2035:1 2038:2 2039:4 2042:1 2046:1 2048:1 2052:1 2069:1 2070:4 2072:1 2090:1 2096:1 2101:1 2124:1 2125:1 2131:1 2132:1 2149:1 2153:1 2161:2 2162:2 2164:2 2167:2 2169:1 2170:3 2204:1 2227:1 2231:1 2232:1 2234:4 2235:1 2237:2 2238:1 2239:1 2269:4 2296:2 2307:1 2337:1 2339:1 2346:1 2351:1 2353:3 2363:1 2366:1 2374:1 2381:1 2404:2 2405:1 2406:1 2407:2 2408:5 2412:3 2413:1 2415:6 2416:1 2417:1 2420:6 2421:1 2422:4 2424:2 2427:1 2431:1 2434:6 2436:3 2437:7 2442:1 2443:1 2448:1 2450:2 2455:1 2461:2 2469:1 2473:1 2486:1 2488:1 2495:1 2508:1 2514:1 2518:2 2519:2 2520:1 2525:1 2532:1 2533:3 2538:1 2543:1 2550:1 2556:2 2560:1 2575:1 2597:1 2599:1 2602:1 2623:5 2633:1 2641:1 2645:1 2650:2 2657:4 2659:1 2681:1 2689:1 2693:1 2694:1 2705:1 2742:2 2747:1 2766:1 2797:2 2803:1 2812:4 2819:1 2825:4 2834:1 2841:2 2842:1 2849:1 2852:3 2854:12 2856:2 2872:1 2874:1 2886:1 2888:2 2894:1 2896:1 2900:1 2901:1 2902:1 2909:4 2912:1 2918:1 2936:2 2943:2 2952:2 2962:1 2963:1 2965:5 2976:4 3019:4 3024:1 3027:1 3030:1 3031:1 3039:2 3043:1 3056:16 3067:7 3081:1 3090:2 3099:1 3105:1 3118:32 3127:1 3128:2 3151:1 3152:1 3170:1 3181:1 3189:1 3196:2 3222:1 3224:2 3227:1 3229:1 3232:2 3296:3 3299:1 3311:3 3318:1 3342:1 3358:1 3378:1 3379:1 3389:2 3390:1 3391:1 3397:1 3403:2 3406:4 3417:2 3428:13 3442:1 3454:1 3461:1 3469:2 3485:1 3498:7 3516:1 3543:1 3565:1 3567:1 3574:1 3588:1 3590:2 3601:3 3609:1 3613:1 3628:1 3634:1 3640:3 3643:3 3649:1 3654:1 3661:1 3667:5 3707:1 3711:3 3713:1 3729:1 3730:1 3731:1 3746:3 3764:1 3778:1 3793:1 3796:1 3801:1 3803:5 3804:2 3810:2 3812:1 3813:2 3819:2 3829:2 3839:1 3846:1 3867:1 3886:1 3898:1 3902:2 3903:4 3906:1 3913:1 3918:1 3929:1 3950:1 3958:4 3959:44 3966:1 3981:1 3993:2 3994:1 3995:9 4000:1 4007:1 4009:1 4010:27 4011:2 4012:2 4015:6 4018:1 4027:2 4042:3 4057:3 4058:4 4061:3 4063:4 4076:2 4078:2 4079:1 4095:1 4116:2 4122:1 4123:3 4126:1 4130:1 4134:1 4167:1 4171:1 4173:1 4176:2 4178:1 4182:1 4183:3 4196:2 4207:2 4209:1 4216:1 4219:1 4223:1 4232:1 4234:1 4235:2 4242:1 4256:1 4258:1 4265:1 4266:2 4267:1 4269:1 4270:1 4285:1 4290:2 4294:1 4297:1 4301:5 4318:5 4324:1 4330:1 4360:1 4368:1 4369:1 4373:1 4381:1 4389:1 4416:1 4423:1 4436:1 4439:3 4447:1 4463:2 4474:1 4483:1 4486:1 4498:2 4504:2 4505:2 4508:1 4509:1 4539:1 4547:2 4555:1 4557:1 4563:1 4586:1 4599:1 4611:2 4623:1 4636:14 4650:1 4665:1 4697:2 4701:1 4706:5 4715:1 4718:2 4749:7 4759:1 4767:1 4773:1 4776:1 4781:1 4787:1 4796:1 4840:1 4854:1 4855:2 4880:1 4896:1 4900:2 4906:2 4909:1 4921:2 4927:1 4930:2 4938:1 4948:4 4959:1 4962:1 4966:4 4989:3 4990:1 4993:2 4994:1 5002:1 5014:1 5044:1 5058:1 5059:1 5062:1 5064:1 5076:1 5090:1 5092:2 5100:2 5153:2 5159:1 5186:1 5189:1 5191:1 5201:17 5202:2 5211:1 5219:1 5231:2 5241:1 5257:1 5260:2 5275:1 5281:1 5288:1 5308:4 5314:1 5320:3 5321:1 5323:4 5340:1 5344:2 5345:4 5347:8 5348:1 5350:1 5351:2 5353:1 5354:3 5356:1 5361:1 5362:24 5363:1 5365:1 5370:2 5371:3 5376:2 5377:1 5397:2 5401:3 5403:1 5425:2 5453:2 5467:1 5478:1 5483:1 5486:1 5488:1 5491:1 5495:2 5560:1 5572:2 5593:3 5594:3 5603:5 5610:1 5648:1 5652:1 5670:1 5675:2 5677:24 5684:1 5703:1 5708:1 5710:3 5712:1 5735:3 5745:1 5769:1 5771:1 5774:1 5786:1 5810:1 5816:1 5819:2 5830:1 5836:1 5839:1 5848:1 5851:1 5856:2 5857:1 5863:1 5901:1 5902:1 5904:1 5908:1 5911:1 5920:1 5921:1 5922:2 5932:1 5943:4 5951:1 5954:1 5956:1 5962:2 5965:1 5967:1 5973:2 5978:1 5987:2 5991:1 5993:2 6010:1 6018:1 6021:5 6038:2 6044:1 6060:1 6061:1 6063:1 6065:1 6068:1 6079:1 6086:1 6094:1 6095:1 6097:1 6101:1 6103:1 6114:1 6115:1 6118:1 6121:1 6136:1 6140:1 6141:1 6142:1 6179:1 6199:3 6217:1 6219:5 6221:1 6225:1 6227:1 6231:1 6239:2 6243:1 6257:1 6280:1 6302:1 6305:2 6330:1 6334:1 6364:1 6368:4 6371:9 6380:1 6386:2 6404:1 6410:2 6415:1 6420:1 6421:1 6444:1 6463:1 6465:1 6471:1 6474:1 6480:1 6481:2 6488:1 6490:2 6491:2 6492:1 6498:1 6499:1 6528:5 6529:1 6536:1 6539:2 6540:2 6564:1 6568:1 6577:1 6588:1 6591:3 6596:1 6602:2 6618:5 6621:1 6624:1 6635:1 6636:1 6639:1 6648:1 6654:1 6660:1 6673:1 6721:6 6724:2 6725:2 6726:1 6727:1 6728:1 6730:2 6731:2 6734:2 6735:3 6736:5 6743:3 6744:8 6745:1 6746:1 6747:4 6756:1 6764:2 6773:1 6776:1 6797:3 6802:1 6820:1 6833:2 6836:1 6872:1 6875:1 6878:1 6886:1 6895:2 6901:1 6930:1 6932:1 6970:1 6977:1 6984:1 6994:4 7000:2 7002:1 7019:1 7026:1 7027:5 7032:3 7035:1 7039:1 7046:1 7047:1 7060:2 7080:1 7082:1 7083:3 7087:1 7088:2 7114:1 7115:1 7118:1 7126:1 7148:1 7166:1 7171:1 7175:1 7192:3 7200:3 7201:2 7204:1 7216:3 7220:1 7222:2 7231:5 7236:3 7242:1 7257:1 7263:1 7264:1 7267:3 7273:1 7299:1 7308:1 7322:1 7325:1 7328:1 7333:1 7335:2 7342:1 7363:1 7375:1 7384:1 7407:2 7412:1 7432:3 7433:1 7448:1 7455:1 7456:2 7468:1 7495:1 7522:2 7542:1 7546:2 7548:1 7556:2 7573:1 7574:1 7577:5 7580:1 7584:1 7585:3 7587:1 7589:1 7601:1 7603:1 7610:1 7612:1 7625:1 7635:1 7653:2 7705:1 7717:1 7728:1 7733:1 7769:2 7774:1 7779:1 7782:1 7788:5 7830:1 7840:4 7859:1 7874:5 7915:2 7920:2 7926:1 7932:2 7954:2 7963:2 7968:1 7993:1 7997:2 7998:1 8001:1 8004:1 8005:2 8023:1 8027:1 8031:5 8054:1 8064:4 8065:5 8066:3 8084:1 8089:2 8090:1 8094:2 8097:1 8100:1 8105:1 8121:1 8122:2 8128:1 8130:1 8131:50 8133:1 8134:1 8140:2 8142:1 8151:16 8152:28 8161:1 8164:1 8170:1 8173:1 8207:1 8208:6 8238:1 8254:1 8273:1 8279:2 8302:4 8307:1 8316:1 8321:1 8362:4 8365:7 8372:1 8408:1 8413:1 8415:5 8430:1 8432:1 8433:1 8450:1 8457:1 8467:1 8478:1 8492:1 8521:1 8523:4 8525:1 8531:2 8537:1 8540:8 8546:2 8550:1 8559:1 8567:1 8570:2 8585:2 8590:1 8597:2 8603:1 8610:1 8623:1 8624:1 8633:25 8637:1 8640:1 8651:1 8655:2 8664:2 8665:1 8687:2 8718:1 8724:1 8733:2 8742:1 8748:1 8753:2 8760:4 8764:1 8779:1 8789:1 8793:3 8798:5 8803:3 8816:2 8820:4 8830:1 8840:2 8842:1 8845:2 8850:1 8857:1 8858:2 8863:2 8873:1 8884:2 8887:2 8892:1 8895:1 8898:1 8899:1 8915:2 8917:1 8932:1 8938:1 8942:3 8953:1 8959:1 8966:1 8973:1 8979:1 8980:2 8983:1 8984:3 8985:2 8986:2 8987:5 8990:1 8991:1 8995:2 8998:2 9000:2 9004:3 9020:1 9027:3 9035:2 9039:3 9040:1 9041:1 9045:1 9046:1 9058:1 9061:1 9072:3 9075:2 9081:1 9086:2 9109:1 9112:5 9135:1 9139:5 9146:1 9148:1 9149:1 9151:2 9158:1 9164:1 9169:1 9204:1 9205:1 9209:1 9215:3 9225:3 9227:1 9230:1 9248:2 9268:6 9269:2 9273:5 9274:1 9276:1 9277:4 9280:3 9286:2 9301:3 9302:1 9304:5 9316:1 9318:1 9339:3 9345:1 9400:1 9420:3 9439:2 9442:2 9450:1 9453:1 9463:1 9471:1 9478:1 9480:1 9495:1 9504:1 9506:1 9508:1 9523:1 9539:1 9561:4 9589:2 9592:1 9594:5 9605:1 9608:1 9618:8 9640:2 9646:3 9651:1 9658:1 9662:1 9663:1 9677:1 9686:1 9695:3 9697:1 9715:1 9718:1 9719:1 9721:1 9732:2 9776:1 9781:1 9809:1 9818:1 9825:1 9840:1 9842:1 9867:1 9870:1 9874:1 9877:3 9882:2 9888:1 9889:2 9890:1 9909:1 9928:2 9930:1 9937:2 9940:1 9942:1 9954:1 9972:1 9973:1 9977:3 9983:1 9993:1 9994:1 10009:1 10037:24 10043:1 10060:1 10069:2 10078:6 10084:2 10085:1 10109:1 10114:2 10117:1 10120:1 10127:1 10128:1 10130:2 10146:2 10152:1 10156:1 10169:14 10182:1 10184:2 10185:1 10190:2 10202:1 10211:1 10222:1 10223:5 10229:1 10235:1 10238:3 10239:1 10240:2 10241:1 10259:1 10269:1 10275:1 10281:1 10286:1 10301:3 10317:2 10321:3 10322:1 10336:1 10356:8 10362:2 10363:4 10364:2 10371:3 10379:1 10380:1 10387:3 10393:3 10395:1 10396:1 10400:2 10406:2 10410:4 10413:5 10415:1 10416:1 10423:1 10438:1 10440:1 10446:3 10450:4 10468:1 10470:2 10483:1 10493:2 10533:1 10547:1 10549:3 10552:1 10577:12 10580:1 10581:6 10596:1 10601:1 10602:1 10627:1 10636:1 10651:4 10691:1 10698:2 10707:1 10718:1 10731:1 10735:2 10757:4 10763:1 10777:1 10780:4 10784:1 10789:2 10791:1 10794:1 10809:1 10828:1 10830:1 10850:1 10868:1 10880:2 10892:6 10898:1 10903:1 10907:1 10917:2 10923:1 10935:2 10939:1 10957:3 10962:7 10972:1 10973:1 10998:1 11009:2 11026:3 11028:2 11031:2 11040:1 11047:6 11048:2 11060:2 11061:4 11062:1 11063:6 11070:1 11081:1 11084:4 11087:1 11105:1 11106:3 11120:1 11126:1 11134:4 11145:1 11148:3 11156:1 11160:2 11165:1 11166:8 11230:1 11231:1 11234:1 11237:1 11260:2 11261:2 11262:1 11268:1 11276:1 11297:2 11305:1 11315:1 11324:1 11359:2 11364:1 11366:1 11371:1 11388:3 11389:1 11399:1 11400:8 11417:4 11418:7 11430:3 11441:1 11443:1 11453:1 11458:2 11469:1 11477:4 11482:1 11499:1 11512:2 11528:1 11529:2 11535:5 11546:2 11556:4 11564:1 11569:3 11582:1 11595:1 11597:1 11598:1 11617:1 11621:1 11622:1 11626:1 11628:1 11641:1 11653:1 11668:1 11673:1 11676:1 11677:1 11678:1 11680:1 11683:1 11684:5 11685:1 11703:1 11710:1 11718:1 11721:2 11738:2 11740:1 11745:1 11753:1 11754:1 11779:2 11808:1 11810:4 11816:1 11819:1 11820:2 11824:1 11830:1 11831:1 11839:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11885:1 11887:5 11914:1 11918:1 11923:3 11926:6 11929:1 11931:2 11940:1 11942:3 11961:1 11985:1 11986:1 11989:1 11991:1 11994:2 12009:1 12029:3 12045:1 12056:1 12063:1 12065:5 12066:2 12076:1 12077:3 12081:1 12093:2 12095:3 12098:2 12107:1 12118:1 12120:1 12130:3 12135:1 12146:4 12153:2 12155:10 12157:1 12170:1 12171:1 12176:1 12177:1 12181:1 12182:1 12189:1 12190:3 12192:1 12193:7 12194:1 12200:1 12202:7 12210:1 12218:1 12222:1 12228:11 12253:2 12266:5 12270:2 12275:2 12280:1 12293:1 12314:1 12325:4 12333:1 12335:1 12337:2 12372:1 12373:1 12375:1 12385:3 12406:1 12412:1 12415:2 12423:1 12440:1 12451:1 12459:1 12470:2 12471:2 12506:2 12508:1 12513:1 12539:1 12555:5 12594:2 12609:1 12616:1 12623:1 12625:1 12628:1 12629:1 12632:1 12637:1 12654:4 12655:4 12656:24 12660:7 12671:1 12679:1 12681:2 12698:3 12705:1 12716:2 12745:1 12749:1 12766:2 12784:1 12788:1 12815:3 12824:9 12825:2 12841:1 12845:1 12846:4 12850:2 12871:1 12894:1 12902:4 12906:1 12929:1 12936:1 12943:2 12947:1 12953:1 12961:1 12976:2 12979:2 12992:1 13011:1 13015:2 13019:1 13035:5 13054:2 13057:1 13063:2 13092:1 13095:3 13103:1 13106:1 13107:1 13110:1 13114:1 13117:1 13129:1 13146:2 13166:1 13167:1 13174:1 13175:1 13183:1 13194:1 13207:1 13227:6 13240:1 13241:1 13243:1 13248:1 13251:1 13276:2 13277:4 13304:2 13307:3 13342:1 13371:1 13376:2 13404:1 13424:1 13429:2 13433:1 13440:1 13441:1 13443:3 13472:1 13486:2 13488:1 13494:1 13522:1 13524:2 13579:1 13580:1 13582:1 13597:5 13599:1 13609:1 13613:1 13614:1 13623:1 13624:3 13630:1 13649:2 13652:1 13656:1 13661:1 13664:1 13673:2 13681:1 13684:3 13688:1 13700:2 13709:1 13711:1 13712:1 13714:2 13720:1 13735:1 13739:2 13740:1 13768:1 13775:1 13776:1 13780:2 13816:2 13821:3 13823:1 13832:1 13833:2 13835:1 13838:8 13839:2 13842:4 13843:1 13851:2 13853:1 13856:1 13858:3 13873:3 13875:1 13878:2 13883:3 13898:1 13915:7 13916:1 13923:1 13926:1 13929:1 13930:1 13931:3 13943:1 13944:2 13958:2 13973:1 13981:2 13985:1 13993:3 13994:1 14009:1 14011:6 14016:1 14027:1 14028:1 14037:1 14050:2 14063:3 14078:1 14080:1 14085:2 14086:7 14112:2 14113:3 14114:2 14115:1 14116:1 14129:4 14145:1 14152:2 14156:1 14157:2 14177:1 14189:2 14206:1 14221:2 14223:1 14228:1 14234:1 14237:2 14238:2 14239:2 14241:2 14245:1 14264:1 14274:1 14275:1 14278:1 14279:1 14280:1 14291:1 14296:2 14298:1 14307:1 14310:1 14311:2 14315:3 14318:1 14320:1 14334:1 14335:1 14366:8 14375:2 14377:1 14382:1 14422:1 14426:1 14445:2 14446:1 14447:2 14450:2 14468:2 14471:2 14472:1 14477:5 14503:1 14522:1 14529:1 14533:1 14544:2 14546:3 14552:3 14553:7 14563:2 14584:2 14592:3 14610:1 14622:2 14642:2 14644:1 14649:2 14650:1 14654:1 14664:1 14665:2 14670:2 14674:1 14688:1 14699:1 14704:1 14769:1 14771:2 14777:1 14780:1 14785:2 14806:1 14833:1 14845:1 14862:1 14887:1 14891:3 14901:1 14921:1 14922:1 14929:2 14935:1 14952:1 14953:1 14958:1 14971:1 14976:3 14986:2 14987:1 14997:1 15002:1 15008:5 15010:1 15011:1 15019:1 15020:1 15032:2 15033:1 15054:1 15060:1 15068:1 15072:1 15088:1 15096:2 15102:1 15120:2 15127:1 15141:1 15157:1 15162:2 15166:1 15174:1 15181:2 15190:1 15196:5 15216:2 15233:1 15238:1 15247:2 15252:1 15276:1 15290:1 15319:4 15330:1 15346:1 15364:1 15402:1 15475:1 15476:1 15487:1 15493:1 15507:2 15538:4 15547:3 15548:2 15552:1 15554:1 15556:1 15573:2 15577:1 15597:3 15605:1 15618:1 15625:1 15641:1 15643:2 15646:1 15655:4 15672:1 15683:1 15693:1 15695:2 15697:1 15701:1 15702:2 15725:1 15734:2 15771:1 15772:3 15775:1 15780:1 15781:1 15788:1 15805:1 15813:1 15814:1 15868:2 15875:3 15876:4 15881:1 15907:5 15908:1 15911:1 15933:1 15951:6 15955:2 15961:1 15962:1 15968:1 15984:1 15999:1 16001:1 16008:1 16010:1 16018:1 16021:4 16028:3 16032:2 16038:2 16054:1 16066:1 16073:2 16088:1 16096:1 16111:1 16121:1 16122:1 16126:1 16140:1 16148:3 16153:1 16167:11 16172:8 16174:1 16181:1 16207:2 16218:1 16221:2 16222:2 16235:4 16255:1 16263:1 16270:1 16277:1 16279:1 16303:3 16307:1 16309:1 16317:8 16325:3 16327:1 16334:1 16336:1 16337:2 16345:4 16347:1 16349:1 16352:1 16353:6 16356:2 16357:7 16358:1 16363:2 16367:2 16368:1 16369:1 16378:1 16379:6 16386:4 16387:2 16427:1 16467:1 16480:1 16481:1 16484:2 16488:2 16494:1 16495:2 16498:1 16501:2 16507:6 16519:1 16530:2 16532:1 16543:2 16561:2 16564:3 16578:1 16593:2 16610:1 16617:1 16623:1 16630:1 16638:3 16644:1 16646:8 16659:2 16660:2 16661:1 16673:1 16674:3 16677:1 16678:4 16692:1 16697:1 16706:24 16714:1 16734:1 16739:6 16740:1 16743:1 16761:2 16775:70 16794:3 16799:1 16831:1 16861:1 16864:1 16866:1 16867:3 16884:1 16904:1 16908:1 16909:1 16911:1 16913:2 16915:1 16916:2 16919:3 16920:6 16921:1 16927:3 16930:1 16931:2 16937:2 16944:1 16957:1 16961:1 16965:2 16971:1 16980:1 16981:1 17010:1 17013:1 17047:1 17055:5 17075:1 17090:2 17095:4 17116:1 17130:1 17135:2 17139:1 17144:1 17153:1 17192:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:2 17253:1 17268:1 17289:1 17294:2 17295:1 17317:1 17322:1 17326:2 17336:3 17342:5 17343:1 17347:1 17369:1 17372:3 17383:1 17392:3 17398:1 17405:3 17414:1 17415:1 17422:1 17424:3 17426:1 17427:2 17429:1 17435:1 17438:1 17445:1 17450:1 17454:3 17459:1 17460:13 17470:1 17474:2 17500:2 17514:2 17520:1 17521:3 17553:1 17559:1 17561:1 17564:2 17582:1 17583:2 17585:5 17587:1 17589:3 17593:1 17596:2 17608:1 17613:1 17614:1 17625:1 17635:1 17638:1 17641:1 17645:2 17646:2 17675:2 17678:2 17685:2 17689:1 17711:1 17717:1 17718:3 17725:2 17726:1 17727:1 17742:1 17771:1 17788:1 17792:1 17797:2 17800:1 17816:1 17819:1 17820:1 17821:2 17822:1 17831:1 17835:1 17843:2 17844:1 17849:3 17859:2 17867:1 17871:1 17875:1 17877:3 17881:1 17889:1 17896:1 17897:1 17906:3 17912:1 17932:2 17933:1 17952:1 17957:1 17972:2 17997:1 17998:3 18006:1 18011:1 18012:1 18034:4 18083:1 18087:1 18093:1 18099:1 18110:1 18112:1 18115:1 18129:6 18131:2 18134:2 18136:1 18144:1 18147:2 18148:3 18153:3 18154:1 18169:1 18171:2 18174:2 18175:1 18182:1 18187:1 18188:1 18197:2 18206:1 18214:1 18221:1 18222:1 18223:1 18226:1 18235:1 18241:1 18248:2 18249:3 18277:1 18280:1 18282:2 18285:1 18286:1 18310:1 18329:2 18330:3 18338:2 18342:1 18355:1 18366:3 18410:3 18412:1 18414:1 18415:1 18417:2 18421:2 18423:2 18424:1 18441:1 18442:14 18446:2 18460:1 18474:1 18478:2 18489:1 18506:1 18517:2 18524:1 18543:1 18544:2 18546:3 18559:2 18562:2 18565:1 18576:1 18583:1 18584:1 18589:1 18598:1 18602:1 18625:1 18629:4 18633:4 18634:2 18636:1 18646:2 18676:2 18678:1 18707:1 18709:1 18731:1 18748:3 18749:1 18757:1 18781:1 18786:1 18797:1 18805:1 18807:1 18815:1 18816:1 18819:3 18831:2 18838:1 18855:1 18856:1 18860:2 18866:1 18872:1 18873:4 18879:1 18896:1 18907:1 18922:4 18928:1 18932:2 18954:1 18956:4 18966:1 18977:5 18980:1 18984:1 18987:3 18990:1 19006:2 19007:1 19016:1 19018:2 19022:1 19078:1 19079:1 19098:2 19102:2 19113:1 19114:17 19118:1 19125:1 19132:1 19138:1 19145:1 19160:1 19170:1 19171:1 19182:1 19183:1 19190:3 19191:2 19193:1 19194:1 19195:2 19210:1 19217:1 19219:1 19225:1 19229:2 19241:1 19244:6 19250:2 19251:1 19265:4 19269:2 19272:1 19276:2 19277:1 19315:1 19323:3895 19328:1 19342:5 19343:1 19348:2 19376:1 19385:1 19395:2 19405:1 19410:1 19413:3 19414:2 19421:2 19449:1 19452:3 19473:2 19482:2 19505:1 19507:6 19509:2 19530:3 19536:1 19539:3 19541:1 19543:1 19556:1 19571:1 19584:1 19586:1 19596:1 19609:1 19632:1 19636:5 19638:1 19642:1 19649:2 19654:1 19658:1 19664:1 19670:1 19696:3 19702:1 19708:1 19721:2 19733:1 19743:1 19751:1 19756:1 19758:1 19768:1 19804:1 19815:1 19817:2 19820:1 19822:1 19831:4 19845:2 19856:1 19857:1 19869:1 19875:2 19882:1 19918:1 19919:4 19933:3 19976:1 19984:1 20004:1 20024:1 20030:1 20032:2 20043:1 20048:2 20050:1 20057:2 20074:4 20086:2 20090:1 20091:4 20095:1 20105:1 20107:5 20121:18 20141:1 20142:1 20144:3 20146:1 20147:24 20159:2 20177:1 20178:6 20180:1 20181:1 20197:2 20212:1 20216:6 20236:1 20243:2 20248:1 20250:6 20252:2 20255:1 20260:1 20262:1 20277:2 20278:1 20279:1 20283:1 20287:1 20313:1 20319:3 20326:1 20339:1 20349:3 20363:1 20387:1 20389:1 20392:1 20398:2 20447:1 20451:1 20458:1 20477:1 20486:1 20492:1 20493:1 20502:1 20523:1 20524:13 20527:1 20565:1 20573:1 20574:2 20596:1 20605:1 20613:1 20619:1 20623:7 20644:1 20648:1 20656:1 20669:2 20682:1 20688:1 20691:1 20709:1 20714:1 20719:1 20720:1 20722:2 20724:2 20725:1 20731:2 20749:1 20779:4 20782:1 20787:1 20789:1 20796:1 20811:3 20814:1 20821:1 20839:3 20849:1 20853:1 20869:1 20871:1 20877:5 20894:2 20897:1 20903:2 20907:1 20908:2 20918:2 20920:1 20923:8 20942:1 20970:1 20972:1 20976:1 20987:1 20996:15 21002:2 21014:2 21017:3 21030:1 21033:1 21049:1 21050:15 21066:1 21080:1 21088:1 21099:1 21103:1 21105:1 21131:1 21144:2 21170:1 21175:1 21180:1 21182:1 21196:2 21213:1 21214:5 21216:2 21225:1 21231:1 21258:2 21293:1 21301:5 21312:1 21313:1 21316:3 21328:1 21330:1 21331:1 21339:1 21343:1 21344:1 21355:1 21389:1 21392:1 21413:2 21451:3 21466:1 21468:1 21474:1 21487:1 21495:1 21498:1 21500:2 21511:1 21528:1 21529:1 21532:2 21554:1 21556:1 21560:1 21575:1 21596:3 21625:2 21630:1 21631:1 21633:1 21634:1 21638:1 21643:14 21652:1 21655:2 21656:1 21660:3 21661:1 21663:5 21664:1 21674:3 21678:1 21684:5 21690:1 21708:5 21711:1 21716:2 21722:1 21723:1 21741:1 21755:2 21756:1 21757:1 21769:2 21773:1 21789:2 21797:1 21798:1 21822:8 21829:1 21830:2 21835:1 21847:1 21852:2 21863:1 21874:1 21891:1 21896:1 21909:1 21911:1 21915:1 21916:1 21932:3 21936:1 21939:1 21943:1 21949:1 21962:4 21977:1 21980:1 21982:1 21986:2 21987:1 21990:1 21992:1 21996:1 22003:1 22005:1 22041:1 22048:3 22050:1 22105:1 22106:1 22115:2 22142:1 22147:1 22151:1 22154:4 22157:2 22159:3 22170:5 22179:1 22181:1 22183:1 22223:1 22228:1 22232:2 22233:1 22236:2 22241:2 22251:1 22258:1 22267:1 22268:1 22270:1 22272:2 22273:2 22281:1 22285:1 22286:1 22298:2 22300:7 22305:3 22309:1 22319:1 22320:1 22325:1 22332:1 22342:1 22349:1 22354:1 22377:1 22382:2 22383:1 22384:2 22389:3 22396:2 22405:1 22406:1 22409:1 22422:1 22425:4 22427:18 22430:1 22443:1 22447:1 22456:2 22457:3 22461:1 22466:1 22469:1 22479:1 22481:3 22501:5 22515:1 22534:3 22536:1 22538:3 22540:1 22542:1 22549:5 22563:1 22579:1 22600:1 22603:1 22604:1 22606:1 22607:4 22614:2 22618:3 22621:1 22671:1 22693:4 22702:2 22703:1 22705:12 22709:3 22712:2 22720:2 22721:1 22723:1 22734:4 22735:2 22736:3 22739:1 22740:1 22744:1 22746:2 22748:2 22750:1 22756:1 22757:1 22758:1 22764:1 22769:2 22772:2 22777:1 22780:1 22795:2 22800:1 22822:1 22833:5 22834:1 22856:1 22860:1 22866:1 22868:2 22874:2 22877:1 22881:1 22895:1 22901:1 22906:1 22909:4 22917:1 22926:1 22929:1 22937:1 22969:1 22985:24 22987:2 22990:1 23008:1 23027:1 23032:2 23052:1 23065:1 23073:1 23076:4 23078:1 23093:1 23096:2 23099:1 23102:1 23106:1 23112:2 23125:2 23133:1 23136:9 23141:1 23153:2 23160:4 23166:1 23193:1 23199:1 23202:2 23209:1 23212:1 23215:2 23221:2 23225:1 23236:1 23239:1 23242:2 23244:1 23246:2 23256:1 23269:2 23271:1 23284:10 23302:4 23311:1 23317:4 23325:1 23328:1 23336:1 23360:1 23376:2 23390:1 23391:1 23413:1 23445:1 23454:3 23459:1 23462:1 23473:1 23481:1 23493:2 23496:4 23514:1 23517:1 23534:1 23535:1 23545:1 23549:1 23554:1 23570:1 23573:1 23574:2 23575:2 23579:15 23581:1 23583:2 23600:1 23609:2 23611:2 23624:1 23629:1 23632:1 23639:1 23648:2 23649:1 23652:1 23655:1 23662:3 23665:1 23666:2 23669:1 23673:1 23687:1 23695:1 23699:3 23710:1 23716:1 23717:5 23721:1 23749:1 23750:1 23752:1 23765:2 23767:1 23788:2 23794:1 23801:1 23805:1 23807:1 23813:1 23819:2 23838:1 23851:1 23859:1 23864:1 23875:1 23878:2 23879:1 23891:2 23903:1 23913:1 23948:1 23955:1 23968:1 23969:1 23971:6 23978:1 23987:1 24002:1 24003:1 24012:2 24015:1 24023:1 24034:1 24049:1 24060:1 24087:2 24090:3 24103:1 24108:2 24113:1 24119:2 24124:4 24128:1 24141:1 24151:1 24168:2 24177:1 24183:1 24187:4 24188:5 24195:1 24196:1 24207:6 24216:1 24219:1 24222:1 24231:1 24232:1 24235:1 24237:4 24241:3 24247:1 24252:1 24273:2 24274:1 24280:1 24281:2 24283:1 24293:1 24296:1 24329:5 24336:1 24340:29 24344:1 24391:1 24408:1 24419:1 24432:2 24438:1 24440:2 24441:1 24444:1 24449:1 24464:1 24478:1 24504:3 24506:1 24508:1 24509:2 24533:1 24534:1 24538:1 24548:2 24568:1 24571:1 24591:1 24602:1 24625:1 24653:1 24656:2 24668:2 24671:1 24685:1 24702:6 24709:2 24714:1 24717:1 24745:1 24755:1 24756:1 24761:1 24775:1 24777:1 24797:2 24814:3 24827:2 24833:1 24838:2 24839:1 24841:1 24844:2 24845:1 24859:1 24873:1 24881:1 24890:1 24907:1 24921:1 24931:1 24932:1 24939:1 24944:2 24955:1 24970:1 24976:1 24989:1 24999:1 25004:1 25005:9 25014:1 25021:1 25023:1 25027:1 25028:1 25049:2 25059:1 25062:1 25073:2 25090:1 25122:1 25125:1 25139:1 25147:4 25158:1 25181:1 25190:1 25194:5 25211:1 25220:1 25252:2 25259:1 25264:1 25273:1 25275:1 25282:1 25285:3 25287:5 25288:1 25292:1 25311:1 25319:1 25325:2 25327:3 25331:1 25335:1 25339:4 25347:2 25351:1 25384:2 25385:2 25398:3 25415:1 25419:2 25431:2 25447:1 25468:1 25471:1 25472:1 25487:1 25495:4 25503:3 25507:1 25510:1 25514:1 25526:1 25527:1 25534:1 25549:1 25551:1 25554:1 25560:1 25561:2 25570:1 25576:2 25577:1 25587:1 25597:1 25598:2 25614:1 25623:1 25627:3 25631:1 25634:1 25643:1 25652:1 25664:1 25673:1 25676:1 25681:1 25684:1 25688:1 25716:1 25718:1 25722:1 25733:1 25740:2 25778:3 25797:5 25816:1 25823:1 25832:1 25836:1 25852:1 25860:1 25871:1 25872:1 25878:2 25880:1 25884:1 25886:1 25893:6 25894:1 25900:1 25918:3 25921:1 25922:1 25952:2 25966:1 25980:4 25998:1 26004:1 26007:1 26011:1 26021:1 26048:1 26058:4 26073:1 26076:1 26097:8 26099:1 26119:3 26123:1 26124:1 26143:1 26150:2 26156:6 26159:1 26167:1 26169:1 26172:5 26175:1 26176:1 26207:1 26226:1 26232:1 26257:1 26304:1 26315:1 26316:1 26318:4 26319:1 26320:2 26322:8 26324:3 26331:1 26337:1 26356:1 26371:1 26372:3 26376:1 26377:2 26403:1 26413:1 26415:6 26416:1 26424:1 26429:4 26435:7 26436:2 26445:2 26458:1 26460:1 26463:1 26472:1 26489:2 26494:2 26513:6 26518:1 26524:1 26525:1 26534:1 26538:2 26548:1 26564:2 26579:1 26589:3 26608:1 26627:5 26628:1 26652:4 26653:4 26659:1 26681:2 26689:1 26712:1 26717:1 26728:3 26754:1 26761:1 26781:1 26782:4 26808:1 26813:1 26835:1 26839:1 26842:2 26844:1 26848:1 26862:1 26865:1 26868:2 26871:3 26891:1 26893:1 26898:1 26901:2 26912:1 26915:1 26920:1 26934:2 26935:1 26938:1 26949:2 26955:1 26956:1 26964:1 26977:6 26981:1 26982:1 26984:1 26985:1 26989:2 27000:1 27001:1 27003:1 27008:2 27010:3 27029:1 27056:1 27065:2 27078:2 27099:1 27102:1 27107:1 27113:2 27115:4 27138:18 27144:1 27178:1 27185:1 27188:1 27192:2 27212:1 27223:1 27244:1 27252:1 27257:1 27266:1 27280:3 27288:1 27292:1 27295:1 27308:1 27314:2 27332:1 27394:2 27407:3 27422:5 27424:2 27426:1 27431:1 27438:2 27439:1 27440:4 27441:10 27444:2 27450:1 27470:1 27486:1 27490:2 27521:1 27531:1 27534:1 27540:4 27548:1 27552:1 27571:1 27580:3 27600:1 27601:1 27607:1 27611:1 27621:2 27625:1 27626:1 27636:1 27663:3 27668:1 27673:2 27676:1 27705:2 27709:1 27718:1 27735:1 27740:2 27755:1 27775:1 27799:1 27809:1 27824:1 27834:1 27852:1 27854:2 27863:1 27875:1 27883:3 27893:2 27910:2 27925:1 27939:1 27949:1 27950:1 27957:1 28004:2 28005:2 28017:2 28059:1 28076:1 28087:1 28095:2 28098:1 28099:6 28110:1 28113:1 28118:1 28121:10 28135:1 28137:1 28142:1 28154:2 28155:1 28207:1 28211:1 28223:29 28224:1 28227:3 28230:1 28238:1 28246:1 28258:5 28281:2 28285:1 28288:1 28331:1 28338:3 28340:3 28342:4 28343:2 28349:1 28356:1 28385:2 28388:1 28391:1 28395:1 28398:1 28405:2 28410:2 28413:2 28419:2 28421:1 28429:1 28430:1 28431:1 28432:1 28434:1 28437:3 28443:1 28448:3 28450:1 28472:2 28482:1 28496:1 28499:2 28514:1 28524:2 28525:1 28526:1 28530:1 28544:2 28548:1 28551:1 28568:1 28574:1 28581:3 28593:1 28600:1 28644:2 28645:1 28659:1 28663:3 28665:2 28669:2 28674:1 28675:1 28680:1 28681:1 28684:1 28696:4 28697:1 28726:1 28747:1 28754:14 28762:1 28771:1 28786:1 28795:2 28798:1 28839:4 28848:4 28866:1 28870:1 28874:2 28878:1 28912:1 28928:1 28931:4 28939:1 28962:2 28964:1 28966:1 28974:1 28975:1 29000:5 29004:5 29028:1 29030:1 29039:3 29041:1 29051:1 29055:1 29069:1 29073:1 29095:2 29111:1 29112:1 29130:4 29135:1 29143:1 29155:1 29167:3 29168:1 29179:1 29182:2 29183:28 29184:2 29186:3 29189:4 29192:1 29193:1 29203:1 29220:1 29221:13 29224:1 29234:1 29239:1 29240:1 29248:2 29276:1 29277:1 29281:2 29289:2 29290:1 29300:1 29301:2 29302:2 29310:1 29320:1 29325:1 29334:7 29342:5 29346:1 29348:2 29377:3 29381:1 29382:2 29388:1 29394:1 29409:1 29410:1 29429:1 29430:1 29454:1 29463:1 29486:1 29495:2 29502:1 29536:2 29537:2 29542:1 29564:1 29573:1 29574:1 29575:1 29581:1 29583:1 29587:2 29589:1 29591:4 29595:2 29600:1 29615:1 29620:2 29624:1 29636:1 29655:10 29659:1 29661:3 29663:1 29666:4 29669:1 29718:1 29720:1 29741:3 29745:9 29747:2 29749:1 29753:1 29754:1 29771:2 29776:2 29777:3 29790:1 29795:1 29809:2 29812:2 29814:1 29821:1 29841:3 29848:2 29860:1 29891:3 29896:1 29898:1 29901:2 29904:1 29905:2 29907:1 29928:2 29932:3 29935:2 29936:5 29942:1 29950:5 29957:1 29969:2 30003:1 30011:1 30056:1 30070:2 30080:1 30087:1 30104:3 30107:2 30121:1 30129:4 30146:1 30160:2 30164:1 30170:1 30177:1 30201:1 30206:1 30210:2 30216:1 30222:3 30232:1 30241:1 30246:1 30252:1 30269:1 30285:3 30288:1 30290:1 30292:1 30294:1 30313:1 30325:2 30341:1 30344:1 30345:1 30346:8 30348:1 30354:2 30364:2 30401:1 30402:3 30407:1 30429:1 30435:5 30441:2 30446:1 30475:1 30507:1 30510:1 30512:1 30517:1 30518:1 30524:1 30525:1 30527:5 30533:1 30539:1 30571:1 30576:2 30586:1 30588:1 30592:1 30593:1 30595:1 30599:1 30609:2 30650:1 30658:1 30660:1 16 5:1 10:1 24:1 26:2 27:1 38:1 52:1 62:1 66:1 69:1 74:1 75:5 91:1 94:1 121:1 136:1 150:1 151:4 156:1 160:2 163:1 190:1 197:2 202:3 206:1 220:1 224:4 229:1 230:1 251:2 266:1 285:1 294:4 297:1 315:1 324:1 334:3 335:3 336:1 360:2 368:1 369:1 375:1 392:1 407:1 430:3 436:2 440:2 453:1 463:1 471:1 477:2 489:1 491:1 493:1 495:1 502:1 503:1 505:1 510:2 511:2 546:1 547:1 564:5 622:1 625:3 631:1 637:4 647:1 660:3 666:2 673:4 679:1 688:1 694:1 705:1 706:1 710:1 722:1 730:1 737:1 748:1 768:2 778:2 795:1 798:2 815:1 836:1 845:2 851:1 853:1 855:2 857:1 870:4 878:1 880:1 882:3 887:2 895:1 898:2 931:2 935:1 939:2 942:1 943:1 949:1 951:2 965:2 966:2 971:3 973:1 974:3 975:6 976:2 981:2 1002:1 1003:2 1026:1 1028:1 1029:6 1032:2 1038:1 1056:1 1058:1 1065:2 1069:2 1080:1 1107:2 1108:1 1131:1 1134:1 1137:1 1155:2 1161:1 1170:2 1171:1 1191:1 1196:2 1215:1 1216:1 1217:3 1220:1 1221:1 1224:1 1233:2 1236:1 1242:2 1253:1 1254:4 1267:2 1273:2 1277:2 1280:1 1290:2 1291:3 1319:1 1324:1 1325:2 1331:2 1333:5 1336:1 1346:2 1347:7 1348:2 1349:1 1361:1 1365:1 1377:1 1379:1 1389:2 1393:1 1395:4 1409:2 1421:2 1422:1 1446:2 1458:1 1473:1 1476:2 1499:1 1500:3 1503:1 1511:1 1514:1 1516:1 1519:2 1528:1 1538:1 1556:1 1566:6 1574:1 1579:1 1585:8 1590:1 1594:2 1601:1 1602:2 1603:1 1608:4 1609:1 1614:1 1618:1 1624:1 1625:1 1628:5 1642:1 1651:1 1653:1 1657:10 1671:1 1677:3 1679:2 1680:2 1681:2 1684:1 1685:1 1690:2 1696:1 1715:1 1725:3 1730:1 1734:5 1739:5 1742:2 1743:1 1756:1 1757:2 1759:1 1776:5 1780:3 1788:1 1789:1 1800:1 1802:1 1807:2 1812:1 1826:1 1840:1 1841:1 1855:2 1857:1 1858:1 1860:1 1863:1 1873:4 1881:1 1886:5 1900:1 1905:1 1909:1 1913:1 1914:1 1934:1 1938:1 1939:1 1947:1 1951:1 1954:1 1955:1 1964:1 1969:2 1970:2 1977:1 1982:1 1986:1 1989:1 1997:1 1999:1 2003:1 2005:1 2016:4 2021:1 2023:1 2026:2 2032:1 2035:1 2038:2 2039:4 2042:1 2046:1 2048:1 2052:1 2069:1 2070:4 2072:1 2090:1 2096:1 2101:1 2124:1 2125:1 2131:1 2132:1 2149:1 2153:1 2161:2 2162:2 2164:2 2167:2 2169:1 2170:3 2181:1 2204:1 2227:1 2231:1 2232:1 2234:4 2235:1 2237:2 2238:1 2239:1 2269:4 2296:2 2307:1 2337:1 2339:1 2346:1 2351:1 2353:3 2363:1 2366:1 2374:1 2381:1 2404:2 2405:1 2406:1 2407:2 2408:5 2412:3 2413:1 2415:6 2416:1 2417:1 2420:6 2421:1 2422:4 2424:2 2427:1 2431:1 2434:6 2436:3 2437:8 2442:1 2443:1 2448:1 2450:2 2455:1 2461:2 2469:1 2473:1 2486:1 2488:1 2495:1 2501:1 2508:1 2514:1 2517:1 2518:2 2519:2 2520:1 2525:1 2532:1 2533:3 2534:1 2538:1 2543:1 2550:1 2556:2 2560:1 2575:1 2597:1 2599:1 2602:1 2623:6 2633:1 2641:1 2645:1 2650:2 2657:4 2659:1 2681:1 2689:1 2693:1 2694:1 2705:1 2742:2 2747:1 2766:1 2797:2 2803:1 2812:4 2819:1 2825:5 2834:1 2841:2 2842:1 2849:1 2852:3 2854:12 2856:2 2872:1 2874:1 2886:1 2888:3 2894:1 2896:1 2900:1 2901:1 2902:1 2909:4 2912:1 2918:1 2936:2 2938:1 2943:2 2952:2 2962:1 2963:1 2965:5 2976:4 3019:4 3024:1 3027:1 3030:1 3031:1 3039:2 3043:1 3056:16 3066:1 3067:7 3081:1 3090:2 3099:1 3105:1 3118:32 3127:1 3128:2 3151:1 3152:1 3170:1 3181:1 3189:1 3196:2 3222:1 3224:2 3227:1 3229:1 3232:2 3296:3 3299:1 3311:3 3318:1 3342:1 3358:1 3378:1 3379:1 3389:2 3390:1 3391:1 3397:1 3403:2 3406:4 3417:2 3428:13 3442:1 3454:1 3461:1 3469:2 3477:1 3485:1 3498:7 3516:1 3543:1 3556:1 3565:1 3567:1 3574:1 3588:1 3590:2 3601:3 3609:1 3613:1 3628:1 3634:1 3640:3 3643:3 3649:1 3654:1 3661:1 3667:5 3707:1 3711:3 3713:1 3729:1 3730:1 3731:1 3746:3 3753:1 3764:1 3778:1 3793:1 3796:1 3801:1 3803:5 3804:2 3810:2 3812:1 3813:2 3819:2 3829:2 3839:1 3846:1 3867:1 3886:1 3898:1 3902:2 3903:4 3906:1 3913:1 3918:1 3929:1 3948:1 3950:1 3958:4 3959:44 3966:1 3981:1 3993:2 3994:1 3995:9 4000:1 4007:1 4009:1 4010:27 4011:2 4012:2 4015:6 4018:1 4027:2 4042:4 4057:3 4058:4 4061:3 4063:4 4076:2 4078:2 4079:1 4095:1 4116:2 4122:1 4123:3 4126:1 4130:1 4134:1 4159:1 4167:1 4171:1 4173:1 4176:2 4178:1 4182:1 4183:3 4196:3 4207:2 4209:1 4216:1 4219:1 4223:1 4232:1 4234:1 4235:2 4242:1 4256:1 4258:1 4265:1 4266:2 4267:1 4269:1 4270:1 4285:2 4290:2 4294:1 4297:1 4301:5 4318:5 4324:1 4330:1 4360:1 4368:1 4369:1 4373:1 4381:2 4389:1 4416:1 4423:1 4436:1 4439:3 4447:1 4463:2 4474:1 4483:1 4486:1 4498:2 4504:2 4505:2 4508:1 4509:1 4511:1 4539:1 4547:2 4555:1 4557:1 4563:1 4586:1 4599:1 4611:2 4623:1 4636:14 4650:1 4665:1 4697:3 4701:1 4706:5 4710:1 4715:1 4718:2 4749:7 4759:1 4767:1 4773:1 4776:1 4781:1 4787:1 4793:1 4796:1 4840:1 4854:1 4855:2 4880:1 4896:1 4900:2 4906:3 4909:1 4919:1 4920:1 4921:2 4927:1 4930:2 4938:1 4948:4 4959:1 4962:1 4966:4 4989:3 4990:1 4993:2 4994:1 5002:1 5014:1 5044:1 5058:1 5059:1 5062:1 5064:1 5076:1 5090:1 5092:2 5100:2 5153:2 5159:1 5161:1 5186:1 5189:1 5191:1 5198:1 5201:17 5202:3 5211:1 5219:1 5231:2 5241:1 5257:1 5260:2 5275:1 5281:1 5288:1 5308:4 5314:1 5320:4 5321:1 5323:5 5340:1 5344:2 5345:4 5347:8 5348:1 5350:1 5351:2 5353:1 5354:3 5356:1 5361:1 5362:24 5363:1 5365:1 5370:2 5371:3 5376:2 5377:1 5385:1 5397:2 5401:3 5403:1 5425:2 5453:2 5467:1 5478:1 5483:3 5486:1 5488:1 5491:1 5495:2 5560:1 5572:2 5593:3 5594:3 5601:1 5603:5 5610:1 5648:1 5652:1 5670:1 5675:2 5677:24 5684:1 5703:1 5708:1 5710:3 5712:1 5735:3 5745:1 5769:1 5771:1 5774:1 5786:1 5810:1 5816:1 5819:2 5830:1 5836:1 5839:1 5848:1 5851:1 5856:2 5857:1 5863:1 5901:1 5902:1 5904:1 5908:1 5911:1 5920:1 5921:1 5922:2 5932:1 5943:4 5951:1 5954:1 5956:1 5962:2 5965:1 5967:1 5973:2 5978:1 5987:2 5991:1 5993:2 6010:1 6018:1 6021:5 6038:2 6044:2 6060:1 6061:1 6063:1 6065:1 6068:1 6079:1 6086:1 6094:1 6095:1 6097:1 6101:1 6103:1 6114:2 6115:1 6118:1 6121:1 6136:1 6140:1 6141:1 6142:1 6171:1 6179:1 6199:3 6217:1 6219:5 6221:1 6225:1 6227:1 6231:1 6239:2 6243:1 6257:1 6280:1 6302:1 6305:2 6330:1 6334:1 6343:1 6364:1 6368:5 6371:10 6380:1 6386:2 6404:1 6410:2 6415:1 6420:1 6421:1 6444:1 6463:1 6465:1 6471:1 6474:1 6480:1 6481:2 6488:1 6490:2 6491:2 6492:1 6498:1 6499:1 6528:5 6529:1 6536:1 6539:2 6540:2 6564:1 6568:1 6577:1 6588:1 6591:3 6596:1 6602:2 6618:6 6621:1 6624:1 6630:2 6635:1 6636:1 6639:1 6648:1 6654:1 6660:1 6673:1 6721:7 6724:2 6725:2 6726:1 6727:1 6728:1 6730:3 6731:2 6734:2 6735:3 6736:5 6743:3 6744:8 6745:1 6746:1 6747:4 6756:1 6764:2 6773:1 6776:1 6797:3 6802:1 6820:1 6833:2 6836:1 6869:1 6872:1 6875:1 6878:1 6886:1 6895:2 6901:1 6930:1 6932:1 6970:1 6977:1 6984:1 6994:4 7000:2 7002:1 7019:1 7026:1 7027:5 7032:3 7035:1 7039:1 7046:1 7047:1 7060:2 7075:1 7080:1 7082:1 7083:3 7087:1 7088:2 7114:1 7115:1 7118:1 7126:1 7148:1 7166:1 7171:1 7175:1 7192:3 7200:3 7201:2 7204:1 7216:3 7220:1 7222:2 7231:5 7236:3 7242:1 7257:1 7263:1 7264:1 7267:3 7273:1 7299:1 7308:1 7322:1 7325:1 7328:1 7333:1 7335:2 7342:1 7363:1 7375:1 7380:1 7384:1 7407:2 7412:1 7432:3 7433:1 7448:1 7455:1 7456:2 7468:1 7495:1 7522:2 7542:1 7546:2 7548:1 7554:1 7556:2 7573:1 7574:1 7577:5 7580:1 7584:1 7585:3 7587:1 7589:1 7600:1 7601:1 7603:1 7610:1 7612:1 7625:1 7635:1 7653:2 7705:1 7717:1 7727:1 7728:1 7732:1 7733:1 7769:2 7774:1 7779:1 7782:1 7788:5 7830:1 7840:4 7859:1 7874:5 7880:1 7906:1 7915:2 7920:2 7926:1 7932:2 7954:2 7963:2 7968:1 7993:1 7997:2 7998:1 8001:1 8004:1 8005:2 8023:1 8027:1 8031:5 8054:1 8064:4 8065:6 8066:3 8084:1 8089:2 8090:1 8094:2 8097:1 8100:1 8105:1 8121:1 8122:2 8128:1 8130:1 8131:51 8133:1 8134:1 8140:2 8142:1 8151:16 8152:28 8159:1 8161:1 8164:1 8170:1 8173:1 8207:1 8208:7 8226:1 8238:1 8239:1 8246:1 8247:1 8254:1 8273:1 8279:2 8302:4 8307:1 8316:1 8319:1 8321:1 8362:4 8365:7 8372:1 8389:1 8408:1 8413:1 8415:5 8422:1 8430:1 8432:1 8433:1 8450:1 8457:1 8467:1 8478:1 8492:1 8521:1 8523:4 8525:1 8531:2 8537:1 8540:8 8546:3 8550:1 8559:1 8567:1 8570:2 8585:2 8590:1 8597:2 8603:1 8610:1 8623:1 8624:1 8633:25 8637:1 8640:1 8651:1 8655:2 8664:2 8665:1 8669:1 8687:2 8718:1 8724:1 8733:2 8735:1 8742:1 8748:1 8753:2 8760:4 8764:1 8779:1 8789:1 8793:3 8798:5 8803:3 8816:2 8820:4 8830:1 8840:2 8842:1 8845:2 8850:1 8857:1 8858:2 8863:2 8873:1 8884:2 8887:2 8892:1 8895:1 8898:1 8899:1 8915:2 8917:1 8932:1 8938:1 8942:3 8953:1 8959:1 8966:1 8973:1 8979:1 8980:2 8983:1 8984:3 8985:2 8986:2 8987:5 8990:2 8991:1 8995:2 8998:2 9000:2 9004:3 9020:1 9027:3 9035:2 9039:3 9040:1 9041:1 9045:1 9046:1 9058:1 9061:1 9072:5 9075:2 9081:1 9086:2 9109:1 9112:5 9135:1 9139:6 9146:1 9148:1 9149:1 9151:2 9158:1 9164:1 9169:1 9204:1 9205:1 9209:1 9215:3 9225:3 9227:1 9230:1 9248:2 9268:6 9269:2 9273:5 9274:1 9276:1 9277:4 9280:3 9286:2 9301:3 9302:1 9304:5 9316:1 9318:1 9339:3 9345:1 9400:1 9420:3 9439:2 9442:2 9450:1 9453:1 9463:1 9471:1 9478:1 9480:1 9495:1 9504:1 9506:1 9508:1 9510:1 9523:1 9539:1 9561:4 9589:2 9592:1 9594:5 9605:1 9608:1 9618:8 9640:2 9646:3 9651:1 9658:1 9662:1 9663:1 9677:1 9686:1 9695:3 9697:1 9715:1 9718:1 9719:1 9721:1 9732:2 9776:1 9781:1 9809:1 9818:1 9825:1 9840:1 9842:1 9867:1 9870:1 9874:1 9877:3 9882:2 9888:1 9889:2 9890:1 9909:1 9928:2 9930:1 9937:2 9940:1 9942:1 9954:1 9972:1 9973:1 9977:3 9983:1 9993:1 9994:1 10009:1 10032:1 10037:24 10043:1 10060:1 10069:2 10078:6 10084:2 10085:1 10109:1 10114:2 10117:1 10120:1 10121:1 10127:1 10128:1 10130:2 10146:2 10152:1 10156:1 10169:14 10182:1 10184:2 10185:1 10190:2 10202:1 10211:1 10222:1 10223:5 10229:1 10235:1 10238:3 10239:1 10240:2 10241:1 10259:1 10269:1 10275:1 10281:1 10286:1 10301:3 10317:2 10321:3 10322:1 10336:1 10356:8 10362:2 10363:4 10364:2 10371:3 10379:1 10380:1 10387:3 10393:3 10395:1 10396:1 10400:2 10406:2 10410:4 10413:5 10415:1 10416:1 10423:1 10438:1 10440:1 10446:3 10450:4 10468:1 10470:2 10483:1 10493:2 10533:1 10547:1 10549:3 10552:1 10577:12 10580:1 10581:6 10596:1 10601:1 10602:1 10627:1 10636:1 10651:4 10691:1 10698:2 10707:1 10718:1 10731:1 10735:2 10757:4 10762:1 10763:1 10777:1 10780:4 10784:1 10789:2 10791:1 10794:1 10809:1 10828:1 10830:1 10850:2 10868:1 10880:2 10892:6 10898:1 10903:1 10907:1 10917:2 10923:1 10935:2 10939:1 10957:3 10962:7 10972:1 10973:1 10998:1 11009:2 11026:3 11028:2 11031:2 11040:1 11047:6 11048:2 11060:2 11061:4 11062:1 11063:6 11070:1 11081:1 11084:4 11087:1 11105:1 11106:3 11120:1 11126:1 11134:4 11145:1 11148:3 11156:1 11160:2 11165:1 11166:8 11230:1 11231:1 11234:1 11237:1 11260:2 11261:2 11262:1 11268:1 11276:1 11297:2 11305:1 11315:1 11324:1 11359:2 11364:1 11366:1 11371:1 11388:3 11389:1 11399:2 11400:8 11417:4 11418:7 11430:4 11441:1 11443:1 11453:1 11458:2 11469:1 11477:4 11482:1 11499:1 11512:2 11528:1 11529:2 11535:5 11546:2 11556:4 11564:1 11569:3 11582:1 11595:1 11597:1 11598:1 11617:1 11621:1 11622:1 11626:1 11628:1 11641:1 11653:1 11668:1 11673:1 11676:1 11677:1 11678:1 11680:1 11683:1 11684:5 11685:1 11703:1 11710:1 11718:1 11721:2 11738:2 11740:1 11745:1 11753:1 11754:1 11758:1 11779:2 11804:1 11808:1 11810:4 11816:1 11819:1 11820:2 11824:1 11830:1 11831:1 11839:1 11843:1 11844:1 11846:1 11852:1 11854:1 11877:1 11885:1 11887:5 11914:1 11918:1 11923:3 11926:6 11929:1 11931:3 11940:1 11942:3 11961:1 11985:1 11986:1 11989:1 11991:1 11994:2 12009:1 12011:1 12029:3 12045:1 12056:1 12063:1 12065:5 12066:2 12076:1 12077:4 12081:1 12093:2 12095:3 12098:2 12107:1 12118:1 12120:1 12130:3 12135:1 12146:4 12153:2 12155:10 12157:1 12170:1 12171:1 12176:1 12177:1 12181:1 12182:1 12189:1 12190:3 12192:1 12193:7 12194:1 12200:1 12202:7 12210:1 12218:1 12222:1 12228:11 12234:1 12253:2 12266:5 12270:2 12275:2 12280:1 12293:1 12314:1 12325:4 12333:1 12335:1 12337:3 12372:1 12373:1 12375:1 12385:3 12406:1 12412:1 12415:3 12423:1 12440:1 12451:1 12459:1 12470:2 12471:2 12506:3 12508:1 12513:1 12539:1 12555:5 12594:3 12609:1 12616:1 12623:1 12625:1 12628:1 12629:1 12632:1 12637:1 12654:4 12655:4 12656:24 12660:8 12671:1 12679:1 12681:2 12698:3 12705:1 12716:3 12719:1 12745:1 12749:1 12766:2 12784:1 12788:1 12815:3 12824:9 12825:2 12841:1 12845:1 12846:4 12850:2 12871:1 12894:1 12902:4 12906:1 12919:1 12929:1 12936:1 12943:2 12947:1 12953:1 12961:1 12976:2 12979:2 12992:1 13011:1 13015:2 13019:1 13035:5 13054:2 13057:1 13063:2 13092:1 13095:3 13103:1 13106:1 13107:1 13110:1 13114:1 13117:1 13129:1 13146:2 13166:1 13167:1 13174:1 13175:1 13183:1 13194:1 13207:1 13227:6 13240:1 13241:1 13243:1 13248:1 13251:1 13276:2 13277:4 13304:2 13307:3 13335:1 13342:1 13371:1 13376:2 13389:1 13404:1 13424:1 13429:2 13433:1 13440:1 13441:1 13443:3 13472:1 13486:2 13488:1 13494:1 13522:1 13524:2 13579:1 13580:1 13582:1 13597:5 13599:1 13609:1 13613:1 13614:1 13623:1 13624:3 13630:1 13649:2 13652:1 13656:1 13661:1 13664:1 13673:2 13681:1 13684:3 13688:1 13700:2 13709:1 13711:1 13712:2 13714:2 13720:1 13735:1 13739:2 13740:1 13768:1 13775:1 13776:1 13780:2 13816:3 13821:3 13823:1 13832:1 13833:2 13835:1 13838:9 13839:2 13842:4 13843:1 13847:1 13851:2 13853:1 13856:1 13858:3 13873:3 13875:1 13878:2 13883:4 13898:1 13915:7 13916:1 13923:1 13926:1 13929:1 13930:1 13931:3 13943:1 13944:2 13958:2 13973:1 13981:2 13985:1 13993:3 13994:1 14009:1 14011:6 14016:1 14027:1 14028:1 14037:1 14050:2 14063:3 14078:1 14080:1 14085:2 14086:7 14112:2 14113:3 14114:2 14115:1 14116:1 14129:4 14145:1 14152:3 14156:1 14157:2 14177:1 14189:2 14206:1 14221:2 14223:1 14228:1 14234:1 14237:2 14238:2 14239:2 14241:2 14245:1 14264:1 14274:1 14275:1 14278:1 14279:1 14280:2 14291:1 14296:2 14298:1 14305:1 14307:1 14310:1 14311:2 14315:3 14318:1 14320:1 14334:1 14335:1 14366:9 14375:2 14377:1 14382:1 14422:1 14426:1 14445:2 14446:1 14447:2 14450:2 14468:2 14471:2 14472:1 14477:5 14503:1 14522:1 14529:1 14533:1 14544:2 14546:4 14552:3 14553:8 14563:2 14584:2 14592:3 14610:1 14622:2 14642:2 14644:1 14649:2 14650:1 14654:1 14664:1 14665:2 14670:2 14674:1 14688:1 14699:1 14704:1 14769:1 14771:2 14777:1 14780:1 14785:2 14806:2 14833:1 14845:1 14862:1 14887:1 14891:3 14901:1 14921:1 14922:1 14929:2 14935:1 14952:1 14953:1 14958:1 14971:1 14976:3 14986:2 14987:1 14997:1 15002:1 15008:5 15010:1 15011:1 15019:1 15020:1 15032:2 15033:1 15054:1 15060:1 15065:1 15068:1 15072:1 15088:1 15096:2 15102:1 15120:2 15127:1 15141:1 15157:1 15162:2 15166:1 15174:1 15181:2 15190:1 15196:5 15216:2 15233:1 15238:1 15247:2 15252:1 15276:1 15290:1 15319:4 15330:1 15337:1 15346:1 15364:1 15402:1 15475:1 15476:1 15487:1 15493:1 15507:2 15534:1 15538:4 15547:4 15548:2 15552:1 15554:1 15556:1 15573:2 15577:1 15597:3 15605:1 15618:1 15625:1 15641:1 15643:2 15646:1 15655:4 15672:1 15683:1 15693:1 15695:2 15697:1 15701:1 15702:2 15725:1 15734:2 15763:1 15771:1 15772:3 15775:1 15780:1 15781:1 15788:1 15805:1 15813:1 15814:1 15868:2 15875:3 15876:4 15880:1 15881:1 15907:5 15908:1 15911:1 15933:1 15951:6 15955:2 15961:1 15962:1 15968:1 15984:1 15999:1 16001:1 16008:1 16010:1 16018:1 16021:4 16028:3 16032:2 16038:2 16054:1 16066:1 16073:2 16088:1 16096:1 16111:1 16121:1 16122:1 16126:1 16140:1 16141:1 16148:4 16153:1 16167:11 16172:8 16174:1 16181:1 16207:2 16218:1 16221:2 16222:2 16235:4 16255:1 16263:1 16268:1 16270:1 16277:1 16279:1 16297:1 16303:3 16307:1 16309:1 16317:8 16325:3 16327:1 16334:1 16336:1 16337:2 16345:4 16347:1 16349:1 16352:1 16353:6 16356:2 16357:8 16358:1 16363:2 16367:2 16368:1 16369:1 16378:1 16379:6 16386:4 16387:2 16427:1 16467:1 16480:1 16481:1 16484:2 16488:2 16494:1 16495:2 16498:1 16501:2 16507:6 16519:1 16530:2 16532:1 16543:2 16561:2 16564:3 16578:1 16593:2 16610:1 16617:1 16623:1 16630:1 16638:3 16644:1 16646:8 16659:2 16660:2 16661:1 16673:1 16674:3 16677:1 16678:4 16692:1 16697:2 16706:24 16714:1 16734:1 16739:6 16740:1 16743:2 16761:2 16775:70 16794:3 16799:1 16831:1 16861:1 16864:1 16866:1 16867:3 16884:1 16904:1 16908:1 16909:1 16911:1 16913:2 16915:1 16916:2 16919:3 16920:6 16921:1 16927:3 16930:1 16931:2 16937:2 16944:1 16957:1 16961:1 16965:2 16971:1 16980:1 16981:1 17010:1 17013:1 17047:1 17055:5 17075:1 17090:2 17095:4 17116:1 17130:1 17135:2 17139:1 17144:1 17153:1 17173:1 17192:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:2 17253:1 17258:1 17268:1 17289:1 17294:2 17295:1 17317:1 17322:1 17326:2 17336:3 17342:5 17343:1 17347:1 17369:2 17372:3 17383:1 17392:3 17398:1 17405:3 17414:1 17415:1 17422:1 17424:3 17426:1 17427:2 17429:1 17435:1 17438:1 17445:1 17450:1 17454:3 17459:1 17460:13 17470:1 17474:2 17500:2 17514:2 17520:1 17521:3 17553:1 17559:1 17561:1 17564:2 17582:1 17583:3 17585:5 17587:1 17589:3 17593:1 17596:2 17608:1 17613:1 17614:1 17625:1 17635:1 17638:1 17641:1 17645:2 17646:2 17675:2 17678:2 17685:2 17689:1 17711:1 17717:1 17718:3 17725:2 17726:1 17727:1 17742:1 17762:1 17771:1 17788:1 17792:1 17797:2 17800:1 17816:1 17819:1 17820:1 17821:2 17822:1 17831:1 17835:1 17843:2 17844:1 17849:3 17859:2 17867:1 17871:1 17875:1 17877:3 17881:1 17889:1 17896:1 17897:1 17906:3 17912:1 17932:2 17933:1 17952:1 17957:1 17972:2 17997:1 17998:3 18006:2 18011:1 18012:1 18034:4 18083:1 18087:1 18093:1 18099:1 18110:1 18112:1 18115:1 18129:7 18131:2 18132:1 18134:2 18136:1 18137:1 18144:1 18147:2 18148:3 18153:3 18154:1 18169:1 18171:2 18174:2 18175:1 18182:1 18187:1 18188:1 18197:2 18206:1 18214:1 18221:1 18222:1 18223:1 18226:1 18235:1 18241:1 18248:2 18249:3 18277:1 18280:1 18282:2 18285:1 18286:1 18310:1 18329:2 18330:3 18338:2 18341:1 18342:1 18355:1 18366:3 18410:3 18412:1 18414:1 18415:1 18417:2 18421:2 18423:2 18424:1 18441:1 18442:14 18446:2 18460:1 18461:1 18474:1 18478:2 18489:1 18506:1 18517:2 18524:1 18543:1 18544:2 18546:3 18559:2 18562:2 18565:1 18576:1 18583:1 18584:1 18589:1 18598:1 18602:1 18625:1 18629:4 18633:4 18634:2 18636:1 18646:2 18676:2 18678:1 18707:1 18709:1 18731:1 18748:3 18749:2 18757:1 18781:1 18786:1 18797:1 18805:1 18807:1 18815:1 18816:1 18819:3 18831:2 18838:1 18855:1 18856:1 18860:2 18866:1 18872:1 18873:4 18879:1 18896:1 18907:1 18922:4 18928:1 18932:2 18954:1 18956:4 18966:1 18977:5 18980:1 18984:1 18987:3 18990:1 19006:2 19007:1 19016:1 19018:2 19022:1 19078:1 19079:1 19098:2 19102:2 19113:1 19114:18 19118:1 19125:3 19132:1 19138:1 19145:1 19160:1 19170:1 19171:1 19182:1 19183:1 19190:3 19191:2 19193:1 19194:1 19195:2 19210:1 19217:1 19219:1 19225:1 19229:2 19236:1 19241:1 19244:7 19250:2 19251:1 19265:4 19269:2 19272:1 19276:2 19277:1 19285:2 19315:1 19323:4043 19328:1 19342:5 19343:1 19348:2 19376:1 19385:1 19395:2 19405:1 19410:1 19413:3 19414:2 19421:2 19449:1 19451:1 19452:3 19473:2 19482:2 19505:1 19507:6 19509:2 19530:3 19536:1 19539:3 19541:1 19543:1 19556:1 19571:1 19584:1 19586:1 19596:1 19609:1 19632:1 19636:5 19638:1 19642:1 19649:2 19654:1 19658:1 19664:1 19670:1 19689:1 19696:3 19702:1 19708:1 19721:2 19733:1 19743:1 19751:1 19756:1 19758:1 19768:1 19804:1 19815:1 19817:2 19820:1 19822:1 19831:4 19845:2 19856:1 19857:1 19869:1 19875:2 19877:1 19882:1 19918:1 19919:5 19933:4 19976:1 19984:1 20004:1 20024:1 20030:1 20032:2 20043:1 20048:2 20050:1 20057:2 20074:4 20086:2 20090:1 20091:4 20095:1 20105:1 20107:5 20121:19 20141:1 20142:1 20144:3 20146:1 20147:25 20159:2 20177:1 20178:6 20180:1 20181:1 20197:2 20212:1 20216:6 20236:1 20243:3 20248:1 20250:6 20252:2 20255:1 20260:1 20262:1 20277:2 20278:1 20279:1 20283:1 20287:1 20313:2 20319:3 20326:1 20339:1 20349:3 20363:1 20387:1 20389:1 20392:1 20398:2 20447:1 20451:1 20458:1 20477:1 20486:1 20492:1 20493:1 20502:1 20523:1 20524:13 20527:1 20565:1 20573:2 20574:2 20596:1 20605:1 20613:1 20619:1 20623:8 20644:1 20648:1 20656:1 20669:2 20682:1 20688:1 20691:1 20709:1 20714:1 20719:1 20720:1 20722:2 20724:2 20725:1 20731:2 20749:1 20779:4 20782:1 20787:1 20789:1 20796:1 20811:3 20814:1 20821:1 20839:3 20849:1 20853:1 20869:1 20871:1 20877:5 20894:2 20897:1 20903:2 20907:1 20908:2 20918:2 20920:1 20922:1 20923:8 20942:1 20970:1 20972:1 20976:1 20987:1 20996:15 21002:2 21014:2 21017:3 21030:1 21033:1 21049:1 21050:15 21066:1 21080:1 21088:1 21099:1 21103:1 21105:1 21131:1 21144:2 21147:1 21170:1 21175:1 21180:1 21182:1 21196:2 21213:1 21214:5 21216:2 21225:1 21231:1 21258:2 21293:1 21301:5 21312:1 21313:1 21316:3 21328:1 21330:1 21331:1 21339:1 21343:1 21344:1 21355:1 21389:1 21392:2 21413:2 21451:3 21466:1 21468:1 21474:1 21487:1 21495:1 21498:1 21500:2 21511:1 21528:1 21529:1 21532:2 21534:1 21554:1 21556:1 21560:1 21575:1 21596:4 21625:2 21630:1 21631:1 21633:2 21634:1 21638:1 21643:14 21652:2 21655:2 21656:1 21660:3 21661:1 21663:5 21664:1 21674:3 21678:1 21684:5 21690:1 21708:5 21711:1 21716:2 21722:1 21723:1 21726:1 21741:1 21755:2 21756:1 21757:1 21769:2 21773:1 21789:2 21797:1 21798:1 21814:1 21822:10 21829:1 21830:2 21835:1 21837:1 21847:1 21852:2 21863:1 21874:1 21891:1 21896:1 21904:1 21909:1 21911:1 21915:1 21916:1 21924:1 21932:3 21936:1 21937:1 21939:1 21943:1 21949:1 21962:4 21977:1 21980:1 21982:1 21986:2 21987:1 21990:1 21992:1 21996:1 22003:1 22005:1 22041:1 22048:3 22050:1 22105:1 22106:1 22115:2 22142:1 22147:1 22151:1 22154:4 22157:2 22159:4 22170:5 22179:1 22181:1 22183:1 22223:1 22228:1 22232:2 22233:1 22236:2 22241:2 22251:1 22258:1 22267:1 22268:1 22270:1 22272:2 22273:2 22281:1 22285:1 22286:1 22298:2 22299:1 22300:8 22305:3 22309:1 22319:1 22320:1 22325:1 22332:1 22342:1 22349:1 22354:1 22377:1 22382:2 22383:1 22384:2 22389:3 22396:2 22405:1 22406:1 22409:1 22422:1 22425:4 22427:19 22430:1 22443:1 22447:1 22456:2 22457:3 22461:1 22466:1 22469:1 22479:1 22481:3 22501:5 22515:1 22534:3 22536:1 22538:3 22540:1 22542:1 22549:5 22563:1 22579:1 22600:1 22603:1 22604:1 22606:1 22607:4 22614:2 22618:3 22621:1 22671:1 22675:1 22693:4 22702:2 22703:1 22705:12 22709:3 22712:2 22720:2 22721:1 22723:1 22734:4 22735:2 22736:3 22739:1 22740:1 22744:1 22746:2 22748:2 22750:1 22756:1 22757:1 22758:1 22764:1 22769:2 22772:2 22777:1 22780:1 22795:2 22800:1 22822:1 22833:5 22834:1 22856:1 22860:1 22866:1 22868:2 22874:2 22877:1 22881:1 22895:1 22901:1 22906:1 22909:4 22917:1 22926:1 22929:1 22937:1 22969:1 22985:24 22987:2 22990:1 23001:1 23008:1 23027:1 23032:2 23052:1 23065:1 23073:1 23076:4 23078:1 23093:1 23096:2 23099:1 23102:1 23106:1 23112:2 23125:2 23133:1 23136:9 23141:1 23153:3 23160:4 23166:1 23193:1 23199:1 23202:2 23209:1 23212:1 23215:2 23221:2 23225:1 23236:1 23239:1 23242:2 23244:2 23246:2 23256:1 23269:2 23270:1 23271:1 23284:12 23302:4 23311:1 23317:4 23325:1 23328:1 23336:1 23360:1 23372:1 23376:2 23390:1 23391:1 23413:1 23445:1 23454:3 23459:1 23462:1 23473:1 23481:1 23493:2 23496:4 23514:1 23517:1 23534:1 23535:1 23545:1 23549:1 23554:1 23570:1 23573:1 23574:2 23575:2 23579:15 23581:1 23583:2 23600:1 23609:2 23611:2 23624:1 23629:1 23632:1 23639:1 23648:2 23649:1 23652:1 23655:1 23662:3 23665:1 23666:2 23669:1 23673:1 23687:1 23695:1 23699:3 23710:1 23716:1 23717:5 23721:1 23749:1 23750:1 23752:1 23765:2 23766:1 23767:1 23788:2 23794:1 23801:1 23805:1 23807:1 23813:1 23819:2 23826:1 23838:1 23844:1 23851:1 23859:1 23864:1 23875:1 23878:2 23879:1 23891:2 23903:1 23913:1 23948:1 23955:1 23968:1 23969:1 23971:7 23978:1 23987:1 24002:1 24003:1 24012:2 24015:1 24023:1 24034:1 24049:1 24060:1 24087:2 24090:3 24103:1 24108:2 24113:1 24119:2 24121:1 24124:4 24128:1 24141:1 24151:1 24168:2 24177:1 24183:1 24187:4 24188:5 24195:1 24196:1 24207:6 24216:1 24219:1 24222:1 24231:1 24232:1 24235:1 24237:4 24241:3 24247:1 24252:1 24273:2 24274:1 24280:1 24281:3 24283:1 24293:1 24296:1 24315:1 24329:6 24336:1 24340:29 24344:1 24391:1 24402:1 24408:1 24419:1 24432:2 24438:1 24440:2 24441:1 24444:1 24449:1 24464:1 24478:1 24490:1 24494:1 24504:3 24506:1 24508:1 24509:2 24533:1 24534:1 24538:1 24545:1 24548:2 24568:1 24571:1 24591:1 24602:2 24617:1 24625:1 24653:1 24656:2 24668:2 24671:1 24685:1 24702:6 24709:2 24714:1 24717:1 24745:1 24755:1 24756:1 24761:1 24775:1 24777:1 24797:3 24814:3 24827:2 24833:1 24838:2 24839:1 24841:1 24844:2 24845:1 24859:1 24873:1 24881:1 24890:1 24907:1 24921:1 24931:1 24932:1 24939:1 24944:2 24955:1 24970:1 24976:1 24989:1 24999:1 25004:1 25005:10 25014:1 25021:1 25023:1 25027:1 25028:1 25049:2 25059:1 25062:1 25073:2 25090:1 25122:1 25125:1 25139:1 25147:4 25158:1 25181:1 25190:1 25194:5 25211:1 25220:1 25252:2 25259:1 25264:1 25273:1 25275:1 25282:1 25285:3 25287:5 25288:1 25292:1 25311:1 25319:1 25325:2 25327:3 25331:1 25335:1 25339:4 25347:2 25351:1 25384:2 25385:2 25398:3 25415:1 25419:2 25431:2 25447:1 25468:1 25471:1 25472:1 25487:1 25495:4 25503:3 25507:1 25510:1 25514:1 25526:1 25527:1 25534:1 25549:1 25551:1 25554:1 25559:1 25560:1 25561:2 25570:1 25576:2 25577:1 25587:1 25597:1 25598:2 25614:1 25623:2 25627:3 25631:1 25634:1 25643:1 25652:1 25664:1 25673:1 25676:1 25681:1 25684:1 25688:1 25716:1 25718:1 25722:1 25733:1 25740:2 25778:3 25797:5 25816:1 25823:1 25832:1 25836:1 25852:1 25860:1 25871:1 25872:1 25878:2 25880:1 25884:1 25886:1 25893:7 25894:1 25900:1 25918:3 25921:1 25922:1 25952:2 25966:1 25980:5 25998:1 26004:1 26007:1 26011:1 26021:1 26048:1 26058:4 26073:1 26076:1 26097:9 26099:1 26119:3 26123:1 26124:1 26140:1 26143:1 26150:3 26156:7 26159:1 26164:1 26167:1 26169:1 26172:5 26175:1 26176:1 26191:1 26207:1 26214:1 26226:1 26232:1 26257:1 26297:1 26304:1 26315:1 26316:1 26318:4 26319:1 26320:3 26322:8 26324:3 26331:1 26337:1 26356:1 26371:1 26372:4 26376:1 26377:2 26403:2 26413:1 26415:6 26416:1 26424:2 26429:4 26435:7 26436:2 26445:2 26458:1 26460:1 26463:1 26464:1 26472:1 26489:2 26494:2 26513:6 26518:1 26524:2 26525:1 26534:1 26538:2 26548:1 26564:2 26574:1 26579:1 26589:4 26608:1 26627:5 26628:1 26652:4 26653:4 26659:1 26668:1 26681:2 26689:1 26712:1 26717:1 26728:3 26754:1 26761:1 26769:1 26781:1 26782:4 26808:1 26813:1 26835:1 26839:1 26842:2 26844:1 26848:1 26862:1 26865:1 26868:2 26871:3 26891:1 26893:1 26898:1 26901:3 26912:1 26915:1 26920:1 26934:2 26935:1 26938:1 26949:2 26955:1 26956:1 26964:1 26977:6 26981:1 26982:1 26984:1 26985:1 26989:2 26994:1 26997:1 27000:1 27001:1 27003:1 27008:2 27010:3 27023:1 27029:1 27056:1 27065:2 27073:1 27078:2 27099:1 27102:1 27107:1 27113:2 27115:4 27138:19 27144:1 27178:1 27185:1 27188:1 27192:2 27212:1 27223:1 27244:1 27252:1 27257:1 27266:1 27280:5 27288:1 27292:1 27295:1 27308:1 27314:2 27332:1 27394:2 27407:3 27422:5 27424:2 27426:1 27427:1 27431:1 27438:2 27439:1 27440:4 27441:10 27444:2 27450:1 27470:1 27486:1 27490:2 27521:1 27531:1 27534:1 27540:4 27548:1 27552:1 27571:1 27580:4 27600:1 27601:1 27607:1 27611:1 27621:2 27625:1 27626:1 27636:1 27663:3 27668:1 27673:2 27676:1 27705:2 27709:1 27718:1 27735:1 27740:2 27755:1 27775:1 27799:1 27809:1 27824:1 27834:1 27852:1 27854:2 27863:1 27875:1 27883:3 27889:1 27893:2 27910:2 27925:1 27939:1 27949:1 27950:1 27957:1 28004:2 28005:2 28017:4 28059:1 28076:1 28087:1 28095:2 28098:1 28099:6 28110:1 28113:1 28118:1 28121:10 28135:1 28137:1 28142:1 28154:2 28155:1 28207:1 28211:1 28223:29 28224:1 28227:3 28230:1 28238:1 28246:1 28258:5 28271:1 28281:2 28285:1 28288:1 28292:1 28331:1 28338:3 28340:3 28342:4 28343:2 28349:1 28356:1 28385:2 28388:1 28391:1 28395:1 28398:1 28405:2 28410:3 28413:2 28419:2 28421:1 28429:1 28430:1 28431:1 28432:1 28434:1 28437:3 28443:1 28448:3 28450:1 28452:1 28472:2 28482:1 28496:1 28499:2 28514:1 28524:2 28525:1 28526:1 28530:1 28544:2 28548:1 28551:1 28568:1 28574:1 28581:3 28593:1 28600:1 28644:2 28645:1 28659:1 28663:3 28665:2 28669:2 28674:1 28675:1 28680:1 28681:1 28684:1 28696:4 28697:1 28726:1 28747:1 28754:15 28762:1 28771:1 28786:1 28795:2 28798:1 28836:1 28839:4 28848:4 28866:1 28870:1 28874:2 28878:1 28912:1 28928:1 28931:4 28939:1 28951:1 28962:2 28964:1 28966:2 28974:1 28975:1 29000:5 29004:5 29028:1 29030:1 29039:3 29041:1 29051:1 29055:1 29069:1 29073:1 29095:2 29111:1 29112:1 29130:4 29135:1 29140:1 29143:1 29155:1 29167:3 29168:1 29179:1 29182:2 29183:29 29184:2 29185:1 29186:3 29189:4 29192:1 29193:1 29203:1 29214:1 29220:1 29221:13 29224:1 29234:1 29239:1 29240:1 29248:2 29276:1 29277:1 29281:2 29289:2 29290:1 29300:1 29301:2 29302:2 29310:1 29320:1 29325:1 29334:7 29342:5 29346:1 29348:2 29377:4 29381:1 29382:2 29388:1 29394:1 29409:1 29410:2 29429:1 29430:1 29451:1 29454:1 29463:1 29486:1 29495:2 29502:1 29536:2 29537:2 29542:1 29564:1 29573:1 29574:1 29575:1 29581:1 29583:1 29587:2 29589:1 29591:4 29595:3 29600:1 29615:1 29620:2 29624:1 29636:1 29655:10 29659:1 29661:3 29663:1 29666:4 29669:1 29718:1 29720:1 29737:1 29741:4 29745:9 29747:2 29749:1 29753:1 29754:1 29771:2 29776:2 29777:3 29790:1 29795:1 29809:2 29812:2 29814:1 29821:1 29841:3 29848:2 29860:1 29891:3 29896:1 29898:1 29901:2 29904:1 29905:3 29907:1 29923:1 29928:2 29932:3 29935:2 29936:5 29942:1 29950:5 29957:1 29969:2 30003:1 30011:1 30056:1 30070:2 30080:1 30087:1 30104:3 30107:2 30121:1 30129:4 30146:1 30160:2 30164:1 30170:1 30177:1 30201:1 30206:1 30210:2 30216:1 30222:3 30232:1 30241:1 30246:1 30252:1 30269:1 30285:3 30288:1 30290:1 30292:1 30294:1 30313:1 30325:2 30341:1 30344:1 30345:1 30346:8 30348:1 30354:2 30364:2 30401:1 30402:3 30407:2 30423:1 30429:1 30435:5 30441:2 30446:1 30475:1 30507:1 30510:1 30512:1 30517:1 30518:1 30524:1 30525:1 30527:5 30533:1 30539:1 30571:1 30576:2 30586:1 30588:1 30592:1 30593:1 30595:2 30599:1 30609:2 30650:1 30658:1 30660:1 16 5:1 10:1 24:1 26:2 27:1 38:1 52:1 62:1 66:1 69:1 72:1 74:1 75:5 91:1 94:1 104:1 106:1 121:1 136:1 150:1 151:5 156:1 160:2 163:1 190:1 197:2 202:4 206:1 220:1 224:4 229:1 230:1 251:2 266:1 285:1 294:4 297:1 315:1 324:1 334:3 335:3 336:1 360:2 368:1 369:1 375:1 392:1 407:1 430:3 436:2 440:2 453:1 463:1 471:1 477:2 489:1 491:1 493:1 495:1 502:1 503:1 505:1 510:2 511:2 546:1 547:1 564:5 622:1 625:4 631:1 637:4 647:1 660:3 666:2 673:4 679:1 688:1 694:1 705:1 706:1 710:1 722:1 730:1 737:1 748:1 768:2 778:2 795:1 798:2 815:1 836:1 845:2 851:1 853:1 855:2 857:1 870:5 878:1 880:1 882:3 887:2 890:1 895:1 898:2 921:1 931:2 935:1 939:3 942:1 943:1 949:1 951:2 965:2 966:2 971:3 973:1 974:3 975:6 976:2 981:2 987:1 1002:1 1003:2 1026:1 1028:1 1029:6 1032:2 1038:1 1056:1 1058:1 1065:2 1069:2 1080:1 1107:2 1108:1 1131:1 1134:1 1137:1 1155:2 1161:1 1170:2 1171:1 1191:1 1196:2 1215:1 1216:1 1217:3 1220:1 1221:2 1224:1 1233:2 1236:1 1242:2 1253:1 1254:4 1267:2 1273:2 1277:2 1280:1 1290:2 1291:3 1319:1 1324:1 1325:2 1331:2 1333:5 1336:1 1346:2 1347:7 1348:2 1349:1 1351:1 1361:1 1365:1 1377:1 1379:1 1389:2 1393:1 1395:4 1409:2 1421:2 1422:1 1446:2 1458:1 1472:1 1473:1 1476:2 1499:1 1500:3 1503:1 1511:1 1514:1 1516:1 1519:2 1528:1 1538:1 1539:1 1556:1 1566:7 1574:1 1579:1 1585:8 1590:1 1594:3 1601:1 1602:2 1603:1 1608:4 1609:1 1614:1 1618:1 1624:1 1625:1 1627:1 1628:5 1642:1 1651:1 1653:1 1657:10 1671:1 1677:3 1679:2 1680:2 1681:2 1684:1 1685:1 1690:2 1696:1 1715:1 1725:3 1730:1 1734:5 1739:5 1742:2 1743:1 1756:1 1757:2 1759:2 1776:5 1780:3 1788:1 1789:1 1800:1 1802:1 1807:2 1812:1 1826:1 1840:1 1841:1 1855:2 1857:1 1858:1 1860:1 1863:1 1873:4 1881:1 1886:6 1900:1 1905:1 1909:2 1913:1 1914:1 1934:1 1938:1 1939:1 1947:1 1951:1 1954:1 1955:1 1964:1 1969:2 1970:2 1977:1 1982:1 1986:1 1989:1 1997:1 1999:1 2003:1 2005:1 2016:4 2021:1 2023:1 2026:2 2032:1 2035:1 2038:2 2039:5 2042:1 2046:1 2048:1 2052:1 2069:1 2070:4 2072:1 2090:1 2096:1 2101:1 2124:1 2125:1 2131:1 2132:1 2149:1 2153:1 2161:2 2162:2 2164:2 2167:2 2169:1 2170:3 2181:1 2204:1 2227:1 2231:1 2232:1 2234:4 2235:1 2237:2 2238:1 2239:1 2252:1 2269:4 2293:1 2296:2 2307:1 2312:1 2337:1 2339:1 2346:1 2351:1 2353:3 2363:1 2366:1 2374:1 2381:1 2404:2 2405:1 2406:1 2407:2 2408:5 2412:3 2413:1 2415:6 2416:1 2417:1 2420:6 2421:1 2422:4 2424:2 2427:1 2431:1 2434:7 2436:3 2437:8 2442:1 2443:1 2448:1 2450:2 2455:1 2461:2 2468:1 2469:1 2473:1 2486:1 2488:1 2495:1 2501:1 2508:1 2514:1 2517:1 2518:2 2519:2 2520:1 2525:1 2532:1 2533:3 2534:1 2538:1 2543:1 2550:1 2556:2 2560:1 2575:1 2578:1 2597:1 2599:1 2602:1 2623:6 2633:1 2641:1 2645:1 2650:2 2657:4 2659:1 2681:1 2689:1 2693:1 2694:1 2705:1 2741:1 2742:2 2747:1 2766:1 2797:2 2803:1 2812:5 2819:1 2825:5 2834:1 2841:2 2842:1 2849:1 2852:3 2854:12 2856:2 2872:1 2874:1 2886:2 2888:3 2894:1 2896:1 2900:1 2901:1 2902:1 2909:4 2912:1 2918:1 2936:2 2938:1 2943:2 2952:2 2962:2 2963:1 2965:5 2976:4 3019:5 3024:1 3027:1 3030:1 3031:1 3039:2 3043:1 3056:16 3066:1 3067:7 3081:1 3090:2 3099:1 3105:1 3118:32 3127:1 3128:2 3151:1 3152:1 3170:1 3181:1 3189:1 3196:2 3222:1 3224:2 3227:1 3229:1 3232:2 3296:3 3299:1 3311:3 3318:1 3342:1 3358:1 3378:1 3379:1 3389:2 3390:1 3391:1 3397:1 3403:2 3406:4 3417:2 3428:13 3442:1 3454:1 3461:1 3469:2 3477:1 3485:1 3498:7 3516:1 3543:1 3556:1 3565:1 3567:1 3574:1 3588:1 3590:2 3601:4 3609:1 3613:1 3628:1 3634:1 3640:4 3643:3 3649:1 3654:1 3661:1 3667:5 3707:1 3711:3 3713:1 3729:1 3730:1 3731:1 3746:3 3753:1 3764:1 3778:1 3793:1 3796:1 3801:1 3803:5 3804:2 3810:3 3812:1 3813:2 3819:2 3829:2 3839:1 3846:1 3867:1 3886:1 3898:1 3902:2 3903:4 3906:1 3913:1 3918:1 3929:1 3948:1 3950:1 3958:4 3959:47 3966:1 3981:1 3993:2 3994:1 3995:9 4000:1 4007:1 4009:1 4010:30 4011:2 4012:2 4015:7 4018:1 4027:2 4042:4 4057:3 4058:4 4061:3 4063:4 4076:2 4078:2 4079:1 4095:1 4116:2 4122:1 4123:3 4126:1 4130:1 4134:1 4159:1 4167:1 4171:1 4173:1 4176:2 4178:1 4182:1 4183:3 4196:3 4207:2 4209:1 4216:1 4219:1 4223:1 4232:1 4234:1 4235:2 4242:1 4256:1 4258:1 4265:1 4266:2 4267:1 4269:1 4270:1 4285:2 4290:2 4294:1 4297:1 4301:5 4318:5 4324:1 4330:1 4360:1 4368:1 4369:1 4373:1 4381:2 4389:1 4401:1 4416:1 4423:1 4436:1 4439:3 4447:1 4463:2 4474:1 4483:1 4485:1 4486:1 4498:2 4504:2 4505:2 4508:1 4509:1 4511:1 4539:1 4547:2 4555:1 4557:1 4563:1 4586:1 4599:1 4611:2 4623:1 4636:15 4650:1 4651:1 4665:1 4697:3 4701:1 4706:5 4710:1 4715:1 4718:2 4749:7 4759:1 4767:1 4773:2 4776:1 4781:1 4787:1 4793:1 4796:1 4840:1 4854:1 4855:2 4880:1 4896:1 4900:2 4906:3 4909:1 4919:1 4920:1 4921:2 4927:1 4930:2 4938:1 4948:4 4959:1 4962:1 4966:4 4989:3 4990:1 4993:2 4994:1 5002:1 5014:1 5044:1 5058:1 5059:1 5062:1 5064:1 5076:1 5090:1 5092:2 5100:2 5153:2 5159:1 5161:1 5186:1 5189:1 5191:1 5198:1 5201:17 5202:3 5211:1 5219:1 5231:3 5241:1 5257:1 5260:2 5275:1 5281:1 5288:1 5308:4 5314:1 5320:5 5321:1 5323:5 5340:1 5344:2 5345:4 5347:8 5348:1 5350:1 5351:2 5353:1 5354:3 5356:1 5361:1 5362:25 5363:1 5365:1 5370:2 5371:3 5376:2 5377:1 5385:1 5397:2 5401:3 5403:1 5425:2 5453:2 5467:1 5478:1 5483:3 5486:1 5488:1 5491:1 5495:2 5560:1 5572:2 5593:3 5594:3 5601:1 5603:5 5610:1 5632:1 5648:1 5652:1 5670:1 5675:2 5677:25 5684:1 5703:1 5708:1 5710:3 5712:1 5735:4 5745:1 5763:1 5769:1 5771:1 5774:1 5786:1 5810:1 5811:1 5816:1 5819:2 5830:1 5836:1 5839:1 5848:1 5851:1 5856:2 5857:1 5863:1 5901:1 5902:1 5904:1 5908:1 5911:1 5920:1 5921:1 5922:2 5932:1 5943:4 5951:1 5954:1 5956:1 5962:2 5965:1 5967:1 5973:2 5978:1 5987:2 5991:1 5993:2 6010:1 6018:1 6021:5 6038:2 6044:2 6060:1 6061:1 6063:1 6065:1 6068:1 6079:1 6086:1 6094:1 6095:1 6097:1 6101:1 6103:1 6114:2 6115:1 6118:1 6121:1 6136:1 6140:1 6141:1 6142:1 6171:1 6179:1 6199:3 6217:1 6219:5 6221:1 6225:1 6227:1 6231:1 6239:2 6243:1 6257:1 6280:1 6302:1 6305:2 6330:1 6334:1 6343:1 6364:1 6368:5 6371:11 6380:1 6386:2 6404:1 6410:2 6415:1 6420:1 6421:1 6444:1 6463:1 6465:1 6471:1 6474:1 6480:1 6481:2 6488:1 6490:2 6491:2 6492:1 6498:1 6499:1 6528:5 6529:1 6536:1 6539:2 6540:2 6564:1 6568:1 6577:1 6588:1 6591:3 6596:1 6602:2 6618:6 6621:1 6624:1 6630:2 6635:1 6636:1 6639:1 6648:1 6654:1 6660:1 6673:1 6721:7 6724:2 6725:2 6726:1 6727:1 6728:1 6730:3 6731:2 6734:2 6735:3 6736:5 6743:3 6744:8 6745:1 6746:2 6747:5 6756:1 6764:3 6773:1 6776:1 6797:3 6802:1 6820:1 6833:2 6836:1 6869:1 6872:1 6875:1 6878:1 6886:1 6895:2 6901:1 6930:1 6932:1 6970:1 6977:1 6984:1 6994:4 7000:2 7002:1 7019:1 7026:1 7027:5 7032:3 7035:1 7039:1 7046:1 7047:1 7060:2 7075:1 7080:1 7082:1 7083:3 7087:1 7088:2 7114:1 7115:1 7118:1 7126:1 7148:1 7155:1 7166:1 7171:1 7175:1 7192:3 7200:3 7201:2 7204:1 7216:3 7220:1 7222:2 7231:6 7236:3 7242:2 7257:1 7263:1 7264:1 7267:3 7273:1 7299:1 7308:1 7322:1 7325:1 7328:1 7333:1 7335:2 7342:1 7363:1 7375:1 7380:1 7384:1 7407:2 7412:1 7432:3 7433:1 7448:1 7455:1 7456:2 7468:1 7495:1 7522:2 7542:1 7546:2 7548:1 7554:1 7556:2 7573:1 7574:1 7577:5 7580:2 7584:1 7585:3 7587:1 7589:1 7600:1 7601:1 7603:1 7610:1 7612:1 7625:1 7635:1 7653:2 7705:1 7717:1 7727:1 7728:1 7732:1 7733:1 7769:2 7774:1 7779:1 7782:1 7788:5 7830:1 7840:4 7859:1 7874:5 7880:1 7906:1 7910:1 7915:2 7920:2 7926:1 7932:2 7954:2 7963:2 7968:1 7993:1 7997:2 7998:1 8001:1 8004:1 8005:2 8023:1 8027:1 8031:5 8054:1 8064:4 8065:6 8066:3 8084:1 8089:2 8090:1 8094:2 8097:1 8100:1 8105:1 8121:1 8122:2 8128:1 8130:1 8131:52 8133:1 8134:1 8140:2 8142:1 8151:16 8152:28 8159:1 8161:1 8164:1 8170:1 8173:1 8207:1 8208:7 8226:1 8238:1 8239:1 8246:1 8247:1 8254:1 8273:1 8279:2 8302:4 8307:1 8316:1 8319:1 8321:1 8362:4 8365:7 8372:1 8389:1 8408:1 8413:1 8415:5 8422:1 8430:1 8432:1 8433:1 8450:1 8457:1 8467:1 8478:1 8492:1 8521:1 8523:4 8525:1 8531:2 8537:1 8540:8 8546:3 8550:1 8559:1 8567:1 8570:2 8585:2 8590:1 8597:2 8603:1 8610:1 8623:1 8624:1 8633:27 8637:1 8640:1 8651:1 8655:2 8664:2 8665:1 8669:1 8687:2 8718:1 8724:1 8733:2 8735:1 8742:1 8748:1 8753:2 8760:4 8764:1 8779:1 8789:1 8793:3 8798:5 8803:3 8816:2 8820:4 8830:1 8840:2 8842:1 8845:2 8850:1 8857:1 8858:2 8863:2 8873:1 8884:2 8887:2 8890:1 8892:1 8895:1 8898:1 8899:1 8915:2 8917:1 8932:1 8938:1 8942:3 8953:1 8959:1 8966:1 8973:1 8979:1 8980:2 8983:1 8984:3 8985:2 8986:2 8987:5 8990:2 8991:1 8995:2 8998:2 9000:2 9004:3 9020:1 9027:3 9035:2 9039:3 9040:1 9041:1 9045:1 9046:1 9058:1 9061:1 9072:6 9075:2 9081:1 9086:2 9109:1 9112:5 9135:1 9139:6 9146:1 9148:1 9149:1 9151:2 9158:1 9164:1 9169:1 9204:1 9205:2 9209:1 9215:3 9225:3 9227:1 9229:1 9230:1 9248:2 9268:6 9269:2 9273:5 9274:1 9276:1 9277:4 9280:3 9286:3 9301:3 9302:1 9304:5 9316:1 9318:1 9339:3 9345:1 9400:1 9420:3 9439:2 9442:2 9450:1 9453:1 9463:1 9471:1 9478:1 9480:1 9495:1 9504:1 9506:1 9508:1 9510:1 9523:1 9539:1 9561:4 9584:1 9589:2 9592:1 9594:5 9605:2 9608:1 9618:8 9640:2 9646:3 9651:1 9658:1 9662:1 9663:1 9677:1 9686:1 9695:3 9697:1 9715:1 9718:1 9719:2 9721:1 9732:2 9776:2 9781:1 9809:1 9818:1 9825:1 9840:1 9842:1 9867:1 9870:1 9874:1 9877:3 9882:2 9888:1 9889:2 9890:1 9894:1 9909:1 9928:2 9930:1 9937:2 9940:1 9942:1 9954:1 9972:1 9973:1 9977:3 9983:1 9993:1 9994:1 10009:1 10032:1 10037:25 10043:1 10060:1 10069:2 10078:7 10084:2 10085:1 10109:1 10114:2 10117:1 10120:1 10121:1 10127:1 10128:1 10130:2 10146:2 10152:1 10156:1 10169:14 10182:1 10184:2 10185:1 10190:3 10202:1 10211:1 10222:1 10223:5 10229:1 10235:1 10238:3 10239:1 10240:2 10241:1 10259:1 10269:1 10275:1 10281:1 10286:1 10301:3 10317:2 10321:3 10322:1 10336:1 10356:8 10362:3 10363:4 10364:2 10371:3 10376:1 10379:1 10380:1 10387:3 10393:3 10395:1 10396:1 10400:2 10406:2 10410:4 10413:5 10415:1 10416:1 10423:1 10438:1 10440:1 10446:3 10450:4 10468:1 10470:2 10483:1 10493:2 10533:1 10547:1 10549:3 10552:1 10577:13 10580:1 10581:6 10596:1 10601:1 10602:1 10627:1 10636:1 10651:4 10691:1 10698:2 10707:1 10715:1 10718:1 10731:1 10735:2 10757:4 10762:1 10763:1 10777:1 10780:4 10784:1 10789:2 10791:1 10794:1 10809:1 10828:1 10830:1 10850:2 10868:1 10880:2 10892:6 10898:1 10903:1 10907:1 10917:2 10923:2 10935:2 10939:1 10955:1 10957:3 10962:7 10972:1 10973:1 10998:1 11009:2 11026:3 11028:2 11031:2 11040:1 11047:6 11048:2 11060:2 11061:4 11062:1 11063:7 11070:1 11081:1 11084:4 11087:1 11105:1 11106:3 11120:1 11126:1 11134:4 11145:2 11148:3 11156:1 11160:2 11165:1 11166:8 11183:1 11230:1 11231:1 11234:1 11237:1 11260:2 11261:2 11262:1 11268:1 11276:1 11297:2 11305:1 11315:1 11324:1 11359:2 11364:1 11366:1 11371:1 11388:3 11389:1 11392:1 11399:2 11400:8 11417:4 11418:7 11430:4 11441:1 11443:1 11453:1 11458:2 11469:1 11477:4 11482:1 11499:1 11512:2 11528:1 11529:2 11535:5 11546:2 11556:4 11564:1 11569:3 11582:1 11595:2 11597:1 11598:1 11617:1 11621:1 11622:1 11626:1 11628:1 11641:1 11653:1 11668:1 11673:1 11676:1 11677:1 11678:1 11680:1 11683:1 11684:5 11685:1 11703:1 11710:1 11718:1 11721:2 11738:2 11740:1 11745:1 11753:1 11754:1 11758:1 11779:2 11804:1 11808:1 11810:4 11816:1 11819:1 11820:2 11824:1 11830:1 11831:1 11839:1 11843:1 11844:1 11846:1 11852:2 11854:1 11877:1 11885:1 11887:5 11914:1 11918:1 11923:3 11926:7 11929:1 11931:3 11940:1 11942:3 11961:1 11985:1 11986:1 11989:1 11991:1 11994:2 12009:1 12011:1 12029:3 12045:1 12056:1 12063:1 12065:5 12066:2 12076:1 12077:5 12081:1 12093:2 12095:3 12098:2 12107:1 12118:1 12120:1 12130:3 12135:1 12146:4 12153:2 12155:10 12157:1 12170:1 12171:1 12176:1 12177:1 12181:1 12182:1 12189:1 12190:3 12192:1 12193:7 12194:1 12200:1 12202:7 12210:2 12218:2 12222:1 12228:11 12234:1 12253:2 12266:5 12270:2 12275:2 12280:1 12293:1 12314:1 12325:4 12333:1 12335:1 12337:3 12348:1 12372:1 12373:1 12375:1 12385:3 12406:1 12412:1 12415:3 12423:1 12440:1 12451:1 12459:1 12470:2 12471:2 12473:1 12506:3 12508:1 12513:1 12539:1 12555:5 12594:3 12609:1 12616:1 12623:1 12625:1 12628:1 12629:1 12632:1 12637:1 12654:4 12655:4 12656:25 12660:8 12661:1 12671:1 12679:1 12681:2 12698:3 12705:1 12716:3 12719:1 12745:1 12749:1 12766:2 12784:1 12788:1 12815:3 12824:9 12825:2 12841:1 12845:1 12846:4 12850:3 12871:2 12894:1 12902:4 12906:1 12919:1 12929:1 12936:1 12943:2 12947:1 12953:1 12961:1 12976:2 12979:2 12992:1 13011:1 13015:2 13019:1 13035:5 13054:2 13057:1 13063:2 13092:1 13095:3 13103:1 13106:1 13107:1 13110:1 13114:1 13117:1 13129:1 13146:2 13166:1 13167:1 13174:1 13175:1 13183:1 13194:1 13207:1 13227:6 13240:1 13241:1 13243:1 13248:1 13251:1 13276:2 13277:4 13304:2 13307:3 13335:1 13342:1 13371:1 13376:2 13389:1 13404:1 13424:1 13429:2 13433:1 13440:1 13441:1 13443:3 13472:1 13486:2 13488:1 13494:1 13522:1 13524:2 13579:1 13580:1 13582:1 13597:5 13599:1 13609:1 13613:1 13614:1 13623:1 13624:3 13630:1 13646:1 13649:2 13652:1 13656:1 13661:1 13664:1 13673:2 13681:1 13684:3 13688:1 13700:2 13709:1 13711:1 13712:2 13714:2 13720:1 13735:1 13739:2 13740:1 13768:1 13775:1 13776:1 13780:2 13816:3 13821:3 13823:1 13832:1 13833:2 13835:1 13838:9 13839:2 13842:4 13843:1 13847:1 13851:2 13853:1 13856:1 13858:3 13873:3 13875:1 13878:2 13883:5 13898:1 13915:8 13916:1 13923:1 13926:1 13929:1 13930:1 13931:3 13943:1 13944:2 13958:2 13973:1 13981:2 13985:1 13991:1 13993:3 13994:1 14009:1 14011:6 14016:1 14027:1 14028:1 14037:1 14050:2 14063:3 14078:1 14080:1 14085:2 14086:7 14112:2 14113:3 14114:2 14115:1 14116:1 14129:4 14145:1 14152:3 14156:1 14157:2 14177:1 14189:2 14206:1 14221:2 14223:1 14228:1 14234:1 14237:2 14238:2 14239:2 14241:2 14245:1 14264:1 14267:1 14274:1 14275:1 14278:1 14279:1 14280:2 14291:1 14296:2 14298:1 14305:1 14307:1 14310:1 14311:2 14315:3 14318:1 14320:1 14334:1 14335:1 14366:9 14375:2 14377:1 14382:1 14422:1 14426:1 14445:2 14446:1 14447:2 14450:2 14468:2 14471:2 14472:1 14477:5 14503:1 14522:1 14529:1 14533:1 14544:2 14546:5 14552:3 14553:8 14563:2 14584:2 14592:3 14610:1 14622:2 14642:2 14644:1 14649:2 14650:1 14654:1 14664:1 14665:2 14670:2 14674:1 14688:1 14699:1 14704:1 14769:1 14771:2 14775:1 14777:1 14780:1 14785:2 14806:2 14833:1 14845:1 14862:1 14887:1 14891:3 14901:1 14921:1 14922:1 14929:2 14935:1 14952:1 14953:1 14958:1 14971:1 14976:3 14986:2 14987:1 14997:1 15002:1 15008:5 15010:1 15011:1 15019:1 15020:1 15032:2 15033:1 15054:1 15060:1 15065:1 15068:1 15072:1 15088:1 15096:2 15102:1 15120:2 15127:1 15141:1 15157:1 15162:2 15166:2 15174:2 15181:2 15190:1 15196:5 15216:2 15233:1 15238:1 15247:2 15252:1 15276:1 15290:1 15319:4 15330:1 15337:1 15346:1 15364:1 15402:1 15475:1 15476:1 15487:1 15493:1 15507:2 15534:1 15538:4 15547:4 15548:2 15552:1 15554:1 15556:1 15573:2 15577:1 15597:3 15605:1 15618:1 15624:1 15625:1 15641:1 15643:2 15646:1 15655:4 15672:1 15683:1 15693:1 15695:2 15697:1 15701:1 15702:2 15716:1 15725:1 15734:2 15763:1 15771:1 15772:3 15775:1 15780:1 15781:1 15788:1 15805:1 15813:1 15814:1 15868:2 15875:3 15876:4 15880:1 15881:1 15907:5 15908:1 15911:1 15933:1 15951:6 15955:2 15961:1 15962:1 15968:1 15984:1 15999:1 16001:1 16008:1 16010:1 16018:1 16021:4 16028:3 16029:1 16032:2 16038:2 16054:1 16066:1 16073:2 16088:1 16096:1 16111:1 16116:1 16121:1 16122:1 16126:1 16140:1 16141:1 16148:4 16153:1 16167:11 16172:8 16174:1 16181:1 16207:2 16218:1 16221:2 16222:2 16235:4 16255:1 16263:1 16268:1 16270:1 16277:1 16279:1 16297:1 16303:3 16307:1 16309:1 16317:8 16325:3 16327:1 16334:1 16336:1 16337:2 16345:4 16347:1 16349:1 16352:1 16353:6 16356:3 16357:9 16358:1 16363:2 16367:2 16368:1 16369:1 16375:1 16378:1 16379:6 16386:4 16387:2 16427:1 16467:1 16480:2 16481:1 16484:2 16488:2 16494:1 16495:2 16498:1 16501:2 16507:6 16519:2 16530:2 16532:1 16543:2 16561:2 16564:3 16578:1 16593:2 16609:1 16610:1 16617:1 16623:1 16630:1 16638:3 16644:1 16646:9 16659:2 16660:2 16661:1 16673:1 16674:4 16677:1 16678:4 16692:1 16697:2 16706:25 16714:1 16734:1 16739:6 16740:1 16743:2 16761:2 16775:74 16794:3 16799:1 16831:1 16861:1 16864:1 16866:1 16867:3 16884:1 16904:1 16907:1 16908:1 16909:1 16911:1 16913:2 16915:1 16916:2 16919:3 16920:6 16921:1 16926:1 16927:4 16930:1 16931:2 16937:2 16944:1 16957:1 16961:1 16965:2 16971:1 16980:1 16981:1 17010:1 17013:1 17040:1 17047:1 17055:5 17075:1 17090:2 17095:5 17116:1 17130:1 17135:2 17139:1 17144:1 17153:1 17173:1 17192:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:2 17253:1 17258:1 17259:1 17268:1 17289:1 17294:2 17295:1 17317:1 17322:1 17326:2 17336:4 17342:5 17343:1 17347:1 17369:3 17372:3 17383:1 17392:3 17398:1 17405:3 17414:1 17415:1 17422:1 17424:3 17426:1 17427:2 17429:1 17435:1 17438:1 17445:1 17450:1 17454:3 17459:1 17460:13 17470:1 17474:2 17500:2 17514:2 17520:1 17521:3 17549:1 17553:1 17559:1 17561:1 17564:2 17582:1 17583:3 17585:5 17587:1 17589:3 17593:1 17595:1 17596:2 17608:1 17613:1 17614:1 17625:1 17635:1 17638:1 17641:1 17645:2 17646:2 17675:2 17678:2 17685:2 17689:1 17711:1 17717:1 17718:3 17725:2 17726:1 17727:1 17742:1 17762:1 17771:1 17788:1 17792:2 17797:2 17800:1 17816:1 17819:1 17820:1 17821:2 17822:1 17831:1 17835:1 17843:2 17844:1 17849:3 17859:2 17867:1 17871:1 17875:1 17877:3 17881:1 17889:1 17896:1 17897:1 17906:3 17912:1 17932:2 17933:1 17951:1 17952:1 17957:1 17972:2 17997:1 17998:3 18006:2 18011:1 18012:1 18034:4 18083:1 18087:1 18093:1 18099:1 18110:1 18112:1 18115:1 18129:7 18131:3 18132:1 18134:2 18136:1 18137:1 18144:1 18147:2 18148:4 18153:3 18154:1 18166:1 18169:2 18171:3 18174:2 18175:1 18182:1 18187:1 18188:1 18197:2 18206:1 18214:1 18221:1 18222:1 18223:1 18226:1 18235:1 18241:1 18248:2 18249:3 18277:1 18280:1 18282:2 18285:1 18286:1 18310:1 18313:1 18329:2 18330:3 18338:2 18341:1 18342:1 18355:1 18360:1 18366:3 18384:1 18410:3 18412:1 18414:1 18415:1 18417:2 18421:2 18423:2 18424:1 18441:1 18442:15 18446:2 18460:1 18461:1 18474:1 18478:2 18489:1 18506:1 18517:2 18524:1 18543:1 18544:2 18546:3 18559:2 18562:2 18565:1 18576:1 18583:1 18584:1 18589:1 18598:1 18602:1 18625:1 18629:4 18633:4 18634:2 18636:1 18646:2 18676:2 18678:1 18707:1 18709:1 18731:1 18748:3 18749:2 18757:1 18781:1 18786:1 18797:1 18805:1 18807:1 18815:1 18816:2 18819:3 18831:2 18838:1 18855:1 18856:1 18860:2 18866:1 18872:1 18873:4 18879:1 18896:1 18907:1 18922:4 18928:1 18932:2 18954:1 18956:4 18966:1 18977:5 18980:1 18984:1 18987:3 18990:1 19006:2 19007:1 19016:1 19018:2 19022:1 19078:1 19079:1 19098:2 19102:2 19113:1 19114:22 19118:1 19122:1 19125:3 19132:1 19138:1 19145:1 19160:1 19170:1 19171:1 19182:1 19183:1 19190:3 19191:2 19193:1 19194:1 19195:2 19210:1 19217:1 19219:1 19225:1 19229:2 19236:1 19241:1 19244:7 19250:2 19251:1 19265:4 19269:2 19272:1 19276:2 19277:1 19285:2 19315:1 19323:4141 19328:1 19342:5 19343:1 19348:2 19376:1 19385:1 19395:2 19405:1 19410:1 19412:1 19413:3 19414:2 19421:2 19449:1 19451:1 19452:3 19473:2 19482:2 19505:1 19507:6 19509:2 19530:3 19536:1 19539:3 19541:1 19543:1 19556:1 19571:1 19584:1 19586:1 19596:1 19609:1 19632:1 19636:5 19638:1 19642:1 19649:2 19654:1 19658:1 19664:1 19670:1 19689:1 19696:3 19702:1 19708:1 19721:2 19733:1 19743:1 19751:1 19756:1 19758:1 19768:1 19804:1 19815:1 19817:2 19820:1 19822:1 19831:5 19845:2 19856:1 19857:1 19869:1 19875:2 19877:1 19882:1 19918:2 19919:5 19933:5 19959:1 19976:1 19984:1 20004:1 20024:1 20030:1 20032:2 20043:1 20048:2 20050:1 20057:2 20074:4 20086:2 20090:1 20091:4 20095:1 20105:1 20107:5 20121:19 20122:1 20137:1 20141:1 20142:1 20144:3 20146:1 20147:26 20159:2 20173:1 20177:1 20178:6 20180:1 20181:1 20197:2 20212:1 20216:6 20236:1 20243:3 20248:1 20249:1 20250:6 20252:2 20255:1 20260:1 20262:1 20277:2 20278:1 20279:1 20283:1 20287:1 20313:2 20319:3 20326:1 20339:1 20349:3 20363:1 20387:1 20389:1 20392:1 20398:2 20404:1 20447:1 20451:1 20458:1 20477:1 20486:1 20492:1 20493:1 20502:1 20523:1 20524:13 20527:1 20565:1 20573:2 20574:2 20596:1 20605:1 20607:1 20613:2 20619:1 20623:8 20644:1 20648:1 20656:1 20669:2 20682:1 20688:1 20691:1 20709:1 20714:1 20719:1 20720:1 20722:2 20724:2 20725:1 20731:2 20749:1 20774:1 20779:4 20782:1 20787:1 20789:1 20796:1 20811:3 20814:1 20821:1 20839:3 20849:1 20853:1 20869:2 20871:1 20877:5 20894:2 20897:1 20903:2 20907:1 20908:2 20918:2 20920:1 20922:1 20923:8 20927:1 20942:1 20970:1 20972:1 20976:1 20978:1 20987:1 20996:15 21002:2 21014:2 21017:3 21030:1 21033:1 21049:1 21050:15 21066:1 21080:1 21088:1 21099:1 21103:1 21105:1 21107:1 21131:1 21144:2 21147:1 21170:1 21175:1 21180:1 21182:1 21196:2 21213:1 21214:5 21216:2 21225:1 21231:1 21258:2 21293:1 21301:5 21312:1 21313:1 21316:3 21328:1 21330:1 21331:1 21339:1 21343:1 21344:1 21355:1 21389:1 21392:2 21413:3 21448:1 21451:3 21466:1 21468:1 21474:1 21487:1 21495:1 21498:1 21500:3 21511:1 21528:1 21529:1 21532:2 21533:1 21534:1 21554:1 21556:1 21560:1 21575:1 21596:4 21625:2 21630:1 21631:1 21633:2 21634:1 21638:1 21643:14 21652:2 21655:2 21656:1 21660:3 21661:1 21663:5 21664:1 21674:3 21678:1 21684:5 21690:1 21708:5 21711:1 21716:2 21722:1 21723:1 21726:1 21741:1 21755:2 21756:1 21757:1 21769:2 21773:1 21789:2 21797:1 21798:1 21814:1 21822:10 21829:1 21830:2 21835:1 21837:1 21843:1 21847:1 21852:2 21863:1 21874:1 21884:1 21891:1 21896:1 21904:1 21909:1 21911:1 21915:1 21916:1 21924:1 21932:3 21936:1 21937:1 21939:1 21943:1 21949:1 21962:4 21977:1 21980:1 21982:1 21986:2 21987:1 21990:1 21992:1 21996:1 22003:1 22005:1 22041:1 22048:3 22050:1 22105:1 22106:1 22115:2 22142:2 22147:1 22151:2 22154:4 22157:2 22159:4 22170:5 22179:1 22181:1 22183:1 22223:1 22228:1 22232:2 22233:1 22236:2 22241:2 22251:1 22258:1 22267:1 22268:1 22270:1 22272:2 22273:2 22281:1 22285:1 22286:1 22298:2 22299:1 22300:8 22305:3 22309:1 22319:1 22320:1 22325:1 22332:1 22342:1 22349:1 22354:1 22377:1 22382:2 22383:1 22384:2 22385:1 22389:3 22396:2 22405:1 22406:1 22409:1 22422:1 22425:4 22427:20 22430:1 22443:1 22447:1 22456:2 22457:3 22461:1 22466:1 22469:1 22479:1 22481:4 22501:5 22515:1 22534:3 22536:1 22538:3 22540:1 22542:1 22549:5 22563:1 22569:1 22579:1 22600:1 22603:1 22604:1 22606:1 22607:4 22614:2 22618:3 22621:1 22671:1 22675:1 22693:4 22702:2 22703:1 22705:13 22709:3 22712:2 22720:3 22721:1 22723:1 22734:4 22735:2 22736:3 22739:1 22740:1 22744:1 22746:2 22748:2 22750:1 22756:1 22757:2 22758:1 22764:1 22769:2 22772:2 22777:1 22780:1 22795:2 22800:1 22822:1 22833:5 22834:1 22856:1 22860:1 22866:1 22868:2 22874:2 22877:1 22881:1 22895:1 22901:1 22906:1 22909:5 22917:1 22926:1 22929:1 22937:1 22969:1 22985:25 22987:2 22990:1 23001:1 23008:1 23027:1 23032:2 23052:1 23065:1 23073:1 23076:5 23078:1 23093:1 23096:2 23099:1 23102:1 23106:1 23112:2 23125:2 23133:1 23136:9 23141:1 23143:1 23153:3 23160:4 23166:1 23193:1 23199:1 23202:2 23209:1 23212:1 23215:2 23221:2 23225:1 23236:1 23239:1 23242:3 23244:2 23246:2 23256:1 23269:2 23270:1 23271:1 23284:12 23302:4 23311:1 23317:4 23325:1 23328:1 23336:1 23360:1 23372:1 23376:2 23390:1 23391:1 23413:1 23445:1 23454:3 23459:1 23462:1 23473:1 23481:1 23493:2 23496:4 23514:1 23517:1 23534:1 23535:1 23545:1 23549:1 23554:1 23570:1 23573:1 23574:2 23575:2 23579:15 23581:1 23583:2 23600:1 23609:2 23611:2 23624:1 23629:1 23632:1 23639:1 23648:2 23649:1 23652:1 23655:1 23662:4 23665:1 23666:2 23669:1 23673:1 23687:1 23695:1 23699:3 23710:1 23716:1 23717:5 23721:1 23738:1 23749:1 23750:1 23752:1 23765:2 23766:1 23767:1 23788:2 23794:1 23801:1 23805:1 23807:1 23813:1 23819:2 23826:1 23838:1 23844:1 23851:1 23859:1 23864:1 23875:1 23878:2 23879:1 23891:2 23903:1 23913:1 23948:1 23955:1 23968:1 23969:1 23971:7 23978:1 23987:1 24002:1 24003:1 24012:2 24015:1 24023:1 24034:1 24049:1 24060:1 24083:1 24087:2 24090:3 24092:1 24103:1 24108:2 24113:1 24119:2 24121:1 24124:4 24128:1 24141:1 24151:1 24168:2 24177:1 24183:1 24187:4 24188:5 24195:2 24196:1 24207:6 24216:1 24219:1 24222:1 24231:2 24232:1 24235:1 24237:4 24241:3 24247:1 24252:1 24273:2 24274:1 24280:1 24281:3 24283:1 24293:1 24296:1 24315:1 24329:6 24336:1 24340:32 24344:1 24391:1 24402:1 24408:1 24419:1 24432:2 24438:1 24440:2 24441:1 24444:1 24449:1 24464:1 24478:1 24490:1 24494:1 24504:3 24506:1 24508:1 24509:2 24533:1 24534:1 24538:1 24545:1 24548:2 24568:1 24571:1 24591:1 24602:2 24617:1 24625:1 24628:1 24653:1 24656:2 24668:2 24671:1 24685:1 24702:6 24709:2 24714:1 24717:1 24745:1 24755:1 24756:1 24761:1 24775:1 24777:1 24797:3 24814:3 24826:1 24827:2 24833:1 24838:2 24839:1 24841:1 24844:2 24845:1 24859:1 24873:2 24881:1 24890:1 24907:1 24921:1 24931:1 24932:1 24939:1 24944:2 24955:1 24970:1 24976:1 24989:1 24999:1 25004:1 25005:10 25014:1 25021:1 25023:1 25027:1 25028:2 25049:2 25059:1 25062:1 25073:2 25090:1 25122:1 25125:1 25139:1 25147:4 25158:1 25172:1 25181:1 25190:1 25194:5 25211:1 25220:1 25252:2 25259:1 25264:1 25273:1 25275:1 25282:1 25285:3 25287:5 25288:1 25292:1 25296:1 25311:1 25319:1 25325:2 25327:3 25331:1 25335:1 25339:4 25347:2 25351:1 25384:2 25385:2 25398:4 25415:1 25419:2 25431:2 25447:1 25468:1 25471:1 25472:1 25487:1 25495:4 25503:3 25507:1 25510:1 25514:1 25526:1 25527:1 25534:1 25543:1 25549:1 25551:1 25554:1 25559:1 25560:1 25561:2 25570:1 25576:2 25577:1 25587:1 25597:1 25598:2 25614:2 25623:2 25627:4 25631:1 25634:1 25643:1 25652:1 25664:1 25673:1 25676:1 25681:1 25684:1 25688:1 25716:1 25718:1 25722:1 25733:1 25740:2 25778:3 25797:5 25816:1 25823:1 25832:1 25835:1 25836:1 25852:1 25860:1 25871:1 25872:1 25878:2 25880:1 25884:1 25886:1 25893:7 25894:1 25900:1 25918:3 25921:1 25922:1 25928:1 25952:2 25966:1 25980:6 25998:1 26004:1 26007:1 26011:1 26020:1 26021:1 26048:1 26058:4 26073:1 26076:1 26097:9 26099:1 26119:3 26123:1 26124:1 26140:1 26143:1 26150:3 26156:7 26159:1 26164:1 26167:1 26169:1 26172:5 26175:1 26176:1 26191:1 26207:1 26214:1 26226:1 26232:1 26257:1 26258:1 26297:1 26304:1 26315:1 26316:1 26318:4 26319:1 26320:3 26322:8 26324:3 26331:1 26337:1 26356:1 26371:1 26372:5 26376:1 26377:2 26403:2 26411:1 26413:1 26415:6 26416:2 26424:2 26429:4 26435:7 26436:2 26445:3 26458:1 26460:1 26463:1 26464:1 26469:1 26472:1 26489:2 26494:3 26513:6 26518:1 26524:2 26525:1 26534:1 26538:2 26548:1 26564:2 26574:1 26579:1 26589:4 26608:1 26627:5 26628:1 26652:4 26653:5 26659:1 26668:1 26681:2 26689:1 26712:1 26717:1 26728:3 26754:1 26761:1 26769:1 26781:1 26782:4 26808:1 26813:1 26835:1 26839:1 26842:2 26844:1 26848:1 26862:1 26865:1 26868:2 26871:3 26884:1 26891:1 26893:1 26898:1 26901:3 26912:1 26915:1 26920:1 26934:2 26935:1 26938:1 26949:2 26955:1 26956:1 26964:1 26977:6 26981:1 26982:1 26984:1 26985:1 26989:2 26994:1 26997:1 27000:1 27001:1 27003:1 27008:2 27010:3 27023:1 27029:1 27056:1 27065:2 27073:1 27078:2 27099:1 27102:1 27107:1 27113:2 27115:4 27138:23 27144:1 27178:1 27185:1 27188:1 27192:2 27212:1 27223:1 27244:1 27252:1 27257:1 27266:1 27280:5 27288:1 27292:1 27295:1 27308:1 27314:2 27332:1 27394:2 27407:3 27422:5 27424:2 27426:1 27427:1 27431:1 27438:2 27439:1 27440:4 27441:10 27444:2 27450:1 27470:1 27486:1 27490:2 27521:1 27531:1 27534:1 27540:4 27548:1 27552:1 27571:1 27580:4 27588:1 27600:1 27601:1 27607:1 27611:1 27621:2 27625:1 27626:1 27636:1 27663:4 27668:1 27673:2 27676:1 27705:2 27709:1 27718:1 27735:1 27740:3 27755:1 27775:1 27799:1 27809:1 27824:1 27834:1 27852:1 27854:2 27863:1 27875:1 27883:3 27889:1 27893:2 27910:2 27925:1 27939:1 27949:1 27950:1 27957:1 28004:2 28005:2 28017:4 28059:1 28076:1 28087:1 28095:2 28098:1 28099:6 28110:1 28113:1 28118:1 28121:10 28135:1 28137:1 28142:1 28154:2 28155:1 28207:1 28211:1 28223:32 28224:1 28227:3 28230:1 28238:1 28246:1 28258:6 28271:1 28281:2 28285:1 28288:1 28292:1 28308:1 28331:1 28338:3 28340:3 28342:4 28343:2 28349:1 28356:1 28385:2 28388:1 28391:1 28395:1 28398:1 28405:2 28410:3 28413:2 28419:2 28421:1 28429:1 28430:1 28431:1 28432:1 28434:1 28437:3 28443:1 28448:3 28450:1 28452:1 28472:2 28482:1 28496:1 28499:2 28514:1 28524:2 28525:1 28526:1 28530:1 28544:2 28548:1 28551:1 28568:1 28574:1 28581:3 28593:1 28600:1 28644:2 28645:1 28659:1 28663:3 28665:2 28669:2 28674:1 28675:1 28680:1 28681:1 28684:1 28696:4 28697:1 28726:1 28739:1 28747:1 28754:16 28759:1 28762:1 28771:1 28786:1 28795:2 28798:1 28836:1 28839:4 28848:4 28866:1 28870:1 28874:2 28878:1 28912:1 28928:1 28931:4 28939:1 28951:1 28962:2 28964:1 28966:2 28974:1 28975:2 29000:5 29004:5 29028:1 29030:1 29039:3 29041:1 29051:1 29055:1 29069:1 29073:1 29074:1 29095:2 29111:1 29112:1 29130:4 29135:1 29140:1 29143:1 29155:1 29167:3 29168:2 29179:1 29182:2 29183:29 29184:2 29185:1 29186:3 29189:4 29192:1 29193:1 29203:1 29214:1 29220:1 29221:13 29224:1 29234:1 29239:1 29240:1 29248:2 29276:1 29277:1 29281:2 29289:2 29290:1 29300:1 29301:3 29302:2 29310:1 29320:1 29325:1 29334:7 29342:5 29346:1 29348:2 29377:4 29381:1 29382:2 29388:1 29394:1 29409:2 29410:2 29426:1 29429:1 29430:1 29451:1 29454:1 29463:1 29486:1 29495:2 29500:1 29502:1 29536:2 29537:2 29542:1 29564:1 29573:1 29574:1 29575:1 29581:1 29583:1 29587:2 29589:1 29591:4 29595:3 29600:1 29615:1 29620:2 29624:1 29636:1 29655:11 29659:1 29661:3 29663:1 29666:4 29669:1 29718:1 29720:1 29737:1 29741:4 29745:9 29747:2 29749:1 29753:1 29754:1 29771:2 29776:2 29777:3 29790:1 29793:1 29795:1 29809:2 29812:2 29814:1 29821:1 29841:3 29848:2 29860:1 29891:3 29896:1 29898:1 29901:2 29904:1 29905:3 29907:1 29923:1 29928:2 29932:3 29935:2 29936:5 29942:1 29943:1 29950:5 29957:1 29969:2 30003:1 30011:1 30041:1 30056:1 30070:2 30080:1 30087:1 30104:3 30107:2 30121:1 30129:4 30146:1 30160:2 30164:1 30170:1 30177:1 30201:1 30206:1 30210:3 30216:1 30222:3 30232:1 30241:1 30246:1 30252:1 30269:1 30285:3 30288:1 30290:1 30292:1 30294:1 30313:1 30325:2 30341:1 30344:1 30345:1 30346:8 30348:1 30354:2 30364:2 30401:1 30402:3 30407:2 30423:1 30429:1 30435:5 30441:2 30446:1 30475:1 30507:2 30510:1 30512:1 30517:1 30518:1 30524:1 30525:1 30527:5 30533:1 30539:1 30571:1 30576:2 30586:1 30588:1 30592:1 30593:1 30595:2 30599:1 30609:2 30650:1 30658:1 30660:1 16 5:2 10:1 24:1 26:2 27:1 38:1 52:1 62:1 66:1 69:1 72:1 74:1 75:5 91:1 94:1 104:1 106:1 121:1 136:1 150:1 151:5 156:1 160:2 163:1 190:1 197:2 202:4 206:1 220:1 224:4 229:1 230:1 251:2 266:1 285:1 294:4 297:1 315:1 324:1 334:3 335:3 336:1 360:2 368:1 369:1 375:1 392:1 407:1 430:3 436:2 440:2 453:1 463:2 471:2 477:2 489:1 491:1 493:1 495:1 502:1 503:1 505:1 510:2 511:2 546:1 547:1 564:5 583:1 622:1 625:4 631:1 637:4 647:1 660:3 666:2 673:4 679:1 688:1 694:1 705:1 706:1 710:1 722:1 730:1 737:1 748:1 768:2 778:2 795:1 798:2 815:1 836:1 845:2 851:1 853:1 855:2 857:1 870:5 878:1 880:1 882:3 887:2 890:1 895:1 898:2 921:1 931:2 935:1 939:3 942:1 943:1 949:1 951:2 965:2 966:2 971:3 973:1 974:3 975:6 976:2 981:2 987:1 1002:1 1003:2 1026:1 1028:1 1029:6 1032:2 1038:1 1039:1 1056:1 1058:1 1065:2 1069:2 1080:1 1098:1 1107:2 1108:1 1131:1 1134:1 1137:1 1155:2 1161:1 1170:2 1171:1 1191:1 1196:2 1215:1 1216:1 1217:3 1220:1 1221:2 1224:1 1233:2 1236:1 1242:2 1253:1 1254:4 1267:2 1273:2 1277:2 1280:1 1290:3 1291:3 1319:1 1324:1 1325:2 1331:2 1333:6 1336:1 1346:2 1347:8 1348:2 1349:1 1351:1 1361:1 1365:1 1377:1 1379:1 1389:2 1393:1 1395:4 1396:1 1409:2 1421:2 1422:1 1446:2 1458:1 1472:1 1473:1 1476:2 1499:1 1500:3 1503:1 1511:1 1514:1 1516:1 1519:2 1528:1 1538:1 1539:1 1556:1 1566:7 1574:1 1579:1 1585:9 1590:1 1594:3 1601:1 1602:2 1603:1 1608:4 1609:1 1614:1 1618:1 1624:1 1625:1 1627:1 1628:6 1642:1 1651:1 1653:1 1657:10 1671:1 1677:3 1679:2 1680:2 1681:2 1684:1 1685:1 1690:2 1696:1 1715:1 1725:3 1729:1 1730:1 1734:6 1739:6 1742:2 1743:1 1756:1 1757:2 1759:2 1776:5 1780:3 1788:1 1789:1 1800:1 1802:1 1807:2 1812:1 1826:1 1840:1 1841:1 1855:2 1857:1 1858:1 1860:1 1863:1 1873:4 1881:1 1886:6 1900:1 1905:1 1909:2 1913:1 1914:1 1934:1 1938:1 1939:1 1947:1 1951:1 1954:1 1955:1 1964:1 1969:2 1970:2 1977:1 1982:2 1986:1 1989:1 1997:1 1999:1 2003:1 2005:1 2016:4 2021:1 2023:1 2026:2 2032:1 2035:1 2038:2 2039:5 2042:1 2046:1 2048:1 2052:1 2069:1 2070:5 2072:1 2090:1 2096:1 2101:1 2124:1 2125:1 2131:1 2132:1 2149:1 2153:1 2161:2 2162:2 2164:2 2167:2 2169:1 2170:3 2177:1 2181:1 2204:1 2227:1 2231:1 2232:1 2234:4 2235:1 2237:2 2238:1 2239:1 2252:1 2269:4 2293:1 2296:2 2307:1 2312:1 2337:1 2339:1 2346:1 2351:1 2353:3 2363:1 2366:1 2374:2 2380:1 2381:1 2404:2 2405:1 2406:1 2407:2 2408:6 2412:3 2413:1 2415:6 2416:2 2417:1 2420:6 2421:1 2422:5 2424:2 2427:1 2431:1 2434:7 2436:3 2437:8 2442:1 2443:1 2448:1 2450:2 2455:1 2461:2 2468:1 2469:1 2473:1 2486:1 2488:1 2495:1 2501:1 2508:1 2514:1 2517:1 2518:2 2519:2 2520:1 2525:1 2532:1 2533:3 2534:1 2538:1 2543:1 2550:1 2556:2 2560:1 2575:1 2578:1 2597:1 2599:1 2602:1 2611:1 2623:6 2633:1 2641:1 2645:1 2650:2 2657:4 2659:1 2681:1 2689:1 2693:1 2694:1 2705:1 2741:1 2742:2 2747:1 2753:1 2766:1 2797:2 2803:1 2812:5 2819:1 2825:5 2834:1 2841:2 2842:1 2849:1 2852:3 2854:12 2856:2 2872:1 2874:1 2886:2 2888:3 2894:2 2896:1 2900:1 2901:1 2902:1 2909:4 2912:1 2918:1 2936:2 2938:1 2943:2 2952:2 2962:2 2963:1 2965:5 2976:4 3019:5 3024:1 3027:1 3030:1 3031:1 3039:2 3043:1 3056:16 3066:1 3067:7 3081:1 3090:2 3099:1 3105:1 3118:32 3127:1 3128:2 3151:1 3152:1 3170:1 3181:1 3189:1 3196:2 3222:1 3224:2 3227:1 3229:1 3232:2 3296:3 3299:1 3311:3 3318:1 3342:1 3358:1 3378:1 3379:1 3389:2 3390:1 3391:1 3397:1 3403:2 3406:4 3417:2 3428:13 3442:1 3454:1 3461:1 3466:1 3469:2 3477:1 3485:1 3498:7 3516:1 3541:1 3543:1 3556:1 3565:1 3567:1 3574:1 3588:1 3590:2 3601:4 3609:1 3613:1 3628:1 3634:1 3640:4 3643:3 3649:1 3654:1 3661:1 3667:6 3707:1 3711:3 3713:1 3729:1 3730:1 3731:1 3746:3 3753:1 3764:1 3778:1 3793:1 3796:1 3801:1 3803:5 3804:2 3807:1 3810:3 3812:1 3813:2 3819:2 3829:2 3834:1 3839:1 3846:1 3867:1 3886:1 3898:1 3902:2 3903:4 3906:1 3913:1 3918:1 3929:1 3948:1 3950:1 3958:4 3959:48 3966:1 3981:1 3993:2 3994:1 3995:9 4000:1 4007:1 4009:1 4010:30 4011:2 4012:2 4015:7 4018:1 4027:2 4042:4 4057:3 4058:4 4061:3 4063:4 4076:2 4078:2 4079:1 4095:1 4116:2 4122:1 4123:3 4126:1 4130:1 4134:1 4159:1 4167:1 4171:1 4173:1 4176:2 4178:1 4182:1 4183:3 4196:3 4207:2 4209:1 4216:1 4219:1 4223:1 4232:1 4234:1 4235:3 4242:1 4256:1 4258:1 4265:1 4266:2 4267:1 4269:1 4270:1 4285:2 4290:2 4294:1 4297:1 4301:6 4318:6 4324:1 4330:1 4360:1 4368:1 4369:1 4373:1 4381:2 4389:1 4401:1 4416:1 4423:1 4436:1 4439:3 4447:1 4463:2 4474:1 4483:1 4485:1 4486:1 4498:2 4504:2 4505:2 4508:1 4509:1 4511:1 4539:1 4547:2 4555:1 4557:1 4563:2 4586:1 4599:1 4611:2 4623:1 4636:15 4645:1 4650:1 4651:1 4665:1 4697:3 4701:1 4706:5 4710:1 4715:1 4718:2 4749:7 4759:1 4767:1 4773:2 4776:1 4781:1 4787:1 4793:1 4796:1 4840:1 4854:1 4855:2 4880:1 4896:1 4900:2 4906:3 4909:1 4919:1 4920:1 4921:2 4927:1 4930:2 4938:1 4948:5 4959:1 4962:1 4966:4 4989:3 4990:1 4993:3 4994:1 5002:1 5014:1 5044:1 5058:1 5059:1 5062:1 5064:1 5076:1 5090:1 5092:2 5100:2 5153:2 5159:1 5161:1 5186:1 5189:1 5191:1 5198:1 5201:19 5202:3 5211:1 5219:1 5231:3 5241:1 5257:1 5260:2 5275:1 5281:1 5288:1 5308:4 5314:1 5320:6 5321:1 5323:5 5325:1 5340:1 5344:2 5345:4 5347:8 5348:1 5350:1 5351:2 5353:1 5354:3 5356:1 5361:1 5362:25 5363:1 5365:1 5370:2 5371:3 5376:2 5377:1 5385:1 5397:2 5401:3 5403:1 5425:2 5453:2 5467:2 5478:1 5483:3 5486:1 5488:1 5491:1 5495:2 5560:1 5572:2 5593:3 5594:3 5601:1 5603:5 5610:1 5632:1 5648:1 5652:1 5670:1 5675:2 5677:25 5684:1 5703:1 5708:1 5710:3 5712:1 5735:4 5745:1 5763:1 5769:1 5771:1 5774:1 5782:1 5786:1 5810:1 5811:1 5816:1 5819:2 5830:1 5836:1 5839:1 5848:1 5851:1 5856:2 5857:1 5863:1 5901:1 5902:1 5904:1 5908:1 5911:1 5920:1 5921:1 5922:2 5932:1 5937:1 5943:4 5951:1 5954:1 5956:1 5962:2 5965:1 5967:1 5973:2 5978:1 5987:2 5991:1 5993:2 6010:1 6018:1 6021:5 6038:2 6044:2 6060:1 6061:1 6063:1 6065:1 6068:1 6079:1 6086:1 6094:1 6095:1 6097:1 6101:1 6103:1 6114:2 6115:1 6118:1 6121:1 6136:1 6140:1 6141:1 6142:1 6171:1 6179:1 6199:3 6217:1 6218:1 6219:5 6221:1 6225:1 6227:1 6231:1 6239:2 6243:1 6257:1 6280:1 6302:1 6305:2 6330:1 6334:1 6343:1 6364:1 6368:5 6371:11 6380:1 6386:2 6404:1 6410:2 6415:1 6420:1 6421:1 6444:1 6463:1 6465:1 6471:1 6474:1 6480:1 6481:2 6488:1 6490:2 6491:2 6492:1 6498:1 6499:1 6528:6 6529:1 6536:1 6539:2 6540:2 6564:1 6568:1 6577:1 6588:1 6591:3 6596:1 6602:2 6618:6 6621:1 6624:1 6630:2 6635:1 6636:1 6639:1 6648:1 6654:1 6660:1 6673:1 6721:7 6724:2 6725:2 6726:1 6727:1 6728:2 6730:3 6731:2 6734:2 6735:3 6736:5 6743:4 6744:8 6745:1 6746:2 6747:5 6756:1 6764:3 6773:1 6776:1 6797:3 6802:1 6820:1 6833:2 6836:1 6869:1 6872:1 6875:1 6878:1 6886:1 6895:2 6901:1 6930:1 6932:1 6970:1 6977:1 6984:1 6988:1 6994:4 7000:2 7002:1 7019:1 7026:1 7027:5 7032:3 7035:1 7039:1 7046:1 7047:1 7060:2 7075:1 7080:1 7082:1 7083:3 7087:1 7088:2 7114:1 7115:1 7118:1 7126:1 7148:1 7155:1 7166:1 7171:1 7175:1 7192:3 7200:3 7201:2 7204:1 7216:3 7220:1 7222:2 7231:7 7232:1 7236:3 7242:2 7257:1 7263:1 7264:1 7267:3 7273:1 7299:1 7308:1 7322:1 7325:1 7328:1 7333:1 7335:2 7342:1 7363:1 7375:1 7380:1 7384:1 7407:2 7412:1 7432:3 7433:1 7439:1 7448:1 7455:1 7456:2 7468:1 7495:2 7522:2 7542:1 7546:2 7548:1 7554:1 7556:2 7573:1 7574:1 7577:6 7580:2 7584:1 7585:3 7587:1 7589:1 7600:1 7601:1 7603:1 7610:1 7612:1 7625:1 7635:1 7653:2 7705:1 7717:1 7727:1 7728:1 7732:1 7733:1 7769:2 7774:1 7779:1 7782:1 7788:5 7830:1 7840:4 7859:1 7874:5 7880:1 7906:1 7910:2 7915:2 7920:2 7926:1 7932:2 7954:2 7963:2 7968:1 7993:1 7997:2 7998:1 8001:1 8004:1 8005:3 8023:1 8027:1 8031:6 8054:1 8064:4 8065:6 8066:3 8084:1 8089:2 8090:1 8094:2 8097:1 8100:1 8105:1 8121:1 8122:2 8128:1 8130:1 8131:56 8133:1 8134:1 8140:2 8142:1 8151:16 8152:28 8159:1 8161:1 8164:1 8170:1 8173:1 8207:1 8208:7 8226:1 8238:1 8239:1 8246:1 8247:1 8254:1 8273:1 8279:2 8302:4 8307:1 8316:1 8317:1 8319:1 8321:1 8362:4 8365:8 8372:2 8389:1 8408:1 8413:1 8415:5 8422:1 8430:1 8432:1 8433:1 8450:1 8457:1 8467:1 8478:1 8492:1 8521:1 8523:4 8525:1 8531:2 8537:1 8540:9 8546:3 8550:1 8559:1 8567:1 8570:2 8585:2 8590:1 8597:2 8603:1 8610:1 8623:1 8624:1 8633:28 8637:1 8640:1 8651:1 8655:2 8664:2 8665:1 8669:1 8687:2 8718:1 8724:1 8733:2 8735:1 8742:1 8748:1 8753:2 8760:4 8764:1 8779:1 8789:1 8793:3 8798:6 8803:3 8816:2 8820:4 8830:1 8840:2 8842:1 8845:2 8850:1 8857:1 8858:2 8863:2 8873:1 8884:2 8887:2 8890:1 8892:1 8895:1 8898:1 8899:1 8915:2 8917:1 8928:1 8932:1 8938:1 8942:3 8953:1 8959:1 8966:1 8973:2 8979:2 8980:2 8983:1 8984:3 8985:2 8986:2 8987:5 8990:2 8991:1 8995:2 8998:2 9000:2 9004:3 9020:1 9027:3 9035:2 9039:3 9040:1 9041:1 9045:1 9046:1 9058:1 9061:1 9072:6 9075:2 9081:1 9086:2 9104:1 9109:1 9112:5 9135:1 9139:6 9146:1 9148:1 9149:1 9151:2 9158:1 9164:1 9169:1 9204:1 9205:2 9209:1 9215:3 9225:3 9227:1 9229:1 9230:1 9248:2 9268:7 9269:2 9273:6 9274:1 9276:1 9277:4 9280:3 9286:3 9301:3 9302:1 9304:5 9316:1 9318:1 9339:3 9345:1 9400:1 9407:1 9420:3 9439:2 9442:2 9450:1 9453:1 9463:1 9471:1 9478:1 9480:1 9495:1 9504:1 9506:1 9508:1 9510:1 9523:1 9539:1 9561:4 9584:1 9589:2 9592:1 9594:5 9605:2 9608:1 9618:9 9640:2 9646:3 9651:1 9658:1 9662:1 9663:3 9670:1 9677:1 9686:1 9695:3 9697:1 9715:1 9718:1 9719:2 9721:1 9732:2 9776:2 9781:1 9809:1 9818:1 9825:1 9840:1 9842:1 9867:1 9870:1 9874:1 9877:3 9882:2 9888:1 9889:2 9890:1 9894:1 9909:1 9928:2 9930:1 9937:2 9940:1 9942:1 9954:1 9972:1 9973:1 9977:3 9983:1 9993:1 9994:1 10009:1 10032:1 10037:25 10043:1 10060:2 10069:2 10078:7 10084:2 10085:1 10106:1 10109:1 10114:2 10117:1 10120:1 10121:1 10127:1 10128:1 10130:2 10146:2 10152:1 10156:1 10169:14 10182:1 10184:2 10185:1 10190:3 10202:1 10209:1 10211:1 10222:1 10223:5 10229:1 10235:1 10238:3 10239:1 10240:2 10241:1 10259:1 10269:1 10275:1 10281:1 10286:1 10301:3 10317:2 10321:3 10322:1 10336:1 10356:8 10362:3 10363:4 10364:2 10371:3 10376:1 10379:1 10380:1 10387:3 10393:3 10395:1 10396:1 10400:2 10406:2 10410:4 10411:1 10413:5 10415:1 10416:1 10423:1 10438:1 10440:1 10446:3 10450:4 10468:1 10470:2 10483:1 10493:2 10533:1 10547:1 10549:4 10552:1 10577:13 10580:1 10581:6 10596:1 10601:1 10602:1 10627:1 10636:1 10651:4 10691:1 10698:2 10707:1 10715:1 10718:1 10731:1 10733:1 10735:2 10739:1 10757:4 10762:1 10763:1 10777:1 10780:4 10784:1 10789:2 10791:1 10794:1 10809:1 10828:1 10830:1 10850:2 10868:1 10880:2 10892:6 10898:1 10903:1 10907:3 10917:2 10923:2 10935:2 10939:1 10955:1 10957:3 10962:7 10972:1 10973:1 10998:1 11009:2 11026:3 11028:2 11031:2 11040:1 11047:6 11048:2 11060:2 11061:4 11062:1 11063:8 11070:1 11081:1 11084:4 11087:1 11105:1 11106:3 11120:1 11126:1 11134:4 11145:2 11148:3 11156:1 11160:2 11165:1 11166:9 11183:2 11230:1 11231:1 11234:1 11237:1 11260:2 11261:2 11262:1 11268:1 11276:1 11292:1 11297:2 11305:1 11315:1 11324:1 11359:2 11364:1 11366:1 11371:1 11388:3 11389:1 11392:1 11399:2 11400:9 11417:4 11418:7 11430:4 11441:1 11443:1 11453:1 11458:2 11469:1 11477:4 11482:1 11499:1 11512:2 11518:1 11528:1 11529:2 11535:5 11546:2 11556:4 11564:1 11569:3 11582:1 11595:2 11597:1 11598:1 11617:1 11621:1 11622:1 11626:1 11628:1 11641:1 11653:1 11668:1 11673:1 11676:1 11677:1 11678:1 11680:1 11683:1 11684:6 11685:1 11703:1 11710:1 11718:1 11721:2 11738:2 11740:1 11745:1 11753:1 11754:1 11758:1 11779:2 11804:1 11808:1 11810:4 11816:1 11819:1 11820:2 11824:1 11829:1 11830:1 11831:1 11839:1 11843:1 11844:1 11846:1 11852:2 11853:1 11854:1 11877:1 11885:1 11887:5 11914:1 11918:1 11923:3 11926:7 11929:1 11931:3 11940:1 11942:3 11961:1 11985:1 11986:1 11989:1 11991:1 11994:2 12009:1 12011:1 12029:3 12045:1 12056:1 12063:1 12065:5 12066:2 12076:2 12077:6 12081:1 12093:2 12095:3 12098:2 12107:1 12118:1 12120:1 12130:3 12135:1 12146:4 12153:2 12155:11 12157:1 12170:2 12171:1 12176:1 12177:1 12181:1 12182:1 12189:1 12190:3 12192:1 12193:8 12194:1 12200:1 12202:8 12210:2 12218:2 12222:1 12228:12 12234:1 12253:2 12266:5 12270:2 12275:2 12280:1 12293:1 12314:1 12325:4 12333:1 12335:2 12337:3 12348:1 12372:1 12373:1 12375:1 12385:3 12406:1 12412:1 12415:3 12423:1 12440:1 12451:2 12459:1 12462:1 12470:2 12471:2 12473:1 12506:3 12508:1 12513:1 12539:1 12555:5 12594:3 12609:1 12616:1 12623:1 12625:1 12628:1 12629:1 12632:1 12637:1 12654:4 12655:4 12656:25 12660:8 12661:1 12671:1 12679:1 12681:2 12698:3 12705:1 12716:3 12719:1 12745:1 12749:1 12766:2 12784:1 12788:1 12815:3 12824:9 12825:2 12826:1 12841:1 12845:1 12846:4 12850:3 12871:2 12894:1 12902:4 12906:1 12919:1 12929:1 12936:1 12943:2 12947:1 12953:1 12961:1 12976:2 12979:2 12992:1 13011:1 13015:2 13019:1 13035:5 13054:2 13057:1 13063:2 13092:1 13095:3 13103:1 13106:1 13107:1 13110:1 13114:1 13117:1 13129:1 13146:2 13166:1 13167:1 13174:1 13175:1 13183:1 13194:1 13207:1 13227:6 13240:1 13241:1 13243:1 13248:1 13251:1 13276:2 13277:4 13304:2 13307:3 13335:1 13342:1 13371:1 13376:2 13389:1 13404:1 13424:1 13429:2 13433:1 13440:1 13441:1 13443:3 13461:1 13472:1 13486:2 13488:1 13494:1 13522:1 13524:2 13579:1 13580:1 13582:1 13597:5 13599:1 13609:1 13613:1 13614:1 13623:1 13624:3 13630:1 13646:1 13649:2 13652:1 13656:1 13661:1 13664:1 13673:2 13681:1 13684:3 13688:2 13700:2 13709:1 13711:1 13712:2 13714:2 13720:1 13735:1 13739:3 13740:1 13768:3 13775:1 13776:1 13780:2 13816:3 13821:3 13823:1 13832:1 13833:2 13835:1 13838:9 13839:2 13842:5 13843:1 13847:1 13851:2 13853:1 13856:1 13858:3 13873:4 13875:1 13878:2 13883:5 13898:1 13899:1 13915:8 13916:1 13923:1 13926:1 13929:1 13930:1 13931:3 13943:1 13944:2 13958:2 13973:1 13981:2 13985:1 13991:1 13993:3 13994:1 14009:1 14011:7 14016:1 14027:1 14028:1 14037:1 14040:1 14041:1 14050:2 14063:3 14078:1 14080:1 14085:2 14086:7 14097:1 14112:2 14113:4 14114:2 14115:1 14116:1 14129:4 14145:1 14152:3 14156:1 14157:2 14177:1 14188:1 14189:2 14206:1 14221:2 14223:1 14228:1 14233:1 14234:1 14237:2 14238:2 14239:2 14241:2 14245:1 14264:1 14267:1 14274:1 14275:1 14278:1 14279:1 14280:2 14291:1 14296:2 14298:1 14305:1 14307:1 14310:1 14311:2 14315:3 14318:1 14320:1 14334:1 14335:1 14366:9 14375:2 14377:1 14382:1 14422:2 14426:1 14445:2 14446:1 14447:2 14450:2 14468:2 14471:2 14472:1 14477:5 14503:1 14522:1 14529:1 14533:1 14544:2 14546:6 14552:3 14553:8 14563:2 14584:2 14592:3 14610:1 14622:2 14642:2 14644:1 14649:2 14650:1 14654:1 14664:1 14665:2 14670:2 14674:1 14688:1 14699:1 14704:1 14769:1 14771:2 14775:1 14777:1 14780:1 14785:2 14806:2 14833:1 14845:1 14862:1 14887:1 14891:3 14901:1 14921:1 14922:1 14929:2 14935:1 14952:1 14953:1 14958:1 14964:1 14971:1 14976:3 14986:2 14987:1 14997:1 15002:1 15008:5 15010:1 15011:1 15019:1 15020:1 15032:2 15033:1 15054:1 15060:1 15065:1 15068:1 15072:1 15088:1 15096:2 15102:1 15120:2 15127:1 15141:1 15157:1 15162:2 15166:2 15174:2 15181:2 15190:1 15196:5 15216:2 15233:1 15238:1 15247:2 15252:1 15276:1 15290:1 15319:4 15330:1 15337:1 15346:1 15364:1 15392:1 15402:1 15475:1 15476:1 15487:1 15493:1 15507:2 15534:1 15538:4 15547:4 15548:2 15552:1 15554:1 15556:1 15573:2 15577:1 15597:3 15605:1 15618:1 15624:1 15625:1 15641:1 15643:2 15646:1 15655:4 15672:1 15683:1 15688:1 15693:1 15695:2 15697:1 15701:1 15702:2 15716:1 15725:1 15734:2 15763:1 15771:1 15772:3 15775:1 15780:1 15781:1 15788:1 15805:1 15813:1 15814:1 15868:2 15875:3 15876:4 15880:1 15881:1 15907:5 15908:1 15911:1 15933:1 15951:7 15955:2 15961:1 15962:1 15968:1 15984:1 15999:1 16001:1 16008:1 16010:1 16018:1 16021:4 16028:3 16029:1 16032:2 16038:2 16054:1 16066:1 16073:2 16082:1 16088:1 16096:1 16111:1 16116:1 16121:1 16122:1 16126:1 16140:1 16141:1 16148:4 16153:2 16167:12 16172:8 16174:1 16181:1 16207:2 16218:1 16221:2 16222:2 16235:4 16255:1 16263:1 16268:1 16270:1 16277:1 16279:1 16297:1 16303:3 16307:1 16309:1 16317:8 16325:3 16327:1 16334:1 16336:1 16337:2 16342:1 16345:4 16347:1 16349:1 16352:1 16353:7 16356:3 16357:9 16358:1 16363:2 16367:2 16368:1 16369:1 16375:1 16378:1 16379:6 16386:4 16387:2 16427:1 16467:1 16480:2 16481:1 16484:2 16488:2 16494:1 16495:2 16498:1 16501:2 16507:6 16519:2 16530:2 16532:1 16543:2 16561:2 16564:3 16578:1 16593:2 16609:1 16610:1 16617:2 16623:1 16630:1 16638:3 16644:1 16646:9 16659:2 16660:2 16661:1 16673:1 16674:4 16677:1 16678:4 16692:1 16697:2 16706:25 16714:1 16734:1 16739:6 16740:1 16743:2 16761:2 16775:74 16794:3 16799:1 16823:1 16831:1 16861:1 16864:1 16866:1 16867:3 16884:1 16904:1 16907:1 16908:1 16909:1 16911:1 16912:1 16913:2 16915:1 16916:2 16919:3 16920:7 16921:1 16926:1 16927:4 16930:1 16931:2 16937:2 16944:1 16957:1 16961:1 16965:2 16971:1 16973:1 16980:1 16981:1 17010:1 17013:1 17040:2 17047:1 17055:5 17075:1 17090:2 17095:5 17116:1 17130:1 17135:2 17139:1 17144:1 17153:1 17173:1 17187:1 17192:1 17217:2 17222:1 17223:1 17232:1 17236:1 17248:2 17250:2 17253:1 17258:1 17259:1 17268:1 17289:1 17294:2 17295:1 17317:1 17322:1 17326:2 17336:4 17342:6 17343:1 17347:1 17358:1 17369:3 17372:3 17383:1 17392:3 17398:1 17399:1 17405:3 17414:1 17415:1 17422:1 17424:3 17426:1 17427:2 17429:1 17435:1 17438:1 17445:1 17450:1 17454:3 17459:1 17460:13 17470:1 17474:2 17500:2 17514:2 17520:1 17521:3 17549:1 17553:1 17559:1 17561:1 17564:2 17582:1 17583:3 17585:5 17587:1 17589:3 17593:1 17595:1 17596:2 17608:1 17613:1 17614:1 17625:1 17635:1 17638:1 17641:1 17645:2 17646:2 17675:2 17678:2 17685:2 17689:1 17711:1 17717:1 17718:3 17725:2 17726:1 17727:1 17742:1 17762:1 17771:1 17788:1 17792:2 17797:2 17800:1 17816:1 17819:1 17820:1 17821:2 17822:1 17831:1 17835:1 17843:2 17844:1 17849:3 17859:2 17867:1 17871:1 17875:1 17877:3 17881:1 17885:1 17888:1 17889:1 17896:1 17897:1 17906:3 17912:1 17932:2 17933:1 17935:1 17951:1 17952:1 17957:1 17972:2 17997:1 17998:3 18006:2 18011:1 18012:1 18034:4 18083:1 18087:1 18093:1 18099:1 18110:1 18112:1 18115:1 18129:7 18131:3 18132:1 18134:2 18136:1 18137:1 18144:1 18147:2 18148:4 18153:3 18154:1 18166:1 18169:2 18171:3 18174:2 18175:1 18182:1 18187:1 18188:1 18197:2 18206:1 18214:1 18221:1 18222:1 18223:1 18226:1 18230:1 18235:1 18238:1 18241:1 18248:2 18249:4 18277:1 18280:1 18282:2 18285:1 18286:1 18310:1 18313:1 18329:2 18330:3 18338:2 18341:1 18342:1 18355:1 18360:1 18366:3 18377:1 18384:1 18410:4 18412:1 18414:1 18415:1 18417:2 18421:2 18423:2 18424:1 18441:1 18442:15 18446:2 18460:1 18461:1 18474:1 18478:2 18489:1 18506:1 18517:2 18523:1 18524:1 18543:1 18544:2 18546:4 18559:2 18562:2 18565:1 18576:1 18583:1 18584:1 18589:1 18598:1 18602:1 18625:1 18629:4 18633:4 18634:2 18636:1 18646:2 18676:2 18678:1 18707:1 18709:1 18717:1 18731:1 18748:3 18749:2 18757:1 18781:1 18786:1 18797:1 18805:1 18807:1 18815:1 18816:2 18819:3 18831:2 18838:1 18855:1 18856:1 18860:2 18866:1 18872:1 18873:4 18879:1 18896:1 18907:1 18922:4 18928:1 18932:2 18944:1 18954:1 18956:4 18966:1 18977:6 18980:1 18984:1 18987:3 18990:1 19006:3 19007:1 19016:1 19018:2 19022:1 19078:1 19079:1 19098:2 19102:2 19113:1 19114:23 19118:1 19122:1 19125:3 19132:1 19138:1 19145:1 19160:1 19170:1 19171:1 19182:1 19183:1 19190:3 19191:2 19193:1 19194:1 19195:2 19210:1 19217:1 19219:1 19225:1 19229:2 19236:1 19241:1 19244:7 19250:2 19251:1 19265:4 19269:2 19272:1 19276:2 19277:1 19285:2 19315:1 19323:4252 19328:1 19330:1 19342:5 19343:1 19348:2 19376:1 19385:1 19395:2 19405:1 19410:1 19412:1 19413:3 19414:2 19421:2 19449:1 19451:1 19452:3 19473:2 19482:2 19505:1 19507:7 19509:2 19530:3 19536:1 19539:3 19541:1 19543:1 19556:1 19571:1 19584:1 19586:1 19596:1 19609:1 19632:1 19636:5 19638:1 19642:1 19649:2 19654:1 19658:1 19664:1 19670:1 19689:1 19696:3 19702:1 19708:1 19721:2 19733:1 19743:1 19751:1 19756:1 19758:1 19768:1 19800:1 19801:1 19804:1 19815:1 19817:2 19820:1 19822:1 19831:5 19845:2 19856:1 19857:1 19869:1 19875:2 19877:1 19882:1 19918:2 19919:5 19933:6 19959:1 19976:1 19984:1 20002:1 20004:1 20024:1 20030:1 20032:2 20043:1 20048:2 20050:1 20057:2 20074:4 20086:2 20090:1 20091:4 20095:1 20105:1 20107:5 20121:20 20122:1 20137:1 20139:1 20141:1 20142:1 20144:3 20146:1 20147:27 20159:2 20173:1 20177:1 20178:6 20180:1 20181:1 20197:2 20212:1 20216:7 20236:1 20243:3 20248:1 20249:1 20250:6 20252:2 20255:1 20260:1 20262:1 20277:2 20278:1 20279:1 20283:1 20287:1 20313:2 20319:3 20326:1 20339:1 20349:3 20363:1 20382:1 20387:1 20389:1 20392:1 20398:2 20404:1 20447:1 20451:1 20458:1 20477:1 20486:1 20492:1 20493:1 20502:1 20523:1 20524:13 20527:1 20565:1 20573:2 20574:2 20596:1 20605:1 20607:1 20613:2 20619:1 20623:8 20644:1 20648:1 20656:1 20669:2 20682:1 20688:1 20691:1 20709:1 20714:1 20719:1 20720:1 20722:2 20724:2 20725:1 20731:3 20749:1 20774:1 20779:4 20782:1 20787:1 20789:1 20796:1 20811:3 20814:1 20821:1 20839:3 20841:1 20849:1 20853:1 20869:2 20871:1 20877:5 20894:2 20897:1 20903:2 20907:1 20908:2 20918:2 20920:1 20922:1 20923:8 20927:1 20935:1 20942:1 20965:1 20970:1 20972:1 20976:1 20978:1 20987:1 20996:15 21002:2 21014:2 21017:3 21030:1 21033:1 21049:1 21050:15 21066:1 21080:1 21088:1 21099:1 21103:1 21105:1 21107:1 21131:1 21144:2 21147:1 21170:1 21175:1 21180:1 21182:1 21196:2 21213:1 21214:5 21216:2 21225:1 21231:1 21258:2 21293:1 21301:6 21312:1 21313:1 21316:4 21328:1 21330:1 21331:1 21339:1 21343:1 21344:1 21355:1 21389:1 21392:2 21413:3 21448:1 21451:3 21466:1 21468:1 21474:1 21487:1 21489:1 21495:1 21498:1 21500:3 21511:1 21528:1 21529:1 21532:2 21533:1 21534:1 21554:1 21556:1 21560:1 21575:1 21596:4 21625:2 21630:1 21631:1 21633:2 21634:1 21638:1 21643:14 21652:2 21655:2 21656:1 21660:3 21661:1 21663:5 21664:1 21674:3 21678:1 21684:5 21690:1 21708:6 21711:1 21716:2 21722:1 21723:1 21726:1 21741:1 21755:2 21756:1 21757:1 21769:2 21773:1 21789:2 21797:1 21798:1 21814:1 21822:10 21827:1 21829:1 21830:2 21835:1 21837:1 21843:1 21847:1 21852:2 21863:1 21874:1 21884:1 21891:1 21896:1 21904:1 21909:1 21911:1 21915:1 21916:1 21924:1 21932:3 21936:1 21937:1 21939:1 21943:1 21949:1 21962:4 21977:1 21980:1 21982:1 21986:2 21987:1 21990:1 21992:1 21995:1 21996:1 22003:1 22005:1 22041:1 22048:3 22050:1 22105:1 22106:1 22110:1 22115:2 22136:1 22142:2 22147:1 22151:2 22154:4 22157:2 22159:4 22170:6 22179:1 22181:1 22183:1 22223:1 22228:1 22232:2 22233:1 22236:2 22241:2 22251:1 22258:1 22267:1 22268:1 22270:1 22272:2 22273:2 22281:1 22285:1 22286:1 22294:1 22298:2 22299:1 22300:9 22305:3 22309:1 22319:1 22320:1 22325:1 22332:1 22342:1 22349:1 22354:1 22377:1 22382:2 22383:1 22384:2 22385:1 22389:3 22396:2 22405:1 22406:1 22409:1 22422:1 22425:5 22427:20 22430:1 22443:1 22447:1 22456:2 22457:3 22461:1 22466:1 22469:1 22479:1 22481:4 22501:5 22515:1 22530:1 22534:3 22536:1 22538:3 22540:1 22542:1 22549:5 22563:1 22569:1 22579:1 22600:1 22603:1 22604:1 22606:1 22607:4 22614:2 22618:3 22621:1 22644:1 22671:1 22675:1 22684:1 22693:4 22702:2 22703:1 22705:13 22709:3 22712:2 22720:3 22721:1 22723:1 22734:4 22735:2 22736:3 22739:1 22740:1 22744:1 22746:2 22748:2 22750:1 22756:1 22757:2 22758:1 22764:1 22769:2 22772:2 22777:1 22780:1 22795:2 22800:1 22822:1 22833:5 22834:1 22856:1 22860:1 22866:1 22868:2 22874:2 22877:1 22881:1 22895:1 22901:1 22906:1 22909:6 22917:1 22926:1 22929:1 22937:1 22969:1 22985:25 22987:2 22990:1 23001:1 23008:1 23027:1 23032:2 23052:1 23065:1 23073:1 23076:6 23078:1 23093:1 23096:2 23099:1 23102:1 23106:1 23112:2 23125:2 23133:1 23136:9 23141:1 23143:1 23153:3 23160:4 23166:1 23193:1 23199:1 23202:2 23209:1 23212:1 23215:2 23221:2 23225:1 23236:1 23239:1 23242:3 23244:2 23246:2 23256:1 23269:2 23270:1 23271:1 23284:13 23302:4 23311:2 23317:4 23325:1 23328:1 23336:1 23360:1 23372:1 23376:2 23390:1 23391:1 23413:1 23445:1 23454:3 23459:1 23462:1 23473:1 23481:1 23493:2 23496:4 23514:1 23517:1 23534:1 23535:1 23545:1 23549:1 23554:1 23570:1 23573:1 23574:2 23575:2 23579:15 23581:1 23583:2 23600:1 23609:2 23611:2 23624:1 23629:1 23632:1 23639:1 23648:2 23649:1 23652:1 23655:1 23662:4 23665:1 23666:2 23669:1 23673:1 23687:1 23695:1 23699:4 23710:1 23716:1 23717:5 23721:1 23738:1 23749:1 23750:1 23752:1 23765:2 23766:1 23767:1 23788:2 23794:1 23801:1 23805:1 23807:1 23813:1 23819:2 23826:1 23838:1 23844:1 23851:1 23859:1 23864:1 23875:1 23878:2 23879:1 23891:2 23903:1 23913:1 23948:1 23955:1 23968:1 23969:1 23971:7 23978:1 23987:1 24002:1 24003:1 24012:2 24015:1 24023:1 24034:1 24049:1 24060:1 24083:1 24087:2 24090:3 24092:1 24103:1 24108:2 24113:1 24115:1 24119:2 24121:1 24124:4 24128:1 24141:1 24151:1 24164:1 24168:2 24177:1 24183:1 24187:4 24188:5 24195:2 24196:1 24207:6 24216:1 24219:1 24222:1 24231:2 24232:1 24235:1 24237:5 24241:3 24247:1 24252:1 24273:2 24274:1 24280:1 24281:3 24283:1 24289:1 24293:1 24296:1 24315:1 24329:6 24336:1 24340:32 24344:1 24358:1 24391:1 24402:1 24408:1 24419:1 24432:2 24438:1 24440:2 24441:1 24444:1 24449:1 24464:1 24478:1 24490:1 24494:1 24504:3 24506:1 24508:1 24509:2 24533:1 24534:1 24538:1 24545:1 24548:2 24568:1 24571:1 24591:1 24602:2 24617:1 24625:1 24628:1 24653:1 24656:2 24668:2 24671:1 24685:1 24688:1 24702:6 24709:2 24714:1 24717:1 24745:1 24755:1 24756:1 24761:1 24775:1 24777:1 24797:3 24814:3 24826:1 24827:2 24833:1 24838:2 24839:1 24841:1 24844:2 24845:1 24859:1 24873:2 24881:1 24890:1 24907:1 24921:1 24931:1 24932:1 24939:1 24944:2 24955:1 24970:1 24976:1 24989:1 24999:1 25004:1 25005:10 25006:1 25014:1 25021:1 25023:1 25027:1 25028:2 25049:2 25059:1 25062:1 25073:2 25090:1 25122:1 25125:1 25139:1 25147:4 25158:1 25172:1 25181:1 25190:1 25194:5 25211:1 25220:1 25252:2 25259:1 25264:1 25273:1 25275:1 25282:1 25285:3 25287:5 25288:1 25292:1 25296:1 25311:1 25319:1 25325:2 25327:3 25331:1 25335:1 25339:5 25347:2 25351:1 25384:2 25385:2 25398:4 25415:1 25419:2 25431:2 25447:1 25462:1 25468:1 25471:1 25472:1 25487:1 25495:4 25503:3 25507:1 25510:1 25514:1 25526:1 25527:1 25534:1 25543:1 25549:1 25551:1 25554:1 25559:1 25560:1 25561:2 25570:1 25576:2 25577:1 25587:1 25597:1 25598:2 25614:2 25623:2 25627:4 25631:1 25634:1 25643:1 25652:1 25664:1 25673:1 25676:1 25681:1 25684:1 25688:1 25716:1 25718:1 25722:1 25733:1 25740:2 25778:3 25797:5 25816:1 25823:1 25832:1 25835:1 25836:1 25852:1 25860:1 25871:1 25872:1 25878:2 25880:1 25884:1 25886:1 25893:7 25894:1 25900:1 25918:3 25921:2 25922:1 25928:1 25952:2 25966:1 25980:7 25998:1 26004:1 26007:1 26011:1 26020:1 26021:1 26031:1 26048:1 26058:4 26073:1 26076:1 26097:11 26099:1 26119:3 26123:1 26124:1 26140:1 26143:1 26150:3 26156:7 26159:1 26164:1 26167:1 26169:1 26172:6 26175:1 26176:1 26191:1 26207:1 26214:1 26226:1 26232:2 26257:1 26258:1 26297:1 26304:1 26315:1 26316:1 26318:4 26319:1 26320:3 26322:8 26324:3 26331:1 26337:1 26356:1 26371:1 26372:5 26376:1 26377:2 26403:2 26411:1 26413:1 26415:6 26416:2 26424:2 26429:4 26435:7 26436:2 26445:3 26458:1 26460:1 26463:1 26464:1 26469:1 26472:1 26489:2 26494:3 26513:6 26518:1 26524:2 26525:1 26534:1 26538:2 26548:1 26564:2 26574:1 26579:1 26589:4 26608:1 26612:1 26627:5 26628:1 26652:4 26653:6 26659:1 26668:1 26681:2 26689:1 26712:1 26717:1 26728:3 26754:1 26761:1 26769:1 26781:1 26782:4 26808:1 26813:1 26835:1 26839:1 26842:2 26844:1 26848:1 26862:1 26865:1 26868:2 26871:3 26884:1 26891:1 26893:1 26898:1 26901:3 26912:1 26915:1 26920:1 26934:2 26935:1 26937:1 26938:1 26949:2 26955:1 26956:1 26964:1 26977:6 26981:1 26982:1 26984:1 26985:1 26989:2 26994:1 26997:1 27000:1 27001:1 27003:1 27008:2 27010:3 27023:1 27029:1 27056:1 27065:2 27073:1 27078:2 27099:1 27102:1 27107:1 27113:2 27115:4 27138:24 27144:1 27178:1 27185:1 27188:1 27192:2 27212:1 27223:1 27244:1 27252:1 27257:1 27266:1 27280:5 27288:1 27292:1 27295:1 27308:1 27314:2 27332:1 27394:2 27407:3 27422:5 27424:2 27426:1 27427:1 27431:1 27438:2 27439:1 27440:4 27441:11 27444:2 27450:1 27470:1 27486:1 27490:2 27521:1 27531:1 27534:1 27540:4 27548:1 27552:1 27571:1 27580:4 27588:3 27600:1 27601:1 27607:1 27611:1 27621:2 27625:1 27626:1 27636:1 27663:4 27668:1 27673:2 27676:1 27705:2 27709:1 27718:1 27735:1 27740:3 27755:1 27775:1 27799:1 27809:1 27824:1 27834:1 27852:1 27854:2 27863:1 27875:1 27883:3 27889:1 27893:2 27910:2 27925:1 27939:1 27949:1 27950:1 27957:1 28004:2 28005:2 28017:4 28059:1 28076:1 28087:1 28095:2 28098:1 28099:7 28110:1 28113:1 28118:1 28121:12 28128:1 28135:1 28137:1 28142:1 28154:2 28155:1 28207:1 28211:1 28223:32 28224:1 28227:3 28230:1 28238:1 28246:1 28258:6 28271:1 28281:2 28285:1 28288:1 28292:1 28308:1 28331:1 28338:3 28340:3 28342:4 28343:2 28349:1 28356:1 28360:1 28385:2 28388:1 28391:1 28395:1 28398:1 28405:2 28410:3 28413:2 28419:2 28421:1 28429:1 28430:1 28431:1 28432:1 28434:1 28437:3 28443:1 28448:3 28450:1 28452:1 28472:2 28482:1 28496:1 28499:2 28514:1 28524:2 28525:1 28526:1 28530:1 28544:2 28548:1 28551:1 28568:1 28574:1 28581:3 28593:1 28600:1 28644:2 28645:1 28659:1 28663:3 28665:2 28669:2 28674:1 28675:1 28680:1 28681:1 28684:1 28696:4 28697:1 28726:1 28739:1 28747:1 28754:16 28759:1 28762:1 28771:1 28786:1 28795:2 28798:1 28836:1 28839:4 28848:4 28866:1 28870:1 28874:2 28878:1 28912:1 28928:1 28931:4 28939:1 28951:1 28962:2 28964:1 28966:2 28974:1 28975:2 29000:5 29004:5 29028:1 29030:1 29039:3 29041:1 29051:1 29055:1 29069:1 29073:1 29074:1 29095:2 29111:1 29112:1 29130:4 29135:1 29140:1 29143:1 29155:1 29167:3 29168:2 29179:1 29182:2 29183:31 29184:2 29185:1 29186:3 29189:4 29192:1 29193:1 29203:1 29214:1 29220:1 29221:13 29224:1 29234:1 29239:1 29240:1 29248:2 29276:1 29277:1 29281:2 29289:2 29290:1 29300:1 29301:3 29302:2 29310:1 29320:1 29325:1 29334:7 29342:5 29346:1 29348:2 29377:4 29381:1 29382:2 29388:1 29394:1 29409:2 29410:2 29426:1 29429:1 29430:1 29451:1 29454:1 29463:1 29486:1 29495:2 29500:1 29502:1 29536:2 29537:2 29542:1 29550:1 29564:1 29573:1 29574:1 29575:1 29581:1 29583:1 29587:2 29589:1 29591:4 29595:3 29600:1 29615:1 29620:2 29624:1 29636:1 29655:12 29659:1 29660:1 29661:3 29663:1 29666:4 29669:1 29718:1 29720:1 29737:1 29741:4 29745:10 29747:2 29749:1 29753:1 29754:1 29771:2 29776:2 29777:3 29790:1 29793:1 29795:1 29809:2 29812:2 29814:1 29821:1 29841:3 29848:2 29860:1 29891:3 29896:1 29898:1 29901:2 29904:1 29905:3 29907:1 29923:1 29928:2 29932:3 29933:1 29935:2 29936:5 29942:1 29943:1 29946:1 29950:5 29957:1 29969:2 30003:1 30011:1 30041:1 30056:1 30070:2 30080:1 30087:1 30104:3 30107:2 30121:1 30129:4 30146:1 30160:2 30164:1 30170:1 30177:1 30201:1 30206:1 30210:3 30216:1 30222:3 30232:1 30241:1 30246:1 30252:1 30269:1 30285:3 30288:1 30290:1 30292:1 30294:1 30313:1 30325:2 30341:1 30344:1 30345:1 30346:8 30348:1 30354:2 30364:2 30401:1 30402:3 30407:2 30423:1 30429:1 30435:5 30441:2 30442:1 30446:1 30475:1 30507:2 30510:1 30512:1 30515:1 30517:1 30518:1 30524:1 30525:1 30527:6 30533:1 30539:1 30571:1 30576:2 30586:1 30588:1 30592:1 30593:1 30595:2 30599:1 30609:2 30650:1 30658:1 30660:1
f7d66c36165d987c5bf4f92b0866b8d3a81476d9
6d976a524de332465dfaf499c4cdf8f09499f4fe
/sci2blif/additional_blocks.sce
b9a8d2b5615905f3025284cebc370263398184a2
[]
no_license
skim819/rasp30
78b035fa0f1d5e94e434d26324d3238695b1908c
1efee4f95cda788c2a379cc95a22cee31683d429
refs/heads/master
2020-04-07T07:42:52.848775
2016-01-27T21:22:55
2016-01-27T21:22:55
50,114,407
0
0
null
2016-01-21T14:51:37
2016-01-21T14:51:36
null
UTF-8
Scilab
false
false
181
sce
additional_blocks.sce
style.displayedLabel="ladder_filter" pal5=xcosPalAddBlock(pal5,"ladder_filter",[],style); style.displayedLabel="common_drain" pal5=xcosPalAddBlock(pal5,"common_drain",[],style);
decf1bd54609a117d8406043ef91be66110a583c
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/blog/bow/bow.4_7.tst
c0358c15a553c517b5b359496c69a146c5e87dc9
[]
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
5,616
tst
bow.4_7.tst
4 1:0.1 16:0.011363636363636364 139:0.5 142:1.0 143:1.0 146:1.0 168:1.0 4 16:0.011363636363636364 27:2.0 28:1.0 33:0.16666666666666666 41:0.5 77:1.0 104:1.0 112:0.5 162:1.0 589:1.0 4 1:0.1 6:0.16666666666666666 15:0.2 16:0.011363636363636364 18:0.5 19:1.0 30:1.0 33:0.16666666666666666 48:1.0 139:0.5 379:1.0 586:1.0 4 1:0.1 18:0.5 41:0.5 63:0.2 98:1.0 171:1.0 184:1.0 692:1.0 4 1:0.2 18:0.5 23:1.0 30:1.0 33:0.16666666666666666 44:0.5 63:0.2 122:1.0 137:0.5 154:1.0 184:1.0 241:0.3333333333333333 356:1.0 375:1.0 796:1.0 818:1.0 4 12:0.3333333333333333 16:0.011363636363636364 18:1.5 39:1.0 56:0.2 77:1.0 112:0.5 135:1.0 139:0.5 145:0.5 162:1.0 186:1.0 189:0.5 227:1.0 435:1.0 462:1.0 584:1.0 751:1.0 1080:1.0 1359:1.0 4 1:0.1 15:0.2 16:0.03409090909090909 18:1.0 19:1.0 20:1.0 27:1.0 30:3.0 33:0.16666666666666666 44:0.5 56:0.2 65:1.0 70:0.25 82:1.0 94:1.0 105:0.5 148:0.5 150:1.0 151:1.0 152:1.0 161:1.0 181:0.5 358:1.0 369:2.0 751:1.0 805:1.0 818:1.0 1099:1.0 4 1:0.1 6:0.16666666666666666 15:0.2 16:0.03409090909090909 18:0.5 19:1.0 33:0.16666666666666666 35:0.3333333333333333 48:1.0 56:0.2 92:0.07692307692307693 94:1.0 112:0.5 119:1.0 154:1.0 235:1.0 268:0.5 310:0.5 332:0.3333333333333333 493:1.0 518:1.0 586:1.0 637:1.0 799:1.0 1117:1.0 1633:1.0 4 6:0.16666666666666666 204:0.3333333333333333 768:1.0 4 15:0.4 46:0.047619047619047616 78:0.5 134:1.0 136:1.0 186:1.0 310:0.5 452:1.0 546:1.0 686:1.0 1548:1.0 4 4:1.0 6:0.16666666666666666 15:0.8 16:0.022727272727272728 18:0.5 19:1.0 30:1.0 35:0.16666666666666666 44:0.5 46:0.09523809523809523 48:1.0 115:1.0 126:0.5 130:0.3333333333333333 134:1.0 139:0.5 186:1.0 239:1.0 240:1.0 355:1.0 358:1.0 447:1.0 533:1.0 546:1.0 663:1.0 1145:1.0 4 184:1.0 4 6:0.16666666666666666 16:0.011363636363636364 323:1.0 4 12:0.3333333333333333 15:0.2 16:0.03409090909090909 18:0.5 23:1.0 28:1.0 30:2.0 33:0.16666666666666666 35:0.16666666666666666 41:1.0 42:1.0 43:0.4 45:2.0 46:0.047619047619047616 54:1.0 93:1.0 94:1.0 108:1.0 175:1.0 195:1.0 214:0.5 283:0.5 310:0.5 406:0.5 452:1.0 469:1.0 484:1.0 744:1.0 777:1.0 797:1.0 4 248:1.0 4 16:0.03409090909090909 104:1.0 105:0.5 160:1.0 162:1.0 238:1.0 504:1.0 864:1.0 886:0.5 4 12:0.3333333333333333 15:0.2 16:0.011363636363636364 18:1.0 19:1.0 27:1.0 33:0.16666666666666666 35:0.3333333333333333 43:0.4 106:1.0 112:0.5 145:0.5 161:1.0 186:2.0 189:0.5 199:2.0 238:1.0 394:0.5 504:1.0 568:1.0 886:0.5 1002:1.0 4 12:0.6666666666666666 18:0.5 46:0.047619047619047616 53:1.0 54:1.0 83:0.3333333333333333 94:1.0 105:0.5 122:1.0 160:1.0 174:1.0 212:0.5 347:1.0 372:0.25 375:1.0 770:1.0 793:1.0 4 6:0.3333333333333333 12:0.3333333333333333 16:0.022727272727272728 18:0.5 30:1.0 33:0.3333333333333333 39:1.0 56:0.2 78:0.5 92:0.07692307692307693 94:1.0 177:1.0 181:0.5 252:1.0 406:0.5 1092:1.0 1195:0.5 1450:1.0 4 6:0.16666666666666666 15:0.2 16:0.011363636363636364 18:1.0 30:1.0 33:0.16666666666666666 67:0.5 82:1.0 112:0.5 186:1.0 199:1.0 468:0.5 504:1.0 584:1.0 878:1.0 900:1.0 4 6:0.16666666666666666 30:1.0 105:0.5 112:0.5 186:1.0 241:0.6666666666666666 713:1.0 4 1:0.1 11:1.0 12:0.3333333333333333 16:0.03409090909090909 25:1.0 33:0.16666666666666666 35:0.16666666666666666 92:0.07692307692307693 125:1.0 152:1.0 181:1.0 238:1.0 546:1.0 774:2.0 4 6:0.16666666666666666 16:0.011363636363636364 92:0.07692307692307693 143:1.0 543:1.0 818:1.0 4 33:0.16666666666666666 823:1.0 4 1:0.2 16:0.03409090909090909 18:0.5 19:1.0 27:1.0 28:1.0 30:1.0 33:0.16666666666666666 44:0.5 63:0.2 160:1.0 181:0.5 310:0.5 568:1.0 1195:0.5 1345:1.0 4 1:0.2 16:0.011363636363636364 20:1.0 42:2.0 77:1.0 118:1.0 148:0.5 161:1.0 310:0.5 452:1.0 1195:0.5 4 18:0.5 33:0.16666666666666666 35:0.16666666666666666 39:1.0 68:1.0 79:1.0 80:1.0 90:0.3333333333333333 118:1.0 133:0.5 155:0.3333333333333333 204:0.3333333333333333 225:2.0 291:1.0 546:1.0 586:1.0 704:1.0 1092:1.0 1182:1.0 1195:0.5 1450:1.0 4 2:1.0 16:0.011363636363636364 35:0.16666666666666666 56:0.2 125:1.0 181:1.0 586:1.0 809:1.0 821:1.0 4 6:0.3333333333333333 16:0.022727272727272728 18:2.0 30:1.0 33:0.3333333333333333 41:0.5 52:0.2 54:1.0 68:1.0 69:0.5 72:1.0 80:1.0 104:1.0 139:0.5 147:1.0 186:1.0 435:1.0 542:1.0 568:1.0 584:1.0 744:1.0 759:1.0 839:1.0 889:1.0 1055:1.0 4 6:0.16666666666666666 16:0.022727272727272728 30:1.0 33:0.16666666666666666 82:1.0 92:0.07692307692307693 137:0.5 465:0.5 568:1.0 4 3:1.0 16:0.011363636363636364 30:1.0 33:0.16666666666666666 52:0.2 92:0.07692307692307693 96:1.0 119:1.0 143:1.0 147:1.0 358:1.0 437:0.5 543:1.0 646:1.0 4 1:0.1 16:0.022727272727272728 18:2.0 27:1.0 28:1.0 33:0.16666666666666666 70:0.5 92:0.07692307692307693 122:1.0 161:2.0 251:1.0 774:1.0 815:1.0 1172:1.0 1484:1.0 4 1:0.1 12:0.3333333333333333 16:0.022727272727272728 18:0.5 19:1.0 30:1.0 44:0.5 135:1.0 175:1.0 191:1.0 268:0.5 612:1.0 646:1.0 1155:1.0 1589:1.0 4 6:0.16666666666666666 12:0.3333333333333333 15:0.4 16:0.011363636363636364 30:2.0 33:0.16666666666666666 35:0.16666666666666666 43:0.2 69:0.5 70:0.25 137:0.5 148:0.5 156:1.0 186:1.0 191:1.0 275:1.0 310:0.5 347:1.0 366:1.0 568:1.0 751:1.0 966:1.0 1052:1.0 1233:1.0 1626:1.0 4 16:0.011363636363636364 152:1.0 665:1.0 1016:1.0 4 1:0.1 6:0.16666666666666666 16:0.03409090909090909 45:1.0 48:1.0 61:0.3333333333333333 134:1.0 135:1.0 139:0.5 184:1.0 192:1.0 194:1.0 4 16:0.011363636363636364 30:1.0 4 1:0.2 6:0.16666666666666666 16:0.022727272727272728 65:2.0 98:1.0 145:1.0 189:0.5 243:1.0 370:1.0 373:0.5 609:1.0 619:0.5 4 16:0.011363636363636364 18:0.5 19:1.0 20:1.0 30:1.0 52:0.2 105:0.5 4 16:0.011363636363636364 18:0.5 30:1.0 46:0.14285714285714285 72:1.0 92:0.07692307692307693 136:1.0 204:0.3333333333333333 756:1.0
eddcb25ba69be4ef138f03640769959e30f63926
449d555969bfd7befe906877abab098c6e63a0e8
/1850/CH2/EX2.11/exa_2_11.sce
60b4d70fef1ab7b2c7e6af7e804702c185995262
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
187
sce
exa_2_11.sce
// Exa 2.11 clc; clear; close; // Given data format('v',9) dV_out=20;// in volt dt= 4;// in micro seconds SR= dV_out/dt;// in V/micro sec disp(SR,"Slew rate in V/micro sec");
d75692bd9ffc64fb162e9c0afd9881153a5eb3c5
449d555969bfd7befe906877abab098c6e63a0e8
/683/CH3/EX3.18/MS_18.sce
38c07e734124206914e3bf6c661c57d2ec115fa3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
252
sce
MS_18.sce
// sum 3-18 clc; clear; //Tmax=F/(I*b)*[B*t(d/2+t/2)+(b*d*d/8)]; //T1=F/(I*b)*[B*t*(d+t)/2]; //Tmean=T1+2/3*(Tmax-T1); //T=Tmax-Tmean; //T=F*d^2/(24*I); disp("Difference between maximum and mean shear stresses in the web is ,T=F*d^2/(24*I)");
8ff4690f4796b4329963be4cfd2af42a97820c14
449d555969bfd7befe906877abab098c6e63a0e8
/1430/CH14/EX14.7/exa14_7.sce
98b0ede1a868325683ac96a4c2963587ee5b17b4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
529
sce
exa14_7.sce
// Example 14.7 // Calculating ABCD Parameters R=10; C=1/40; s=%s; // from figure 14.19(a), I_2=0; disp("I_1-3*I_1=V_2/10") disp("=> I_1=-0.005*V_2---equation(1)") disp("V_1=V_2+(1/(s*C)*I_1)") disp("=> V_1=(1-2/s)*V_2---equation(1)") //from equation 1 & 2 A=1-2/s; C=-0.05; //with V_2=0 disp("I_1-3*I_1=-I_2") disp("=> I_1=0.5*I_2---equation(3)") disp("V_1=(1/(s*C))*I_1") disp("=> V_1=(20/s)*I_2---equation(4)") // from equation 3 & 4 B=-20/s; D=-0.5; T=[A,B;C,D]; disp(T,"Required ABCD Parameters=")
1ec5eb40bbfa4cf2f1572551cba86988313243ef
449d555969bfd7befe906877abab098c6e63a0e8
/1760/CH1/EX1.17/EX1_17.sce
f74260575f3b446e9457efb9835c6f201b99cb57
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
332
sce
EX1_17.sce
//EXAMPLE 1-17 PG NO-23 N=10^3; //Number of Turns a=6.25*10^-4; //Diameter l=0.25; L=(N*N*4*%pi*10^-7*a)/(%pi*l); //INDUCTANCE disp('i)inductance = '+string (L)+' H'); e=L*100; //EMF disp('ii)EMF = '+string (e)+' V')
e2582adde6ad32b698c3a650a583178b799539ae
449d555969bfd7befe906877abab098c6e63a0e8
/53/CH8/EX8.3/example_3.sce
7ac7822e727e4efd3213fa8a597a69679a1bf590
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
917
sce
example_3.sce
//caption:wein bridge oscillator //To design a wein bridge oscillator of frequency fo=10KHz fo=10000;//in Hz printf("Capacitance C,Resistance R and Frequency fo are related as C*R=1/(2*pi*fo)\n"); printf("If C*R=A\n"); A=1/(2*%pi*fo); C=0.01*(10^-6);//in farads R=A/C;//in ohms B=R/1000;//to convert to Kohms printf("Taking C=0.01microfarad, we get R=%1.2f Kohms\n",B);//in Kohms printf("Gain of a non-inverting amplifier should be 3 i.e. Av=1+(R1/R2)=3\n"); printf("This gives (R1/R2)=2, by selecting R2=10 Kohms, we get R1=20 Kohms\n"); R2=10; R1=20;//in Kohms printf("The gain must be restricted between 2.8 to 3.2, by selecting proper resistors Ra and Rb such that R1=Ra||Rb this can be achieved.\n"); printf("These values of Ra and Rb comes out to be Ra=22Kohms and Rb=220Kohms\n"); printf("RESULTS:\n"); printf("design values are R=%1.2f Kohms, C=0.01 microFarad,Ra=22 Kohms,Rb=220 Kohms\n",B);
2b72e620e953e1bb756943c584e3b7f9196d85b6
449d555969bfd7befe906877abab098c6e63a0e8
/2732/CH8/EX8.1/Ex8_1.sce
103190a1246a23407c5294813b6e1ffef2dda5b0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
471
sce
Ex8_1.sce
clc // initialization of variables clear L=5 //m D=20 //cm t=1 //cm E=2*10^6 //kg/cm^2 I=2502 //cm^4 L=5*100 //cm // calculations P=E*I/(4*L^2) // results printf('The maximal axial load taken is %.1f Tonne',P/100) printf('\n for both ends pinned, P=%.1f Tonne',P*4/100) printf('\n for both ends fixed, P=%.1f Tonne',P*16/100) printf('\n for one end fixed, one pinned, P=%.1f Tonne',P*4*2.13/100) // Evaluation of critical load (P) in the text is wrong
e0036d165bdbab0d5437cc88b6765f8f3e38af83
c557cd21994aaa23ea4fe68fa779dd8b3aac0381
/test/add.tst
d5ca84b607a6c34ca85c0fc5a091b14f39563948
[ "BSD-3-Clause", "BSD-2-Clause" ]
permissive
dougsong/reposurgeon
394001c0da4c3503bc8bae14935808ffd6f45657
ee63ba2b0786fa1b79dd232bf3d4c2fe9c22104b
refs/heads/master
2023-03-09T15:22:45.041046
2023-02-25T08:33:06
2023-02-25T08:33:06
280,299,498
1
0
NOASSERTION
2023-02-25T08:33:08
2020-07-17T01:45:32
Go
UTF-8
Scilab
false
false
195
tst
add.tst
## Test the add primitive set relax read <sample2.fi :15 add D .gitignore :17 add M 100755 :9 hello # Next one is expected to fail :8 add C .gitignore wibble :8 add C README README-STASH write -
89095c1df73e67b5636d4f315e799372aaee84d5
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.3/macros/xdess/gr_macros.sci
6090c3fae3f0efd99aeb2bffda705eacd9f91ac0
[ "MIT", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-public-domain" ]
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
6,914
sci
gr_macros.sci
function []=delete(sd) //destruction d'un objet xx=locate(1);eps=0.2 mm=clearmode(); //recherche de l'objet contenant le point for ko=2:ksd; obj=sd(ko); to='rien';if size(obj)<>0 then to=obj(1);end, select to case 'ligne' then z=obj(2),[nw,npt]=size(z), for kpt=2:npt e=norm(xx-z(:,kpt),2)+norm(xx-z(:,kpt-1),2) if abs(e-norm(z(:,kpt)-z(:,kpt-1),2))< eps then sd(ko)=ligne(obj,'del'); end, end, case 'fligne' then z=obj(2),[nw,npt]=size(z), for kpt=2:npt e=norm(xx-z(:,kpt),2)+norm(xx-z(:,kpt-1),2) if abs(e-norm(z(:,kpt)-z(:,kpt-1),2))< eps then sd(ko)=fligne(obj,'del'); end, end, case 'rect' then x1=obj(2);x2=obj(3);y1=obj(4);y2=obj(5); z=[x1,x1,x2,x2,x1 ; y1,y2,y2,y1,y1]; [nw,npt]=size(z), for kpt=2:npt e=norm(xx-z(:,kpt),2)+norm(xx-z(:,kpt-1),2) if abs(e-norm(z(:,kpt)-z(:,kpt-1),2))< eps then sd(ko)=rect(obj,'del'); end, end, case 'points' then z=obj(2),[nw,npt]=size(z), for kpt=2:npt e=norm(xx-z(:,kpt),2)+norm(xx-z(:,kpt-1),2) if abs(e-norm(z(:,kpt)-z(:,kpt-1),2))< eps then sd(ko)=points(obj,'del'); end, end, case 'cercle' then dist=norm(obj(2)-xx,2); if abs(dist-obj(3))<eps then sd(ko)=cerc(obj,'del');end, case 'fleche' then o1=obj(2);o2=obj(3);p1=[o1(1);o2(1)];p2=[o1(2);o2(2)]; e=norm(xx-p1,2)+norm(xx-p2,2) if abs(e-norm(p2-p1))< eps then sd(ko)=fleche(obj,'del');end, case 'comm' then xxr=xstringl(0,0,obj(3)) hx=xxr(3); hy=xxr(4); crit=norm(obj(2)-xx)+norm(obj(2)+[hx;hy]-xx) if crit<hx+hy then sd(ko)=comment(obj,'del');end end, //fin selec to end; //fin for ko ... modeback(mm); sd=resume(sd) function [sd1]=symbs(sd,del) [lhs,rhs]=argn(0);sd1=[]; if rhs<=0 then n1=x_choose(symbtb,"Choose a mark"); dime=evstr(x_dialog("Choose a size","0")); sd1=list("symbs",n1,dime); else n1=sd(2);dime=sd(3) end xset("mark",n1,dime); function [sd1]=dashs(sd,del) [lhs,rhs]=argn(0);sd1=[]; if rhs<=0 then n1=x_choose(dash,"Choose a dash style"); sd1=list("dashs",n1); else n1=sd(2) end xset("dashes",n1); function [sd1]=patts(sd,del) [lhs,rhs]=argn(0);sd1=[]; if rhs<=0 then n1=x_choose(patt,["Choose a pattern "]); sd1=list("patts",n1); else n1=sd(2) end xset("pattern",n1); function [sd1]=rect(sd,del) [lhs,rhs]=argn(0);sd1=[]; if rhs<=0 then [x1,y1,x2,y2]=xgetm(d_xrect) sd1=list("rect",x1,x2,y1,y2); else x1=sd(2);x2=sd(3),y1=sd(4),y2=sd(5); end d_xrect(x1,y1,x2,y2); function [sd1]=cerc(sd,del) [lhs,rhs]=argn(0);sd1=[]; if rhs<=0 then [c1,c2,x1,x2]=xgetm(d_circle); x=[x1;x2],c=[c1;c2];r=norm(x-c,2); sd1=list("cercle",c,r); else c=sd(2);r=sd(3); end; d_circle(c,r); function [sd1]=fleche(sd,del) [lhs,rhs]=argn(0);sd1=[] if rhs<=0 then, [oi1,oi2,of1,of2]=xgetm(d_arrow); o1=[oi1;of1],o2=[oi2;of2]; sd1=list("fleche",o1,o2); else o1=sd(2),o2=sd(3), end d_arrow(o1,o2); function [sd1]=comment(sd,del) [lhs,rhs]=argn(0),sd1=[]; if rhs<=0 then , [i,z1,z2]=xclick(0);z=[z1;z2]; com=x_dialog("Enter string"," "); sd1=list("comm",z,com) else z=sd(2);com=sd(3); end; xstring(z(1),z(2),com,0,0); function [sd1]=ligne(sd,del) // polyline [lhs,rhs]=argn(0);sd1=[]; if rhs<=0 then , z=xgetpoly(d_seg); if z=[], return;end; sd1=list("ligne",z); else z=sd(2); end; xpoly(z(1,:)',z(2,:)',"lines") function [sd1]=fligne(sd,del) // filled polyline [lhs,rhs]=argn(0);sd1=[]; if rhs<=0 then , z=xgetpoly(d_seg); if z=[], return;end; mm=clearmode();xpoly(z(1,:)',z(2,:)',"lines");modeback(mm) sd1=list("fligne",z); else z=sd(2); end; xfpoly(z(1,:),z(2,:),1); function [sd1]=curve(sd,del) // smoothed curve [lhs,rhs]=argn(0);sd1=[]; if rhs<=0 then , z=xgetpoly(d_seg); if z=[], return;end mm=clearmode();xpoly(z(1,:)',z(2,:)',"lines");modeback(mm) [x1,k1]=sort(z(1,:));y1=z(2,k1);z=[x1;y1]; [n1,n2]=size(z);z=smooth(z(:,n2:-1:1)); sd1=list("ligne",z); else z=sd(2); end; xpoly(z(1,:)',z(2,:)',"lines"); function [sd1]=points(sd,del) // polymark [lhs,rhs]=argn(0);sd1=[]; if rhs<=0 then , z=xgetpoly(d_point); if z=[], return;end; sd1=list("point",z); else z=sd(2); end; xpoly(z(1,:)',z(2,:)',"marks"); function [sd1]=grclipoff(sd,del) [lhs,rhs]=argn(0),sd1=[]; if rhs<=0 then , sd1=list("clipoff") end; xclip(); function [sd1]=grclipon(sd,del) [lhs,rhs]=argn(0),sd1=[]; if rhs<=0 then , sd1=list("clipon") end; xclip('clipgrf'); function []=redraw(sd,s_t) ksd=size(sd) plot2d(0,0,[-1],s_t," ",sd(2)); xset("clipgrf"); for k=3:ksd, obj=sd(k); if size(obj)<>0 then to=obj(1) select to, case "rect" then rect(obj); case "cercle" then cerc(obj); case "fleche" then fleche(obj); case "cercle" then cerc(obj); case "comm" then comment(obj); case "ligne" then ligne(obj); case "fligne" then fligne(obj); case "point" then points(obj); case "symbs" then symbs(obj); case "dashs" then dashs(obj); case "patts" then patts(obj); case "clipon" then grclipon(obj); case "clipoff" then grclipoff(obj); end end end function [x0,y0,x,y,ibutton]=xgetm(m_m) // Object aquisition kpd=driver(); driver("X11"); xset("alufunction",6); // attente du click [ii,x0,y0]=xclick() x=x0;y=y0; // suivit de la souris en attendant le button release ibutton=-1 while ( ibutton==-1) // dessin m_m(x0,y0,x,y); rep=xgetmouse(0); ibutton = rep(3) m_m(x0,y0,x,y) x=rep(1);y=rep(2); end xset("alufunction",3); //m_m(x0,y0,x,y) driver(kpd); function []=d_xrect(x0,yy0,x,y) xi=min(x0,x); w=abs(x0-x); yi=max(yy0,y); h=abs(yy0-y); xrect(xi,yi,w,h); function []=d_circle(c1,c2,x1,x2) [lhs,rhs]=argn(0); if rhs==2 then r=c2;c2=c1(2);c1=c1(1); else r=norm([x1-c1;x2-x2],2); end xarc(c1-r,c2+r,2*r,2*r,0,64*360); function []=d_arrow(c1,c2,x1,x2) [lhs,rhs]=argn(0); if rhs==2 then x1=c1(2);c1=c1(1);x2=c2(2);c2=c2(1);end xarrows([c1;x1],[c2;x2],-1); function [z]=xgetpoly(m_m) // interactive polyline aquisition m_m is // used to draw between aquisitions kpd=driver(); driver("X11"); // attente du click [ii,x0,y0]=xclick(0) x=x0;y=y0; z=[x0;y0]; ibutton=1 while ibutton<>0 ibutton=-1 xset("alufunction",6); while ( ibutton==-1) // dessin m_m(x0,y0,x,y); rep=xgetmouse(0); ibutton = rep(3) m_m(x0,y0,x,y) x=rep(1);y=rep(2); end xset("alufunction",3); if ibutton<>0 then m_m(x0,y0,x,y) z=[z,[x;y]] x0=x;y0=y; end end [nn,ll]=size(z); if ll==1 then z=[];end driver(kpd); function []=d_seg(x1,y1,x2,y2) xpoly([x1,x2],[y1,y2],"lines"); function []=d_point(x1,y1,x2,y2) xpoly([x1,x2],[y1,y2],"marks");
1c33e18d1914d06220873971532b8767cc9eab32
449d555969bfd7befe906877abab098c6e63a0e8
/1163/CH6/EX6.3/example_6_3.sce
1afb1e14f85dcdcadf14ba1966672527700f0337
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,177
sce
example_6_3.sce
clear; clc; disp("--------------Example 6.3---------------") n=4; // number of channels bitrate=1; // 1 Mbps total_bandwidth=1*10^6; // 1 MHz channel_bandwidth=total_bandwidth/n; bits=(bitrate*10^6/total_bandwidth)*n; // number of bits per Hz printf("The satellite channel is analog. Each channel has a %d kHz bandwidth.\nEach digital channel of %d Mbps is modulated such that each %d bits is modulated to 1 Hz. One solution is 16-QAM modulation.",channel_bandwidth*10^-3,bitrate,bits); // display the result // display the figure clf(); xname("--------------Example 6.3----------------"); xpoly([.5 .5],[.3 .8]); xpoly([.5 .65],[.8 .55]); xpoly([.5 .65],[.3 .55]); xset("font size",2.8); for i=0:3 xstring(.22,.71-(i/10),"1 Mbps 250 kHz"); xstring(.22,.665-(i/10),"Digital Analog"); xpoly([.2 .3],[.7-(i/10) .7-(i/10)]); xpoly([.4 .5],[.7-(i/10) .7-(i/10)]); xrect(.3,.72-(i/10),.1,.05); xstring(.33,.68-(i/10),"16-QAM"); end xset("font size",4); xstring(.53,.53,"FDM"); xstring(.67,.57,"1 MHz"); xpoly([.65 .75],[.55 .55]);
adce9fb351e72779c45c9b94a4716dcc4978fa44
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.3/Unix-Windows/scilab-2.3/examples/link-examples/ext5c.sce
7dbe0dbfb5a82ac1c8b990aebccd21f37e701aa8
[ "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
194
sce
ext5c.sce
host('make /tmp/ext5c.o'); link('/tmp/ext5c.o','ext5c','C'); // reading vector a in scilab internal stack Amatrix=[1,2,3];b=[2,3,4]; c=fort('ext5c',b,1,'d','out',[1,3],2,'d'); c-(Amatrix+2*b)
537f573711010ef45608a8c0f3c586abd8f067ed
6583b7f11175c40106fb7cc0037578abae125f42
/test/blinky2_a.tst
fe12ce52df7804f07587b9feedf368030fb8fe20
[]
no_license
FREDY1969/tampa-bay-python-avr
02f913ee8373bfab4ef88902844476080b560226
e0311815ebf81b5e1b128f621bf1f15b4fa28289
refs/heads/master
2020-04-24T17:45:03.787951
2011-10-23T17:58:09
2011-10-23T17:58:09
40,279,869
0
0
null
null
null
null
UTF-8
Scilab
false
false
179
tst
blinky2_a.tst
# blinky2_a.tst Test the blinky2 example: >>> import blinky_examples >>> test1 = blinky_examples.test_compile('blinky2', True) >>> test1 in blinky_examples.target_blinky2 True
2e06e1e38ad16f9dc1a6ecd8fb335223b5ba4ae1
f98e6eb45cba97e51f3e190748f75d277fc4c38d
/Lab/Lab5/mysum.sce
f87a16091dd43d65b4d31c6063f48b039311a320
[]
no_license
sctpimming/SC422401
68359adab92095e4c60121ff17ac43efc9c46fb4
5c43c58c9bf0e923b640c115b4ef618ad72d15a6
refs/heads/master
2020-11-25T18:37:53.377582
2020-02-26T07:56:39
2020-02-26T07:56:39
228,796,306
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,646
sce
mysum.sce
function [s] = mysum_recursive(n) // หาค่าผลรวม 1 + 2 + 3 + ... + n เมื่อ n เป็นจำนวนเต็มบวกที่กำหนดให้ // โดยใช้ฟังก์ชันเวียนเกิด (recursive function) // ตรวจสอบว่า n เป็นจำนวนเต็มบวกหรือไม่ if (n < 1) | (n - floor(n) > 0) then error("n ต้องเป็นจำนวนเต็มบวก") // แจ้งข้อผิดพลาดแก่ผู้ใช้ elseif n == 1 then s = 1 // ผลรวม = 1 เมื่อ n = 1 else // s = 1 + 2 + 3 + ... + n = (1 + 2 + 3 + ... + (n-1)) + n // = mysum_recursive(n-1) + n s = n + mysum_recursive(n-1) end endfunction function [s] = mysum_iterative_for(n) // หาค่าผลรวม 1 + 2 + 3 + ... + n เมื่อ n เป็นจำนวนเต็มบวกที่กำหนดให้ // โดยใช้ฟังก์ชันทำซ้ำ (iterative function) แบบ for-loop // ตรวจสอบว่า n เป็นจำนวนเต็มบวกหรือไม่ if (n < 1) | (n - floor(n) > 0) then error("n ต้องเป็นจำนวนเต็มบวก") // แจ้งข้อผิดพลาดแก่ผู้ใช้ end s = 0 // กำหนดตัวแปรสำหรับผลรวม for i = 1:n s = s + i // ปรับปรุงผลรวม end endfunction function [s] = mysum_iterative_while(n) // หาค่าผลรวม 1 + 2 + 3 + ... + n เมื่อ n เป็นจำนวนเต็มบวกที่กำหนดให้ // โดยใช้ฟังก์ชันทำซ้ำ (iterative function) แบบ while-loop // ตรวจสอบว่า n เป็นจำนวนเต็มบวกหรือไม่ if (n < 1) | (n - floor(n) > 0) then error("n ต้องเป็นจำนวนเต็มบวก") // แจ้งข้อผิดพลาดแก่ผู้ใช้ end s = 0 // กำหนดตัวแปรสำหรับผลรวม i = 1 // กำหนดพจน์ที่จะนำไปบวก while i <= n s = s + i // ปรับปรุงผลรวม i = i + 1 // เพิ่มพจน์ที่จะนำไปบวกครั้งละ 1 end endfunction
14fb8b967a3cfd40193775da958b97c92ad7afde
449d555969bfd7befe906877abab098c6e63a0e8
/2195/CH8/EX8.6.10/ex_8_6_10.sce
9b3e2ce32e031aab4d53e6cec77d3c8bc3c930b3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
362
sce
ex_8_6_10.sce
//Example 8.6.10 // Q clc; clear; close; //given data format('v',5) rsh=0.02;//: r=10;// in ohm f=1;//in MHz c=65;//in pico-farad L=(1/((2*%pi*f*10^6)^2*c*10^-12))*10^3; qact=((1/(2*%pi*f*10^6*c*10^-12*r)));//actual q factor qm=(1/(2*%pi*c*10^-12*f*10^6*(r+rsh)));//measured q factor per=((qact-qm)/qact)*100;//percentage error disp(per,"percentage error is")
bd2cd292cf8e35d98fbdf64d3b3dcfbe50943cdb
449d555969bfd7befe906877abab098c6e63a0e8
/165/CH5/EX5.2/ex5_2.sce
f22b9580bc6c21f6922c106218adfb2e60e3903b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
ex5_2.sce
//Example 5.2 clc; Vin=1; //Input Voltage Vr=5; //Reference Voltage t1=1; //given time t2=Vin*t1/Vr; disp(t2,'Time Interval t2 is')
82fc1d6e925ec6279b927d45ae15d1a1b477f3e6
7b040f1a7bbc570e36aab9b2ccf77a9e59d3e5c2
/2-DOF_manual/2dof/twodof1.sci
c3162b85541c86e0ec73a8e6134fbc4376348d11
[]
no_license
advait23/sbhs-manual
e2c380051117e3a36398bb5ad046781f7b379cb9
d65043acd98334c44a0f0dbf480473c4c4451834
refs/heads/master
2021-01-16T19:50:40.218314
2012-11-16T04:11:12
2012-11-16T04:11:12
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,122
sci
twodof1.sci
//2DOF Controller //Heater input is passed as input argument to introduce control effort 'CO' //Fan input is passed as input argument which is kept at constant level(disturbance) //Range of Fan input :60 to 252 //Temperature is read function [temp,heat_in,et] = twodof(setpoint,disturbance) global fdfh fdt fncr fncw m err_count stop global temp heat_in et fan_in CO u_new u_old u_old_old r_old y_old Rc1 Rc2 Rc3 Sc1 Sc2 Tc1 Tc2 gamm //Rc1 = 0.0040843; //Rc2 = -.6503631554*0.0040843; //Rc3 = -0.0458005451*0.0040843; //Sc1 = -767.86991 //Sc2 = 767.86991 * 0.3678794479; //Tc1 = 1; //Tc2 = -0.3678794479; //gamm = 0.1200552; fncr = 'clientread.sce'; fncw = 'clientwrite.sce'; a = mgetl(fdt,1); b = evstr(a); byte = mtell(fdt); mseek(byte,fdt,'set'); if a~= [] temps = b(1,$); heats = b(1,$-2); fans = b(1,$-1); y = temps; temp = y; e_new = setpoint - temp; r_new = setpoint; y_new = temp; et=setpoint-temp; //u_new = (1/Rc1)*(gamm*Tc1*r_new + gamm*Tc2*r_old-Sc1*y_new -Sc2*y_old-Rc2*u_old - Rc3*u_old_old); u_new = (1/Rc1)*(gamm*Tc1*r_new + gamm*Tc2*r_old-Sc1*y_new -Sc2*y_old-Rc2*u_old - Rc3*u_old_old); CO = u_new; if CO>39 CO = 39; end; if CO<0 CO =0; end; u_new = CO; u_old_old = u_old; u_old = u_new; r_old = r_new; y_old = y_new; heat_in = CO; fan_in = disturbance; //ok = writebincom(handl,[254]); //heater //ok = writebincom(handl,[heat_in]); //ok = writebincom(handl,[253]);//fan //ok = writebincom(handl,[fan_in]); //ok = writebincom(handl,[255]); //sleep(1); //[temp,ok,nbytes] = readbincom(handl,2); //temp = temp(1) + 0.1*temp(2); A = [m,m,heat_in,fan_in]; fdfh = file('open','clientwrite.sce','unknown'); file('last', fdfh) write(fdfh,A,'(7(e11.5,1x))'); file('close', fdfh); m = m+1; else y = 0; err_count = err_count + 1; //counts the no of times network error occurs if err_count > 300 disp("NO NETWORK COMMUNICATION!"); stop = 1; // status set for stopping simulation end end return endfunction;
6d8a63a2b33c8eeb35248c673cde2cf41ea5009b
6a80aa5f62cfc2c1b93e4bb27545d2b94daa5bdb
/Assignment2/Q_3.sce
394be84ab61429f65386db8e9971621c2beff873
[]
no_license
pulkitkatdare/CFD_assignment
ba6094efac2541722c842805c2145ef7d5c8cf70
c8e599599f7bba38a1b564037df4b6b6fb5ddbdd
refs/heads/master
2020-07-03T18:27:03.323182
2016-10-19T04:57:20
2016-10-19T04:57:20
67,068,495
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,445
sce
Q_3.sce
clear //step 1: User inputs rho = 7750; mu = 775; L = 6; H = 1; u = 1 ; v = 0; cp = 500; k = cp*mu //Pr = 1; imax = 62; jmax = 22 T_i = 50; DTc = 100; epsilon_st = 0.000001; dx = L/(imax-2); dy = L/(jmax-2); Dt = 0.01; alpha=k/(rho*cp); //Beta=1.2; xi=linspace(0,L,imax-1); yi=linspace(0,H,jmax-1); //Beta_p1=Beta+1;Beta_m1=Beta-1;Beta_p1_div_m1=(Beta_p1/Beta_m1)^(2*xi-1); //num=(Beta_p1*Beta_p1_div_m1)-Beta_m1;den=2*(1+Beta_p1_div_m1); //x=L*num./den; //Beta_p1=Beta+1;Beta_m1=Beta-1;Beta_p1_div_m1=(Beta_p1/Beta_m1)^(2*yi-1); //num=(Beta_p1*Beta_p1_div_m1)-Beta_m1;den=2*(1+Beta_p1_div_m1); //y=H*num./den; x = xi; y = yi; xc(2:imax-1)=(x(2:imax-1)+x(1:imax-2))/2; xc(1)=x(1);xc(imax)=x(imax-1); yc(2:jmax-1)=(y(2:jmax-1)+y(1:jmax-2))/2; yc(1)=x(1);yc(jmax)=y(jmax-1); //grid parameters //Dx(2:imax-1)=x(2:imax-1)-x(1:imax-2); //dx(1:imax-1)=xc(2:imax)-xc(1:imax-1); //Dy(2:jmax-1)=y(2:jmax-1)-y(1:jmax-2); //dy(1:jmax-1)=yc(2:jmax)-yc(1:jmax-1); //Similarly to be written for y and x axis repectively //W_2(2:imax-1) = (2*Dx(1:imax-2)+Dx(2:imax-1))./(Dx(1:imax-2)+Dx(2:imax-1)); //W_2(1) = 1 //W_1(2:imax-1) = -Dx(2:imax-1)/(Dx(1:imax-2)+Dx(2:imax-1)) //W_1(1) = 0 //step 2: Initialising the parameters T = 0*ones(imax,jmax); T(:,1) = 0; T(:,jmax) = 0; T(1,:) = 100; unsteadiness_nd = 1; N = 0; while (unsteadiness_nd >= epsilon_st) N = N+1; T_old = T; for i = 1:imax for j = 1:jmax h_x(i,j) = T(i,j)*cp*rho*u*dy; end end for i = 2:imax-1 for j = 2:jmax-1 //FOU T(i,j) = T_old(i,j) + (Dt/(rho*cp*dx*dy))*(h_x(i-1,j)-h_x(i,j)+(k/dx)*dy*(T(i-1,j)+T(i+1,j)+T(i,j+1)+T(i,j-1)-4*T(i,j))) //QUICK // if (i~=2) // T(i,j) = T_old(i,j) + (Dt/(rho*cp*dx*dy))*(0.375*h_x(i,j)+0.75*h_x(i-1,j)-0.125*h_x(i-2,j)-(0.375*h_x(i+1,j)+0.75*h_x(i,j)-0.125*h_x(i-1,j))+(k/dx)*dy*(T(i-1,j)+T(i+1,j)+T(i,j+1)+T(i,j-1)-4*T(i,j))) // else // T(i,j) = T_old(i,j) + (Dt/(rho*cp*dx*dy))*(h_x(i-1,j)-h_x(i,j)+(k/dx)*dy*(T(i-1,j)+T(i+1,j)+T(i,j+1)+T(i,j-1)-4*T(i,j))) // end end end T(imax,:) = T(imax-1,:) unsteadiness=max(abs(T-T_old))/Dt; unsteadiness_nd=unsteadiness*L*L/(alpha*DTc); printf("Time step no. %5d, Unsteadiness_nd = %8.4e\n", N , unsteadiness_nd); end xset("colormap", jetcolormap(64)),colorbar(0,100),Sgrayplot(linspace(0,L,imax),linspace(0,H,jmax),T, strf='100')
9be4a120cd82d8b01a6dfe38752d4fc0a5a346e8
d4433dc5a6e90f6a26a4c5d9dee686eade240b25
/3DTEST5.TST
254d3fbd05e62b569d4de624be65337012f15bfd
[]
no_license
qb40/all
6e2149ef3c6151717e468ca236840de622cf7d2a
e168acb64fbde09277b04515574507dcbe35161c
refs/heads/master
2022-02-05T17:58:39.207269
2014-01-19T13:28:41
2014-01-19T13:28:41
106,962,623
5
0
null
2017-10-14T21:02:04
2017-10-14T21:02:03
null
UTF-8
Scilab
false
false
2,130
tst
3DTEST5.TST
'3d Formula for Coordinate Axes 'x2=-z*sin@+x*cos@ 'y2=-z*cos@*sin#-x*sin@*sin#-y*cos#+p 'z2=-z*cos@*cos#-x*sin@*cos#+y*sin# 'x3=256*(x2/(zcenter+z2))+xcenter 'y3=256*(y2/(zcenter+z2))+ycenter '3d Formula for Computer Axes 'x2=z*sin@+x*cos@ 'y2=z*cos@*sin#-x*sin@*sin#+y*cos#+p 'z2=z*cos@*cos#-x*sin@*cos#-y*sin# 'x3=256*(x2/(zcenter-z2))+xcenter 'y3=256*(y2/(zcenter-z2))+ycenter '@ = theta = Left-Right cockscrew up (cockscrew=clockwise turn) '# = phi = Up-Down cockscrew right 'Coordinate Axes ' ^y ' | ' | ' | ' ----->x ' / 'z 'Computer Axes '----->x '|\ '| \z '| 'y 'Sampling Computer Axes ... 'Press a key DIM sine(359), cosine(359) FOR i% = 0 TO 359 sine(i%) = SIN((CSNG(i%) / 180) * 3.14) cosine(i%) = COS((CSNG(i%) / 180) * 3.14) NEXT SCREEN 9, , 1, 0 TYPE objects x AS SINGLE y AS SINGLE z AS SINGLE clr AS INTEGER END TYPE DIM obj(18) AS objects FOR i% = 0 TO UBOUND(obj) RANDOMIZE TIMER READ obj(i%).x, obj(i%).y, obj(i%).z obj(i%).clr = i% MOD 256 NEXT k$ = INPUT$(1) xcentre = 250 ycentre = 150 zcentre = 256 theta = 0 phi = 0 DIM x3(UBOUND(obj)), y3(UBOUND(obj)) i% = 1 a = TIMER t = .01 DO FOR j% = 0 TO UBOUND(obj) x2 = obj(j%).z * SIN(theta) + obj(j%).x * COS(theta) y2 = obj(j%).z * COS(theta) * SIN(phi) - obj(j%).x * SIN(theta) * SIN(phi) + obj(j%).y * COS(phi) z2 = obj(j%).z * COS(theta) * COS(phi) - obj(j%).x * SIN(theta) * COS(phi) - obj(j%).y * SIN(phi) x3(j%) = 256 * (x2 / (-z2 + zcentre)) + xcentre y3(j%) = 256 * (y2 / (-z2 + zcentre)) + ycentre NEXT IF (INKEY$ = CHR$(27)) THEN i% = (i% + 1) MOD 2 CLS SELECT CASE i% CASE 0 FOR k% = 0 TO UBOUND(obj) LINE (xcentre, ycentre)-(x3(k%), y3(k%)), obj(k%).clr NEXT CASE 1 LINE (xcentre, ycentre)-(xcentre, ycentre), 0 FOR k% = 0 TO UBOUND(obj) LINE -(x3(k%), y3(k%)), obj(k%).clr NEXT CASE ELSE END SELECT PCOPY 1, 0 theta = theta + .01 phi = phi + .01 LOOP PRINT "Vic Luce="; TIMER - a 'zxy DATA 0,0,0 DATA 0,50,0 DATA 0,50,50 DATA 0,0,50 DATA 0,0,0 DATA 50,0,0 DATA 50,50,0 DATA 0,50,0 DATA 0,0,0 DATA 50,0,0 DATA 50,0,50 DATA 50,50,50 DATA 50,50,0 DATA 50,0,0 DATA 50,0,50 DATA 0,0,50 DATA 0,50,50 DATA 50,50,50 DATA 50,0,50
a5a52921f0a12850347bac4457712b701a16a977
449d555969bfd7befe906877abab098c6e63a0e8
/2969/CH13/EX13.10/Ex13_10.sce
c09f61b5f01af421f91ce03ac110be541032f739
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,007
sce
Ex13_10.sce
clc clear //DATA GIVEN P=400; //maximum value of force that can be developed in N mu=0.25; //coefficient of friction d=0.6; //diameter of drum in m //Refer the figure theta=180+45; //angle of contact in degrees theta=theta*(%pi)/180; //theta converted into radians //moments about A, Ma=0, T1=P*1/0.5; //(i)Drum is rotating anticlockwise //T1>T2 (T1/T2)=e^(mu*theta) T2=T1/(%e^(mu*theta)); Mcac=(T1-T2)*(d/2); //maximum braking torquethat can be developed in N //(i)Drum is rotating clockwise //T2>T1 (T2/T1)=e^(mu*theta) T2=T1*(%e^(mu*theta)); Mcc=(T2-T1)*(d/2); //maximum braking torquethat can be developed in N printf(' (i) The Maximum braking torque that can be developed in anticlockwise direction is: %3.0f Nm. \n',Mcac); printf(' (ii) The Maximum braking torque that can be developed in clockwise direction is: %3.1f Nm. \n',Mcc);
78dc2d529c5f167cd0d56a345ada2cc0c8259193
449d555969bfd7befe906877abab098c6e63a0e8
/2183/CH6/EX6.4.a/Ex_6_4_a.sce
685134a8668a7da2cfeb4371097759074b66e32f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
185
sce
Ex_6_4_a.sce
// Example 6.4.a //coupling efficiency clc; clear; close; NA=0.2;//numerical aperture n=1.4;//refractive index nc=(NA)^2;//coupling efficiency disp(nc,"coupling efficiency is")
70b3f7fedcf3895b6477cc0d4356399f52e3f600
449d555969bfd7befe906877abab098c6e63a0e8
/122/CH7/EX7.a.23/exaA_7_23.sce
f5692f47c77ef5fb5c7f8da685e66e6c8951b285
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
exaA_7_23.sce
// Example A-7-23 // Nichols plot clear; clc; xdel(winsid()); //close all windows s = %s; G = syslin('c',9 , s*(s+0.5)*(s^2 + 0.6*s + 10) ); black(G); chart([8 -4],[],list(1,0)); xgrid(color('gray'));
4d509404c20b0307c6126f4cb327885e0993d69d
449d555969bfd7befe906877abab098c6e63a0e8
/2789/CH5/EX5.1/Ex5_1.sce
e517b6facfc522114d3665860a3f39cedd0eaa62
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
347
sce
Ex5_1.sce
clear; clc; //page no. 152 v1 = 100;// fps p1 = 50;// psia T1 = 300;// degreeF v2 = 500;// fps Cp = 186.5; gam = 1.4; T2 = T1 - (v2^2 - v1^2)/(2*36.2*Cp); p2 = p1*(1 - (v2^2 - v1^2)/(2*36.2*53.3*(T1+460)*(gam/(gam-1))))^(1/0.286); printf('T2 = %d degreeF',T2); printf('\n p2 = %.1f psia',p2); //there is an error in the answer given in textbook
c4a7f889b535cf882f89aaefb9bada383f6c7fc7
449d555969bfd7befe906877abab098c6e63a0e8
/1529/CH19/EX19.11/19_11.sce
06d7aacc2fc53db60d505894215fbdf2d2713891
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
888
sce
19_11.sce
//Chapter 19, Problem 11 clc; R1=10e3; //resistance 1 R2=10e3; //resistance 2 R3=100e3; //resistance 3 Rf=100e3; //feedback resistance V1=5e-3; //input voltage 1 V2=5e-3; //input voltage 2 V3=50e-3; //input voltage 3 V4=25e-3; //input voltage 4 V5=25e-3; //input voltage 5 V6=50e-3; //input voltage 6 V01=(-Rf/R1)*V1; //output voltage 1 V02=(R3/(R2+R3))*(1+(Rf/R1))*V2; //output voltage 2 V03=(V3-V4)*(-Rf/R1); //output voltage 3 V04=(V6-V5)*(R3/(R2+R3))*(1+(Rf/R1)); //output voltage 4 printf("(a) V0 = %d mV\n\n",V01*1000); printf("(b) V0 = %d mV\n\n",V02*1000); printf("(c) V0 = %d mV\n\n",V03*1000); printf("(d) V0 = %d mV\n\n",V04*1000);
d22253e9549813d89d7001759b95dd28aaeae4ca
449d555969bfd7befe906877abab098c6e63a0e8
/196/CH3/EX3.2/Example_3_2.sce
623652a442e2b64701c39a9cce239189d22edab7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
579
sce
Example_3_2.sce
//Chapter 3 //Example 3-2 //ProbOnCurrentinOpamp //Page 47,figure 3-2 clear;clc; //Given Vout=10;//output voltage I=0.1*(10^-3);//current through Rf in amperes Rl=25*(10^3);//Load resistance in ohms //Calculate //Example 3-1(a) Il=Vout/Rl; printf("\n\n Value of load current = %.4f A \n\n",Il) //Example 3-1(b) Iout=I+Il; printf("\n\n Total current into the output pin of the opamp = %.4f A \n\n",Iout) printf("\n\n The input resistance seen by Ei is Ri. In order to keep input resistance of the circuit high. Ri should be equal to or greater than 10KiloOhm")
66c9a22dddcc3f8c202f474dddfeee90654e13e1
449d555969bfd7befe906877abab098c6e63a0e8
/3685/CH9/EX9.11/Ex9_11.sce
09905187dfc9c481fd0781f3f85276792655e833
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
839
sce
Ex9_11.sce
clc // P = 1MPa vf = 0.001127 // specific volume of fluid in m^3/kg vg = 0.1944// specific volume of gas in m^3/kg hg = 2778.1 // specific enthalpy of gas in kJ/kg uf = 761.68 // Specific internal energy of fluid in kJ/kg ug = 2583.6 // Specific internal energy of gas in kJ/kg ufg = 1822 // Change in specific internal energy due to phase change in kJ/kg // Initial anf final mass Vif = 5 // Initial volume of water in m^3 Viw = 5// Initial volume of gas in m^3 Vff = 6 // Final volume of gas in m^3 Vfw = 4 // Final volume of water in m^3 printf("\n Example 9.11") ms = ((Viw/vf)+(Vif/vg)) - ((Vfw/vf)+(Vff/vg)) U1 = ((Viw*uf/vf)+(Vif*ug/vg)) Uf = ((Vfw*uf/vf)+(Vff*ug/vg)) Q = Uf-U1+(ms*hg) printf("\n The heat transfer during the process is %f MJ",Q/1e3) //The answer provided in the textbook is wrong
a2dc1712cf24b7a3d2169897547a51ffbc08c2de
449d555969bfd7befe906877abab098c6e63a0e8
/2873/CH7/EX7.24/Ex7_24.sce
00575cd4dd5007b7c09f79f40941f1717ecdd75e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,431
sce
Ex7_24.sce
// Display mode mode(0); // Display warning for floating point exception ieee(1); clear; clc; disp("Engineering Thermodynamics by Onkar Singh Chapter 7 Example 24") C1=150;//steam entering velocity in m/s C2=50;//steam leaving velocity in m/s To=(15+273);//dead state temperature in K W=1000;//expansion work in KJ/kg disp("from steam tables,h1=h_50bar_600oc=3666.5 KJ/kg,s1=s_50bar_600oc=7.2589 KJ/kg K,h2=hg=2584.7 KJ/kg,s2=sg=8.1502 KJ/kg K") h1=3666.5; s1=7.2589; h2=2584.7; s2=8.1502; disp("inlet stream availability=(h1+C1^2*10^-3/2)-To*s1 in KJ/kg") (h1+C1^2*10^-3/2)-To*s1 disp("input stream availability is equal to the input absolute availability.") disp("exit stream availaability=(h2+C2^2*10^-3/2)-To*s2 in KJ/kg") (h2+C2^2*10^-3/2)-To*s2 disp("exit stream availability is equal to the exit absolute availability.") disp("W_rev in KJ/kg") W_rev=1587.18-238.69 disp("irreversibility=W_rev-W in KJ/kg") W_rev-W disp("this irreversibility is in fact the availability loss.") disp("inlet stream availability=1587.18 KJ/kg") disp("exit stream availability=238.69 KJ/kg") disp("irreversibility=348.49 KJ/kg") disp("NOTE=>In book this question is solve using dead state temperature 25 degree celcius which is wrong as we have to take dead state temperature 15 degree celcius,now this question is correctly solve above taking dead state temperature 15 degree celcius as mentioned in question. ")
8fbf827be21093f0c5f7226d6249ac9310fc1118
3c47dba28e5d43bda9b77dca3b741855c25d4802
/microdaq/macros/mdaqToolboxPath.sci
dc8079555db01b69c26ed1f07c505a11b68c094d
[ "BSD-3-Clause" ]
permissive
microdaq/Scilab
78dd3b4a891e39ec20ebc4e9b77572fd12c90947
ce0baa6e6a1b56347c2fda5583fb1ccdb120afaf
refs/heads/master
2021-09-29T11:55:21.963637
2019-10-18T09:47:29
2019-10-18T09:47:29
35,049,912
6
3
BSD-3-Clause
2019-10-18T09:47:30
2015-05-04T17:48:48
Scilab
UTF-8
Scilab
false
false
202
sci
mdaqToolboxPath.sci
function result_path = mdaqToolboxPath() result_path = []; path = fileparts(get_function_path('mdaqToolboxPath')); result_path = part(path,1:length(path)-length("macros") - 1 ); endfunction
36000feffdfffd9da9208ed05dca2217c1139cf6
449d555969bfd7befe906877abab098c6e63a0e8
/788/CH11/EX11.2.a/11_2_data.sci
adf633a6c74fdb6ac0d6e0700fa805259eb934fc
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
sci
11_2_data.sci
// Aim:To find the downstream oil temperature // Given: // temperature of oil flowing through pressure relief valve: T_oil=120; //deg F // pressure of oil flowing through pressure relief valve: p=1000; //psi // oil flow through pressure relief valve: Q_gpm=10; //gpm
0081a245d1f7a2ff56f769a459de7765ec96e892
623a9dd972dc78dbde5d5b8dc187acd6a1eb5910
/TP7/test-CN.sce
bf05c1ed7cc93a89948ffb790060f2d5f432d1ee
[]
no_license
gtessi/CN2012-FICH
0daad054ceb6c36636ee5e8b174a676b9e0acb9b
4024384653b61b5af9e1c11ffb575e154025ee47
refs/heads/master
2020-03-27T05:53:04.684505
2018-08-25T03:03:15
2018-08-25T03:03:15
146,059,800
0
0
null
null
null
null
UTF-8
Scilab
false
false
358
sce
test-CN.sce
exec CrankNicolson.sci; function z = yex(x) z=((x' .* exp(3 .* x')) ./5) - ((exp(3 .* x')) ./ 25) + ((exp(-2 .* x')) ./ 25); endfunction function z = y(x,y) z=(x' .* exp(3.*x')) - 2 .* y; endfunction h=0.05; a=0; b=1; alfa=0; [t,w,e]=CrankNicolson(y,a,b,h,alfa,yex); plot(t,yex(t),'b'); //exacta plot(t,w,'k'); //Crank-Nicolson
f8b4104569c272f001b661e7a7cd41fdd76c16a9
449d555969bfd7befe906877abab098c6e63a0e8
/2282/CH7/EX7.10/ex7_10.sce
e2241872ef05096e5abf98031208e0e406b1d9c0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
567
sce
ex7_10.sce
// Example 7.10, page no-279 clear clc ea=80 //EIRP value of earth station A in dBW eb=75 //EIRP value of earth station B in dBW g=50 //transmit antenna gain in dB gra=20 //receiver antenna gain for earth station A in dB grb=15 //receiver antenna gain for earth station B in dB theeta=4 //viewing angle of the sattelite from two earth station eirp_d=eb-g+32-25*log10(theeta) c_by_i=ea-eirp_d+(gra-grb) printf("carrier-to-interference ratio at the satellite due to\n inteference caused by Eart station B is, (C/I) = %.0f dB ",c_by_i)
677a9093ccbddc247e5f530f4e39c54692d501d2
449d555969bfd7befe906877abab098c6e63a0e8
/1586/CH14/EX14.8/EXP14_8.sce
ea2e2420db833920334b34d6aefcf3e0b4108e19
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
635
sce
EXP14_8.sce
clc;funcprot(0);//EXAMPLE 14.8 // Initialisation of Variables Ktc=60;.........//The plane-strain Fracture toughness in MPa-m^-1/2 Ktc2=80;......//The fracture toughness of L sample in MPa-m^-1/2 f=1.12;........//A geometry factor for the specimen and flaw sigma=200;......//A titanium-alloy 6246 plate is exposed to a tensile stress a=((Ktc/(f*sigma))^2)/%pi;......//The critical flaw length of Crank in cm a2=((Ktc2/(f*sigma))^2)/%pi;......//The critical flaw length of Crank of L sample in cm disp(a*10^2," The critical flaw length of Crank in cm: ") disp(a2*10^2,"The critical flaw length of Crank of L sample in cm:")
f58c4b3e08cf1717fd8696fba56980a8f684684f
449d555969bfd7befe906877abab098c6e63a0e8
/2642/CH3/EX3.15/Ex3_15.sce
5f9a94737662ebe171efc3c2a8a683b9c754f106
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,407
sce
Ex3_15.sce
// FUNDAMENTALS OF ELECTICAL MACHINES // M.A.SALAM // NAROSA PUBLISHING HOUSE // SECOND EDITION // Chapter 3 : TRANSFORMER AND PER UNIT SYSTEM // Example : 3.15 clc;clear; // clears the console and command history // Given data V_L1 = 11 // three-phase transformer supply in kV I_P1 = 6 // three-phase transformer current in A a = 11 // turns ratio // caclulations // delta-wye V_dP2 = V_L1*10^3/a // phase voltage at secondary side in V V_dL2 = sqrt(3)*V_dP2 // line voltage at secondary side in V I_dP1 = a/sqrt(3) // phase current in the primary in A I_dL2 = a*I_dP1 // line current in secondary in A //Wye delta connection V_wP1 = V_L1*10^3/sqrt(3) // phase voltage at primary in V V_wP2 = V_wP1/a // phase voltage at secondary in V, V_L2=V_P2 I_wP2 = a*I_P1 // phase current in secondary in A I_wL2 = sqrt(3)*I_wP2 // line current in secondary in A // display the result disp("Example 3.15 solution"); printf(" \n For delta-wye connection-"); printf(" \n Phase voltage at secondary side \n V_dL2 = %.f V \n", V_dL2); printf(" \n Line voltage at secondary side \n I_dL2 = %.2f A \n", I_dL2); printf(" \n For wye-delta connection-") printf(" \n Phase voltage at secondary side \n V_wL2 = %.2f V \n", V_wP2); printf(" \n Line current in secondary side \n I_wL2 = %.2f A \n", I_wL2);
343c6c32491124d575b9d46db65d7a31519742ca
449d555969bfd7befe906877abab098c6e63a0e8
/1271/CH20/EX20.12/example20_12.sce
2f444d21af5f7521c74fce5585dac8017c00a855
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
example20_12.sce
clc // Given that lambda = 1e-11 // K-absorption limit for uranium in m // Sample Problem 12 on page no. 20.10 printf("\n # PROBLEM 12 # \n") printf("Standard formula used \n ") printf("lambda_min = 12400/V \n") V = 12400e-10 / lambda printf("\n Excitation potential is %d kV.",V/10^3)
42759b4b49e58810be77c47d8838261e441224c1
449d555969bfd7befe906877abab098c6e63a0e8
/3830/CH7/EX7.20/Ex7_20.sce
0f1e70d5be8c1189ecbd6f4e685316a30f58d7c9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
441
sce
Ex7_20.sce
// Exa 7.20 clc; clear; // Given // A Capacitence Transducer A = 5*10^-4; // Area in m^2 C = 9.5*10^-12; // Capacitence in farad er = 81; // Relative dielectric constant e0 = 8.854*10^-12; // Absolute dielectric constant in F/m // Solution // C = e0*er*A/d; // Therefore d = e0*er*A/C; printf('The plate separation d = %.2f mm \n',d*10^3); S = e0*er*A/d^2; printf(' Sensitivity s = %.3f * 10^-8 F/m \n',S*10^8);
c4c60b0ffe24d0d4555255103a0ee9c3a417f186
449d555969bfd7befe906877abab098c6e63a0e8
/2549/CH3/EX3.5.5/Ex3_5_5.sce
7bb865f77ea907fa4616b5c44e1fb45c4c6c922d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ex3_5_5.sce
//Ex3.5.5 //calculation of necessary ac input power for HWR and FWR clc; clear; //given Pl_dc=500;//dc load power n_HWR=0.4;//efficiency for half wave rectifier n_FWR=0.812// efficiency for full wave rectifier Pac_HWR=Pl_dc/n_HWR; disp('**** half wave rectifier ****') disp('Watt',Pac_HWR,'necessary ac input power is :') Pac_FWR=Pl_dc/n_FWR; disp('**** full wave rectifier ****') disp('Watt',Pac_FWR,'necessary ac input power is :')
071da68cb61295c9a8127b2538e5d9f4400c3b27
449d555969bfd7befe906877abab098c6e63a0e8
/339/CH6/EX6.11/ex6_11.sce
22a522318f822ce9432c0e9232a56a2e0fc2c365
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
812
sce
ex6_11.sce
//define problem parameters Nd=1e18*1e6; Vb=0.81; eps_r=12.5; d=50e-9; dWc=3.5e-20; W=10e-6; L=0.5e-6; mu_n=8500*1e-4; //define physical constants q=1.60218e-19;//electron charge eps0=8.85e-12;//permittivity of free space eps=eps_r*eps0; //pinch-off voltage Vp=q*Nd*d^2/(2*eps) //threshold voltage Vth=Vb-dWc/q-Vp //drain-source applied voltage range Vds=0:0.01:5; //gate-source voltages Vgs_r=-1:0.25:0; for n=1:length(Vgs_r) Vgs=Vgs_r(n); Id=mu_n*W*eps/(L*d)*((Vds*(Vgs-Vth)-Vds.*Vds/2).*(1-(Vds>(Vgs-Vth)))+1/2*(Vgs-Vth)^2*(1-(Vds<=(Vgs-Vth)))); plot(Vds,Id/1e-3); set(gca(),"auto_clear","off"); end; title('Drain current vs. V_{DS} plotted for different V_{GS}'); xlabel('Drain-source voltage V_{DS}, V'); ylabel('Drain current I_{D}, mA');
76cee29b8e2c4d50a08c6206ccf38ba161a6043c
449d555969bfd7befe906877abab098c6e63a0e8
/215/CH13/EX13.2/ex13_2.sce
ef2b56b7de3b76804e70d1024614bc7714cab2be
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
546
sce
ex13_2.sce
clc //Example 13.2 disp('Given') disp('Input voltage is 10V') Viamp=10 //From figure 13.7 //Writing the left mesh equations disp('(1+10i)*I1-90i*I2=10') //Writing the right mesh equations disp('(400+1000i)*I2-90i*I1=0') i=%i A=[1+10*i -90*i;-90*i 400+1000*i] i2mat=[1+10*i 10; -90*i 0] //Find i2 i2=det(i2mat)/det(A) [mag Theta]=polar(i2) Theta=(Theta*180)/%pi //The value of resistor is 400 ohm R=400; //Let V=V2/V1 Vamp=R*mag/Viamp printf("Ratio of output voltage to input is %3.2f with angle %3.2f degrees",Vamp,Theta);