blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
214
content_id
stringlengths
40
40
detected_licenses
listlengths
0
50
license_type
stringclasses
2 values
repo_name
stringlengths
6
115
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
21 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
141k
586M
star_events_count
int64
0
30.4k
fork_events_count
int64
0
9.67k
gha_license_id
stringclasses
8 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
50 values
src_encoding
stringclasses
23 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
5
10.4M
extension
stringclasses
29 values
filename
stringlengths
2
96
content
stringlengths
5
10.4M
8ea01f76292090fae0f2c84700e01a967c272b97
449d555969bfd7befe906877abab098c6e63a0e8
/1301/CH8/EX8.9/ex8_9.sce
9e4d6625cf47376dc67a16ae4f4fb5c0ab445ecb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
223
sce
ex8_9.sce
clc; pa=14.7; //atm pressure in lb/in square dg=62; //density in lb/ft cube h=6/144; //in ft cube/in square p=pa+(dg*h); //calculating pressure disp(p,"Pressure in lb/in square = "); //displaying result
496c2505df8dc67f622e2dbd10e79d006347f3c7
76d58c93412c99ad3e8468ca843883add5b16d43
/simple_network.sci
b81a991ac284e05b3f196970ba811f1298ff90b1
[]
no_license
NnataKha/Mixed-plus-minus-interaction-conflict-model
cd6daadc26e6189720f088adf9a739072125f1fa
a02cf4c1c21dc5559721c219c93ad706f3af30be
refs/heads/master
2020-03-16T18:52:00.884504
2018-05-10T11:24:44
2018-05-10T11:24:44
132,889,968
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,426
sci
simple_network.sci
clear n = 4; //agents' distributions p = rand(1,n); r = rand(1,n); //r = [0.03053683050646518, 0.11073078001924284, 0.13514332170253243, 0.027459361426200053, 0.07190506521083669, 0.18616162768783842, 0.21079054986970286, 0.22727246357718153]; //p = [0.0058629416842367315, 0.21299083861261242, 0.033062392801051596, 0.12873295311381222, 0.04371662605906716, 0.20406945190899564, 0.19905651573819597, 0.17250828008202823]; sp = sum(p); sr = sum(r); p = p./sp; r = r./sr; con_p = [0, .1, 0, 0;//, 0, .1; .1, 0, .1, 0;//, 0, 0; 0, .1, 0, .1;//, 0, 0; 0, 0, .1, 0]//, .1, 0; //0, 0, 0, .1, 0, .1; //.1, 0, 0, 0, .1, 0] con_r = con_p; time(1) = 1; p_v(1,:) = p; r_v(1,:) = r; con_v(1,:) = con_p(1,:); T = 350 //conflict interaction for k = 1:T time(k+1) = k+1; tau = min(p,r); p = p + p * con_p - tau; r = r + r * con_r - tau; sp = sum(p); p = p ./ sp; sr = sum(r); r = r ./ sr; p_v(k+1,:) = p; r_v(k+1,:) = r; con_v(k+1,:) = con_p(1,:); end //distribution if 1 == 21 then subplot(221) plot(r_v(:,1),p_v(:,1),'.-'); subplot(222) plot(r_v(:,2),p_v(:,2),'.-'); subplot(223) plot(r_v(:,3),p_v(:,3),'.-'); subplot(224) plot(r_v(:,4),p_v(:,4),'.-'); else plot(time,p_v); plot(time,r_v,'--'); end //plot(time,p_v); //plot(time,r_v,'--'); //subplot(212) //plot(time,con_v);
b48426f21a5e0096fb54091b9c87ed86948b356f
449d555969bfd7befe906877abab098c6e63a0e8
/122/CH5/EX5.12/exa5_12.sce
67f2c4ea216f07cde97ac9e2694ca0d8b9c486d7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
202
sce
exa5_12.sce
// Example 5-12 // Constructing Routh array in scilab clear; clc; xdel(winsid()); //close all windows mode(0); s = %s; H = s^4 + 2*s^3 + 3*s^2 + 4*s + 5; routh_t(H) // display the routh table
624225a35d2451052d6e08b481eec431ff53a042
449d555969bfd7befe906877abab098c6e63a0e8
/24/CH25/EX25.1/Example25_1.sce
536d0da1aba3afa70833272d0cb76336ede4b91c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
233
sce
Example25_1.sce
exec('electrostatics.sci', -1) //Given that E = 150 //in N/C d = -520 //in meter //Sample Problem 25-1 printf("**Sample Problem 25-1**\n") W = E*(-e)*d deltaU = -W printf("The change in potential energy is %eJ", deltaU)
645d449a548cc5dae7616528ec283cc3265cf82c
3db3badc27a4acc92e8b1c74656371905a06e33f
/Estimativa_de_Público_-_Eduardo_Carneiro_-_113149505.sce
0032eba93babcbd44be06b5888ceff0442c68ff5
[]
no_license
eduardo-carneiro/EstimativaDePublico
5569926fb6a22827d776f55e2047a577655fd09d
4824766605aeb6d3e459330978cf2922e3251b4d
refs/heads/master
2021-08-19T16:55:47.577034
2017-11-27T01:14:39
2017-11-27T01:14:39
112,131,744
0
0
null
2017-11-27T01:23:55
2017-11-27T01:23:54
null
UTF-8
Scilab
false
false
7,774
sce
Estimativa_de_Público_-_Eduardo_Carneiro_-_113149505.sce
// MÉTODO DE MÍNIMOS QUADRADOS // EXPECTATIVA DE PÚBLICO // CÁLCULO NUMÉRICO - 2017.2 // ALUNO: EDUARDO CARNEIRO clear function[] = minQuad_3() // h é uma matriz que contem os vetores h1 (coluna de 1), h2 (coluna de valores do eixo x), h3 (coluna de x^2)e h4 (coluna de x^3) A = [1,0.1,0.01,0.001;1,0.2,0.04,0.008;1,0.3,0.09,0.027;1,0.4,0.16,0.064;1,0.5,0.25,0.125;1,0.6,0.36,0.216;1,0.7,0.49,0.343;1,0.8,0.64,0.512;1,0.9,0.81,0.729;1,1,1,1;1,1.1,1.21,1.331;1,1.2,1.44,1.728;1,1.3,1.69,2.197;1,1.4,1.96,2.744;1,1.5,2.25,3.375;1,1.6,2.56,4.096;1,1.7,2.89,4.913;1,1.8,3.24,5.832;1,1.9,3.61,6.859;1,2,4,8;1,2.1,4.41,9.261;1,2.2,4.84,10.648;1,2.3,5.29,12.167;1,2.4,5.76,13.824;1,2.5,6.25,15.625;1,2.6,6.76,17.576;1,2.7,7.29,19.683;1,2.8,7.84,21.952;1,2.9,8.41,24.389;1,3,9,27;1,3.1,9.61,29.791;1,3.2,10.24,32.768;1,3.3,10.89,35.937;1,3.4,11.56,39.304;1,3.5,12.25,42.875] // o vetor b é o vetor com a quantidade de inscrições até o dia do início do evento. b = [78;141;155;169;174;178;188;191;197;201;211;217;252;275;282;295;305;316;323;343;360;370;389;406;411;425;438;457;484;518;585;628;672;710;763] matriz = A' * A // Calculamos a multiplicação entre transposta de A pela matriz A B = A' * b // Calculamos a multiplicação entre a transposta de A o vetor de inscritos b. w = inv(matriz) * B // w é o vetor das constantes da equação obtida no método // Para ver os valores de cada matriz, basta descomentar as linhas abaixo // disp(inv(matriz)) // disp(A) // disp(B) // disp(A') // disp(b) // disp(w) // Agora basta imprimir a equação que modela os seus dados, com os valores dos coeficientes armazenados em w. printf('\nEdição Passada: Y = %f*x^3', w(4)) if(w(3)> 0 ) then printf(' +%f*x^2', w(3)) else printf(' %f*x^2',w(3)) end if(w(2)> 0 ) then printf(' +%f*x', w(2)) else printf(' %f*x',w(2)) end if(w(1)> 0 ) then printf(' +%f', w(1)) else printf(' %f',w(1)) end x = (0.1:0.1:3.5) // Esbelece o intervalo de x y = w(4).*x.^3 + w(3).*x.^2 + w(2).*x + w(1) // Estabelece o formato da função com as constantes plot(x,y) // Desenha a linha da função plot(A(:,2),b,'*r') // Desenha os pontos dos dados endfunction function[] = minQuad_2() // h é uma matriz que contém os vetores h1 (coluna de 1), h2 (coluna de valores do eixo x) e h3 (coluna de x^2) A = [1,0.1,0.01;1,0.2,0.04;1,0.3,0.09;1,0.4,0.16;1,0.5,0.25;1,0.6,0.36;1,0.7,0.49;1,0.8,0.64;1,0.9,0.81;1,1,1;1,1.1,1.21;1,1.2,1.44;1,1.3,1.69;1,1.4,1.96;1,1.5,2.25;1,1.6,2.56;1,1.7,2.89;1,1.8,3.24;1,1.9,3.61;1,2,4;1,2.1,4.41;1,2.2,4.84;1,2.3,5.29;1,2.4,5.76;1,2.5,6.25;1,2.6,6.76;1,2.7,7.29;1,2.8,7.84;1,2.9,8.41;1,3,9;1,3.1,9.61;1,3.2,10.24;1,3.3,10.89;1,3.4,11.56;1,3.5,12.25] // o vetor b é o vetor com a quantidade de inscrições até o dia do início do evento. b = [78;141;155;169;174;178;188;191;197;201;211;217;252;275;282;295;305;316;323;343;360;370;389;406;411;425;438;457;484;518;585;628;672;710;763] matriz = A' * A // Calculamos a multiplicação entre transposta de A pela matriz A B = A' * b // Calculamos a multiplicação entre a transposta de A o vetor de inscritos b. w = inv(matriz) * B // w é o vetor das constantes da equação obtida no método // Para ver os valores de cada matriz, basta descomentar as linhas abaixo // disp(matriz) // disp(A) // disp(A') // disp(b) // disp(w) // Agora basta imprimir a equação que modela os seus dados, com os valores dos coeficientes armazenados em w. printf('\nEdição passada: Y = %f*x^2', w(3)) if(w(2)> 0 ) then printf(' +%f*x', w(2)) else printf(' %f*x',w(2)) end if(w(1)> 0 ) then printf(' +%f', w(1)) else printf(' %f',w(1)) end x = (0.1:0.1:3.5) // Esbelece o intervalo de x y = w(3).*x.^2 + w(2).*x + w(1) // Estabelece o formato da função com as constantes plot(x,y,'b') // Desenha a linha da função plot(A(:,2),b,'*r') // Desenha os pontos dos dados endfunction function[] = minQuad_estimativa(novas_inscricoes) // h é uma matriz que contem os vetores h1 (coluna de 1), h2 (coluna de valores do eixo x), h3 (coluna de x^2)e h4 (coluna de x^3) A = [1,0.1,0.01,0.001;1,0.2,0.04,0.008;1,0.3,0.09,0.027;1,0.4,0.16,0.064;1,0.5,0.25,0.125;1,0.6,0.36,0.216;1,0.7,0.49,0.343;1,0.8,0.64,0.512;1,0.9,0.81,0.729;1,1,1,1;1,1.1,1.21,1.331;1,1.2,1.44,1.728;1,1.3,1.69,2.197;1,1.4,1.96,2.744;1,1.5,2.25,3.375;1,1.6,2.56,4.096;1,1.7,2.89,4.913;1,1.8,3.24,5.832;1,1.9,3.61,6.859;1,2,4,8;1,2.1,4.41,9.261;1,2.2,4.84,10.648;1,2.3,5.29,12.167;1,2.4,5.76,13.824;1,2.5,6.25,15.625;1,2.6,6.76,17.576;1,2.7,7.29,19.683;1,2.8,7.84,21.952;1,2.9,8.41,24.389;1,3,9,27;1,3.1,9.61,29.791;1,3.2,10.24,32.768;1,3.3,10.89,35.937;1,3.4,11.56,39.304;1,3.5,12.25,42.875] inscricoes_antigas = [78;63;14;14;5;4;10;3;6;4;10;6;35;23;7;13;10;11;7;20;17;10;19;17;5;14;13;19;27;34;67;43;44;38;53] // Inscritos antigas por dia tam = size(novas_inscricoes,1) // Quantidade de novas inscrições de entrada taxa(1) = (novas_inscricoes(1) - inscricoes_antigas(1)) for i=2:size(novas_inscricoes,1) taxa(i) = (taxa(i-1) + (novas_inscricoes(i) - inscricoes_antigas(i)))/2 // Calcula a media entre as variações de cada dia end novo_b(1) = novas_inscricoes(1) // Cria o vetor com novos pontos de novas_inscricoes for i=2:size(novas_inscricoes,1) novo_b(i) = novo_b(i-1)+ novas_inscricoes(i) end b(1) = novas_inscricoes(1) // Cria o vetor com as inscrições antigas for i=2:size(novas_inscricoes,1) b(i) = b(i-1)+ novas_inscricoes(i) end for i=size(novas_inscricoes,1):size(inscricoes_antigas,1) // Sobrescreve os dados novos que existirem b(i) = b(i-1)+ inscricoes_antigas(i)+ taxa(tam) // Para os dias que não tem dos dados novos, somamos a taxa no do ano anterior end matriz = A' * A // Calculamos a multiplicação entre transposta de A pela matriz A B = A' * b // Calculamos a multiplicação entre a transposta de A o vetor de inscritos b. w = inv(matriz) * B // w é o vetor das constantes da equação obtida no método // Para ver os valores de cada matriz, basta descomentar as linhas abaixo // disp(matriz) // disp(A) // disp(B) // disp(A') // disp(b) // disp(w) // Agora basta imprimir a equação que modela os seus dados, com os valores dos coeficientes armazenados em w. printf('\nNova Edição: Y = %f*x^3', w(4)) if(w(3)> 0 ) then printf(' +%f*x^2', w(3)) else printf(' %f*x^2',w(3)) end if(w(2)> 0 ) then printf(' +%f*x', w(2)) else printf(' %f*x',w(2)) end if(w(1)> 0 ) then printf(' +%f', w(1)) else printf(' %f',w(1)) end x = (0.1:0.1:3.5) // Estabelece o intervalo de x k = (0.1:0.1:tam/10) y = w(4).*x.^3 + w(3).*x.^2 + w(2).*x + w(1) // Estabelece o formato da função com as constantes plot(x,y,'g') // Desenha a linha da função plot(x,b,'or') plot(k,novo_b,'og') // Desenha os pontos dos novos dados endfunction function[] = Compara(novas_inscricoes) // minQuad_2() // Roda as duas funções ao mesmo tempo minQuad_3() minQuad_estimativa(novas_inscricoes) endfunction
e42f9ae2db762b15e2d1ee91cf050ecda07096e0
3cebec609a7a9400f632d5c0cfb6261beb898ba4
/NRZ manchester.sce
18ef4357c3a0478cf226f551e46ef9d67bad69b0
[]
no_license
dikshitakambri/scilab-programs
93cb5aea24bd53377f73cd394cb742294382796e
61172a7301fd49b5e69f2da53280a1a22a34ee1d
refs/heads/master
2023-01-09T06:47:38.704641
2020-10-31T12:44:12
2020-10-31T12:44:12
308,216,078
1
0
null
null
null
null
UTF-8
Scilab
false
false
872
sce
NRZ manchester.sce
//NRZ MANCHESTER FORMAT close; clc; x=[0 0 1 0 1 1 0 0] //Data Stream z=0; //Starting value on x axis for i=1:length(x) t=[z:1:z+1] //Plot range on x-axis (One bit period) t=[z:0.5:z+0.5] //Plot range on x-axis (first half bit period) subplot(2,1,1) a=gca(); a.data_bounds=[0,-1.5;length(x),1.5] a.grid=[1,-1] title('MANCHESTER') if(x(i)==1) plot(t,1) //Plot 1 for first half bit duration t=[z+0.5:0.5:z+1] //Plot range on x-axis (second half bit period) plot(t,-1) //Plot 1 for second half bit duration else plot(t,-1) //Plot -1 for first half bit duration t=[z+0.5:0.5:z+1] //Plot range on x-axis (second half bit period) plot(t,1) //Plot 1 for second half bit duration end z=z+1; //Increment starting value on x axis by one bit period end
7b69ed10354e2678ce8ca5ab3b68e985f3f2a256
449d555969bfd7befe906877abab098c6e63a0e8
/1332/CH21/EX21.4/21_4.sce
77c6fdb28887873f117662b41b86c9a5a95453f6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
672
sce
21_4.sce
//Example 21.4 //Parallel Gauss-Seidel Method //Page no. 730 clc;close;clear; A=[3,2;6,2]; B=[2;3]; x(1)=1/4; x(2)=1/5; e=0.002; old(1)=x(1); old(2)=x(2); new(1)=old(1); new(2)=old(2); printf('\t\tProcess 1\t\tProcess 2\n Itr\t\told\tnew1\t\told2\tnew2\n\n') printf(' %i\t\t%g\t%g\t\t%g\t%g\n',0,old(1),new(1),old(2),new(2)) for i=1:4 printf(' %i',i) for j=1:2 k=0; for l=1:j-1 k=k-(A(j,l)*old(l)); end m=0; for l=j+1:2 m=m-(A(j,l)*old(l)); end new(j)=(B(j)+k+m)/A(j,j) printf('\t\t%.5g\t%.5g',old(j),new(j)) end printf('\n') old(1)=new(1) old(2)=new(2) end
7f1430019fc003af4170649154539ea9fff0d4ec
449d555969bfd7befe906877abab098c6e63a0e8
/3428/CH5/EX1.5.3/Ex1_5_3.sce
a481050baedc5d489fb59c739fc48374422f13c2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
375
sce
Ex1_5_3.sce
//Section-1,Example-3,Page no.-AC.440 //To predict tensile strength parallel to fibres. clc; Q_f=3200*10^6 E_f=230*10^9 Q_m=60*10^6 E_m=2.4*10^9 V_f=0.4 Q_fu=3.20 e_f=Q_f/E_f //faliure strains of fibres e_m=Q_m/E_m //faliure strains of matrix Q_m=E_m*e_f Q_cu =((Q_fu*V_f)+((Q_m*(1-V_f)))) disp(Q_cu,'Stress carried by composite at failure(GPa)')
7e5ef550acedb28349afdcaea59f8ee5fe385982
449d555969bfd7befe906877abab098c6e63a0e8
/1553/CH29/EX29.8/29Ex8.sce
8a90d05fe7f78ff85c0c4ef371d6b0b51a0cf7d7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
544
sce
29Ex8.sce
//Chapter 29 Ex8 clc; clear; close; facevalue=25; premium=5; brokerage=1/4; shares=88; rateDividend=(15/2)/100; //rate is in percentage hence divided by 100 investment=2662; cost1share=facevalue+premium+brokerage; //cash required to purchase Rs.100 stock costshares= cost1share*shares; facevalueAllShares=shares*facevalue; dividendAllShares=facevalueAllShares*rateDividend; income=dividendAllShares; rateInterest=(income/investment)*100; mprintf("The rate of interest on investment is Rs.%.1f percent",rateInterest);
de8619634524cf8178c401fa697939b2d3414ccd
449d555969bfd7befe906877abab098c6e63a0e8
/2657/CH2/EX2.6/Ex2_6.sce
0766ac5629b70eebf8f8fed0223535b09ae1185c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
895
sce
Ex2_6.sce
//Calculations on Otto cycle clc,clear //Given: P1=1 //Pressure at 1 in bar T1=15+273 //Temperature at 1 in K r=8 //Compression ratio Q1=1000 //Heat added in kJ/kg cv=0.718 //Specific heat at constant volume in kJ/kgK g=1.4 //Specific heat ratio(gamma) //Solution: //Refer fig 2.23 //(a) P2=P1*(r)^g //Pressure at 2 in bar T2=T1*r^(g-1) //Temperature at 2 in K T3=Q1/cv+T2 //Temperature at 3 in K (Round off error) //(b) eta=1-1/r^(g-1) //Air standard efficiency //(c) W=Q1*eta //Work done in kJ/kg (Round off error) //(d) Q2=Q1-W //Heat rejected in kJ/kg //Results: printf("\n (a)The maximum temperature in the cycle, T3 = %d degreeC",T3-273) printf("\n (b)The air standard efficiency, eta = %.1f percent",eta*100) printf("\n (c)The workdone per kg of air = %d kJ/kg",W) printf("\n (d)The heat rejected = %d kJ/kg",Q2) //Round off error in the values of 'T3' and 'W'
c6ae8b383c6d5a331f4a757494caaa56648a2c14
253e09cf7efdbfda8dd6a7d62523e0623a6307ad
/scr/test2.tst
1eab8c05c24893a719561ee34338bdc0cc960ea6
[]
no_license
GOodCoffeeLover/OSI_2
f4fdd83eef9637eced3150cd4789cdd82af2ae8f
742950885333270ead6b0376c0cad8c33a02ce12
refs/heads/master
2023-04-12T23:55:37.597543
2021-03-05T08:07:31
2021-03-05T08:07:31
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
165
tst
test2.tst
'second test file' i write text with many spaces. Space Space Space.
54b4dc1aafeac761fe5225c930b2a6c1d0992663
449d555969bfd7befe906877abab098c6e63a0e8
/3845/CH29/EX29.5/Ex29_5.sce
de284abbe45bc29a42a1c70bc56381724f372aa2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,202
sce
Ex29_5.sce
//Example 29.5 h=6.63*10^-34;//Planck's constant (J.s) lambda=500*10^-9;//Wavelength (m) p=h/lambda;//Momentum of the photon (kg.m/s) printf('a.Momentum of the visible photon = %0.2e kg.m/s',p) m=9.11*10^-31;//Mass of an electron (kg) v=p/m;//Velocity of the electron (m/s) printf('\nb.Velocity of the electron = %0.1f m/s',v) KE_e=(1/2)*m*v^2;//Kinetic energy of the electron (J) KE_e=KE_e*1/(1.60*10^-19);//Kinetic energy of the electron (eV) printf('\nc.Kinetic energy of the electron = %0.2e eV',KE_e) hc=1240;//Planck's constant*speed of light (eV.nm) E=hc/(lambda/10^-9);//Photon energy (eV) printf('\n Photon energy = %0.2f eV',E) //To calulate the order of magnitude by which the energies differ if E>KE_e big=E; small=KE_e; BIG='The photon energy'; elseif KE_e>E big=KE_e; small=E; BIG='The kinetic energy of the electron'; else printf('\nThe photon energy is equal to the kinetic energy of the electron') end i=0; while(small<big) small=small*10; i=i+1; end i=i-1; printf('\n %s is greater by an order of magnitude of about %d',BIG,i) //Openstax - College Physics //Download for free at http://cnx.org/content/col11406/latest
136a3c4e44511e018abb2e1279323e07f97d57ec
449d555969bfd7befe906877abab098c6e63a0e8
/24/CH26/EX26.3/Example26_3.sce
22079f94e204cb6a25e87cad6a83204c42d6cd31
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
295
sce
Example26_3.sce
//Given that C1 = 3.55 //in uF Vo = 6.30 //in Volts C2 = 8.95 //in uF //Sample Problem 26-3 printf("**Sample Problem 26-3**\n") qT = C1*Vo //Total charge q1 = qT*C1/(C1+C2) //in parallel V = q1/C1 printf("The final potential difference between each capacitor is equal to %fV", V)
3d573848b694efe78087312132599cc4276a9f07
449d555969bfd7befe906877abab098c6e63a0e8
/1853/CH4/EX4.18/Ex4_18.sce
8029975041bcc8ffd2b67600e477bca3560afc52
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
221
sce
Ex4_18.sce
//calculate the current C=25e-6; V=200 f=60 //frequency half f2=120 //frequency doubled Xc=1/(2*%pi*f*C) Xc=1/(2*%pi*f2*C) I=V/Xc disp('frequency half='+string(f)+'hz' , 'frequency douled='+string(f2)+'hz')
ab5fa35d4adae9718ffe61b19d4452f4c484e035
449d555969bfd7befe906877abab098c6e63a0e8
/122/CH5/EX5.a.13/exaA_5_13.sce
e4fdd92532eb3a64c41a3b705228da7a95fe73a1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
308
sce
exaA_5_13.sce
// Example A-5-13 // Response to input r = 2 + t clear; clc; xdel(winsid()); //close all windows // Please edit the path // cd "/<your code folder>/Codes/chapter_5"; // exec("plotresp.sci") s = %s; G = syslin('c', 5, s^2 + s + 5); t = 0:0.05:10; r = 2 + t; plotresp(r,t,G,'Response to input r = 2 + t');
60b5deea87e98c821262e91160f3acde83eb8262
417f69e36190edf7e19a030d2bb6aa4f15bb390c
/SMTTests/tests/ok_push_zero.tst
654cbac1598edfcec4830b049ed47cca3d2d6181
[]
no_license
IETS3/jSMTLIB
aeaa7ad19be88117c7454d807a944e8581184a66
c724ac63056101bfeeb39cc3f366c8719aa23f7b
refs/heads/master
2020-12-24T12:41:17.664907
2019-01-04T10:47:43
2019-01-04T10:47:43
76,446,229
1
0
null
2016-12-14T09:46:41
2016-12-14T09:46:41
null
UTF-8
Scilab
false
false
27
tst
ok_push_zero.tst
(set-logic QF_UF) (push 0)
1a2b848fa2c5043200ff42decd776631c40951fd
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.4.1/macros/util/%lss_eye.sci
d01fed00711c0cbb51a453e749f253c5ca9a3888
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
55
sci
%lss_eye.sci
function x=%lss_eye(a) // Copyright INRIA x=eye(a(5));
afa841ad061c53fa406a0c061b96a2ed322035d5
2e676e3b1cebfbb9d20f9b935ceacd507c57d36a
/Octave/octave-4.2.1/share/octave/packages/interval-2.1.0/test/libieeep1788_tests_bool.tst
994389eeb1c30ce4f6b982c0f691770b8db6f759
[]
no_license
vohrahul/ML-ang-coursera
239469e763b290aa178b7aa8a86eda08e4e7f4be
4c24fd2ecfb9f3de7df15e3a9f75627f782f9915
refs/heads/master
2022-12-28T03:45:54.810173
2020-10-16T12:33:25
2020-10-16T12:33:25
304,620,441
1
0
null
null
null
null
UTF-8
Scilab
false
false
39,430
tst
libieeep1788_tests_bool.tst
## DO NOT EDIT! Generated automatically from test/libieeep1788_tests_bool.itl ## by the Interval Testing Framework for IEEE 1788. ## https://github.com/nehmeier/ITF1788/tree/92558f7e942665a78f2e883dbe7af52320100fba ## ## Copyright 2013-2015 Marco Nehmeier (nehmeier@informatik.uni-wuerzburg.de) ## Copyright 2015-2016 Oliver Heimlich ## ## Original author: Marco Nehmeier (unit tests in libieeep1788, ## original license: Apache License 2.0) ## Converted into portable ITL format by Oliver Heimlich with minor corrections. ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 3 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, see <http://www.gnu.org/licenses/>. ## %!#Test library imports %!#Arithmetic library imports pkg load interval %!#Preamble try; error ("__FILE__"); catch test (lasterror.stack.file, "quiet", stdout); end_try_catch; %!function assert_warn (observed_value, expected_value) %! if (not (isequal (observed_value, expected_value))) %! observed_expression = regexprep (argn(1, :), '\s+$', ''); %! expected_expression = regexprep (argn(2, :), '\s+$', ''); %! observed_as_char = disp (observed_value)(1 : end - 1); %! expected_as_char = disp(expected_value)(1 : end - 1); %! warning ([observed_expression, " != ", expected_expression, ... %! "\n ", observed_as_char, " != ", expected_as_char]); %! endif %!endfunction ## minimal_empty_test %!test %! assert (isempty (infsup)); %!test %! assert (isequal (isempty (infsup (-inf, inf)), false)); %!test %! assert (isequal (isempty (infsup (1.0, 2.0)), false)); %!test %! assert (isequal (isempty (infsup (-1.0, 2.0)), false)); %!test %! assert (isequal (isempty (infsup (-3.0, -2.0)), false)); %!test %! assert (isequal (isempty (infsup (-inf, 2.0)), false)); %!test %! assert (isequal (isempty (infsup (-inf, 0.0)), false)); %!test %! assert (isequal (isempty (infsup (-inf, -0.0)), false)); %!test %! assert (isequal (isempty (infsup (0.0, inf)), false)); %!test %! assert (isequal (isempty (infsup (-0.0, inf)), false)); %!test %! assert (isequal (isempty (infsup (-0.0, 0.0)), false)); %!test %! assert (isequal (isempty (infsup (0.0, -0.0)), false)); %!test %! assert (isequal (isempty (infsup (0.0, 0.0)), false)); %!test %! assert (isequal (isempty (infsup (-0.0, -0.0)), false)); ## minimal_empty_dec_test %!test %! assert (isempty (infsupdec (empty, "trv"))); %!test %! assert (isequal (isempty (infsupdec (-inf, inf, "def")), false)); %!test %! assert (isequal (isempty (infsupdec (1.0, 2.0, "com")), false)); %!test %! assert (isequal (isempty (infsupdec (-1.0, 2.0, "trv")), false)); %!test %! assert (isequal (isempty (infsupdec (-3.0, -2.0, "dac")), false)); %!test %! assert (isequal (isempty (infsupdec (-inf, 2.0, "trv")), false)); %!test %! assert (isequal (isempty (infsupdec (-inf, 0.0, "trv")), false)); %!test %! assert (isequal (isempty (infsupdec (-inf, -0.0, "trv")), false)); %!test %! assert (isequal (isempty (infsupdec (0.0, inf, "def")), false)); %!test %! assert (isequal (isempty (infsupdec (-0.0, inf, "trv")), false)); %!test %! assert (isequal (isempty (infsupdec (-0.0, 0.0, "com")), false)); %!test %! assert (isequal (isempty (infsupdec (0.0, -0.0, "trv")), false)); %!test %! assert (isequal (isempty (infsupdec (0.0, 0.0, "trv")), false)); %!test %! assert (isequal (isempty (infsupdec (-0.0, -0.0, "trv")), false)); ## minimal_entire_test %!test %! assert (isequal (isentire (infsup), false)); %!test %! assert (isentire (infsup (-inf, inf))); %!test %! assert (isequal (isentire (infsup (1.0, 2.0)), false)); %!test %! assert (isequal (isentire (infsup (-1.0, 2.0)), false)); %!test %! assert (isequal (isentire (infsup (-3.0, -2.0)), false)); %!test %! assert (isequal (isentire (infsup (-inf, 2.0)), false)); %!test %! assert (isequal (isentire (infsup (-inf, 0.0)), false)); %!test %! assert (isequal (isentire (infsup (-inf, -0.0)), false)); %!test %! assert (isequal (isentire (infsup (0.0, inf)), false)); %!test %! assert (isequal (isentire (infsup (-0.0, inf)), false)); %!test %! assert (isequal (isentire (infsup (-0.0, 0.0)), false)); %!test %! assert (isequal (isentire (infsup (0.0, -0.0)), false)); %!test %! assert (isequal (isentire (infsup (0.0, 0.0)), false)); %!test %! assert (isequal (isentire (infsup (-0.0, -0.0)), false)); ## minimal_entire_dec_test %!test %! assert (isequal (isentire (infsupdec (empty, "trv")), false)); %!test %! assert (isentire (infsupdec (-inf, inf, "trv"))); %!test %! assert (isentire (infsupdec (-inf, inf, "def"))); %!test %! assert (isentire (infsupdec (-inf, inf, "dac"))); %!test %! assert (isequal (isentire (infsupdec (1.0, 2.0, "com")), false)); %!test %! assert (isequal (isentire (infsupdec (-1.0, 2.0, "trv")), false)); %!test %! assert (isequal (isentire (infsupdec (-3.0, -2.0, "dac")), false)); %!test %! assert (isequal (isentire (infsupdec (-inf, 2.0, "trv")), false)); %!test %! assert (isequal (isentire (infsupdec (-inf, 0.0, "trv")), false)); %!test %! assert (isequal (isentire (infsupdec (-inf, -0.0, "trv")), false)); %!test %! assert (isequal (isentire (infsupdec (0.0, inf, "def")), false)); %!test %! assert (isequal (isentire (infsupdec (-0.0, inf, "trv")), false)); %!test %! assert (isequal (isentire (infsupdec (-0.0, 0.0, "com")), false)); %!test %! assert (isequal (isentire (infsupdec (0.0, -0.0, "trv")), false)); %!test %! assert (isequal (isentire (infsupdec (0.0, 0.0, "trv")), false)); %!test %! assert (isequal (isentire (infsupdec (-0.0, -0.0, "trv")), false)); ## minimal_nai_dec_test %!test %! assert (isequal (isnai (infsupdec (-inf, inf, "trv")), false)); %!test %! assert (isequal (isnai (infsupdec (-inf, inf, "def")), false)); %!test %! assert (isequal (isnai (infsupdec (-inf, inf, "dac")), false)); %!test %! assert (isequal (isnai (infsupdec (1.0, 2.0, "com")), false)); %!test %! assert (isequal (isnai (infsupdec (-1.0, 2.0, "trv")), false)); %!test %! assert (isequal (isnai (infsupdec (-3.0, -2.0, "dac")), false)); %!test %! assert (isequal (isnai (infsupdec (-inf, 2.0, "trv")), false)); %!test %! assert (isequal (isnai (infsupdec (-inf, 0.0, "trv")), false)); %!test %! assert (isequal (isnai (infsupdec (-inf, -0.0, "trv")), false)); %!test %! assert (isequal (isnai (infsupdec (0.0, inf, "def")), false)); %!test %! assert (isequal (isnai (infsupdec (-0.0, inf, "trv")), false)); %!test %! assert (isequal (isnai (infsupdec (-0.0, 0.0, "com")), false)); %!test %! assert (isequal (isnai (infsupdec (0.0, -0.0, "trv")), false)); %!test %! assert (isequal (isnai (infsupdec (0.0, 0.0, "trv")), false)); %!test %! assert (isequal (isnai (infsupdec (-0.0, -0.0, "trv")), false)); ## minimal_equal_test %!test %! assert (eq (infsup (1.0, 2.0), infsup (1.0, 2.0))); %! assert (infsup (1.0, 2.0) == infsup (1.0, 2.0)); %!test %! assert (isequal (eq (infsup (1.0, 2.1), infsup (1.0, 2.0)), false)); %! assert (isequal (infsup (1.0, 2.1) == infsup (1.0, 2.0), false)); %!test %! assert (eq (infsup, infsup)); %! assert (infsup == infsup); %!test %! assert (isequal (eq (infsup, infsup (1.0, 2.0)), false)); %! assert (isequal (infsup == infsup (1.0, 2.0), false)); %!test %! assert (eq (infsup (-inf, inf), infsup (-inf, inf))); %! assert (infsup (-inf, inf) == infsup (-inf, inf)); %!test %! assert (isequal (eq (infsup (1.0, 2.4), infsup (-inf, inf)), false)); %! assert (isequal (infsup (1.0, 2.4) == infsup (-inf, inf), false)); %!test %! assert (eq (infsup (1.0, inf), infsup (1.0, inf))); %! assert (infsup (1.0, inf) == infsup (1.0, inf)); %!test %! assert (isequal (eq (infsup (1.0, 2.4), infsup (1.0, inf)), false)); %! assert (isequal (infsup (1.0, 2.4) == infsup (1.0, inf), false)); %!test %! assert (eq (infsup (-inf, 2.0), infsup (-inf, 2.0))); %! assert (infsup (-inf, 2.0) == infsup (-inf, 2.0)); %!test %! assert (isequal (eq (infsup (-inf, 2.4), infsup (-inf, 2.0)), false)); %! assert (isequal (infsup (-inf, 2.4) == infsup (-inf, 2.0), false)); %!test %! assert (eq (infsup (-2.0, 0.0), infsup (-2.0, 0.0))); %! assert (infsup (-2.0, 0.0) == infsup (-2.0, 0.0)); %!test %! assert (eq (infsup (-0.0, 2.0), infsup (0.0, 2.0))); %! assert (infsup (-0.0, 2.0) == infsup (0.0, 2.0)); %!test %! assert (eq (infsup (-0.0, -0.0), infsup (0.0, 0.0))); %! assert (infsup (-0.0, -0.0) == infsup (0.0, 0.0)); %!test %! assert (eq (infsup (-0.0, 0.0), infsup (0.0, 0.0))); %! assert (infsup (-0.0, 0.0) == infsup (0.0, 0.0)); %!test %! assert (eq (infsup (0.0, -0.0), infsup (0.0, 0.0))); %! assert (infsup (0.0, -0.0) == infsup (0.0, 0.0)); ## minimal_equal_dec_test %!test %! assert (eq (infsupdec (1.0, 2.0, "def"), infsupdec (1.0, 2.0, "trv"))); %! assert (infsupdec (1.0, 2.0, "def") == infsupdec (1.0, 2.0, "trv")); %!test %! assert (isequal (eq (infsupdec (1.0, 2.1, "trv"), infsupdec (1.0, 2.0, "trv")), false)); %! assert (isequal (infsupdec (1.0, 2.1, "trv") == infsupdec (1.0, 2.0, "trv"), false)); %!test %! assert (eq (infsupdec (empty, "trv"), infsupdec (empty, "trv"))); %! assert (infsupdec (empty, "trv") == infsupdec (empty, "trv")); %!test %! assert (isequal (eq (infsupdec (empty, "trv"), infsupdec (1.0, 2.0, "trv")), false)); %! assert (isequal (infsupdec (empty, "trv") == infsupdec (1.0, 2.0, "trv"), false)); %!test %! assert (isequal (eq (infsupdec (empty, "trv"), infsupdec (1.0, 2.0, "trv")), false)); %! assert (isequal (infsupdec (empty, "trv") == infsupdec (1.0, 2.0, "trv"), false)); %!test %! assert (eq (infsupdec (-inf, inf, "def"), infsupdec (-inf, inf, "trv"))); %! assert (infsupdec (-inf, inf, "def") == infsupdec (-inf, inf, "trv")); %!test %! assert (isequal (eq (infsupdec (1.0, 2.4, "trv"), infsupdec (-inf, inf, "trv")), false)); %! assert (isequal (infsupdec (1.0, 2.4, "trv") == infsupdec (-inf, inf, "trv"), false)); %!test %! assert (eq (infsupdec (1.0, inf, "trv"), infsupdec (1.0, inf, "trv"))); %! assert (infsupdec (1.0, inf, "trv") == infsupdec (1.0, inf, "trv")); %!test %! assert (isequal (eq (infsupdec (1.0, 2.4, "def"), infsupdec (1.0, inf, "trv")), false)); %! assert (isequal (infsupdec (1.0, 2.4, "def") == infsupdec (1.0, inf, "trv"), false)); %!test %! assert (eq (infsupdec (-inf, 2.0, "trv"), infsupdec (-inf, 2.0, "trv"))); %! assert (infsupdec (-inf, 2.0, "trv") == infsupdec (-inf, 2.0, "trv")); %!test %! assert (isequal (eq (infsupdec (-inf, 2.4, "def"), infsupdec (-inf, 2.0, "trv")), false)); %! assert (isequal (infsupdec (-inf, 2.4, "def") == infsupdec (-inf, 2.0, "trv"), false)); %!test %! assert (eq (infsupdec (-2.0, 0.0, "trv"), infsupdec (-2.0, 0.0, "trv"))); %! assert (infsupdec (-2.0, 0.0, "trv") == infsupdec (-2.0, 0.0, "trv")); %!test %! assert (eq (infsupdec (-0.0, 2.0, "def"), infsupdec (0.0, 2.0, "trv"))); %! assert (infsupdec (-0.0, 2.0, "def") == infsupdec (0.0, 2.0, "trv")); %!test %! assert (eq (infsupdec (-0.0, -0.0, "trv"), infsupdec (0.0, 0.0, "trv"))); %! assert (infsupdec (-0.0, -0.0, "trv") == infsupdec (0.0, 0.0, "trv")); %!test %! assert (eq (infsupdec (-0.0, 0.0, "def"), infsupdec (0.0, 0.0, "trv"))); %! assert (infsupdec (-0.0, 0.0, "def") == infsupdec (0.0, 0.0, "trv")); %!test %! assert (eq (infsupdec (0.0, -0.0, "trv"), infsupdec (0.0, 0.0, "trv"))); %! assert (infsupdec (0.0, -0.0, "trv") == infsupdec (0.0, 0.0, "trv")); ## minimal_subset_test %!test %! assert (subset (infsup, infsup)); %!test %! assert (subset (infsup, infsup (0.0, 4.0))); %!test %! assert (subset (infsup, infsup (-0.0, 4.0))); %!test %! assert (subset (infsup, infsup (-0.1, 1.0))); %!test %! assert (subset (infsup, infsup (-0.1, 0.0))); %!test %! assert (subset (infsup, infsup (-0.1, -0.0))); %!test %! assert (subset (infsup, infsup (-inf, inf))); %!test %! assert (isequal (subset (infsup (0.0, 4.0), infsup), false)); %!test %! assert (isequal (subset (infsup (-0.0, 4.0), infsup), false)); %!test %! assert (isequal (subset (infsup (-0.1, 1.0), infsup), false)); %!test %! assert (isequal (subset (infsup (-inf, inf), infsup), false)); %!test %! assert (subset (infsup (0.0, 4.0), infsup (-inf, inf))); %!test %! assert (subset (infsup (-0.0, 4.0), infsup (-inf, inf))); %!test %! assert (subset (infsup (-0.1, 1.0), infsup (-inf, inf))); %!test %! assert (subset (infsup (-inf, inf), infsup (-inf, inf))); %!test %! assert (subset (infsup (1.0, 2.0), infsup (1.0, 2.0))); %!test %! assert (subset (infsup (1.0, 2.0), infsup (0.0, 4.0))); %!test %! assert (subset (infsup (1.0, 2.0), infsup (-0.0, 4.0))); %!test %! assert (subset (infsup (0.1, 0.2), infsup (0.0, 4.0))); %!test %! assert (subset (infsup (0.1, 0.2), infsup (-0.0, 4.0))); %!test %! assert (subset (infsup (-0.1, -0.1), infsup (-4.0, 3.4))); %!test %! assert (subset (infsup (0.0, 0.0), infsup (-0.0, -0.0))); %!test %! assert (subset (infsup (-0.0, -0.0), infsup (0.0, 0.0))); %!test %! assert (subset (infsup (-0.0, 0.0), infsup (0.0, 0.0))); %!test %! assert (subset (infsup (-0.0, 0.0), infsup (0.0, -0.0))); %!test %! assert (subset (infsup (0.0, -0.0), infsup (0.0, 0.0))); %!test %! assert (subset (infsup (0.0, -0.0), infsup (-0.0, 0.0))); ## minimal_subset_dec_test %!test %! assert (subset (infsupdec (empty, "trv"), infsupdec (0.0, 4.0, "trv"))); %!test %! assert (subset (infsupdec (empty, "trv"), infsupdec (-0.0, 4.0, "def"))); %!test %! assert (subset (infsupdec (empty, "trv"), infsupdec (-0.1, 1.0, "trv"))); %!test %! assert (subset (infsupdec (empty, "trv"), infsupdec (-0.1, 0.0, "trv"))); %!test %! assert (subset (infsupdec (empty, "trv"), infsupdec (-0.1, -0.0, "trv"))); %!test %! assert (subset (infsupdec (empty, "trv"), infsupdec (-inf, inf, "trv"))); %!test %! assert (isequal (subset (infsupdec (0.0, 4.0, "trv"), infsupdec (empty, "trv")), false)); %!test %! assert (isequal (subset (infsupdec (-0.0, 4.0, "def"), infsupdec (empty, "trv")), false)); %!test %! assert (isequal (subset (infsupdec (-0.1, 1.0, "trv"), infsupdec (empty, "trv")), false)); %!test %! assert (isequal (subset (infsupdec (-inf, inf, "trv"), infsupdec (empty, "trv")), false)); %!test %! assert (subset (infsupdec (0.0, 4.0, "trv"), infsupdec (-inf, inf, "trv"))); %!test %! assert (subset (infsupdec (-0.0, 4.0, "trv"), infsupdec (-inf, inf, "trv"))); %!test %! assert (subset (infsupdec (-0.1, 1.0, "trv"), infsupdec (-inf, inf, "trv"))); %!test %! assert (subset (infsupdec (-inf, inf, "trv"), infsupdec (-inf, inf, "trv"))); %!test %! assert (subset (infsupdec (1.0, 2.0, "trv"), infsupdec (1.0, 2.0, "trv"))); %!test %! assert (subset (infsupdec (1.0, 2.0, "trv"), infsupdec (0.0, 4.0, "trv"))); %!test %! assert (subset (infsupdec (1.0, 2.0, "def"), infsupdec (-0.0, 4.0, "def"))); %!test %! assert (subset (infsupdec (0.1, 0.2, "trv"), infsupdec (0.0, 4.0, "trv"))); %!test %! assert (subset (infsupdec (0.1, 0.2, "trv"), infsupdec (-0.0, 4.0, "def"))); %!test %! assert (subset (infsupdec (-0.1, -0.1, "trv"), infsupdec (-4.0, 3.4, "trv"))); %!test %! assert (subset (infsupdec (0.0, 0.0, "trv"), infsupdec (-0.0, -0.0, "trv"))); %!test %! assert (subset (infsupdec (-0.0, -0.0, "trv"), infsupdec (0.0, 0.0, "def"))); %!test %! assert (subset (infsupdec (-0.0, 0.0, "trv"), infsupdec (0.0, 0.0, "trv"))); %!test %! assert (subset (infsupdec (-0.0, 0.0, "trv"), infsupdec (0.0, -0.0, "trv"))); %!test %! assert (subset (infsupdec (0.0, -0.0, "def"), infsupdec (0.0, 0.0, "trv"))); %!test %! assert (subset (infsupdec (0.0, -0.0, "trv"), infsupdec (-0.0, 0.0, "trv"))); ## minimal_less_test %!test %! assert (le (infsup, infsup)); %! assert (infsup <= infsup); %!test %! assert (isequal (le (infsup (1.0, 2.0), infsup), false)); %! assert (isequal (infsup (1.0, 2.0) <= infsup, false)); %!test %! assert (isequal (le (infsup, infsup (1.0, 2.0)), false)); %! assert (isequal (infsup <= infsup (1.0, 2.0), false)); %!test %! assert (le (infsup (-inf, inf), infsup (-inf, inf))); %! assert (infsup (-inf, inf) <= infsup (-inf, inf)); %!test %! assert (isequal (le (infsup (1.0, 2.0), infsup (-inf, inf)), false)); %! assert (isequal (infsup (1.0, 2.0) <= infsup (-inf, inf), false)); %!test %! assert (isequal (le (infsup (0.0, 2.0), infsup (-inf, inf)), false)); %! assert (isequal (infsup (0.0, 2.0) <= infsup (-inf, inf), false)); %!test %! assert (isequal (le (infsup (-0.0, 2.0), infsup (-inf, inf)), false)); %! assert (isequal (infsup (-0.0, 2.0) <= infsup (-inf, inf), false)); %!test %! assert (isequal (le (infsup (-inf, inf), infsup (1.0, 2.0)), false)); %! assert (isequal (infsup (-inf, inf) <= infsup (1.0, 2.0), false)); %!test %! assert (isequal (le (infsup (-inf, inf), infsup (0.0, 2.0)), false)); %! assert (isequal (infsup (-inf, inf) <= infsup (0.0, 2.0), false)); %!test %! assert (isequal (le (infsup (-inf, inf), infsup (-0.0, 2.0)), false)); %! assert (isequal (infsup (-inf, inf) <= infsup (-0.0, 2.0), false)); %!test %! assert (le (infsup (0.0, 2.0), infsup (0.0, 2.0))); %! assert (infsup (0.0, 2.0) <= infsup (0.0, 2.0)); %!test %! assert (le (infsup (0.0, 2.0), infsup (-0.0, 2.0))); %! assert (infsup (0.0, 2.0) <= infsup (-0.0, 2.0)); %!test %! assert (le (infsup (0.0, 2.0), infsup (1.0, 2.0))); %! assert (infsup (0.0, 2.0) <= infsup (1.0, 2.0)); %!test %! assert (le (infsup (-0.0, 2.0), infsup (1.0, 2.0))); %! assert (infsup (-0.0, 2.0) <= infsup (1.0, 2.0)); %!test %! assert (le (infsup (1.0, 2.0), infsup (1.0, 2.0))); %! assert (infsup (1.0, 2.0) <= infsup (1.0, 2.0)); %!test %! assert (le (infsup (1.0, 2.0), infsup (3.0, 4.0))); %! assert (infsup (1.0, 2.0) <= infsup (3.0, 4.0)); %!test %! assert (le (infsup (1.0, 3.5), infsup (3.0, 4.0))); %! assert (infsup (1.0, 3.5) <= infsup (3.0, 4.0)); %!test %! assert (le (infsup (1.0, 4.0), infsup (3.0, 4.0))); %! assert (infsup (1.0, 4.0) <= infsup (3.0, 4.0)); %!test %! assert (le (infsup (-2.0, -1.0), infsup (-2.0, -1.0))); %! assert (infsup (-2.0, -1.0) <= infsup (-2.0, -1.0)); %!test %! assert (le (infsup (-3.0, -1.5), infsup (-2.0, -1.0))); %! assert (infsup (-3.0, -1.5) <= infsup (-2.0, -1.0)); %!test %! assert (le (infsup (0.0, 0.0), infsup (-0.0, -0.0))); %! assert (infsup (0.0, 0.0) <= infsup (-0.0, -0.0)); %!test %! assert (le (infsup (-0.0, -0.0), infsup (0.0, 0.0))); %! assert (infsup (-0.0, -0.0) <= infsup (0.0, 0.0)); %!test %! assert (le (infsup (-0.0, 0.0), infsup (0.0, 0.0))); %! assert (infsup (-0.0, 0.0) <= infsup (0.0, 0.0)); %!test %! assert (le (infsup (-0.0, 0.0), infsup (0.0, -0.0))); %! assert (infsup (-0.0, 0.0) <= infsup (0.0, -0.0)); %!test %! assert (le (infsup (0.0, -0.0), infsup (0.0, 0.0))); %! assert (infsup (0.0, -0.0) <= infsup (0.0, 0.0)); %!test %! assert (le (infsup (0.0, -0.0), infsup (-0.0, 0.0))); %! assert (infsup (0.0, -0.0) <= infsup (-0.0, 0.0)); ## minimal_less_dec_test %!test %! assert (isequal (le (infsupdec (1.0, 2.0, "trv"), infsupdec (empty, "trv")), false)); %! assert (isequal (infsupdec (1.0, 2.0, "trv") <= infsupdec (empty, "trv"), false)); %!test %! assert (isequal (le (infsupdec (empty, "trv"), infsupdec (1.0, 2.0, "def")), false)); %! assert (isequal (infsupdec (empty, "trv") <= infsupdec (1.0, 2.0, "def"), false)); %!test %! assert (isequal (le (infsupdec (1.0, 2.0, "trv"), infsupdec (empty, "trv")), false)); %! assert (isequal (infsupdec (1.0, 2.0, "trv") <= infsupdec (empty, "trv"), false)); %!test %! assert (isequal (le (infsupdec (empty, "trv"), infsupdec (1.0, 2.0, "trv")), false)); %! assert (isequal (infsupdec (empty, "trv") <= infsupdec (1.0, 2.0, "trv"), false)); %!test %! assert (le (infsupdec (-inf, inf, "trv"), infsupdec (-inf, inf, "trv"))); %! assert (infsupdec (-inf, inf, "trv") <= infsupdec (-inf, inf, "trv")); %!test %! assert (isequal (le (infsupdec (1.0, 2.0, "def"), infsupdec (-inf, inf, "trv")), false)); %! assert (isequal (infsupdec (1.0, 2.0, "def") <= infsupdec (-inf, inf, "trv"), false)); %!test %! assert (isequal (le (infsupdec (0.0, 2.0, "trv"), infsupdec (-inf, inf, "trv")), false)); %! assert (isequal (infsupdec (0.0, 2.0, "trv") <= infsupdec (-inf, inf, "trv"), false)); %!test %! assert (isequal (le (infsupdec (-0.0, 2.0, "trv"), infsupdec (-inf, inf, "trv")), false)); %! assert (isequal (infsupdec (-0.0, 2.0, "trv") <= infsupdec (-inf, inf, "trv"), false)); %!test %! assert (isequal (le (infsupdec (-inf, inf, "trv"), infsupdec (1.0, 2.0, "trv")), false)); %! assert (isequal (infsupdec (-inf, inf, "trv") <= infsupdec (1.0, 2.0, "trv"), false)); %!test %! assert (isequal (le (infsupdec (-inf, inf, "trv"), infsupdec (0.0, 2.0, "def")), false)); %! assert (isequal (infsupdec (-inf, inf, "trv") <= infsupdec (0.0, 2.0, "def"), false)); %!test %! assert (isequal (le (infsupdec (-inf, inf, "trv"), infsupdec (-0.0, 2.0, "trv")), false)); %! assert (isequal (infsupdec (-inf, inf, "trv") <= infsupdec (-0.0, 2.0, "trv"), false)); %!test %! assert (le (infsupdec (0.0, 2.0, "trv"), infsupdec (0.0, 2.0, "trv"))); %! assert (infsupdec (0.0, 2.0, "trv") <= infsupdec (0.0, 2.0, "trv")); %!test %! assert (le (infsupdec (0.0, 2.0, "trv"), infsupdec (-0.0, 2.0, "trv"))); %! assert (infsupdec (0.0, 2.0, "trv") <= infsupdec (-0.0, 2.0, "trv")); %!test %! assert (le (infsupdec (0.0, 2.0, "def"), infsupdec (1.0, 2.0, "def"))); %! assert (infsupdec (0.0, 2.0, "def") <= infsupdec (1.0, 2.0, "def")); %!test %! assert (le (infsupdec (-0.0, 2.0, "trv"), infsupdec (1.0, 2.0, "trv"))); %! assert (infsupdec (-0.0, 2.0, "trv") <= infsupdec (1.0, 2.0, "trv")); %!test %! assert (le (infsupdec (1.0, 2.0, "trv"), infsupdec (1.0, 2.0, "trv"))); %! assert (infsupdec (1.0, 2.0, "trv") <= infsupdec (1.0, 2.0, "trv")); %!test %! assert (le (infsupdec (1.0, 2.0, "trv"), infsupdec (3.0, 4.0, "def"))); %! assert (infsupdec (1.0, 2.0, "trv") <= infsupdec (3.0, 4.0, "def")); %!test %! assert (le (infsupdec (1.0, 3.5, "trv"), infsupdec (3.0, 4.0, "trv"))); %! assert (infsupdec (1.0, 3.5, "trv") <= infsupdec (3.0, 4.0, "trv")); %!test %! assert (le (infsupdec (1.0, 4.0, "trv"), infsupdec (3.0, 4.0, "trv"))); %! assert (infsupdec (1.0, 4.0, "trv") <= infsupdec (3.0, 4.0, "trv")); %!test %! assert (le (infsupdec (-2.0, -1.0, "trv"), infsupdec (-2.0, -1.0, "trv"))); %! assert (infsupdec (-2.0, -1.0, "trv") <= infsupdec (-2.0, -1.0, "trv")); %!test %! assert (le (infsupdec (-3.0, -1.5, "trv"), infsupdec (-2.0, -1.0, "trv"))); %! assert (infsupdec (-3.0, -1.5, "trv") <= infsupdec (-2.0, -1.0, "trv")); %!test %! assert (le (infsupdec (0.0, 0.0, "trv"), infsupdec (-0.0, -0.0, "trv"))); %! assert (infsupdec (0.0, 0.0, "trv") <= infsupdec (-0.0, -0.0, "trv")); %!test %! assert (le (infsupdec (-0.0, -0.0, "trv"), infsupdec (0.0, 0.0, "def"))); %! assert (infsupdec (-0.0, -0.0, "trv") <= infsupdec (0.0, 0.0, "def")); %!test %! assert (le (infsupdec (-0.0, 0.0, "trv"), infsupdec (0.0, 0.0, "trv"))); %! assert (infsupdec (-0.0, 0.0, "trv") <= infsupdec (0.0, 0.0, "trv")); %!test %! assert (le (infsupdec (-0.0, 0.0, "trv"), infsupdec (0.0, -0.0, "trv"))); %! assert (infsupdec (-0.0, 0.0, "trv") <= infsupdec (0.0, -0.0, "trv")); %!test %! assert (le (infsupdec (0.0, -0.0, "def"), infsupdec (0.0, 0.0, "trv"))); %! assert (infsupdec (0.0, -0.0, "def") <= infsupdec (0.0, 0.0, "trv")); %!test %! assert (le (infsupdec (0.0, -0.0, "trv"), infsupdec (-0.0, 0.0, "trv"))); %! assert (infsupdec (0.0, -0.0, "trv") <= infsupdec (-0.0, 0.0, "trv")); ## minimal_precedes_test %!test %! assert (precedes (infsup, infsup (3.0, 4.0))); %!test %! assert (precedes (infsup (3.0, 4.0), infsup)); %!test %! assert (precedes (infsup, infsup)); %!test %! assert (isequal (precedes (infsup (1.0, 2.0), infsup (-inf, inf)), false)); %!test %! assert (isequal (precedes (infsup (0.0, 2.0), infsup (-inf, inf)), false)); %!test %! assert (isequal (precedes (infsup (-0.0, 2.0), infsup (-inf, inf)), false)); %!test %! assert (isequal (precedes (infsup (-inf, inf), infsup (1.0, 2.0)), false)); %!test %! assert (isequal (precedes (infsup (-inf, inf), infsup (-inf, inf)), false)); %!test %! assert (precedes (infsup (1.0, 2.0), infsup (3.0, 4.0))); %!test %! assert (precedes (infsup (1.0, 3.0), infsup (3.0, 4.0))); %!test %! assert (precedes (infsup (-3.0, -1.0), infsup (-1.0, 0.0))); %!test %! assert (precedes (infsup (-3.0, -1.0), infsup (-1.0, -0.0))); %!test %! assert (isequal (precedes (infsup (1.0, 3.5), infsup (3.0, 4.0)), false)); %!test %! assert (isequal (precedes (infsup (1.0, 4.0), infsup (3.0, 4.0)), false)); %!test %! assert (isequal (precedes (infsup (-3.0, -0.1), infsup (-1.0, 0.0)), false)); %!test %! assert (precedes (infsup (0.0, 0.0), infsup (-0.0, -0.0))); %!test %! assert (precedes (infsup (-0.0, -0.0), infsup (0.0, 0.0))); %!test %! assert (precedes (infsup (-0.0, 0.0), infsup (0.0, 0.0))); %!test %! assert (precedes (infsup (-0.0, 0.0), infsup (0.0, -0.0))); %!test %! assert (precedes (infsup (0.0, -0.0), infsup (0.0, 0.0))); %!test %! assert (precedes (infsup (0.0, -0.0), infsup (-0.0, 0.0))); ## minimal_precedes_dec_test %!test %! assert (precedes (infsupdec (empty, "trv"), infsupdec (3.0, 4.0, "def"))); %!test %! assert (precedes (infsupdec (3.0, 4.0, "trv"), infsupdec (empty, "trv"))); %!test %! assert (precedes (infsupdec (empty, "trv"), infsupdec (3.0, 4.0, "trv"))); %!test %! assert (precedes (infsupdec (3.0, 4.0, "trv"), infsupdec (empty, "trv"))); %!test %! assert (isequal (precedes (infsupdec (1.0, 2.0, "trv"), infsupdec (-inf, inf, "trv")), false)); %!test %! assert (isequal (precedes (infsupdec (0.0, 2.0, "trv"), infsupdec (-inf, inf, "trv")), false)); %!test %! assert (isequal (precedes (infsupdec (-0.0, 2.0, "trv"), infsupdec (-inf, inf, "trv")), false)); %!test %! assert (isequal (precedes (infsupdec (-inf, inf, "trv"), infsupdec (1.0, 2.0, "trv")), false)); %!test %! assert (isequal (precedes (infsupdec (-inf, inf, "trv"), infsupdec (-inf, inf, "trv")), false)); %!test %! assert (precedes (infsupdec (1.0, 2.0, "trv"), infsupdec (3.0, 4.0, "trv"))); %!test %! assert (precedes (infsupdec (1.0, 3.0, "trv"), infsupdec (3.0, 4.0, "def"))); %!test %! assert (precedes (infsupdec (-3.0, -1.0, "def"), infsupdec (-1.0, 0.0, "trv"))); %!test %! assert (precedes (infsupdec (-3.0, -1.0, "trv"), infsupdec (-1.0, -0.0, "trv"))); %!test %! assert (isequal (precedes (infsupdec (1.0, 3.5, "trv"), infsupdec (3.0, 4.0, "trv")), false)); %!test %! assert (isequal (precedes (infsupdec (1.0, 4.0, "trv"), infsupdec (3.0, 4.0, "trv")), false)); %!test %! assert (isequal (precedes (infsupdec (-3.0, -0.1, "trv"), infsupdec (-1.0, 0.0, "trv")), false)); %!test %! assert (precedes (infsupdec (0.0, 0.0, "trv"), infsupdec (-0.0, -0.0, "trv"))); %!test %! assert (precedes (infsupdec (-0.0, -0.0, "trv"), infsupdec (0.0, 0.0, "def"))); %!test %! assert (precedes (infsupdec (-0.0, 0.0, "trv"), infsupdec (0.0, 0.0, "trv"))); %!test %! assert (precedes (infsupdec (-0.0, 0.0, "def"), infsupdec (0.0, -0.0, "trv"))); %!test %! assert (precedes (infsupdec (0.0, -0.0, "trv"), infsupdec (0.0, 0.0, "trv"))); %!test %! assert (precedes (infsupdec (0.0, -0.0, "trv"), infsupdec (-0.0, 0.0, "trv"))); ## minimal_interior_test %!test %! assert (interior (infsup, infsup)); %!test %! assert (interior (infsup, infsup (0.0, 4.0))); %!test %! assert (isequal (interior (infsup (0.0, 4.0), infsup), false)); %!test %! assert (interior (infsup (-inf, inf), infsup (-inf, inf))); %!test %! assert (interior (infsup (0.0, 4.0), infsup (-inf, inf))); %!test %! assert (interior (infsup, infsup (-inf, inf))); %!test %! assert (isequal (interior (infsup (-inf, inf), infsup (0.0, 4.0)), false)); %!test %! assert (isequal (interior (infsup (0.0, 4.0), infsup (0.0, 4.0)), false)); %!test %! assert (interior (infsup (1.0, 2.0), infsup (0.0, 4.0))); %!test %! assert (isequal (interior (infsup (-2.0, 2.0), infsup (-2.0, 4.0)), false)); %!test %! assert (interior (infsup (-0.0, -0.0), infsup (-2.0, 4.0))); %!test %! assert (interior (infsup (0.0, 0.0), infsup (-2.0, 4.0))); %!test %! assert (isequal (interior (infsup (0.0, 0.0), infsup (-0.0, -0.0)), false)); %!test %! assert (isequal (interior (infsup (0.0, 4.4), infsup (0.0, 4.0)), false)); %!test %! assert (isequal (interior (infsup (-1.0, -1.0), infsup (0.0, 4.0)), false)); %!test %! assert (isequal (interior (infsup (2.0, 2.0), infsup (-2.0, -1.0)), false)); ## minimal_interior_dec_test %!test %! assert (interior (infsupdec (empty, "trv"), infsupdec (0.0, 4.0, "trv"))); %!test %! assert (isequal (interior (infsupdec (0.0, 4.0, "def"), infsupdec (empty, "trv")), false)); %!test %! assert (isequal (interior (infsupdec (0.0, 4.0, "trv"), infsupdec (empty, "trv")), false)); %!test %! assert (interior (infsupdec (-inf, inf, "trv"), infsupdec (-inf, inf, "trv"))); %!test %! assert (interior (infsupdec (0.0, 4.0, "trv"), infsupdec (-inf, inf, "trv"))); %!test %! assert (interior (infsupdec (empty, "trv"), infsupdec (-inf, inf, "trv"))); %!test %! assert (isequal (interior (infsupdec (-inf, inf, "trv"), infsupdec (0.0, 4.0, "trv")), false)); %!test %! assert (isequal (interior (infsupdec (0.0, 4.0, "trv"), infsupdec (0.0, 4.0, "trv")), false)); %!test %! assert (interior (infsupdec (1.0, 2.0, "def"), infsupdec (0.0, 4.0, "trv"))); %!test %! assert (isequal (interior (infsupdec (-2.0, 2.0, "trv"), infsupdec (-2.0, 4.0, "def")), false)); %!test %! assert (interior (infsupdec (-0.0, -0.0, "trv"), infsupdec (-2.0, 4.0, "trv"))); %!test %! assert (interior (infsupdec (0.0, 0.0, "def"), infsupdec (-2.0, 4.0, "trv"))); %!test %! assert (isequal (interior (infsupdec (0.0, 0.0, "trv"), infsupdec (-0.0, -0.0, "trv")), false)); %!test %! assert (isequal (interior (infsupdec (0.0, 4.4, "trv"), infsupdec (0.0, 4.0, "trv")), false)); %!test %! assert (isequal (interior (infsupdec (-1.0, -1.0, "trv"), infsupdec (0.0, 4.0, "def")), false)); %!test %! assert (isequal (interior (infsupdec (2.0, 2.0, "def"), infsupdec (-2.0, -1.0, "trv")), false)); ## minimal_strictLess_test %!test %! assert (lt (infsup, infsup)); %! assert (infsup < infsup); %!test %! assert (isequal (lt (infsup (1.0, 2.0), infsup), false)); %! assert (isequal (infsup (1.0, 2.0) < infsup, false)); %!test %! assert (isequal (lt (infsup, infsup (1.0, 2.0)), false)); %! assert (isequal (infsup < infsup (1.0, 2.0), false)); %!test %! assert (lt (infsup (-inf, inf), infsup (-inf, inf))); %! assert (infsup (-inf, inf) < infsup (-inf, inf)); %!test %! assert (isequal (lt (infsup (1.0, 2.0), infsup (-inf, inf)), false)); %! assert (isequal (infsup (1.0, 2.0) < infsup (-inf, inf), false)); %!test %! assert (isequal (lt (infsup (-inf, inf), infsup (1.0, 2.0)), false)); %! assert (isequal (infsup (-inf, inf) < infsup (1.0, 2.0), false)); %!test %! assert (isequal (lt (infsup (1.0, 2.0), infsup (1.0, 2.0)), false)); %! assert (isequal (infsup (1.0, 2.0) < infsup (1.0, 2.0), false)); %!test %! assert (lt (infsup (1.0, 2.0), infsup (3.0, 4.0))); %! assert (infsup (1.0, 2.0) < infsup (3.0, 4.0)); %!test %! assert (lt (infsup (1.0, 3.5), infsup (3.0, 4.0))); %! assert (infsup (1.0, 3.5) < infsup (3.0, 4.0)); %!test %! assert (isequal (lt (infsup (1.0, 4.0), infsup (3.0, 4.0)), false)); %! assert (isequal (infsup (1.0, 4.0) < infsup (3.0, 4.0), false)); %!test %! assert (isequal (lt (infsup (0.0, 4.0), infsup (0.0, 4.0)), false)); %! assert (isequal (infsup (0.0, 4.0) < infsup (0.0, 4.0), false)); %!test %! assert (isequal (lt (infsup (-0.0, 4.0), infsup (0.0, 4.0)), false)); %! assert (isequal (infsup (-0.0, 4.0) < infsup (0.0, 4.0), false)); %!test %! assert (isequal (lt (infsup (-2.0, -1.0), infsup (-2.0, -1.0)), false)); %! assert (isequal (infsup (-2.0, -1.0) < infsup (-2.0, -1.0), false)); %!test %! assert (lt (infsup (-3.0, -1.5), infsup (-2.0, -1.0))); %! assert (infsup (-3.0, -1.5) < infsup (-2.0, -1.0)); ## minimal_strictLess_dec_test %!test %! assert (isequal (lt (infsupdec (1.0, 2.0, "trv"), infsupdec (empty, "trv")), false)); %! assert (isequal (infsupdec (1.0, 2.0, "trv") < infsupdec (empty, "trv"), false)); %!test %! assert (isequal (lt (infsupdec (empty, "trv"), infsupdec (1.0, 2.0, "def")), false)); %! assert (isequal (infsupdec (empty, "trv") < infsupdec (1.0, 2.0, "def"), false)); %!test %! assert (isequal (lt (infsupdec (1.0, 2.0, "def"), infsupdec (empty, "trv")), false)); %! assert (isequal (infsupdec (1.0, 2.0, "def") < infsupdec (empty, "trv"), false)); %!test %! assert (isequal (lt (infsupdec (empty, "trv"), infsupdec (1.0, 2.0, "def")), false)); %! assert (isequal (infsupdec (empty, "trv") < infsupdec (1.0, 2.0, "def"), false)); %!test %! assert (lt (infsupdec (-inf, inf, "trv"), infsupdec (-inf, inf, "trv"))); %! assert (infsupdec (-inf, inf, "trv") < infsupdec (-inf, inf, "trv")); %!test %! assert (isequal (lt (infsupdec (1.0, 2.0, "trv"), infsupdec (-inf, inf, "trv")), false)); %! assert (isequal (infsupdec (1.0, 2.0, "trv") < infsupdec (-inf, inf, "trv"), false)); %!test %! assert (isequal (lt (infsupdec (-inf, inf, "trv"), infsupdec (1.0, 2.0, "trv")), false)); %! assert (isequal (infsupdec (-inf, inf, "trv") < infsupdec (1.0, 2.0, "trv"), false)); %!test %! assert (isequal (lt (infsupdec (1.0, 2.0, "trv"), infsupdec (1.0, 2.0, "trv")), false)); %! assert (isequal (infsupdec (1.0, 2.0, "trv") < infsupdec (1.0, 2.0, "trv"), false)); %!test %! assert (lt (infsupdec (1.0, 2.0, "trv"), infsupdec (3.0, 4.0, "trv"))); %! assert (infsupdec (1.0, 2.0, "trv") < infsupdec (3.0, 4.0, "trv")); %!test %! assert (lt (infsupdec (1.0, 3.5, "def"), infsupdec (3.0, 4.0, "trv"))); %! assert (infsupdec (1.0, 3.5, "def") < infsupdec (3.0, 4.0, "trv")); %!test %! assert (isequal (lt (infsupdec (1.0, 4.0, "trv"), infsupdec (3.0, 4.0, "def")), false)); %! assert (isequal (infsupdec (1.0, 4.0, "trv") < infsupdec (3.0, 4.0, "def"), false)); %!test %! assert (isequal (lt (infsupdec (0.0, 4.0, "trv"), infsupdec (0.0, 4.0, "def")), false)); %! assert (isequal (infsupdec (0.0, 4.0, "trv") < infsupdec (0.0, 4.0, "def"), false)); %!test %! assert (isequal (lt (infsupdec (-0.0, 4.0, "def"), infsupdec (0.0, 4.0, "trv")), false)); %! assert (isequal (infsupdec (-0.0, 4.0, "def") < infsupdec (0.0, 4.0, "trv"), false)); %!test %! assert (isequal (lt (infsupdec (-2.0, -1.0, "def"), infsupdec (-2.0, -1.0, "def")), false)); %! assert (isequal (infsupdec (-2.0, -1.0, "def") < infsupdec (-2.0, -1.0, "def"), false)); %!test %! assert (lt (infsupdec (-3.0, -1.5, "trv"), infsupdec (-2.0, -1.0, "trv"))); %! assert (infsupdec (-3.0, -1.5, "trv") < infsupdec (-2.0, -1.0, "trv")); ## minimal_strictPrecedes_test %!test %! assert (strictprecedes (infsup, infsup (3.0, 4.0))); %!test %! assert (strictprecedes (infsup (3.0, 4.0), infsup)); %!test %! assert (strictprecedes (infsup, infsup)); %!test %! assert (isequal (strictprecedes (infsup (1.0, 2.0), infsup (-inf, inf)), false)); %!test %! assert (isequal (strictprecedes (infsup (-inf, inf), infsup (1.0, 2.0)), false)); %!test %! assert (isequal (strictprecedes (infsup (-inf, inf), infsup (-inf, inf)), false)); %!test %! assert (strictprecedes (infsup (1.0, 2.0), infsup (3.0, 4.0))); %!test %! assert (isequal (strictprecedes (infsup (1.0, 3.0), infsup (3.0, 4.0)), false)); %!test %! assert (isequal (strictprecedes (infsup (-3.0, -1.0), infsup (-1.0, 0.0)), false)); %!test %! assert (isequal (strictprecedes (infsup (-3.0, -0.0), infsup (0.0, 1.0)), false)); %!test %! assert (isequal (strictprecedes (infsup (-3.0, 0.0), infsup (-0.0, 1.0)), false)); %!test %! assert (isequal (strictprecedes (infsup (1.0, 3.5), infsup (3.0, 4.0)), false)); %!test %! assert (isequal (strictprecedes (infsup (1.0, 4.0), infsup (3.0, 4.0)), false)); %!test %! assert (isequal (strictprecedes (infsup (-3.0, -0.1), infsup (-1.0, 0.0)), false)); ## minimal_strictPrecedes_dec_test %!test %! assert (strictprecedes (infsupdec (empty, "trv"), infsupdec (3.0, 4.0, "trv"))); %!test %! assert (strictprecedes (infsupdec (3.0, 4.0, "def"), infsupdec (empty, "trv"))); %!test %! assert (strictprecedes (infsupdec (empty, "trv"), infsupdec (3.0, 4.0, "trv"))); %!test %! assert (strictprecedes (infsupdec (3.0, 4.0, "def"), infsupdec (empty, "trv"))); %!test %! assert (isequal (strictprecedes (infsupdec (1.0, 2.0, "trv"), infsupdec (-inf, inf, "trv")), false)); %!test %! assert (isequal (strictprecedes (infsupdec (-inf, inf, "trv"), infsupdec (1.0, 2.0, "trv")), false)); %!test %! assert (isequal (strictprecedes (infsupdec (-inf, inf, "trv"), infsupdec (-inf, inf, "trv")), false)); %!test %! assert (strictprecedes (infsupdec (1.0, 2.0, "trv"), infsupdec (3.0, 4.0, "trv"))); %!test %! assert (isequal (strictprecedes (infsupdec (1.0, 3.0, "def"), infsupdec (3.0, 4.0, "trv")), false)); %!test %! assert (isequal (strictprecedes (infsupdec (-3.0, -1.0, "trv"), infsupdec (-1.0, 0.0, "def")), false)); %!test %! assert (isequal (strictprecedes (infsupdec (-3.0, -0.0, "def"), infsupdec (0.0, 1.0, "trv")), false)); %!test %! assert (isequal (strictprecedes (infsupdec (-3.0, 0.0, "trv"), infsupdec (-0.0, 1.0, "trv")), false)); %!test %! assert (isequal (strictprecedes (infsupdec (1.0, 3.5, "trv"), infsupdec (3.0, 4.0, "trv")), false)); %!test %! assert (isequal (strictprecedes (infsupdec (1.0, 4.0, "trv"), infsupdec (3.0, 4.0, "def")), false)); %!test %! assert (isequal (strictprecedes (infsupdec (-3.0, -0.1, "trv"), infsupdec (-1.0, 0.0, "trv")), false)); ## minimal_disjoint_test %!test %! assert (disjoint (infsup, infsup (3.0, 4.0))); %!test %! assert (disjoint (infsup (3.0, 4.0), infsup)); %!test %! assert (disjoint (infsup, infsup)); %!test %! assert (disjoint (infsup (3.0, 4.0), infsup (1.0, 2.0))); %!test %! assert (isequal (disjoint (infsup (0.0, 0.0), infsup (-0.0, -0.0)), false)); %!test %! assert (isequal (disjoint (infsup (0.0, -0.0), infsup (-0.0, 0.0)), false)); %!test %! assert (isequal (disjoint (infsup (3.0, 4.0), infsup (1.0, 7.0)), false)); %!test %! assert (isequal (disjoint (infsup (3.0, 4.0), infsup (-inf, inf)), false)); %!test %! assert (isequal (disjoint (infsup (-inf, inf), infsup (1.0, 7.0)), false)); %!test %! assert (isequal (disjoint (infsup (-inf, inf), infsup (-inf, inf)), false)); ## minimal_disjoint_dec_test %!test %! assert (disjoint (infsupdec (empty, "trv"), infsupdec (3.0, 4.0, "def"))); %!test %! assert (disjoint (infsupdec (3.0, 4.0, "trv"), infsupdec (empty, "trv"))); %!test %! assert (disjoint (infsupdec (empty, "trv"), infsupdec (3.0, 4.0, "trv"))); %!test %! assert (disjoint (infsupdec (3.0, 4.0, "trv"), infsupdec (empty, "trv"))); %!test %! assert (disjoint (infsupdec (3.0, 4.0, "trv"), infsupdec (1.0, 2.0, "def"))); %!test %! assert (isequal (disjoint (infsupdec (0.0, 0.0, "trv"), infsupdec (-0.0, -0.0, "trv")), false)); %!test %! assert (isequal (disjoint (infsupdec (0.0, -0.0, "trv"), infsupdec (-0.0, 0.0, "trv")), false)); %!test %! assert (isequal (disjoint (infsupdec (3.0, 4.0, "def"), infsupdec (1.0, 7.0, "def")), false)); %!test %! assert (isequal (disjoint (infsupdec (3.0, 4.0, "trv"), infsupdec (-inf, inf, "trv")), false)); %!test %! assert (isequal (disjoint (infsupdec (-inf, inf, "trv"), infsupdec (1.0, 7.0, "trv")), false)); %!test %! assert (isequal (disjoint (infsupdec (-inf, inf, "trv"), infsupdec (-inf, inf, "trv")), false));
ba4c94d1e0cc577969f004b3ca7419d552a31d96
91bba043768342a4e23ee3a4ff1aa52fe67f7826
/cs/142/4/tests/test18.tst
e5ae8b6b93af7ef0b07e9d7db35c8600b8e2d2d8
[]
no_license
MaxNanasy/old-homework
6beecc3881c953c93b847f1d0d93a64ec991d6de
48b7997a49a8f111344f30787c178e1661db04bd
refs/heads/master
2016-09-08T04:37:44.932977
2010-03-02T00:48:59
2010-03-02T00:48:59
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
120
tst
test18.tst
type t1 = array 10 of int; short proc(int a) { return a; } main() { var a : t1; const c = 11; a[1] = ::proc(c); }
b8699fd05eb3ec2128a262a4209bad1c829d6e0e
449d555969bfd7befe906877abab098c6e63a0e8
/1938/CH7/EX7.14/7_14.sce
c4b009bdd2c0ccec5ac42e88a5951782ac98d519
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
423
sce
7_14.sce
clc,clear printf('Example 7.14\n\n') //subscript 1 indicates induction motor 1 P_1=350 phi_1=acos(0.7071) //lagging Q_1=P_1*tan(phi_1)//from power triangle //subscript 2 indicates induction motor 2 P_2=190 //subscript T indicates total P_T=P_1+P_2 phi_T=acos(0.9) //lagging Q_T=P_T*tan(phi_T) Q_2=Q_T-Q_1 kva_rating=sqrt(P_2^2+ Q_2^2) printf('kVA rating of synchronous motor is %.2f kVA',kva_rating)
8b0fbc422dce257b64e07c22338b15cd604595a6
449d555969bfd7befe906877abab098c6e63a0e8
/73/CH8/EX8.7/Example8_7.sci
07e0b86d984dd8cbe1f4856d9b3fb36939e18c56
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
613
sci
Example8_7.sci
//Chapter 8_Applications of Operational Amplifier //Caption : Output Voltage //Example8.7: In the summing amplifier(inverting mode) the signals to be combined are V1=3V, V2=2v, and V3=1V.The input resistor are R1=R2=R3=3 kilo ohm.The feeddback resistor Rf=1 kilo ohm. Consider ideal Op-Amp,determine Vo. //Solution: clear; clc; V1=3;//input signal V2=2;//input signal V3=1;//input signal Rf=1*10^3;//feedback resitor R1=3*10^3;//input resistor in ohm R2=R1;//input resistor in ohm R3=R2;//input resistor in ohm Vo=-(Rf/R1*V1+Rf/R2*V2+Rf/R3*V3); disp('V',Vo,'Output Voltage of summing amplifier is:')
da74d48e1884dbc92a3593a9218160aa75ca2d29
449d555969bfd7befe906877abab098c6e63a0e8
/2273/CH4/EX4.18/ex4_18.sce
744b0c640f5477383ade3d6dac3fbc127ff8ddb4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
720
sce
ex4_18.sce
//find capacitive reactance to neutral and charging current clear; clc; //soltion //given r=1.25*10^-2;//m//radius of the conductor f=50//frequency Vph=132*1000/sqrt(3);//phase voltage Eo=8.85*10^-12//permitivity of the air drr_=sqrt(7^2+(4+4)^2); dbb_=drr_; dyy_=9; Dsr=sqrt(r*drr_); Dsy=sqrt(r*dyy_); Dsb=sqrt(r*dbb_); Ds=(Dsr*Dsy*Dsb)^(1/3); dry=sqrt(4^2+(4.5-3.5)^2); dry_=sqrt((9-1)^2+4^2); Dry=sqrt(dry*dry_); Dyb=Dry; Dbr=sqrt(8*7); Dm=(Dyb*Dbr*Dry)^(1/3); C=2*%pi*Eo/(log(Dm/Ds)); printf("Capacitance per phase= %.2f*10^-9 F/km\n",C*10^12); Cr=1/(2*%pi*f*C*1000); printf("Capacitance per phase= %.2f kΩ\n",Cr/1000); Ic=(2*%pi*f*C*1000)*Vph; printf("Charging current= %.4f A/km",Ic);
e9c2ddfb1630d84574503d62e3891ec6cc99ba6a
449d555969bfd7befe906877abab098c6e63a0e8
/1787/CH2/EX2.4/Exa2_4.sce
915b834c5740d4268345a68c7eadea1f8ddf37a2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
386
sce
Exa2_4.sce
//Exa 2.4 clc; clear; close; //given data ni=2.5*10^13;//in atoms/cm^3 rho=0.039;//in ohm-cm SIGMAn=1/rho;//in (ohm-cm)^-1 e=1.6*10^-19;//constant MUe=3600;//in cm^2/V-s //formula : SIGMAn=n*e*MUe=Nd*e*MUe Nd=SIGMAn/(e*MUe);//in atoms/cm^3 n=Nd;//in atoms/cm^3 p=ni^2/n;//in atoms/cm^3 disp(n,"Electron density in atoms/cm^3 : "); disp(p,"Hole density in atoms/cm^3 : ");
5b82d47dcd8a0a6438b39fad7f64c3db518ef7a6
449d555969bfd7befe906877abab098c6e63a0e8
/3637/CH2/EX2.26/Ex2_26.sce
d60e03cb459b6d15f8cded52ee41c746c282b28f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ex2_26.sce
//problem 26 pagenumber 2.109 //given freq1=1.5e3;//hz bw=450;//hz //determine qualityfactor f1 f2 q=freq1/bw;format(7); f1=freq1*sqrt(1+(1/(4*q*q)))-freq1/(2*q); f2=freq1*sqrt(1+(1/(4*q*q)))+bw/2;format(4); disp('Quality factor = '+string(q));format(7);//no unit disp('Lower frequency = '+string(f1)+' Hz'); disp('Upper frequency = '+string(f2)+' Hz');
349389c8d86d9220810a233e110a7e6639a84504
bdf572464541387fa0028a1ff861ceb55e81938e
/Numerical Analysis/bisection.sce
5947baba5f55a81c66a3c404b85f934b2c396069
[]
no_license
akarshsomani/Scilab-programs
20c4a52a51e5689d12d491218988aa037f09a21a
18199a7f424e3711765965e3d3b12e149a5d497a
refs/heads/master
2020-03-14T10:00:36.585002
2018-04-30T04:59:39
2018-04-30T04:59:39
131,557,212
0
1
null
2018-10-31T14:52:07
2018-04-30T04:55:36
Scilab
UTF-8
Scilab
false
false
576
sce
bisection.sce
// Finding root of equation f(x)=x^3-5x+1 function [r]=root(xl,xu,et) // xl = Lower limit guess // xu = Upper limit guess // et = Error tolerance xm = (xl+xu)/2 p = poly([1,-5,0,1],'x','c') while %t y1 = horner(p,xl) y2 = horner(p,xm) if y1*y2 < 0 then xu = xm elseif y1*y2 > 0 then xl = xm else break end xmo = xm xm = (xl + xu)/2 e = abs(xm - xmo)/xm * 100 if(e<et) then break end end r = xm endfunction
19e43978af4a2828fe7948731a896a655718662c
262ac6443426f24d5d9b13945d080affb0bd6d9b
/opgaves/ggdn/run-me-first.sce
725d16d87b55251b8087c7c166e9603b08e606da
[]
no_license
slegers/Scilab
9ebd1d486f28cf66e04b1552ad6e94ea4bc98a0b
1b5dc3434def66355dafeb97c01916736a936301
refs/heads/master
2021-01-12T01:42:01.493578
2017-01-09T10:54:09
2017-01-09T10:54:09
78,420,343
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,821
sce
run-me-first.sce
funcprot(0) test_cases = list() test_cases($+1) = struct('input', struct('ns', [20]), 'output', struct('n', 20)) test_cases($+1) = struct('input', struct('ns', [20,30]), 'output', struct('n', 10)) test_cases($+1) = struct('input', struct('ns', [20,30,101]), 'output', struct('n', 1)) test_cases($+1) = struct('input', struct('ns', [30,20]), 'output', struct('n', 10)) test_cases($+1) = struct('input', struct('ns', [13,29,97]), 'output', struct('n', 1)) test_cases($+1) = struct('input', struct('ns', [13,65,91]), 'output', struct('n', 13)) test_cases($+1) = struct('input', struct('ns', [10,100,1000,10000]), 'output', struct('n', 10)) test_cases($+1) = struct('input', struct('ns', [1919,1919,1919,1919]), 'output', struct('n', 1919)) function Result = test_case(index) Result = test_cases(index) endfunction function Result = test_case_count() Result = size(test_cases) endfunction function show(index) tc = test_case(index) disp('Inputs') disp('ns') disp(tc.input.ns) disp('Outputs') disp('n') disp(tc.output.n) endfunction function Result = check(index) tc = test_case(index) [n] = solve(tc.input.ns) Result = %t Result = Result & isequal(n, tc.output.n) endfunction function Result = failures() n = test_case_count() failures = [] for index = 1:n if ~check(index) then failures = [ failures, index ] end end Result = failures endfunction function report() [temp, n] = size(failures()) disp( strcat( [ "Number of test cases: ", string(test_case_count()) ] ) ) disp( strcat( [ "Number of failures: ", string(n) ] ) ) disp( strcat( [ "Number of successes: ", string(test_case_count() - n) ] ) ) if n == 0 then disp("SUCCESS") else disp("FAIL") end endfunction
f5edc8a9b644307e8996c6f0dbbbf2bdc0286028
449d555969bfd7befe906877abab098c6e63a0e8
/1919/CH1/EX1.6/Ex1_6.sce
004db91041283b2ccee102ec1667c88e238e21a4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
473
sce
Ex1_6.sce
// Theory and Problems of Thermodynamics // Chapter 1 // Basic Concepts // Example 6 clear ;clc; //Given data X_O = 0.21 // X_O = molefraction of oxygen X_N = 0.79 // X_N = molefraction of nitrogen mw_O = 32 // mw_O = molecular mass of oxygen mw_N = 28 // mw_N = molecular mass of nitrogen //Calculate mass of 1 kmol air m = X_O * mw_O + X_N * mw_N; //mass of 1 kmol air // Results mprintf('Mass of 1 kmol air = %5.2f kg', m)
24e33fa90f6bd4e065d020a1ff58cd37f35aee98
676ffceabdfe022b6381807def2ea401302430ac
/solvers/IncNavierStokesSolver/Tests/Tet_Kovasnay_SubStep.tst
1a2c1efd85a08b23acb5bf3d978b9235e4ba65e5
[ "MIT" ]
permissive
mathLab/ITHACA-SEM
3adf7a49567040398d758f4ee258276fee80065e
065a269e3f18f2fc9d9f4abd9d47abba14d0933b
refs/heads/master
2022-07-06T23:42:51.869689
2022-06-21T13:27:18
2022-06-21T13:27:18
136,485,665
10
5
MIT
2019-05-15T08:31:40
2018-06-07T14:01:54
Makefile
UTF-8
Scilab
false
false
1,012
tst
Tet_Kovasnay_SubStep.tst
<?xml version="1.0" encoding="utf-8"?> <test> <description>3D Tet Kovasnay solution using sub-stepping</description> <executable>IncNavierStokesSolver</executable> <parameters>Tet_Kovasnay_SubStep.xml</parameters> <files> <file description="Session File">Tet_Kovasnay_SubStep.xml</file> </files> <metrics> <metric type="L2" id="1"> <value variable="u" tolerance="1e-6">0.00105429</value> <value variable="v" tolerance="1e-6">0.000275093</value> <value variable="w" tolerance="1e-6">0.000218578</value> <value variable="p" tolerance="1e-6">0.001029114</value> </metric> <metric type="Linf" id="2"> <value variable="u" tolerance="1e-6">0.00900795</value> <value variable="v" tolerance="1e-6">0.0014178</value> <value variable="w" tolerance="1e-6">0.0010477</value> <value variable="p" tolerance="2e-6">0.00540266</value> </metric> </metrics> </test>
6d104b462a46f46855ab59db7f726c678a0fd83f
449d555969bfd7befe906877abab098c6e63a0e8
/416/CH15/EX15.9/exp15_9pp.sce
07991efcd56f7c31fee3c0988419b424d88c1861
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
745
sce
exp15_9pp.sce
clc clear disp("example 15.9") ng=50 //number of generator r=30 //rated power mah=10 //maximum head mih=1 //minimum head tg=12 //duration of generation efg=0.9 //efficiency of generated g=9.81 //gravity le=5 //lenght of embankment ro=1025 //density ti=r/(0.9)^2 q=ti*10^(6)/(ro*g*mah) //maximum input q=floor(q*10^2)/10^2 qw=q*ng //total quantity of water tcr=qw*tg*3600/2 //total capacity of resevoir sa=tcr/mah //surface area wbe=sa/(le*10^6) //wash behind embankment avg=r/2 te=avg*tg*365*ng //total energy output printf("quantity of water for maximum output %fm^3-sec ",q) printf("\nsurface area of reservoir %fkm^3 ",sa/10^6) printf("\nwash behind embankment %fkm \ntotal energy output %eMWh",wbe,te)
f282627101501377220a120bed4e251d1091df9c
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.1.1/macros/percent/%sir.sci
78f321d93946b55f78be79bb37edc48de3c2313c
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer", "MIT" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
907
sci
%sir.sci
function s2=%sir(i,j,s1,s2) // %sir(i,j,M,r) <=> r(i,j)=M //! //s2(i,j)=s1 if s1==[] then // insertion d'une matrice vide row=%f col=%f [m,n]=size(s2(2)) if and(size(i)==[-1 -1]) then row=%t else if and(i(:)==(1:m)') then row=%t,end end if and(size(j)==[-1 -1]) then col=%t else if and(j(:)==(1:n)') then col=%t,end end if ~row&~col then error('inserting [] in submatrix --> forbidden!'),end if row&col then s2=[],return,end if row then j1=[] for jj=1:n if ~or(jj==j) then j1=[j1 jj] ,end end s2=s2(:,j1) else i1=[] for ii=1:m if ~or(ii==i) then i1=[i1 ii] ,end end s2=s2(i1,:) end else [t,n,d]=s2(1:3),[ld,cd]=size(d),l=maxi(i),c=maxi(j) if l>ld then d(ld+1:l,:)=ones(l-ld,cd),ld=l,end if c>cd then d(:,cd+1:c)=ones(ld,c-cd),end n(i,j)=s1,[l,c]=size(s1),d(i,j)=ones(l,c) s2=list(t,n,d,s2(4)) end //end
350144e948877fc3a7c471425eece217f4cf4176
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set14/s_Material_Science_V._Rajendran_1826.zip/Material_Science_V._Rajendran_1826/CH18/EX18.2/ex18_2.sce
893becae9b482fd8fba3268d497ec89f59234e37
[]
no_license
hohiroki/Scilab_TBC
cb11e171e47a6cf15dad6594726c14443b23d512
98e421ab71b2e8be0c70d67cca3ecb53eeef1df6
refs/heads/master
2021-01-18T02:07:29.200029
2016-04-29T07:01:39
2016-04-29T07:01:39
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
217
sce
ex18_2.sce
errcatch(-1,"stop");mode(2);// Example 18.2, page no-460 r=0.12*10^-9//m eps=8.854*10^-12 alf=4*%pi*eps*r^3 printf("The electronic polarisability of an isolated Se is %.4f * 10^-40 F m^2",alf*10^40) exit();
d8c7b6638f506bc3c4b55c5909e8003cf8978501
449d555969bfd7befe906877abab098c6e63a0e8
/1697/CH3/EX3.3/Exa3_3.sce
c4ccec5ad4c252c4c2db2a88baa6e1c13a6c4157
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
436
sce
Exa3_3.sce
//Exa 3.3 clc; clear; close; //given data : le=125;//in m Irms=5;//in A lambda=1.25;//in Km lambda=lambda*10^3;//in m Rl=10;//in Ohm //radiation Resistance Rr=(80*%pi^2)*(le/lambda)^2;//in Ohm Rr=round(Rr);//in Ohm : approx disp(Rr,"Radiation resistance in Ohm : "); //Power radiated W=(Irms^2)*Rr;//in disp(W,"Power radiated in W : ") //Antenna efficiency ETA=Rr/(Rr+Rl) disp(ETA*100,"Antenna efficiency in % : ");
0a7e65f1580b92c7cfd56458a03475158bdeaaa5
449d555969bfd7befe906877abab098c6e63a0e8
/812/CH6/EX6.05/6_05.sce
c72c372cf77819fe2a3d8fd3358ebf3dc4244769
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
386
sce
6_05.sce
//flow// pathname=get_absolute_file_path('06.05.sce') filename=pathname+filesep()+'06.05-data.sci' exec(filename) //Velocity of flow at the exit(in ft/sec): V2=sqrt(2*g*(Du-Dd/12)) //Volume flow rate/width(ft^2/sec): Q=V2*Dd/12 printf("\n\nRESULTS\n\n") printf("\n\nVelocity of flow at the exit: %.3f ft/sec\n\n",V2) printf("\n\nVolume flow rate/width: %.3f ft^2/sec\n\n",Q)
dedf7cefc11489e1542453b3cfde7a67e58558a2
449d555969bfd7befe906877abab098c6e63a0e8
/61/CH13/EX13.1/ex13_1.sce
a73ef48d5760d85e7b4ebfd5d215ba58d46f4801
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
551
sce
ex13_1.sce
//ex13.1 R2=1*10^3; R1=8.2*10^3; V=15; V_REF=R2*V/(R1+R2); disp(V_REF,'V_REF in volts') V_max=12; //maximum output level of op-amp V_min=-12; //minimum output voltage of comparator f=1; //assume frequency of input wave to be 1 hertz t=0:0.001:3; V_in=5*sin(2*%pi*f.*t) clf(); subplot(121) xtitle('Input to comparator-1') plot(t,V_in) subplot(122) xtitle('Output of Comparator-1') a=bool2s(V_in>=V_REF) b=~a; y=V_max*a+V_min*b; plot(t,y) disp(V_max,'max output voltage in volts') disp(V_min,'min output voltage in volts')
02f87f1a226adb2fa477e4d0d56f5ede4888a42a
449d555969bfd7befe906877abab098c6e63a0e8
/491/CH5/EX5.16/5_16.sce
fc3cec0457b6e898b69d7f02c05dc1b20d67c1a6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
509
sce
5_16.sce
Af = 40*180; // Area of flange in mm2 V = 10500 ; // Shear force acting on cross section F = 800 ; // Allowable load in shear df = 120 ; // Distance between centroid of flange and neutral axis in mm Q = Af*df ; // First moment of cross section of flange I = (1/12)*(210*280^3) - (1/12)*(180*200^3) ; // Moment of inertia of entire cross section in mm4 f = (V*Q)/I; // Shear flow s = (2*F)/f // Spacing between the screw disp("mm",s,"The maximum permissible longitudinal spacing s of the screws is")
d6599919fd8bcad08e61322e6d3e550084131190
449d555969bfd7befe906877abab098c6e63a0e8
/2354/CH4/EX4.10/4_10.sce
5914047a970a684e9e8b1dde5362763f4d47586e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
324
sce
4_10.sce
//example 4.10 clc; funcprot(0); // Initialization of Variable m1=2; m2=8; T1=350; T2=300; P1=0.7;//bar P2=1.2;//bar Tf=315;//K cv=0.745;//heat capacity pf=(m1+m2)*Tf/(m1*T1/P1+m2*T2/P2); disp(pf,"final pressure in bar"); Q=m1*cv*(Tf-T1)+m2*cv*(Tf-T2); disp(Q,"heat transfer into the system in kJ"); clear()
127fede2b138d0d24093f82c0724f1b66de9e29d
449d555969bfd7befe906877abab098c6e63a0e8
/770/CH8/EX8.8/8_8.sce
0bd3591267992225d4a7ee24b22ca4b590c0f98d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,978
sce
8_8.sce
clear; clc; //Example - 8.8 //Page number - 300 printf("Example - 8.8 and Page number - 300\n\n"); //Given //From compressor to the expansion valve the pressure is 200 bar and from expansion valve to the inlet of compressor the pressure is 1 bar. //Point 5 is saturated liquid at 1 bar and point 6 is saturated vapour at 1 bar //It has been reported in the book that at state 1 (310 K, 1 bar) H_1 = 310.38;//[kJ/kg] //At state 2 (310 K, 200 bar) H_2 = 277.7;//[kJ/kg] //At state 5 (1 bar,saturated liquid) H_5 = -122.6;//[kJ/kg] //At state 6 (1 bar,saturated vapur) H_6 = 77.8;//[kJ/kg] //The enthalpy at point 3 is same at point 4 as the expansion is isenthalpic //The mass condensed is 1 kg and therefore m_1 = m+6 + 1 //Enthalpy balance around heat exchanger //m_2*H_2 + m_2*H_6 = m_3*H_3 + m_7*H_7 //Enthalpy balance around separator //m_4*H_4 = m_5*H_5 + m_6*H_6 //It can be seen that m_1 = m_2 = m_3 = m_4 //and m_6 = m_7 = m_1 - 1 //Substituting the values for enthalpy balance around heat exchanger we get, //m_1*H_2 + (m_1 - 1)*(H_6) = m_1*H_3 + (m_1 - 1)*H_1 //and substituting the values for enthalpy balance around seperator we get //m_1*H_3 = (1)*(-122.6) + (m_1 - 1)*77.8 //H_3 = ((1)*(-122.6) + (m_1 - 1)*77.8)/m_1 //Substituting the expression for 'H_3' in the above equation and then solving for m_1, we get deff('[y]=f(m_1)','y=m_1*H_2+(m_1-1)*(H_6)-m_1*(((1)*(-122.6) + (m_1 - 1)*77.8)/m_1)-(m_1-1)*H_1'); m_1 = fsolve(4,f);//[kg] //Thus to liquify 1 kg of air compression of m_1 kg of air is carried out. //Now substituting this value of m_1 to get the value of H_3, H_3 = ((1)*(-122.6) + (m_1 - 1)*77.8)/m_1;//[kJ/kg] //From given compressed air table we see at 200 bar and 160 K, H_3_1 = 40.2;//[kJ/kg] //At 200 bar and 180 K, H_3_2 = 79.8;//[kJ/kg] //By interpolation we get, T_3 = ((H_3 - H_3_1)*(180 - 160))/(H_3_2 - H_3_1) + 160;//[K] printf("Temperature before throttling is %f",T_3);
dcfafcf17553807b72eecf37be80bbf298673144
cb3c54411a4f3432c21524a69262b6655ba46ac1
/Calculo_Numerico/Ajuste_Logaritmico.sci
2a521a83923d8d8300e8051adff2db6442f7803f
[]
no_license
draetus/faculdade_trabalhos
ae85c0c89888c2ad956c6aa7147a801d0cdf4f9a
e9971b4478112fbe7333ad71d1b4f1620b384eb6
refs/heads/master
2022-12-30T19:39:42.191109
2020-10-16T13:12:03
2020-10-16T13:12:03
87,357,566
4
2
null
null
null
null
UTF-8
Scilab
false
false
369
sci
Ajuste_Logaritmico.sci
clear close clc valor = 15 x = [1; 2; 3; 4; 5; ;6 ;7; 8; 9; 10; 11] y = [1.7; 2.5; 3.8; 4.4; 4.9; 5.2; 5.5; 5.6; 5.8; 5.9; 6] X = [size(x,1) sum(log(x)); sum(log(x)) sum(log(x)^2)] Y = [sum(y); sum(log(x).*y)] A = X\Y a = A(2,1) b = exp(A(1,1)/A(2,1)) resultado = a*log(b*valor) disp (resultado, "Resultado: ") disp (b, "b: ", a, "a: ") disp ("f(x) = a*log(b*x)")
ca6fac76646f7487a5bc84034d5e60f68716f179
449d555969bfd7befe906877abab098c6e63a0e8
/2870/CH9/EX9.3/Ex9_3.sce
dc8d4e9ccb3c096052688dd114a5c3b19a152af0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,134
sce
Ex9_3.sce
clc;clear; //Example 9.3 //given data V1=117; T1=80+460;//in R P1=14.7; r=18; rc=2; //constants used R=0.3704;//in psia ft^3/lbm R cp=0.240;//in Btu/lbm R cv=0.171;//in Btu/lbm R //from Table A-2Ea k=1.4; //calculations V2=V1/r; V3=rc*V2; V4=V1; //Process 1-2 T2=T1*(V1/V2)^(k-1); P2=P1*(V1/V2)^k; T2=round(T2); P2=round(P2); disp('Process 1-2'); disp(T2,'temperature in R'); disp(P2,'pressure in psia'); //Process 2-3 P3=P2; T3=T2*(V3/V2); T3=round(T3); P3=round(P3); disp('Process 2-3'); disp(T3,'temperature in R'); disp(P3,'pressure in psia'); //Process 3-4 T4=T3*(V3/V4)^(k-1); P4=P3*(V3/V4)^k; T4=round(T4); P4=round(P4); disp('Process 3-4'); disp(T4,'temperature in R'); disp(P4,'pressure in psia'); m=P1*V1/(R*T1)/1728;//factor of 1728 to covert to ft^3 from in^3 Qin=m*cp*(T3-T2); Qout=m*cv*(T4-T1); Wnet=Qin-Qout ; disp(Wnet,'work output in Btu'); nth=Wnet/Qin; disp(nth,'thermal efficiency'); MEP=Wnet/(V1-V2)*778.17*12;//factor of 778.17 and 12 to convert to lbf ft and in from Btu and ft respectively MEP=round(MEP); disp(MEP,'mean effective pressure in psia')
fa866da8a7dfa386b2cfdb29442f3c895bc4b2f5
449d555969bfd7befe906877abab098c6e63a0e8
/3544/CH2/EX2.54/Ex2_54.sce
fc780337154cb972ff1c76845d72d436413cbe25
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
748
sce
Ex2_54.sce
// Diffie-Hellman key exchange n = 11 // Two prime numbers g = 7 //need not be kept secret printf("n: %d\ng: %d\n",n,g) x = 3 // Alice's secret random number A = modulo((g^x),n) // Alice's message to Bob //A = 2 y = 6 // Bob's secret random number B = modulo((g^y),n) // Bob's message to Alice //B = 4 printf("x: %d\ny: %d\nA: %d\nB: %d\n",x,y,A,B) K1 = modulo((B^x),n) // Alice's key //K1 = 9 K2 = modulo((A^y),n) // Bob's key //K2 = 9 printf('Alice''s Key %d\n',K1) printf('Bob''s Key %d',K2) // K1 = K2, thus both Alice and Bob have the same key
1f687c61d7372b85c83233a044f8a1e632d1eaa6
449d555969bfd7befe906877abab098c6e63a0e8
/389/CH12/EX12.4/Example12_4.sce
5fa7f283b7f52a4152176ff97be46eaa4a95117c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,136
sce
Example12_4.sce
clear; clc; // Illustration 12.4 // Page: 676 printf('Illustration 12.4 - Page: 676\n\n'); // Solution (a) //***Data***// // For rectangular pan: l = 0.7;// [m] b = 0.7;// [m] zS = 0.025;// [m] zM = 0.0008;// [m] d = 0.1;// [m] Y1 = 0.01;// [kg water/kg dry air] TempG = 65;// [OC] v = 3;// [m/s] TempR = 120;// [OC] //*************// // From Table 7.1: (Pg 234) vH = (0.00283+(0.00456*Y1))*(TempG+273);// [cubic m/kg dry air] Density_G = (1+Y1)/vH;// [kg/cubic m] G = v*Density_G;// [kg/square m.s] de = 4*d*l/(2*(l+d));// [m] // From Eqn. 12.20: hc = 5.90*G^0.71/de^0.29;// [W/square m.K] // Assume: e = 0.94; // Estimate: TempS = 38;// [OC] // From Eqn. 12.14: hR = e*5.729*10^(-8)*((273+TempR)^4-(273+TempS)^4)/((273+TempR)-(273+TempS)); A = l*b;// [square m] Am = A;// [square m] As = 4*l*zS;// [square m] Au = Am+As;// [square m] // Thermal Coductivities: kM = 45;// [W/m.K] kS = 3.5;// [W/m.K] // By Eqn. 12.16: Uk = 1/(((1/hc)*(A/Au))+((zM/kM)*(A/Au))+((zS/kS)*(A/Am)));// [W/squre m.K] // From Table 7.1: (Pg 234) Cs = 1005+(1884*Y1);// [kJ/kg] // At estimated 38 OC lambdaS = 2411.4;// [kJ/kg] // From Eqn. 12.18: // (Ys-Y1)*lambdaS*10^3/Cs = ((1+(Uk/hc))*(TempG-Temps))+((hR/hC)*(TempR-TempS)) // On Simplifying: // Ys = 0.0864-(10.194*10^(-4)*TempS) // The eqn. is solved simultaneously with the saturated humidity curve of the psychometric chart for the air water mixture. // From Fig. 12.12: (Pg 677) Ys = 0.0460;// [kg water/kg dry air] TempS = 39;// [OC] // At 39 OC lambdaS = 2409.7;// [kJ/kg] // From Eqn. 12.17: Nc = (((hc+Uk)*(TempG-TempS))+(hR*(TempR-TempS)))/(lambdaS*10^3);// [kg water evaporated/square m.s] printf("The Evaporation Rate: %e kg/s\n",Nc*A); // Solution (b) // When no radiation or conduction of heat through the solid occurs, the drying surface assumes wet bulb temparature of the air. // From Fig. 12.12 (Pg 677) TempS = 28.5;// [OC] Ys = 0.025;// [kg water/kg dry air] lambdaS = 2435;// [kJ/kg] // From Eqn. 12.17: Nc = hc*(TempG-TempS)/(lambdaS*10^3);// [kg/aquare m.s] printf("The Evaporation Rate: %e kg/s\n",Nc*A);
abdf6cc04f26aa00349dc5f7b7cd7dcd7159a4ad
c247bce84b3facd1a13b48e7417327c40c8b3898
/FOPID/stability.sci
de447471c7d2b1a7b19a429d60bcba4057a0e2f3
[]
no_license
AstroSayan/FuzzyFOPID
9de9fa761301da6ae1f5dfe7b8e7e8214f3b472b
ea0e31e8fa0b36e407de9dfa466cf46b583e4103
refs/heads/main
2023-04-26T19:18:30.590337
2021-05-13T18:27:32
2021-05-13T18:27:32
367,137,779
2
0
null
null
null
null
UTF-8
Scilab
false
false
644
sci
stability.sci
function S=stability(n,np,d,dp,f,N,w) exec('C:\Users\SAYAN\Documents\FuzzyFOPID\fotf.sci'); G=fotf(n,np,d,dp,f,N,w); G=syslin('c',G); z=roots(G.num); p=roots(G.den); pr=real(p); nu=0; ns=0; up=0; sp=0; temp=0; for i=1:length(p) if pr(i)>0 then nu = nu+1; up(nu)=p(i); elseif pr(i)<0 ns = ns+1; sp(ns)=p(i); temp=1; else disp('The system has no poles') end end disp(p,'Pole(s) of the system:') if length(sp)>0 & temp==1 then disp([sp],'Stable pole(s):') end if length(up)>0 & up~=0 then disp([up],'Unstable pole(s):') end if nu>0 then disp('Unstable System'); S=0; else disp('Stable System'); S=1; end endfunction
83fee344563417814d622175f11c4dd50f8c6305
f26729da8f4278193be7d8f15e38bad1e43c0376
/sdr_rcv.sdr.tst
25d280ca548f31e27530dc00e955ceed336f8f9c
[]
no_license
shaktixcool/MQ-study-notes
09325eaa468f6aadfc5af2e3d6ff0ca6a31f11ec
bb75cdbd861b267dcd5011d057a7b31dc819cb08
refs/heads/master
2020-03-25T19:34:21.805882
2016-12-04T15:30:44
2016-12-04T15:30:44
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
344
tst
sdr_rcv.sdr.tst
define Qremote (QR) + rname (QL) + rqmname (QM2) + xmitq (QX) + REPLACE DEFINE QLOCAL (QX) + USAGE (XMITQ) + REPLACE DEFINE CHANNEL (C) + CHLTYPE (SDR) + TRPTYPE (TCP) + <<<<<<< HEAD CONNAME ('127.0.0.1 (1415)') + ======= CONNAME ('192.168.189.128 (1419)') + >>>>>>> 74ae287e84ef602f7e3710e6f0f843de3d01d5f4 XMITQ (QX) + REPLACE
3c8c824961c9af05a466dcdb9bfae36206a7a0cb
449d555969bfd7befe906877abab098c6e63a0e8
/2093/CH5/EX5.24/exa_5_24.sce
c3440234b3f30f7cec1e85e43fe02c764c0ff2ac
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
435
sce
exa_5_24.sce
// Exa 5.24 clc; clear; close; // Given data A=100; Af= 10; f_L= 100;// in Hz f_H= 10;// in kHz // Af= A/(1+A*Bita) Bita= 1/Af-1/A; f_desh_L= f_L/(1+A*Bita);// in Hz f_desh_H= f_H/(1+A*Bita);// in kHz disp(f_desh_L,"Low frequency in Hz is : ") disp(f_desh_H,"High frequency in kHz is : ") // Note: In the book Calculation to find the value of high frequency i.e. f_desh_H is wrong so the answer in the book is wrong
33dd4d17ac40768c826e5172459285fd06b360aa
449d555969bfd7befe906877abab098c6e63a0e8
/1514/CH5/EX5.4/5_4.sce
4caaf06324272b3b9d6b2126f3836ccf6ea4ede8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
595
sce
5_4.sce
//chapter 5 //example 5.4 //page 158 clear; clc ; //given hie=2.1;//input resistance in kohm hfe=75;//forward voltage gain hic=hie; hib=1+hfe; Zb=2.1+(76*5);//input impedance printf("\nInput Impedance (Zb)=%.1f kohm",Zb); //Circuit input impedance Zi=1/((1/Zb)+(1/10)+(1/10)); printf("\nCircuit input impedance(Zi)=%.2f kohm",Zi); //output impedance Ze=1000*((2.1+(1/(1.2)))/76); printf("\nOutput impedance(Ze)=%.1f ohm",Ze); //Circuit output impedance Zo=(Ze*5*1000)/(Ze+5*1000); printf("\nCircuit output impedance(Zo)=%.1f ohm",Zo); Av=1; printf("\nVoltage gain is approximately %d",Av);
12756fff40c5418a1c6c30b61d4ffad949a71d5f
449d555969bfd7befe906877abab098c6e63a0e8
/587/CH8/EX8.4/example8_4.sce
aef022e041a7dd2ea20495c06c5e9224ca9a41f2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,043
sce
example8_4.sce
clear; clc; //Example8.4[Pressure Drop in a Water tube] Tw=15;//temp of water while entering[degree Celcius] rho=999.1;//[kg/m^3] mu=1.138*10^(-3);//Viscosity[kg/m.s] id=0.05;//Internal diameter[m] V=5.5*10^(-3);//Flow rate[m^3/s] l=60;//length of tube[m] e=0.002*10^(-3);//[m] //Solution:- v=V/(%pi*(id^2)*(1/4));//Mean Velocity[m/s] Re=rho*v*id/mu; disp(Re,"Reynolds Number is") //Flow is turbulent r=e/id;//Relative roughness of the tube function[Func]=fric(fac) Func(1)=(1/(fac(1)^(1/2)))+(2*log((0.00004/3.7)+(2.51/(122900*fac(1)^(1/2))))); deff('[Func]=fric(fac)',['fric_1=(1/(fac(1)^(1/2)))+(2*log((0.00004/3.7)+(2.51/(122900*fac(1)^(1/2)))))']) endfunction xa = 3.99*10^-3; xs = fric(xa);) disp(xs,"Friction Factor is") del_P=xs*l*rho*(v^2)/(2*id);//[kPa] disp("Pa",del_P,"The pressure drop is") W_pump=V*del_P;//[W] disp("W",W_pump,"The required poer input tp overcome the frictional losses in the tube is")
e7ab720aae1cd97a4919c371a8a1041b4743c9ad
449d555969bfd7befe906877abab098c6e63a0e8
/2534/CH7/EX7.10/Ex7_10.sce
8fe3b85a865a3b15b68f9b59940d9b40644170df
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
274
sce
Ex7_10.sce
//Ex7_10 clc delta_IC = 0.01*10^-3 delta_beta = 5 disp("delta_IC = "+string(delta_IC)+"A")//change of collector current disp("delta_beta = "+string(delta_beta)+"A")//change in current gain disp("S'''' = delta_IC/delta_beta = "+string(delta_IC/delta_beta))//stability
d5e8c9432886eaad166f524fd439fc228b34b809
449d555969bfd7befe906877abab098c6e63a0e8
/2087/CH4/EX4.31/example4_31.sce
5f4d57a654fbdc678c199c891e1d2c3e125d249e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
715
sce
example4_31.sce
//example 4.31 //calculate ordinate of 9 hr unit hydrograph clc;funcprot(0); //given t=[0:3:45]; //time O=[0 9 20 35 49 43 35 28 22 17 12 9 6 3 0 0]; //ordinate of 2 hr unit hydrograph of(1)=0; of(2)=0; for i=3:16 of(i)=O(i-2)+of(i-2); //offset ordinate end for i=1:16 s(i)=O(i)+of(i); //ordinate of s-curve end of1(3)=0; for i=4:16 of1(i)=s(i-3); //offset of s-curve end mprintf("ordinates of 9 hrs unit hydrograph:"); for i=1:16 y(i)=s(i)-of1(i); u(i)=2*y(i)/3; //ordinate of 9 hrs unit hydrograph u(i)=round(u(i)*10)/10; mprintf("\n%f",u(i)); end
58426783690129ea39dde4bc89a6ffd3ef257dad
f782561b1f8fe3d916355f7823306c0ddfcd4e1c
/Assignment 3/CLA4bitHigherOrder/AdderSubtractor16bit.tst
9ad22e6242d5a514b9e08014b2cda85677ee61d2
[]
no_license
rohit01010/Computer-System-Design
17866493199ecea3e65c15558d6e598b552fd537
24609e7712e0f996ebc468c7d45d5cfafad0da87
refs/heads/main
2023-06-21T21:28:29.274768
2021-07-19T16:23:52
2021-07-19T16:23:52
387,509,305
1
0
null
null
null
null
UTF-8
Scilab
false
false
1,049
tst
AdderSubtractor16bit.tst
load AdderSubtractor16bit.hdl; output-file AdderSubtractor16bit.out; output-list x%B1.16.1 y%B1.16.1 signed%B3.1.3 a%B3.1.3 sum%B1.16.1 of%B3.1.3; set x %B1001010011001011, set y %B0100110100101010, set signed 0, set a 1, eval, output; set x %B1100101001001110, set y %B0101110101001000, set signed 0, set a 1, eval, output; set x %B0110001101001011, set y %B0001010101001100, set signed 0, set a 0, eval, output; set x %B0101101001101010, set y %B0010001101010101, set signed 1, set a 1, eval, output; set x %B0101110101001010, set y %B0010011010101011, set signed 1, set a 1, eval, output; set x %B1111000111101101, set y %B1010110010101000, set signed 1, set a 1, eval, output; set x %B1100100101101100, set y %B1010100010100010, set signed 1, set a 1, eval, output; set x %B1011001001001010, set y %B0010010001001001, set signed 1, set a 1, eval, output; set x %B1100011001001001, set y %B0010001110110010, set signed 1, set a 0, eval, output; set x %B0110010001001010, set y %B1001011010100010, set signed 1, set a 0, eval, output;
1646cb3cb574223b35ebec97a93d0338d89b77e0
1d7cb1dbfad2558a4145c06cbe3f5fa3fc6d2c08
/Scilab/SparamToolBox/SparamToolbox/v1.0/x86/builder.sce
45ebe091546ce4c4e064ba360f1a3775d95547e9
[]
no_license
lrayzman/SI-Scripts
5b5f6a8e4ae19ccff53b8dab7b5773e0acde710d
9ab161c6deff2a27c9da906e37aa68964fabb036
refs/heads/master
2020-09-25T16:23:23.389526
2020-02-09T02:13:46
2020-02-09T02:13:46
66,975,754
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,322
sce
builder.sce
// Copyright (C) 2008 - INRIA // Copyright (C) 2009 - DIGITEO // This file is released into the public domain mode(-1); lines(0); TOOLBOX_NAME = "SparamToolbox"; TOOLBOX_TITLE = "S-parameters Toolbox"; toolbox_dir = get_absolute_file_path("builder.sce"); // Check Scilab's version // ============================================================================= try v = getversion("scilab"); catch error(gettext("Scilab 5.2 or more is required.")); end if v(2) < 2 then // new API in scilab 5.2 error(gettext('Scilab 5.2 or more is required.')); end // Check development_tools module avaibility // ============================================================================= if ~with_module('development_tools') then error(msprintf(gettext('%s module not installed."),'development_tools')); end // Action // ============================================================================= tbx_builder_macros(toolbox_dir); tbx_builder_src(toolbox_dir); tbx_builder_gateway(toolbox_dir); tbx_builder_help(toolbox_dir); tbx_build_loader(TOOLBOX_NAME, toolbox_dir); tbx_build_cleaner(TOOLBOX_NAME, toolbox_dir); // Clean variables // ============================================================================= clear toolbox_dir TOOLBOX_NAME TOOLBOX_TITLE;
5b50a1812334ea34a7c70cc87355aea30853ac85
f42e0a9f61003756d40b8c09ebfe5dd926081407
/TP5/traceProthero.sci
c5d2b1b8c1fd50801caff010531acee84e990d36
[]
no_license
BenFradet/MT09
04fe085afaef9f8c8d419a3824c633adae0c007a
d37451249f2df09932777e2fd64d43462e3d6931
refs/heads/master
2020-04-14T02:47:55.441807
2014-12-22T17:34:50
2014-12-22T17:34:50
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
375
sci
traceProthero.sci
function[] = traceProthero(x0, t0, T, N) exec('pointMilieu.sci', -1); exec('prothero.sci', -1); deff('[y] = g(x)', 'y = sin(%pi * x)'); x = pointMilieu(x0, t0, T, N, prothero); t = zeros(1:N); h = T / N; for i = 1:N t(i) = t0 + i * h; end y = ode(x0, t0, t, prothero); plot(t, x, 'r'); plot(t, y, 'b'); endfunction
ac826952760f36aa92e960fec494ba0731727cb6
449d555969bfd7befe906877abab098c6e63a0e8
/3850/CH24/EX24.2/Ex24_2.sce
09f923f8cfb534f546cd7d5a2382e930b13dab53
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
380
sce
Ex24_2.sce
//To calculate the rms speed of hydrogen molecules at the same temperature //Example 24.2 clear; clc; v1=490;//rms speed of nitrogen at 273 Kelvin m1=28;//molecular weight of nitrogen m2=2;//molecular weight of hydrogen v2=v1*sqrt(m1/m2);//rms speed of hydrogen at 273 Kelvin printf("rms speed of hydrogen=%d m/s (wrong answer given in the book)",v2);
c76e1d27d1ee254205a090f153531bc2ebb25bb8
4bbc2bd7e905b75d38d36d8eefdf3e34ba805727
/ee_scicoslab/utils/clear_inst_vars.sce
799bb68f278d58c9801664b5430b2b02eac34636
[]
no_license
mannychang/erika2_Scicos-FLEX
397be88001bdef59c0515652a365dbd645d60240
12bb5aa162fa6b6fd6601e0dacc972d7b5f508ba
refs/heads/master
2021-02-08T17:01:20.857172
2012-07-10T12:18:28
2012-07-10T12:18:28
244,174,890
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,392
sce
clear_inst_vars.sce
// *********************************************************** // * ScicosLab Pack Installer return script * // * Requires: Scicoslab v4.4.1 * // * Built/Tested On: XP, Windows 7 * // * Description: Clear variables used in conditional * // * instructions. * // * Copyright (c) 2012 Evidence Srl * // * Author: Dario Di Stefano, Evidence * // *********************************************************** if exists('ans_inst_dialog_up')==1 clear ans_inst_dialog ans_inst_dialog_up end if exists('visualc_path_up')==1 clear visualc_path visualc_path_up end if exists('vcansw_retry_up')==1 clear vcansw_retry vcansw_retry_up end if exists('answ_c30_up')==1 clear answ_c30 answ_c30_up end if exists('c30_asm30_paths_up')==1 clear c30_asm30_paths c30_asm30_paths_up end if exists('answ_retry_up')==1 clear answ_retry answ_retry_up end if exists('ans_old_inst_rm_up')==1 clear ans_old_inst_rm ans_old_inst_rm_up end if exists('ans_inst_go_up')==1 clear ans_inst_go ans_inst_go_up end if exists('answ_dot_scilab_up')==1 clear answ_dot_scilab answ_dot_scilab_up end if exists('ans_reg_fix_up')==1 clear ans_reg_fix ans_reg_fix_up end
7423ecfb47a26e8c63144174775bc55ec2444db2
449d555969bfd7befe906877abab098c6e63a0e8
/965/CH4/EX4.31/31.sci
5fbbc162128c077a460e2a66778cbcc820af45ee
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
31.sci
clc; clear all; disp("Time for cooling") L=20/1000;//m ti=150;// degree C ta=30;//degree C hw=100;// W/(m^2.C) ha=20;// W/(m^2.C) t=90;// degree C rho=8800;//kg/m^3 c=400;// J/kg.C k=360;//W/(m.C) As=4*3.1416*R^2; Lc=L/2;//m Bi=h*Lc/k; C=120; tau=-rho*L*c*log((t-ta)/(ti-ta))/C disp("minutes",tau/60," time, Tau =")
8939e92799c0496380e22237dc268de2e7ea52fd
449d555969bfd7befe906877abab098c6e63a0e8
/1052/CH3/EX3.3/3.sce
f00473b3ede5dc7c12640fe7e963fac81e4c67a7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
617
sce
3.sce
clc; //Example 3.3 //Page no. 26 printf("Example 3.3 Page no. 26\n\n") //given at 30 degree temerature //properties of water from appendix A.2 density(rho),surface tension(sigma) rho=996 sigma=0.071 printf("rho=%f\kg/m^3\n surface tension (sigma)=%f N/m\n",rho,sigma) theta=0//negligible angle of contact g=9.807 h=0.001//less than one milimeter printf("theta=%f degree \n g=%f m/s^2\n h=%f m\n",theta,g,h) R=(2*sigma*cos(0))/(rho*g*h)//by capiilary rise equation D=2*R printf("R=%f m\n D=%f m\n",R,D) //if the tube diameter is greater than 0.029075 mm, then the capillary rise will be less than 1mm
57984a0ea1a90e9291a12b2e7d7591a339d23e5c
727092dff86e9d034d021bbc56565d9336b988aa
/Códigos CN/RS2_integração.sci
47f1da5b6eb51c4764f4361c8844096deda33dab
[]
no_license
lucasdksan/Numerical-computing
c54b855bd50f2a06b1970086f2da63c28883f287
a5a5863499bdf46003437140e3fa3123fc4960f8
refs/heads/master
2023-06-24T16:13:01.094230
2021-07-29T15:57:00
2021-07-29T15:57:00
278,514,165
0
0
null
null
null
null
UTF-8
Scilab
false
false
273
sci
RS2_integração.sci
function I = RS2(a,b,n) h = (a-b)/n; x = a:h:b; y = f(x); I = y(1); for i = 2:n if modulo(i,3) == 1 I = I + 2*y(i); else I = I + 3*y(i); end end I = (3*h/8)*(I + y(n+1)); endfunction
1a40aeed38b1a53d31da1184813159e5e0324279
1bb72df9a084fe4f8c0ec39f778282eb52750801
/test/TF33.prev.tst
7e078a9d65631cae91054d55b1db1c3e1ddbaeab
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gfis/ramath
498adfc7a6d353d4775b33020fdf992628e3fbff
b09b48639ddd4709ffb1c729e33f6a4b9ef676b5
refs/heads/master
2023-08-17T00:10:37.092379
2023-08-04T07:48:00
2023-08-04T07:48:00
30,116,803
2
0
null
null
null
null
UTF-8
Scilab
false
false
618
tst
TF33.prev.tst
considerNonPrimitive Expanding for base=3, level=3, reasons+features=base,primitive,same,similiar igtriv,norm Refined variables=a,b,c [0+1a,0+1b,0+1c]: unknown -> [1] [0,0,0] a³+3b³-9c³ ---------------- level 0 expanding queue[0]^-1,meter=[3,1,1]: a³+3b³-9c³ [0+3a,0+1b,0+1c]: unknown -> [1] [0,0,0] 9a³+b³-3c³ endexp[0] ---------------- level 1 expanding queue[1]^0,meter=[1,3,1]: 9a³+b³-3c³ [0+3a,0+3b,0+1c]: unknown -> [2] [0,0,0] 3a³+9b³-c³ endexp[1] ---------------- level 2 expanding queue[2]^1,meter=[1,1,3]: 3a³+9b³-c³ [0+3a,0+3b,0+3c]: non-primitive endexp[2] Proof [3] mod 3: a³+3b³-9c³
4b31ff40e64e94dfff8e4634f72ad0e773676dfd
449d555969bfd7befe906877abab098c6e63a0e8
/1301/CH25/EX25.9/ex25_9.sce
13877c6a1f25ae8d2a423d1616ca29da611d69fe
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
406
sce
ex25_9.sce
clc; m=70; //mass in g a=14.01; //atomic mass moles=m/a; //moles h=1.008; //atomic mass of hydrogen mass=3*moles*h; //mass of H disp(moles,"Moles of N = "); //displaying result disp(mass,"Mass of H = "); //displaying result ma=15+70; //mass of ammonia disp((mass/ma)*100,"Proportion of Hydrogen = "); //displaying result disp((m/ma)*100,"Proportion of Nitrogen = "); //displaying result
9a125faf24ebd731438b016f25a8ab0ec4a82124
449d555969bfd7befe906877abab098c6e63a0e8
/68/CH9/EX9.1/ex1.sce
46ce239cc7f63b08906d6580fd7987666fa742b1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,942
sce
ex1.sce
// Example 9.1 Design of two-stage CMOS op-amp A_v=4000; // (V/V) V_A=20; // (V) k_p=80*10^-6; // k'_n=k_n (A/V^2) k_n=200*10^-6; // k'_p=k_P (A/V^2) V_SS=1.65; // (V) V_DD=1.65; // (V) V_tn=0.5; // (V) V_tp=0.5; // (V) C_1=0.2*10^-12; // (F) C_2=0.8*10^-12; // (F) I_D=100*10^-6; // (A) V_OV=sqrt(V_A^2/A_v); WbyL_1=I_D*2/(V_OV^2*k_p); // WbyL_1=(W/L)_1 disp(WbyL_1,"Required (W/L) ratio for Q_1") WbyL_2=WbyL_1; // WbyL_2=(W/L)_2 disp(WbyL_2,"Required (W/L) ratio for Q_2") WbyL_3=I_D*2/(V_OV^2*k_n); // WbyL_3=(W/L)_3 disp(WbyL_3,"Required (W/L) ratio for Q_3") WbyL_4=WbyL_3; // WbyL_4=(W/L)_4 disp(WbyL_4,"Required (W/L) ratio for Q_4") I_D=200*10^-6; WbyL_5=I_D*2/(V_OV^2*k_p); // WbyL_5=(W/L)_5 disp(WbyL_5,"Required (W/L) ratio for Q_5") I_D=500*10^-6; WbyL_7=2.5*WbyL_5; // WbyL_7=(W/L)_7 disp(WbyL_7,"Required (W/L) ratio for Q_7") WbyL_6=I_D*2/(V_OV^2*k_n); // WbyL_6=(W/L)_6 disp(WbyL_6,"Required (W/L) ratio for Q_6") WbyL_8=0.1*WbyL_5; // WbyL_8=(W/L)_8 disp(WbyL_8,"Required (W/L) ratio for Q_8") V_ICMmin=-V_SS+V_OV+V_tn-V_tp; disp(V_ICMmin,"The lowest value of input common mode voltage") V_ICMmax=V_DD-V_OV-V_OV-V_tp; disp(V_ICMmax,"The highest value of input common mode voltage") v_omin=-V_SS+V_OV; disp(v_omin,"The lowest value of output swing allowable") v_omax=V_DD-V_OV; disp(v_omax,"The highest value of output swing allowable") R_o=20/(2*0.5); disp(R_o,"Input resistance is practically infinite and output reistance is (ohm)") G_m2=2*I_D/V_OV; disp(G_m2,"G_m2 (A/V)") f_P2=3.2*10^-3/(2*%pi*C_2); disp(f_P2,"f_P2 (Hz)") R=1/G_m2; disp(R,"To move the transmission zero to s=infinite , r value selected as (ohm)") f_t=f_P2*tand(15); // Phase margin of 75 degrees , thus phase shift due to seccond pole must be 15 degrees disp(f_t,"f_t (Hz)") G_m1=2*100*10^-6/V_OV; // I_D = 100uA C_C1=G_m1/(2*%pi*f_t); disp(C_C1,"C_C1 (F)") SR=2*%pi*f_t*V_OV; disp(SR,"SR (V/s)")
4d7018ed074f0f056e96d907660c359d4dc715c5
a5f0fbcba032f945a9ee629716f6487647cafd5f
/Development/Algorithms/Polynomial Regression/Polynomial Regression.sci
053e860fe4215d251f128fcac7b5c6ffa0199b76
[]
no_license
SoumitraAgarwal/Scilab-gsoc
692c00e3fb7a5faf65082e6c23765620f4ecdf35
678e8f80c8a03ef0b9f4c1173bdda7f3e16d716f
refs/heads/master
2021-04-15T17:55:48.334164
2018-08-07T13:43:26
2018-08-07T13:43:26
126,500,126
1
1
null
null
null
null
UTF-8
Scilab
false
false
632
sci
Polynomial Regression.sci
// Macro script for polynomial regression -- Scilab // Function to train a polynomial regression model with stated degree function cf = PolynomialRegressionTrain(x, y, degree) // Setup for polynomial regression A = ones(length(x), degree + 1) for i=1:degree A(:,i+1) = x(:).^i end cf = pinv(A)*y; endfunction // Function to predict the target variable using the coefficients from train function pred = PolynomialRegressionPredict(x, cf) // Setup for polynomial regression matrix A = ones(length(x), degree + 1) for i=1:degree A(:,i+1) = x(:).^i end // Prediction preparation pred = A*cf; endfunction
522f12408104291d4315ee2d5c24b08950910c40
7dbe475cd217e686e9689cb0536a9a73f625a85b
/Rez/univariate-lcmsr-post_mi/vrt_col_d/~LCM-SR-vrt_col_d-nat.tst
f96816483fbfe0db3e510cd148374d36d8094433
[]
no_license
jflournoy/lnt_pxvx
fac8d6b00b886fa3dc800dcaa288aa186027b9ea
3f1ddc64e4bf0aecddfa21d45f889620dbdd442d
refs/heads/master
2021-10-20T12:52:55.625243
2019-02-27T17:06:09
2019-02-27T17:06:09
64,423,528
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,999
tst
~LCM-SR-vrt_col_d-nat.tst
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 1 2 3 4 5 ________ ________ ________ ________ ________ 1 0.390727D+00 2 -0.187919D-02 0.338979D-02 3 -0.130728D-02 0.111735D-03 0.170688D-02 4 -0.117852D+01 0.545702D-01 0.135158D-01 0.124126D+03 5 -0.500749D+00 0.180399D-01 0.145495D+00 -0.919696D+00 0.566602D+02 6 -0.323790D+01 -0.276557D-01 -0.865213D-01 -0.162502D+02 -0.154049D+02 7 -0.410047D-01 -0.130909D-01 -0.462608D-03 -0.355068D+00 0.205008D+00 8 0.363755D-02 -0.968575D-03 -0.182003D-03 -0.122793D+00 -0.929205D-01 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 6 7 8 ________ ________ ________ 6 0.515301D+03 7 0.452858D+01 0.605251D+00 8 -0.256235D+01 -0.307195D-01 0.258658D-01 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 1 2 3 4 5 ________ ________ ________ ________ ________ 1 1.000 2 -0.052 1.000 3 -0.051 0.046 1.000 4 -0.169 0.084 0.029 1.000 5 -0.106 0.041 0.468 -0.011 1.000 6 -0.228 -0.021 -0.092 -0.064 -0.090 7 -0.084 -0.289 -0.014 -0.041 0.035 8 0.036 -0.103 -0.027 -0.069 -0.077 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 6 7 8 ________ ________ ________ 6 1.000 7 0.256 1.000 8 -0.702 -0.246 1.000
1843f5022966de0421924861c1f8416892efb09d
cb25571ae34589ac6513a44dcb426a7e0ac9523a
/rms.sci
b6bd574cb4936b57d6584bdefc46640ea3061d97
[]
no_license
rahul-rd/Scilab-Signal-Toolbox
1d4723e2a6e26d91d101110b5580aaaaaa6c01f1
024e6bc9172c3c354d7ae6e7a815aab7a0a92696
refs/heads/master
2021-01-10T04:54:53.979855
2016-01-11T01:56:34
2016-01-11T01:56:34
49,395,346
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,755
sci
rms.sci
function [Y] = rms(X, dim) funcprot(0); // Calling Sequence // Y=rms(X) // Y=rms(X,dim) // Parameters // X: Real or complex valued input vector or matrix. // dim: Dimension to compute maximum-to-minimum difference (Row/Column) // Description // Y=rms(X) returns the root-mean-square (RMS) level of the input X. For matrices, Y contains RMS levels computed along the first // non singleton dimension. // Y=rms(X,dim) computes root-mean-square (RMS) level of X along the dimension X // Examples // 1. a= 1:0.01:2; // y= rms(a) // y= 1.5280707 // 2. b= [1 2 3;4 5 6]; // z= rms(b) // z= [2.9154759 3.8078866 4.7434165] // 3. x= rms(b,2) // z= [ 2.1602469 ; 5.0662281 ] // Authors // Rahul Dalmia [nr, nc] = size (X); // Dimensions of Input argument calculated if (~exists('dim','local')) then if (nr==1) then // For row vector X= X.^2; s=sum(X(1,:)); // Sum of squares of all elements in row n=s/nc; Y=sqrt(n); // RMS of entire row elseif (nc==1) // For column vector X= X.^2; s=sum(X(:,1)); // Sum of squares of all elements in column n=s/nr; Y=sqrt(n); // RMS of entire column else s = zeros(1,nc); // For Matrix X=X.^2; for i=1:nc s=sum(X(:,i)); // Sum of squares of elements of column n=s/nr; Y(1,i)=sqrt(n); // RMS of each column end end else if (dim==1) then s = zeros(1, nc); // For RMS along the column X= X.^2; for i= 1:nc s=sum(X(:,i)); // Sum of squares of elements of column n=s/nr; Y(1,i)=sqrt(n); // RMS of each column end elseif (dim==2) then output = zeros(nr, 1); // For RMS along the row X= X.^2; for i= 1:nr s=sum(X(i,:)); // Sum of squares of elements of row n=s/nc; Y(i,1)=sqrt(n); // RMS of each row end end end endfunction
c2fdc551e48b492408f0d3f15c4c6b0384031adb
449d555969bfd7befe906877abab098c6e63a0e8
/3769/CH12/EX12.6/Ex12_6.sce
52210a1296b72a2b0c1e90efc8635a07811385e3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
259
sce
Ex12_6.sce
clear //Given e=10**-2 //V B=5*10**-5 //T r=0.5 //m N=1 //Calculation // A=%pi*r**2 n=(e*N)/(%pi*r**2*B) //Result printf("\n Rate of rotation of the blade is %0.1f revolutions/second",n)
8b135dc5a07a12147a36af63c18a536ffcb6bcd3
449d555969bfd7befe906877abab098c6e63a0e8
/3753/CH7/EX7.10/Ex7_10.sce
c4a614a83638a5802f845816541ccad85f5488a9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
313
sce
Ex7_10.sce
//Example number 7.10, Page number 7.17 clc;clear;close // Variable declaration lamda=0.58 // in m theta=9.5*%pi/180 // in radian n=1 // unitless d=0.5 // d200=a/sqrt(2^2+0^2+0^2)=0.5a // Calculations a=n*lamda/(2*d*sin(theta)) // 2*d*sin(theta)=n*lamda // Result printf("a = %.2f Angstorms",a)
3132a4ce5b0fd685fc420d1511177b227a7a0aa3
d145a801b8f64afaf9dd0330b93936ca3343cbdb
/test_suite/absorb.tst
bfc384b08902cfc16ce648b9b9ed4d5aa3095973
[]
no_license
ChemCryst/crystals
0fff27ff8576b7c7199e1eaa671407d50132b98e
8087c68d7f05b903473cee1cb131c06f819dc660
refs/heads/master
2023-08-17T16:36:03.675124
2023-06-26T10:54:29
2023-06-26T10:54:29
152,602,292
2
0
null
2023-06-26T10:54:30
2018-10-11T14:09:45
Roff
UTF-8
Scilab
false
false
4,873
tst
absorb.tst
\set time slow \rele print CROUTPUT: \TITLE ABSTEST \LIST 1 REAL 12.24 6.35 8.79 90 126.72 \LIST 2 CELL 2 C NO SYM X,Y,Z SYM -X,Y,-Z \ \ \ \ \ CAD4 KAPPA GEOMETRY - THIS IS THE 'REAL' TEST \LIST 13 DIFF GEOM=KAPPA COND WAV=0.7107 CONSTANT(1)=.5869359 .6427007 .0001788 57. TWO H=-4 -2 -1 12.23 26.97 0 -12.85 -44.52 TWO H= 1 3 2 12.10 -4.19 0 100.86 48.97 END \HKLI READ 9 FREE UNIT=DATA \ READ SETTINGS FROM INPUT STRAEM - IMPORTANT FOR LAST REFLECTIONS INPUT H K L /FO/ SIGMA THETA PHI OMEGA KAPPA ABS FULL YES PHI 24 2 PHIV 0 10 15 20 25 30 35 40 50 60 70 80 90 95 100 CONT 105 110 115 120 130 140 150 160 170 PHIH 2 2 -1 213 PHIC 70 63 60 58 55 58 63 70 100 136 167 192 200 207 210 213 CONT 208 180 148 123 105 91 80 75 PHIH 1 1 -1 78 PHIC 23 20 19 18 18 18 18 19 25 35 46 61 70 75 77 76 74 CONT 68 59 48 41 35 29 24 END -4 -2 -1 11217 100 12.231 -12.854 26.967 -44.518 1 3 2 11999 100 12.103 100.862 -4.187 48.967 1 1 -1 13356 100 3.97 -75.58 -39.67 112.04 1 1 -1 23639 100 3.97 -118.78 -35.13 116.88 1 1 -1 5331 100 3.97 140.99 -35.90 150.23 -512 \ \ \ \ \ USE Y290 EULARIAN ANGLES - THE ANGLES DO NOT COME FROM THE DATA \LIST 13 DIFF GEOM=Y290 COND WAV=0.7107 CONSTANT(1)=.5869359 .6427007 .0001788 57. TWO H=-4 -2 -1 12.23 12.23 -33.74 -27.59 0 TWO H= -3 -3 -1 12.77 12.77 -44.74 -45.23 0 END \HKLI READ 5 FREE UNIT=DATA \ CALCULATESETTINGS FROM MATRIX - INVALID FOR LAST REFLECTIONS INPUT H K L /FO/ SIGMA ABS FULL YES PHI 24 2 PHIV 0 10 15 20 25 30 35 40 50 60 70 80 90 95 100 CONT 105 110 115 120 130 140 150 160 170 PHIH 2 2 -1 213 PHIC 70 63 60 58 55 58 63 70 100 136 167 192 200 207 210 213 CONT 208 180 148 123 105 91 80 75 PHIH 1 1 -1 78 PHIC 23 20 19 18 18 18 18 19 25 35 46 61 70 75 77 76 74 CONT 68 59 48 41 35 29 24 END -4 -2 -1 11217 100 1 3 2 11999 100 1 1 -1 13356 100 1 1 -1 23639 100 1 1 -1 5331 100 -512 \ \ \ \ \LIST 13 \ CAD4 EULARIAN ANGLES - REFLECTION 1 1 1 WILL HAVE INCORRECT RESULTS DIFF GEOM=CAD4 COND WAV=0.7107 CONSTANT(1)=.5869359 .6427007 .0001788 57. TWO H=-4 -2 -1 12.23 12.23 -33.74 -27.59 0 TWO H= -3 -3 -1 12.77 12.77 -44.74 -45.23 0 END \HKLI READ 5 FREE UNIT=DATA \ CALCULATESETTINGS FROM MATRIX - INVALID FOR LAST REFLECTIONS INPUT H K L /FO/ SIGMA ABS FULL YES PHI 24 2 PHIV 0 10 15 20 25 30 35 40 50 60 70 80 90 95 100 CONT 105 110 115 120 130 140 150 160 170 PHIH 2 2 -1 213 PHIC 70 63 60 58 55 58 63 70 100 136 167 192 200 207 210 213 CONT 208 180 148 123 105 91 80 75 PHIH 1 1 -1 78 PHIC 23 20 19 18 18 18 18 19 25 35 46 61 70 75 77 76 74 CONT 68 59 48 41 35 29 24 END -4 -2 -1 11217 100 1 3 2 11999 100 1 1 -1 13356 100 1 1 -1 23639 100 1 1 -1 5331 100 -512 \ \ \ \ \ \ TEST ROD CORRECTION \LIST 13 DIFF GEOM=KAPPA COND WAV=0.7107 CONSTANT(1)=.5869359 .6427007 .0001788 57. TWO H=-4 -2 -1 12.23 26.97 0 -12.85 -44.52 TWO H= 1 3 2 12.10 -4.19 0 100.86 48.97 END \HKLI READ 9 FREE UNIT=DATA \ READ SETTINGS FROM INPUT STRAEM - IMPORTANT FOR LAST REFLECTIONS INPUT H K L /FO/ SIGMA THETA PHI OMEGA KAPPA ABS FULL TUBE=YES TUBE OMEGA=-57.02 CHI=0 PHI=-57.02 KAPPA=134.73 MU=.13 A[MAX]= 4 END -4 -2 -1 11217 100 12.231 -12.854 26.967 -44.518 1 3 2 11999 100 12.103 100.862 -4.187 48.967 1 1 -1 13356 100 3.97 -75.58 -39.67 112.04 1 1 -1 23639 100 3.97 -118.78 -35.13 116.88 1 1 -1 5331 100 3.97 140.99 -35.90 150.23 -512 \LIST 13 \ TEST PLATE CORRECTION DIFF GEOM=KAPPA COND WAV=0.7107 CONSTANT(1)=.5869359 .6427007 .0001788 57. TWO H=-4 -2 -1 12.23 26.97 0 -12.85 -44.52 TWO H= 1 3 2 12.10 -4.19 0 100.86 48.97 END \HKLI READ 9 FREE UNIT=DATA \ READ SETTINGS FROM INPUT STRAEM - IMPORTANT FOR LAST REFLECTIONS INPUT H K L /FO/ SIGMA THETA PHI OMEGA KAPPA ABS FULL PLATE=YES PLATE OMEGA=0 CHI=0 PHI=25.0 KAPPA=0 MU=.13 A[MAX]= 4 END -4 -2 -1 11217 100 12.231 -12.854 26.967 -44.518 1 3 2 11999 100 12.103 100.862 -4.187 48.967 1 1 -1 13356 100 3.97 -75.58 -39.67 112.04 1 1 -1 23639 100 3.97 -118.78 -35.13 116.88 1 1 -1 5331 100 3.97 140.99 -35.90 150.23 -512 \LIST 13 DIFF GEOM=KAPPA COND WAV=0.7107 CONSTANT(1)=.5869359 .6427007 .0001788 57. MATRIX .0057 -.0795 -.0932 -.0987 .0287 -.1015 .0247 .1329 -.0339 END \HKLI READ 9 FREE UNIT=DATA \ READ SETTINGS FROM INPUT STRAEM - IMPORTANT FOR LAST REFLECTIONS INPUT H K L /FO/ SIGMA THETA PHI OMEGA KAPPA ABS FULL YES PHI 24 2 PHIV 0 10 15 20 25 30 35 40 50 60 70 80 90 95 100 CONT 105 110 115 120 130 140 150 160 170 PHIH 2 2 -1 213 PHIC 70 63 60 58 55 58 63 70 100 136 167 192 200 207 210 213 CONT 208 180 148 123 105 91 80 75 PHIH 1 1 -1 78 PHIC 23 20 19 18 18 18 18 19 25 35 46 61 70 75 77 76 74 CONT 68 59 48 41 35 29 24 END -4 -2 -1 11217 100 12.231 -12.854 26.967 -44.518 1 3 2 11999 100 12.103 100.862 -4.187 48.967 1 1 -1 13356 100 3.97 -75.58 -39.67 112.04 1 1 -1 23639 100 3.97 -118.78 -35.13 116.88 1 1 -1 5331 100 3.97 140.99 -35.90 150.23 -512 \FINISH
995e2d18ee826607cfe4003336f011fc3b36dc29
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/blog/ngram/5.2_6.tst
fa83917372fcd015bb789776b85b9bd18c933271
[]
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
770,965
tst
5.2_6.tst
2 104:1 106:1 166:1 414:1 672:1 684:1 751:1 820:1 1194:1 1206:1 1510:1 1541:1 1619:1 1849:1 1897:1 1910:1 1991:1 2097:1 2249:1 2400:1 2547:1 2827:1 2862:1 2870:1 2999:1 3086:1 3322:1 3341:1 3348:1 3648:1 4146:1 4479:1 4488:1 4859:1 4867:1 4914:1 4920:1 5170:1 5437:1 5566:1 5655:1 5973:1 5980:1 6049:1 6096:2 6326:1 6738:1 6832:1 7422:1 7852:1 8004:1 8085:1 8695:1 8943:1 9325:1 9428:1 9702:3 9758:1 9999:1 10235:1 10321:1 10470:1 10686:1 10711:1 10789:1 10884:1 11583:1 11640:1 11642:1 11795:1 11932:1 12221:2 12237:1 12391:1 12401:1 13187:1 13267:1 13282:1 13669:1 13690:1 13721:1 14134:1 14149:1 14519:1 14567:1 14571:1 14580:1 14611:1 14614:1 15587:1 15707:1 15778:1 16114:1 16320:1 16357:1 16792:1 16977:1 16979:1 17075:1 17172:1 17204:1 17333:1 17417:1 17547:1 18092:1 18101:1 18137:1 18200:1 18297:1 18608:1 18645:1 18715:1 19225:1 19490:1 19496:1 19976:1 20078:1 20588:1 20941:1 21071:1 21097:1 21124:1 21686:1 21704:1 21843:1 21987:1 22076:1 22079:1 22883:67 23031:1 23521:1 23833:1 23834:1 24012:1 24097:1 24292:1 24369:1 25179:1 25498:1 26018:1 26062:1 26216:1 26385:1 26424:1 26508:1 26642:1 26999:1 27260:1 27396:1 27447:1 27460:1 27599:1 27677:1 27787:1 28000:1 28011:1 28370:1 28489:1 28582:1 28686:1 29170:1 29334:1 29419:1 30192:1 30329:1 30538:1 30552:1 30601:1 30912:1 30987:1 31148:1 31177:1 31226:1 31329:1 31413:1 31574:1 31808:1 31946:1 32219:1 32311:1 32329:1 32505:1 33098:1 33183:1 33296:1 33352:1 33537:1 33556:1 33595:1 33609:1 33734:1 34071:1 34085:1 34099:1 34157:1 34435:1 34497:2 34996:1 35042:1 35128:1 35342:1 35602:1 35696:1 35789:1 35850:1 35965:1 2 104:1 106:2 166:1 414:1 568:1 672:1 684:1 751:1 820:2 964:1 1028:1 1082:1 1150:1 1194:1 1206:1 1326:1 1510:1 1541:2 1619:1 1651:1 1706:1 1849:2 1891:1 1897:1 1910:1 1911:1 1991:1 1997:1 2097:1 2249:1 2379:1 2400:1 2547:1 2827:1 2848:1 2862:1 2870:1 2999:1 3086:2 3322:2 3341:2 3348:1 3415:1 3648:2 3653:1 4119:1 4146:1 4161:1 4359:1 4383:1 4479:1 4488:1 4795:1 4859:1 4867:1 4914:1 4920:2 5170:1 5302:1 5437:2 5566:1 5638:1 5655:1 5843:1 5969:1 5973:1 5980:1 6043:1 6049:1 6096:2 6253:1 6254:1 6326:1 6738:1 6799:1 6832:1 6983:1 7252:1 7289:1 7422:1 7825:1 7852:1 8004:1 8054:1 8085:2 8284:1 8501:1 8648:1 8695:2 8943:1 9113:1 9325:1 9372:1 9428:1 9437:1 9637:1 9657:1 9702:3 9711:1 9758:1 9781:1 9803:1 9849:1 9926:1 9967:1 9999:1 10058:1 10235:1 10298:1 10321:2 10360:1 10470:2 10686:1 10697:1 10711:1 10717:1 10789:2 10884:1 11557:1 11569:1 11583:1 11640:1 11642:2 11795:1 11931:1 11932:1 11982:1 12221:2 12237:1 12359:1 12391:2 12401:1 12570:1 12734:1 12867:1 13179:1 13187:1 13234:1 13267:1 13282:1 13443:1 13669:1 13690:1 13721:1 13737:1 13749:1 13826:1 14009:1 14134:1 14149:1 14302:1 14519:1 14567:1 14571:1 14580:1 14611:1 14614:1 14727:1 15060:1 15502:1 15525:1 15587:1 15707:1 15778:2 16114:1 16134:1 16320:1 16327:1 16357:1 16609:1 16731:1 16792:1 16889:1 16977:1 16979:1 17075:1 17082:1 17172:1 17204:1 17230:1 17286:1 17319:1 17333:1 17417:1 17547:2 17675:1 17814:1 17817:1 17836:1 17925:1 17999:1 18092:2 18101:1 18137:1 18200:1 18297:1 18325:1 18339:1 18474:1 18608:2 18645:1 18715:1 18781:1 19225:1 19490:1 19496:1 19645:1 19810:1 19932:1 19976:1 20078:1 20296:1 20324:1 20455:1 20568:1 20588:1 20783:1 20941:2 21003:1 21071:1 21083:1 21097:1 21124:2 21508:1 21686:1 21704:1 21843:1 21987:1 22076:1 22079:1 22628:1 22883:160 22944:1 23031:1 23457:1 23521:1 23640:1 23712:1 23821:1 23833:1 23834:2 23934:1 24012:1 24020:1 24066:1 24097:2 24105:1 24292:1 24332:1 24369:1 24592:1 24919:1 25157:1 25179:1 25217:1 25369:1 25498:1 25917:1 26018:1 26062:1 26091:1 26153:1 26156:1 26216:1 26385:2 26424:1 26508:1 26642:1 26779:1 26999:1 27243:1 27260:1 27331:1 27396:1 27447:1 27460:1 27500:1 27599:1 27677:1 27760:1 27787:2 27808:1 27860:1 28000:1 28011:1 28370:2 28489:1 28582:1 28686:1 28831:1 28913:1 28993:1 29014:1 29126:1 29170:1 29328:1 29334:1 29419:1 29554:1 29557:1 29584:1 29957:1 30093:1 30192:1 30213:1 30329:1 30454:1 30538:2 30552:2 30601:1 30912:2 30987:1 31148:1 31168:1 31177:1 31226:1 31264:1 31329:1 31334:1 31413:1 31550:1 31569:1 31574:1 31648:1 31784:1 31808:1 31882:1 31946:2 31964:1 31968:2 32106:1 32219:1 32311:1 32329:1 32505:2 32683:1 32732:1 32890:1 32955:1 33098:1 33141:1 33183:1 33296:1 33352:1 33537:1 33556:2 33595:2 33609:1 33734:2 34056:1 34071:2 34085:1 34099:1 34151:1 34157:1 34435:2 34497:2 34570:1 34596:1 34996:2 35042:1 35124:1 35128:2 35135:1 35141:1 35184:1 35342:1 35520:1 35602:2 35656:1 35696:1 35757:1 35789:2 35850:2 35965:1 2 10:1 32:1 95:1 104:1 106:2 107:1 166:1 207:1 328:1 414:1 568:1 621:1 672:1 684:1 751:1 820:3 825:2 964:1 1019:1 1028:1 1082:1 1150:1 1194:1 1206:1 1212:1 1305:1 1326:1 1510:1 1541:3 1564:2 1592:1 1619:1 1651:1 1706:1 1849:2 1891:1 1897:2 1910:1 1911:1 1991:1 1997:1 2013:1 2097:1 2249:1 2317:1 2352:1 2379:1 2400:1 2525:1 2547:1 2827:1 2848:1 2862:2 2870:1 2877:1 2919:1 2942:1 2999:1 3002:1 3054:1 3086:2 3179:1 3312:1 3322:2 3341:2 3348:1 3415:1 3645:1 3648:3 3653:1 3706:1 3784:1 4119:1 4146:1 4161:1 4328:1 4359:1 4383:1 4479:1 4488:1 4795:1 4855:1 4859:1 4867:1 4914:1 4920:3 4992:1 5058:1 5076:1 5153:1 5170:1 5302:1 5437:3 5566:1 5638:1 5655:1 5843:1 5969:1 5973:1 5980:1 6043:1 6049:1 6096:2 6097:1 6253:1 6254:1 6326:1 6684:1 6738:1 6799:1 6832:1 6983:1 7070:1 7225:1 7252:1 7289:1 7422:1 7434:1 7604:1 7709:1 7825:1 7852:1 7966:1 8004:2 8020:1 8054:1 8085:2 8203:1 8284:1 8489:1 8501:1 8524:1 8648:1 8695:2 8943:1 9113:1 9153:1 9325:1 9372:1 9428:1 9437:1 9637:1 9657:1 9702:5 9711:1 9733:1 9738:1 9744:1 9758:1 9781:1 9803:1 9849:1 9870:1 9926:1 9967:1 9999:1 10058:1 10235:1 10298:1 10321:3 10360:1 10452:1 10470:3 10686:1 10697:1 10711:1 10717:1 10789:2 10884:1 11163:1 11230:1 11391:1 11489:1 11557:1 11569:1 11572:1 11583:1 11640:1 11642:2 11795:1 11930:1 11931:1 11932:1 11982:1 12221:2 12237:1 12359:1 12391:3 12401:1 12479:1 12570:1 12618:1 12669:1 12692:1 12734:1 12867:1 13179:1 13187:1 13234:1 13267:1 13282:1 13325:1 13415:1 13443:1 13669:1 13690:1 13721:1 13737:1 13749:1 13826:1 13859:1 14009:1 14134:1 14149:1 14302:1 14519:1 14567:1 14571:1 14580:1 14611:1 14614:1 14621:1 14727:1 14869:1 15037:1 15060:1 15151:1 15269:1 15292:1 15315:1 15502:1 15525:1 15587:1 15595:1 15707:1 15778:3 16114:1 16134:1 16304:1 16320:1 16327:1 16357:1 16609:1 16731:1 16792:1 16889:1 16977:1 16979:2 17064:1 17075:1 17082:1 17172:1 17204:1 17230:1 17286:1 17319:1 17333:1 17417:1 17547:2 17675:2 17814:1 17817:1 17836:1 17925:1 17999:1 18092:3 18101:1 18128:1 18137:1 18200:1 18297:1 18325:1 18339:1 18474:1 18608:2 18645:1 18715:1 18781:1 19087:1 19225:1 19303:1 19490:1 19496:1 19513:1 19525:1 19645:1 19691:1 19796:1 19810:1 19932:1 19976:1 20078:1 20261:1 20272:1 20286:1 20296:1 20324:1 20455:1 20568:1 20588:1 20746:1 20781:1 20783:1 20917:1 20941:5 20997:1 21003:1 21071:1 21083:1 21097:1 21124:2 21215:1 21299:1 21508:1 21686:2 21704:1 21843:1 21987:1 22076:1 22079:2 22169:1 22186:1 22315:1 22628:1 22650:1 22883:223 22944:1 22969:1 23031:1 23079:1 23457:1 23521:1 23640:1 23698:1 23712:1 23821:1 23833:2 23834:2 23880:1 23934:1 23947:1 24012:1 24020:1 24066:1 24097:2 24105:1 24118:1 24209:1 24292:1 24332:1 24369:1 24592:1 24883:1 24919:1 25047:1 25053:1 25157:1 25163:1 25179:1 25217:1 25369:1 25448:1 25486:1 25498:1 25527:1 25541:1 25590:1 25917:1 26018:1 26062:1 26091:1 26120:1 26153:1 26156:1 26215:1 26216:1 26385:2 26407:1 26424:1 26508:2 26612:1 26642:1 26779:2 26795:1 26999:1 27243:1 27260:1 27331:1 27343:1 27396:1 27447:1 27460:2 27500:1 27573:1 27599:1 27677:1 27723:1 27760:1 27787:3 27808:1 27854:1 27860:1 28000:1 28011:1 28017:1 28276:1 28317:1 28370:3 28489:1 28582:1 28686:1 28817:1 28831:1 28913:1 28993:1 29014:1 29126:1 29133:1 29170:1 29328:1 29334:1 29398:1 29419:1 29554:1 29557:1 29584:1 29634:1 29845:1 29957:1 30093:1 30099:1 30144:1 30192:1 30213:1 30329:1 30454:1 30482:1 30483:1 30535:1 30538:2 30552:2 30601:1 30912:2 30987:1 31112:1 31148:1 31168:1 31177:1 31181:1 31226:1 31255:1 31264:1 31317:1 31329:1 31334:1 31413:1 31550:1 31569:1 31574:1 31588:1 31648:1 31784:1 31808:1 31882:1 31885:1 31930:1 31946:2 31964:1 31968:3 32106:1 32219:1 32311:1 32329:1 32505:2 32553:1 32683:1 32732:1 32750:1 32890:1 32909:1 32955:1 33098:1 33118:1 33141:1 33183:1 33296:1 33346:1 33352:1 33446:1 33498:1 33537:2 33556:2 33595:2 33609:1 33730:1 33734:2 33880:1 34056:2 34071:2 34085:1 34099:1 34151:1 34157:1 34221:1 34351:1 34364:1 34435:2 34497:2 34570:1 34596:1 34673:1 34862:1 34996:3 35026:1 35042:1 35124:1 35128:3 35135:1 35141:1 35184:1 35342:1 35354:1 35499:1 35520:1 35592:1 35602:2 35656:1 35696:1 35714:1 35757:1 35785:1 35789:2 35805:1 35838:1 35850:3 35965:1 2 9:1 10:1 32:1 95:1 104:1 106:2 107:1 166:1 191:1 207:1 239:1 323:1 328:1 414:1 568:1 621:1 672:1 684:1 751:2 820:4 825:2 964:1 1019:1 1028:1 1082:1 1136:1 1150:1 1194:1 1206:1 1212:1 1293:1 1305:1 1326:1 1510:1 1541:4 1564:2 1592:1 1619:1 1651:1 1706:1 1824:1 1849:2 1891:1 1897:2 1910:1 1911:1 1991:1 1997:1 2013:1 2097:1 2249:1 2317:1 2352:1 2379:1 2400:1 2525:1 2547:1 2604:1 2827:1 2848:1 2859:1 2862:2 2870:1 2877:1 2919:1 2942:1 2999:1 3002:1 3027:1 3054:1 3086:2 3179:1 3312:1 3322:2 3341:2 3348:1 3415:1 3429:1 3645:1 3648:4 3652:1 3653:1 3706:1 3784:1 4119:1 4146:1 4161:1 4211:1 4328:1 4359:1 4383:1 4479:1 4488:1 4492:1 4795:1 4855:1 4859:1 4867:1 4914:1 4920:4 4992:1 5008:1 5054:1 5058:1 5076:1 5119:1 5153:1 5170:1 5302:1 5437:4 5459:1 5566:1 5638:1 5655:1 5843:1 5885:1 5969:1 5973:1 5980:1 6043:1 6049:1 6096:2 6097:1 6253:1 6254:1 6293:1 6315:1 6326:1 6684:1 6738:1 6799:1 6832:1 6861:1 6983:1 7070:1 7225:2 7243:1 7252:1 7289:1 7422:1 7434:1 7494:1 7604:1 7709:1 7825:1 7852:1 7966:1 7974:1 8004:2 8020:3 8054:1 8085:2 8203:1 8284:1 8489:1 8501:1 8524:1 8564:1 8648:1 8695:2 8883:1 8943:1 9052:1 9113:1 9153:1 9325:1 9372:1 9428:1 9437:1 9629:1 9637:1 9657:1 9702:6 9711:1 9733:1 9738:1 9744:1 9758:1 9781:1 9803:1 9849:1 9870:1 9926:1 9967:1 9999:1 10058:1 10235:1 10298:1 10321:4 10359:1 10360:1 10452:1 10470:4 10686:1 10697:1 10711:1 10717:1 10789:2 10884:1 11075:1 11163:1 11165:1 11230:1 11233:1 11391:1 11489:2 11557:1 11569:1 11572:1 11583:1 11640:1 11642:2 11697:1 11795:1 11918:1 11930:1 11931:1 11932:1 11969:1 11982:1 12221:2 12237:1 12359:1 12391:4 12401:1 12479:1 12547:1 12570:1 12618:1 12669:1 12692:1 12734:1 12824:1 12867:1 13112:1 13179:1 13187:1 13234:1 13267:1 13282:1 13325:2 13384:1 13415:1 13443:1 13669:1 13690:1 13721:1 13737:1 13749:1 13824:1 13826:1 13859:1 13891:1 14009:1 14070:1 14093:1 14134:1 14146:1 14149:1 14302:1 14519:1 14567:1 14571:1 14580:1 14611:1 14614:1 14621:2 14727:1 14869:1 14941:1 15037:1 15060:1 15151:1 15269:1 15292:1 15315:1 15502:1 15525:1 15587:1 15595:1 15707:1 15776:1 15778:4 15797:1 16114:1 16134:1 16304:1 16320:1 16327:1 16357:1 16609:2 16731:1 16792:1 16797:1 16889:1 16977:1 16979:2 17064:1 17075:1 17082:1 17172:1 17204:1 17230:1 17286:1 17319:1 17333:1 17417:1 17426:1 17547:2 17675:3 17814:1 17817:1 17836:1 17925:1 17943:1 17999:1 18039:1 18092:4 18101:1 18110:1 18128:1 18137:1 18198:1 18200:1 18270:1 18297:1 18325:1 18339:1 18474:1 18561:1 18608:2 18645:1 18715:1 18781:1 18823:1 18876:1 19087:1 19225:1 19303:1 19458:1 19490:1 19496:1 19513:1 19525:1 19645:2 19691:1 19796:1 19810:2 19905:1 19932:1 19976:1 20078:1 20109:1 20115:1 20242:1 20261:1 20272:1 20286:1 20296:1 20324:1 20455:1 20568:1 20588:1 20746:1 20781:1 20783:1 20917:1 20941:6 20997:1 21003:1 21071:1 21083:1 21097:1 21124:2 21215:1 21299:1 21508:1 21686:2 21704:1 21843:1 21987:1 22076:1 22079:2 22169:1 22186:1 22300:1 22315:1 22547:1 22628:1 22650:1 22800:1 22870:1 22883:247 22944:1 22969:1 23031:1 23079:1 23139:1 23457:1 23521:1 23640:1 23698:1 23712:1 23821:1 23833:2 23834:2 23880:1 23934:1 23947:1 24012:1 24020:1 24047:1 24066:1 24097:2 24105:1 24106:1 24118:1 24209:1 24292:1 24332:1 24369:1 24450:1 24518:1 24592:1 24883:1 24919:1 24924:1 25047:1 25053:1 25157:1 25163:1 25179:1 25217:1 25369:1 25407:1 25448:1 25486:1 25498:1 25527:1 25541:1 25590:1 25608:1 25793:1 25917:1 26018:1 26062:1 26091:1 26120:1 26153:1 26156:1 26215:1 26216:1 26337:1 26385:2 26407:1 26424:1 26508:2 26612:1 26614:1 26628:1 26642:1 26651:1 26779:3 26795:1 26999:1 27127:1 27153:1 27243:1 27260:2 27331:1 27343:1 27396:1 27401:1 27415:1 27447:1 27460:2 27478:1 27500:1 27573:1 27599:1 27603:1 27677:1 27723:1 27760:1 27787:4 27804:1 27808:1 27854:1 27860:1 28000:1 28011:1 28017:1 28276:1 28317:1 28370:4 28489:1 28541:1 28560:1 28577:1 28582:1 28686:1 28817:2 28831:1 28913:1 28993:1 29014:1 29126:1 29133:1 29170:1 29258:1 29328:1 29334:1 29398:1 29419:1 29426:1 29554:1 29557:1 29584:1 29634:1 29688:1 29756:1 29845:1 29957:1 30093:1 30099:1 30144:1 30192:1 30213:1 30329:1 30454:1 30482:1 30483:1 30535:1 30538:2 30552:2 30601:1 30912:2 30987:1 31112:2 31148:1 31168:1 31177:1 31181:1 31226:1 31255:1 31264:1 31317:1 31329:1 31334:1 31413:2 31550:1 31569:1 31574:1 31588:1 31648:1 31784:1 31808:1 31882:1 31885:1 31930:1 31946:2 31964:1 31968:3 32106:1 32219:1 32311:1 32329:1 32505:2 32553:1 32683:1 32732:1 32750:1 32832:1 32879:1 32890:1 32909:1 32955:1 33098:1 33118:1 33141:1 33183:1 33296:1 33346:1 33352:1 33446:1 33498:1 33537:2 33556:2 33595:2 33609:1 33730:1 33734:2 33861:1 33880:1 34056:2 34071:2 34085:1 34099:1 34144:1 34151:1 34157:1 34221:2 34351:1 34364:1 34435:2 34497:2 34570:1 34596:1 34634:1 34673:1 34862:1 34996:4 35026:1 35042:1 35124:1 35128:3 35135:1 35141:1 35184:1 35342:1 35354:1 35395:1 35499:1 35520:1 35539:1 35592:1 35602:2 35656:1 35696:1 35714:1 35757:1 35785:1 35789:2 35805:1 35838:1 35850:4 35888:1 35965:1 2 9:1 10:1 31:1 32:1 95:1 104:2 106:2 107:1 166:1 191:1 207:1 239:1 303:1 323:1 328:1 414:1 478:1 568:1 621:1 659:1 672:1 684:1 751:2 820:5 825:2 964:1 999:1 1019:1 1028:1 1082:1 1136:1 1150:1 1194:1 1206:1 1212:1 1293:1 1305:1 1326:1 1510:1 1541:5 1564:2 1592:1 1619:1 1651:1 1706:1 1824:1 1849:2 1891:1 1897:2 1910:1 1911:1 1991:1 1997:1 2013:1 2097:1 2249:1 2317:1 2352:1 2379:1 2400:1 2455:1 2525:1 2547:1 2604:1 2827:1 2848:1 2859:1 2862:2 2866:1 2870:1 2877:1 2919:1 2942:1 2999:1 3002:1 3027:1 3054:1 3086:2 3179:1 3312:1 3322:2 3341:2 3348:1 3413:1 3415:1 3429:1 3645:1 3648:5 3652:1 3653:1 3706:2 3784:1 4119:1 4146:1 4161:1 4211:1 4328:1 4359:1 4383:1 4479:1 4488:1 4492:1 4795:1 4855:1 4859:1 4867:1 4914:1 4920:5 4992:1 5008:1 5047:1 5054:1 5058:1 5076:1 5119:1 5153:1 5163:1 5170:1 5302:1 5437:5 5459:1 5486:1 5566:1 5638:2 5655:1 5731:1 5843:1 5885:1 5969:1 5973:1 5980:1 6043:1 6049:1 6096:2 6097:1 6253:1 6254:1 6293:1 6315:2 6326:1 6610:1 6684:1 6738:1 6799:1 6832:1 6861:1 6983:1 7070:1 7225:2 7243:1 7252:1 7289:1 7377:1 7422:1 7434:1 7455:1 7494:1 7604:2 7709:1 7741:1 7825:1 7852:1 7945:1 7966:1 7974:1 7989:2 8004:2 8020:3 8054:1 8085:2 8203:1 8284:1 8323:1 8489:1 8501:2 8524:1 8564:1 8648:1 8695:2 8714:1 8849:1 8883:1 8943:1 9052:1 9113:1 9153:1 9325:1 9372:1 9428:1 9437:1 9629:1 9637:1 9657:1 9702:6 9707:1 9711:1 9733:1 9738:2 9744:1 9758:1 9781:1 9803:1 9849:1 9870:1 9926:1 9967:1 9999:1 10058:1 10235:1 10298:1 10313:1 10321:5 10359:1 10360:1 10452:1 10470:5 10686:1 10697:1 10704:1 10707:1 10711:1 10717:1 10778:1 10789:2 10792:1 10884:1 11075:1 11109:1 11163:1 11165:1 11230:1 11233:1 11391:1 11489:2 11557:1 11561:1 11569:1 11571:1 11572:1 11583:1 11640:1 11642:2 11697:1 11707:1 11795:1 11918:1 11930:1 11931:1 11932:1 11969:1 11978:1 11982:2 12221:2 12237:1 12359:1 12391:5 12401:1 12407:1 12479:1 12547:1 12570:2 12618:1 12669:1 12692:1 12734:1 12824:1 12867:2 13112:1 13179:1 13187:1 13234:1 13267:1 13282:1 13325:2 13384:1 13415:1 13443:1 13669:1 13690:1 13704:1 13721:1 13737:1 13749:1 13798:1 13824:1 13826:1 13859:1 13891:1 13900:1 13998:1 14009:1 14070:1 14093:1 14134:1 14146:1 14149:1 14189:1 14302:1 14519:1 14559:1 14567:1 14571:1 14580:1 14611:1 14614:1 14621:2 14727:1 14869:1 14941:1 15037:1 15060:1 15151:1 15269:1 15292:1 15315:2 15502:2 15525:1 15587:1 15595:1 15707:1 15776:1 15778:5 15797:1 16006:1 16114:1 16134:1 16241:1 16304:1 16320:1 16327:2 16357:1 16394:1 16505:1 16609:2 16720:1 16731:1 16792:1 16797:1 16889:1 16977:1 16979:2 17064:1 17075:1 17076:1 17082:1 17114:1 17172:1 17204:1 17230:1 17286:1 17319:1 17333:1 17417:1 17426:1 17449:2 17545:1 17547:2 17675:3 17814:1 17817:2 17836:1 17925:1 17943:1 17992:1 17999:1 18039:1 18092:5 18101:2 18110:1 18128:1 18137:1 18198:1 18200:1 18270:1 18297:1 18325:1 18339:1 18474:1 18561:1 18582:1 18608:2 18645:1 18712:1 18715:1 18781:1 18823:1 18876:1 19087:1 19225:1 19263:1 19303:1 19458:1 19471:1 19490:1 19496:2 19513:1 19525:1 19645:2 19691:1 19796:1 19810:2 19905:1 19932:1 19976:1 20078:1 20109:1 20115:1 20242:1 20261:1 20272:1 20286:1 20296:1 20324:1 20383:1 20455:1 20568:1 20588:1 20746:1 20781:1 20783:1 20917:1 20941:7 20997:1 21003:1 21071:1 21083:1 21097:1 21124:2 21209:1 21215:1 21299:1 21508:1 21686:2 21704:1 21843:1 21987:1 22076:1 22079:2 22169:1 22186:1 22300:1 22315:1 22547:1 22628:1 22650:1 22800:1 22870:1 22883:293 22944:1 22969:1 23031:1 23079:1 23139:1 23456:1 23457:1 23521:2 23607:2 23640:1 23698:1 23712:1 23773:1 23821:1 23833:2 23834:2 23880:1 23934:1 23947:1 23979:2 24012:1 24020:1 24047:1 24066:1 24097:2 24105:1 24106:1 24118:1 24209:1 24292:1 24332:1 24369:1 24450:1 24483:1 24518:1 24592:2 24700:1 24883:2 24919:1 24924:1 24978:1 25047:1 25053:1 25157:1 25163:1 25179:1 25217:1 25369:1 25407:1 25427:1 25448:1 25486:1 25498:1 25527:1 25541:1 25590:2 25608:1 25738:1 25781:1 25793:1 25815:1 25917:1 26018:1 26062:1 26091:1 26120:1 26153:1 26156:1 26214:1 26215:1 26216:1 26337:2 26385:2 26407:1 26424:1 26508:2 26552:1 26612:1 26614:1 26628:1 26642:1 26651:1 26694:1 26779:3 26795:1 26999:1 27004:2 27029:1 27127:2 27153:1 27243:1 27260:2 27331:1 27339:1 27343:1 27396:1 27401:1 27415:1 27447:1 27460:2 27478:1 27500:1 27526:1 27573:1 27599:1 27603:1 27677:1 27723:1 27760:1 27787:5 27804:1 27808:1 27854:1 27860:1 28000:1 28011:1 28017:1 28276:1 28317:1 28370:5 28489:1 28541:1 28560:1 28577:1 28582:1 28686:1 28817:2 28831:1 28913:1 28993:1 29014:1 29126:1 29133:1 29170:2 29258:1 29328:1 29330:1 29334:1 29398:1 29419:1 29426:1 29554:1 29557:1 29583:1 29584:1 29587:1 29634:1 29688:1 29756:1 29845:1 29957:1 30093:1 30099:1 30144:2 30192:1 30213:1 30329:1 30454:1 30482:1 30483:1 30535:1 30538:2 30541:1 30552:2 30601:1 30912:2 30987:1 31112:2 31148:1 31168:1 31177:1 31181:1 31226:1 31255:1 31264:1 31317:1 31329:1 31334:1 31413:2 31550:1 31569:1 31574:1 31588:1 31648:1 31660:1 31725:1 31784:1 31808:1 31866:1 31882:1 31885:1 31930:1 31946:2 31964:1 31968:3 32036:1 32106:1 32219:1 32311:1 32329:1 32491:1 32505:2 32553:1 32683:1 32732:1 32750:1 32801:2 32832:1 32879:1 32890:1 32909:1 32955:1 32958:1 33098:1 33118:1 33141:1 33142:1 33183:1 33296:1 33346:1 33352:1 33446:1 33498:1 33537:2 33556:2 33595:2 33609:1 33637:1 33730:1 33734:2 33766:1 33769:1 33861:1 33880:1 34056:2 34071:2 34085:1 34099:1 34144:1 34151:1 34157:1 34221:2 34246:1 34351:1 34364:1 34435:4 34497:2 34570:1 34596:1 34634:1 34673:1 34862:1 34996:5 35026:2 35042:1 35124:1 35128:3 35135:1 35141:1 35184:1 35342:1 35354:1 35395:1 35499:1 35520:1 35539:1 35592:1 35602:2 35656:1 35696:1 35714:1 35757:1 35785:1 35789:2 35805:1 35838:1 35850:5 35888:1 35965:1 2 9:1 10:1 31:1 32:1 95:1 104:2 106:2 107:1 166:1 191:1 207:1 239:1 303:1 323:1 328:1 414:1 478:1 568:1 621:1 659:1 672:1 684:1 690:1 751:2 795:1 820:6 825:2 831:1 964:1 999:1 1019:1 1028:1 1032:1 1082:1 1136:4 1142:1 1150:1 1194:1 1206:1 1212:1 1293:1 1305:1 1326:2 1510:1 1541:6 1564:2 1592:1 1595:1 1619:1 1651:1 1706:2 1824:1 1849:2 1891:1 1897:3 1910:1 1911:1 1960:1 1991:1 1997:1 2013:1 2058:1 2097:1 2145:1 2158:1 2249:1 2317:1 2352:1 2379:1 2400:1 2455:1 2525:1 2547:1 2604:1 2696:1 2743:1 2827:1 2848:1 2859:1 2862:2 2866:1 2870:1 2877:1 2919:1 2942:1 2999:1 3002:1 3027:1 3054:1 3086:2 3100:1 3116:1 3137:1 3179:1 3312:1 3322:2 3341:2 3348:1 3413:1 3415:1 3429:1 3520:1 3645:1 3648:6 3652:1 3653:1 3663:1 3706:2 3756:1 3784:1 4119:1 4146:1 4161:1 4211:1 4328:1 4359:1 4383:1 4479:1 4488:1 4492:1 4601:1 4626:1 4780:1 4795:1 4820:1 4855:1 4857:1 4859:1 4867:1 4914:1 4920:6 4992:1 5008:1 5032:1 5047:1 5054:1 5058:2 5076:1 5119:1 5153:1 5163:1 5170:2 5178:1 5235:1 5272:1 5302:1 5307:1 5348:1 5437:6 5453:1 5459:1 5486:1 5566:3 5638:2 5655:1 5676:1 5712:1 5731:1 5843:1 5885:1 5969:1 5973:1 5974:1 5980:1 6043:1 6049:1 6075:1 6096:3 6097:1 6140:1 6253:2 6254:1 6277:1 6278:1 6285:1 6293:2 6312:1 6315:2 6326:1 6610:1 6622:1 6684:1 6738:1 6799:1 6832:1 6861:1 6983:1 7070:1 7225:2 7243:1 7252:1 7289:1 7377:1 7422:1 7434:1 7455:1 7494:1 7604:2 7709:1 7721:1 7728:1 7741:1 7825:1 7840:1 7852:1 7945:1 7966:1 7974:1 7989:2 8004:2 8015:1 8016:1 8020:4 8054:1 8085:2 8203:1 8284:1 8323:1 8345:1 8489:1 8496:1 8501:2 8524:1 8564:1 8648:1 8695:2 8714:1 8751:1 8842:1 8845:1 8849:1 8883:1 8943:1 9052:1 9113:1 9123:1 9153:1 9325:1 9338:1 9372:1 9394:1 9428:1 9437:1 9446:1 9629:3 9637:1 9657:1 9702:6 9707:1 9711:2 9733:1 9738:2 9744:1 9758:1 9781:1 9803:1 9849:1 9870:1 9926:1 9967:1 9999:1 10058:1 10223:1 10235:1 10298:1 10313:1 10314:1 10321:6 10359:1 10360:2 10452:1 10470:6 10686:1 10697:1 10704:1 10707:1 10711:1 10717:2 10778:1 10789:2 10791:1 10792:1 10798:1 10864:1 10884:1 10895:1 11075:1 11109:1 11163:1 11165:1 11169:1 11230:1 11233:1 11268:1 11340:1 11391:1 11489:2 11522:1 11557:2 11561:1 11569:1 11571:1 11572:1 11583:1 11640:1 11642:2 11697:1 11707:1 11774:1 11795:1 11918:1 11930:1 11931:2 11932:1 11969:1 11978:1 11982:2 12033:1 12052:1 12057:1 12186:1 12221:2 12231:1 12237:1 12359:1 12391:6 12401:1 12407:1 12479:1 12540:1 12547:1 12570:2 12618:2 12669:1 12692:2 12734:2 12757:1 12824:1 12829:1 12848:1 12867:2 13112:1 13179:1 13187:1 13234:1 13267:1 13282:1 13325:2 13384:1 13412:1 13415:1 13443:1 13454:1 13468:1 13493:1 13669:1 13686:1 13690:1 13704:1 13721:1 13737:1 13749:1 13765:1 13798:1 13823:1 13824:2 13826:2 13828:1 13859:1 13891:1 13900:1 13910:1 13998:1 14009:1 14070:1 14093:1 14134:1 14146:1 14149:1 14189:1 14302:1 14309:1 14322:1 14337:1 14491:1 14519:1 14533:1 14559:1 14567:1 14571:1 14580:1 14611:1 14614:1 14621:2 14727:1 14844:1 14869:1 14941:1 15037:1 15060:2 15150:1 15151:1 15152:1 15160:1 15269:1 15292:1 15315:2 15383:1 15502:2 15525:1 15584:1 15587:1 15595:1 15707:1 15776:1 15778:6 15797:1 15800:1 15844:1 16006:1 16099:1 16114:1 16134:1 16149:1 16241:1 16304:1 16320:1 16327:2 16357:1 16394:1 16505:1 16609:3 16720:1 16731:1 16792:1 16797:1 16803:1 16837:1 16889:1 16914:1 16977:2 16979:2 17003:1 17008:1 17064:1 17075:1 17076:1 17082:1 17114:1 17152:1 17172:3 17204:1 17230:1 17278:1 17286:1 17319:1 17333:1 17417:2 17426:1 17449:2 17545:1 17547:2 17629:1 17675:3 17806:1 17814:2 17817:2 17836:1 17925:1 17943:1 17957:1 17992:1 17999:1 18016:1 18037:1 18039:1 18092:6 18101:2 18110:1 18128:1 18137:1 18198:1 18200:1 18270:1 18297:1 18325:1 18339:1 18474:1 18561:1 18582:1 18608:2 18645:2 18712:1 18715:1 18781:1 18823:1 18876:1 19087:1 19193:1 19225:1 19263:1 19269:1 19303:1 19397:1 19437:1 19458:1 19471:1 19490:1 19496:2 19513:1 19525:1 19538:1 19602:1 19620:1 19645:3 19691:1 19796:1 19810:3 19905:1 19932:1 19976:1 20046:1 20074:1 20078:1 20109:1 20115:1 20242:1 20261:1 20272:1 20286:1 20296:1 20324:1 20383:1 20455:1 20568:1 20588:1 20746:1 20781:1 20783:1 20917:1 20941:8 20997:1 21003:2 21064:1 21071:1 21083:1 21097:1 21124:2 21209:1 21214:1 21215:1 21299:1 21371:1 21508:1 21608:1 21634:1 21686:2 21704:1 21843:1 21872:1 21943:1 21987:2 22008:1 22076:1 22079:2 22169:1 22186:1 22300:1 22315:1 22547:1 22628:2 22650:1 22727:1 22800:1 22870:1 22883:368 22944:1 22969:1 23031:1 23043:1 23044:1 23079:1 23119:1 23139:1 23456:1 23457:1 23508:1 23521:2 23603:1 23607:2 23640:2 23698:1 23712:1 23773:1 23812:1 23821:1 23833:2 23834:2 23880:2 23934:1 23947:3 23979:2 24012:1 24020:1 24047:2 24066:1 24079:1 24097:2 24105:2 24106:1 24118:1 24209:1 24292:1 24332:1 24369:1 24450:1 24483:1 24491:1 24518:1 24591:1 24592:2 24700:1 24762:1 24883:2 24919:1 24924:1 24978:1 25047:1 25053:1 25144:1 25157:1 25161:2 25163:1 25179:2 25217:1 25300:1 25369:1 25407:2 25417:1 25427:1 25448:1 25481:1 25486:1 25498:2 25511:1 25527:1 25541:1 25554:1 25590:2 25608:2 25623:1 25738:1 25781:1 25793:1 25815:1 25879:1 25917:1 26011:1 26018:1 26062:1 26091:1 26120:1 26153:1 26156:1 26214:1 26215:1 26216:1 26327:1 26337:2 26385:2 26407:1 26424:1 26508:2 26552:1 26612:2 26614:1 26628:1 26642:1 26651:1 26668:2 26694:1 26779:3 26782:1 26795:1 26818:1 26842:1 26984:1 26999:1 27004:2 27029:1 27087:1 27092:1 27127:2 27153:2 27243:1 27251:1 27260:2 27331:1 27339:1 27343:1 27396:2 27401:1 27415:1 27447:1 27460:4 27478:1 27500:1 27526:1 27542:1 27573:1 27599:1 27603:1 27677:1 27723:1 27760:1 27787:6 27804:1 27808:1 27854:1 27860:1 27878:1 27957:1 28000:1 28011:1 28017:1 28052:1 28179:1 28276:1 28297:1 28317:1 28370:6 28433:1 28473:1 28482:1 28489:3 28541:1 28560:1 28577:2 28582:1 28686:1 28817:2 28831:1 28908:1 28913:1 28993:1 29004:1 29014:1 29126:1 29133:1 29170:2 29233:1 29258:1 29328:1 29330:1 29334:1 29398:1 29419:1 29426:1 29554:1 29557:1 29564:1 29583:1 29584:1 29587:1 29634:1 29688:2 29741:1 29749:1 29756:1 29845:1 29957:1 30093:1 30099:1 30144:2 30192:1 30213:1 30294:1 30329:1 30454:1 30482:1 30483:1 30535:1 30538:2 30541:1 30552:2 30601:1 30688:1 30743:1 30790:1 30912:2 30987:1 31112:2 31142:1 31148:1 31168:1 31177:1 31178:1 31181:1 31226:1 31235:1 31255:1 31264:2 31265:1 31317:1 31329:1 31334:1 31413:2 31550:1 31569:1 31574:1 31578:1 31588:1 31612:1 31648:1 31660:1 31725:1 31784:1 31808:1 31866:1 31882:1 31885:1 31930:1 31946:2 31964:1 31968:4 32036:1 32106:1 32219:1 32307:1 32311:1 32329:1 32376:1 32459:1 32491:1 32505:2 32553:1 32574:1 32683:1 32732:1 32750:1 32801:2 32832:1 32879:1 32890:1 32891:1 32896:1 32909:1 32941:1 32955:1 32958:1 33098:1 33118:1 33141:1 33142:1 33157:1 33183:2 33296:1 33346:1 33352:1 33389:1 33413:1 33446:1 33461:1 33498:1 33537:2 33543:1 33556:2 33595:2 33609:1 33637:1 33663:1 33730:1 33734:2 33760:1 33766:1 33769:1 33861:1 33880:1 34056:2 34071:2 34085:2 34099:1 34144:1 34151:1 34157:1 34221:2 34246:1 34351:1 34364:1 34371:1 34413:1 34435:6 34497:2 34570:1 34596:1 34634:2 34643:1 34659:1 34673:1 34761:1 34862:1 34996:6 35026:2 35042:1 35098:1 35124:1 35128:3 35135:1 35141:1 35184:1 35342:1 35354:1 35395:1 35499:1 35520:1 35539:1 35592:1 35602:2 35656:1 35696:1 35700:1 35714:1 35757:1 35785:1 35789:2 35805:2 35838:1 35850:6 35888:1 35965:1 2 9:1 10:1 31:2 32:1 95:1 104:2 106:2 107:1 166:1 191:1 207:1 239:1 303:1 323:1 328:1 414:2 478:1 568:1 621:1 659:1 672:1 684:1 690:1 751:2 795:1 820:7 825:2 831:1 881:1 919:1 964:1 999:1 1019:1 1022:1 1028:1 1032:1 1082:1 1136:4 1142:1 1150:1 1194:1 1206:1 1212:1 1293:1 1305:1 1326:2 1510:1 1541:7 1554:1 1564:2 1592:1 1595:1 1605:1 1619:1 1651:1 1706:2 1824:1 1836:1 1849:2 1891:1 1897:3 1910:1 1911:1 1960:1 1991:1 1997:1 2013:1 2058:1 2097:1 2145:1 2158:2 2249:1 2292:1 2317:1 2352:1 2379:1 2400:1 2446:1 2455:1 2525:1 2547:1 2604:1 2696:1 2743:1 2817:1 2827:1 2848:1 2859:1 2862:2 2866:2 2870:1 2877:1 2895:1 2906:1 2919:1 2942:1 2999:1 3002:1 3027:1 3054:1 3086:2 3100:1 3116:1 3137:1 3179:1 3312:1 3322:2 3341:2 3348:1 3413:1 3415:1 3429:1 3516:1 3520:1 3645:2 3648:7 3652:1 3653:1 3663:1 3666:1 3706:2 3756:1 3784:1 4070:1 4119:1 4146:1 4161:1 4211:1 4328:1 4359:1 4383:1 4479:1 4488:1 4492:1 4601:1 4626:1 4773:1 4780:1 4795:1 4820:1 4855:1 4857:1 4859:1 4867:1 4914:1 4920:7 4992:1 5008:1 5032:2 5047:1 5054:1 5058:2 5076:1 5119:1 5153:1 5163:1 5170:2 5178:1 5235:1 5272:1 5302:1 5307:1 5348:1 5437:7 5453:1 5459:2 5486:1 5566:3 5588:1 5638:2 5655:1 5676:1 5712:1 5731:1 5843:1 5869:1 5879:1 5885:1 5969:1 5973:1 5974:1 5980:1 6043:1 6049:1 6075:1 6096:3 6097:1 6140:1 6253:2 6254:1 6277:1 6278:1 6285:1 6293:2 6312:2 6315:2 6316:1 6326:1 6610:1 6622:1 6684:1 6738:1 6799:1 6832:1 6861:1 6983:1 7070:1 7225:2 7243:1 7252:1 7289:1 7377:1 7422:1 7434:1 7455:1 7494:1 7604:2 7709:1 7721:1 7728:1 7741:1 7825:1 7840:1 7852:2 7945:1 7966:1 7974:1 7989:2 8004:2 8015:1 8016:1 8020:4 8054:1 8085:2 8203:1 8284:1 8323:1 8345:1 8489:1 8496:1 8501:2 8524:1 8564:1 8617:1 8648:1 8695:2 8714:1 8751:1 8842:1 8845:1 8849:1 8883:1 8943:1 9012:1 9052:1 9113:1 9123:1 9153:1 9205:1 9325:1 9338:1 9372:1 9394:1 9428:1 9437:1 9446:1 9629:3 9637:1 9657:1 9702:8 9707:1 9711:2 9733:2 9738:2 9744:1 9754:1 9758:1 9781:1 9803:1 9849:1 9870:1 9885:1 9926:1 9967:1 9999:1 10058:1 10223:1 10235:1 10298:1 10313:1 10314:1 10321:7 10359:2 10360:2 10412:1 10452:1 10470:7 10669:1 10686:1 10695:1 10697:1 10704:1 10707:1 10711:1 10717:2 10778:1 10789:2 10791:1 10792:1 10798:1 10864:1 10884:1 10895:1 11075:1 11109:1 11163:1 11165:1 11169:1 11230:1 11233:1 11268:1 11270:1 11340:1 11391:1 11489:2 11522:1 11557:2 11561:2 11569:1 11571:1 11572:1 11573:1 11583:1 11640:1 11642:2 11645:1 11697:1 11707:1 11774:1 11795:1 11918:1 11930:1 11931:2 11932:1 11969:1 11978:1 11982:2 12033:1 12052:1 12057:1 12186:1 12221:2 12231:1 12237:1 12359:1 12391:7 12401:1 12407:1 12479:1 12540:1 12547:1 12570:2 12580:1 12618:2 12669:1 12692:2 12734:2 12757:1 12824:1 12829:1 12848:1 12867:2 13058:1 13112:1 13179:1 13187:1 13234:1 13258:1 13267:1 13282:1 13325:2 13384:1 13412:1 13415:1 13443:1 13454:1 13468:1 13493:1 13550:1 13601:1 13669:1 13686:2 13690:1 13704:1 13721:1 13737:1 13749:1 13765:1 13798:1 13803:1 13823:1 13824:2 13826:2 13828:1 13859:1 13891:1 13900:1 13910:1 13998:1 14009:1 14070:1 14093:1 14134:1 14146:2 14149:1 14189:2 14302:1 14309:1 14322:1 14337:1 14448:1 14491:1 14519:1 14533:1 14559:1 14567:1 14571:1 14580:1 14611:1 14614:1 14621:2 14727:1 14844:1 14869:1 14941:1 15037:1 15060:2 15150:1 15151:1 15152:1 15160:1 15269:1 15292:1 15315:2 15383:1 15502:2 15525:1 15584:1 15587:1 15595:1 15707:1 15776:1 15778:7 15797:1 15800:3 15844:1 15868:1 16006:2 16099:1 16114:1 16134:1 16149:1 16241:1 16269:1 16304:1 16320:1 16327:2 16357:1 16365:1 16394:1 16505:2 16609:4 16720:1 16731:1 16775:1 16792:1 16797:1 16803:1 16837:1 16874:1 16889:1 16914:1 16977:2 16979:2 17003:1 17008:1 17064:1 17075:1 17076:1 17082:1 17114:1 17152:1 17172:3 17204:1 17230:1 17278:2 17286:1 17319:1 17333:1 17417:2 17426:1 17449:2 17516:1 17545:1 17547:2 17629:1 17675:3 17806:1 17814:2 17817:2 17836:1 17925:1 17943:1 17957:1 17992:1 17999:1 18016:1 18037:1 18039:1 18092:7 18101:2 18110:1 18128:1 18137:1 18198:1 18200:1 18244:1 18270:1 18297:1 18325:1 18339:1 18474:1 18561:1 18582:1 18608:2 18645:2 18708:1 18712:1 18715:1 18747:1 18781:1 18823:1 18876:1 19087:1 19193:1 19225:1 19263:3 19269:2 19303:1 19397:1 19437:1 19458:1 19471:1 19490:1 19496:2 19513:1 19525:1 19538:1 19602:1 19620:1 19645:3 19691:1 19796:1 19810:4 19905:1 19932:3 19976:1 20046:1 20074:1 20078:1 20109:1 20115:2 20242:1 20261:1 20272:1 20286:1 20296:1 20324:1 20383:1 20444:1 20455:1 20568:1 20588:1 20604:1 20643:1 20746:1 20781:1 20783:1 20917:1 20941:9 20974:1 20978:1 20997:1 21003:2 21064:1 21071:1 21083:1 21097:1 21124:2 21174:1 21209:1 21214:1 21215:1 21299:1 21371:1 21508:1 21512:1 21593:1 21608:2 21634:1 21686:2 21704:2 21843:1 21872:2 21943:1 21987:2 22008:1 22037:1 22076:1 22079:2 22169:1 22186:1 22300:2 22315:1 22547:1 22628:2 22650:1 22727:1 22800:1 22870:1 22883:421 22944:1 22969:1 23031:1 23043:1 23044:1 23079:1 23119:1 23139:1 23456:1 23457:1 23468:1 23508:1 23521:2 23603:1 23607:2 23640:2 23698:1 23712:1 23773:1 23812:1 23821:1 23833:2 23834:2 23880:2 23934:1 23947:3 23979:2 24012:1 24020:1 24047:2 24064:1 24066:1 24079:1 24097:2 24105:2 24106:1 24118:1 24209:1 24292:1 24332:1 24369:1 24450:1 24483:1 24491:1 24518:1 24566:1 24591:1 24592:2 24700:1 24762:1 24774:1 24820:1 24883:2 24919:1 24924:1 24978:1 25047:1 25053:1 25144:1 25157:1 25161:2 25163:1 25179:2 25217:1 25300:1 25369:1 25407:2 25417:1 25427:1 25448:1 25481:1 25486:1 25498:2 25511:1 25527:1 25541:1 25554:1 25590:2 25608:2 25623:1 25637:1 25720:1 25738:1 25781:1 25782:1 25793:1 25815:1 25846:1 25879:1 25917:1 25994:1 26011:1 26018:1 26062:1 26091:1 26120:1 26153:1 26156:1 26214:1 26215:1 26216:1 26327:1 26337:2 26385:2 26407:1 26424:1 26508:2 26552:1 26612:2 26614:1 26628:1 26642:1 26651:1 26668:2 26694:1 26779:3 26782:1 26795:1 26818:1 26827:1 26842:1 26984:1 26999:1 27004:2 27029:2 27087:1 27092:1 27127:2 27153:2 27243:1 27251:1 27260:2 27331:3 27339:1 27343:1 27396:2 27398:1 27401:1 27415:1 27447:1 27460:4 27478:1 27500:1 27526:1 27542:1 27573:1 27599:1 27603:1 27677:1 27723:1 27760:1 27787:7 27804:1 27808:1 27854:1 27860:1 27878:1 27957:1 28000:1 28011:1 28017:1 28052:1 28179:1 28276:1 28297:1 28298:2 28308:1 28317:1 28370:7 28433:1 28473:1 28482:1 28489:3 28541:1 28560:1 28577:2 28582:1 28639:1 28686:1 28817:2 28831:1 28908:1 28913:1 28993:1 29004:1 29014:1 29087:1 29126:1 29133:1 29170:2 29233:1 29258:1 29328:1 29330:1 29334:1 29398:1 29419:1 29426:1 29554:1 29557:1 29564:1 29583:1 29584:1 29587:1 29634:2 29688:2 29741:1 29749:1 29756:1 29845:1 29952:1 29957:1 30093:1 30099:1 30144:2 30192:1 30213:1 30248:1 30294:1 30329:1 30454:1 30482:1 30483:1 30535:1 30538:2 30541:1 30552:2 30601:1 30688:1 30743:1 30790:1 30814:1 30817:1 30912:2 30960:1 30987:1 31112:2 31142:1 31148:1 31168:1 31177:1 31178:1 31181:1 31188:1 31226:1 31235:1 31255:1 31264:2 31265:1 31317:1 31329:1 31334:2 31411:1 31413:2 31550:1 31569:1 31574:1 31578:1 31588:1 31612:1 31648:1 31660:1 31725:1 31747:1 31768:1 31784:1 31808:1 31866:1 31882:1 31885:1 31930:2 31946:2 31964:1 31968:4 32036:1 32106:1 32117:1 32219:1 32307:1 32311:1 32329:1 32376:1 32459:1 32491:1 32505:2 32553:1 32574:1 32683:1 32732:1 32750:1 32801:2 32832:2 32879:1 32890:1 32891:1 32896:2 32909:1 32941:1 32955:1 32958:1 32974:1 33053:1 33098:1 33118:1 33141:1 33142:1 33157:2 33183:2 33296:1 33346:1 33352:1 33389:1 33413:1 33446:1 33461:1 33498:1 33537:2 33543:1 33556:2 33595:2 33609:1 33637:1 33663:1 33730:1 33734:2 33760:1 33766:1 33769:1 33861:1 33880:1 34056:2 34057:1 34071:2 34075:1 34085:2 34099:1 34144:1 34151:1 34157:1 34221:2 34246:1 34351:1 34364:1 34371:1 34413:1 34435:6 34497:2 34566:1 34570:1 34596:1 34634:2 34643:1 34659:1 34673:1 34761:1 34862:1 34878:1 34996:7 35026:2 35042:1 35098:1 35124:2 35128:4 35135:1 35141:1 35164:1 35184:1 35326:1 35342:1 35354:1 35382:2 35395:1 35499:1 35520:1 35539:1 35592:1 35602:2 35656:1 35696:1 35700:1 35714:1 35757:1 35785:1 35789:2 35805:2 35838:1 35850:7 35888:1 35965:1 35966:2 2 9:1 10:1 31:2 32:1 95:1 104:2 106:2 107:1 166:2 191:1 207:1 239:1 297:1 302:1 303:1 322:1 323:1 328:1 414:2 478:1 520:1 568:1 610:1 621:1 659:1 672:1 684:1 690:1 751:2 761:1 766:1 795:1 820:8 825:2 831:1 881:1 919:1 964:1 999:1 1019:1 1022:1 1024:1 1028:1 1032:1 1082:2 1136:4 1142:1 1150:2 1194:1 1206:1 1212:1 1219:1 1234:1 1260:1 1293:1 1305:1 1326:2 1459:1 1510:1 1541:7 1554:1 1564:2 1592:1 1595:1 1605:1 1617:1 1619:1 1651:1 1706:2 1740:1 1824:1 1836:1 1849:2 1861:1 1891:1 1897:3 1910:1 1911:1 1960:2 1991:1 1997:1 2013:1 2058:1 2097:1 2106:1 2145:1 2158:2 2164:1 2202:1 2249:1 2292:1 2317:1 2320:1 2352:1 2379:1 2400:2 2446:1 2455:1 2525:1 2547:1 2566:1 2604:1 2696:1 2743:1 2817:1 2827:1 2848:1 2859:1 2862:2 2866:2 2870:1 2877:1 2883:1 2887:1 2895:1 2897:1 2902:1 2906:1 2909:1 2919:1 2942:1 2971:1 2999:1 3002:1 3004:1 3027:1 3044:1 3054:1 3076:1 3086:2 3100:1 3116:2 3137:1 3179:1 3267:1 3312:1 3319:1 3322:2 3341:2 3348:1 3367:1 3381:1 3406:1 3413:1 3415:1 3423:1 3429:1 3510:2 3516:1 3520:1 3645:3 3648:8 3651:1 3652:1 3653:1 3663:2 3666:1 3691:1 3706:2 3756:1 3784:1 3846:1 4070:1 4119:1 4146:1 4161:1 4211:1 4328:1 4359:1 4383:1 4396:1 4412:1 4479:1 4488:1 4492:1 4601:1 4626:1 4646:1 4651:1 4722:1 4773:1 4780:1 4795:1 4820:1 4855:1 4857:1 4859:1 4867:1 4914:1 4920:7 4922:1 4992:1 5008:1 5019:1 5020:1 5032:2 5047:1 5054:1 5058:3 5076:1 5119:1 5153:1 5163:1 5170:2 5178:1 5235:1 5254:1 5272:1 5299:1 5300:1 5302:1 5307:1 5308:1 5348:1 5437:7 5453:1 5459:2 5486:1 5566:4 5588:1 5638:2 5655:1 5672:1 5676:1 5712:1 5731:1 5843:1 5869:1 5879:1 5885:1 5969:1 5973:1 5974:1 5980:1 6004:1 6005:1 6043:1 6049:1 6075:1 6078:1 6096:3 6097:2 6140:1 6253:2 6254:1 6277:2 6278:1 6285:1 6293:2 6303:1 6312:2 6315:2 6316:1 6326:1 6610:1 6622:1 6684:1 6738:1 6799:1 6801:1 6803:1 6807:1 6832:1 6861:1 6867:1 6983:1 7070:1 7076:1 7225:2 7243:1 7252:1 7289:1 7377:1 7422:1 7434:1 7455:1 7494:1 7599:1 7604:2 7709:1 7721:1 7727:1 7728:1 7739:1 7741:1 7764:1 7825:1 7840:1 7852:2 7871:1 7945:1 7965:1 7966:1 7974:1 7989:2 8004:2 8008:1 8015:1 8016:1 8020:4 8054:1 8085:2 8125:1 8200:1 8203:1 8284:1 8323:1 8345:1 8489:1 8496:1 8501:2 8524:1 8564:1 8617:1 8648:1 8695:2 8714:1 8731:1 8751:1 8842:1 8845:1 8849:1 8883:2 8943:1 8978:1 9007:1 9012:1 9052:1 9090:1 9113:1 9123:1 9153:1 9205:1 9325:1 9338:1 9372:2 9374:1 9394:1 9428:1 9437:1 9446:1 9499:1 9526:1 9628:1 9629:3 9637:1 9655:1 9657:2 9694:1 9702:11 9707:1 9711:2 9733:3 9738:2 9744:1 9754:1 9758:1 9781:1 9803:1 9849:2 9870:1 9885:1 9926:2 9942:1 9967:1 9999:1 10058:1 10223:1 10235:1 10286:1 10298:1 10313:1 10314:1 10321:8 10359:3 10360:2 10412:1 10452:1 10470:9 10669:1 10686:2 10695:1 10697:1 10704:1 10707:1 10711:1 10717:2 10744:1 10778:1 10789:2 10791:1 10792:1 10798:1 10864:1 10884:1 10895:1 10911:1 11075:1 11109:1 11163:1 11165:1 11169:1 11230:1 11233:1 11247:1 11268:1 11270:1 11340:1 11391:1 11489:2 11522:1 11557:2 11561:2 11569:1 11571:1 11572:1 11573:1 11583:1 11628:1 11640:1 11642:2 11645:1 11690:1 11697:1 11707:1 11774:1 11793:1 11795:2 11918:1 11930:1 11931:2 11932:2 11969:1 11978:1 11982:2 12033:1 12052:1 12057:1 12113:1 12186:1 12221:2 12231:1 12237:1 12255:1 12359:1 12391:7 12401:1 12407:1 12451:1 12479:1 12540:1 12547:1 12552:1 12570:2 12580:1 12618:2 12669:1 12692:2 12734:2 12757:1 12777:1 12821:1 12824:2 12829:1 12848:1 12867:2 13058:1 13112:1 13179:1 13187:1 13213:1 13234:1 13258:1 13267:1 13282:1 13283:2 13325:2 13384:1 13412:1 13415:1 13420:1 13429:1 13443:1 13454:1 13468:1 13493:1 13516:1 13550:1 13601:1 13669:1 13686:2 13690:1 13704:1 13721:2 13737:1 13749:1 13761:1 13765:1 13798:1 13803:1 13823:1 13824:2 13826:2 13828:1 13859:1 13891:2 13895:1 13900:1 13901:1 13910:1 13972:1 13998:1 14009:1 14070:1 14093:1 14134:1 14146:2 14149:1 14189:2 14302:1 14309:1 14322:1 14337:1 14448:1 14491:1 14519:1 14533:1 14550:1 14559:1 14567:1 14571:1 14580:1 14611:1 14614:1 14621:2 14636:1 14642:1 14727:1 14737:1 14742:1 14844:1 14869:1 14941:1 15037:1 15060:2 15086:1 15150:1 15151:1 15152:1 15160:1 15269:1 15292:1 15315:2 15326:1 15383:1 15502:2 15525:1 15526:1 15577:1 15584:1 15587:1 15595:1 15707:1 15776:1 15778:8 15797:1 15800:3 15844:3 15864:1 15868:1 15981:1 16006:2 16083:1 16099:1 16114:1 16134:1 16142:1 16149:1 16241:1 16269:1 16304:1 16320:1 16327:2 16357:1 16365:1 16394:1 16505:2 16510:1 16609:5 16720:1 16731:1 16742:1 16775:1 16792:1 16797:1 16803:1 16837:1 16869:1 16874:1 16889:1 16897:1 16914:1 16918:1 16977:2 16979:3 17003:1 17008:1 17013:1 17064:1 17075:1 17076:1 17082:1 17114:1 17152:1 17172:3 17204:1 17230:1 17278:2 17286:2 17319:1 17333:2 17417:2 17426:1 17449:2 17516:1 17545:1 17547:2 17629:1 17675:3 17679:1 17806:1 17814:2 17817:2 17836:1 17925:1 17943:1 17957:1 17992:1 17999:1 18016:1 18037:1 18039:1 18048:1 18092:8 18101:2 18110:1 18128:1 18137:1 18198:1 18200:1 18203:1 18244:1 18270:1 18297:1 18325:1 18339:1 18474:1 18561:1 18582:1 18603:1 18608:2 18645:2 18708:2 18712:1 18715:1 18747:1 18781:1 18794:1 18823:1 18876:1 19087:1 19193:1 19225:1 19263:3 19269:2 19303:1 19361:1 19397:1 19416:1 19437:1 19458:2 19471:1 19490:1 19496:2 19513:2 19525:1 19538:1 19602:1 19605:1 19620:1 19645:3 19691:1 19796:1 19810:5 19894:1 19905:1 19932:4 19976:2 20046:1 20074:1 20078:1 20109:2 20115:2 20117:1 20242:1 20261:1 20272:1 20286:1 20296:1 20324:1 20383:1 20444:1 20455:1 20568:1 20572:1 20588:2 20604:1 20643:1 20746:1 20781:1 20783:1 20917:1 20941:11 20974:1 20978:1 20997:1 21003:2 21064:1 21071:1 21083:1 21097:1 21124:2 21174:1 21209:1 21214:1 21215:1 21299:1 21371:1 21503:1 21508:1 21512:1 21513:1 21593:1 21608:2 21634:1 21686:2 21704:2 21724:1 21843:1 21872:2 21943:1 21975:1 21987:2 22008:1 22037:1 22076:1 22079:2 22143:1 22169:1 22186:1 22190:1 22300:2 22305:1 22315:1 22547:1 22628:3 22650:1 22727:1 22783:1 22800:1 22806:1 22870:1 22883:480 22909:1 22923:1 22944:1 22969:1 23031:1 23043:1 23044:1 23079:1 23119:1 23139:1 23456:1 23457:1 23468:1 23508:1 23521:2 23603:1 23607:2 23640:2 23647:1 23653:1 23698:1 23712:1 23773:1 23812:1 23821:1 23833:2 23834:2 23880:2 23934:1 23947:4 23979:2 24012:2 24020:1 24047:3 24064:1 24066:1 24079:1 24097:2 24105:2 24106:1 24118:1 24209:1 24292:1 24332:1 24369:1 24450:1 24483:1 24491:1 24518:1 24566:1 24591:1 24592:2 24680:1 24700:1 24708:1 24762:1 24774:1 24820:1 24883:2 24919:1 24924:1 24978:1 25047:1 25053:1 25122:1 25144:1 25157:1 25161:2 25163:1 25179:2 25217:1 25300:1 25369:1 25373:1 25407:2 25417:1 25427:1 25448:1 25461:1 25481:1 25486:1 25498:2 25511:1 25527:1 25529:1 25541:1 25554:1 25590:2 25600:1 25608:2 25623:1 25637:1 25720:1 25721:1 25738:1 25781:1 25782:1 25793:1 25811:1 25815:1 25846:1 25852:1 25879:1 25917:1 25994:1 26011:1 26018:2 26062:1 26070:1 26091:1 26120:1 26153:1 26155:1 26156:1 26214:1 26215:1 26216:1 26327:1 26337:2 26385:2 26407:1 26424:1 26453:1 26460:1 26508:2 26552:1 26612:2 26614:1 26628:1 26642:1 26651:1 26668:2 26694:1 26779:3 26782:1 26795:1 26808:1 26818:1 26827:1 26828:1 26842:1 26854:1 26984:1 26995:1 26999:1 27004:2 27029:2 27087:1 27092:1 27127:2 27153:2 27243:1 27251:1 27260:2 27331:4 27339:1 27343:1 27396:2 27398:1 27401:1 27415:1 27447:1 27460:5 27478:1 27500:1 27526:1 27542:1 27573:1 27599:1 27603:1 27677:2 27723:1 27760:1 27787:7 27804:1 27808:1 27813:1 27854:1 27860:1 27878:1 27957:1 28000:1 28011:1 28017:1 28052:1 28179:1 28276:1 28279:1 28297:1 28298:2 28308:1 28317:1 28370:8 28433:1 28473:1 28482:1 28489:4 28541:1 28560:1 28577:2 28582:1 28639:1 28650:1 28686:1 28817:2 28831:1 28908:1 28913:1 28993:1 29004:1 29014:1 29087:1 29126:1 29133:1 29170:2 29233:1 29258:1 29328:1 29330:1 29334:1 29398:1 29419:1 29426:1 29486:1 29554:1 29557:1 29564:1 29583:1 29584:1 29587:1 29634:2 29688:2 29741:1 29749:1 29756:1 29845:1 29952:1 29957:1 30093:1 30099:1 30144:2 30192:1 30199:1 30213:1 30248:1 30294:1 30329:1 30424:1 30454:1 30482:1 30483:1 30535:1 30538:2 30541:1 30552:2 30601:1 30688:1 30743:1 30790:1 30814:1 30817:1 30912:2 30931:1 30960:1 30970:1 30981:1 30987:1 31026:1 31112:2 31134:1 31142:1 31148:1 31168:1 31177:1 31178:1 31181:1 31188:1 31226:1 31235:1 31255:1 31264:2 31265:1 31317:1 31329:1 31334:2 31377:2 31411:1 31413:2 31478:1 31550:1 31569:1 31574:1 31578:1 31588:1 31612:1 31648:1 31660:1 31725:1 31747:1 31768:1 31784:1 31808:1 31834:1 31866:1 31882:1 31885:1 31930:2 31946:2 31963:1 31964:1 31968:5 31969:1 32036:1 32066:1 32106:1 32117:1 32219:1 32285:1 32307:1 32311:1 32329:1 32376:1 32459:1 32491:1 32505:2 32553:2 32574:1 32683:1 32732:1 32749:1 32750:2 32774:1 32787:1 32801:2 32832:2 32879:1 32890:2 32891:1 32896:2 32909:1 32924:1 32929:1 32941:1 32955:1 32958:1 32974:1 33053:1 33098:1 33118:1 33128:1 33133:1 33141:1 33142:1 33157:2 33183:2 33296:1 33297:1 33346:1 33352:2 33389:1 33413:1 33446:1 33461:1 33498:1 33530:1 33533:1 33537:2 33543:2 33556:2 33563:1 33592:1 33595:2 33609:1 33637:1 33663:1 33680:1 33730:1 33734:2 33760:1 33766:1 33769:1 33795:1 33861:1 33880:1 34056:2 34057:1 34071:2 34075:2 34085:2 34099:1 34139:1 34144:1 34151:1 34157:1 34221:2 34246:1 34351:1 34364:1 34367:1 34371:1 34410:1 34413:1 34435:6 34497:2 34566:1 34570:1 34596:1 34615:1 34634:2 34643:1 34659:1 34673:1 34682:1 34691:1 34757:1 34761:1 34862:1 34878:1 34996:9 35026:2 35041:1 35042:1 35098:1 35124:2 35128:4 35135:1 35141:1 35164:1 35184:1 35207:1 35289:1 35326:1 35342:1 35354:1 35382:2 35395:1 35499:1 35520:1 35539:1 35592:1 35602:2 35625:1 35636:1 35656:1 35696:1 35700:1 35714:1 35757:1 35785:1 35789:2 35805:4 35838:1 35850:8 35888:1 35957:1 35965:1 35966:2 2 9:1 10:1 31:2 32:1 73:1 95:1 104:2 106:2 107:1 166:2 191:1 207:1 239:1 256:1 297:1 302:2 303:1 322:1 323:1 328:1 365:1 414:2 452:1 454:1 478:1 520:1 568:1 610:1 621:1 659:1 672:1 684:1 690:1 751:2 761:1 766:1 795:2 820:9 825:2 831:1 881:1 919:1 935:1 941:1 964:1 999:1 1019:1 1022:1 1024:1 1028:1 1032:1 1082:2 1136:5 1142:1 1150:2 1194:1 1206:2 1212:1 1219:1 1226:1 1234:1 1260:1 1293:1 1305:1 1326:2 1403:1 1459:1 1510:1 1541:8 1554:1 1555:2 1564:2 1592:1 1595:1 1605:1 1617:1 1619:1 1651:1 1706:2 1740:1 1757:1 1771:2 1824:1 1836:1 1849:2 1861:1 1891:2 1897:3 1910:1 1911:1 1960:2 1991:1 1997:1 2013:1 2058:1 2097:1 2106:1 2145:1 2158:2 2164:2 2202:1 2249:1 2292:1 2317:1 2320:1 2328:1 2352:1 2379:2 2400:2 2406:1 2446:1 2455:1 2525:1 2547:1 2566:1 2604:1 2652:1 2696:2 2743:1 2817:1 2827:1 2848:1 2857:1 2859:1 2862:2 2866:2 2870:1 2872:1 2877:2 2883:1 2887:1 2895:1 2897:1 2902:1 2906:1 2909:1 2919:1 2942:1 2971:1 2999:1 3002:1 3004:1 3027:1 3044:1 3054:1 3076:1 3086:2 3100:1 3116:2 3137:1 3179:1 3267:1 3312:1 3319:1 3322:2 3341:2 3348:1 3367:1 3381:1 3406:1 3413:1 3415:1 3423:1 3429:1 3510:2 3516:1 3520:1 3645:3 3648:9 3651:1 3652:1 3653:1 3663:2 3666:1 3691:1 3706:3 3756:1 3784:1 3846:1 4070:1 4119:1 4146:1 4157:1 4161:1 4211:1 4328:1 4359:1 4383:1 4395:1 4396:1 4412:1 4479:1 4488:1 4492:1 4601:1 4626:1 4646:1 4651:1 4722:1 4773:1 4780:1 4795:1 4820:1 4855:1 4857:1 4859:1 4867:1 4914:1 4920:8 4922:2 4992:1 5008:1 5015:1 5019:1 5020:2 5032:2 5047:1 5054:1 5058:4 5076:1 5119:1 5153:1 5163:1 5170:2 5178:1 5235:1 5254:1 5272:1 5299:2 5300:1 5302:2 5307:1 5308:1 5348:1 5437:8 5453:1 5459:2 5486:1 5566:5 5588:1 5638:2 5655:2 5672:1 5676:1 5712:1 5731:1 5843:1 5869:1 5879:1 5885:1 5969:1 5973:1 5974:1 5980:1 5983:1 6004:1 6005:1 6043:1 6049:1 6075:1 6078:1 6096:6 6097:2 6140:1 6253:2 6254:1 6277:2 6278:1 6279:1 6285:1 6293:2 6303:1 6309:1 6312:2 6315:2 6316:1 6326:1 6610:1 6622:1 6684:1 6738:1 6799:1 6801:1 6803:1 6807:1 6832:1 6861:1 6867:1 6983:1 7070:1 7076:1 7225:2 7243:1 7252:1 7264:1 7289:2 7377:1 7422:1 7434:1 7455:1 7494:1 7599:1 7604:2 7607:1 7656:1 7709:1 7721:1 7727:1 7728:1 7739:1 7741:2 7764:1 7825:1 7840:1 7852:2 7871:1 7945:1 7965:1 7966:1 7974:1 7989:3 8004:2 8008:1 8015:1 8016:1 8020:4 8054:1 8085:2 8125:1 8200:1 8203:1 8284:1 8323:1 8345:1 8489:1 8493:1 8496:1 8501:2 8524:1 8564:1 8617:1 8648:1 8695:2 8714:1 8731:1 8751:1 8842:1 8845:1 8849:1 8866:1 8883:3 8943:1 8978:1 9007:1 9012:1 9052:1 9090:1 9113:1 9123:1 9153:1 9205:1 9325:1 9338:1 9372:2 9374:1 9394:1 9428:2 9437:1 9446:1 9499:1 9526:1 9577:1 9628:1 9629:3 9637:1 9655:1 9657:2 9688:2 9694:1 9702:14 9707:1 9711:2 9733:3 9738:2 9744:1 9754:1 9758:1 9781:1 9803:1 9849:2 9866:1 9870:1 9885:1 9926:2 9942:1 9967:1 9968:1 9999:2 10058:1 10063:1 10223:1 10235:1 10286:1 10298:1 10313:1 10314:1 10321:9 10359:4 10360:2 10401:1 10412:2 10452:1 10470:11 10598:1 10669:1 10686:2 10695:1 10697:1 10704:1 10707:1 10711:1 10717:2 10744:1 10778:1 10789:2 10791:1 10792:1 10798:1 10813:1 10864:1 10878:1 10884:1 10895:1 10911:1 11075:1 11109:1 11163:1 11165:1 11169:1 11212:1 11230:1 11233:1 11247:1 11268:1 11270:1 11340:1 11382:1 11391:1 11489:2 11522:1 11557:2 11561:2 11569:1 11571:1 11572:1 11573:1 11583:1 11617:1 11628:1 11640:1 11642:2 11645:1 11654:1 11678:2 11690:2 11697:1 11707:1 11774:1 11793:1 11795:2 11918:1 11930:1 11931:2 11932:4 11969:1 11978:1 11982:2 12004:1 12033:1 12052:1 12056:1 12057:1 12081:1 12083:1 12112:1 12113:1 12147:1 12186:1 12221:3 12231:1 12237:1 12255:1 12359:1 12391:8 12401:1 12407:1 12451:1 12479:1 12540:1 12547:1 12552:1 12570:2 12580:1 12618:2 12630:1 12669:1 12692:2 12734:2 12757:1 12777:1 12821:1 12824:2 12829:1 12848:1 12867:3 12988:1 13058:1 13112:1 13179:1 13187:1 13213:1 13234:1 13258:1 13267:1 13282:1 13283:2 13303:1 13325:2 13384:1 13385:1 13412:1 13415:1 13420:2 13429:1 13443:1 13454:1 13468:1 13493:1 13516:1 13550:1 13601:1 13669:1 13686:2 13690:1 13704:1 13721:2 13737:1 13749:1 13761:1 13765:1 13793:1 13798:1 13803:1 13823:1 13824:2 13826:2 13828:1 13859:1 13880:1 13891:3 13895:1 13900:1 13901:1 13910:1 13972:1 13998:1 14009:1 14070:1 14093:1 14105:1 14134:1 14146:2 14149:1 14189:2 14235:2 14302:1 14309:1 14322:1 14337:1 14448:1 14491:1 14519:1 14533:1 14550:1 14554:1 14559:1 14567:2 14571:2 14580:2 14611:1 14614:1 14621:2 14636:1 14642:1 14667:1 14716:1 14727:1 14737:1 14742:1 14744:1 14791:2 14844:1 14869:1 14941:1 15037:1 15060:2 15083:1 15086:1 15150:1 15151:1 15152:1 15160:1 15269:1 15292:1 15315:2 15326:1 15383:1 15385:1 15487:1 15502:2 15525:1 15526:1 15577:1 15584:1 15587:1 15595:1 15707:1 15747:1 15776:1 15778:9 15797:1 15800:3 15813:1 15844:3 15864:1 15868:1 15900:1 15981:1 16006:2 16083:1 16099:1 16114:1 16134:1 16142:1 16149:1 16241:1 16269:1 16304:1 16320:1 16327:3 16357:1 16365:1 16394:1 16505:2 16510:1 16528:1 16594:1 16609:5 16720:1 16731:1 16742:1 16775:1 16792:2 16797:2 16803:1 16837:1 16869:1 16874:1 16889:1 16897:1 16914:1 16918:1 16968:1 16970:1 16977:2 16979:5 17003:1 17008:1 17013:1 17064:1 17075:1 17076:1 17082:1 17114:1 17152:1 17172:3 17204:1 17230:1 17273:1 17278:2 17286:2 17319:1 17333:4 17417:2 17426:1 17449:3 17516:1 17545:1 17547:2 17629:1 17675:3 17679:1 17806:2 17814:2 17817:2 17836:1 17925:1 17943:1 17957:1 17992:1 17997:1 17999:1 18000:1 18005:1 18016:1 18037:1 18039:1 18048:1 18092:9 18101:2 18105:1 18106:1 18110:1 18128:1 18137:1 18198:1 18200:1 18203:2 18214:1 18221:1 18244:1 18270:2 18297:1 18325:1 18339:1 18474:1 18561:2 18582:1 18603:1 18608:2 18645:2 18673:1 18708:2 18712:1 18715:1 18747:1 18781:1 18793:1 18794:1 18823:1 18876:1 18898:1 19083:1 19087:1 19192:1 19193:1 19225:1 19263:3 19269:2 19303:1 19361:1 19397:1 19416:1 19437:1 19458:2 19471:1 19490:1 19496:2 19513:2 19525:1 19538:1 19602:1 19605:1 19620:1 19645:4 19691:1 19796:1 19810:5 19894:1 19905:1 19932:5 19976:2 20046:1 20074:1 20078:1 20109:3 20115:2 20117:1 20242:1 20261:1 20272:1 20286:1 20296:1 20324:1 20383:1 20444:1 20455:1 20537:1 20566:1 20568:1 20572:1 20588:2 20604:1 20643:1 20746:1 20754:1 20781:1 20783:1 20785:1 20799:1 20917:1 20941:13 20974:1 20978:1 20997:1 21003:2 21064:1 21071:1 21083:1 21097:1 21124:2 21130:2 21174:1 21209:1 21214:1 21215:1 21299:1 21318:1 21371:1 21503:1 21508:1 21512:1 21513:1 21593:1 21608:2 21634:1 21686:2 21704:2 21724:1 21843:1 21872:2 21943:1 21975:1 21987:2 22008:1 22037:1 22076:1 22079:2 22143:1 22169:1 22177:1 22186:1 22190:1 22300:2 22305:1 22315:1 22347:1 22516:1 22547:1 22628:3 22650:1 22727:1 22783:1 22800:1 22806:1 22870:1 22883:539 22909:1 22923:1 22944:1 22969:1 23031:1 23043:1 23044:1 23079:1 23119:1 23129:1 23139:1 23456:1 23457:1 23468:1 23508:1 23521:2 23523:1 23549:1 23603:1 23607:2 23640:2 23647:1 23653:1 23698:1 23712:1 23773:1 23812:1 23821:1 23833:2 23834:2 23874:1 23880:2 23914:1 23934:1 23947:5 23979:2 24012:2 24020:1 24047:3 24064:1 24066:1 24079:1 24097:2 24105:2 24106:1 24118:1 24191:1 24209:1 24217:1 24239:1 24292:1 24332:1 24369:1 24450:1 24479:1 24483:1 24491:1 24518:1 24566:1 24591:1 24592:3 24680:1 24700:1 24708:2 24762:1 24774:1 24794:1 24808:1 24820:1 24883:2 24919:1 24924:1 24978:1 25047:1 25053:1 25122:1 25144:1 25157:1 25161:2 25163:1 25179:2 25217:1 25300:1 25369:1 25373:1 25407:2 25417:1 25427:2 25448:1 25461:1 25481:1 25486:1 25498:2 25505:1 25511:1 25527:1 25529:1 25541:1 25554:1 25590:2 25600:1 25608:2 25623:1 25637:1 25720:1 25721:2 25738:1 25781:1 25782:1 25793:1 25811:1 25815:1 25846:1 25852:1 25867:1 25879:1 25917:1 25994:1 26011:1 26018:2 26062:1 26070:1 26091:1 26102:1 26120:1 26153:1 26155:1 26156:1 26214:1 26215:1 26216:1 26327:1 26337:2 26385:2 26407:1 26424:1 26453:1 26460:1 26508:2 26552:1 26593:1 26612:2 26614:1 26628:1 26642:1 26651:1 26668:2 26679:1 26694:1 26779:3 26782:1 26795:1 26808:1 26818:1 26827:1 26828:1 26842:1 26854:1 26984:1 26995:1 26999:1 27004:3 27029:2 27051:1 27087:1 27092:1 27127:2 27153:2 27243:1 27251:1 27260:2 27331:5 27333:1 27339:1 27343:1 27396:3 27398:1 27401:1 27415:1 27447:1 27460:6 27478:1 27500:1 27526:1 27542:1 27573:1 27599:1 27603:1 27677:2 27723:1 27760:1 27787:8 27804:1 27808:1 27810:1 27813:1 27854:1 27860:1 27878:1 27879:1 27920:1 27925:1 27957:1 28000:1 28011:1 28017:1 28052:1 28179:1 28276:1 28279:1 28297:1 28298:2 28308:1 28317:1 28370:9 28398:1 28433:1 28473:1 28482:1 28489:5 28541:1 28560:1 28577:2 28582:1 28587:1 28639:1 28647:1 28650:1 28686:1 28817:2 28831:1 28852:1 28908:1 28913:1 28993:1 29004:1 29014:1 29087:1 29126:1 29133:1 29170:2 29233:1 29258:1 29328:1 29330:1 29334:1 29398:1 29419:1 29426:1 29455:1 29486:2 29516:1 29551:1 29554:1 29557:1 29564:1 29583:1 29584:1 29587:1 29604:1 29634:2 29688:2 29741:1 29749:1 29752:1 29756:1 29775:1 29845:1 29952:1 29957:1 30035:1 30093:1 30099:1 30105:1 30144:2 30192:1 30199:1 30213:1 30248:1 30294:1 30329:1 30424:1 30454:1 30482:1 30483:1 30535:1 30537:1 30538:2 30541:1 30552:2 30601:1 30617:2 30688:1 30743:1 30790:1 30794:1 30814:1 30817:1 30912:2 30931:1 30960:1 30970:1 30981:1 30987:1 31026:1 31112:2 31134:1 31142:1 31148:1 31168:1 31177:1 31178:1 31181:1 31188:1 31226:1 31235:1 31255:1 31264:2 31265:1 31317:1 31329:1 31334:2 31377:2 31411:1 31413:2 31478:1 31550:1 31569:1 31574:1 31578:2 31588:1 31610:1 31612:1 31648:1 31660:1 31725:1 31747:1 31753:1 31768:1 31784:1 31808:1 31834:1 31848:1 31866:1 31882:1 31885:1 31919:1 31930:2 31946:2 31963:1 31964:1 31968:5 31969:1 32036:1 32066:2 32106:1 32117:1 32219:1 32285:1 32307:1 32311:1 32326:1 32329:1 32376:1 32459:1 32491:1 32505:2 32532:1 32553:2 32574:1 32612:1 32683:1 32732:1 32749:1 32750:2 32774:1 32787:1 32801:3 32832:2 32879:1 32890:2 32891:1 32896:2 32909:1 32924:1 32929:1 32941:1 32950:1 32955:1 32958:1 32974:1 33027:1 33053:1 33098:1 33118:1 33128:2 33133:2 33141:1 33142:1 33157:2 33183:2 33296:1 33297:1 33346:1 33352:2 33388:1 33389:1 33413:1 33446:1 33461:1 33498:1 33512:1 33530:1 33533:1 33537:2 33543:2 33556:2 33563:1 33592:1 33595:2 33609:1 33620:1 33637:1 33663:2 33680:1 33730:1 33734:2 33760:1 33766:1 33769:1 33795:1 33824:1 33861:1 33865:1 33880:1 34056:2 34057:1 34071:2 34075:2 34085:2 34099:1 34139:1 34144:1 34151:1 34157:1 34221:2 34246:1 34314:1 34351:1 34364:1 34367:1 34371:1 34407:1 34410:1 34413:1 34435:7 34497:3 34566:1 34570:1 34596:2 34615:1 34634:2 34643:1 34659:1 34673:1 34682:1 34691:1 34701:1 34757:1 34761:1 34794:1 34804:2 34862:1 34878:1 34996:11 35026:2 35041:2 35042:1 35098:1 35124:2 35128:4 35135:1 35141:1 35164:1 35184:1 35207:1 35289:1 35310:1 35326:1 35342:1 35354:1 35382:2 35395:1 35499:1 35503:2 35520:1 35539:1 35592:1 35602:2 35625:1 35636:1 35656:1 35696:1 35700:1 35714:1 35753:1 35757:1 35785:1 35789:2 35805:4 35838:1 35850:9 35888:1 35957:1 35965:1 35966:2 2 9:1 10:1 31:2 32:1 73:1 95:1 104:2 106:2 107:1 166:2 191:1 207:1 239:1 256:1 297:1 302:2 303:1 322:1 323:1 328:1 365:1 414:3 452:1 454:1 478:1 498:1 520:1 568:1 601:1 610:1 621:1 659:1 672:1 684:1 690:1 751:2 761:1 766:1 795:2 820:10 825:2 831:1 881:1 919:1 935:1 941:1 964:1 999:1 1019:1 1022:1 1024:1 1028:1 1032:1 1082:2 1136:5 1142:1 1150:4 1194:1 1206:2 1212:1 1219:1 1226:1 1234:1 1260:1 1293:1 1305:1 1326:2 1403:1 1454:1 1459:1 1510:1 1541:9 1554:1 1555:2 1564:2 1592:1 1595:1 1605:1 1617:1 1619:1 1651:1 1706:2 1740:1 1757:1 1771:2 1824:1 1836:1 1849:2 1861:1 1891:2 1897:3 1910:1 1911:1 1960:2 1991:1 1997:1 2013:1 2036:1 2058:1 2097:1 2102:1 2106:1 2145:1 2158:2 2164:2 2202:1 2249:1 2292:1 2317:1 2320:1 2328:1 2352:1 2379:2 2400:2 2406:1 2446:1 2455:1 2508:1 2522:1 2525:1 2547:1 2566:1 2604:1 2652:1 2655:1 2696:2 2743:1 2817:1 2827:1 2848:1 2857:1 2859:1 2862:3 2866:2 2867:1 2870:1 2872:1 2877:2 2883:1 2887:2 2895:1 2897:1 2902:1 2906:1 2909:1 2919:1 2942:1 2971:1 2999:1 3002:1 3004:1 3027:1 3044:1 3054:1 3076:1 3086:2 3100:1 3116:2 3137:1 3179:1 3267:1 3312:1 3319:1 3322:2 3341:2 3348:1 3367:1 3381:1 3406:1 3413:1 3415:1 3423:1 3429:1 3510:2 3516:1 3520:1 3645:3 3648:10 3651:1 3652:2 3653:1 3663:2 3666:1 3681:1 3691:1 3698:1 3706:3 3736:1 3756:1 3784:1 3846:1 4070:1 4119:1 4146:1 4157:1 4161:1 4211:1 4328:1 4359:1 4383:1 4395:1 4396:1 4412:1 4479:1 4488:1 4492:1 4601:1 4626:1 4646:1 4651:1 4722:1 4767:1 4773:1 4780:1 4795:1 4820:1 4855:1 4857:1 4859:1 4867:1 4886:1 4914:1 4920:9 4922:2 4992:1 5008:1 5015:1 5019:1 5020:2 5032:2 5047:1 5054:1 5058:4 5076:1 5119:1 5153:1 5163:1 5170:2 5178:1 5233:1 5235:1 5254:1 5272:1 5299:2 5300:1 5302:2 5307:1 5308:1 5348:1 5437:9 5453:1 5459:2 5486:1 5566:6 5588:1 5638:2 5655:2 5663:1 5672:1 5676:1 5712:1 5731:1 5843:1 5869:1 5879:1 5885:1 5969:1 5973:1 5974:1 5980:1 5983:1 6004:1 6005:1 6043:1 6049:1 6075:1 6078:1 6096:6 6097:2 6140:1 6253:2 6254:1 6277:2 6278:1 6279:1 6285:1 6293:2 6303:1 6309:1 6312:2 6315:2 6316:1 6326:1 6411:1 6610:1 6622:1 6623:1 6684:1 6738:1 6799:1 6801:1 6803:1 6807:1 6832:1 6861:1 6867:1 6983:1 7070:1 7076:1 7130:1 7225:2 7243:1 7252:1 7264:1 7289:3 7377:1 7422:1 7423:1 7434:1 7455:1 7494:1 7599:1 7604:2 7607:1 7656:1 7709:1 7721:1 7725:1 7727:1 7728:1 7739:1 7741:2 7764:1 7782:1 7825:1 7840:1 7852:3 7871:1 7937:1 7945:1 7965:1 7966:1 7974:1 7989:3 8004:2 8008:1 8015:1 8016:1 8020:4 8054:1 8085:2 8125:1 8186:1 8200:1 8203:1 8284:1 8316:1 8323:1 8335:1 8345:1 8489:1 8493:1 8496:1 8501:2 8524:1 8564:1 8617:1 8648:1 8695:2 8714:1 8731:1 8751:1 8842:1 8845:1 8849:1 8866:1 8883:3 8943:1 8978:1 9007:1 9012:1 9052:1 9090:1 9113:1 9123:1 9153:1 9205:1 9216:1 9325:1 9338:1 9372:3 9374:1 9394:1 9428:2 9437:1 9446:1 9499:1 9526:1 9577:1 9628:1 9629:4 9637:1 9655:1 9657:4 9688:2 9694:1 9702:16 9707:1 9711:2 9733:3 9738:2 9744:1 9754:1 9758:1 9781:1 9803:1 9849:2 9866:1 9870:1 9885:1 9926:2 9942:1 9967:1 9968:1 9999:2 10058:1 10063:1 10223:1 10235:1 10286:1 10298:1 10313:1 10314:1 10321:10 10338:1 10359:4 10360:2 10401:1 10412:2 10452:1 10470:12 10598:1 10599:1 10612:1 10669:1 10686:2 10695:1 10697:1 10704:1 10707:1 10711:1 10717:2 10744:1 10778:1 10789:2 10791:1 10792:1 10798:1 10813:1 10864:1 10878:1 10884:1 10895:1 10911:1 11075:1 11109:1 11163:1 11165:1 11169:1 11207:1 11212:1 11230:1 11233:1 11247:1 11268:1 11270:1 11340:1 11382:1 11391:1 11489:2 11522:1 11557:2 11561:2 11564:1 11569:1 11571:1 11572:1 11573:1 11583:1 11617:1 11628:1 11640:1 11642:2 11645:1 11654:1 11678:2 11690:2 11697:1 11707:1 11774:1 11793:1 11795:2 11815:1 11918:1 11930:1 11931:2 11932:4 11969:1 11978:1 11982:2 12004:1 12033:1 12052:1 12056:1 12057:1 12081:1 12083:1 12112:1 12113:1 12147:1 12186:1 12221:3 12231:1 12237:1 12239:2 12255:1 12359:1 12391:9 12401:1 12407:1 12435:1 12451:1 12479:1 12540:1 12547:1 12552:1 12570:2 12580:1 12618:2 12630:1 12643:1 12669:1 12692:2 12694:1 12734:2 12757:1 12777:1 12821:1 12824:2 12829:1 12848:1 12867:3 12977:1 12988:1 13040:1 13058:1 13112:1 13179:1 13187:1 13213:1 13234:1 13258:1 13267:1 13282:1 13283:2 13303:1 13325:2 13384:1 13385:1 13412:2 13415:1 13420:2 13429:1 13443:1 13454:1 13468:1 13471:1 13493:1 13516:1 13550:1 13601:1 13669:1 13686:2 13690:1 13704:1 13721:2 13737:1 13749:1 13761:1 13765:1 13793:1 13798:1 13803:1 13823:1 13824:2 13826:2 13828:1 13859:1 13880:1 13891:3 13895:1 13900:1 13901:1 13910:1 13921:2 13942:1 13972:1 13998:1 14009:1 14070:1 14093:1 14105:1 14134:1 14146:2 14149:1 14189:2 14235:2 14296:1 14302:1 14309:1 14322:2 14337:1 14340:1 14448:1 14491:1 14519:1 14533:1 14550:1 14554:1 14559:1 14567:2 14571:2 14580:2 14611:1 14614:1 14621:2 14636:1 14642:1 14667:1 14716:1 14727:1 14737:1 14742:1 14744:1 14791:2 14844:1 14869:1 14941:1 15037:2 15060:2 15083:1 15086:1 15150:1 15151:1 15152:1 15160:1 15269:1 15292:1 15315:2 15326:1 15383:1 15385:1 15487:1 15502:2 15525:1 15526:1 15577:1 15584:1 15587:1 15595:1 15707:1 15747:1 15776:2 15778:10 15797:1 15800:3 15813:1 15844:3 15864:1 15868:1 15900:1 15981:1 16006:2 16013:1 16083:1 16099:1 16114:1 16134:1 16142:1 16149:1 16241:1 16269:1 16293:1 16304:1 16320:1 16327:3 16357:1 16365:1 16394:1 16490:1 16505:2 16510:1 16528:1 16535:1 16594:1 16609:5 16720:1 16729:1 16731:1 16742:1 16775:1 16792:2 16797:2 16803:1 16837:1 16869:1 16874:1 16889:1 16897:1 16898:1 16914:1 16918:1 16968:1 16970:1 16977:2 16979:5 17003:1 17008:1 17013:1 17033:2 17064:1 17075:1 17076:1 17082:1 17114:1 17152:1 17172:3 17204:1 17217:1 17230:1 17273:1 17278:2 17286:2 17319:1 17333:5 17417:2 17426:1 17449:3 17516:1 17545:1 17547:2 17629:1 17675:3 17679:1 17794:1 17806:2 17814:2 17817:2 17835:1 17836:1 17925:1 17943:1 17957:1 17972:1 17992:1 17997:1 17999:1 18000:1 18005:1 18016:1 18037:1 18039:1 18048:1 18092:10 18101:2 18105:1 18106:1 18110:1 18120:1 18128:1 18137:1 18198:1 18200:1 18203:2 18214:1 18221:1 18244:1 18270:2 18297:1 18325:1 18339:1 18474:1 18561:2 18582:1 18603:1 18608:2 18645:3 18673:1 18696:1 18708:2 18712:1 18715:1 18747:1 18781:1 18793:1 18794:1 18823:1 18876:1 18898:1 18959:1 19067:1 19083:1 19087:1 19192:1 19193:1 19225:1 19263:3 19269:2 19303:1 19361:1 19397:1 19416:1 19437:1 19458:2 19471:1 19490:1 19496:2 19513:2 19525:1 19538:1 19602:1 19605:1 19620:1 19645:4 19691:1 19796:1 19810:5 19894:1 19905:1 19932:6 19976:2 20046:1 20074:1 20078:1 20109:3 20115:2 20117:1 20242:1 20261:1 20272:1 20286:1 20292:1 20296:1 20324:1 20383:1 20444:1 20455:1 20537:1 20566:1 20568:1 20572:1 20588:2 20604:1 20643:1 20654:1 20746:1 20754:1 20781:1 20783:1 20785:1 20796:1 20799:1 20917:1 20941:14 20974:1 20978:1 20997:1 21003:2 21064:1 21071:1 21083:1 21097:1 21124:2 21130:2 21174:1 21209:1 21214:1 21215:1 21299:1 21318:1 21371:1 21503:1 21508:1 21512:1 21513:1 21593:1 21608:2 21634:1 21686:2 21704:2 21724:1 21843:1 21872:2 21943:1 21975:1 21987:2 22008:1 22037:1 22076:1 22079:2 22084:1 22143:1 22169:1 22177:1 22181:1 22186:1 22190:1 22300:2 22305:1 22315:1 22347:1 22516:1 22547:1 22628:3 22650:1 22727:2 22783:1 22800:1 22806:1 22870:1 22883:621 22909:1 22923:1 22944:1 22969:1 23031:1 23043:1 23044:1 23079:1 23119:1 23129:1 23139:1 23193:1 23427:1 23456:1 23457:1 23468:1 23508:1 23521:2 23523:1 23549:1 23603:1 23607:2 23640:2 23647:1 23653:1 23698:1 23712:1 23773:1 23812:1 23821:1 23833:2 23834:2 23874:1 23880:2 23914:1 23934:1 23947:6 23979:2 24012:2 24020:1 24047:3 24064:1 24066:1 24079:1 24097:2 24105:2 24106:1 24118:1 24191:1 24209:1 24217:1 24239:1 24292:1 24332:1 24369:1 24450:1 24479:1 24483:1 24491:1 24518:1 24566:1 24591:1 24592:3 24620:1 24680:1 24700:1 24708:2 24753:1 24762:1 24774:1 24794:1 24808:1 24820:1 24883:2 24919:1 24924:1 24978:1 25047:1 25053:1 25058:1 25122:1 25144:1 25157:1 25161:2 25163:1 25179:2 25217:1 25244:1 25300:1 25369:1 25373:1 25407:2 25417:1 25427:2 25448:1 25461:1 25481:1 25486:1 25491:1 25498:2 25505:1 25511:2 25527:1 25529:1 25541:1 25554:1 25590:2 25600:1 25608:2 25623:1 25637:1 25720:1 25721:3 25733:1 25738:1 25781:1 25782:1 25793:1 25811:1 25815:1 25846:1 25852:1 25867:1 25879:1 25917:1 25994:1 26011:1 26014:1 26018:2 26062:1 26070:1 26091:1 26102:1 26120:1 26153:1 26155:1 26156:1 26214:1 26215:1 26216:1 26327:1 26337:2 26385:2 26407:1 26424:1 26453:1 26460:1 26508:2 26552:1 26593:1 26612:2 26614:1 26628:1 26642:1 26651:1 26668:3 26679:1 26694:1 26779:3 26782:1 26795:1 26808:1 26818:1 26827:1 26828:1 26842:1 26854:1 26907:1 26984:1 26995:1 26999:1 27004:3 27029:2 27051:1 27087:1 27092:1 27127:2 27153:2 27213:1 27243:1 27251:1 27260:2 27331:6 27333:1 27339:1 27343:1 27396:4 27398:1 27401:1 27415:1 27447:1 27460:7 27478:1 27500:1 27526:1 27527:1 27542:1 27573:1 27599:1 27603:1 27677:2 27723:1 27760:1 27787:9 27804:1 27808:1 27810:1 27813:1 27854:1 27859:1 27860:1 27862:1 27878:1 27879:1 27920:1 27925:1 27957:1 28000:1 28011:1 28017:1 28052:1 28179:1 28276:1 28279:1 28297:1 28298:2 28308:1 28313:1 28317:1 28370:10 28398:1 28433:1 28472:1 28473:1 28482:1 28489:6 28541:1 28560:1 28567:1 28577:2 28582:1 28587:1 28639:1 28647:1 28650:1 28686:1 28817:2 28831:1 28852:1 28908:1 28913:1 28949:1 28983:1 28993:1 29004:1 29014:1 29087:1 29126:1 29133:1 29170:2 29215:1 29233:1 29258:1 29328:1 29330:1 29334:1 29398:1 29419:1 29426:1 29455:1 29486:2 29516:1 29551:1 29554:1 29557:1 29564:1 29583:1 29584:1 29587:1 29604:1 29634:2 29688:3 29741:1 29749:1 29752:1 29756:1 29775:1 29845:1 29952:1 29957:1 30035:1 30083:1 30093:1 30099:1 30105:1 30144:2 30192:1 30199:1 30213:1 30248:1 30261:2 30284:1 30294:1 30307:1 30329:1 30424:1 30454:1 30482:1 30483:1 30535:1 30537:1 30538:2 30541:1 30552:2 30601:1 30617:2 30688:1 30743:1 30790:1 30794:1 30814:1 30817:1 30912:2 30931:1 30960:1 30970:1 30981:1 30987:1 31026:1 31112:2 31134:1 31142:1 31148:1 31168:1 31177:1 31178:1 31181:1 31188:1 31226:1 31235:1 31255:1 31264:2 31265:1 31296:1 31317:1 31329:1 31334:2 31377:2 31411:1 31413:2 31425:1 31478:1 31550:1 31569:1 31574:1 31578:2 31588:1 31610:1 31612:1 31648:1 31660:1 31725:1 31747:1 31753:1 31768:1 31784:1 31787:1 31808:1 31834:1 31848:1 31866:1 31882:1 31885:1 31919:1 31930:3 31946:2 31963:1 31964:1 31968:5 31969:1 32036:1 32066:2 32106:1 32117:1 32219:1 32285:1 32307:1 32311:1 32326:1 32329:1 32376:1 32459:1 32491:1 32505:2 32532:1 32553:2 32574:1 32612:1 32683:1 32732:1 32745:1 32749:1 32750:2 32774:1 32787:1 32801:3 32832:2 32879:1 32890:2 32891:1 32896:2 32909:1 32924:1 32929:1 32941:2 32950:1 32955:1 32958:1 32974:1 33027:1 33053:1 33098:1 33118:1 33128:3 33133:2 33137:1 33141:1 33142:1 33157:2 33183:2 33296:1 33297:1 33309:1 33346:1 33352:2 33388:1 33389:1 33404:1 33413:1 33446:1 33461:1 33498:1 33512:1 33530:1 33533:1 33537:2 33543:2 33556:2 33563:1 33592:1 33595:2 33609:1 33620:1 33637:1 33663:2 33680:1 33730:1 33734:2 33760:1 33766:1 33769:1 33795:1 33824:1 33861:1 33865:1 33880:1 34056:2 34057:1 34071:2 34075:2 34085:3 34099:1 34139:1 34144:1 34151:1 34157:1 34221:2 34246:1 34314:1 34321:1 34351:1 34364:1 34367:1 34371:1 34407:1 34410:1 34413:1 34435:7 34497:3 34566:1 34570:1 34596:2 34615:1 34634:3 34643:1 34659:1 34673:1 34674:1 34682:1 34691:1 34701:1 34757:1 34761:1 34794:1 34804:2 34862:1 34878:1 34996:12 35026:2 35041:2 35042:1 35094:1 35098:1 35124:2 35128:4 35135:2 35141:1 35164:1 35184:1 35207:1 35289:1 35310:1 35326:1 35342:1 35354:1 35382:2 35395:1 35499:1 35503:2 35520:1 35539:1 35589:2 35592:1 35602:2 35625:1 35636:1 35656:1 35696:1 35700:1 35714:1 35753:1 35757:1 35785:1 35789:2 35805:4 35838:1 35850:10 35888:1 35957:1 35965:1 35966:2 36011:1 2 9:1 10:1 31:2 32:1 73:1 95:1 104:2 106:2 107:1 140:1 166:2 191:1 207:1 239:1 256:1 278:1 297:1 302:2 303:1 322:1 323:1 328:1 365:1 414:3 452:1 454:1 478:1 498:1 520:1 568:1 601:1 610:1 621:1 659:1 672:1 684:1 690:1 751:2 761:1 766:1 795:2 820:11 825:2 831:1 881:1 919:1 935:1 941:1 964:1 999:1 1019:1 1022:1 1024:2 1028:1 1032:1 1082:2 1136:5 1142:1 1150:4 1194:2 1206:2 1212:1 1219:1 1226:1 1234:2 1260:1 1293:1 1305:1 1326:2 1403:1 1454:1 1459:2 1510:1 1541:10 1554:1 1555:2 1564:2 1592:1 1595:1 1605:1 1617:1 1619:1 1651:1 1706:2 1740:1 1757:1 1763:1 1771:2 1824:1 1836:1 1849:2 1861:1 1891:2 1897:3 1910:1 1911:1 1960:2 1991:1 1997:1 2013:1 2036:1 2058:1 2097:1 2102:1 2106:1 2145:1 2158:2 2164:2 2202:1 2249:1 2260:1 2292:1 2317:1 2320:1 2328:1 2352:1 2379:2 2400:2 2406:1 2446:1 2455:1 2486:1 2508:1 2522:1 2525:1 2547:1 2566:1 2604:1 2652:1 2655:1 2696:2 2743:1 2817:1 2827:1 2848:1 2857:1 2859:1 2862:3 2866:2 2867:1 2870:1 2872:1 2877:2 2883:2 2887:2 2895:1 2897:1 2902:1 2906:1 2909:1 2919:1 2942:1 2954:1 2971:1 2999:1 3002:1 3004:1 3027:1 3044:1 3054:1 3076:1 3086:2 3100:1 3116:2 3137:1 3179:1 3267:1 3312:1 3319:1 3322:2 3341:2 3348:1 3367:1 3381:1 3406:1 3413:2 3415:1 3423:2 3429:1 3510:2 3516:1 3520:1 3539:1 3645:4 3648:11 3651:1 3652:2 3653:1 3663:2 3666:1 3681:1 3691:2 3698:1 3706:3 3736:1 3756:1 3784:1 3846:2 4070:1 4119:1 4146:1 4157:1 4161:1 4211:1 4328:1 4359:1 4383:1 4395:1 4396:1 4412:1 4479:1 4488:1 4492:1 4555:1 4564:1 4601:1 4626:1 4646:1 4651:1 4722:2 4724:1 4767:1 4773:1 4780:1 4795:1 4815:1 4820:1 4855:1 4857:1 4859:1 4867:1 4886:1 4914:1 4920:10 4922:2 4992:1 5008:1 5015:1 5019:1 5020:2 5032:2 5047:1 5054:1 5058:4 5076:1 5119:1 5153:1 5163:1 5170:2 5178:1 5233:1 5235:1 5237:1 5254:1 5272:1 5299:2 5300:1 5302:2 5307:1 5308:1 5324:1 5348:1 5437:10 5453:1 5459:2 5486:1 5566:6 5588:1 5638:2 5655:2 5663:1 5672:1 5676:1 5712:1 5731:2 5832:1 5843:1 5869:1 5879:1 5885:1 5969:1 5973:1 5974:1 5980:1 5983:1 6004:1 6005:1 6043:1 6049:1 6075:1 6078:1 6096:7 6097:2 6140:1 6149:1 6253:2 6254:1 6277:2 6278:1 6279:1 6285:2 6293:2 6303:1 6309:1 6312:2 6315:2 6316:1 6326:1 6358:1 6411:1 6610:1 6622:1 6623:1 6684:1 6738:1 6799:1 6801:1 6803:1 6807:1 6832:1 6861:1 6867:2 6983:1 7065:1 7070:1 7076:1 7130:1 7225:2 7243:1 7252:1 7264:1 7289:3 7377:1 7422:1 7423:1 7432:1 7434:1 7455:1 7494:1 7532:1 7599:1 7604:2 7607:1 7656:1 7709:1 7721:1 7725:1 7727:1 7728:1 7739:1 7741:2 7764:1 7782:1 7825:1 7840:1 7852:3 7871:1 7937:1 7945:1 7965:1 7966:1 7974:1 7989:3 8004:3 8008:1 8015:1 8016:1 8019:1 8020:4 8054:1 8085:2 8125:1 8176:1 8186:1 8200:2 8203:2 8284:1 8316:1 8323:1 8335:1 8345:1 8427:1 8489:1 8493:1 8496:1 8501:2 8524:1 8564:1 8617:1 8648:1 8695:2 8714:1 8731:1 8751:1 8842:1 8845:1 8849:1 8866:1 8883:3 8943:1 8978:1 9007:1 9012:1 9052:1 9090:1 9113:1 9123:1 9153:1 9205:1 9216:1 9325:1 9338:2 9372:3 9374:1 9394:1 9428:2 9437:1 9446:1 9499:1 9526:2 9577:1 9586:1 9628:2 9629:4 9637:1 9655:1 9657:4 9688:2 9694:1 9702:17 9707:1 9708:1 9711:2 9733:4 9738:2 9744:1 9754:1 9758:1 9781:1 9803:1 9849:2 9866:1 9870:1 9885:1 9926:2 9942:2 9963:1 9967:1 9968:1 9999:3 10058:1 10063:1 10223:1 10235:1 10286:1 10298:1 10313:1 10314:1 10321:11 10333:1 10338:1 10356:1 10359:4 10360:2 10378:1 10401:1 10412:2 10444:1 10452:1 10470:13 10598:1 10599:1 10612:1 10669:1 10686:2 10695:1 10697:1 10704:1 10707:1 10711:1 10717:2 10718:1 10744:1 10778:1 10789:2 10791:1 10792:1 10798:1 10813:1 10864:1 10878:1 10884:1 10895:1 10911:2 11075:1 11109:1 11163:1 11165:1 11169:1 11207:1 11212:2 11230:1 11233:1 11247:1 11268:1 11270:1 11340:1 11378:1 11382:1 11391:1 11422:1 11489:2 11522:1 11557:2 11561:2 11564:1 11569:1 11571:2 11572:1 11573:1 11583:1 11617:1 11628:1 11640:1 11642:2 11645:1 11654:1 11678:2 11690:2 11697:2 11707:1 11774:1 11791:1 11793:1 11795:2 11815:1 11872:1 11918:1 11930:1 11931:2 11932:4 11961:1 11969:1 11978:1 11982:2 12004:1 12033:1 12052:1 12056:1 12057:1 12081:1 12082:1 12083:1 12112:1 12113:1 12146:1 12147:1 12186:1 12221:3 12231:1 12237:1 12239:2 12255:1 12359:1 12391:10 12401:1 12407:1 12435:1 12451:1 12479:1 12493:1 12540:1 12547:1 12552:1 12570:2 12580:1 12618:2 12630:1 12641:1 12643:1 12669:1 12692:2 12694:1 12734:2 12757:1 12777:1 12821:1 12824:2 12829:1 12848:1 12867:3 12977:1 12988:1 13040:1 13058:1 13112:1 13113:1 13179:1 13187:1 13213:1 13234:1 13258:1 13267:1 13282:1 13283:2 13303:1 13325:2 13384:1 13385:1 13412:3 13415:1 13418:1 13420:2 13429:1 13443:1 13454:1 13468:1 13471:1 13493:2 13516:1 13550:1 13601:1 13669:1 13686:2 13690:2 13704:1 13721:2 13737:1 13749:1 13761:1 13765:1 13793:1 13798:2 13803:1 13823:1 13824:2 13826:2 13828:1 13859:1 13880:1 13891:3 13895:1 13900:1 13901:1 13910:1 13921:2 13931:1 13942:1 13972:1 13998:1 14009:1 14070:1 14093:1 14105:1 14134:1 14146:2 14149:1 14186:1 14189:2 14235:2 14296:1 14302:1 14309:1 14322:3 14337:1 14340:1 14448:1 14491:1 14519:1 14533:1 14550:1 14554:1 14559:1 14567:3 14571:2 14580:3 14611:1 14614:1 14621:2 14636:1 14642:1 14667:1 14716:1 14727:1 14737:1 14742:2 14744:1 14791:2 14844:1 14869:1 14941:1 15037:2 15046:1 15060:2 15083:1 15086:1 15150:1 15151:1 15152:1 15160:1 15197:1 15269:1 15292:1 15315:2 15326:1 15383:1 15385:1 15487:1 15502:2 15525:1 15526:1 15574:1 15577:1 15584:1 15587:1 15595:1 15707:1 15747:1 15776:2 15778:11 15786:1 15797:1 15800:3 15813:1 15844:3 15855:1 15864:1 15868:1 15900:1 15981:1 16006:2 16013:1 16083:1 16099:1 16114:1 16134:1 16142:2 16149:1 16241:1 16269:1 16293:1 16304:1 16320:1 16327:4 16357:1 16365:1 16372:1 16394:1 16490:1 16505:2 16510:1 16516:1 16528:1 16535:1 16594:1 16609:5 16613:1 16720:1 16729:1 16731:1 16732:1 16742:1 16775:1 16792:2 16797:2 16803:1 16837:1 16854:1 16869:1 16874:1 16889:1 16897:1 16898:1 16914:1 16918:1 16929:1 16968:1 16970:1 16977:2 16979:5 17003:1 17008:1 17013:1 17033:2 17064:1 17075:1 17076:1 17082:1 17114:1 17152:1 17172:3 17204:1 17217:1 17230:1 17243:1 17273:1 17278:2 17286:2 17319:1 17333:5 17336:1 17417:2 17426:1 17449:3 17516:1 17545:1 17547:2 17629:1 17675:3 17679:1 17794:1 17806:2 17814:2 17817:2 17835:1 17836:1 17925:1 17943:1 17957:1 17972:1 17992:1 17997:1 17999:1 18000:1 18005:1 18016:1 18037:1 18039:1 18048:1 18092:11 18101:2 18105:1 18106:1 18110:1 18120:1 18128:1 18137:1 18198:1 18200:1 18203:3 18214:1 18221:1 18244:1 18270:2 18276:1 18297:1 18325:1 18339:1 18474:1 18506:1 18535:1 18561:2 18582:1 18603:1 18608:2 18645:3 18673:1 18696:1 18708:2 18712:1 18715:1 18747:1 18767:2 18779:1 18781:1 18793:1 18794:1 18823:1 18876:1 18898:1 18959:1 19064:2 19067:1 19083:1 19087:1 19192:1 19193:1 19225:1 19263:3 19269:2 19303:1 19361:1 19397:1 19416:1 19437:1 19458:2 19471:1 19475:1 19490:1 19496:2 19513:2 19525:1 19538:1 19602:1 19605:1 19620:1 19645:4 19691:1 19796:1 19810:5 19851:1 19865:1 19894:1 19905:1 19932:6 19976:2 20046:1 20074:1 20078:1 20109:3 20115:2 20117:1 20242:1 20261:1 20272:1 20286:1 20292:1 20296:1 20324:1 20383:1 20444:1 20455:1 20537:1 20566:1 20568:1 20572:1 20588:2 20604:1 20643:1 20654:1 20727:1 20746:1 20751:1 20754:1 20781:1 20783:1 20785:1 20796:1 20799:1 20917:1 20941:15 20974:1 20978:1 20997:1 21003:2 21064:1 21071:1 21083:1 21097:1 21124:2 21130:2 21174:1 21209:1 21214:1 21215:1 21299:1 21316:1 21318:1 21371:1 21503:1 21508:1 21512:1 21513:1 21593:1 21608:2 21634:1 21686:2 21704:2 21713:1 21724:1 21823:1 21829:1 21843:1 21864:1 21872:2 21943:1 21975:2 21987:2 22008:1 22037:1 22076:1 22079:2 22084:1 22143:1 22169:1 22177:1 22181:1 22186:1 22190:1 22300:2 22305:1 22315:1 22347:1 22429:1 22516:1 22530:1 22547:1 22628:3 22650:1 22666:1 22727:2 22783:1 22800:1 22806:1 22824:1 22870:1 22883:655 22909:1 22923:1 22944:1 22969:1 23031:1 23043:1 23044:1 23079:1 23119:1 23129:1 23139:1 23193:1 23320:1 23321:1 23427:1 23456:1 23457:1 23468:1 23508:1 23521:2 23523:1 23549:1 23603:1 23607:2 23640:2 23647:1 23653:1 23698:1 23712:1 23773:1 23812:1 23821:1 23833:2 23834:2 23874:1 23880:2 23914:2 23934:1 23947:6 23979:2 24012:2 24020:1 24047:3 24064:1 24066:1 24079:1 24097:2 24105:2 24106:1 24118:1 24185:1 24191:1 24209:2 24217:1 24239:1 24292:1 24332:1 24369:1 24450:1 24479:1 24482:1 24483:1 24491:1 24518:1 24566:1 24591:1 24592:3 24620:1 24653:1 24680:1 24700:1 24708:3 24753:1 24762:1 24774:1 24794:1 24808:1 24820:1 24883:2 24894:1 24919:1 24924:1 24978:1 25047:1 25053:1 25058:1 25122:1 25144:1 25157:1 25161:2 25163:1 25179:2 25217:1 25244:1 25300:1 25334:1 25369:1 25373:1 25407:2 25417:1 25427:2 25448:1 25456:1 25461:1 25481:1 25486:1 25491:1 25498:2 25505:1 25511:3 25527:1 25529:1 25541:1 25553:1 25554:1 25590:2 25600:1 25608:2 25623:1 25637:1 25720:1 25721:3 25733:1 25738:1 25781:1 25782:1 25793:1 25811:1 25815:1 25846:1 25852:1 25867:1 25879:1 25917:1 25994:1 26011:1 26014:1 26018:2 26062:1 26070:1 26091:1 26102:2 26120:1 26153:1 26155:1 26156:1 26203:1 26214:1 26215:1 26216:2 26327:1 26337:2 26385:2 26407:1 26424:1 26438:1 26453:1 26460:1 26508:2 26552:1 26593:1 26602:1 26608:1 26612:2 26614:1 26628:1 26642:1 26651:1 26668:4 26679:1 26694:1 26777:1 26779:3 26782:1 26794:1 26795:1 26808:1 26818:1 26827:1 26828:1 26842:1 26854:1 26907:1 26984:1 26995:2 26999:1 27004:3 27029:2 27051:1 27087:1 27092:1 27127:2 27153:2 27213:1 27243:1 27251:1 27260:2 27287:1 27331:6 27333:1 27339:1 27343:1 27396:4 27398:1 27401:1 27415:1 27447:1 27460:7 27478:1 27500:1 27526:1 27527:1 27542:1 27573:1 27599:1 27603:1 27619:1 27677:2 27723:1 27760:1 27787:10 27804:1 27808:1 27810:1 27813:2 27854:1 27859:1 27860:1 27862:1 27878:1 27879:1 27920:1 27925:1 27957:1 27973:1 27987:1 28000:1 28011:1 28017:1 28052:1 28179:1 28276:1 28279:1 28297:1 28298:2 28308:1 28313:1 28317:1 28370:11 28398:1 28433:1 28472:1 28473:1 28482:1 28489:6 28541:1 28560:1 28567:1 28577:2 28582:1 28587:1 28639:1 28645:1 28647:1 28650:1 28686:1 28817:2 28831:1 28852:1 28908:1 28913:1 28949:1 28983:1 28993:1 28996:1 29004:1 29014:1 29087:1 29126:1 29133:1 29170:2 29174:1 29215:1 29233:1 29258:1 29328:1 29330:1 29334:1 29398:1 29419:1 29426:1 29455:1 29464:1 29486:2 29516:1 29551:1 29554:1 29557:1 29564:1 29568:1 29583:1 29584:1 29587:2 29591:1 29604:1 29634:2 29688:3 29741:1 29749:1 29752:1 29756:1 29775:1 29845:1 29952:1 29957:1 30035:1 30083:1 30084:1 30093:1 30099:2 30105:1 30144:2 30192:1 30199:2 30213:1 30248:1 30261:2 30284:1 30294:1 30307:1 30329:1 30424:1 30454:1 30478:1 30482:1 30483:1 30535:1 30537:1 30538:2 30541:1 30552:2 30601:1 30617:2 30688:1 30743:1 30790:1 30794:1 30814:1 30817:1 30823:1 30912:2 30931:1 30960:1 30970:1 30981:1 30987:1 31026:1 31093:1 31112:2 31134:1 31142:1 31148:1 31168:1 31177:1 31178:1 31181:1 31188:1 31226:1 31235:1 31255:1 31264:2 31265:1 31296:1 31317:1 31329:1 31334:2 31377:2 31411:1 31413:2 31425:1 31478:1 31550:1 31569:1 31574:1 31578:2 31588:1 31610:1 31612:1 31648:1 31660:1 31708:1 31725:1 31747:1 31753:1 31768:1 31784:1 31787:1 31808:1 31834:1 31848:1 31866:1 31882:1 31885:1 31919:1 31930:3 31946:2 31963:1 31964:1 31968:5 31969:1 32036:1 32066:3 32074:1 32106:1 32117:1 32219:1 32285:1 32307:1 32311:1 32326:1 32329:1 32376:1 32459:1 32491:1 32505:2 32515:1 32532:1 32553:2 32574:1 32612:1 32683:1 32732:1 32745:1 32749:1 32750:4 32774:2 32787:1 32801:3 32832:2 32879:1 32890:2 32891:1 32896:2 32909:1 32924:1 32929:1 32941:3 32950:1 32955:1 32958:1 32974:1 33027:1 33053:1 33098:1 33112:1 33118:1 33128:3 33133:2 33137:1 33141:1 33142:1 33157:2 33183:2 33296:1 33297:1 33309:1 33346:1 33352:2 33388:1 33389:1 33404:1 33413:1 33446:1 33461:1 33467:1 33498:1 33503:1 33512:1 33530:1 33533:1 33537:2 33543:2 33556:2 33563:2 33592:1 33595:2 33609:1 33620:1 33637:1 33663:2 33680:2 33730:1 33734:2 33760:1 33766:1 33769:1 33795:1 33824:1 33861:1 33865:1 33880:1 33928:1 34056:2 34057:1 34071:2 34075:3 34085:3 34099:1 34139:1 34144:1 34151:1 34157:1 34221:2 34246:2 34314:1 34321:1 34351:1 34364:1 34367:1 34371:1 34407:1 34410:1 34413:1 34435:7 34497:3 34566:1 34570:1 34596:2 34615:1 34634:3 34643:1 34659:1 34673:1 34674:1 34682:1 34691:2 34701:1 34749:1 34757:1 34761:1 34782:1 34794:1 34804:2 34862:1 34878:1 34996:13 35026:2 35031:1 35041:3 35042:1 35094:1 35098:1 35124:2 35128:4 35135:2 35141:1 35164:1 35184:1 35207:1 35289:1 35310:1 35311:1 35326:1 35342:1 35354:1 35382:2 35395:1 35499:1 35503:2 35520:1 35539:1 35589:2 35592:1 35602:2 35625:1 35636:1 35656:1 35696:1 35700:1 35714:1 35753:1 35757:1 35785:1 35789:2 35805:4 35838:2 35850:11 35888:1 35957:1 35965:1 35966:2 36011:1 2 9:1 10:1 31:2 32:1 73:1 95:1 104:2 106:2 107:1 140:1 166:2 177:1 191:1 207:1 239:1 256:1 278:1 297:1 302:2 303:1 322:1 323:1 328:1 365:1 414:3 452:1 454:1 478:1 498:1 520:1 526:1 568:1 601:1 610:1 621:1 659:1 672:1 674:1 684:1 690:1 751:2 761:1 766:1 795:2 820:12 825:2 831:1 861:1 881:1 919:1 935:1 941:1 964:1 999:1 1019:1 1022:1 1024:2 1028:1 1032:1 1082:2 1136:6 1142:1 1150:4 1194:2 1206:2 1210:1 1212:1 1219:1 1226:1 1234:2 1260:1 1293:1 1301:1 1305:1 1326:2 1386:1 1403:1 1454:1 1459:2 1510:1 1541:11 1554:1 1555:2 1564:2 1592:1 1595:1 1605:1 1617:1 1619:1 1651:1 1706:2 1740:1 1757:1 1763:1 1771:2 1824:1 1836:2 1849:2 1861:1 1891:2 1897:3 1910:1 1911:1 1960:2 1991:1 1997:1 2013:1 2036:1 2058:1 2097:1 2102:1 2106:1 2145:1 2158:2 2164:3 2202:1 2249:1 2260:1 2282:1 2292:1 2317:1 2320:1 2328:1 2345:1 2352:1 2379:2 2400:2 2406:2 2420:1 2446:1 2455:1 2486:2 2508:1 2522:1 2525:1 2547:1 2566:1 2604:1 2652:1 2655:1 2696:3 2743:1 2817:1 2827:1 2848:1 2857:1 2859:1 2862:3 2866:2 2867:1 2870:1 2872:3 2877:2 2883:2 2887:3 2895:1 2897:1 2902:1 2906:1 2909:1 2919:1 2942:1 2954:2 2971:2 2999:1 3002:1 3004:1 3027:1 3044:1 3054:1 3076:1 3086:2 3100:1 3106:1 3116:2 3137:1 3179:1 3224:2 3267:1 3312:1 3319:1 3322:2 3341:2 3348:1 3367:1 3381:1 3406:1 3413:2 3415:1 3423:2 3429:1 3510:2 3516:1 3520:1 3539:1 3645:7 3648:12 3651:1 3652:2 3653:1 3663:2 3666:1 3681:1 3691:2 3695:1 3698:1 3706:3 3736:1 3756:1 3784:1 3846:2 4070:1 4119:1 4146:1 4157:1 4161:2 4211:1 4328:1 4355:1 4359:1 4383:1 4395:1 4396:1 4412:1 4479:1 4488:1 4492:1 4555:1 4564:1 4601:1 4626:1 4646:1 4651:1 4722:2 4724:1 4767:1 4773:1 4780:1 4795:1 4815:1 4820:1 4855:1 4857:1 4859:1 4867:1 4886:1 4914:1 4920:11 4922:2 4947:1 4992:1 5008:1 5015:1 5019:1 5020:2 5032:2 5047:1 5054:1 5058:4 5076:1 5119:1 5153:1 5163:1 5170:2 5178:1 5233:1 5235:1 5237:1 5254:1 5272:1 5299:2 5300:1 5302:2 5307:1 5308:1 5324:1 5348:1 5437:11 5453:1 5459:3 5471:1 5486:1 5566:6 5588:1 5638:2 5655:2 5663:1 5672:1 5676:1 5712:1 5731:3 5832:1 5843:1 5869:1 5879:3 5885:1 5960:1 5969:1 5973:2 5974:1 5980:1 5983:1 6004:1 6005:1 6043:1 6049:1 6075:1 6078:1 6096:7 6097:2 6140:1 6149:2 6253:2 6254:1 6277:2 6278:1 6279:1 6285:3 6292:1 6293:2 6303:1 6309:2 6312:2 6315:2 6316:1 6326:1 6358:1 6411:1 6610:1 6622:1 6623:2 6684:1 6738:1 6799:1 6801:1 6803:1 6807:1 6832:1 6861:1 6867:2 6972:1 6983:1 7010:1 7065:1 7070:1 7076:1 7130:1 7225:2 7243:1 7252:1 7264:1 7289:3 7377:1 7422:1 7423:1 7432:1 7434:1 7455:1 7494:1 7532:1 7589:1 7599:1 7604:2 7607:1 7656:1 7709:1 7721:1 7725:1 7727:1 7728:1 7739:1 7741:2 7764:1 7782:1 7825:1 7840:1 7852:3 7871:1 7905:1 7937:2 7945:1 7965:1 7966:1 7974:1 7989:3 7995:1 8004:3 8008:1 8015:1 8016:1 8019:1 8020:5 8054:1 8085:2 8125:1 8176:1 8186:1 8200:2 8203:2 8284:1 8316:1 8323:1 8335:1 8345:1 8348:1 8377:1 8393:1 8427:1 8449:1 8489:1 8493:1 8496:1 8501:3 8524:1 8564:1 8566:1 8617:1 8648:1 8695:2 8714:1 8731:1 8751:1 8842:1 8845:1 8849:1 8866:1 8883:3 8905:1 8943:1 8966:2 8978:1 9007:1 9012:1 9052:2 9090:1 9113:1 9123:1 9153:1 9205:1 9216:1 9217:1 9325:1 9338:2 9372:4 9374:1 9394:1 9428:2 9437:1 9446:1 9499:1 9526:2 9577:1 9586:1 9628:3 9629:5 9637:1 9655:1 9657:4 9688:2 9694:1 9702:19 9707:1 9708:1 9711:2 9719:1 9733:7 9738:2 9744:1 9754:1 9758:1 9781:1 9793:1 9803:1 9849:2 9866:1 9870:1 9885:1 9926:2 9942:2 9963:1 9967:1 9968:1 9999:3 10058:1 10063:1 10103:1 10167:1 10223:1 10235:1 10286:1 10298:1 10313:1 10314:1 10321:12 10333:1 10338:1 10356:1 10359:5 10360:2 10378:1 10401:1 10412:2 10444:1 10452:1 10470:14 10598:1 10599:1 10612:1 10669:1 10686:2 10695:1 10697:1 10704:1 10707:1 10711:1 10717:2 10718:1 10736:1 10744:1 10778:1 10789:2 10791:1 10792:1 10798:1 10807:1 10808:2 10812:1 10813:1 10826:1 10864:1 10878:1 10884:1 10895:1 10911:2 11002:1 11075:2 11109:1 11163:1 11165:1 11169:1 11207:1 11212:2 11230:1 11233:1 11247:1 11268:1 11270:1 11340:1 11378:1 11382:2 11391:1 11422:1 11489:2 11522:1 11557:2 11561:2 11564:1 11569:1 11571:2 11572:1 11573:1 11583:1 11587:1 11617:1 11628:1 11640:1 11642:2 11645:1 11654:1 11678:2 11690:2 11697:2 11707:1 11774:1 11791:1 11793:1 11795:2 11815:1 11865:1 11872:1 11882:1 11903:1 11918:1 11930:1 11931:2 11932:4 11961:2 11969:1 11978:1 11982:2 12004:1 12033:1 12052:1 12056:1 12057:1 12081:1 12082:1 12083:1 12112:1 12113:1 12146:1 12147:1 12186:1 12221:4 12231:1 12237:1 12239:2 12255:1 12359:1 12391:11 12401:1 12407:1 12435:1 12451:1 12479:1 12493:1 12521:1 12540:1 12547:2 12552:1 12570:2 12580:1 12608:1 12618:2 12630:1 12641:1 12643:1 12669:1 12673:1 12692:2 12694:1 12734:2 12757:1 12777:1 12821:1 12824:2 12829:1 12848:1 12867:3 12977:1 12988:1 13040:1 13058:1 13089:1 13112:1 13113:2 13128:1 13179:1 13187:1 13213:1 13234:1 13258:2 13267:1 13282:1 13283:2 13303:1 13325:2 13384:1 13385:1 13412:3 13415:1 13418:1 13420:2 13429:1 13443:1 13454:1 13468:1 13471:1 13483:1 13493:3 13516:1 13550:1 13601:1 13669:1 13686:2 13690:3 13704:1 13721:2 13737:1 13749:1 13761:1 13765:1 13793:1 13798:3 13803:1 13808:1 13823:1 13824:2 13826:2 13828:1 13859:1 13880:1 13891:3 13895:1 13900:1 13901:1 13910:1 13921:2 13931:1 13942:1 13972:1 13998:1 14009:1 14015:1 14032:1 14070:2 14093:1 14105:1 14134:1 14146:3 14149:1 14152:1 14162:1 14186:1 14189:2 14235:2 14296:1 14302:1 14309:1 14322:4 14337:1 14340:1 14406:1 14448:1 14491:1 14519:1 14533:1 14550:1 14554:1 14559:1 14564:1 14567:3 14571:2 14580:3 14611:1 14614:1 14621:2 14628:1 14636:1 14638:1 14642:1 14667:1 14716:1 14727:1 14737:1 14742:2 14744:1 14791:2 14840:1 14844:1 14869:1 14941:1 15037:3 15046:1 15060:2 15083:1 15086:1 15150:1 15151:1 15152:1 15160:1 15197:1 15269:1 15292:1 15312:1 15315:2 15326:1 15383:1 15385:2 15400:1 15487:1 15502:2 15525:1 15526:1 15574:1 15577:1 15584:1 15587:1 15595:1 15707:1 15747:1 15776:2 15778:12 15786:1 15797:1 15800:4 15813:1 15844:3 15855:1 15864:1 15868:1 15900:1 15942:1 15943:1 15981:1 16006:2 16013:1 16083:1 16099:1 16114:1 16134:1 16142:2 16149:1 16241:1 16269:1 16293:1 16304:1 16320:1 16327:4 16357:1 16365:1 16372:1 16394:1 16490:1 16499:1 16505:2 16510:1 16516:1 16528:1 16535:1 16594:1 16609:6 16613:1 16643:1 16720:1 16729:1 16731:1 16732:1 16742:1 16775:1 16792:3 16797:2 16803:1 16837:1 16854:1 16869:1 16874:1 16889:1 16897:1 16898:1 16914:1 16918:1 16929:1 16968:1 16970:1 16977:2 16979:5 17003:1 17008:1 17013:1 17033:2 17064:1 17075:1 17076:1 17082:1 17114:1 17152:1 17172:3 17181:1 17204:1 17217:1 17230:1 17243:1 17273:1 17278:2 17286:2 17315:1 17319:1 17333:5 17336:2 17417:2 17426:1 17449:3 17516:1 17545:1 17547:2 17623:1 17629:1 17675:4 17679:1 17794:1 17806:2 17814:2 17817:2 17835:1 17836:1 17925:1 17943:1 17957:1 17972:1 17992:1 17997:1 17999:1 18000:1 18005:1 18016:1 18032:1 18037:1 18039:1 18048:1 18080:1 18092:12 18101:2 18105:1 18106:1 18110:1 18120:1 18128:1 18137:1 18198:1 18200:1 18203:3 18214:1 18221:1 18244:1 18270:2 18276:1 18297:1 18325:1 18339:1 18463:1 18474:1 18506:1 18535:1 18561:2 18582:1 18603:1 18608:2 18645:3 18673:1 18696:1 18708:2 18712:1 18715:1 18747:1 18767:2 18779:1 18781:1 18793:1 18794:1 18823:1 18876:1 18898:2 18959:1 19064:2 19067:1 19083:1 19087:1 19191:1 19192:1 19193:1 19225:1 19263:3 19269:2 19303:1 19361:1 19397:1 19416:1 19437:1 19458:2 19471:1 19475:1 19490:1 19496:2 19500:1 19513:2 19525:1 19538:1 19602:1 19605:1 19620:1 19645:4 19691:1 19787:1 19796:1 19810:6 19814:1 19851:1 19865:1 19894:1 19905:1 19932:6 19976:2 20046:1 20074:1 20078:1 20091:1 20109:4 20115:3 20117:1 20130:1 20201:1 20242:1 20261:1 20272:1 20286:1 20292:1 20296:1 20324:1 20355:1 20383:1 20444:1 20455:1 20537:1 20566:1 20568:1 20572:1 20588:2 20604:1 20643:1 20654:1 20727:1 20746:1 20751:2 20754:1 20781:1 20783:1 20785:1 20796:1 20799:2 20816:1 20917:1 20941:16 20949:1 20974:1 20978:1 20997:1 21003:2 21064:1 21071:1 21083:1 21097:1 21124:2 21130:2 21149:1 21174:1 21209:1 21214:1 21215:1 21299:1 21316:1 21318:2 21371:1 21503:1 21508:1 21512:1 21513:1 21593:1 21608:2 21634:1 21686:2 21704:2 21713:1 21724:1 21823:2 21829:2 21843:1 21864:1 21872:2 21939:1 21943:1 21975:2 21987:2 22008:1 22032:1 22037:1 22076:1 22079:2 22084:1 22143:1 22169:1 22177:1 22181:1 22186:1 22190:1 22300:3 22305:1 22315:1 22347:1 22388:1 22429:1 22516:1 22530:1 22547:1 22628:3 22650:1 22666:1 22720:1 22727:2 22783:1 22800:1 22806:1 22824:1 22870:1 22883:710 22909:1 22923:1 22944:1 22969:1 23031:1 23039:1 23043:1 23044:1 23079:1 23119:1 23129:1 23139:1 23193:1 23320:1 23321:1 23427:1 23456:1 23457:1 23468:2 23482:1 23508:1 23521:2 23523:1 23549:1 23603:1 23607:2 23640:2 23647:1 23653:1 23698:1 23712:1 23773:1 23812:1 23821:1 23833:2 23834:2 23874:1 23880:2 23914:2 23934:1 23947:6 23958:1 23979:2 24012:2 24020:1 24047:3 24064:2 24066:1 24079:1 24097:2 24105:2 24106:1 24118:1 24185:1 24191:1 24209:2 24217:1 24239:1 24292:1 24332:1 24369:1 24450:1 24479:1 24482:1 24483:1 24491:1 24518:1 24566:1 24591:1 24592:3 24598:1 24620:1 24643:1 24651:1 24653:1 24680:1 24681:2 24700:1 24708:3 24753:1 24762:1 24774:1 24781:1 24794:1 24808:1 24820:1 24826:1 24869:1 24883:2 24894:1 24918:1 24919:1 24924:1 24978:1 25047:1 25053:1 25058:1 25080:1 25114:1 25122:1 25144:1 25157:1 25161:2 25163:1 25179:2 25217:1 25244:1 25300:1 25334:1 25369:1 25373:1 25392:1 25407:2 25417:1 25427:2 25448:1 25456:1 25461:1 25481:1 25486:1 25491:1 25498:2 25505:1 25511:3 25527:1 25529:1 25541:1 25553:1 25554:1 25590:2 25600:1 25608:2 25623:1 25637:2 25720:1 25721:3 25733:1 25738:1 25781:1 25782:1 25793:1 25811:1 25815:1 25846:1 25852:1 25867:1 25879:1 25917:1 25994:1 26011:1 26014:1 26018:2 26062:1 26070:1 26091:1 26102:2 26119:1 26120:1 26153:1 26155:1 26156:1 26203:1 26214:1 26215:1 26216:2 26327:1 26337:2 26385:2 26407:1 26424:1 26438:2 26453:1 26459:1 26460:1 26508:2 26552:1 26593:1 26602:2 26608:1 26612:2 26614:1 26628:2 26642:1 26651:1 26668:5 26679:1 26694:1 26743:1 26777:1 26779:4 26782:1 26794:1 26795:1 26808:1 26809:1 26818:1 26826:1 26827:1 26828:2 26842:1 26854:1 26907:1 26914:1 26984:1 26995:2 26999:1 27004:3 27029:2 27051:1 27072:1 27087:1 27092:1 27127:2 27153:2 27203:1 27213:1 27243:1 27251:1 27259:1 27260:4 27287:2 27331:6 27333:1 27339:1 27343:1 27396:4 27398:1 27401:1 27415:1 27447:1 27460:7 27478:1 27500:1 27526:1 27527:1 27542:1 27573:1 27599:1 27603:1 27619:2 27677:2 27723:1 27760:1 27787:11 27804:1 27808:1 27810:1 27813:2 27854:1 27859:1 27860:1 27862:1 27878:1 27879:1 27920:1 27925:1 27957:1 27973:1 27987:2 28000:1 28011:2 28017:1 28052:1 28179:1 28276:1 28279:1 28287:1 28297:1 28298:2 28308:1 28313:1 28317:1 28370:12 28398:1 28433:1 28472:1 28473:1 28482:1 28489:6 28541:1 28560:1 28567:1 28577:2 28582:1 28587:1 28621:1 28639:1 28645:1 28647:2 28650:1 28686:1 28817:2 28831:1 28833:1 28852:1 28908:1 28913:1 28939:1 28949:1 28983:2 28993:1 28996:1 29004:1 29014:1 29087:1 29126:1 29133:1 29170:2 29174:1 29215:1 29233:1 29258:1 29328:1 29330:1 29334:1 29367:1 29398:1 29419:1 29426:2 29455:1 29464:1 29486:2 29516:2 29551:1 29554:1 29557:1 29564:1 29568:1 29583:1 29584:2 29587:2 29591:1 29604:1 29634:2 29688:4 29741:1 29749:1 29752:1 29756:1 29775:1 29845:1 29901:1 29952:1 29957:1 29962:2 30004:1 30035:1 30079:1 30083:1 30084:1 30093:1 30099:2 30105:1 30144:2 30192:1 30199:2 30213:1 30248:1 30253:1 30261:2 30284:1 30294:1 30307:1 30329:1 30370:1 30424:1 30454:1 30478:1 30482:1 30483:1 30493:1 30535:1 30537:1 30538:2 30541:1 30552:2 30601:1 30617:2 30641:1 30688:1 30743:1 30789:1 30790:1 30794:1 30814:1 30817:2 30823:1 30912:2 30931:1 30960:1 30970:1 30981:1 30987:1 31026:1 31057:1 31093:1 31112:2 31134:1 31142:1 31148:1 31168:1 31177:1 31178:1 31181:1 31188:1 31201:1 31226:1 31235:1 31255:1 31264:2 31265:1 31296:1 31317:1 31329:1 31334:2 31377:2 31411:1 31413:4 31425:2 31478:1 31550:1 31563:1 31569:1 31574:1 31578:2 31588:1 31610:1 31612:1 31648:1 31660:1 31708:1 31725:1 31737:1 31747:1 31753:1 31768:1 31784:1 31787:1 31808:1 31834:1 31848:1 31866:1 31882:1 31885:1 31919:1 31930:3 31946:2 31963:1 31964:1 31968:5 31969:1 32036:1 32066:3 32074:1 32099:1 32106:1 32117:1 32219:1 32285:2 32307:1 32311:1 32326:1 32329:1 32376:1 32459:1 32491:1 32493:1 32505:2 32515:1 32532:1 32553:2 32574:1 32596:1 32612:1 32683:1 32700:1 32732:1 32745:1 32749:1 32750:4 32774:2 32787:1 32801:3 32832:2 32879:1 32890:2 32891:1 32896:2 32909:1 32924:1 32929:1 32941:3 32950:1 32955:1 32958:1 32974:1 33027:1 33053:1 33098:1 33112:1 33118:1 33128:3 33133:2 33137:1 33141:1 33142:1 33157:2 33183:2 33272:1 33296:1 33297:1 33309:2 33330:1 33346:1 33352:2 33388:1 33389:1 33404:1 33413:1 33446:1 33461:1 33467:1 33498:1 33503:1 33512:1 33530:1 33533:2 33537:2 33543:2 33556:2 33563:2 33592:1 33595:2 33609:1 33620:1 33623:1 33637:1 33663:3 33680:2 33730:1 33734:2 33760:1 33766:1 33769:1 33795:1 33824:1 33861:1 33865:1 33880:1 33928:1 34040:1 34056:2 34057:2 34071:2 34075:3 34085:3 34099:1 34139:1 34144:1 34151:1 34157:1 34221:2 34246:2 34314:1 34321:1 34351:1 34364:1 34367:1 34371:1 34407:1 34410:1 34413:1 34435:11 34497:4 34566:1 34570:1 34596:2 34615:1 34634:4 34643:2 34659:1 34673:1 34674:1 34682:1 34691:3 34701:1 34749:1 34757:1 34761:1 34782:1 34794:1 34804:2 34862:1 34878:1 34996:14 35026:2 35031:1 35041:3 35042:1 35094:1 35098:1 35124:2 35128:4 35135:2 35141:1 35164:1 35184:1 35201:1 35207:1 35281:1 35289:2 35310:1 35311:1 35326:1 35342:1 35354:1 35382:2 35395:1 35410:1 35499:1 35503:2 35517:1 35520:1 35539:1 35589:2 35592:1 35602:2 35625:1 35636:1 35656:1 35696:1 35700:1 35714:1 35753:1 35757:1 35785:1 35789:2 35805:4 35838:2 35850:12 35888:1 35957:1 35965:2 35966:2 36011:1 2 9:1 10:1 31:2 32:1 73:1 95:1 104:2 106:2 107:1 122:1 140:1 166:2 177:1 191:1 207:1 235:1 239:1 251:1 256:1 278:1 297:1 302:3 303:1 322:1 323:1 328:1 365:1 414:3 452:1 454:1 478:1 498:1 520:1 526:1 555:1 568:1 601:1 607:1 610:1 621:1 659:1 672:1 674:1 684:1 690:1 750:1 751:2 761:1 766:1 795:2 820:13 825:3 831:1 861:1 881:1 919:1 935:1 941:1 964:1 999:1 1019:1 1022:1 1024:2 1028:1 1032:1 1082:2 1136:6 1142:1 1150:4 1176:1 1194:2 1206:2 1210:1 1212:1 1219:1 1226:1 1234:2 1253:1 1260:1 1293:1 1301:1 1305:1 1326:2 1386:1 1403:1 1454:1 1459:2 1510:1 1537:1 1541:12 1554:1 1555:2 1564:3 1592:1 1595:1 1605:1 1617:1 1619:1 1634:1 1651:1 1682:1 1706:2 1740:1 1757:1 1763:1 1771:2 1824:1 1836:2 1849:2 1861:1 1891:2 1897:3 1910:1 1911:1 1929:1 1960:2 1991:1 1997:1 2013:1 2036:1 2058:1 2097:1 2102:1 2106:1 2145:1 2158:2 2164:3 2202:1 2249:1 2260:1 2282:1 2292:1 2307:1 2317:1 2320:1 2328:1 2345:1 2352:1 2379:2 2400:2 2406:2 2420:1 2446:1 2455:1 2486:2 2508:1 2522:1 2525:1 2547:1 2566:1 2604:1 2652:1 2655:1 2696:3 2743:1 2817:1 2827:1 2848:1 2857:1 2859:1 2862:3 2866:2 2867:1 2870:1 2872:3 2877:2 2883:3 2887:3 2895:1 2897:1 2902:1 2906:1 2909:1 2919:1 2942:1 2954:2 2971:2 2999:1 3002:1 3004:1 3027:1 3044:1 3054:1 3076:1 3086:2 3100:1 3106:1 3116:2 3137:1 3179:1 3206:1 3224:2 3267:1 3312:1 3319:1 3322:2 3341:2 3348:1 3367:1 3381:1 3406:1 3413:2 3415:1 3420:1 3423:2 3429:1 3443:1 3510:2 3516:1 3520:1 3539:1 3645:8 3648:13 3651:1 3652:2 3653:1 3663:2 3666:1 3681:1 3691:2 3695:1 3698:1 3706:3 3736:1 3741:1 3756:1 3784:1 3846:2 3897:1 4045:1 4070:1 4119:1 4146:1 4157:1 4161:2 4211:1 4328:1 4334:1 4355:1 4359:1 4383:1 4395:1 4396:1 4412:1 4479:1 4488:1 4492:1 4517:1 4555:1 4564:1 4601:1 4626:1 4645:1 4646:1 4651:1 4722:2 4724:1 4767:1 4773:1 4780:1 4795:1 4815:1 4820:1 4855:1 4857:1 4859:1 4867:1 4886:1 4914:1 4920:12 4922:2 4927:1 4947:1 4992:1 5008:1 5015:1 5019:1 5020:2 5032:2 5047:1 5054:1 5058:4 5076:1 5119:1 5153:1 5163:1 5170:2 5178:1 5233:1 5235:1 5237:1 5240:1 5254:1 5272:1 5299:2 5300:1 5302:2 5307:1 5308:1 5324:1 5348:1 5437:12 5453:1 5459:3 5471:1 5473:1 5486:1 5492:1 5566:6 5588:1 5638:2 5655:2 5663:1 5672:1 5676:1 5712:1 5731:3 5832:1 5843:1 5869:1 5879:3 5885:1 5960:1 5969:1 5973:2 5974:1 5980:1 5983:1 6004:1 6005:1 6043:1 6049:1 6075:1 6078:1 6096:7 6097:2 6140:1 6149:2 6253:2 6254:1 6277:2 6278:1 6279:1 6285:3 6292:1 6293:3 6303:1 6309:2 6312:3 6315:2 6316:1 6326:1 6358:1 6411:1 6528:1 6610:1 6622:1 6623:2 6683:1 6684:1 6698:1 6738:1 6799:1 6801:1 6803:1 6807:1 6832:1 6861:1 6867:2 6870:1 6972:1 6983:1 7008:1 7010:1 7061:1 7065:1 7070:1 7076:1 7130:1 7225:2 7243:1 7252:1 7264:1 7289:4 7377:1 7422:1 7423:1 7432:1 7434:1 7451:1 7455:1 7494:1 7532:1 7589:1 7599:1 7604:2 7607:1 7656:1 7709:1 7721:1 7725:1 7727:1 7728:1 7739:1 7741:2 7764:1 7782:1 7825:1 7840:1 7852:3 7857:1 7871:1 7905:1 7937:2 7945:1 7965:1 7966:1 7974:1 7989:4 7995:1 8004:3 8008:1 8015:1 8016:1 8019:1 8020:5 8054:1 8085:2 8125:1 8176:1 8186:1 8200:2 8203:2 8284:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:1 8377:1 8393:1 8427:1 8446:1 8449:1 8489:1 8493:1 8496:1 8501:3 8524:1 8564:1 8566:1 8602:1 8617:1 8648:1 8695:2 8714:1 8731:1 8751:1 8842:1 8845:1 8849:1 8866:1 8883:4 8905:1 8943:1 8966:2 8978:2 9007:1 9012:1 9052:2 9090:1 9113:1 9123:1 9138:1 9146:1 9153:1 9205:1 9216:1 9217:1 9231:1 9325:1 9338:3 9372:4 9374:1 9394:1 9426:1 9428:2 9437:1 9446:1 9499:1 9526:2 9577:1 9586:1 9628:3 9629:5 9637:1 9655:1 9657:4 9688:2 9694:1 9702:20 9707:1 9708:1 9711:2 9719:1 9723:1 9733:8 9738:2 9744:1 9754:1 9758:1 9781:1 9793:1 9803:1 9849:2 9866:1 9870:1 9885:1 9895:1 9924:1 9926:2 9942:2 9957:1 9963:1 9967:1 9968:1 9978:1 9999:3 10023:1 10058:1 10063:1 10103:1 10167:1 10213:1 10223:1 10235:1 10286:1 10298:1 10313:1 10314:1 10321:13 10333:1 10338:1 10356:1 10359:5 10360:2 10378:1 10401:1 10406:1 10412:2 10444:1 10452:1 10470:16 10598:1 10599:1 10612:1 10669:1 10686:2 10695:1 10697:1 10704:1 10707:1 10711:1 10717:2 10718:1 10736:1 10744:1 10778:1 10789:2 10791:1 10792:1 10798:1 10807:1 10808:2 10812:1 10813:1 10826:1 10864:1 10878:1 10884:1 10895:1 10911:2 10979:1 11002:1 11075:2 11109:2 11163:1 11165:1 11169:1 11207:1 11212:2 11230:1 11233:1 11247:1 11258:1 11268:1 11270:1 11325:1 11340:1 11378:1 11382:2 11391:1 11402:1 11422:1 11489:2 11522:1 11557:2 11561:2 11564:1 11569:1 11571:2 11572:1 11573:1 11575:1 11583:1 11587:1 11617:1 11628:1 11640:1 11642:2 11645:1 11654:1 11678:2 11690:3 11697:2 11707:1 11745:1 11774:1 11791:1 11793:1 11795:2 11815:1 11840:1 11865:1 11872:1 11882:1 11903:1 11918:1 11930:1 11931:2 11932:4 11961:2 11969:1 11978:1 11982:2 12004:1 12033:1 12052:1 12056:1 12057:1 12076:1 12081:1 12082:1 12083:1 12112:1 12113:1 12146:1 12147:1 12186:1 12191:1 12221:5 12231:1 12237:1 12239:2 12255:1 12359:1 12391:12 12401:1 12407:1 12435:1 12451:1 12471:1 12479:1 12490:1 12493:1 12521:1 12540:2 12547:2 12552:1 12570:2 12580:1 12608:1 12618:2 12630:1 12641:1 12643:2 12669:1 12673:1 12692:2 12694:1 12734:2 12757:1 12777:1 12821:1 12824:2 12829:1 12848:1 12867:3 12898:1 12958:1 12977:1 12988:1 13013:1 13040:1 13058:1 13089:1 13112:1 13113:2 13128:1 13154:1 13179:1 13187:1 13213:1 13234:1 13258:2 13267:1 13282:1 13283:2 13303:1 13325:2 13384:1 13385:1 13412:3 13415:1 13418:1 13420:2 13429:1 13443:1 13454:1 13464:1 13468:1 13471:1 13483:1 13493:3 13516:1 13550:1 13601:1 13669:1 13686:2 13690:3 13704:1 13721:2 13737:1 13749:1 13761:1 13765:1 13767:1 13793:1 13798:3 13803:1 13808:1 13823:1 13824:2 13826:2 13828:1 13849:1 13859:1 13880:1 13891:4 13895:1 13900:1 13901:1 13910:1 13921:2 13931:1 13942:1 13972:1 13998:1 14009:1 14015:1 14032:2 14070:2 14093:1 14105:1 14134:1 14146:3 14149:1 14152:1 14162:1 14186:1 14189:2 14235:2 14296:1 14302:1 14309:1 14322:5 14337:1 14340:1 14376:1 14380:1 14406:1 14416:1 14448:1 14491:1 14519:1 14533:1 14550:1 14554:1 14559:1 14564:1 14567:3 14571:2 14580:3 14611:1 14614:1 14621:2 14628:1 14636:1 14638:1 14642:1 14667:1 14675:1 14686:1 14716:1 14727:1 14737:1 14742:2 14744:1 14791:2 14840:1 14844:1 14869:1 14941:1 15037:3 15046:1 15060:2 15083:1 15086:1 15150:1 15151:1 15152:1 15160:1 15185:1 15197:1 15269:1 15292:1 15312:1 15315:2 15326:1 15383:1 15385:2 15400:1 15487:1 15502:2 15525:1 15526:1 15574:1 15577:1 15584:1 15587:1 15595:1 15707:1 15747:1 15776:2 15778:13 15786:1 15794:1 15797:1 15800:4 15813:1 15844:3 15855:1 15864:1 15868:1 15900:1 15942:1 15943:1 15981:1 16006:2 16013:1 16083:1 16099:1 16114:1 16134:1 16142:2 16149:1 16196:1 16241:1 16269:1 16293:1 16303:1 16304:1 16320:1 16327:5 16357:1 16365:1 16372:1 16394:1 16490:1 16499:1 16502:1 16505:2 16510:1 16516:1 16528:1 16535:1 16594:1 16609:6 16613:1 16643:1 16720:1 16729:1 16731:1 16732:1 16742:1 16775:1 16792:3 16797:2 16803:1 16831:1 16837:1 16854:1 16869:1 16874:1 16889:1 16897:1 16898:1 16914:1 16918:1 16929:1 16968:1 16970:1 16977:2 16979:5 17003:1 17008:1 17013:2 17033:2 17064:1 17075:1 17076:1 17082:1 17114:1 17152:1 17161:1 17172:4 17181:1 17204:1 17214:1 17217:1 17230:1 17243:1 17273:1 17276:1 17278:2 17286:2 17315:2 17319:1 17333:5 17336:2 17417:2 17426:1 17449:4 17516:1 17545:1 17547:2 17601:1 17623:1 17629:1 17675:4 17679:1 17792:1 17794:1 17806:2 17814:2 17817:2 17835:1 17836:1 17903:1 17925:1 17943:1 17957:1 17972:1 17992:1 17997:1 17999:1 18000:1 18005:1 18016:1 18032:1 18037:1 18039:1 18048:1 18080:1 18092:13 18101:2 18105:1 18106:1 18110:1 18120:1 18128:1 18137:1 18198:1 18200:1 18203:3 18214:1 18221:1 18244:1 18270:3 18276:1 18297:1 18325:1 18339:1 18390:1 18463:1 18470:1 18474:1 18506:1 18535:1 18560:1 18561:2 18582:1 18601:1 18603:1 18608:2 18645:3 18673:1 18696:1 18708:2 18712:1 18715:1 18732:1 18747:1 18767:2 18779:1 18781:1 18793:1 18794:1 18823:1 18876:1 18898:2 18959:1 19019:1 19064:2 19067:1 19083:1 19087:1 19175:1 19191:1 19192:1 19193:1 19225:1 19263:3 19269:2 19303:1 19310:1 19361:1 19397:1 19416:1 19437:1 19458:2 19471:1 19475:1 19490:1 19496:2 19500:1 19513:2 19525:1 19538:1 19602:1 19605:1 19620:1 19645:4 19658:1 19691:1 19787:1 19796:1 19806:1 19810:6 19814:1 19851:1 19854:1 19865:1 19894:1 19905:1 19908:1 19932:7 19961:1 19976:2 20046:1 20065:1 20074:1 20078:1 20091:1 20109:4 20115:3 20117:1 20130:1 20201:1 20242:1 20261:1 20272:1 20286:1 20292:1 20296:1 20324:1 20355:1 20383:1 20444:1 20446:1 20455:1 20537:1 20566:1 20568:1 20572:1 20588:2 20604:1 20608:1 20643:1 20649:1 20654:1 20727:1 20746:1 20751:2 20754:1 20781:1 20783:1 20785:1 20796:1 20799:2 20816:1 20885:1 20900:1 20917:1 20941:19 20949:1 20974:1 20978:1 20997:1 21003:2 21064:1 21071:1 21083:1 21097:1 21124:2 21130:2 21149:1 21174:1 21209:1 21214:1 21215:1 21261:1 21299:1 21316:1 21318:2 21371:1 21503:1 21508:1 21512:1 21513:1 21593:1 21608:2 21634:1 21686:2 21704:2 21713:1 21724:1 21754:1 21823:2 21829:2 21843:1 21864:1 21872:2 21939:1 21943:1 21975:2 21987:2 22008:1 22032:1 22037:1 22076:1 22079:3 22083:1 22084:1 22143:1 22169:1 22177:1 22181:1 22186:1 22190:1 22298:1 22300:3 22305:1 22315:1 22347:1 22388:1 22429:1 22493:1 22516:1 22530:1 22547:1 22628:3 22650:1 22666:1 22720:1 22727:2 22783:1 22800:1 22806:1 22824:1 22870:1 22883:813 22909:1 22923:1 22944:1 22969:1 22984:1 23031:1 23039:1 23043:1 23044:1 23079:1 23119:1 23129:1 23139:1 23193:1 23270:1 23320:1 23321:1 23427:1 23456:1 23457:1 23468:2 23482:1 23508:1 23521:2 23523:1 23543:1 23549:1 23603:1 23607:3 23640:2 23647:1 23653:1 23698:1 23708:1 23712:1 23763:1 23773:1 23800:1 23812:1 23821:1 23833:3 23834:2 23874:1 23880:2 23914:2 23934:1 23947:6 23958:1 23979:2 24012:2 24020:1 24047:3 24064:2 24066:1 24079:1 24097:2 24105:2 24106:1 24118:1 24185:1 24191:1 24209:2 24217:1 24239:1 24292:1 24332:1 24369:1 24449:1 24450:1 24479:1 24482:1 24483:1 24491:1 24518:1 24566:1 24591:1 24592:3 24598:1 24620:1 24643:1 24651:1 24653:1 24680:1 24681:2 24683:1 24699:1 24700:1 24708:3 24753:1 24762:1 24774:1 24781:1 24794:1 24808:1 24820:1 24826:1 24850:1 24869:1 24883:2 24894:1 24918:1 24919:1 24924:1 24978:1 25000:1 25047:1 25053:1 25058:1 25080:1 25114:1 25122:1 25144:1 25157:1 25161:2 25163:1 25179:2 25217:1 25240:1 25244:1 25300:1 25334:1 25369:1 25373:1 25392:1 25407:2 25417:1 25427:2 25448:1 25456:1 25461:1 25481:1 25486:1 25491:1 25498:2 25502:1 25505:1 25511:3 25527:1 25529:1 25541:1 25553:1 25554:1 25580:1 25582:1 25586:1 25590:2 25600:1 25608:2 25623:1 25637:2 25720:1 25721:3 25733:1 25738:1 25781:1 25782:1 25786:1 25793:1 25811:1 25815:1 25824:1 25841:1 25846:1 25852:1 25859:1 25867:1 25879:1 25907:1 25917:1 25994:1 26011:1 26014:1 26018:2 26062:1 26070:1 26091:1 26102:2 26107:1 26119:1 26120:1 26153:1 26155:1 26156:1 26203:1 26214:1 26215:1 26216:2 26327:1 26337:2 26385:2 26407:1 26424:1 26438:2 26453:1 26459:1 26460:1 26508:3 26552:1 26593:1 26602:2 26608:1 26612:2 26614:1 26628:2 26642:1 26651:1 26668:6 26679:1 26694:1 26743:1 26777:1 26779:4 26782:1 26794:1 26795:1 26808:1 26809:1 26815:1 26818:1 26826:1 26827:1 26828:2 26842:1 26854:1 26907:1 26914:1 26984:1 26995:2 26999:1 27004:4 27029:2 27051:1 27072:1 27087:2 27092:1 27127:2 27149:1 27153:2 27203:1 27213:1 27243:1 27251:1 27259:1 27260:4 27287:2 27331:7 27333:1 27339:1 27343:1 27396:4 27398:1 27401:1 27415:1 27447:1 27460:7 27478:1 27500:2 27508:1 27526:1 27527:1 27542:1 27573:1 27594:1 27599:1 27603:1 27619:2 27677:3 27723:1 27760:1 27787:12 27804:1 27808:1 27810:1 27813:2 27854:1 27859:1 27860:1 27862:1 27878:1 27879:1 27920:1 27925:1 27957:1 27973:1 27987:2 28000:1 28011:3 28017:1 28052:1 28154:1 28179:2 28276:1 28278:1 28279:1 28287:1 28297:1 28298:2 28308:1 28313:1 28317:1 28370:13 28398:2 28433:1 28472:2 28473:1 28482:1 28489:6 28541:1 28560:1 28567:1 28577:2 28582:1 28587:1 28621:1 28639:1 28645:1 28647:2 28650:1 28686:1 28786:1 28811:1 28817:2 28831:1 28833:1 28852:1 28908:1 28913:1 28939:1 28949:1 28974:1 28983:2 28993:1 28996:1 29004:1 29014:1 29087:1 29126:1 29133:1 29149:1 29170:2 29174:1 29179:1 29215:1 29233:1 29258:1 29328:1 29330:1 29334:1 29367:1 29398:1 29419:1 29426:2 29455:1 29464:1 29486:2 29516:2 29551:1 29554:1 29557:1 29564:1 29568:1 29583:1 29584:2 29587:2 29591:1 29604:1 29634:2 29688:4 29741:1 29749:1 29752:1 29756:1 29775:1 29822:1 29827:1 29845:1 29901:1 29939:1 29952:1 29957:1 29962:2 30004:1 30023:1 30035:1 30079:2 30083:1 30084:2 30093:1 30099:2 30105:1 30144:2 30192:1 30198:1 30199:2 30213:1 30248:1 30253:1 30261:2 30284:1 30294:1 30307:1 30320:1 30329:1 30330:1 30331:1 30350:1 30370:1 30424:1 30454:1 30478:1 30482:1 30483:1 30493:1 30535:1 30537:1 30538:2 30541:1 30552:2 30601:1 30617:2 30641:1 30688:1 30743:1 30789:1 30790:1 30794:1 30814:1 30817:2 30823:1 30912:2 30931:1 30960:1 30970:1 30981:1 30987:1 31026:1 31057:1 31093:1 31112:2 31134:1 31142:1 31148:1 31168:1 31177:1 31178:1 31181:1 31188:1 31201:1 31226:1 31235:1 31255:2 31264:2 31265:1 31296:1 31317:2 31329:1 31334:2 31377:2 31411:1 31413:4 31425:2 31478:1 31550:1 31563:1 31569:1 31574:1 31578:2 31588:1 31610:1 31612:1 31648:1 31660:1 31708:1 31725:1 31737:1 31747:1 31753:1 31768:1 31784:1 31787:1 31808:1 31834:1 31848:1 31866:1 31882:1 31885:1 31919:1 31930:3 31946:2 31963:1 31964:1 31968:5 31969:1 32022:1 32036:1 32066:3 32074:1 32099:1 32106:1 32117:1 32219:2 32285:2 32307:1 32311:1 32319:1 32326:1 32329:1 32376:1 32459:1 32491:1 32493:1 32505:2 32515:1 32532:1 32553:2 32574:1 32596:1 32612:1 32636:1 32683:1 32700:1 32732:1 32745:1 32749:1 32750:4 32774:2 32787:1 32801:4 32832:2 32879:1 32890:2 32891:1 32896:2 32909:1 32924:1 32929:1 32941:3 32950:1 32955:1 32958:1 32974:1 33027:1 33053:1 33098:1 33112:1 33118:1 33128:3 33133:2 33137:1 33141:1 33142:1 33157:2 33183:2 33272:1 33284:1 33296:1 33297:1 33309:2 33330:1 33346:1 33352:2 33388:1 33389:1 33404:1 33413:1 33446:1 33461:1 33467:1 33498:1 33503:1 33512:1 33530:1 33533:2 33537:2 33543:2 33553:2 33556:2 33563:2 33592:1 33595:2 33609:1 33620:1 33623:1 33637:1 33663:3 33680:2 33730:1 33734:2 33760:1 33766:1 33769:1 33795:1 33824:1 33861:1 33865:1 33880:1 33928:1 34003:1 34040:1 34056:2 34057:2 34071:2 34075:3 34085:3 34099:1 34139:1 34144:1 34151:1 34157:1 34174:1 34221:2 34246:2 34306:1 34314:1 34321:1 34351:1 34364:1 34367:1 34371:1 34407:1 34410:1 34413:1 34435:11 34497:5 34566:1 34570:1 34596:2 34615:1 34634:4 34643:2 34659:1 34673:1 34674:1 34682:1 34691:3 34701:1 34749:1 34757:1 34761:1 34782:1 34794:1 34804:2 34862:1 34878:2 34996:16 35022:1 35026:3 35031:1 35041:3 35042:1 35094:1 35098:1 35124:2 35128:5 35135:2 35141:1 35164:1 35184:1 35201:1 35207:2 35253:1 35281:1 35289:2 35310:1 35311:1 35326:1 35342:1 35354:1 35382:2 35395:1 35410:1 35499:1 35503:2 35517:1 35520:1 35539:1 35589:2 35592:1 35602:2 35625:1 35636:1 35656:1 35696:1 35700:1 35714:1 35721:1 35753:1 35757:1 35785:1 35789:2 35805:4 35837:1 35838:2 35850:13 35888:1 35953:1 35957:1 35965:2 35966:2 36011:1 2 9:1 10:1 31:2 32:1 73:1 95:1 104:2 106:2 107:1 122:1 140:1 166:2 177:1 191:1 200:1 207:1 235:1 239:1 251:1 256:1 278:1 297:1 302:3 303:1 322:1 323:1 328:1 365:1 414:3 452:1 454:1 478:1 498:1 520:1 526:1 555:1 568:1 601:1 607:1 610:1 621:1 659:1 672:1 674:1 684:1 690:1 750:1 751:2 761:1 766:1 795:2 820:14 825:3 831:1 861:1 881:1 919:1 935:2 941:1 964:1 999:1 1019:2 1022:1 1024:2 1028:1 1032:1 1082:2 1136:6 1142:1 1150:4 1176:2 1194:2 1206:3 1210:1 1212:1 1219:1 1226:1 1234:2 1253:1 1260:1 1293:1 1301:1 1305:1 1326:2 1386:1 1403:1 1454:1 1459:2 1510:1 1537:1 1541:13 1550:1 1554:1 1555:2 1564:3 1592:1 1595:1 1605:1 1617:1 1619:1 1634:1 1651:1 1682:1 1705:1 1706:2 1740:1 1757:1 1763:1 1771:2 1808:1 1824:1 1836:2 1849:2 1861:1 1888:1 1891:2 1897:3 1910:1 1911:1 1929:1 1960:2 1991:1 1997:1 2013:1 2031:1 2036:1 2058:1 2097:1 2102:1 2105:1 2106:1 2145:1 2158:2 2164:3 2202:1 2218:1 2249:1 2260:1 2282:1 2292:1 2307:1 2317:1 2320:1 2328:1 2345:1 2348:1 2352:1 2379:2 2400:2 2406:2 2420:1 2446:1 2455:1 2486:2 2508:1 2522:1 2525:1 2547:1 2566:1 2604:1 2624:1 2652:1 2655:1 2696:3 2743:1 2817:1 2827:1 2848:1 2857:1 2859:1 2862:3 2866:2 2867:1 2870:1 2872:3 2877:2 2883:3 2887:3 2891:1 2895:1 2897:1 2902:1 2906:1 2909:1 2919:1 2942:1 2954:2 2955:1 2971:2 2999:1 3002:1 3004:1 3027:1 3044:1 3045:1 3054:1 3076:1 3086:2 3100:1 3106:1 3116:2 3137:1 3179:1 3206:1 3224:2 3267:1 3312:1 3319:1 3322:2 3341:2 3348:1 3367:1 3381:1 3406:1 3413:2 3415:1 3420:1 3423:2 3429:1 3443:1 3497:1 3510:2 3516:1 3520:1 3539:1 3645:9 3648:14 3651:1 3652:2 3653:1 3663:2 3666:1 3678:1 3681:1 3691:2 3695:1 3698:1 3706:3 3736:2 3741:1 3756:1 3784:1 3846:2 3897:1 4045:1 4070:1 4101:1 4119:1 4146:1 4157:1 4161:2 4171:1 4211:1 4328:1 4334:1 4355:1 4359:1 4381:1 4383:1 4395:1 4396:1 4412:1 4479:1 4488:1 4492:1 4517:1 4555:1 4564:1 4601:1 4626:1 4645:1 4646:1 4651:1 4722:2 4724:1 4767:1 4773:1 4780:1 4795:1 4815:1 4820:1 4855:1 4857:1 4859:1 4867:2 4886:1 4914:1 4920:13 4922:2 4927:1 4947:1 4985:1 4992:1 5008:1 5015:1 5019:1 5020:2 5032:2 5047:1 5054:1 5058:4 5076:1 5119:1 5153:1 5163:1 5170:2 5178:1 5233:1 5235:1 5237:1 5240:1 5254:1 5272:1 5299:2 5300:1 5302:2 5307:1 5308:1 5324:1 5348:1 5437:13 5453:1 5459:3 5471:1 5473:1 5486:1 5492:1 5566:6 5588:1 5638:2 5655:2 5663:1 5672:1 5676:1 5712:1 5731:3 5738:1 5760:1 5832:1 5843:1 5869:1 5879:3 5885:1 5960:1 5969:1 5973:2 5974:1 5980:1 5983:1 6004:1 6005:1 6043:1 6049:1 6075:1 6078:1 6096:7 6097:2 6112:1 6140:1 6149:2 6253:2 6254:1 6277:2 6278:1 6279:1 6285:3 6292:1 6293:3 6303:1 6309:2 6312:3 6315:2 6316:1 6326:1 6358:1 6411:1 6528:1 6610:1 6622:1 6623:2 6683:1 6684:1 6698:1 6738:1 6799:1 6801:1 6803:1 6807:1 6832:1 6861:1 6867:2 6870:1 6942:1 6972:1 6983:1 7008:1 7010:1 7061:1 7065:1 7070:1 7076:1 7130:1 7138:1 7225:2 7243:1 7250:1 7252:1 7264:1 7289:5 7377:1 7422:1 7423:1 7432:1 7434:1 7451:1 7455:1 7494:1 7525:1 7532:1 7561:1 7589:1 7599:1 7604:2 7607:1 7656:1 7709:1 7721:1 7725:1 7727:1 7728:1 7739:1 7741:2 7764:1 7782:1 7805:1 7825:1 7840:1 7852:3 7857:1 7871:1 7905:1 7937:2 7945:1 7965:1 7966:1 7974:1 7989:4 7995:1 8004:3 8008:1 8015:1 8016:1 8019:1 8020:5 8054:1 8085:2 8125:1 8176:1 8186:1 8200:2 8203:2 8284:1 8293:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:1 8377:1 8393:1 8427:1 8446:1 8449:1 8489:1 8493:1 8496:1 8501:3 8524:1 8564:1 8566:1 8602:1 8617:1 8648:1 8695:2 8714:1 8731:1 8751:1 8772:1 8842:1 8845:1 8849:1 8866:1 8883:4 8905:1 8943:1 8966:2 8978:2 9007:1 9012:1 9052:2 9090:1 9113:1 9122:1 9123:1 9138:1 9146:1 9153:1 9205:1 9216:1 9217:1 9231:1 9325:1 9338:3 9372:4 9374:1 9394:1 9426:1 9428:2 9437:1 9446:1 9484:1 9495:1 9499:1 9526:2 9529:1 9577:1 9586:1 9612:1 9628:3 9629:5 9637:1 9655:1 9657:4 9688:3 9694:1 9702:20 9707:1 9708:1 9711:2 9719:1 9723:1 9733:9 9738:2 9744:1 9754:1 9758:1 9781:1 9793:1 9803:1 9849:3 9866:1 9870:1 9885:1 9895:1 9924:1 9926:2 9942:2 9957:1 9963:1 9967:1 9968:1 9978:1 9999:3 10023:1 10058:1 10063:1 10103:1 10161:1 10167:1 10175:1 10213:1 10223:1 10235:1 10286:1 10298:1 10313:1 10314:1 10321:14 10333:1 10338:1 10356:1 10359:6 10360:2 10378:1 10401:1 10406:1 10412:2 10431:1 10444:1 10452:1 10470:17 10598:1 10599:1 10612:1 10669:1 10686:2 10695:1 10697:1 10704:1 10707:1 10711:1 10717:2 10718:1 10736:1 10744:1 10778:1 10789:2 10791:1 10792:1 10796:1 10798:1 10807:1 10808:2 10812:1 10813:1 10826:1 10864:1 10878:1 10884:1 10895:1 10911:2 10979:1 11002:1 11075:2 11078:1 11109:2 11163:1 11165:1 11169:1 11207:1 11212:2 11230:1 11231:1 11233:1 11238:1 11247:1 11258:1 11268:1 11270:1 11325:1 11340:1 11378:1 11382:2 11391:1 11402:1 11422:1 11489:2 11522:1 11557:2 11561:2 11564:1 11569:1 11571:2 11572:1 11573:1 11575:1 11583:1 11587:1 11617:1 11628:1 11636:1 11640:1 11642:2 11645:1 11654:1 11668:1 11678:2 11690:3 11697:2 11707:1 11745:1 11774:1 11791:1 11793:1 11795:2 11815:1 11840:1 11865:1 11872:1 11882:1 11903:1 11918:1 11930:1 11931:2 11932:4 11961:2 11969:1 11978:1 11982:2 11992:1 12004:1 12033:1 12052:1 12056:1 12057:1 12076:1 12081:1 12082:1 12083:1 12112:1 12113:1 12146:1 12147:1 12186:1 12191:1 12214:1 12221:5 12231:1 12237:2 12239:3 12255:1 12301:1 12359:1 12391:13 12401:1 12407:1 12435:1 12451:1 12471:1 12479:1 12490:1 12493:1 12521:1 12540:2 12547:2 12552:1 12561:1 12570:2 12580:1 12608:1 12618:2 12630:1 12641:1 12643:2 12669:1 12673:1 12692:2 12694:1 12734:2 12757:1 12760:1 12777:1 12821:1 12824:2 12829:1 12848:1 12867:3 12881:1 12898:1 12958:1 12977:1 12988:1 13013:1 13040:1 13058:1 13089:1 13112:1 13113:2 13128:1 13154:1 13175:1 13179:1 13187:1 13213:1 13234:1 13258:2 13267:1 13282:1 13283:2 13303:1 13325:2 13384:1 13385:1 13411:1 13412:3 13415:1 13418:1 13420:2 13429:1 13443:1 13454:1 13464:1 13468:1 13471:1 13483:1 13493:3 13516:1 13550:1 13601:1 13669:1 13686:2 13690:3 13704:1 13721:2 13737:1 13749:1 13761:1 13765:1 13767:1 13793:1 13798:4 13803:1 13808:1 13823:1 13824:2 13826:2 13828:1 13845:1 13849:1 13859:1 13880:1 13891:4 13895:1 13900:1 13901:1 13910:1 13921:2 13931:1 13942:1 13972:1 13998:1 14008:1 14009:1 14015:1 14032:2 14042:1 14070:2 14093:1 14105:1 14134:1 14146:3 14149:1 14152:1 14162:1 14186:1 14189:2 14218:1 14235:2 14296:1 14302:1 14309:1 14322:5 14337:1 14340:1 14376:1 14380:1 14406:1 14416:1 14448:1 14488:1 14491:2 14519:1 14533:1 14550:1 14554:1 14559:1 14564:1 14567:3 14571:2 14580:3 14611:1 14614:1 14621:2 14628:1 14636:1 14638:1 14642:1 14667:1 14675:1 14686:1 14716:1 14727:1 14737:1 14742:2 14744:1 14791:2 14840:1 14844:1 14854:1 14869:1 14941:1 15037:3 15046:1 15060:2 15083:1 15086:1 15150:1 15151:1 15152:1 15160:1 15185:1 15197:1 15269:1 15292:1 15312:1 15315:2 15326:1 15383:1 15385:2 15400:1 15487:1 15502:2 15525:1 15526:1 15574:1 15577:1 15584:1 15587:1 15595:1 15707:1 15747:1 15776:2 15778:14 15786:1 15794:1 15797:1 15800:4 15813:1 15844:3 15855:1 15864:1 15868:1 15900:1 15942:1 15943:1 15981:1 16006:2 16013:1 16083:1 16099:1 16114:1 16134:1 16142:2 16147:1 16149:1 16196:1 16241:1 16269:1 16293:1 16303:1 16304:1 16320:1 16327:5 16357:1 16365:1 16372:1 16394:1 16490:1 16499:1 16502:1 16505:2 16510:1 16516:1 16528:1 16535:1 16594:1 16609:6 16613:1 16643:1 16720:1 16729:1 16731:1 16732:1 16742:1 16775:1 16792:3 16797:2 16803:1 16831:1 16837:1 16854:1 16869:1 16874:1 16889:1 16897:1 16898:1 16914:1 16918:1 16929:1 16968:1 16970:1 16977:2 16979:5 17003:1 17008:1 17013:2 17033:2 17064:1 17075:1 17076:1 17082:1 17114:1 17125:1 17152:1 17161:1 17172:4 17181:1 17204:1 17214:1 17217:1 17230:1 17243:1 17273:1 17276:1 17278:2 17286:2 17303:1 17315:2 17319:1 17333:5 17336:2 17417:2 17426:1 17449:4 17516:1 17545:1 17547:2 17601:1 17623:1 17629:1 17675:4 17679:1 17792:1 17794:1 17806:2 17814:2 17817:2 17835:1 17836:1 17903:1 17925:1 17942:1 17943:1 17957:1 17972:1 17992:1 17997:1 17999:1 18000:1 18005:1 18016:1 18032:1 18037:1 18039:1 18048:1 18080:1 18092:14 18101:2 18105:1 18106:1 18110:1 18120:1 18128:1 18137:1 18198:1 18200:1 18203:3 18214:1 18221:1 18244:1 18270:3 18276:1 18297:1 18325:1 18339:1 18390:1 18463:1 18470:1 18474:1 18506:1 18535:1 18559:1 18560:1 18561:2 18582:1 18601:1 18603:1 18608:3 18645:3 18673:1 18696:1 18708:2 18712:1 18715:1 18732:1 18747:1 18767:2 18779:1 18781:1 18793:1 18794:1 18823:1 18876:1 18898:2 18959:1 18997:1 19019:1 19064:2 19067:1 19083:1 19087:1 19175:1 19191:1 19192:1 19193:1 19225:1 19263:3 19269:2 19303:1 19310:1 19361:1 19397:1 19416:1 19437:1 19458:2 19471:1 19475:1 19490:1 19496:2 19500:1 19513:2 19525:1 19538:1 19602:1 19605:1 19620:1 19645:4 19658:1 19679:1 19691:1 19787:1 19796:1 19806:1 19810:7 19814:1 19851:1 19854:1 19865:1 19894:1 19905:1 19908:1 19932:7 19961:1 19976:2 20046:1 20065:1 20074:1 20078:1 20091:1 20109:4 20115:3 20117:1 20125:1 20130:1 20168:1 20201:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20296:1 20324:1 20355:1 20383:1 20431:1 20444:1 20446:1 20455:1 20537:1 20556:1 20566:1 20568:1 20572:1 20588:2 20604:1 20608:1 20643:1 20649:1 20654:1 20727:1 20746:1 20751:2 20754:1 20781:1 20783:1 20785:1 20796:1 20799:2 20816:1 20885:1 20900:1 20917:1 20941:20 20948:1 20949:1 20974:1 20978:1 20997:1 21003:2 21064:1 21071:1 21083:1 21097:1 21124:2 21130:2 21149:1 21174:1 21209:1 21214:1 21215:1 21261:1 21299:1 21316:1 21318:2 21371:1 21503:1 21508:1 21512:1 21513:1 21593:1 21608:2 21612:1 21634:1 21686:2 21704:2 21713:1 21724:1 21754:1 21823:2 21829:2 21843:1 21864:1 21872:2 21917:1 21939:1 21943:1 21975:2 21987:2 22008:1 22032:1 22037:1 22076:1 22079:3 22083:1 22084:1 22143:1 22169:1 22173:1 22177:1 22181:1 22186:1 22190:1 22298:1 22300:3 22305:1 22315:1 22347:1 22388:1 22429:1 22493:1 22497:1 22516:1 22530:1 22547:1 22628:3 22643:1 22650:1 22666:1 22720:1 22727:2 22783:1 22800:1 22806:1 22824:1 22870:1 22883:930 22909:1 22923:1 22944:1 22969:1 22984:1 23031:2 23039:1 23043:2 23044:1 23079:1 23119:1 23129:1 23139:1 23193:1 23270:1 23320:1 23321:1 23348:1 23411:1 23427:1 23456:1 23457:1 23468:2 23482:1 23508:1 23521:2 23523:1 23543:1 23549:1 23603:1 23607:3 23640:2 23647:1 23653:1 23698:1 23708:1 23712:1 23718:1 23735:1 23763:1 23773:1 23800:1 23812:1 23821:1 23833:3 23834:2 23874:1 23880:2 23914:2 23934:1 23947:6 23958:1 23979:2 24012:2 24013:1 24019:1 24020:1 24047:3 24064:2 24066:1 24079:1 24097:2 24105:2 24106:1 24118:1 24185:1 24191:1 24209:2 24217:1 24239:1 24240:1 24292:1 24332:1 24369:1 24449:1 24450:1 24479:1 24482:1 24483:1 24491:1 24518:1 24566:1 24591:1 24592:3 24598:1 24620:1 24643:1 24651:1 24653:1 24680:1 24681:2 24683:1 24699:1 24700:1 24708:3 24753:1 24762:1 24774:1 24781:1 24794:1 24808:1 24820:1 24826:1 24850:1 24869:1 24883:2 24894:1 24918:1 24919:1 24924:1 24978:1 25000:1 25047:1 25053:1 25058:1 25080:1 25114:1 25122:1 25144:1 25157:1 25161:2 25163:1 25179:2 25217:1 25240:1 25244:1 25300:1 25303:1 25334:1 25369:1 25373:1 25392:1 25407:2 25417:1 25427:2 25448:1 25456:1 25461:1 25481:1 25486:1 25491:1 25498:2 25502:1 25505:1 25511:3 25527:1 25529:1 25541:1 25553:1 25554:1 25572:1 25580:1 25582:1 25586:1 25590:2 25600:1 25608:2 25623:1 25637:2 25720:1 25721:3 25733:1 25738:1 25781:1 25782:1 25786:2 25793:1 25811:1 25815:1 25824:1 25841:1 25846:1 25852:1 25859:1 25867:1 25879:1 25907:1 25917:1 25994:1 26011:1 26014:1 26018:2 26062:2 26070:1 26091:1 26102:2 26107:1 26119:1 26120:1 26153:1 26155:1 26156:1 26203:1 26214:1 26215:1 26216:2 26313:1 26327:1 26337:2 26385:2 26407:1 26424:1 26438:2 26453:1 26459:1 26460:1 26508:3 26552:1 26593:1 26602:2 26608:1 26612:2 26614:1 26628:2 26642:1 26651:1 26668:6 26679:1 26694:1 26743:1 26744:1 26777:1 26779:4 26782:1 26794:1 26795:1 26808:1 26809:1 26815:1 26818:1 26820:1 26826:1 26827:1 26828:2 26842:1 26844:1 26854:1 26907:1 26914:1 26984:1 26995:2 26999:1 27004:4 27029:2 27051:1 27072:1 27087:2 27092:1 27099:1 27127:2 27149:1 27153:2 27203:1 27213:1 27243:1 27251:1 27259:1 27260:4 27287:2 27331:7 27333:1 27339:1 27343:1 27396:4 27398:1 27401:1 27415:1 27447:1 27460:7 27478:1 27500:2 27508:1 27526:1 27527:1 27542:1 27573:1 27594:1 27599:1 27603:1 27619:2 27677:3 27723:1 27760:1 27782:1 27787:13 27804:1 27808:1 27810:1 27813:2 27854:1 27859:1 27860:1 27862:1 27878:1 27879:1 27920:1 27922:1 27925:1 27957:1 27973:1 27987:2 28000:1 28011:4 28017:1 28052:1 28154:1 28179:2 28276:1 28278:1 28279:1 28287:1 28297:1 28298:2 28308:1 28313:1 28317:1 28370:14 28398:2 28399:1 28433:1 28472:2 28473:1 28482:1 28489:6 28541:1 28560:1 28567:1 28577:2 28582:1 28587:1 28621:1 28639:1 28645:1 28647:2 28650:2 28686:1 28786:1 28811:1 28817:2 28831:1 28833:1 28852:1 28908:1 28913:1 28939:1 28949:1 28974:1 28983:2 28993:1 28996:1 29004:1 29014:1 29087:1 29126:1 29133:1 29149:1 29170:2 29174:1 29179:1 29215:1 29233:1 29258:1 29328:1 29330:1 29334:1 29367:1 29398:1 29419:2 29426:2 29455:1 29464:1 29486:2 29516:2 29551:1 29554:1 29557:1 29564:1 29568:1 29583:1 29584:2 29587:2 29591:1 29604:1 29634:2 29688:4 29695:1 29741:1 29749:1 29752:1 29756:1 29775:1 29822:1 29827:1 29845:1 29901:1 29939:1 29952:1 29957:1 29962:2 30004:1 30023:1 30035:1 30079:2 30083:1 30084:2 30093:1 30099:3 30105:1 30144:2 30192:1 30198:1 30199:2 30213:1 30248:1 30253:1 30261:3 30284:1 30294:1 30307:1 30320:1 30329:1 30330:1 30331:1 30350:1 30370:1 30424:1 30454:1 30478:1 30482:1 30483:1 30493:1 30535:1 30537:1 30538:2 30541:1 30552:2 30601:1 30617:2 30641:1 30688:1 30743:1 30789:1 30790:2 30794:1 30814:1 30817:2 30823:1 30857:1 30912:2 30920:1 30931:1 30960:1 30970:1 30981:1 30987:1 31026:1 31057:1 31093:1 31112:2 31134:1 31142:1 31148:1 31168:1 31177:1 31178:1 31181:1 31188:1 31201:1 31226:1 31235:1 31255:2 31264:2 31265:1 31296:1 31317:2 31329:1 31334:2 31377:2 31411:1 31413:4 31425:2 31444:1 31478:1 31550:1 31563:1 31569:1 31574:1 31578:2 31588:1 31610:1 31612:1 31648:1 31660:1 31708:1 31725:1 31737:1 31747:1 31753:1 31768:1 31784:1 31787:1 31808:1 31834:1 31848:1 31866:1 31882:1 31885:1 31891:1 31919:1 31930:3 31946:2 31963:1 31964:1 31968:5 31969:1 31993:1 32022:1 32036:1 32066:3 32074:1 32090:1 32099:1 32106:1 32117:1 32153:1 32219:2 32285:2 32307:1 32311:1 32319:1 32326:1 32329:1 32376:1 32459:1 32491:1 32493:1 32505:2 32515:1 32532:1 32553:2 32574:1 32596:1 32612:1 32624:1 32636:1 32683:1 32700:1 32725:1 32732:1 32745:1 32749:1 32750:4 32774:2 32787:1 32801:4 32832:2 32879:1 32890:3 32891:1 32896:2 32909:1 32924:1 32929:1 32941:3 32950:1 32955:1 32958:1 32974:1 33027:1 33053:1 33057:1 33098:1 33112:1 33118:1 33128:3 33133:2 33137:1 33141:1 33142:1 33157:2 33183:2 33222:1 33272:1 33284:1 33296:2 33297:1 33309:2 33330:1 33346:1 33352:2 33388:1 33389:1 33404:1 33413:1 33446:1 33461:1 33467:1 33498:1 33503:1 33512:1 33530:1 33533:2 33537:2 33543:2 33553:2 33556:2 33563:2 33591:1 33592:1 33595:2 33609:1 33620:1 33623:1 33637:1 33663:3 33680:2 33716:1 33730:1 33734:2 33760:1 33766:1 33769:1 33795:1 33824:1 33861:1 33865:1 33880:1 33928:1 34003:1 34040:1 34056:2 34057:2 34071:2 34075:3 34085:3 34099:1 34139:1 34144:1 34151:1 34157:1 34174:1 34221:2 34246:2 34306:1 34314:1 34321:1 34351:1 34364:1 34367:1 34371:1 34407:1 34410:1 34413:1 34435:12 34497:5 34566:1 34570:1 34596:2 34615:1 34619:1 34634:4 34643:2 34659:1 34673:1 34674:1 34682:1 34691:3 34701:1 34749:1 34757:1 34761:1 34782:1 34794:1 34804:2 34862:1 34878:2 34968:1 34996:17 35022:1 35026:3 35031:1 35041:3 35042:1 35094:1 35098:1 35124:2 35128:5 35135:2 35141:1 35164:1 35184:1 35201:1 35207:2 35253:1 35281:1 35289:2 35310:1 35311:1 35326:1 35342:1 35354:1 35382:2 35395:1 35410:1 35499:1 35503:2 35517:1 35520:1 35539:1 35589:2 35592:1 35602:2 35625:1 35636:1 35648:1 35656:1 35696:1 35700:1 35714:1 35721:1 35753:1 35757:2 35785:1 35789:2 35805:4 35831:1 35837:1 35838:2 35850:14 35888:1 35939:1 35953:1 35957:1 35965:2 35966:2 36011:1 2 9:1 10:1 31:2 32:1 33:1 73:1 95:1 104:2 106:2 107:1 122:1 140:1 166:2 177:1 191:1 200:1 207:1 211:1 235:1 239:1 251:1 256:1 278:1 297:1 302:3 303:1 309:1 322:1 323:1 328:1 365:1 414:3 452:1 454:1 478:1 498:1 503:1 520:1 526:1 555:1 568:2 601:1 607:1 610:1 621:1 659:1 662:1 672:1 674:1 684:1 690:1 750:1 751:2 761:1 766:1 795:2 820:15 825:3 831:1 854:1 861:1 881:1 919:1 935:2 941:1 964:1 999:1 1019:2 1022:1 1024:2 1028:1 1032:1 1082:2 1135:1 1136:6 1142:1 1150:5 1176:2 1194:2 1206:3 1210:1 1212:1 1219:1 1226:1 1234:2 1253:1 1260:1 1293:1 1301:1 1305:1 1326:2 1386:1 1403:1 1454:1 1459:2 1510:1 1537:1 1541:14 1550:1 1554:1 1555:2 1564:3 1592:1 1595:1 1605:1 1617:1 1619:1 1634:1 1651:1 1682:1 1705:1 1706:2 1740:1 1757:1 1763:1 1771:2 1773:1 1808:1 1824:1 1836:2 1849:2 1861:1 1888:1 1889:1 1891:2 1897:3 1910:1 1911:1 1929:1 1960:2 1970:1 1991:1 1997:1 2013:1 2031:1 2036:1 2058:1 2097:1 2098:1 2102:1 2105:1 2106:1 2145:1 2158:2 2164:3 2202:1 2218:1 2249:1 2260:1 2282:1 2292:1 2307:1 2317:1 2320:1 2328:1 2345:1 2348:1 2352:1 2379:2 2400:2 2406:2 2420:1 2446:1 2455:1 2486:3 2508:1 2522:1 2525:1 2547:1 2566:1 2604:1 2624:1 2652:1 2655:1 2696:3 2743:1 2817:1 2827:1 2848:1 2857:1 2859:1 2862:3 2866:2 2867:1 2870:1 2872:3 2877:2 2883:3 2887:3 2891:1 2895:1 2897:1 2902:1 2906:1 2909:1 2919:1 2942:1 2954:2 2955:1 2971:3 2999:2 3002:1 3004:1 3027:1 3044:1 3045:2 3054:1 3076:1 3086:2 3100:1 3106:1 3116:2 3137:1 3179:1 3186:1 3206:1 3224:2 3267:1 3312:1 3319:1 3322:2 3341:2 3348:1 3367:1 3381:1 3406:1 3413:2 3415:1 3420:1 3423:2 3429:1 3443:1 3497:1 3510:2 3516:1 3520:1 3539:1 3645:9 3648:15 3651:1 3652:2 3653:1 3663:2 3666:1 3678:1 3681:1 3691:2 3695:1 3698:1 3706:4 3736:2 3741:1 3756:1 3784:1 3793:1 3846:2 3897:1 4045:1 4070:1 4101:1 4119:1 4146:1 4157:1 4161:2 4171:1 4211:1 4328:1 4334:1 4355:1 4359:1 4381:1 4383:1 4395:1 4396:1 4412:1 4479:1 4488:1 4492:1 4517:1 4555:1 4564:1 4601:1 4626:1 4645:1 4646:1 4651:1 4722:2 4724:1 4767:1 4773:1 4780:1 4795:1 4815:1 4820:1 4855:1 4857:1 4859:1 4867:2 4886:1 4914:1 4920:14 4922:2 4927:1 4947:1 4985:1 4992:1 5008:1 5015:1 5019:1 5020:2 5032:2 5047:1 5054:1 5058:4 5076:1 5119:1 5153:1 5163:1 5170:2 5178:1 5233:1 5235:1 5237:1 5240:1 5254:1 5272:1 5299:2 5300:1 5302:2 5307:1 5308:1 5324:1 5348:1 5437:14 5453:1 5459:3 5471:1 5473:1 5486:1 5492:1 5566:6 5588:1 5638:2 5655:2 5663:1 5672:1 5676:1 5712:1 5731:3 5738:1 5760:1 5832:1 5843:1 5869:1 5879:3 5885:1 5960:1 5969:1 5973:2 5974:1 5980:1 5983:1 6004:1 6005:1 6043:1 6049:1 6075:1 6078:1 6096:7 6097:2 6112:1 6140:1 6149:2 6187:1 6253:2 6254:1 6277:2 6278:2 6279:1 6285:3 6292:1 6293:3 6303:1 6309:2 6312:3 6315:2 6316:1 6326:1 6358:1 6407:1 6411:1 6528:1 6610:1 6622:1 6623:2 6683:1 6684:1 6698:1 6738:1 6799:1 6801:1 6803:1 6807:1 6832:1 6861:1 6867:2 6870:1 6942:1 6972:1 6983:1 7008:1 7010:1 7061:1 7062:1 7065:1 7070:1 7076:1 7130:1 7138:1 7225:2 7243:1 7250:1 7252:1 7264:1 7289:5 7377:1 7422:1 7423:1 7432:1 7434:1 7451:1 7455:1 7494:1 7525:1 7532:1 7537:1 7561:1 7589:1 7599:1 7604:2 7607:1 7656:1 7709:1 7721:1 7725:1 7727:1 7728:1 7729:1 7739:1 7741:2 7764:1 7782:1 7805:1 7825:1 7840:1 7852:3 7857:1 7871:1 7905:1 7937:2 7945:1 7965:1 7966:1 7974:1 7989:4 7995:1 8004:3 8007:1 8008:1 8015:1 8016:1 8019:1 8020:5 8054:1 8085:2 8125:1 8176:1 8186:1 8200:2 8203:2 8284:1 8293:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:1 8377:1 8393:1 8427:1 8446:1 8449:1 8489:1 8493:1 8496:1 8501:3 8524:1 8564:1 8566:1 8570:1 8602:1 8617:1 8648:1 8695:2 8714:1 8731:1 8751:1 8772:1 8842:1 8845:1 8849:1 8866:1 8883:4 8905:1 8943:1 8946:1 8966:2 8978:2 9007:1 9012:1 9052:2 9090:1 9113:1 9122:1 9123:1 9138:1 9146:1 9153:1 9205:1 9216:1 9217:1 9231:1 9325:1 9338:3 9372:4 9374:1 9381:1 9394:1 9426:1 9428:2 9437:1 9446:1 9484:1 9495:1 9499:1 9526:2 9529:1 9577:1 9586:1 9612:1 9628:5 9629:5 9637:1 9655:1 9657:5 9688:3 9694:1 9702:20 9707:1 9708:1 9711:2 9719:1 9723:1 9733:9 9738:2 9744:1 9754:1 9758:1 9780:1 9781:1 9793:1 9803:1 9849:3 9866:1 9870:1 9885:1 9895:1 9924:1 9926:2 9942:2 9957:1 9963:1 9967:1 9968:1 9978:1 9999:3 10023:1 10058:1 10063:1 10103:1 10161:1 10167:1 10175:1 10213:1 10223:1 10235:1 10286:1 10298:1 10313:1 10314:1 10321:15 10333:1 10338:1 10356:1 10359:6 10360:2 10378:1 10401:1 10406:1 10412:2 10431:1 10444:1 10452:1 10470:19 10598:1 10599:1 10612:1 10669:1 10686:2 10695:1 10697:1 10704:1 10707:1 10711:1 10717:2 10718:1 10736:1 10744:1 10778:1 10789:2 10791:1 10792:1 10796:1 10798:1 10807:1 10808:2 10812:1 10813:1 10826:1 10864:1 10878:1 10884:1 10895:1 10911:2 10979:1 11002:1 11075:2 11078:1 11109:2 11163:1 11165:1 11169:1 11207:1 11212:3 11230:1 11231:1 11233:1 11238:1 11247:1 11258:1 11268:1 11270:1 11325:1 11340:1 11378:1 11382:2 11391:1 11402:1 11422:1 11489:2 11522:1 11557:2 11561:2 11564:1 11569:1 11571:2 11572:1 11573:1 11575:1 11583:1 11587:1 11598:1 11617:1 11628:1 11636:1 11640:1 11642:2 11645:1 11654:1 11668:1 11678:2 11690:4 11697:2 11707:1 11744:1 11745:1 11774:1 11791:1 11793:1 11795:2 11815:1 11840:1 11851:1 11865:1 11872:1 11882:1 11903:1 11918:1 11919:1 11930:1 11931:2 11932:4 11961:2 11969:1 11978:1 11982:2 11992:1 12004:1 12033:1 12052:1 12056:1 12057:1 12076:1 12081:1 12082:1 12083:1 12112:1 12113:1 12120:1 12146:1 12147:1 12186:1 12191:1 12214:1 12221:5 12231:1 12237:2 12239:3 12255:1 12301:1 12359:1 12391:14 12401:1 12407:1 12435:1 12451:1 12471:1 12479:1 12490:1 12493:1 12521:1 12540:2 12547:2 12552:1 12561:1 12570:2 12580:1 12608:1 12618:2 12630:1 12641:1 12643:2 12669:1 12673:2 12692:2 12694:1 12734:2 12757:1 12760:1 12777:1 12821:1 12824:2 12829:1 12848:1 12867:3 12881:1 12898:1 12958:1 12977:1 12988:1 13013:2 13040:1 13058:1 13089:1 13112:1 13113:3 13128:1 13154:1 13175:1 13179:1 13187:1 13213:1 13234:1 13258:2 13267:1 13282:1 13283:2 13303:1 13325:2 13384:1 13385:1 13411:1 13412:4 13415:1 13418:1 13420:2 13429:1 13443:1 13454:1 13464:1 13468:1 13471:1 13483:1 13493:4 13516:1 13550:1 13601:1 13632:1 13669:1 13686:2 13690:3 13704:1 13721:2 13737:1 13749:1 13761:1 13765:1 13767:1 13793:1 13798:4 13803:1 13808:1 13823:1 13824:2 13826:2 13828:1 13845:1 13849:1 13859:1 13880:1 13891:4 13895:1 13900:1 13901:1 13910:1 13919:1 13921:2 13931:1 13942:1 13972:2 13998:1 14008:1 14009:1 14015:1 14032:2 14042:1 14070:2 14093:1 14105:1 14122:1 14134:1 14146:3 14149:1 14152:1 14162:1 14186:1 14189:2 14218:1 14235:2 14286:1 14296:1 14302:1 14309:1 14322:5 14337:1 14340:1 14376:1 14380:1 14406:1 14416:1 14448:1 14488:1 14491:2 14519:1 14533:1 14550:1 14554:1 14559:1 14564:1 14567:3 14571:2 14580:3 14611:1 14614:1 14621:2 14628:1 14636:1 14638:1 14642:1 14667:1 14675:1 14686:1 14716:1 14727:1 14737:1 14742:2 14744:1 14791:2 14840:1 14844:1 14854:1 14869:1 14941:1 15037:3 15046:1 15060:2 15083:1 15086:1 15150:1 15151:1 15152:1 15160:1 15185:1 15197:1 15269:1 15292:1 15312:1 15315:3 15326:1 15383:1 15385:2 15400:1 15487:1 15502:2 15525:1 15526:1 15574:1 15577:1 15584:1 15587:1 15595:1 15707:1 15747:1 15776:2 15778:15 15786:1 15794:1 15797:1 15800:4 15813:1 15844:3 15855:1 15864:1 15868:1 15900:1 15942:1 15943:1 15981:1 16006:2 16013:1 16083:1 16099:1 16114:1 16134:1 16142:2 16147:1 16149:1 16196:1 16241:1 16269:1 16293:1 16303:1 16304:1 16320:1 16327:5 16357:1 16365:1 16372:1 16394:1 16490:1 16499:1 16502:1 16505:2 16510:1 16516:1 16528:1 16535:1 16594:1 16609:6 16613:1 16643:1 16720:1 16729:1 16731:1 16732:1 16742:1 16775:1 16792:3 16797:2 16803:1 16831:1 16837:1 16854:1 16869:1 16874:1 16889:1 16897:1 16898:1 16914:1 16918:1 16929:1 16964:1 16968:1 16970:1 16973:1 16977:2 16979:5 17003:1 17008:1 17013:3 17033:2 17064:1 17075:1 17076:1 17082:1 17114:1 17120:1 17125:1 17152:1 17161:1 17172:5 17181:1 17204:1 17214:1 17217:1 17230:1 17243:1 17273:1 17276:1 17278:2 17286:2 17303:1 17315:2 17319:1 17333:5 17336:3 17417:2 17426:1 17449:4 17516:1 17545:1 17547:2 17601:1 17623:1 17629:1 17675:4 17679:1 17792:1 17794:1 17806:2 17814:2 17817:2 17835:1 17836:1 17903:1 17925:1 17941:1 17942:1 17943:1 17957:1 17972:1 17992:1 17997:1 17999:1 18000:1 18005:1 18016:1 18032:1 18037:1 18039:1 18048:1 18080:1 18092:15 18101:2 18105:1 18106:1 18110:1 18120:1 18128:1 18137:1 18198:1 18200:1 18203:3 18214:1 18221:1 18244:1 18270:3 18276:1 18290:1 18297:1 18325:1 18339:1 18390:1 18463:1 18470:1 18474:1 18506:1 18535:1 18559:1 18560:1 18561:2 18582:1 18601:1 18603:1 18608:3 18645:3 18673:1 18696:1 18708:2 18712:1 18715:1 18732:1 18747:1 18767:2 18779:1 18781:1 18793:1 18794:1 18823:1 18876:1 18898:2 18959:1 18997:1 19019:1 19064:2 19067:1 19083:1 19087:1 19175:1 19191:1 19192:1 19193:1 19225:1 19263:3 19269:2 19303:1 19310:1 19361:1 19397:1 19416:1 19437:1 19458:2 19471:1 19475:1 19490:2 19496:2 19500:1 19513:2 19525:1 19538:1 19602:1 19605:1 19620:1 19645:4 19658:1 19679:1 19691:2 19787:1 19796:1 19806:1 19810:7 19814:1 19851:1 19854:2 19865:1 19894:1 19905:1 19908:2 19932:7 19947:1 19961:1 19976:2 20046:1 20065:1 20074:1 20078:1 20091:1 20109:4 20115:3 20117:1 20125:1 20130:1 20168:1 20201:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20296:1 20324:1 20355:1 20383:1 20431:1 20444:1 20446:1 20455:1 20537:1 20556:1 20566:1 20568:1 20572:1 20588:2 20604:1 20606:1 20608:1 20643:1 20649:1 20654:1 20727:1 20746:1 20751:2 20754:1 20781:1 20783:1 20785:1 20796:1 20799:2 20816:1 20885:1 20900:1 20917:1 20941:22 20948:1 20949:1 20974:1 20978:1 20997:1 21003:2 21064:1 21071:1 21083:1 21097:1 21124:2 21130:2 21149:1 21174:1 21209:1 21214:1 21215:1 21261:1 21299:1 21316:1 21318:2 21371:1 21503:1 21508:1 21512:1 21513:1 21566:1 21593:1 21603:1 21608:2 21612:1 21634:1 21686:2 21704:2 21713:1 21724:1 21754:1 21823:2 21829:2 21843:1 21864:1 21872:2 21917:1 21939:1 21943:1 21975:2 21987:2 22008:1 22032:1 22037:1 22076:1 22079:3 22083:1 22084:1 22143:1 22169:1 22173:1 22177:1 22181:1 22186:1 22190:1 22298:1 22300:3 22305:1 22315:1 22347:1 22386:1 22388:1 22429:1 22493:2 22497:1 22516:1 22530:1 22547:1 22628:3 22643:1 22650:1 22666:1 22720:1 22727:2 22783:1 22800:1 22806:1 22824:1 22870:1 22883:974 22909:1 22923:1 22944:1 22969:1 22984:1 23031:2 23039:1 23043:2 23044:1 23079:1 23119:1 23129:1 23139:1 23193:1 23270:1 23320:1 23321:1 23348:1 23411:1 23427:1 23456:1 23457:1 23468:2 23482:1 23508:1 23521:2 23523:1 23543:1 23549:1 23603:1 23607:3 23640:2 23647:1 23653:1 23698:1 23708:1 23712:1 23718:1 23735:1 23763:1 23773:1 23800:1 23812:1 23821:1 23833:3 23834:2 23874:1 23880:2 23914:2 23934:1 23947:7 23958:1 23979:2 24012:2 24013:1 24019:1 24020:1 24047:3 24064:2 24066:1 24079:1 24097:2 24105:2 24106:1 24118:1 24185:1 24191:1 24209:2 24217:1 24239:1 24240:1 24292:1 24332:1 24364:1 24369:1 24449:1 24450:1 24479:1 24482:1 24483:1 24491:1 24518:1 24566:1 24591:1 24592:3 24598:1 24620:1 24643:1 24651:1 24653:1 24658:1 24680:1 24681:2 24683:1 24699:1 24700:1 24708:4 24753:1 24762:1 24774:1 24781:1 24794:1 24808:1 24820:1 24826:1 24850:1 24869:1 24883:3 24894:2 24918:1 24919:1 24924:1 24978:1 25000:1 25047:1 25053:1 25058:1 25080:1 25114:1 25122:1 25144:1 25157:1 25161:2 25163:1 25179:2 25217:1 25240:1 25244:1 25300:1 25303:1 25334:1 25369:1 25373:1 25392:1 25407:2 25417:1 25427:2 25448:1 25456:1 25461:1 25481:1 25486:1 25491:1 25498:2 25502:1 25505:1 25511:3 25527:1 25529:1 25541:1 25543:1 25553:1 25554:1 25572:1 25580:1 25582:2 25586:1 25590:2 25600:1 25608:2 25623:1 25637:2 25720:1 25721:3 25733:1 25738:1 25781:1 25782:1 25786:2 25793:1 25811:1 25815:1 25824:2 25841:1 25846:1 25852:1 25859:1 25867:1 25879:1 25907:1 25917:1 25994:1 26011:1 26014:1 26018:2 26062:2 26070:1 26091:1 26102:2 26107:1 26119:1 26120:1 26153:1 26155:1 26156:1 26203:1 26214:1 26215:1 26216:2 26228:1 26260:1 26313:1 26327:1 26337:2 26385:2 26407:1 26424:1 26438:2 26444:1 26453:1 26459:1 26460:1 26508:3 26552:1 26593:1 26602:3 26608:1 26612:2 26614:1 26628:2 26642:1 26651:1 26668:6 26679:1 26694:1 26743:1 26744:1 26777:1 26779:4 26782:1 26794:1 26795:1 26808:1 26809:1 26815:1 26818:1 26820:1 26826:1 26827:1 26828:2 26842:1 26844:1 26854:1 26907:1 26914:1 26984:1 26995:2 26999:1 27004:4 27029:2 27051:1 27072:1 27087:2 27092:1 27099:1 27127:2 27149:1 27153:2 27203:1 27213:1 27243:1 27251:1 27259:1 27260:5 27287:2 27331:7 27333:1 27339:1 27343:1 27396:4 27398:1 27401:1 27415:1 27447:1 27460:7 27478:1 27500:2 27508:1 27526:1 27527:1 27542:1 27573:1 27594:1 27599:1 27603:1 27619:3 27677:3 27723:1 27731:1 27760:1 27782:1 27787:14 27804:1 27808:1 27810:1 27813:2 27854:1 27859:1 27860:1 27862:1 27878:1 27879:1 27920:1 27922:1 27925:1 27957:1 27973:1 27987:2 28000:1 28011:4 28017:1 28052:1 28154:1 28179:2 28276:1 28278:1 28279:1 28287:1 28297:1 28298:2 28308:1 28313:1 28317:1 28318:1 28370:15 28398:2 28399:1 28433:1 28472:2 28473:1 28482:1 28489:6 28528:1 28541:1 28560:1 28567:1 28577:2 28582:1 28587:1 28621:1 28639:1 28645:1 28647:2 28650:2 28686:1 28786:1 28811:1 28817:2 28831:1 28833:1 28852:1 28908:1 28913:1 28939:1 28949:1 28974:1 28983:2 28993:1 28996:1 29004:1 29014:1 29087:1 29126:1 29133:1 29149:1 29170:2 29174:1 29179:1 29215:1 29233:1 29258:1 29328:1 29330:1 29334:1 29367:1 29398:1 29419:2 29426:2 29455:1 29464:1 29486:2 29493:1 29516:2 29551:1 29554:1 29557:1 29564:1 29568:1 29583:1 29584:2 29587:2 29591:1 29604:1 29634:2 29688:4 29695:1 29741:1 29749:1 29752:1 29756:1 29775:1 29822:1 29827:1 29845:1 29901:1 29939:1 29952:1 29957:1 29962:2 30004:1 30023:1 30035:1 30079:2 30083:1 30084:2 30093:1 30099:3 30105:1 30144:2 30165:1 30192:1 30198:2 30199:2 30213:1 30248:1 30253:1 30261:3 30284:1 30294:1 30307:1 30320:1 30329:1 30330:1 30331:1 30350:1 30370:1 30424:1 30454:1 30478:1 30482:1 30483:1 30493:1 30535:1 30537:1 30538:2 30541:1 30552:2 30601:1 30617:2 30641:1 30688:1 30743:1 30789:1 30790:2 30794:1 30814:1 30817:2 30823:1 30857:1 30861:1 30912:2 30920:1 30931:1 30960:1 30970:1 30981:1 30987:1 31020:1 31026:1 31053:1 31057:1 31059:1 31093:1 31112:2 31134:1 31142:1 31148:1 31151:1 31168:1 31177:1 31178:1 31181:1 31188:1 31201:1 31226:1 31235:1 31255:2 31264:2 31265:1 31296:1 31317:2 31329:1 31334:3 31377:2 31411:1 31413:5 31425:2 31444:1 31478:1 31550:1 31563:1 31569:1 31574:1 31578:2 31588:1 31595:1 31610:1 31612:1 31648:1 31660:1 31708:1 31725:1 31737:1 31747:1 31753:1 31768:1 31784:1 31787:1 31808:1 31834:1 31848:1 31866:1 31882:1 31885:1 31891:1 31919:1 31930:3 31946:2 31963:1 31964:1 31968:5 31969:1 31993:1 32022:1 32036:1 32066:3 32074:1 32090:1 32099:1 32106:1 32117:1 32153:1 32219:2 32285:2 32307:1 32311:1 32319:1 32326:1 32329:1 32376:1 32459:1 32491:1 32493:1 32505:2 32515:1 32532:1 32553:2 32574:1 32596:1 32612:1 32624:1 32636:1 32683:1 32700:1 32725:1 32732:1 32745:1 32749:1 32750:4 32774:2 32787:1 32801:4 32832:2 32879:1 32890:3 32891:1 32896:2 32909:1 32924:1 32929:1 32941:3 32950:1 32955:1 32958:1 32974:1 33027:1 33053:1 33057:1 33098:1 33112:1 33118:1 33128:3 33133:2 33137:1 33141:1 33142:1 33157:2 33183:2 33222:1 33272:1 33284:1 33296:2 33297:1 33309:2 33330:1 33346:1 33352:2 33388:1 33389:1 33404:1 33413:1 33446:1 33461:1 33467:1 33498:1 33503:1 33512:1 33530:1 33533:3 33537:2 33543:2 33553:2 33556:2 33563:2 33591:1 33592:1 33595:2 33609:1 33620:1 33623:1 33637:1 33663:3 33680:2 33716:1 33730:1 33734:2 33760:1 33766:1 33769:1 33795:1 33824:1 33861:1 33865:1 33880:1 33928:1 34003:1 34040:1 34056:3 34057:2 34071:2 34075:3 34083:1 34085:3 34099:1 34139:1 34144:1 34151:1 34157:1 34174:1 34221:2 34246:2 34306:1 34314:1 34321:1 34351:1 34364:1 34367:1 34371:1 34407:1 34410:1 34413:1 34435:12 34497:5 34566:1 34570:1 34596:2 34615:1 34619:1 34634:4 34643:2 34659:1 34673:1 34674:1 34682:1 34691:5 34701:1 34749:1 34757:1 34761:1 34782:1 34794:1 34804:2 34862:1 34878:2 34968:1 34996:19 35022:1 35026:3 35031:1 35041:3 35042:1 35094:1 35098:1 35124:3 35128:6 35135:2 35141:1 35164:1 35184:1 35201:1 35207:2 35253:1 35265:1 35281:1 35289:2 35310:1 35311:1 35326:1 35342:1 35354:1 35382:2 35395:1 35410:1 35499:1 35503:2 35517:1 35520:1 35539:1 35589:2 35592:1 35602:2 35625:2 35636:1 35648:1 35656:1 35696:1 35700:1 35714:1 35721:1 35753:1 35757:2 35785:1 35789:2 35805:4 35831:1 35837:2 35838:2 35850:15 35888:1 35901:1 35939:1 35953:1 35957:1 35965:2 35966:2 36011:1 36072:1 2 9:1 10:1 31:2 32:1 33:1 73:1 95:1 104:2 106:2 107:1 122:1 140:1 166:2 177:1 191:1 200:1 207:1 211:1 235:1 239:1 251:1 256:1 278:1 297:1 302:3 303:1 309:1 322:1 323:1 328:1 365:1 414:3 452:1 454:1 478:1 498:1 503:1 520:1 526:1 555:1 568:2 601:1 607:1 610:1 621:1 659:1 662:1 672:1 674:1 684:1 690:1 750:1 751:2 761:1 766:1 795:2 820:16 825:3 831:1 854:1 861:1 881:1 919:1 935:2 941:1 964:1 999:1 1019:2 1022:1 1024:2 1028:2 1032:1 1034:1 1082:2 1135:1 1136:6 1142:1 1150:5 1176:2 1194:2 1206:3 1210:1 1212:1 1219:1 1226:1 1234:2 1253:1 1260:1 1293:1 1301:1 1305:1 1326:2 1386:1 1403:1 1454:1 1459:2 1510:1 1537:1 1541:15 1550:1 1554:1 1555:2 1564:3 1592:1 1595:1 1605:1 1616:1 1617:1 1619:1 1634:1 1651:1 1682:1 1705:1 1706:2 1740:1 1757:1 1763:1 1771:2 1773:1 1808:1 1824:1 1836:2 1849:2 1861:1 1888:1 1889:1 1891:2 1897:4 1910:1 1911:1 1929:1 1960:2 1970:1 1991:1 1997:2 2013:1 2031:1 2036:1 2058:1 2097:1 2098:1 2102:1 2105:1 2106:1 2145:1 2158:2 2164:3 2196:1 2202:1 2218:1 2249:1 2260:1 2282:1 2292:1 2307:1 2312:1 2317:1 2320:1 2328:1 2345:1 2348:1 2352:1 2379:2 2400:2 2406:2 2420:1 2446:1 2455:1 2486:3 2508:1 2522:1 2525:1 2547:1 2566:1 2604:1 2624:1 2652:1 2655:1 2696:4 2721:1 2743:1 2817:1 2827:1 2848:1 2857:1 2859:1 2862:3 2866:2 2867:1 2870:1 2872:3 2877:2 2883:3 2887:3 2891:1 2895:1 2897:1 2902:1 2906:1 2909:1 2919:1 2942:1 2954:2 2955:1 2971:3 2999:2 3002:1 3004:1 3027:1 3044:1 3045:2 3054:1 3076:1 3086:2 3100:1 3106:1 3116:2 3137:1 3179:1 3186:1 3206:1 3224:2 3255:1 3267:1 3312:1 3319:1 3322:2 3341:2 3348:1 3367:1 3381:1 3406:1 3413:2 3415:1 3420:1 3423:2 3429:1 3443:1 3497:1 3510:2 3516:1 3520:1 3539:2 3603:1 3612:1 3645:9 3648:16 3651:1 3652:2 3653:1 3663:2 3666:1 3678:1 3681:1 3691:3 3695:1 3698:1 3706:4 3736:2 3741:1 3756:1 3784:1 3793:1 3846:2 3897:1 4045:1 4070:1 4101:1 4119:1 4146:1 4157:1 4161:2 4171:1 4211:1 4226:1 4328:1 4334:1 4355:1 4359:1 4381:1 4383:1 4395:1 4396:1 4412:1 4444:1 4448:1 4479:1 4488:1 4492:1 4517:1 4555:1 4564:1 4601:1 4626:1 4643:1 4645:1 4646:1 4651:1 4654:1 4722:2 4724:1 4767:1 4773:1 4780:1 4795:1 4815:1 4820:1 4855:1 4857:1 4859:1 4867:2 4886:1 4887:1 4914:1 4920:15 4922:2 4927:1 4947:1 4985:1 4992:1 5008:1 5015:1 5019:1 5020:2 5032:2 5047:1 5054:1 5058:4 5076:2 5119:1 5153:1 5163:1 5170:2 5178:1 5233:1 5235:1 5237:1 5240:1 5241:1 5254:1 5272:1 5299:2 5300:1 5302:2 5307:1 5308:1 5324:1 5348:1 5437:15 5453:1 5456:1 5459:3 5471:1 5473:1 5486:1 5492:1 5566:6 5588:1 5638:3 5655:2 5663:1 5672:1 5676:1 5687:1 5712:1 5731:3 5738:1 5760:1 5832:1 5843:1 5869:1 5879:3 5885:1 5960:1 5967:1 5969:1 5973:2 5974:1 5980:1 5983:1 6004:1 6005:1 6043:1 6049:1 6075:1 6078:1 6096:7 6097:2 6112:1 6140:1 6149:2 6187:1 6191:1 6253:2 6254:1 6277:2 6278:2 6279:1 6285:3 6292:1 6293:3 6303:1 6309:2 6312:3 6315:2 6316:1 6326:1 6358:1 6407:1 6411:1 6528:1 6610:1 6622:1 6623:2 6683:1 6684:1 6698:1 6738:1 6799:1 6801:1 6803:1 6807:1 6832:1 6861:1 6867:2 6870:1 6942:1 6972:1 6983:1 7008:1 7010:1 7061:1 7062:1 7065:1 7070:1 7076:1 7130:1 7138:1 7164:1 7225:2 7243:1 7250:1 7252:1 7264:1 7289:5 7377:1 7422:1 7423:1 7432:1 7434:1 7451:1 7455:1 7494:1 7525:1 7532:1 7537:1 7561:1 7589:1 7599:1 7604:2 7607:1 7656:1 7709:1 7721:1 7725:1 7727:1 7728:1 7729:1 7739:1 7741:2 7764:1 7782:1 7805:1 7822:1 7825:1 7840:1 7852:3 7857:1 7871:1 7905:1 7937:2 7945:1 7965:1 7966:1 7974:1 7989:4 7995:1 8004:3 8007:1 8008:1 8015:1 8016:1 8019:1 8020:6 8054:1 8085:2 8125:1 8176:1 8186:1 8200:2 8203:3 8284:1 8293:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:1 8377:1 8393:1 8421:1 8427:1 8446:1 8449:1 8489:1 8493:1 8496:1 8501:3 8524:1 8564:1 8566:1 8570:1 8602:1 8617:1 8648:1 8695:2 8714:1 8731:1 8751:1 8772:1 8842:1 8845:1 8849:1 8854:1 8866:1 8883:4 8905:1 8943:1 8946:1 8966:2 8978:2 9007:1 9012:1 9052:2 9090:1 9113:1 9122:1 9123:1 9138:1 9146:1 9153:1 9205:1 9216:1 9217:1 9231:1 9307:1 9325:1 9338:3 9372:4 9374:1 9381:1 9394:1 9426:1 9428:2 9437:1 9446:1 9484:1 9495:1 9499:1 9526:3 9529:1 9577:1 9586:1 9612:1 9628:5 9629:6 9637:1 9655:1 9657:5 9688:3 9694:1 9702:20 9707:1 9708:1 9711:2 9719:1 9723:1 9733:9 9738:2 9744:1 9754:1 9758:1 9780:1 9781:1 9793:1 9803:1 9849:3 9866:1 9870:1 9885:1 9895:1 9924:1 9926:2 9942:2 9957:1 9963:1 9967:1 9968:1 9978:1 9999:3 10023:1 10058:1 10063:1 10103:1 10161:1 10167:1 10175:1 10213:1 10223:1 10235:2 10286:1 10298:1 10313:1 10314:1 10321:16 10333:1 10338:1 10342:1 10356:1 10359:7 10360:2 10378:1 10401:1 10406:1 10412:2 10431:1 10444:1 10452:1 10470:20 10598:1 10599:1 10612:1 10669:1 10683:1 10686:2 10695:1 10697:1 10704:1 10707:1 10711:1 10717:2 10718:1 10736:1 10744:1 10778:1 10789:2 10791:1 10792:1 10796:1 10798:1 10807:1 10808:2 10812:1 10813:1 10826:1 10864:1 10878:1 10884:1 10895:1 10911:2 10979:1 11002:1 11075:2 11078:1 11109:2 11163:1 11165:1 11169:1 11207:1 11212:3 11230:1 11231:1 11233:1 11238:1 11247:1 11258:1 11268:1 11270:1 11325:1 11340:1 11378:1 11382:2 11391:1 11402:1 11422:1 11489:2 11522:1 11557:2 11561:2 11564:1 11569:1 11571:2 11572:1 11573:1 11575:1 11583:1 11587:1 11598:1 11617:1 11628:1 11636:1 11640:1 11641:1 11642:2 11645:1 11654:1 11668:1 11678:2 11690:4 11697:2 11707:1 11720:1 11744:1 11745:1 11774:1 11791:1 11793:1 11795:2 11815:1 11840:1 11851:1 11864:1 11865:1 11872:1 11882:1 11903:1 11918:1 11919:1 11930:1 11931:2 11932:4 11961:2 11969:1 11978:1 11982:3 11992:1 12004:1 12033:1 12052:1 12056:1 12057:1 12076:1 12081:1 12082:1 12083:1 12112:1 12113:1 12120:1 12146:1 12147:1 12186:1 12191:1 12214:1 12221:5 12231:1 12237:2 12239:3 12255:1 12301:1 12359:1 12391:15 12401:1 12407:1 12435:1 12446:1 12451:1 12471:1 12473:1 12479:1 12490:1 12493:1 12521:1 12538:1 12540:2 12547:2 12552:1 12561:2 12570:2 12580:1 12608:1 12618:2 12630:1 12641:1 12643:2 12669:1 12673:3 12692:2 12694:1 12734:2 12757:1 12760:1 12777:1 12794:1 12821:1 12824:2 12829:1 12848:1 12867:3 12881:1 12898:1 12958:1 12977:1 12988:1 13013:2 13040:1 13058:1 13079:1 13089:1 13112:1 13113:3 13128:1 13154:1 13175:1 13179:1 13187:1 13213:1 13234:1 13258:2 13267:1 13282:1 13283:2 13303:1 13325:2 13384:1 13385:1 13411:1 13412:4 13415:1 13418:1 13420:2 13429:1 13443:1 13454:1 13464:1 13468:1 13471:1 13483:1 13493:4 13505:1 13516:1 13550:1 13601:1 13632:1 13648:1 13669:2 13686:2 13690:3 13704:1 13721:2 13737:1 13749:1 13761:1 13765:1 13767:1 13793:1 13798:4 13803:1 13808:1 13823:1 13824:2 13826:2 13828:1 13845:1 13849:1 13859:1 13880:1 13891:4 13895:1 13900:1 13901:1 13910:1 13919:1 13921:2 13931:1 13942:1 13972:2 13998:1 14008:1 14009:1 14015:1 14032:3 14042:1 14070:2 14093:1 14105:1 14115:1 14116:1 14122:1 14134:1 14146:3 14149:1 14152:1 14162:1 14186:1 14189:2 14218:1 14235:2 14263:1 14286:1 14296:1 14302:1 14309:1 14322:5 14337:2 14340:1 14376:1 14380:1 14406:1 14416:1 14430:1 14448:1 14488:1 14491:2 14519:1 14533:1 14550:1 14554:1 14559:1 14564:1 14567:3 14571:2 14580:3 14611:1 14614:1 14621:2 14628:1 14636:1 14638:1 14642:1 14667:1 14675:1 14686:1 14716:1 14727:1 14737:1 14742:3 14744:1 14791:2 14840:1 14844:1 14854:1 14869:1 14941:1 15037:3 15046:1 15060:2 15083:1 15086:1 15150:1 15151:1 15152:1 15160:1 15185:1 15197:1 15222:1 15269:1 15292:1 15312:2 15315:3 15326:1 15383:1 15385:2 15400:1 15414:1 15487:1 15502:3 15525:1 15526:1 15574:1 15577:1 15584:1 15587:1 15595:1 15707:1 15747:1 15776:2 15778:16 15786:1 15794:1 15797:1 15800:4 15813:1 15844:3 15855:1 15864:1 15868:1 15900:1 15912:1 15942:1 15943:1 15981:1 16006:2 16013:1 16083:1 16099:1 16114:1 16134:1 16142:2 16147:1 16149:1 16196:1 16241:1 16269:1 16293:1 16303:1 16304:1 16320:1 16327:6 16332:1 16357:1 16365:1 16372:1 16394:1 16490:1 16499:1 16502:1 16505:2 16510:1 16516:1 16528:1 16535:1 16594:1 16609:6 16613:1 16643:1 16720:1 16729:1 16731:1 16732:1 16742:1 16775:1 16792:3 16797:2 16803:1 16831:1 16837:1 16854:1 16869:1 16874:1 16889:1 16897:1 16898:1 16914:1 16918:1 16929:1 16964:1 16968:1 16970:1 16973:1 16977:2 16979:5 17003:1 17008:1 17009:1 17013:3 17033:2 17064:1 17075:1 17076:1 17082:1 17114:1 17120:1 17125:1 17152:1 17161:1 17172:5 17181:1 17204:1 17214:1 17217:1 17230:1 17243:1 17273:1 17276:1 17278:2 17286:2 17303:1 17315:3 17319:1 17333:5 17336:3 17417:2 17426:1 17449:4 17516:1 17545:1 17547:2 17601:1 17623:1 17629:1 17675:4 17679:1 17792:1 17794:1 17806:2 17814:2 17817:3 17835:1 17836:1 17903:1 17925:1 17941:1 17942:1 17943:1 17957:1 17972:1 17992:1 17997:1 17999:1 18000:1 18005:1 18016:1 18032:1 18037:1 18039:1 18048:1 18080:1 18092:16 18101:2 18105:1 18106:1 18110:1 18120:1 18128:1 18137:1 18198:1 18200:1 18203:3 18214:1 18215:1 18221:1 18244:1 18249:1 18270:3 18276:1 18290:1 18297:1 18320:1 18325:1 18339:1 18390:1 18463:1 18470:1 18474:1 18506:1 18535:1 18559:1 18560:1 18561:2 18582:1 18601:1 18603:1 18608:5 18645:3 18673:1 18696:1 18708:2 18712:1 18715:1 18732:1 18747:1 18767:2 18779:1 18781:1 18793:1 18794:1 18823:1 18876:1 18898:2 18954:1 18959:1 18997:1 19019:1 19064:2 19067:1 19083:1 19087:1 19175:1 19191:1 19192:1 19193:1 19225:1 19263:3 19269:2 19303:1 19310:1 19336:1 19361:1 19397:1 19416:1 19437:1 19458:2 19471:1 19475:1 19490:2 19496:2 19500:1 19513:2 19525:1 19538:1 19602:1 19605:1 19620:1 19645:4 19658:1 19679:1 19691:2 19787:1 19796:1 19806:1 19810:7 19814:2 19851:1 19854:2 19858:1 19865:1 19894:1 19905:1 19907:1 19908:2 19932:8 19947:1 19961:1 19976:2 20046:1 20065:1 20074:1 20078:1 20091:1 20109:4 20115:3 20117:1 20125:1 20127:1 20130:1 20168:1 20201:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20296:1 20324:1 20325:1 20355:1 20383:1 20390:1 20431:1 20444:1 20446:1 20455:1 20537:1 20556:1 20566:1 20568:1 20572:1 20588:2 20604:1 20606:1 20608:1 20643:1 20649:1 20654:1 20727:1 20746:1 20751:2 20754:1 20781:1 20783:1 20785:1 20796:1 20799:2 20816:1 20885:1 20900:1 20917:1 20941:23 20948:1 20949:1 20974:1 20978:1 20997:1 21003:2 21064:1 21071:1 21083:1 21097:1 21124:2 21130:2 21149:1 21174:1 21209:1 21214:1 21215:1 21261:1 21299:1 21316:1 21318:2 21371:1 21503:1 21508:1 21512:1 21513:1 21566:1 21593:1 21603:1 21608:2 21612:1 21634:1 21686:2 21704:2 21713:1 21724:1 21754:1 21788:1 21823:2 21829:2 21843:1 21864:1 21872:2 21917:1 21939:1 21943:1 21975:3 21987:2 22008:1 22032:1 22037:1 22076:1 22079:3 22083:1 22084:1 22143:1 22169:1 22173:1 22177:1 22181:1 22186:1 22190:1 22298:1 22300:3 22305:1 22315:1 22347:1 22386:1 22388:1 22429:2 22493:2 22497:1 22516:1 22530:1 22547:1 22628:3 22643:1 22650:1 22666:1 22720:1 22727:2 22783:1 22800:1 22806:1 22824:1 22870:1 22883:1043 22893:1 22909:1 22923:1 22944:1 22969:1 22984:1 23031:2 23039:1 23043:2 23044:1 23079:1 23119:1 23129:1 23139:1 23193:1 23270:1 23320:1 23321:1 23348:1 23365:1 23411:1 23427:1 23456:1 23457:1 23468:2 23482:1 23508:1 23521:2 23523:1 23543:1 23549:1 23603:1 23607:3 23640:2 23647:1 23653:1 23698:1 23708:1 23712:1 23718:1 23735:1 23763:1 23773:1 23800:1 23812:1 23821:1 23833:3 23834:2 23874:1 23880:2 23914:2 23934:1 23947:7 23958:1 23979:2 24012:2 24013:1 24019:1 24020:1 24047:3 24064:2 24066:1 24079:1 24097:2 24105:2 24106:1 24118:1 24185:1 24191:1 24209:2 24217:1 24239:1 24240:1 24292:1 24332:1 24364:1 24369:1 24449:1 24450:1 24474:1 24479:1 24482:1 24483:1 24491:1 24511:1 24518:1 24539:1 24566:1 24591:1 24592:3 24598:1 24612:1 24620:1 24643:1 24651:1 24653:1 24658:1 24680:1 24681:2 24683:1 24699:1 24700:1 24708:4 24753:1 24762:1 24774:1 24781:1 24794:1 24808:1 24820:1 24826:1 24850:1 24853:1 24869:1 24883:3 24894:2 24918:1 24919:1 24924:1 24978:1 25000:1 25047:1 25053:1 25058:1 25080:1 25114:2 25122:1 25143:1 25144:1 25157:1 25161:2 25163:1 25179:2 25217:1 25240:1 25244:1 25300:1 25303:1 25334:1 25369:1 25373:1 25392:1 25407:2 25417:1 25427:2 25448:1 25456:1 25461:1 25481:1 25486:1 25491:1 25498:2 25502:2 25505:1 25511:3 25527:1 25529:1 25541:1 25543:1 25553:1 25554:1 25572:1 25580:1 25582:2 25586:1 25590:2 25600:1 25608:2 25623:1 25632:1 25637:2 25720:1 25721:3 25733:1 25738:1 25781:1 25782:1 25786:2 25793:1 25811:1 25815:1 25824:2 25841:1 25846:1 25852:1 25859:1 25867:1 25879:1 25907:1 25917:1 25934:1 25994:1 26011:1 26014:1 26018:2 26062:2 26070:1 26091:1 26102:2 26107:1 26119:1 26120:1 26138:1 26153:1 26155:1 26156:1 26203:1 26214:1 26215:1 26216:2 26228:1 26260:1 26313:1 26327:1 26337:2 26385:2 26407:1 26424:1 26438:2 26444:1 26453:1 26459:1 26460:1 26508:3 26552:1 26593:1 26602:3 26608:1 26612:3 26614:1 26628:2 26642:1 26651:1 26668:6 26679:1 26694:1 26743:1 26744:1 26777:2 26779:4 26782:1 26794:1 26795:1 26808:1 26809:1 26815:1 26818:1 26820:1 26826:1 26827:1 26828:2 26842:1 26844:1 26854:1 26907:1 26914:1 26949:1 26984:1 26995:2 26999:1 27004:4 27029:2 27051:1 27072:1 27087:2 27092:1 27099:1 27127:2 27149:1 27153:2 27203:1 27213:1 27243:1 27251:1 27259:1 27260:6 27287:2 27331:8 27333:1 27339:1 27343:1 27396:4 27398:1 27401:1 27415:1 27447:1 27460:7 27478:1 27500:2 27508:1 27526:1 27527:1 27542:1 27573:1 27594:1 27599:1 27603:1 27619:3 27633:1 27677:3 27723:1 27731:1 27760:1 27779:1 27782:1 27787:15 27804:1 27808:1 27810:1 27813:2 27819:1 27854:1 27859:1 27860:1 27862:1 27878:1 27879:1 27920:1 27922:1 27925:1 27957:1 27973:1 27987:2 28000:1 28011:4 28017:1 28052:1 28154:1 28160:1 28179:2 28206:1 28276:1 28278:1 28279:1 28287:1 28297:1 28298:2 28308:1 28313:1 28317:1 28318:1 28370:16 28398:2 28399:1 28433:1 28460:1 28472:2 28473:1 28482:1 28489:6 28528:1 28541:1 28560:1 28567:1 28577:2 28582:1 28587:1 28621:1 28639:1 28645:1 28647:2 28650:2 28686:1 28786:1 28811:1 28814:1 28817:2 28831:1 28833:1 28852:1 28908:1 28913:1 28939:1 28949:1 28974:1 28983:2 28993:1 28996:1 29004:1 29014:1 29087:1 29126:1 29133:1 29149:1 29170:2 29174:1 29179:1 29190:1 29215:1 29233:1 29258:1 29328:1 29330:1 29334:1 29367:1 29398:1 29417:1 29419:2 29426:2 29455:1 29464:1 29486:2 29493:1 29516:2 29551:1 29554:1 29557:2 29564:1 29568:2 29583:1 29584:2 29587:2 29591:1 29604:1 29634:2 29688:5 29695:1 29741:1 29749:1 29752:1 29756:1 29775:1 29822:1 29827:1 29845:1 29901:1 29939:1 29952:1 29957:1 29962:2 29995:1 30004:1 30015:1 30023:1 30035:1 30079:3 30083:1 30084:2 30093:1 30099:3 30105:1 30144:2 30165:1 30192:1 30198:2 30199:2 30213:1 30248:1 30253:1 30261:3 30284:1 30294:1 30307:1 30320:1 30329:1 30330:1 30331:1 30350:1 30370:1 30424:1 30454:1 30478:1 30482:1 30483:1 30493:1 30535:1 30537:1 30538:2 30541:1 30552:2 30601:1 30617:2 30641:1 30679:1 30688:1 30743:1 30789:1 30790:2 30794:1 30814:1 30817:2 30823:1 30857:1 30861:1 30912:2 30920:1 30931:1 30960:1 30970:1 30981:1 30987:1 31020:1 31026:1 31053:1 31055:1 31057:1 31059:1 31093:1 31112:2 31134:1 31142:1 31148:1 31151:1 31168:1 31177:1 31178:1 31181:1 31188:1 31201:1 31210:1 31226:1 31235:1 31255:2 31264:2 31265:1 31283:1 31296:1 31317:2 31329:1 31334:3 31377:2 31411:1 31413:6 31425:2 31444:1 31465:1 31478:1 31550:1 31563:1 31569:1 31574:1 31578:2 31588:1 31595:1 31610:1 31612:1 31648:1 31660:1 31708:1 31725:1 31737:1 31747:1 31753:2 31768:1 31784:1 31787:1 31808:1 31834:1 31848:1 31866:1 31882:1 31885:1 31891:1 31919:1 31930:3 31933:1 31946:2 31963:1 31964:1 31968:5 31969:1 31993:1 32022:1 32036:1 32066:3 32074:1 32090:1 32099:1 32106:1 32112:1 32117:1 32153:1 32219:2 32285:2 32307:1 32311:1 32319:1 32326:1 32329:1 32376:1 32406:1 32459:1 32491:1 32493:1 32505:2 32515:1 32532:1 32553:2 32574:1 32596:1 32612:1 32624:1 32636:1 32683:1 32700:1 32725:2 32732:1 32745:1 32749:1 32750:5 32774:2 32787:1 32801:4 32832:2 32879:1 32890:3 32891:1 32896:2 32909:1 32917:1 32924:1 32929:1 32941:3 32950:1 32955:1 32958:1 32974:1 33027:1 33053:1 33057:1 33066:1 33069:1 33080:1 33092:1 33098:1 33100:1 33112:1 33118:1 33128:3 33133:2 33137:1 33141:1 33142:1 33144:1 33157:2 33183:2 33222:1 33272:1 33284:1 33296:2 33297:1 33309:2 33330:1 33346:1 33352:2 33388:1 33389:1 33404:1 33413:1 33446:1 33461:1 33467:1 33498:1 33503:1 33512:1 33530:1 33533:3 33537:2 33543:2 33553:2 33556:2 33563:2 33579:1 33591:1 33592:1 33595:2 33609:1 33620:1 33623:1 33637:1 33663:3 33680:3 33716:1 33730:1 33734:2 33743:1 33760:1 33766:1 33769:1 33795:1 33820:1 33824:1 33861:1 33865:1 33880:1 33910:1 33928:1 34003:1 34040:1 34056:3 34057:2 34071:2 34075:3 34083:1 34085:3 34099:1 34104:1 34133:1 34139:1 34144:1 34151:1 34157:1 34160:1 34174:1 34221:2 34246:2 34283:1 34306:1 34314:1 34321:1 34351:1 34364:1 34367:1 34371:1 34407:1 34410:1 34413:1 34435:12 34478:1 34497:5 34566:1 34570:1 34596:2 34615:1 34619:1 34627:1 34634:5 34643:2 34659:1 34673:1 34674:1 34682:1 34691:5 34701:1 34749:1 34757:1 34761:1 34782:1 34794:1 34804:2 34862:1 34878:2 34968:1 34996:20 35022:1 35026:3 35031:1 35041:3 35042:1 35094:1 35098:1 35124:3 35128:6 35135:2 35141:1 35152:1 35164:1 35184:1 35201:1 35207:2 35253:1 35265:1 35281:1 35289:2 35310:1 35311:1 35326:1 35342:1 35354:1 35382:2 35395:1 35410:1 35499:1 35503:2 35517:1 35520:1 35539:1 35589:2 35592:1 35602:2 35625:2 35636:1 35648:1 35656:1 35696:1 35700:1 35714:1 35721:1 35748:1 35753:1 35757:2 35785:1 35789:2 35805:4 35831:1 35837:2 35838:2 35850:16 35888:1 35901:1 35939:1 35953:1 35957:1 35965:2 35966:2 36011:1 36072:1 2 9:1 10:1 31:2 32:1 33:1 69:1 73:1 95:1 104:2 106:2 107:1 122:1 140:1 166:2 177:1 191:1 200:1 207:1 211:1 235:1 239:1 251:1 256:1 278:1 297:1 302:3 303:1 309:1 322:1 323:1 328:1 365:1 414:3 452:1 454:1 478:2 498:1 503:1 520:1 526:1 555:1 568:2 601:1 607:1 610:1 621:1 659:1 662:1 672:1 674:1 684:1 690:1 750:1 751:2 761:1 766:1 795:2 820:17 825:3 831:1 854:1 861:1 881:1 919:1 935:2 941:1 964:1 999:2 1019:2 1022:1 1024:2 1028:2 1032:1 1034:1 1082:2 1135:2 1136:6 1142:1 1150:5 1176:2 1194:2 1206:3 1210:1 1212:1 1219:1 1226:1 1234:2 1253:1 1256:1 1260:1 1293:1 1301:1 1305:1 1326:3 1385:1 1386:1 1403:1 1454:1 1459:2 1510:1 1537:1 1541:16 1550:1 1554:1 1555:2 1564:3 1567:1 1592:1 1595:2 1605:1 1616:1 1617:1 1619:1 1634:1 1638:1 1651:1 1682:1 1705:1 1706:2 1740:1 1757:1 1763:1 1771:2 1773:1 1808:1 1824:1 1836:2 1849:2 1861:1 1888:1 1889:1 1891:2 1897:4 1910:1 1911:1 1929:1 1960:2 1970:1 1991:1 1997:2 2013:1 2031:1 2036:1 2058:1 2097:1 2098:1 2102:1 2105:1 2106:1 2145:1 2147:1 2158:2 2164:3 2196:1 2202:1 2218:1 2249:1 2260:1 2282:1 2292:1 2307:1 2312:1 2317:1 2320:1 2328:1 2345:1 2348:1 2352:1 2379:2 2400:2 2406:2 2420:1 2446:1 2455:1 2486:3 2508:1 2522:1 2525:1 2547:1 2566:1 2604:1 2624:1 2652:1 2655:1 2696:4 2721:1 2743:1 2817:1 2827:1 2848:1 2857:1 2859:1 2862:3 2866:2 2867:1 2870:1 2872:3 2877:2 2883:3 2887:3 2891:1 2895:1 2897:1 2902:1 2906:1 2909:1 2919:1 2942:1 2954:2 2955:1 2971:3 2999:2 3002:1 3004:1 3026:1 3027:1 3044:1 3045:2 3054:1 3076:3 3086:2 3100:1 3106:1 3116:2 3137:1 3179:1 3186:1 3206:1 3224:2 3244:1 3255:1 3267:1 3312:1 3319:1 3322:2 3341:2 3348:1 3367:1 3381:1 3406:1 3410:1 3413:3 3415:1 3420:1 3423:2 3429:1 3443:1 3497:1 3510:3 3516:1 3520:1 3539:2 3603:1 3612:1 3645:10 3648:17 3651:1 3652:2 3653:1 3663:2 3666:1 3678:1 3681:1 3691:3 3692:1 3695:1 3698:1 3706:4 3736:2 3741:1 3756:1 3784:1 3793:1 3794:1 3846:2 3897:1 4045:1 4070:1 4097:1 4101:1 4119:1 4146:1 4157:1 4161:2 4171:1 4179:1 4211:1 4226:1 4251:1 4328:1 4334:1 4355:1 4359:1 4381:1 4383:1 4395:1 4396:1 4412:1 4444:1 4448:1 4479:1 4488:1 4492:1 4517:1 4555:1 4564:1 4601:1 4626:1 4643:1 4645:1 4646:1 4651:1 4654:1 4722:2 4724:1 4767:1 4773:1 4780:1 4795:1 4815:1 4820:1 4843:1 4855:1 4857:1 4859:1 4867:2 4886:1 4887:1 4914:1 4920:16 4922:2 4927:1 4947:1 4985:1 4992:1 5008:1 5015:1 5019:2 5020:2 5032:2 5047:1 5054:1 5058:4 5059:1 5076:2 5119:1 5153:1 5163:1 5170:2 5178:1 5194:1 5233:1 5235:1 5237:1 5240:1 5241:1 5254:1 5272:1 5298:1 5299:2 5300:1 5302:2 5307:1 5308:2 5324:1 5348:1 5402:1 5428:1 5437:16 5453:1 5456:1 5459:3 5471:1 5473:1 5486:1 5492:1 5566:6 5588:1 5638:3 5655:2 5663:1 5672:1 5676:1 5687:1 5712:1 5731:6 5738:1 5760:1 5832:1 5843:1 5869:1 5879:3 5885:1 5913:1 5960:1 5967:1 5969:1 5973:2 5974:1 5980:1 5983:1 6004:1 6005:2 6043:1 6049:1 6075:1 6078:1 6096:8 6097:2 6112:1 6140:1 6149:2 6187:1 6191:1 6253:3 6254:1 6277:2 6278:2 6279:1 6285:3 6292:1 6293:3 6303:1 6309:2 6312:3 6315:2 6316:1 6326:1 6358:1 6407:1 6411:1 6528:1 6580:1 6610:1 6622:1 6623:2 6683:1 6684:1 6698:1 6738:1 6759:1 6787:1 6799:1 6801:2 6803:1 6807:1 6832:1 6835:1 6861:1 6867:2 6870:1 6942:1 6970:1 6972:1 6983:1 7008:1 7010:1 7061:1 7062:1 7065:1 7070:1 7076:1 7119:1 7130:1 7138:1 7140:1 7164:1 7225:2 7243:1 7250:1 7252:1 7264:1 7289:5 7366:1 7377:1 7422:1 7423:1 7432:1 7434:1 7451:1 7455:1 7494:1 7525:1 7532:1 7537:1 7561:1 7580:1 7589:1 7599:1 7604:2 7607:1 7656:1 7707:1 7708:1 7709:1 7721:1 7722:1 7725:1 7727:1 7728:1 7729:1 7739:1 7741:2 7764:1 7782:1 7805:1 7822:1 7825:1 7840:1 7847:1 7852:3 7857:2 7860:1 7871:1 7905:1 7937:2 7945:1 7965:1 7966:1 7974:1 7989:4 7995:1 8004:3 8007:1 8008:1 8015:1 8016:1 8019:1 8020:6 8030:1 8054:1 8085:2 8125:1 8176:1 8186:1 8200:2 8203:3 8260:1 8284:1 8293:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:1 8377:1 8393:1 8421:1 8427:1 8446:1 8449:1 8489:1 8493:1 8496:1 8501:3 8524:1 8564:1 8566:1 8570:1 8602:1 8617:1 8648:1 8695:2 8714:1 8731:1 8751:1 8772:1 8842:1 8845:1 8849:1 8854:1 8866:1 8883:4 8905:1 8943:1 8946:1 8955:1 8966:2 8978:2 9007:1 9012:1 9052:2 9090:1 9113:1 9122:1 9123:1 9138:1 9146:1 9153:1 9205:1 9216:1 9217:1 9231:1 9307:1 9325:1 9333:1 9338:3 9372:4 9374:1 9381:1 9394:1 9426:1 9428:2 9437:1 9446:1 9484:1 9495:1 9499:1 9526:3 9529:1 9577:1 9586:1 9612:1 9628:6 9629:6 9637:1 9655:1 9657:5 9688:3 9694:1 9702:20 9707:1 9708:1 9711:2 9719:1 9723:1 9733:10 9738:2 9744:1 9754:1 9758:1 9780:1 9781:1 9793:1 9803:1 9849:3 9866:1 9870:1 9885:1 9895:1 9924:1 9926:2 9942:2 9957:1 9963:1 9967:2 9968:1 9978:1 9999:3 10011:1 10023:1 10058:1 10063:2 10103:1 10161:1 10167:1 10175:1 10213:1 10223:1 10235:2 10261:1 10286:1 10298:1 10313:1 10314:1 10321:17 10333:1 10338:1 10342:1 10356:1 10359:7 10360:3 10378:1 10401:1 10406:1 10412:2 10431:1 10444:1 10452:1 10470:21 10598:1 10599:1 10612:1 10669:1 10683:1 10686:2 10695:1 10697:1 10704:1 10707:1 10711:1 10717:3 10718:1 10736:1 10744:1 10778:1 10789:2 10791:1 10792:1 10796:1 10798:1 10807:1 10808:2 10812:1 10813:1 10826:1 10864:1 10878:1 10884:1 10895:1 10911:2 10979:1 11002:1 11075:2 11078:1 11109:2 11163:1 11165:1 11169:1 11183:1 11207:1 11212:3 11230:1 11231:1 11233:1 11238:1 11247:2 11258:1 11268:1 11270:1 11272:1 11325:1 11340:1 11378:1 11382:3 11391:1 11402:1 11422:1 11489:2 11522:1 11557:3 11561:2 11564:1 11569:1 11571:3 11572:1 11573:1 11575:1 11583:1 11585:1 11587:1 11598:1 11617:1 11628:1 11636:1 11640:1 11641:1 11642:2 11645:1 11654:1 11668:1 11678:2 11690:4 11697:2 11707:2 11720:1 11744:1 11745:1 11774:1 11791:1 11793:1 11795:2 11815:1 11840:1 11851:1 11861:1 11864:1 11865:1 11872:1 11882:1 11885:1 11899:1 11903:1 11918:1 11919:1 11930:1 11931:2 11932:4 11961:2 11966:1 11969:1 11976:1 11978:1 11982:3 11988:1 11992:1 12004:1 12033:1 12052:1 12056:1 12057:1 12076:1 12081:1 12082:1 12083:1 12112:1 12113:1 12120:1 12146:1 12147:1 12186:1 12191:1 12214:1 12221:5 12231:1 12237:2 12239:3 12255:1 12301:1 12359:1 12391:16 12401:1 12407:1 12435:1 12446:1 12451:1 12471:1 12473:1 12479:1 12490:1 12493:1 12521:1 12538:1 12540:2 12547:2 12552:1 12561:2 12570:2 12580:1 12608:1 12618:2 12630:1 12641:1 12643:2 12669:1 12673:3 12692:2 12694:1 12734:3 12757:1 12760:1 12777:1 12794:1 12821:1 12824:2 12829:1 12848:1 12867:3 12881:1 12898:1 12958:1 12977:1 12988:1 13013:2 13040:1 13058:1 13079:1 13089:1 13112:1 13113:3 13128:1 13154:1 13175:1 13179:1 13187:1 13213:1 13234:1 13258:2 13267:1 13282:1 13283:3 13303:1 13325:2 13357:1 13384:1 13385:1 13411:1 13412:4 13415:1 13418:1 13420:2 13429:1 13443:1 13454:1 13464:1 13468:1 13471:1 13483:1 13493:4 13505:1 13516:1 13550:1 13588:1 13601:1 13632:1 13648:1 13669:2 13686:2 13690:3 13694:1 13704:1 13721:2 13737:1 13749:1 13761:1 13765:1 13767:1 13793:1 13798:7 13803:1 13808:1 13823:1 13824:2 13826:3 13828:1 13845:1 13849:1 13859:1 13880:1 13891:4 13895:1 13900:1 13901:1 13910:1 13919:1 13921:2 13931:1 13942:1 13972:2 13998:1 14008:1 14009:1 14015:1 14032:3 14042:1 14070:2 14093:1 14095:1 14105:1 14115:1 14116:1 14122:1 14134:1 14146:3 14149:1 14152:1 14162:1 14186:1 14189:2 14218:1 14235:2 14263:1 14286:1 14296:1 14302:1 14309:1 14322:5 14337:2 14340:1 14376:1 14380:1 14406:1 14416:1 14430:1 14448:1 14488:1 14491:2 14519:1 14533:1 14550:1 14554:1 14559:1 14564:1 14567:3 14568:1 14571:2 14580:3 14611:1 14614:1 14621:2 14628:1 14636:1 14638:2 14642:1 14654:1 14667:1 14675:1 14686:1 14716:1 14727:1 14737:1 14742:3 14744:1 14787:1 14791:2 14840:1 14844:1 14854:1 14869:1 14941:1 15037:3 15046:1 15060:3 15083:1 15086:1 15150:1 15151:1 15152:1 15160:1 15185:1 15197:1 15222:1 15269:1 15292:1 15312:2 15315:3 15326:1 15383:1 15385:2 15400:1 15414:1 15487:1 15502:3 15525:1 15526:1 15574:1 15577:1 15584:1 15587:1 15595:1 15707:1 15747:1 15776:2 15778:17 15786:1 15794:1 15797:1 15800:4 15813:1 15844:4 15855:1 15864:2 15868:1 15900:1 15912:1 15942:1 15943:1 15981:1 16006:2 16013:1 16083:1 16099:1 16114:1 16134:1 16142:2 16147:1 16149:1 16196:1 16241:1 16269:1 16293:1 16303:1 16304:1 16320:1 16327:7 16332:1 16357:1 16365:1 16372:1 16375:1 16394:1 16456:1 16490:1 16499:1 16502:2 16505:2 16510:2 16516:1 16528:1 16535:1 16594:1 16609:6 16613:1 16643:1 16720:1 16729:1 16731:1 16732:1 16742:1 16775:1 16792:3 16797:2 16803:1 16831:1 16837:1 16854:1 16869:1 16874:1 16889:1 16897:1 16898:1 16914:1 16918:1 16929:1 16964:1 16968:1 16970:1 16973:1 16977:2 16978:1 16979:5 16980:1 17003:1 17008:1 17009:1 17013:3 17033:2 17064:1 17075:1 17076:1 17082:1 17114:1 17120:1 17125:1 17152:1 17161:1 17172:7 17181:1 17204:1 17214:1 17217:1 17230:1 17243:1 17273:1 17276:1 17278:2 17286:3 17303:1 17315:3 17319:1 17320:1 17333:5 17336:3 17417:2 17426:1 17438:1 17449:4 17516:1 17545:1 17547:2 17601:1 17623:1 17629:1 17675:4 17679:1 17792:1 17794:1 17806:2 17814:2 17817:3 17835:1 17836:1 17903:1 17918:1 17925:1 17941:1 17942:1 17943:1 17957:2 17972:1 17992:1 17997:1 17999:1 18000:1 18005:1 18016:1 18032:1 18037:1 18039:1 18048:1 18080:1 18092:17 18101:2 18105:1 18106:1 18110:1 18120:1 18128:1 18137:1 18198:1 18200:1 18203:3 18214:1 18215:1 18221:1 18244:1 18249:1 18270:3 18276:1 18290:1 18297:1 18320:1 18325:1 18339:1 18342:1 18390:1 18463:1 18470:2 18474:1 18506:1 18535:1 18559:1 18560:1 18561:2 18582:1 18601:1 18603:1 18608:6 18645:3 18673:1 18696:1 18708:2 18712:1 18715:1 18732:1 18747:1 18767:2 18779:1 18781:1 18793:1 18794:1 18823:1 18876:1 18898:2 18954:1 18959:1 18997:1 19019:1 19064:2 19067:1 19083:1 19087:1 19097:1 19175:1 19191:1 19192:2 19193:1 19225:1 19263:3 19269:2 19287:1 19303:1 19310:1 19336:1 19361:1 19397:1 19416:1 19437:1 19458:2 19471:1 19475:1 19490:3 19496:2 19500:1 19513:2 19518:1 19525:1 19538:3 19602:1 19605:1 19620:1 19645:4 19658:1 19679:1 19691:2 19772:1 19787:1 19796:1 19806:1 19810:7 19814:2 19820:1 19851:1 19854:2 19858:1 19865:1 19894:2 19905:1 19907:1 19908:2 19932:8 19947:1 19961:1 19976:2 20034:1 20046:1 20065:1 20074:1 20078:1 20091:1 20109:4 20115:3 20117:1 20125:1 20126:1 20127:1 20130:1 20168:1 20201:1 20221:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20296:1 20324:1 20325:1 20355:1 20383:1 20390:1 20431:1 20444:1 20446:1 20455:1 20537:1 20556:1 20566:1 20568:1 20572:1 20588:2 20604:1 20606:1 20608:1 20643:1 20649:1 20654:1 20727:1 20746:1 20751:3 20754:1 20781:1 20783:1 20785:1 20796:1 20799:2 20816:1 20865:1 20885:1 20900:1 20917:1 20941:24 20948:1 20949:1 20974:1 20978:1 20997:1 21003:3 21064:1 21071:1 21083:1 21097:1 21124:2 21130:2 21149:1 21174:1 21204:1 21209:1 21214:1 21215:1 21261:1 21299:1 21316:1 21318:2 21371:1 21376:1 21423:1 21445:1 21503:1 21508:1 21512:1 21513:1 21566:1 21593:1 21597:1 21603:1 21608:2 21612:1 21634:1 21686:2 21704:2 21713:1 21724:1 21754:1 21788:1 21823:3 21829:2 21831:1 21843:1 21864:1 21872:2 21917:2 21939:1 21943:1 21975:3 21987:2 22008:1 22032:1 22037:1 22076:1 22079:4 22083:1 22084:1 22143:1 22169:1 22173:1 22177:1 22181:1 22186:1 22190:1 22298:1 22300:3 22305:1 22315:1 22347:1 22386:1 22388:1 22424:1 22429:2 22493:2 22497:1 22516:1 22530:1 22547:1 22584:1 22628:3 22643:1 22650:1 22666:1 22720:1 22727:2 22783:1 22800:1 22806:1 22824:1 22870:1 22883:1120 22893:1 22909:1 22923:1 22944:1 22969:1 22984:1 23031:2 23039:1 23043:2 23044:1 23079:1 23119:1 23129:1 23139:1 23193:1 23270:1 23304:1 23320:1 23321:1 23348:1 23365:1 23411:1 23427:1 23456:1 23457:1 23468:2 23482:1 23508:1 23521:2 23523:2 23543:1 23549:1 23603:1 23607:3 23640:3 23647:1 23653:1 23698:1 23706:1 23708:1 23712:1 23718:1 23735:1 23763:1 23773:1 23800:1 23812:1 23821:1 23833:4 23834:2 23874:1 23880:4 23914:2 23934:1 23947:9 23958:1 23979:2 24012:2 24013:1 24019:1 24020:1 24047:3 24064:2 24066:1 24079:1 24097:2 24105:3 24106:1 24118:1 24185:1 24191:1 24209:2 24217:1 24239:1 24240:1 24292:1 24332:1 24342:1 24364:1 24369:1 24376:1 24449:1 24450:1 24474:1 24479:1 24480:1 24482:1 24483:1 24491:1 24511:1 24518:1 24539:1 24566:1 24591:1 24592:3 24598:1 24612:1 24620:1 24643:1 24651:1 24653:1 24658:1 24680:2 24681:3 24683:1 24699:1 24700:1 24708:4 24753:1 24762:1 24774:1 24781:2 24794:1 24808:1 24820:1 24826:1 24850:1 24853:1 24869:1 24883:3 24894:2 24918:1 24919:1 24924:1 24978:1 25000:1 25047:1 25053:1 25058:1 25080:1 25114:2 25122:1 25143:1 25144:1 25157:1 25161:2 25163:1 25179:2 25217:1 25240:1 25244:1 25285:1 25300:1 25303:1 25334:1 25369:1 25373:1 25392:1 25407:2 25417:1 25427:2 25448:1 25456:1 25461:1 25481:1 25486:1 25491:1 25498:2 25502:2 25505:1 25511:3 25527:1 25529:1 25541:1 25543:1 25553:1 25554:1 25572:1 25580:1 25582:2 25586:1 25590:2 25600:1 25608:2 25623:1 25632:1 25637:2 25720:1 25721:3 25733:1 25738:1 25781:1 25782:1 25786:2 25793:1 25811:1 25815:1 25824:2 25841:1 25846:1 25852:1 25859:1 25867:1 25879:1 25907:1 25917:1 25934:1 25952:1 25994:1 26000:1 26011:1 26014:1 26018:2 26062:2 26070:1 26091:1 26102:2 26107:1 26119:1 26120:1 26138:1 26153:1 26155:1 26156:2 26203:2 26211:1 26214:1 26215:1 26216:2 26228:1 26260:1 26313:1 26327:1 26337:2 26385:2 26407:1 26424:1 26438:3 26444:1 26453:2 26459:1 26460:1 26496:1 26508:4 26552:1 26593:1 26602:3 26608:1 26612:3 26614:1 26628:2 26642:1 26651:1 26668:6 26671:1 26679:1 26694:1 26740:1 26743:1 26744:1 26777:2 26779:4 26782:1 26794:1 26795:1 26808:1 26809:1 26815:1 26818:1 26820:1 26826:2 26827:1 26828:2 26842:1 26844:1 26854:1 26874:1 26907:1 26914:1 26949:1 26984:1 26995:2 26999:1 27004:4 27029:2 27051:1 27072:1 27087:2 27092:1 27099:1 27127:2 27149:1 27153:2 27203:1 27213:1 27243:1 27251:1 27259:1 27260:6 27287:2 27331:8 27333:1 27339:1 27343:1 27393:1 27396:4 27398:1 27401:1 27415:1 27447:1 27460:7 27478:1 27500:2 27508:1 27526:1 27527:1 27542:1 27573:1 27594:1 27599:1 27603:1 27619:3 27633:1 27677:3 27723:1 27731:1 27760:1 27779:1 27782:1 27787:16 27804:1 27808:1 27810:1 27813:2 27819:1 27854:1 27859:1 27860:1 27862:1 27878:1 27879:1 27920:1 27922:1 27925:1 27957:1 27973:1 27983:1 27987:2 28000:1 28011:4 28017:1 28052:1 28154:1 28160:1 28179:2 28206:1 28263:1 28276:1 28278:1 28279:1 28287:1 28297:1 28298:2 28308:1 28313:1 28317:1 28318:1 28370:17 28398:2 28399:1 28433:1 28436:1 28460:1 28472:2 28473:1 28482:1 28489:6 28528:1 28541:1 28560:1 28567:1 28572:1 28577:2 28582:1 28587:1 28621:1 28639:1 28645:1 28647:2 28650:2 28686:1 28786:1 28811:1 28814:1 28817:2 28831:1 28833:1 28852:1 28908:1 28913:1 28939:1 28949:1 28974:2 28983:2 28993:1 28996:1 29004:1 29014:1 29016:1 29087:1 29126:1 29133:1 29149:1 29170:2 29174:1 29179:1 29190:1 29215:1 29233:1 29258:1 29328:1 29330:1 29334:1 29367:1 29398:1 29417:1 29419:2 29426:2 29455:1 29464:1 29480:1 29486:2 29493:1 29516:2 29551:1 29554:1 29557:2 29564:1 29568:2 29583:1 29584:2 29587:3 29591:1 29604:1 29634:3 29688:5 29695:1 29741:1 29749:1 29752:1 29756:1 29775:1 29822:1 29827:1 29840:1 29845:1 29901:1 29939:1 29952:1 29957:1 29962:2 29995:1 30004:1 30015:1 30023:1 30035:1 30079:3 30083:1 30084:2 30092:1 30093:1 30099:3 30105:1 30144:2 30165:2 30192:1 30198:2 30199:2 30213:1 30248:1 30253:1 30261:3 30284:1 30294:1 30307:1 30320:1 30329:1 30330:1 30331:1 30350:1 30370:1 30424:1 30454:1 30478:1 30482:1 30483:1 30493:1 30535:1 30537:1 30538:2 30541:1 30552:2 30601:1 30617:2 30641:1 30679:1 30688:1 30743:1 30789:2 30790:2 30794:1 30814:1 30817:2 30823:1 30857:1 30861:1 30912:2 30920:1 30931:1 30960:1 30970:1 30972:1 30981:2 30987:1 31005:1 31020:1 31026:1 31053:1 31055:1 31057:1 31059:1 31089:1 31093:1 31112:2 31134:1 31142:1 31148:1 31151:1 31168:1 31177:1 31178:1 31181:1 31188:1 31201:1 31210:1 31226:1 31235:1 31255:2 31264:3 31265:1 31276:1 31283:1 31296:2 31317:2 31329:1 31334:3 31377:3 31384:1 31411:1 31413:6 31425:2 31444:1 31465:1 31478:1 31550:1 31563:1 31569:1 31574:1 31578:2 31588:1 31595:1 31610:1 31612:1 31648:1 31660:2 31708:1 31725:1 31737:1 31747:1 31753:2 31768:1 31784:1 31787:1 31808:1 31834:2 31848:1 31866:1 31882:1 31885:1 31891:1 31919:1 31929:1 31930:3 31933:1 31946:2 31963:2 31964:1 31968:5 31969:1 31993:1 32010:1 32022:1 32036:1 32066:3 32074:1 32090:1 32099:1 32106:1 32112:1 32117:1 32153:1 32219:2 32285:2 32307:1 32311:1 32319:1 32326:1 32329:1 32376:1 32406:1 32459:1 32491:1 32493:1 32505:2 32515:1 32532:1 32553:2 32574:1 32596:1 32612:1 32624:1 32636:1 32683:1 32700:1 32725:2 32732:1 32745:1 32749:1 32750:5 32774:2 32787:1 32801:4 32832:2 32879:1 32890:4 32891:1 32896:2 32909:1 32917:1 32924:1 32929:2 32941:3 32950:1 32955:1 32958:1 32974:1 33027:1 33053:1 33057:1 33066:1 33069:1 33080:1 33085:1 33092:1 33098:1 33100:1 33112:1 33118:1 33128:3 33133:2 33137:1 33141:1 33142:1 33144:1 33157:2 33183:2 33222:1 33272:1 33284:1 33296:2 33297:1 33309:2 33330:1 33346:1 33352:2 33388:1 33389:1 33404:1 33413:1 33446:1 33461:3 33467:1 33498:1 33503:1 33512:1 33530:1 33533:3 33537:2 33543:2 33552:1 33553:2 33556:2 33563:2 33579:1 33591:1 33592:1 33595:2 33609:1 33620:1 33623:1 33637:1 33663:4 33680:3 33716:1 33730:1 33734:2 33743:1 33760:1 33766:1 33769:1 33795:1 33820:1 33824:1 33861:1 33865:1 33880:1 33910:1 33928:1 33930:1 34003:1 34040:1 34056:3 34057:2 34067:1 34071:2 34075:3 34083:1 34085:3 34099:1 34104:1 34133:1 34139:1 34144:1 34151:1 34157:1 34160:1 34174:1 34197:1 34221:2 34246:2 34283:1 34306:1 34314:1 34321:1 34351:1 34364:1 34367:1 34371:1 34373:1 34407:1 34410:1 34413:1 34435:12 34478:1 34497:5 34566:1 34570:1 34596:2 34615:1 34619:1 34627:1 34634:5 34643:2 34659:1 34673:1 34674:1 34682:1 34691:6 34701:1 34749:1 34757:1 34761:1 34782:1 34794:1 34804:2 34862:1 34878:2 34968:1 34996:21 35022:1 35026:3 35031:1 35041:3 35042:1 35056:1 35094:1 35098:1 35124:3 35128:7 35135:2 35141:1 35152:1 35164:1 35184:1 35201:1 35207:2 35253:1 35265:1 35281:1 35289:2 35310:1 35311:1 35326:1 35342:1 35354:1 35382:2 35395:1 35410:1 35499:1 35503:2 35517:1 35520:1 35539:1 35589:2 35592:1 35602:2 35625:2 35636:1 35648:1 35656:1 35677:1 35681:1 35696:1 35700:1 35714:1 35721:1 35748:1 35753:1 35757:2 35785:1 35789:2 35805:4 35831:1 35837:2 35838:2 35850:17 35888:1 35901:1 35939:1 35953:1 35957:1 35965:2 35966:2 36011:1 36072:1 2 9:1 10:1 31:2 32:1 33:1 65:1 69:1 73:1 95:1 104:2 106:2 107:1 122:1 140:1 166:2 177:1 191:1 200:1 207:1 211:1 235:1 239:1 251:1 256:1 278:1 297:1 302:3 303:1 309:1 322:1 323:1 328:1 365:1 414:3 452:1 454:1 478:2 498:1 503:1 520:1 526:1 555:1 568:2 601:1 607:1 610:1 621:1 659:1 662:1 672:1 674:1 684:1 690:1 750:1 751:2 761:1 766:1 795:2 820:18 825:3 831:1 854:1 861:1 881:1 919:1 935:2 941:1 964:1 999:2 1019:2 1022:1 1024:2 1028:2 1032:1 1034:1 1082:3 1135:2 1136:6 1142:1 1150:5 1176:2 1194:2 1206:3 1210:1 1212:1 1219:1 1226:1 1234:2 1253:1 1256:1 1260:1 1293:1 1301:1 1305:1 1308:1 1326:3 1385:1 1386:1 1403:1 1454:1 1459:2 1510:1 1537:1 1541:17 1550:1 1554:1 1555:2 1564:3 1567:1 1592:1 1595:2 1605:1 1616:1 1617:1 1619:1 1634:1 1638:1 1651:1 1682:1 1705:1 1706:2 1740:1 1757:1 1763:1 1771:2 1773:1 1808:1 1824:1 1836:2 1849:2 1861:1 1888:1 1889:1 1891:2 1897:4 1903:1 1910:1 1911:1 1929:1 1960:2 1970:1 1991:1 1997:2 2013:1 2031:1 2036:1 2043:1 2058:1 2097:1 2098:1 2102:1 2105:1 2106:1 2123:1 2145:1 2147:1 2158:2 2164:3 2196:1 2202:1 2218:1 2249:1 2260:1 2282:1 2292:1 2307:1 2312:1 2317:1 2320:1 2328:1 2345:1 2348:1 2352:1 2376:1 2379:2 2400:2 2406:2 2420:1 2446:1 2455:1 2486:3 2508:1 2522:1 2525:1 2547:1 2566:1 2604:1 2624:1 2652:1 2655:1 2696:4 2721:1 2743:1 2783:1 2817:1 2827:1 2848:1 2857:1 2859:1 2862:3 2866:2 2867:1 2870:1 2872:3 2877:2 2883:3 2887:3 2891:1 2895:1 2897:1 2902:1 2906:1 2909:1 2919:1 2942:1 2954:2 2955:1 2971:3 2999:2 3002:1 3004:1 3026:1 3027:1 3044:1 3045:2 3054:1 3076:3 3086:2 3100:1 3106:1 3116:2 3137:1 3179:1 3186:1 3206:1 3224:2 3244:1 3255:1 3267:1 3312:1 3319:1 3322:2 3341:2 3348:1 3367:1 3380:1 3381:1 3406:1 3410:1 3413:3 3415:1 3420:1 3423:2 3429:1 3443:1 3493:1 3497:1 3510:3 3516:1 3520:1 3539:2 3603:1 3612:1 3645:10 3648:18 3651:1 3652:2 3653:1 3663:2 3666:1 3678:1 3681:1 3691:3 3692:1 3695:1 3698:1 3706:5 3736:2 3741:1 3756:1 3784:1 3793:1 3794:1 3846:2 3897:1 4045:1 4070:1 4097:1 4101:1 4119:1 4146:1 4157:1 4161:2 4171:1 4179:1 4211:1 4224:1 4226:1 4251:1 4328:1 4334:1 4355:1 4359:1 4381:1 4383:1 4395:1 4396:1 4412:1 4444:1 4448:1 4479:1 4488:1 4492:1 4517:1 4555:1 4564:1 4580:1 4601:1 4626:1 4643:2 4645:1 4646:1 4651:1 4654:1 4722:2 4724:1 4767:1 4773:1 4780:1 4795:1 4815:1 4820:1 4843:1 4855:1 4857:1 4859:1 4867:3 4886:1 4887:1 4914:1 4920:17 4922:2 4927:1 4947:1 4985:1 4992:1 5008:1 5015:1 5019:2 5020:2 5032:2 5047:1 5054:1 5058:4 5059:1 5076:2 5119:1 5153:1 5163:1 5170:2 5178:1 5194:1 5233:1 5235:1 5237:1 5240:1 5241:1 5247:1 5254:1 5272:1 5298:1 5299:2 5300:1 5302:2 5307:1 5308:2 5324:1 5348:1 5371:1 5402:2 5408:1 5428:1 5437:17 5453:1 5456:1 5459:3 5471:1 5473:1 5483:1 5486:1 5492:1 5566:6 5588:1 5638:3 5655:2 5663:1 5672:1 5676:1 5687:1 5712:1 5731:7 5738:1 5760:1 5832:1 5843:1 5869:1 5879:3 5885:1 5913:1 5924:1 5960:1 5967:1 5969:1 5973:2 5974:1 5980:1 5983:1 6004:1 6005:2 6043:1 6049:1 6075:1 6078:1 6096:8 6097:2 6112:1 6115:1 6140:1 6149:2 6187:1 6191:1 6253:3 6254:1 6277:2 6278:2 6279:2 6285:3 6292:1 6293:3 6303:1 6309:2 6312:3 6315:2 6316:1 6326:1 6358:1 6407:1 6411:1 6528:1 6580:1 6610:1 6622:1 6623:2 6683:1 6684:1 6698:1 6738:1 6759:1 6787:1 6799:1 6801:2 6803:1 6807:1 6832:1 6835:1 6861:1 6867:2 6870:1 6942:1 6970:1 6972:1 6983:1 7008:1 7010:1 7061:1 7062:1 7065:1 7070:1 7076:1 7119:1 7130:1 7138:1 7140:1 7164:1 7213:1 7225:2 7243:1 7250:1 7252:1 7264:1 7289:5 7366:1 7377:1 7422:1 7423:1 7432:1 7434:1 7451:1 7455:1 7494:1 7525:1 7532:1 7537:1 7561:1 7580:1 7589:1 7599:1 7604:2 7607:1 7656:1 7665:1 7707:1 7708:1 7709:1 7721:1 7722:1 7725:1 7727:1 7728:1 7729:1 7734:1 7739:1 7741:2 7764:1 7782:1 7805:1 7822:1 7825:1 7840:1 7847:1 7852:3 7857:2 7860:1 7871:1 7905:1 7937:2 7945:1 7965:1 7966:1 7974:1 7989:4 7995:1 8004:4 8007:1 8008:1 8015:1 8016:1 8019:2 8020:6 8030:1 8054:1 8085:2 8125:1 8176:1 8186:1 8200:2 8203:3 8260:1 8284:1 8293:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:2 8377:1 8393:1 8421:1 8427:1 8446:1 8449:1 8489:1 8493:1 8496:1 8501:3 8524:1 8564:1 8566:1 8570:1 8602:1 8617:1 8648:1 8695:2 8714:1 8731:1 8751:1 8772:1 8842:1 8845:1 8849:1 8854:1 8866:1 8883:4 8905:1 8943:1 8946:1 8955:1 8966:2 8978:2 9007:1 9012:1 9052:2 9090:1 9113:1 9122:1 9123:1 9138:1 9146:1 9153:1 9205:1 9216:1 9217:1 9231:1 9307:1 9325:1 9333:1 9338:3 9372:4 9374:1 9381:1 9394:1 9426:1 9428:2 9437:1 9446:1 9484:1 9495:1 9499:1 9526:3 9529:1 9577:1 9586:1 9612:1 9628:6 9629:6 9637:1 9655:1 9657:5 9688:3 9694:1 9702:20 9707:1 9708:1 9711:2 9719:1 9723:1 9733:10 9738:3 9744:1 9754:1 9758:1 9780:1 9781:1 9793:1 9803:1 9849:3 9866:1 9870:1 9885:1 9895:1 9924:1 9926:2 9942:2 9957:1 9963:1 9967:2 9968:1 9978:1 9999:3 10011:1 10023:1 10058:1 10063:2 10103:1 10161:1 10167:1 10175:1 10209:1 10213:1 10223:1 10235:2 10261:1 10286:1 10298:1 10313:1 10314:1 10321:18 10333:1 10338:1 10342:1 10356:1 10359:7 10360:3 10378:1 10401:1 10406:1 10412:2 10431:1 10444:1 10452:1 10470:22 10598:1 10599:1 10612:1 10669:1 10683:1 10686:2 10695:1 10697:1 10704:1 10707:1 10711:1 10717:3 10718:1 10736:1 10744:1 10772:1 10778:1 10789:2 10791:1 10792:1 10796:1 10798:1 10807:1 10808:2 10812:1 10813:1 10826:1 10864:1 10878:1 10884:1 10895:1 10911:2 10979:1 11002:1 11075:2 11078:1 11109:2 11163:1 11165:1 11169:1 11183:1 11207:1 11212:3 11226:1 11230:1 11231:1 11233:1 11238:1 11247:2 11258:1 11268:1 11270:1 11272:1 11325:1 11340:1 11378:1 11382:3 11391:1 11402:1 11422:1 11489:2 11522:1 11557:3 11561:2 11564:1 11569:1 11571:3 11572:1 11573:1 11575:1 11583:1 11585:1 11587:1 11598:1 11617:1 11628:1 11636:1 11640:1 11641:1 11642:2 11645:1 11654:1 11668:1 11678:2 11690:4 11697:2 11707:2 11720:1 11744:1 11745:1 11755:1 11774:1 11776:1 11791:1 11793:1 11795:2 11815:1 11840:1 11851:1 11861:1 11864:1 11865:1 11872:1 11876:1 11882:1 11885:1 11899:1 11903:1 11918:1 11919:1 11930:1 11931:2 11932:4 11961:2 11966:1 11969:1 11976:1 11978:1 11982:3 11988:1 11992:1 12004:1 12014:1 12033:1 12052:1 12056:1 12057:1 12076:1 12081:1 12082:1 12083:1 12112:1 12113:1 12120:1 12146:1 12147:1 12186:1 12191:1 12214:1 12221:5 12230:1 12231:1 12237:3 12239:4 12255:1 12301:1 12359:1 12391:17 12401:1 12407:1 12435:1 12446:1 12451:1 12471:1 12473:1 12479:1 12490:1 12493:1 12521:1 12538:1 12540:2 12547:2 12552:1 12561:2 12570:2 12580:1 12592:1 12608:1 12618:2 12630:1 12641:1 12643:2 12669:1 12673:3 12692:2 12694:1 12734:3 12757:1 12760:1 12777:1 12794:1 12821:1 12824:2 12829:1 12848:1 12867:3 12881:1 12898:1 12958:1 12977:1 12988:1 13013:2 13028:1 13040:1 13058:1 13079:1 13089:1 13112:1 13113:3 13128:1 13154:1 13175:1 13179:1 13187:1 13213:1 13234:1 13258:2 13267:1 13282:1 13283:3 13303:1 13325:2 13357:1 13384:1 13385:1 13411:1 13412:4 13415:1 13418:1 13420:2 13429:1 13443:1 13454:1 13464:1 13468:1 13471:1 13483:1 13493:4 13498:1 13505:1 13516:1 13550:1 13588:1 13601:1 13632:1 13648:1 13669:2 13686:2 13690:3 13694:1 13704:1 13721:2 13737:1 13749:1 13761:1 13765:1 13767:1 13793:1 13798:8 13803:1 13808:1 13823:1 13824:3 13826:3 13828:1 13837:1 13845:1 13849:1 13859:1 13880:1 13891:4 13895:1 13900:1 13901:1 13910:1 13919:1 13921:2 13931:1 13942:1 13972:2 13998:1 14008:1 14009:1 14015:1 14032:3 14042:1 14070:2 14093:1 14095:1 14105:1 14115:1 14116:1 14122:1 14134:1 14146:3 14149:1 14152:1 14162:1 14186:1 14189:2 14218:1 14235:2 14263:1 14286:1 14296:1 14302:1 14309:1 14322:5 14337:2 14340:1 14376:1 14380:1 14406:1 14416:1 14430:1 14448:1 14488:1 14491:2 14519:1 14533:1 14550:1 14554:1 14559:1 14564:1 14567:3 14568:1 14571:2 14580:3 14611:1 14614:1 14621:2 14628:1 14636:1 14638:2 14642:1 14654:1 14667:1 14675:1 14686:1 14716:1 14727:1 14737:1 14742:3 14744:1 14787:1 14791:2 14840:1 14844:1 14854:1 14869:1 14941:1 15012:1 15037:3 15046:1 15060:3 15083:1 15086:1 15095:1 15150:1 15151:1 15152:1 15160:1 15185:1 15197:1 15222:1 15250:1 15269:1 15292:1 15312:2 15315:3 15326:1 15383:1 15385:2 15400:1 15414:1 15487:1 15502:3 15525:1 15526:1 15574:1 15577:1 15584:1 15587:1 15595:1 15707:1 15747:1 15776:2 15778:18 15786:1 15794:1 15797:1 15800:4 15813:1 15844:4 15855:1 15864:2 15868:1 15885:1 15900:1 15912:1 15942:1 15943:1 15981:1 16006:2 16013:1 16083:1 16099:1 16114:1 16134:1 16142:2 16147:1 16149:1 16196:1 16201:1 16241:1 16269:1 16293:1 16303:1 16304:1 16320:1 16327:7 16332:1 16357:1 16365:1 16372:1 16375:1 16394:1 16456:1 16490:1 16499:1 16502:2 16505:2 16510:2 16516:1 16528:1 16535:1 16594:1 16609:6 16613:1 16643:1 16720:1 16729:1 16731:1 16732:1 16742:1 16775:1 16792:3 16797:2 16803:1 16831:1 16837:1 16854:1 16869:1 16874:1 16889:1 16897:1 16898:1 16914:1 16918:1 16929:1 16964:1 16968:1 16970:1 16973:1 16977:2 16978:1 16979:5 16980:1 17003:1 17008:1 17009:1 17013:3 17033:2 17064:1 17075:1 17076:1 17082:1 17114:1 17120:1 17125:1 17152:1 17161:1 17172:7 17181:1 17204:1 17214:1 17217:1 17230:1 17243:1 17273:1 17276:1 17278:2 17286:3 17303:1 17315:3 17319:1 17320:1 17333:5 17336:3 17417:2 17426:1 17438:1 17449:4 17516:1 17545:1 17547:2 17601:1 17623:1 17629:1 17675:4 17679:1 17792:1 17794:1 17806:2 17814:2 17817:3 17835:1 17836:1 17849:1 17903:1 17918:1 17925:1 17941:1 17942:1 17943:1 17957:2 17972:1 17984:1 17992:1 17997:1 17999:1 18000:1 18005:1 18016:1 18032:1 18037:1 18039:1 18048:1 18080:1 18092:18 18101:2 18105:1 18106:1 18110:1 18120:1 18128:1 18137:1 18198:1 18200:1 18203:3 18214:1 18215:1 18221:1 18244:1 18249:1 18270:3 18276:1 18290:1 18297:1 18320:1 18325:1 18339:1 18342:1 18390:1 18442:1 18463:1 18470:2 18474:1 18506:1 18535:1 18559:1 18560:1 18561:2 18563:1 18582:1 18601:1 18603:1 18608:6 18645:3 18673:1 18696:1 18708:2 18712:1 18715:1 18732:1 18747:1 18767:2 18779:1 18781:1 18793:1 18794:1 18823:1 18876:1 18898:2 18954:1 18959:1 18997:1 19019:1 19050:1 19064:2 19067:1 19083:1 19087:1 19097:1 19175:1 19191:1 19192:2 19193:1 19225:1 19263:4 19269:2 19287:1 19303:1 19310:1 19336:1 19361:1 19397:1 19416:1 19437:1 19458:2 19471:1 19475:1 19490:3 19496:2 19500:1 19513:2 19518:1 19525:1 19538:3 19602:1 19605:1 19620:1 19645:4 19658:1 19679:1 19691:2 19772:1 19787:1 19796:1 19806:1 19810:7 19814:2 19820:1 19851:1 19854:2 19858:1 19865:1 19894:2 19905:1 19907:1 19908:2 19932:8 19947:1 19961:1 19976:2 20034:1 20046:1 20065:1 20074:1 20078:1 20091:1 20109:4 20115:3 20117:1 20125:1 20126:1 20127:1 20130:1 20168:1 20201:1 20221:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20296:1 20324:1 20325:1 20355:1 20383:1 20390:1 20431:1 20444:1 20446:1 20455:1 20537:1 20556:1 20566:1 20568:1 20572:1 20588:2 20604:1 20606:1 20607:1 20608:1 20643:1 20649:1 20654:1 20727:1 20746:1 20751:3 20754:1 20781:1 20783:1 20785:2 20796:1 20799:2 20816:1 20865:1 20885:1 20900:1 20917:1 20941:25 20948:1 20949:1 20974:1 20978:1 20997:1 21003:3 21064:1 21071:1 21083:1 21097:1 21124:2 21130:2 21149:1 21174:1 21204:1 21209:1 21214:1 21215:1 21261:1 21263:1 21299:1 21316:1 21318:2 21371:1 21376:1 21423:1 21445:1 21503:1 21508:1 21512:1 21513:1 21522:1 21566:1 21593:1 21597:1 21603:1 21608:2 21612:1 21634:1 21686:2 21704:2 21713:1 21724:1 21754:1 21788:1 21823:4 21829:2 21831:1 21843:1 21864:1 21872:2 21917:2 21939:1 21943:1 21975:3 21987:2 22008:1 22032:1 22037:1 22076:1 22079:4 22083:1 22084:1 22123:1 22143:1 22169:1 22173:1 22177:1 22181:1 22186:1 22190:1 22298:1 22300:3 22305:1 22315:1 22347:1 22386:1 22388:1 22424:1 22429:2 22493:2 22497:1 22516:1 22530:1 22547:1 22584:1 22628:4 22643:1 22650:1 22666:1 22720:1 22727:2 22754:1 22783:1 22800:1 22806:1 22824:1 22870:1 22883:1152 22893:1 22909:1 22923:1 22944:1 22969:1 22984:1 23031:3 23039:1 23043:2 23044:1 23079:1 23119:1 23129:1 23139:1 23193:1 23270:1 23304:1 23320:1 23321:1 23348:1 23365:1 23411:1 23427:1 23456:1 23457:1 23468:2 23482:1 23508:1 23521:2 23523:2 23543:1 23549:1 23603:1 23607:3 23640:3 23647:1 23653:1 23698:1 23706:1 23708:1 23712:1 23718:1 23735:1 23763:1 23773:1 23800:1 23812:1 23821:1 23833:4 23834:3 23874:1 23880:4 23914:2 23934:1 23947:10 23958:1 23979:2 24012:2 24013:1 24019:1 24020:1 24047:3 24064:2 24066:1 24079:1 24097:2 24105:3 24106:1 24118:1 24185:1 24191:1 24209:2 24217:1 24239:2 24240:1 24292:1 24332:1 24342:1 24364:1 24369:1 24376:1 24449:1 24450:1 24474:1 24479:1 24480:1 24482:1 24483:1 24491:1 24511:1 24518:1 24539:1 24553:1 24566:1 24591:1 24592:3 24598:1 24612:1 24620:1 24643:1 24651:1 24653:1 24656:1 24658:1 24680:2 24681:3 24683:1 24699:1 24700:1 24708:4 24753:1 24762:1 24774:1 24781:2 24794:1 24808:2 24820:1 24826:1 24850:1 24853:1 24869:1 24883:3 24894:2 24918:1 24919:1 24924:1 24978:1 25000:1 25047:1 25053:1 25058:1 25080:1 25114:2 25122:1 25143:1 25144:1 25157:1 25161:2 25163:1 25179:2 25217:1 25240:1 25244:1 25285:1 25300:1 25303:1 25334:1 25369:1 25373:1 25392:1 25407:2 25417:1 25427:2 25448:1 25456:1 25461:1 25481:1 25486:1 25491:1 25498:2 25502:2 25505:1 25511:3 25527:1 25529:1 25541:1 25543:1 25553:1 25554:1 25572:1 25580:1 25582:2 25586:1 25590:3 25600:1 25608:3 25623:1 25632:1 25637:2 25720:1 25721:3 25733:1 25738:1 25781:1 25782:1 25786:2 25793:1 25811:1 25815:1 25824:2 25841:1 25846:1 25852:1 25859:1 25867:1 25879:1 25907:1 25917:1 25934:1 25952:1 25994:1 26000:1 26011:1 26014:1 26018:2 26062:3 26070:1 26091:1 26102:2 26107:1 26119:1 26120:1 26138:1 26153:1 26155:1 26156:2 26203:2 26211:1 26214:1 26215:2 26216:2 26228:1 26260:1 26313:1 26327:1 26337:2 26385:3 26407:1 26424:1 26438:3 26444:1 26453:2 26459:1 26460:1 26496:1 26508:4 26552:1 26590:1 26593:1 26602:3 26608:1 26612:3 26614:1 26628:2 26642:1 26651:1 26668:6 26671:1 26679:1 26694:1 26740:1 26743:1 26744:1 26777:2 26779:4 26782:1 26794:1 26795:1 26808:1 26809:1 26815:1 26818:1 26820:1 26826:2 26827:1 26828:2 26842:1 26844:1 26854:1 26874:1 26907:1 26914:1 26949:1 26984:1 26995:2 26999:1 27004:4 27029:2 27051:1 27072:1 27087:2 27092:1 27099:1 27127:2 27149:1 27153:2 27203:1 27213:1 27243:1 27251:1 27259:1 27260:6 27287:2 27331:8 27333:2 27339:1 27343:1 27393:1 27396:4 27398:1 27401:1 27415:1 27447:1 27460:7 27478:1 27500:2 27508:1 27526:1 27527:1 27542:1 27573:1 27594:1 27599:1 27603:1 27619:3 27633:1 27651:1 27677:3 27723:1 27731:1 27760:1 27767:1 27779:1 27782:1 27787:17 27804:1 27808:1 27810:2 27813:2 27819:1 27854:2 27859:1 27860:1 27862:1 27878:1 27879:1 27920:1 27922:1 27925:1 27957:1 27973:1 27983:1 27987:2 28000:1 28011:4 28017:1 28052:1 28154:1 28160:1 28179:2 28206:1 28263:1 28276:1 28278:1 28279:1 28287:1 28297:1 28298:2 28308:1 28310:1 28313:1 28317:1 28318:1 28370:18 28398:2 28399:1 28433:1 28436:1 28460:1 28472:2 28473:1 28482:1 28489:6 28523:1 28528:1 28541:1 28560:1 28567:1 28572:1 28577:3 28582:1 28587:1 28621:1 28639:1 28645:1 28647:2 28650:2 28686:1 28786:1 28811:1 28814:1 28817:2 28831:1 28833:1 28852:1 28908:1 28913:1 28932:1 28939:1 28949:1 28974:2 28983:2 28993:1 28996:1 29004:1 29014:1 29016:1 29020:1 29087:1 29126:1 29133:1 29149:1 29170:2 29174:1 29179:1 29190:1 29215:1 29233:1 29258:1 29328:1 29330:1 29334:1 29367:1 29398:1 29417:1 29419:3 29426:2 29455:1 29464:1 29480:1 29486:2 29493:1 29516:2 29551:1 29554:1 29557:2 29564:1 29568:2 29583:1 29584:2 29587:3 29591:1 29604:1 29634:3 29688:5 29695:1 29741:1 29749:1 29752:1 29756:1 29775:1 29822:1 29827:1 29840:1 29845:1 29901:2 29939:1 29952:1 29957:1 29962:2 29995:1 30004:1 30015:1 30023:1 30035:1 30079:3 30083:1 30084:2 30092:1 30093:1 30099:3 30105:1 30119:1 30134:1 30144:2 30165:2 30192:1 30198:2 30199:2 30213:1 30248:1 30253:1 30261:4 30263:1 30284:1 30294:1 30299:1 30307:1 30320:1 30329:1 30330:1 30331:1 30350:1 30370:1 30424:1 30454:1 30478:1 30482:1 30483:1 30493:1 30535:1 30537:1 30538:2 30541:1 30552:2 30601:1 30617:2 30641:1 30679:1 30688:1 30743:1 30789:2 30790:2 30794:1 30814:1 30817:2 30823:1 30857:1 30861:1 30912:2 30920:1 30931:1 30960:1 30970:1 30972:1 30981:2 30987:1 31002:1 31005:1 31020:1 31026:1 31053:1 31055:1 31057:1 31059:1 31089:1 31093:1 31112:2 31134:1 31142:1 31148:1 31151:1 31168:1 31177:1 31178:1 31181:1 31188:1 31201:1 31210:1 31226:1 31235:1 31255:2 31264:3 31265:1 31276:1 31283:1 31296:2 31317:2 31329:1 31334:3 31377:3 31384:1 31411:1 31413:6 31425:2 31444:1 31465:1 31478:1 31550:1 31563:1 31569:1 31574:1 31578:2 31588:1 31595:1 31610:1 31612:1 31648:1 31660:2 31708:1 31725:1 31737:1 31747:1 31753:2 31768:1 31784:1 31787:1 31808:1 31834:2 31848:1 31866:2 31882:1 31885:1 31891:1 31919:1 31929:1 31930:3 31933:1 31946:2 31963:2 31964:1 31968:6 31969:1 31993:1 32010:1 32022:1 32036:1 32066:3 32074:1 32090:1 32099:1 32106:1 32112:1 32117:1 32153:1 32219:2 32285:2 32307:1 32311:1 32319:1 32326:1 32329:1 32376:1 32406:1 32459:1 32491:1 32493:1 32505:2 32515:1 32532:1 32553:2 32574:1 32596:1 32612:1 32624:1 32636:1 32683:2 32700:1 32725:2 32732:1 32745:1 32749:1 32750:5 32774:2 32787:1 32801:4 32832:2 32879:1 32890:4 32891:1 32896:2 32909:1 32917:1 32924:1 32929:2 32941:3 32950:1 32955:1 32958:1 32974:1 33027:1 33053:1 33057:1 33066:1 33069:1 33080:1 33085:1 33092:1 33094:1 33098:1 33100:1 33112:1 33118:1 33128:3 33133:2 33137:1 33141:1 33142:1 33144:1 33157:2 33183:2 33222:1 33272:1 33284:1 33296:3 33297:1 33309:2 33330:1 33346:1 33352:2 33388:1 33389:1 33404:1 33413:1 33446:1 33461:3 33467:1 33498:1 33503:1 33512:1 33530:1 33533:3 33537:2 33543:2 33552:1 33553:2 33556:2 33563:2 33579:1 33591:1 33592:1 33595:2 33609:1 33620:1 33623:1 33637:1 33663:4 33680:3 33716:1 33730:1 33734:2 33743:1 33760:1 33766:1 33769:1 33794:1 33795:1 33820:1 33824:1 33861:1 33865:1 33880:1 33910:1 33928:1 33930:1 34003:1 34040:1 34056:3 34057:2 34067:1 34071:2 34075:3 34080:1 34083:1 34085:3 34099:1 34104:1 34133:1 34139:1 34144:1 34151:1 34157:1 34160:1 34174:1 34197:1 34221:2 34246:2 34283:1 34306:1 34314:1 34321:1 34351:1 34364:1 34367:1 34371:1 34373:1 34407:1 34410:1 34413:1 34435:12 34445:1 34478:1 34497:5 34566:1 34570:1 34596:2 34615:1 34619:1 34627:1 34634:5 34643:2 34659:1 34673:1 34674:1 34682:1 34691:6 34701:1 34749:1 34757:1 34761:1 34782:1 34794:1 34804:2 34862:1 34878:2 34968:1 34996:22 35022:1 35026:3 35031:1 35041:3 35042:1 35056:1 35094:1 35098:1 35124:3 35128:7 35135:2 35141:1 35152:1 35164:1 35184:1 35201:1 35207:2 35253:1 35265:1 35281:1 35289:2 35310:1 35311:1 35326:1 35342:1 35354:1 35382:2 35395:1 35410:1 35473:1 35499:1 35503:2 35517:1 35520:1 35539:1 35589:2 35592:1 35602:2 35625:2 35636:1 35648:1 35656:1 35677:1 35681:1 35696:1 35700:1 35714:1 35721:1 35748:1 35753:1 35757:2 35785:1 35789:2 35805:4 35831:1 35837:2 35838:2 35850:18 35888:1 35901:1 35939:1 35953:1 35957:1 35965:2 35966:2 36011:1 36072:1 2 9:1 10:1 31:2 32:1 33:1 65:1 69:1 73:1 95:1 104:2 106:2 107:1 122:1 140:1 166:2 177:1 191:1 196:1 200:1 207:1 211:1 235:1 239:1 251:1 256:1 278:1 297:1 302:3 303:1 309:1 322:1 323:1 328:1 365:1 414:3 418:1 435:1 452:1 454:1 478:2 498:1 503:1 520:1 526:1 555:1 568:2 601:1 607:1 610:1 621:1 659:1 662:1 672:1 674:1 684:1 690:1 750:1 751:3 755:1 761:1 766:1 795:2 820:19 825:3 831:1 854:1 861:1 881:1 919:1 935:2 941:2 964:1 999:2 1019:2 1022:1 1024:2 1028:2 1032:1 1034:1 1082:3 1135:2 1136:6 1142:1 1150:5 1176:2 1194:2 1203:1 1206:3 1210:1 1212:1 1219:1 1226:1 1234:2 1253:1 1256:1 1260:1 1293:1 1301:1 1305:1 1308:1 1326:3 1385:2 1386:1 1403:1 1454:1 1459:2 1510:1 1537:1 1541:18 1550:1 1554:1 1555:2 1564:3 1567:1 1592:1 1595:2 1605:1 1611:1 1616:1 1617:1 1619:1 1634:1 1638:1 1651:1 1682:1 1705:1 1706:2 1740:1 1757:1 1763:1 1771:2 1773:1 1808:1 1824:1 1836:2 1849:2 1861:1 1888:1 1889:1 1891:2 1897:4 1903:1 1910:1 1911:1 1929:1 1960:2 1970:1 1991:1 1997:2 2013:1 2031:1 2036:1 2043:1 2058:1 2097:1 2098:1 2102:1 2105:1 2106:1 2123:1 2145:1 2147:1 2158:2 2164:3 2196:1 2202:1 2218:1 2249:1 2260:1 2282:1 2292:1 2307:1 2312:1 2317:2 2320:1 2328:1 2345:1 2348:1 2352:1 2376:1 2379:2 2400:2 2406:2 2420:1 2446:1 2455:1 2486:3 2508:1 2522:1 2525:1 2547:1 2566:1 2604:1 2624:1 2638:1 2652:1 2655:1 2696:5 2721:1 2743:1 2783:1 2817:1 2827:1 2848:1 2857:1 2859:1 2862:3 2866:2 2867:1 2870:1 2872:3 2877:3 2883:3 2887:3 2891:1 2895:1 2897:1 2902:2 2906:1 2909:1 2919:1 2942:1 2954:2 2955:1 2971:3 2999:2 3002:1 3004:1 3026:1 3027:1 3044:1 3045:2 3054:1 3075:1 3076:3 3086:2 3100:1 3106:1 3116:2 3137:1 3145:1 3177:1 3179:1 3186:1 3206:1 3224:2 3244:1 3255:1 3267:1 3312:1 3319:1 3322:2 3341:2 3348:1 3367:1 3380:2 3381:1 3406:1 3410:1 3413:3 3415:1 3420:1 3423:2 3429:1 3443:1 3451:1 3493:1 3497:1 3510:3 3516:1 3520:1 3539:2 3603:1 3612:1 3645:10 3648:19 3651:1 3652:2 3653:1 3663:2 3666:1 3678:1 3681:1 3691:3 3692:1 3695:1 3698:1 3706:5 3736:2 3741:1 3756:1 3784:2 3793:1 3794:1 3846:2 3897:1 4045:1 4070:1 4097:1 4101:1 4119:1 4146:1 4157:1 4161:2 4171:1 4179:1 4211:1 4224:1 4226:1 4251:1 4328:1 4334:1 4355:1 4359:1 4381:1 4383:1 4395:1 4396:1 4412:1 4444:1 4448:1 4479:1 4488:1 4492:1 4517:1 4539:1 4555:1 4564:1 4580:1 4601:1 4626:1 4643:2 4645:1 4646:1 4651:1 4654:1 4722:2 4724:1 4767:1 4773:1 4780:1 4795:1 4815:1 4820:1 4843:1 4855:1 4857:1 4859:1 4867:3 4886:1 4887:1 4914:1 4920:18 4922:2 4927:1 4947:1 4985:1 4992:1 5008:1 5015:2 5019:2 5020:2 5032:2 5047:1 5054:1 5058:4 5059:1 5076:2 5119:1 5153:1 5163:1 5170:2 5178:1 5194:1 5233:1 5235:1 5237:1 5240:1 5241:1 5247:1 5254:1 5272:1 5282:1 5298:1 5299:2 5300:1 5302:2 5307:1 5308:2 5324:1 5348:1 5371:2 5402:2 5408:1 5428:1 5437:18 5453:1 5456:1 5459:4 5471:1 5473:1 5483:1 5486:1 5492:1 5555:1 5566:6 5588:1 5638:3 5655:2 5663:1 5672:1 5676:1 5687:1 5712:1 5731:7 5738:1 5760:1 5832:1 5843:1 5869:1 5879:3 5885:1 5913:1 5924:1 5960:1 5967:1 5969:1 5973:2 5974:1 5980:1 5983:1 6004:1 6005:2 6043:1 6049:1 6075:1 6078:1 6096:8 6097:2 6112:1 6115:1 6140:1 6149:2 6187:1 6191:1 6253:3 6254:1 6277:3 6278:3 6279:2 6285:3 6292:1 6293:3 6303:1 6309:2 6312:3 6315:2 6316:1 6326:1 6358:1 6407:1 6411:1 6528:1 6580:1 6610:1 6622:1 6623:2 6683:1 6684:1 6698:1 6738:1 6759:1 6787:1 6799:1 6801:2 6803:1 6807:1 6832:1 6835:1 6861:1 6867:2 6870:1 6942:1 6970:1 6972:1 6983:1 7008:1 7010:1 7036:1 7061:1 7062:1 7065:1 7070:1 7076:1 7083:1 7119:1 7130:1 7138:1 7140:1 7164:1 7213:1 7225:2 7243:1 7250:1 7252:1 7264:1 7289:5 7295:1 7366:1 7377:1 7422:1 7423:1 7432:1 7434:1 7451:1 7455:1 7494:1 7525:1 7532:1 7537:1 7561:1 7580:1 7589:1 7599:1 7604:2 7607:1 7656:1 7665:1 7707:1 7708:1 7709:1 7721:1 7722:1 7725:1 7727:1 7728:1 7729:2 7734:1 7739:1 7741:2 7764:1 7782:1 7805:1 7822:1 7825:1 7840:1 7847:1 7852:3 7857:2 7860:1 7871:1 7905:1 7937:2 7945:1 7965:1 7966:1 7974:1 7989:4 7995:1 8004:4 8007:1 8008:1 8015:1 8016:1 8019:2 8020:6 8030:1 8054:1 8085:2 8125:1 8136:1 8176:1 8186:1 8200:2 8203:3 8260:1 8284:1 8293:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:2 8377:1 8393:1 8421:1 8427:1 8446:1 8449:1 8489:1 8493:1 8496:1 8501:3 8524:1 8564:1 8566:1 8570:1 8602:1 8617:1 8648:1 8695:2 8714:1 8731:1 8751:1 8772:1 8842:1 8845:1 8849:1 8854:1 8866:1 8883:4 8905:1 8943:1 8946:1 8955:1 8966:2 8978:2 9007:1 9012:1 9052:2 9090:1 9113:1 9122:1 9123:1 9138:1 9146:1 9153:1 9205:1 9216:1 9217:1 9231:1 9307:1 9325:1 9333:1 9338:4 9372:4 9374:1 9381:1 9394:1 9426:1 9428:2 9437:1 9446:1 9484:1 9495:1 9499:1 9526:3 9529:1 9577:1 9586:1 9588:1 9612:1 9619:1 9628:7 9629:6 9637:1 9655:1 9657:5 9688:3 9694:1 9702:22 9707:1 9708:1 9711:2 9719:1 9723:1 9733:10 9738:3 9744:1 9754:1 9758:1 9780:1 9781:1 9793:1 9803:1 9849:3 9866:1 9870:1 9885:1 9895:1 9924:1 9926:2 9942:2 9957:1 9963:1 9967:2 9968:1 9978:1 9999:3 10011:1 10023:1 10058:1 10063:2 10103:1 10161:1 10167:1 10175:1 10209:1 10213:1 10223:1 10235:2 10261:1 10286:1 10298:1 10313:1 10314:1 10321:19 10333:1 10338:1 10342:1 10356:1 10359:8 10360:3 10378:1 10401:1 10406:1 10412:2 10431:1 10444:1 10452:1 10470:23 10598:1 10599:1 10612:1 10669:1 10683:1 10686:2 10695:1 10697:1 10704:1 10707:1 10711:1 10717:3 10718:1 10736:1 10744:1 10772:2 10778:1 10789:2 10791:1 10792:1 10796:1 10798:1 10807:1 10808:2 10812:1 10813:1 10826:1 10864:1 10878:1 10884:1 10895:1 10911:2 10979:1 11002:1 11075:2 11078:1 11109:2 11163:1 11165:1 11169:1 11183:1 11207:1 11212:3 11226:1 11230:1 11231:1 11233:1 11238:1 11247:2 11258:1 11268:1 11270:1 11272:1 11325:1 11340:1 11378:1 11382:3 11391:1 11402:1 11422:1 11489:2 11522:1 11557:3 11561:2 11564:1 11569:1 11571:3 11572:1 11573:1 11575:1 11583:1 11585:1 11587:1 11598:1 11617:1 11628:1 11636:1 11640:1 11641:1 11642:2 11645:1 11654:1 11668:1 11678:2 11690:4 11697:2 11707:2 11720:1 11744:1 11745:1 11755:1 11774:1 11776:1 11791:1 11793:1 11795:2 11804:1 11815:1 11840:1 11851:1 11861:1 11864:1 11865:1 11872:1 11876:1 11882:1 11885:1 11899:1 11903:1 11918:1 11919:1 11930:1 11931:2 11932:4 11936:1 11961:2 11966:1 11969:1 11976:1 11978:1 11982:3 11988:1 11992:1 12004:1 12014:1 12033:1 12052:1 12056:1 12057:1 12076:1 12081:1 12082:1 12083:1 12112:1 12113:1 12120:1 12146:1 12147:1 12186:1 12191:1 12214:1 12221:5 12230:1 12231:1 12237:3 12239:4 12255:1 12301:1 12359:1 12391:18 12401:1 12407:1 12435:1 12446:1 12451:1 12471:1 12473:1 12479:1 12490:1 12493:1 12521:1 12538:1 12540:2 12547:2 12552:1 12561:2 12570:2 12580:1 12592:1 12608:1 12618:2 12630:1 12641:1 12643:2 12669:1 12673:3 12692:2 12694:1 12734:3 12757:1 12760:1 12777:1 12794:1 12821:1 12824:2 12829:1 12848:1 12867:4 12881:1 12898:1 12936:1 12958:1 12977:1 12988:1 13013:2 13028:1 13040:1 13058:1 13079:1 13089:1 13112:1 13113:3 13128:1 13154:1 13175:1 13179:1 13187:1 13213:1 13234:1 13258:2 13267:1 13282:1 13283:3 13303:1 13325:2 13357:1 13384:1 13385:2 13411:1 13412:4 13415:1 13418:1 13420:2 13429:1 13443:1 13454:1 13464:1 13468:1 13471:1 13483:1 13493:4 13498:1 13505:1 13516:1 13550:1 13568:1 13588:1 13601:1 13632:1 13648:1 13669:2 13686:2 13690:3 13694:1 13704:1 13721:2 13737:1 13749:1 13761:1 13765:1 13767:1 13793:1 13798:8 13803:1 13808:1 13823:1 13824:3 13826:3 13828:1 13837:1 13845:1 13849:1 13859:1 13880:1 13891:4 13895:1 13900:1 13901:1 13910:1 13919:1 13921:2 13931:1 13942:1 13972:2 13998:1 14008:1 14009:1 14015:1 14032:3 14042:1 14070:2 14093:1 14095:1 14105:1 14115:1 14116:2 14122:1 14128:1 14134:1 14146:3 14149:1 14152:1 14162:1 14186:1 14189:2 14218:1 14235:2 14263:1 14286:1 14296:1 14302:1 14309:1 14322:5 14337:2 14340:1 14376:1 14380:1 14406:1 14416:1 14430:1 14448:1 14488:1 14491:2 14515:1 14519:1 14523:1 14533:1 14550:1 14554:1 14559:1 14564:1 14567:3 14568:1 14571:2 14580:3 14611:1 14614:1 14621:2 14628:1 14636:1 14638:2 14642:1 14654:1 14667:1 14675:1 14686:1 14716:1 14727:1 14737:1 14742:3 14744:1 14787:1 14791:2 14840:1 14844:1 14854:1 14869:1 14941:1 14960:1 15012:1 15037:3 15046:1 15060:3 15083:1 15086:1 15095:1 15150:1 15151:1 15152:1 15160:1 15185:1 15197:1 15222:1 15250:1 15269:1 15292:1 15312:2 15315:3 15326:1 15383:1 15385:2 15400:1 15414:1 15487:1 15502:3 15525:1 15526:1 15574:1 15577:1 15584:1 15587:1 15595:1 15675:1 15707:1 15747:1 15776:2 15778:19 15786:1 15794:1 15797:1 15800:4 15813:1 15844:4 15855:1 15864:2 15868:1 15885:1 15900:1 15912:1 15942:1 15943:1 15981:1 16006:2 16013:1 16083:1 16099:1 16114:1 16134:1 16142:2 16147:1 16149:1 16196:1 16201:1 16241:1 16269:1 16285:1 16293:1 16299:1 16303:1 16304:1 16320:1 16327:7 16332:1 16357:1 16365:1 16372:1 16375:1 16394:1 16456:1 16490:1 16499:1 16502:2 16505:2 16510:2 16516:1 16528:1 16535:1 16594:1 16609:6 16613:1 16643:1 16720:1 16729:1 16731:1 16732:1 16742:1 16775:1 16792:3 16797:3 16803:1 16831:1 16837:1 16854:1 16869:1 16874:2 16889:1 16897:1 16898:1 16914:1 16918:1 16929:1 16964:1 16968:1 16970:1 16973:1 16977:2 16978:1 16979:5 16980:1 16981:1 17003:1 17008:1 17009:1 17013:3 17033:2 17064:1 17075:1 17076:1 17082:1 17114:1 17120:1 17125:1 17152:1 17161:1 17172:8 17181:1 17193:1 17204:1 17214:1 17217:1 17230:1 17243:1 17273:1 17276:1 17278:2 17286:3 17303:1 17315:3 17319:1 17320:1 17333:5 17336:3 17417:2 17426:1 17438:1 17449:4 17516:1 17545:1 17547:2 17564:1 17601:1 17623:1 17629:1 17675:4 17679:1 17762:1 17792:1 17794:1 17806:2 17814:2 17817:3 17835:1 17836:1 17849:1 17903:1 17918:1 17925:1 17941:1 17942:1 17943:1 17957:2 17972:1 17981:1 17984:1 17992:1 17997:1 17999:1 18000:1 18005:1 18016:1 18032:1 18037:1 18039:1 18048:1 18080:1 18092:19 18101:2 18105:1 18106:1 18110:1 18120:1 18128:1 18137:1 18198:1 18200:1 18203:3 18214:1 18215:1 18221:2 18244:1 18249:1 18270:3 18276:1 18290:1 18297:1 18298:1 18320:1 18325:1 18339:1 18342:1 18390:1 18442:1 18463:1 18470:2 18474:1 18485:1 18506:1 18535:1 18559:1 18560:1 18561:2 18563:1 18582:1 18601:1 18603:1 18608:6 18645:3 18673:1 18696:1 18708:2 18712:1 18715:1 18732:1 18747:1 18752:1 18767:2 18779:1 18781:1 18793:1 18794:1 18823:1 18867:1 18876:1 18898:2 18954:1 18959:1 18993:1 18997:1 19019:1 19050:1 19064:2 19067:1 19083:1 19087:1 19097:1 19175:1 19191:1 19192:2 19193:1 19225:1 19263:4 19269:2 19287:1 19303:1 19310:1 19336:1 19361:1 19397:1 19416:1 19437:1 19458:3 19471:1 19475:1 19490:3 19496:2 19500:1 19513:2 19518:1 19525:1 19538:3 19602:1 19605:1 19620:1 19641:2 19645:4 19658:1 19679:1 19689:1 19691:2 19772:1 19787:1 19796:1 19806:1 19810:7 19814:2 19820:1 19851:2 19854:2 19858:1 19865:1 19894:2 19905:1 19907:1 19908:2 19932:8 19947:1 19961:1 19976:2 20034:1 20046:1 20065:1 20074:1 20078:1 20091:1 20109:4 20115:3 20117:1 20125:1 20126:1 20127:1 20130:1 20153:1 20168:1 20201:1 20221:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20295:1 20296:1 20324:1 20325:1 20355:1 20383:1 20390:1 20431:1 20444:1 20446:1 20455:1 20537:1 20556:1 20566:1 20568:1 20572:1 20588:2 20604:1 20606:1 20607:1 20608:1 20643:1 20646:1 20649:1 20654:1 20727:1 20746:1 20751:3 20754:1 20781:1 20783:1 20785:2 20796:1 20799:2 20816:1 20865:1 20885:1 20900:1 20917:1 20941:26 20948:1 20949:1 20974:1 20978:1 20997:1 21003:3 21064:1 21071:1 21083:1 21097:1 21124:2 21130:2 21145:2 21149:1 21174:1 21204:1 21209:1 21214:1 21215:1 21261:1 21263:1 21292:1 21299:1 21316:1 21318:2 21371:1 21376:1 21423:1 21445:1 21503:1 21508:1 21512:1 21513:1 21522:1 21524:1 21566:1 21593:1 21597:1 21603:1 21608:2 21612:1 21634:1 21686:2 21704:2 21713:1 21724:1 21754:1 21788:1 21823:4 21829:2 21831:1 21843:1 21864:1 21872:2 21875:1 21917:2 21939:1 21943:1 21975:3 21987:2 22008:1 22032:1 22037:1 22076:1 22079:4 22083:1 22084:1 22123:2 22143:1 22169:1 22173:1 22177:1 22181:1 22186:2 22190:1 22298:1 22300:3 22305:1 22315:1 22347:1 22386:1 22388:1 22424:1 22429:3 22493:2 22497:1 22516:1 22530:1 22547:1 22584:1 22628:5 22643:1 22650:1 22666:1 22720:1 22727:2 22754:1 22783:1 22800:1 22806:1 22809:1 22824:1 22870:1 22883:1217 22893:1 22909:1 22923:1 22944:1 22969:1 22984:1 23031:3 23039:1 23043:2 23044:1 23079:1 23119:1 23129:1 23139:1 23193:1 23270:1 23304:1 23320:1 23321:1 23348:1 23365:1 23411:1 23427:1 23456:1 23457:1 23468:2 23482:1 23508:1 23521:2 23523:2 23543:1 23549:1 23603:1 23607:3 23640:3 23647:1 23653:1 23698:1 23706:1 23708:1 23712:1 23718:1 23735:1 23763:1 23773:1 23800:1 23812:1 23821:1 23833:4 23834:3 23874:1 23880:4 23914:2 23934:1 23947:11 23958:1 23979:2 24012:2 24013:1 24019:1 24020:1 24047:3 24064:2 24066:1 24079:1 24097:2 24105:3 24106:1 24118:1 24185:1 24191:1 24209:2 24217:1 24239:2 24240:1 24255:1 24292:1 24332:1 24342:1 24364:1 24369:1 24376:1 24449:1 24450:1 24474:1 24479:1 24480:1 24482:1 24483:1 24491:1 24511:1 24518:1 24539:1 24553:1 24566:1 24591:1 24592:4 24598:1 24612:1 24620:1 24643:1 24651:1 24653:1 24656:2 24658:1 24680:2 24681:3 24683:1 24699:1 24700:1 24708:4 24753:1 24762:1 24774:1 24781:2 24794:1 24808:2 24820:1 24826:1 24850:1 24853:1 24869:1 24883:3 24894:2 24918:1 24919:1 24924:1 24978:1 25000:1 25047:1 25053:1 25058:1 25080:1 25114:3 25122:1 25143:1 25144:1 25157:1 25161:2 25163:1 25179:2 25217:1 25240:1 25244:1 25285:1 25300:1 25303:1 25334:1 25369:1 25373:1 25392:1 25407:2 25417:1 25427:2 25448:1 25456:1 25461:1 25481:1 25486:1 25491:1 25498:2 25502:2 25505:1 25511:3 25527:1 25529:1 25541:1 25543:1 25553:1 25554:1 25572:1 25580:1 25582:2 25586:1 25590:3 25600:1 25608:3 25623:1 25632:1 25637:2 25720:1 25721:3 25733:1 25738:1 25781:1 25782:1 25786:2 25793:2 25811:1 25815:1 25824:2 25841:1 25846:1 25852:1 25859:1 25867:1 25879:1 25907:1 25917:1 25934:1 25952:1 25994:1 26000:1 26011:1 26014:1 26018:2 26062:3 26070:1 26091:1 26102:2 26107:1 26119:1 26120:1 26138:1 26153:1 26155:1 26156:2 26203:2 26211:1 26214:1 26215:2 26216:2 26228:1 26260:1 26313:1 26327:1 26337:2 26385:3 26407:1 26424:1 26438:3 26444:1 26453:2 26459:1 26460:1 26496:1 26508:4 26552:1 26590:1 26593:1 26602:3 26608:1 26612:3 26614:1 26628:2 26642:1 26651:1 26668:6 26671:1 26679:1 26694:1 26740:1 26743:1 26744:1 26777:2 26779:4 26782:2 26794:1 26795:1 26808:1 26809:1 26815:1 26818:1 26820:1 26826:2 26827:1 26828:3 26842:1 26844:1 26854:1 26874:1 26907:1 26914:1 26949:2 26984:1 26995:2 26999:1 27004:4 27029:2 27051:1 27072:1 27087:2 27092:1 27099:1 27127:2 27149:1 27153:2 27203:1 27213:1 27243:1 27251:1 27259:1 27260:7 27287:2 27331:8 27333:2 27339:1 27343:1 27393:1 27396:4 27398:2 27401:1 27415:1 27447:1 27460:7 27478:1 27500:2 27508:1 27522:1 27526:1 27527:1 27542:1 27573:1 27594:1 27599:1 27601:1 27603:1 27619:3 27633:2 27651:1 27677:3 27723:1 27731:1 27760:1 27767:1 27779:1 27782:1 27787:18 27804:1 27808:1 27810:2 27813:2 27819:1 27854:2 27859:1 27860:1 27862:1 27878:1 27879:1 27920:1 27922:1 27925:1 27957:1 27963:1 27973:1 27983:1 27987:2 28000:1 28011:4 28017:1 28052:1 28154:1 28160:1 28179:2 28206:1 28263:1 28276:1 28278:1 28279:1 28287:1 28297:1 28298:2 28308:1 28310:1 28313:1 28317:1 28318:1 28370:19 28398:2 28399:1 28433:1 28436:1 28460:1 28464:1 28472:2 28473:1 28482:1 28489:6 28523:1 28528:1 28541:1 28560:1 28567:1 28572:1 28577:3 28582:2 28587:1 28621:1 28639:1 28645:1 28647:2 28650:2 28686:1 28786:1 28811:1 28814:1 28817:2 28831:1 28833:1 28852:1 28908:1 28913:1 28932:1 28939:1 28949:1 28974:2 28983:2 28993:1 28996:1 29004:1 29014:1 29016:1 29020:1 29087:1 29126:1 29133:2 29149:1 29170:2 29174:1 29179:1 29190:1 29215:1 29233:1 29258:1 29328:1 29330:1 29334:1 29367:1 29398:1 29417:1 29419:3 29426:2 29455:2 29464:1 29480:1 29486:2 29493:1 29516:2 29551:1 29554:1 29557:2 29564:1 29568:2 29583:1 29584:2 29587:3 29591:1 29604:1 29634:3 29688:5 29695:1 29741:1 29749:1 29752:1 29756:1 29775:1 29822:1 29827:1 29840:1 29845:1 29887:1 29901:2 29939:1 29952:1 29957:1 29962:2 29995:1 30004:1 30015:1 30023:1 30035:1 30079:3 30083:1 30084:2 30092:1 30093:1 30099:3 30105:1 30119:1 30134:1 30144:2 30165:2 30192:1 30198:2 30199:2 30213:1 30248:1 30253:1 30261:4 30263:1 30284:1 30294:1 30299:1 30307:1 30320:1 30329:1 30330:1 30331:1 30350:1 30370:1 30424:1 30454:1 30478:1 30482:1 30483:1 30493:1 30535:1 30537:1 30538:2 30541:1 30552:2 30601:1 30617:2 30641:1 30679:1 30688:1 30743:1 30789:2 30790:3 30794:1 30806:1 30814:1 30817:2 30823:1 30857:1 30861:1 30912:2 30920:1 30931:1 30960:1 30970:1 30972:1 30981:2 30987:1 31002:1 31005:1 31020:1 31026:1 31051:1 31053:1 31055:2 31057:1 31059:1 31089:1 31093:1 31112:2 31134:1 31142:1 31148:1 31151:1 31168:1 31177:1 31178:1 31181:1 31188:1 31201:1 31210:1 31226:1 31235:1 31255:2 31264:3 31265:1 31276:1 31283:1 31296:2 31317:2 31329:1 31334:3 31377:3 31384:1 31411:1 31413:7 31425:2 31444:1 31465:1 31478:1 31486:1 31550:1 31563:1 31569:1 31574:1 31578:2 31588:1 31595:1 31610:1 31612:1 31648:1 31660:2 31663:1 31708:1 31725:1 31737:1 31747:1 31753:2 31768:1 31784:1 31787:1 31808:1 31834:2 31848:1 31866:2 31874:1 31882:1 31885:1 31891:1 31919:1 31929:1 31930:3 31933:1 31946:2 31963:2 31964:1 31968:7 31969:1 31993:1 32010:1 32022:1 32036:1 32066:3 32074:1 32090:1 32099:1 32106:1 32112:1 32117:1 32153:1 32208:1 32219:2 32285:2 32307:1 32311:1 32319:1 32326:1 32329:1 32376:1 32406:1 32459:1 32491:1 32492:1 32493:1 32505:2 32515:1 32532:1 32553:2 32574:1 32596:1 32612:1 32624:1 32636:1 32683:2 32691:1 32700:1 32725:2 32726:1 32732:1 32745:1 32749:2 32750:5 32774:2 32787:1 32801:4 32832:3 32879:1 32890:4 32891:1 32896:2 32909:1 32917:1 32924:1 32929:2 32941:3 32950:1 32955:1 32958:1 32965:1 32974:1 33027:1 33053:1 33057:1 33066:1 33069:1 33080:1 33085:1 33092:1 33094:2 33098:1 33100:1 33112:1 33118:1 33128:3 33133:2 33137:1 33141:1 33142:1 33144:1 33157:2 33183:2 33222:1 33272:1 33284:1 33296:3 33297:1 33309:2 33330:1 33346:1 33352:2 33388:1 33389:1 33404:1 33413:1 33446:1 33461:3 33467:1 33498:1 33503:1 33512:1 33530:1 33533:3 33537:2 33543:2 33552:1 33553:2 33556:2 33563:2 33579:1 33591:1 33592:1 33595:2 33609:1 33620:1 33623:1 33637:1 33663:4 33680:3 33716:1 33730:1 33734:2 33743:1 33760:1 33766:1 33769:1 33794:1 33795:1 33820:1 33824:1 33861:1 33865:1 33880:1 33910:1 33928:1 33930:1 34003:1 34040:1 34056:3 34057:2 34067:2 34071:2 34075:3 34080:1 34083:1 34085:3 34099:1 34104:1 34133:1 34139:1 34144:1 34151:1 34157:1 34160:1 34174:1 34197:1 34221:2 34246:2 34283:1 34306:1 34314:1 34321:1 34351:1 34364:1 34367:1 34371:1 34373:1 34407:1 34410:1 34413:1 34435:12 34445:1 34478:1 34497:5 34566:1 34570:1 34596:2 34615:1 34619:1 34627:1 34634:5 34643:2 34659:1 34662:1 34673:1 34674:1 34682:1 34691:7 34701:1 34749:1 34757:1 34761:1 34782:1 34794:1 34804:2 34862:1 34878:2 34968:1 34996:23 35022:1 35026:3 35031:1 35041:3 35042:1 35056:1 35094:1 35098:1 35124:3 35128:7 35135:2 35141:1 35149:1 35152:1 35164:1 35184:1 35201:1 35207:2 35253:1 35265:1 35281:1 35289:2 35310:1 35311:1 35326:1 35342:1 35354:1 35382:2 35395:1 35410:1 35456:1 35473:1 35499:1 35503:2 35517:1 35520:1 35539:1 35589:2 35592:1 35602:2 35625:2 35636:1 35648:1 35656:1 35677:1 35681:1 35696:1 35700:1 35714:1 35721:1 35748:1 35753:1 35757:2 35785:1 35789:2 35805:4 35831:2 35836:1 35837:2 35838:2 35850:19 35888:1 35901:1 35939:1 35953:1 35957:1 35959:1 35965:2 35966:2 36011:1 36028:1 36072:1 2 9:1 10:1 31:2 32:1 33:1 65:1 69:1 73:1 95:1 104:2 106:2 107:1 122:1 140:1 166:2 177:1 191:1 196:1 200:1 207:1 211:1 235:1 239:1 251:1 256:1 278:1 297:2 302:3 303:1 309:1 322:1 323:1 328:1 365:1 414:3 418:1 435:1 452:1 454:1 478:2 498:1 503:1 520:1 526:1 555:1 568:2 601:2 607:1 610:1 621:1 659:1 662:1 672:1 674:1 684:1 690:1 750:1 751:3 755:1 761:1 766:1 795:2 820:20 825:3 831:1 854:1 861:1 881:1 886:1 919:1 935:2 941:2 964:1 999:2 1019:2 1022:1 1024:2 1028:2 1032:1 1034:1 1082:3 1135:3 1136:6 1142:1 1150:5 1176:2 1194:2 1203:3 1206:4 1210:1 1212:1 1219:1 1226:1 1233:1 1234:2 1253:2 1256:1 1260:1 1293:1 1301:1 1305:1 1308:1 1326:3 1385:2 1386:1 1403:1 1454:1 1459:2 1510:1 1537:1 1541:19 1550:1 1554:1 1555:2 1556:1 1564:3 1567:1 1592:1 1595:2 1605:1 1610:1 1611:1 1616:1 1617:1 1619:1 1634:1 1638:1 1651:1 1682:1 1705:1 1706:2 1740:1 1757:1 1763:1 1771:2 1773:1 1808:1 1824:1 1836:2 1849:2 1861:1 1888:1 1889:1 1891:2 1897:5 1903:1 1910:1 1911:1 1929:1 1960:2 1970:1 1990:1 1991:1 1997:2 2013:1 2031:1 2036:1 2043:1 2058:1 2097:1 2098:1 2102:1 2105:1 2106:1 2123:1 2139:1 2145:1 2147:1 2158:2 2164:3 2175:1 2196:1 2198:1 2199:1 2202:1 2218:1 2249:1 2260:1 2279:1 2282:1 2292:1 2307:1 2312:1 2317:2 2320:2 2328:1 2345:1 2348:1 2352:1 2368:1 2376:1 2379:2 2390:1 2400:2 2406:2 2420:1 2436:1 2446:1 2455:1 2467:1 2486:3 2508:1 2522:1 2525:1 2547:1 2566:1 2599:1 2604:1 2624:1 2638:1 2642:1 2652:1 2655:1 2696:5 2721:1 2743:1 2783:1 2817:1 2827:1 2848:1 2857:1 2859:1 2862:3 2866:2 2867:1 2870:1 2872:3 2877:3 2881:1 2883:3 2887:3 2891:1 2895:1 2897:1 2902:2 2906:1 2909:1 2919:1 2942:1 2954:2 2955:1 2971:3 2999:2 3002:1 3004:1 3026:1 3027:1 3044:1 3045:2 3054:1 3075:1 3076:4 3086:2 3100:1 3106:1 3116:2 3137:1 3145:1 3165:1 3177:1 3179:1 3186:1 3206:1 3224:2 3244:1 3255:1 3267:1 3312:1 3319:1 3322:2 3341:2 3348:1 3367:1 3380:2 3381:1 3406:1 3410:1 3413:3 3415:1 3420:1 3423:2 3429:1 3443:1 3451:1 3493:1 3497:1 3507:1 3510:3 3516:1 3520:1 3539:2 3547:1 3584:1 3603:1 3612:1 3645:10 3648:20 3651:1 3652:2 3653:1 3663:2 3666:1 3678:1 3681:1 3691:3 3692:1 3695:1 3698:1 3706:5 3736:2 3741:1 3756:1 3784:2 3792:1 3793:1 3794:1 3846:2 3897:2 4045:1 4070:1 4097:1 4101:1 4119:1 4146:1 4157:1 4161:2 4171:1 4179:1 4211:1 4224:1 4226:1 4251:1 4328:1 4334:1 4355:1 4359:1 4381:1 4383:1 4395:1 4396:1 4411:1 4412:1 4444:1 4448:1 4474:1 4479:1 4488:1 4492:1 4517:1 4539:1 4555:1 4564:1 4580:1 4601:1 4626:1 4643:2 4645:1 4646:1 4651:1 4654:1 4722:2 4724:1 4767:1 4773:1 4780:1 4795:1 4815:1 4820:1 4843:1 4855:1 4857:1 4859:1 4867:3 4886:1 4887:1 4914:1 4920:19 4922:2 4927:1 4947:1 4985:1 4992:1 5008:1 5015:2 5019:3 5020:2 5032:2 5047:1 5054:1 5058:5 5059:2 5076:2 5119:1 5153:1 5163:1 5170:2 5178:1 5194:1 5233:1 5235:1 5237:1 5240:1 5241:1 5247:1 5254:1 5272:1 5282:1 5298:1 5299:2 5300:1 5302:2 5307:1 5308:3 5324:1 5348:1 5371:2 5402:2 5408:1 5428:1 5437:19 5453:1 5456:1 5459:4 5471:1 5473:1 5483:1 5486:1 5492:1 5555:1 5566:6 5588:1 5638:3 5655:2 5663:1 5672:1 5676:2 5679:1 5687:1 5712:1 5731:7 5738:1 5760:1 5832:2 5843:1 5869:1 5879:3 5885:1 5913:1 5924:1 5960:1 5967:1 5969:2 5973:2 5974:1 5980:1 5983:1 6004:1 6005:2 6017:1 6043:1 6049:1 6075:1 6078:1 6096:9 6097:2 6112:1 6115:1 6140:2 6149:2 6187:1 6191:1 6253:3 6254:1 6277:3 6278:4 6279:2 6285:3 6292:1 6293:3 6303:1 6309:2 6312:4 6315:2 6316:1 6326:1 6358:1 6407:1 6411:1 6528:1 6580:1 6610:1 6622:1 6623:2 6628:1 6683:1 6684:1 6698:1 6738:2 6759:1 6787:1 6799:1 6801:2 6803:1 6807:1 6832:1 6835:1 6859:1 6861:1 6867:2 6870:1 6942:1 6970:1 6972:1 6983:1 7008:1 7010:1 7036:1 7061:1 7062:1 7065:1 7070:1 7076:1 7083:1 7119:1 7130:1 7138:1 7140:1 7164:1 7213:1 7225:2 7243:1 7250:1 7252:1 7264:1 7289:5 7295:2 7366:1 7377:1 7422:1 7423:1 7432:1 7434:1 7451:1 7455:1 7494:1 7525:1 7532:1 7537:1 7561:1 7580:2 7583:1 7589:1 7599:1 7604:2 7607:1 7630:1 7656:1 7665:1 7707:1 7708:1 7709:1 7721:1 7722:1 7725:1 7727:1 7728:1 7729:3 7734:1 7739:1 7741:2 7764:1 7782:1 7805:1 7822:1 7825:1 7840:1 7847:1 7852:3 7857:2 7860:1 7871:1 7905:1 7937:2 7945:1 7965:1 7966:1 7974:1 7989:5 7995:1 8004:4 8007:1 8008:1 8015:1 8016:1 8019:2 8020:6 8030:1 8054:1 8085:2 8125:1 8136:1 8176:1 8186:1 8200:2 8203:3 8260:1 8284:1 8293:1 8297:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:2 8349:1 8377:1 8393:1 8421:1 8427:1 8446:1 8449:1 8489:1 8493:1 8496:1 8501:3 8524:1 8564:1 8566:1 8570:1 8577:1 8602:1 8617:1 8648:1 8695:2 8714:1 8731:1 8751:1 8772:1 8842:1 8845:1 8849:1 8854:1 8866:1 8883:4 8905:1 8943:1 8946:1 8955:1 8966:2 8978:2 9007:1 9012:1 9052:2 9090:1 9113:1 9122:1 9123:1 9138:1 9146:1 9153:1 9205:1 9216:1 9217:1 9231:1 9307:1 9325:1 9333:1 9337:1 9338:5 9372:4 9374:1 9381:1 9394:1 9426:1 9428:2 9433:1 9437:1 9446:1 9484:1 9495:1 9499:1 9526:3 9529:1 9577:1 9586:1 9588:1 9612:1 9619:1 9628:7 9629:8 9637:1 9655:1 9657:5 9688:3 9694:1 9702:23 9707:1 9708:1 9711:2 9719:1 9720:1 9723:1 9733:10 9738:3 9744:1 9754:1 9758:1 9780:1 9781:1 9793:1 9803:1 9849:3 9866:1 9870:1 9885:1 9895:1 9924:1 9926:2 9942:2 9957:1 9963:1 9967:2 9968:1 9975:1 9978:1 9999:3 10011:1 10023:1 10058:1 10063:2 10103:1 10161:1 10167:1 10175:1 10209:1 10213:1 10223:1 10235:2 10261:1 10286:1 10298:1 10313:1 10314:1 10321:20 10333:1 10338:1 10342:1 10356:1 10359:8 10360:3 10376:1 10378:1 10401:1 10406:1 10412:2 10431:1 10444:1 10452:1 10470:24 10488:1 10598:1 10599:1 10612:1 10669:1 10683:1 10686:2 10695:1 10697:1 10704:1 10707:1 10711:1 10717:3 10718:1 10736:1 10744:1 10772:2 10778:1 10789:2 10791:1 10792:1 10796:1 10798:1 10807:1 10808:2 10812:1 10813:1 10826:1 10864:1 10878:1 10884:1 10895:1 10911:2 10979:1 11002:1 11075:2 11078:1 11109:2 11163:1 11165:1 11169:1 11183:1 11207:1 11212:3 11226:1 11230:1 11231:1 11233:1 11238:1 11247:3 11258:1 11268:1 11270:1 11272:1 11325:1 11340:1 11378:1 11382:3 11391:1 11402:1 11404:1 11422:1 11489:2 11522:1 11557:3 11561:2 11564:1 11569:1 11571:3 11572:1 11573:1 11575:1 11583:1 11585:1 11587:1 11598:1 11617:1 11628:1 11636:1 11640:1 11641:1 11642:2 11645:1 11654:1 11668:1 11678:2 11690:4 11697:2 11707:2 11718:1 11720:1 11744:1 11745:1 11755:1 11774:1 11776:1 11791:1 11793:1 11795:2 11804:1 11815:1 11840:1 11851:1 11861:1 11864:1 11865:1 11872:2 11876:1 11882:1 11885:1 11899:1 11903:1 11918:1 11919:1 11930:1 11931:2 11932:4 11936:1 11961:2 11966:1 11969:1 11976:1 11978:1 11982:3 11988:1 11992:1 12004:1 12014:1 12033:1 12052:1 12056:1 12057:1 12076:1 12081:1 12082:1 12083:1 12112:1 12113:1 12120:1 12146:1 12147:1 12186:1 12191:1 12214:1 12221:5 12230:1 12231:1 12237:3 12239:4 12255:1 12301:1 12359:1 12361:1 12391:19 12401:1 12407:1 12420:1 12435:1 12446:1 12451:1 12471:1 12473:1 12479:1 12490:2 12493:1 12521:1 12538:1 12540:2 12547:2 12552:1 12561:2 12570:2 12580:1 12592:1 12608:1 12618:2 12630:1 12641:1 12643:2 12669:1 12673:4 12692:2 12694:1 12734:3 12757:1 12760:1 12774:1 12777:1 12794:1 12821:1 12824:2 12829:1 12848:1 12867:5 12881:1 12898:1 12936:1 12958:1 12977:1 12988:1 13013:3 13028:1 13040:1 13051:1 13052:1 13058:1 13079:1 13089:1 13096:1 13112:1 13113:3 13128:1 13154:1 13175:1 13179:1 13187:1 13213:1 13234:1 13258:2 13267:1 13282:1 13283:3 13303:1 13325:2 13357:2 13384:1 13385:2 13411:1 13412:4 13415:1 13418:1 13420:2 13429:1 13443:1 13454:1 13464:1 13468:1 13471:1 13483:1 13493:4 13498:1 13505:1 13516:1 13550:1 13568:1 13588:1 13601:1 13632:1 13648:1 13669:2 13686:2 13690:3 13694:1 13704:1 13721:2 13737:1 13749:1 13761:1 13765:1 13767:1 13793:1 13798:8 13803:1 13808:1 13823:1 13824:3 13826:3 13828:1 13837:1 13845:1 13849:1 13859:1 13880:1 13891:4 13895:1 13900:1 13901:1 13910:1 13919:1 13921:2 13931:1 13942:1 13972:2 13998:1 14008:1 14009:1 14015:1 14032:3 14042:1 14070:2 14093:1 14095:1 14105:1 14115:1 14116:2 14122:1 14128:1 14134:1 14146:3 14149:1 14152:1 14154:1 14162:1 14186:1 14189:2 14218:1 14235:2 14263:1 14286:1 14296:1 14302:1 14309:1 14322:5 14337:2 14340:1 14376:1 14380:1 14406:1 14416:1 14430:1 14448:1 14488:1 14491:3 14515:1 14519:1 14523:1 14533:1 14550:1 14554:1 14555:1 14559:1 14564:1 14567:3 14568:1 14571:2 14580:3 14611:1 14614:1 14621:2 14628:1 14636:1 14638:2 14642:1 14654:1 14667:1 14675:1 14686:1 14716:1 14727:1 14737:1 14742:3 14744:1 14787:1 14791:2 14803:1 14840:1 14844:1 14854:1 14869:1 14940:1 14941:1 14960:1 15012:1 15037:3 15046:1 15060:3 15083:1 15086:1 15095:1 15150:1 15151:1 15152:1 15160:1 15162:1 15185:1 15197:1 15220:1 15222:1 15250:1 15269:1 15292:1 15312:2 15315:3 15326:1 15345:1 15383:1 15385:2 15400:1 15414:1 15487:1 15502:3 15525:1 15526:1 15574:1 15577:1 15584:1 15587:1 15595:1 15598:1 15675:1 15705:1 15707:1 15747:1 15776:2 15778:20 15786:1 15794:1 15797:1 15800:4 15813:1 15844:4 15855:1 15864:2 15868:1 15885:1 15900:1 15910:1 15912:1 15942:1 15943:1 15981:1 16006:2 16013:1 16083:1 16099:1 16114:1 16134:1 16142:2 16147:1 16149:1 16196:1 16201:1 16241:1 16269:1 16285:1 16293:1 16299:1 16303:1 16304:1 16320:1 16327:7 16332:1 16357:1 16365:2 16372:1 16375:1 16394:1 16456:1 16490:1 16499:1 16502:2 16505:2 16510:2 16516:2 16528:1 16535:1 16594:1 16609:7 16613:1 16622:1 16643:1 16720:1 16729:1 16731:1 16732:1 16742:1 16775:1 16792:3 16797:3 16803:1 16831:1 16837:1 16854:1 16869:2 16874:2 16882:1 16889:1 16897:1 16898:1 16914:2 16918:1 16929:2 16964:1 16968:1 16970:1 16971:1 16973:1 16977:2 16978:1 16979:5 16980:1 16981:1 17003:1 17008:1 17009:1 17013:4 17033:2 17064:1 17075:1 17076:1 17082:1 17114:1 17120:1 17125:1 17152:1 17161:1 17172:8 17175:1 17181:1 17193:1 17204:1 17214:1 17217:1 17230:1 17243:1 17273:1 17276:1 17278:2 17286:3 17303:1 17315:3 17319:1 17320:1 17333:5 17336:3 17417:2 17426:1 17438:1 17449:4 17516:1 17545:1 17547:2 17564:1 17571:1 17601:1 17623:1 17629:1 17675:4 17679:1 17762:1 17792:1 17794:1 17806:2 17814:2 17817:3 17835:1 17836:1 17849:1 17903:1 17918:1 17925:1 17941:1 17942:1 17943:1 17955:1 17957:2 17972:1 17981:1 17984:1 17992:1 17993:1 17997:1 17999:1 18000:1 18005:1 18016:1 18032:1 18037:1 18039:1 18048:1 18057:1 18080:1 18092:20 18101:2 18105:1 18106:1 18110:1 18120:1 18128:1 18137:1 18198:1 18200:1 18203:3 18214:1 18215:1 18221:2 18244:1 18249:1 18270:3 18276:1 18290:1 18297:1 18298:1 18320:1 18325:1 18339:1 18342:1 18390:1 18442:1 18463:1 18470:2 18474:1 18485:1 18506:1 18535:1 18549:1 18559:1 18560:1 18561:2 18563:1 18574:1 18582:1 18593:1 18601:1 18603:1 18608:6 18645:3 18673:1 18696:1 18708:2 18712:1 18715:1 18732:1 18747:1 18752:1 18767:2 18779:1 18781:1 18793:1 18794:1 18823:1 18867:1 18876:1 18898:2 18954:1 18959:1 18968:1 18993:2 18997:1 19019:1 19029:1 19050:1 19064:2 19067:1 19083:1 19087:1 19096:1 19097:1 19175:1 19191:1 19192:2 19193:1 19225:1 19235:1 19263:4 19269:2 19287:1 19303:1 19310:1 19336:1 19361:1 19397:1 19416:1 19437:2 19458:3 19471:1 19475:1 19490:3 19496:2 19500:1 19513:2 19518:1 19525:1 19529:1 19538:3 19602:1 19605:1 19620:1 19641:2 19645:4 19649:1 19658:1 19664:1 19679:1 19689:1 19691:3 19772:1 19787:1 19796:1 19806:1 19810:8 19814:2 19820:1 19851:2 19854:3 19858:1 19865:1 19894:2 19905:1 19907:1 19908:2 19932:8 19947:1 19961:1 19976:2 20027:1 20034:1 20046:1 20065:1 20074:1 20076:1 20078:1 20091:1 20109:4 20115:3 20117:1 20125:1 20126:1 20127:1 20130:1 20153:1 20168:1 20174:1 20201:1 20221:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20295:1 20296:1 20324:1 20325:1 20355:1 20383:1 20390:1 20431:1 20444:1 20446:2 20455:1 20537:1 20556:1 20566:1 20568:1 20572:1 20588:2 20604:1 20606:1 20607:1 20608:1 20643:1 20646:1 20649:1 20654:1 20727:1 20746:1 20751:3 20754:1 20781:1 20783:1 20785:2 20796:1 20799:2 20816:1 20865:1 20885:1 20900:1 20917:1 20941:27 20948:1 20949:1 20974:1 20978:1 20997:1 21003:3 21064:1 21071:1 21072:1 21081:1 21083:1 21097:1 21101:1 21124:2 21130:2 21145:2 21149:1 21174:1 21204:1 21209:1 21214:1 21215:1 21261:1 21263:1 21292:1 21299:1 21316:1 21318:2 21371:1 21376:1 21423:1 21445:1 21503:1 21508:1 21512:1 21513:1 21522:1 21524:1 21566:1 21593:1 21597:1 21603:1 21608:2 21612:1 21634:1 21686:2 21701:1 21704:2 21713:2 21724:1 21754:1 21788:1 21819:1 21823:4 21829:2 21831:1 21843:1 21864:1 21872:2 21875:1 21899:1 21917:2 21939:1 21943:1 21975:3 21987:4 22008:1 22032:1 22037:1 22067:1 22076:1 22079:4 22083:1 22084:1 22123:2 22143:2 22169:1 22173:1 22177:1 22181:1 22186:2 22190:1 22298:1 22300:3 22305:1 22315:1 22347:1 22386:1 22388:1 22424:1 22429:3 22493:2 22497:1 22516:1 22530:1 22547:1 22584:1 22628:5 22643:1 22650:1 22666:1 22677:1 22720:1 22727:2 22754:1 22783:1 22791:1 22800:1 22806:1 22809:1 22824:1 22870:1 22883:1349 22893:1 22909:2 22923:1 22944:1 22969:1 22984:1 23031:3 23039:1 23043:2 23044:1 23079:1 23119:1 23129:1 23139:1 23193:1 23270:1 23304:1 23320:1 23321:1 23348:1 23365:1 23411:1 23427:1 23456:1 23457:1 23468:2 23482:1 23508:1 23521:2 23523:2 23543:1 23549:1 23603:1 23607:4 23640:3 23647:1 23653:1 23698:1 23706:1 23708:1 23712:1 23718:1 23735:1 23763:1 23773:1 23800:1 23812:1 23821:1 23833:4 23834:3 23874:1 23880:4 23914:2 23934:1 23947:12 23958:1 23979:2 24012:2 24013:1 24019:1 24020:1 24047:3 24052:1 24064:2 24066:1 24079:1 24097:2 24105:3 24106:1 24118:1 24185:1 24191:1 24209:2 24217:1 24239:2 24240:1 24255:1 24289:1 24292:1 24332:1 24342:1 24364:1 24369:1 24376:1 24424:1 24449:1 24450:1 24474:1 24479:1 24480:1 24482:1 24483:1 24491:1 24511:1 24518:1 24539:1 24553:1 24566:1 24591:2 24592:5 24598:1 24604:1 24612:1 24620:1 24643:1 24651:1 24653:1 24656:2 24658:1 24680:2 24681:3 24683:1 24699:1 24700:1 24708:4 24728:1 24753:1 24762:1 24774:1 24781:2 24794:1 24808:2 24820:1 24826:1 24850:1 24853:1 24869:1 24883:3 24894:2 24918:1 24919:1 24924:1 24978:1 25000:1 25047:1 25053:1 25058:1 25076:1 25080:1 25114:3 25122:1 25143:1 25144:1 25157:1 25161:2 25163:1 25179:3 25217:1 25240:1 25244:1 25285:1 25300:1 25303:1 25326:1 25334:1 25369:1 25373:1 25379:1 25392:1 25407:2 25417:1 25427:2 25448:1 25456:1 25461:1 25481:1 25486:1 25491:1 25498:2 25502:2 25505:1 25511:3 25527:1 25529:1 25541:1 25543:1 25553:1 25554:1 25572:1 25580:1 25582:2 25586:1 25590:3 25600:1 25605:1 25608:3 25623:1 25632:1 25637:2 25720:1 25721:3 25725:1 25733:1 25738:1 25781:1 25782:1 25786:2 25793:2 25807:1 25811:1 25815:1 25824:2 25841:1 25846:1 25852:1 25859:1 25867:1 25879:1 25907:1 25917:1 25934:1 25952:1 25994:1 26000:1 26011:1 26014:1 26018:2 26031:1 26062:3 26070:1 26091:1 26102:2 26107:1 26119:1 26120:1 26138:1 26153:1 26155:1 26156:2 26203:2 26211:1 26214:1 26215:2 26216:2 26228:1 26260:1 26313:1 26327:1 26337:2 26385:3 26407:1 26424:1 26438:3 26444:1 26453:3 26459:1 26460:1 26496:1 26508:4 26552:1 26590:1 26593:1 26602:3 26608:1 26612:3 26614:1 26628:2 26642:1 26651:1 26668:6 26671:1 26679:1 26694:1 26740:1 26743:1 26744:1 26777:2 26779:4 26782:2 26787:1 26794:1 26795:1 26797:1 26808:1 26809:1 26815:1 26818:1 26820:1 26826:2 26827:1 26828:3 26842:1 26844:1 26854:1 26874:1 26907:1 26914:1 26949:2 26984:1 26995:2 26999:1 27004:4 27029:2 27051:1 27072:1 27087:2 27092:1 27099:1 27127:2 27149:1 27153:2 27203:1 27213:1 27243:1 27251:1 27259:1 27260:8 27287:2 27294:1 27331:8 27333:2 27339:1 27343:1 27393:1 27396:4 27398:2 27401:1 27415:1 27447:1 27460:7 27478:1 27500:2 27508:1 27522:1 27526:1 27527:1 27542:1 27544:1 27573:1 27591:1 27594:1 27599:1 27601:1 27603:1 27619:3 27633:2 27651:1 27677:3 27723:1 27731:1 27760:1 27767:1 27779:1 27782:1 27787:19 27804:1 27808:1 27810:2 27813:2 27819:1 27854:2 27859:1 27860:1 27862:1 27878:1 27879:1 27920:1 27922:1 27925:1 27957:1 27963:1 27973:2 27983:1 27987:2 28000:1 28011:4 28017:1 28052:1 28154:1 28160:1 28179:2 28206:1 28263:1 28276:1 28278:1 28279:1 28287:1 28297:1 28298:2 28308:1 28310:1 28313:2 28317:1 28318:1 28370:20 28398:2 28399:1 28433:1 28436:1 28460:1 28464:1 28472:2 28473:1 28482:2 28489:6 28523:1 28528:1 28541:1 28560:1 28567:1 28572:1 28577:3 28582:2 28587:1 28612:1 28621:1 28639:1 28645:1 28647:2 28650:2 28686:1 28786:1 28811:1 28814:1 28817:2 28831:1 28833:1 28852:1 28908:1 28913:1 28932:1 28939:1 28949:1 28974:2 28983:2 28993:1 28996:1 29004:1 29014:1 29016:1 29020:1 29087:1 29126:1 29133:2 29141:1 29149:1 29170:2 29174:1 29179:1 29190:1 29192:1 29215:1 29233:1 29258:1 29328:1 29330:1 29334:1 29367:1 29398:1 29417:1 29419:3 29426:2 29455:2 29464:1 29480:1 29486:2 29493:1 29516:2 29551:1 29554:1 29557:2 29564:1 29568:2 29583:1 29584:2 29587:3 29591:1 29604:1 29634:3 29688:7 29695:1 29701:1 29741:1 29749:1 29752:1 29756:1 29760:1 29775:1 29822:1 29827:1 29840:1 29845:1 29887:1 29901:2 29939:1 29952:1 29957:1 29962:2 29995:1 30004:1 30015:1 30023:1 30035:1 30079:3 30083:1 30084:2 30092:1 30093:1 30099:3 30105:1 30119:1 30134:1 30144:2 30165:3 30192:1 30198:2 30199:2 30213:1 30235:1 30248:1 30253:1 30261:4 30263:1 30283:1 30284:1 30294:1 30299:1 30307:1 30320:1 30329:1 30330:1 30331:1 30350:1 30370:1 30424:1 30454:1 30478:1 30482:1 30483:1 30493:1 30518:1 30535:1 30537:1 30538:2 30541:1 30552:2 30601:1 30617:2 30641:1 30679:1 30688:1 30743:1 30788:1 30789:2 30790:3 30794:1 30806:1 30814:1 30817:2 30823:1 30855:1 30857:1 30861:1 30912:2 30920:1 30931:1 30960:2 30970:1 30972:1 30981:3 30987:1 31002:1 31005:1 31020:1 31026:1 31051:1 31053:1 31055:2 31057:1 31059:1 31089:1 31093:1 31112:2 31134:1 31142:1 31148:1 31151:1 31168:1 31177:1 31178:1 31181:1 31188:1 31201:1 31210:1 31226:1 31235:1 31255:2 31264:3 31265:1 31276:1 31283:1 31296:2 31317:2 31329:1 31334:3 31377:3 31384:1 31411:1 31413:8 31425:2 31444:1 31465:1 31478:1 31486:1 31550:1 31563:1 31569:1 31574:1 31578:2 31588:1 31595:1 31610:1 31612:1 31648:1 31660:2 31663:1 31708:1 31725:1 31737:1 31747:1 31753:2 31768:1 31784:1 31787:1 31808:1 31834:3 31848:1 31866:2 31874:1 31882:1 31885:1 31891:1 31919:1 31929:1 31930:3 31933:1 31946:2 31963:2 31964:1 31968:7 31969:1 31993:1 32010:1 32022:1 32036:1 32066:3 32074:1 32090:1 32099:1 32106:1 32112:1 32117:1 32153:1 32208:1 32219:2 32285:2 32307:1 32311:1 32319:1 32326:1 32329:1 32376:2 32406:1 32459:1 32491:1 32492:1 32493:1 32505:2 32515:1 32532:1 32553:2 32574:1 32596:1 32606:1 32612:1 32624:1 32636:1 32683:2 32691:1 32700:1 32725:2 32726:1 32732:1 32745:1 32749:2 32750:5 32774:2 32785:1 32787:1 32801:4 32832:3 32846:1 32879:1 32890:4 32891:1 32893:1 32896:2 32909:1 32917:1 32924:1 32929:2 32941:3 32950:1 32955:1 32958:1 32965:1 32974:1 32984:1 33027:1 33053:1 33057:1 33066:1 33069:1 33080:1 33085:1 33092:1 33094:2 33098:1 33100:1 33112:1 33118:1 33128:3 33133:2 33137:1 33141:1 33142:1 33144:1 33157:2 33183:2 33222:1 33272:1 33284:1 33287:1 33296:3 33297:1 33309:2 33330:1 33346:1 33352:2 33388:1 33389:1 33404:1 33413:1 33446:1 33461:3 33467:1 33498:1 33503:1 33505:1 33512:1 33530:1 33533:3 33537:2 33543:2 33545:1 33552:1 33553:2 33555:1 33556:2 33563:2 33579:1 33591:1 33592:1 33595:2 33609:1 33616:1 33620:1 33623:1 33637:1 33663:5 33680:3 33716:1 33730:1 33734:2 33743:1 33760:1 33766:1 33769:1 33794:1 33795:1 33820:1 33824:1 33861:1 33865:1 33880:1 33910:1 33928:1 33930:1 34003:1 34040:1 34056:3 34057:2 34067:3 34071:2 34075:3 34080:1 34083:1 34085:3 34099:1 34104:1 34133:1 34139:1 34144:1 34151:1 34157:1 34160:1 34174:1 34197:1 34221:2 34246:2 34283:1 34306:1 34314:1 34321:1 34351:1 34364:1 34367:1 34371:1 34373:1 34407:1 34410:1 34413:1 34435:12 34445:1 34478:1 34497:5 34566:1 34570:1 34596:2 34615:1 34619:1 34627:1 34629:1 34634:7 34643:2 34659:1 34662:1 34673:1 34674:1 34682:1 34691:7 34701:1 34749:1 34757:1 34761:1 34782:1 34794:1 34804:2 34862:1 34878:2 34968:1 34996:24 35022:1 35026:3 35031:1 35041:3 35042:1 35056:1 35094:1 35098:1 35124:3 35128:7 35135:2 35141:1 35149:1 35152:1 35164:1 35184:1 35201:1 35207:2 35253:1 35265:1 35281:1 35289:2 35310:1 35311:1 35326:1 35342:1 35354:1 35382:2 35395:1 35410:1 35456:1 35473:1 35499:1 35503:2 35517:1 35520:1 35539:1 35585:1 35589:2 35592:1 35602:2 35625:2 35636:1 35648:1 35656:1 35677:1 35681:1 35696:1 35700:1 35714:1 35721:1 35748:2 35753:1 35757:2 35785:1 35789:2 35805:5 35831:2 35836:1 35837:2 35838:2 35850:20 35888:1 35901:1 35939:1 35953:1 35957:1 35959:1 35965:2 35966:2 36011:1 36028:1 36072:1 36075:1 2 9:1 10:1 31:2 32:1 33:1 65:1 69:1 73:1 95:1 104:2 106:2 107:1 122:1 140:1 166:2 177:1 191:1 196:1 200:1 207:1 211:1 235:1 239:1 251:1 256:1 278:1 297:2 302:3 303:1 309:1 322:1 323:1 328:1 365:1 372:1 412:1 414:3 418:1 435:1 452:1 454:1 478:2 498:1 503:1 520:1 526:1 539:1 555:1 568:2 601:2 607:1 610:1 621:1 659:1 662:1 672:1 674:1 684:1 690:1 750:1 751:3 755:1 761:1 766:1 795:2 820:21 825:3 831:1 854:1 861:1 881:1 886:2 919:1 935:2 941:2 964:1 999:2 1019:2 1022:1 1024:2 1028:2 1032:1 1034:1 1082:3 1135:3 1136:6 1142:1 1150:5 1167:1 1176:3 1194:2 1203:3 1206:4 1210:1 1212:1 1219:1 1226:1 1233:2 1234:2 1253:2 1256:1 1260:1 1293:1 1301:1 1305:1 1308:1 1326:3 1385:2 1386:1 1403:1 1454:1 1459:2 1510:1 1537:1 1541:20 1550:1 1554:1 1555:2 1556:1 1564:3 1567:1 1592:1 1595:2 1596:1 1605:1 1610:1 1611:1 1616:1 1617:1 1619:1 1623:1 1627:1 1634:1 1638:1 1651:1 1682:1 1705:1 1706:2 1740:1 1755:1 1757:1 1763:1 1771:2 1773:1 1808:1 1809:1 1824:1 1836:2 1849:2 1861:1 1888:1 1889:1 1891:2 1895:1 1897:6 1903:1 1910:1 1911:1 1929:1 1960:2 1970:1 1990:1 1991:1 1997:2 2013:1 2031:1 2036:1 2037:1 2043:1 2058:1 2097:1 2098:1 2102:1 2105:1 2106:1 2123:1 2139:1 2145:1 2147:1 2158:2 2164:3 2175:1 2196:1 2198:1 2199:1 2202:1 2218:1 2249:1 2260:1 2265:1 2279:1 2282:1 2292:1 2307:1 2312:1 2317:2 2320:2 2328:1 2345:1 2348:1 2352:1 2368:1 2376:1 2379:2 2390:1 2400:2 2406:2 2420:1 2436:1 2446:1 2455:1 2467:1 2486:3 2508:1 2522:1 2525:1 2547:1 2566:1 2599:1 2604:1 2624:1 2638:1 2642:1 2652:1 2655:1 2696:6 2721:1 2743:1 2746:1 2783:1 2789:1 2817:1 2827:1 2848:1 2857:1 2859:1 2862:3 2866:2 2867:1 2870:1 2872:3 2877:3 2881:1 2883:3 2887:3 2891:1 2895:1 2897:1 2900:1 2902:2 2906:1 2909:1 2910:1 2919:1 2920:1 2942:1 2954:2 2955:1 2971:3 2999:2 3002:1 3004:1 3026:1 3027:1 3044:1 3045:2 3054:1 3075:1 3076:4 3086:2 3098:1 3100:1 3106:1 3116:2 3137:1 3145:1 3165:1 3177:1 3179:1 3186:1 3206:1 3224:2 3244:1 3255:1 3266:1 3267:1 3312:1 3319:1 3322:2 3341:2 3348:1 3367:1 3380:3 3381:1 3406:1 3410:1 3413:3 3415:1 3420:1 3423:2 3429:1 3443:1 3451:1 3454:1 3493:1 3497:1 3507:1 3510:3 3516:1 3520:1 3539:2 3547:1 3584:2 3603:1 3612:1 3645:10 3648:21 3651:1 3652:2 3653:1 3663:2 3666:1 3678:1 3681:1 3682:1 3691:3 3692:1 3695:1 3698:1 3706:5 3736:2 3741:1 3756:1 3784:2 3792:1 3793:1 3794:1 3836:1 3846:2 3860:1 3867:1 3897:2 4045:1 4070:1 4097:1 4101:1 4119:1 4146:1 4157:1 4161:2 4171:1 4179:1 4211:1 4224:1 4226:1 4251:1 4328:1 4334:1 4355:1 4359:1 4381:1 4383:1 4395:1 4396:1 4411:1 4412:1 4444:1 4448:1 4459:1 4474:1 4479:1 4488:1 4492:1 4517:1 4539:1 4555:1 4564:1 4580:1 4601:1 4626:1 4643:2 4645:1 4646:1 4651:1 4654:1 4722:2 4724:1 4767:1 4773:1 4780:1 4795:1 4803:1 4815:1 4820:1 4830:1 4843:1 4855:1 4857:1 4859:1 4867:3 4886:1 4887:1 4914:1 4920:20 4922:2 4927:1 4947:1 4985:1 4992:1 5008:1 5015:2 5019:4 5020:2 5032:2 5039:1 5047:1 5054:2 5058:5 5059:2 5076:2 5119:1 5153:1 5163:1 5170:2 5178:1 5194:1 5233:1 5235:1 5237:1 5240:1 5241:1 5247:1 5254:1 5272:1 5282:1 5298:1 5299:2 5300:1 5302:2 5307:1 5308:3 5324:1 5348:1 5371:3 5402:2 5408:1 5428:1 5437:20 5453:1 5456:1 5459:4 5471:1 5473:1 5483:1 5486:1 5492:1 5555:2 5566:6 5588:1 5638:3 5655:2 5663:1 5672:1 5676:2 5679:1 5687:1 5712:1 5731:7 5738:1 5760:1 5832:2 5843:1 5869:1 5879:3 5885:1 5913:1 5924:1 5960:1 5967:1 5969:2 5973:2 5974:1 5980:1 5983:1 6004:1 6005:2 6017:1 6043:1 6049:1 6075:1 6078:1 6096:9 6097:2 6112:1 6115:1 6140:2 6149:2 6158:1 6187:1 6191:1 6253:3 6254:1 6257:1 6277:3 6278:4 6279:2 6285:3 6292:1 6293:3 6303:1 6309:2 6312:5 6315:2 6316:1 6326:1 6358:1 6407:1 6411:1 6528:1 6580:1 6610:1 6622:1 6623:2 6628:1 6655:1 6683:1 6684:1 6698:1 6738:2 6759:1 6787:1 6799:1 6801:2 6803:1 6807:1 6832:1 6835:1 6859:1 6861:1 6867:2 6870:1 6942:1 6970:1 6972:1 6983:1 6991:1 7008:1 7010:1 7012:1 7036:1 7061:1 7062:1 7065:1 7070:1 7076:1 7083:1 7119:1 7130:1 7138:1 7140:1 7164:1 7213:1 7225:2 7243:1 7250:1 7252:1 7264:1 7289:5 7295:2 7366:1 7377:1 7421:1 7422:1 7423:1 7432:1 7434:1 7451:1 7455:1 7494:1 7525:1 7532:1 7537:1 7561:1 7580:2 7583:1 7589:1 7591:1 7599:1 7604:2 7607:1 7630:1 7656:1 7665:1 7707:1 7708:2 7709:1 7721:1 7722:1 7725:1 7727:1 7728:1 7729:3 7734:1 7739:1 7741:2 7764:1 7782:1 7805:1 7822:1 7825:1 7840:1 7847:1 7852:3 7857:2 7860:1 7871:1 7905:1 7937:2 7945:1 7965:1 7966:1 7974:1 7989:5 7995:1 8004:4 8007:1 8008:1 8009:1 8014:1 8015:1 8016:1 8019:2 8020:6 8030:1 8034:1 8054:1 8085:2 8125:1 8136:1 8176:1 8186:1 8200:2 8203:3 8260:1 8284:1 8293:1 8297:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:2 8349:1 8377:1 8393:2 8421:1 8427:1 8446:1 8449:1 8489:1 8493:1 8496:1 8501:3 8524:1 8564:1 8566:1 8570:1 8577:1 8602:1 8617:1 8648:1 8695:2 8714:1 8731:1 8738:1 8751:1 8772:1 8842:1 8845:1 8849:1 8854:1 8866:1 8883:4 8905:1 8940:1 8943:1 8946:1 8955:1 8966:2 8978:2 9007:1 9012:1 9052:2 9090:1 9113:1 9122:1 9123:1 9134:1 9138:1 9146:1 9153:1 9194:1 9205:1 9216:1 9217:1 9231:1 9282:1 9307:1 9325:1 9333:1 9337:1 9338:5 9372:4 9374:1 9381:1 9394:1 9426:1 9428:2 9433:1 9437:1 9446:1 9484:1 9495:1 9499:1 9526:3 9529:1 9577:1 9586:1 9588:1 9612:1 9619:1 9628:7 9629:9 9637:1 9655:1 9657:5 9688:3 9694:1 9702:24 9707:1 9708:1 9711:2 9719:1 9720:1 9723:1 9733:10 9738:3 9744:1 9754:1 9758:1 9780:1 9781:1 9793:1 9803:1 9849:3 9866:1 9870:1 9885:1 9895:1 9924:1 9926:2 9942:2 9957:1 9963:1 9967:2 9968:1 9975:1 9978:1 9999:3 10011:1 10023:1 10058:1 10063:2 10099:1 10103:1 10161:1 10167:1 10175:1 10209:1 10213:1 10223:1 10235:2 10261:1 10286:1 10298:1 10313:1 10314:1 10321:21 10333:1 10338:1 10342:1 10356:1 10359:9 10360:3 10376:1 10378:2 10401:1 10406:1 10412:2 10431:1 10444:1 10452:1 10470:25 10488:1 10598:1 10599:1 10612:1 10669:1 10683:1 10686:2 10695:1 10697:1 10704:1 10707:1 10711:1 10717:3 10718:1 10736:1 10744:1 10749:1 10772:3 10778:1 10789:2 10791:1 10792:1 10796:1 10798:1 10807:2 10808:2 10812:1 10813:1 10826:1 10864:1 10878:1 10884:1 10895:1 10900:1 10911:2 10979:1 11002:1 11075:2 11078:1 11109:2 11163:1 11165:1 11169:1 11183:1 11207:1 11212:3 11226:1 11230:1 11231:1 11233:1 11238:1 11247:3 11258:1 11268:1 11270:1 11272:1 11325:1 11340:1 11378:1 11382:4 11391:1 11402:1 11404:1 11422:1 11457:1 11489:3 11522:1 11557:3 11561:2 11564:1 11569:1 11571:3 11572:1 11573:1 11575:1 11583:1 11585:1 11587:1 11598:1 11617:1 11625:1 11628:1 11636:1 11640:1 11641:1 11642:2 11645:1 11654:1 11668:1 11678:2 11690:4 11697:2 11707:2 11718:1 11720:1 11744:1 11745:1 11755:1 11771:1 11774:1 11776:1 11791:1 11793:1 11795:2 11804:1 11815:1 11840:1 11851:1 11861:1 11864:1 11865:1 11872:2 11876:1 11882:1 11885:1 11899:1 11903:1 11918:1 11919:1 11930:1 11931:2 11932:5 11936:1 11955:1 11961:2 11966:1 11969:1 11976:1 11978:1 11982:3 11988:1 11992:1 12004:1 12014:1 12033:1 12052:1 12056:1 12057:1 12076:1 12081:1 12082:1 12083:1 12112:1 12113:1 12120:1 12131:1 12146:1 12147:1 12186:1 12191:1 12214:1 12221:5 12230:1 12231:1 12237:3 12239:4 12248:1 12255:1 12301:1 12359:1 12361:1 12391:20 12401:1 12407:1 12420:1 12435:1 12446:1 12451:1 12471:1 12473:1 12479:1 12490:2 12493:1 12521:1 12538:1 12540:2 12547:2 12552:1 12561:2 12570:2 12580:1 12592:1 12608:1 12618:2 12619:1 12630:1 12641:1 12643:2 12669:1 12673:4 12692:2 12694:1 12734:3 12757:1 12760:1 12774:1 12777:1 12794:1 12821:1 12824:2 12829:1 12837:1 12848:1 12867:5 12881:1 12898:1 12936:1 12958:1 12977:1 12988:1 13013:3 13028:1 13040:1 13051:1 13052:1 13058:1 13079:1 13089:1 13096:1 13112:1 13113:3 13128:1 13154:1 13175:1 13179:1 13187:1 13213:1 13234:1 13258:2 13267:1 13282:1 13283:3 13303:1 13325:2 13357:2 13384:1 13385:2 13411:1 13412:4 13415:1 13418:1 13420:2 13429:1 13443:1 13454:1 13464:1 13468:1 13471:1 13483:1 13493:5 13498:1 13505:1 13516:1 13550:1 13568:1 13588:1 13601:1 13632:1 13648:1 13669:2 13686:2 13690:3 13694:1 13704:1 13721:3 13737:1 13749:1 13761:1 13765:1 13767:1 13793:1 13798:8 13803:1 13808:1 13823:1 13824:3 13826:3 13828:1 13837:1 13845:1 13849:1 13859:1 13880:1 13891:4 13895:1 13900:1 13901:1 13910:1 13919:1 13921:2 13931:1 13942:1 13972:2 13998:1 14008:1 14009:1 14015:1 14029:1 14032:3 14042:1 14070:2 14071:1 14093:1 14095:1 14105:1 14115:1 14116:2 14122:1 14128:1 14134:1 14146:3 14149:1 14152:1 14154:1 14162:1 14186:1 14189:2 14218:1 14235:2 14263:1 14286:1 14296:1 14302:1 14309:1 14322:5 14337:2 14340:1 14376:1 14380:1 14406:1 14416:1 14430:1 14448:1 14488:1 14491:4 14515:1 14519:1 14523:1 14533:1 14550:1 14554:1 14555:1 14559:1 14564:1 14567:3 14568:1 14571:2 14580:3 14611:1 14614:1 14621:2 14628:1 14632:1 14636:1 14638:2 14642:1 14654:1 14667:1 14675:1 14686:1 14716:1 14727:1 14735:1 14737:1 14742:3 14744:1 14787:1 14791:2 14803:1 14840:1 14844:1 14854:1 14869:1 14910:1 14940:1 14941:1 14960:1 15012:1 15037:3 15046:1 15060:3 15083:1 15086:1 15095:1 15140:1 15150:1 15151:1 15152:1 15160:1 15162:1 15185:1 15197:1 15220:1 15222:1 15250:1 15269:1 15292:1 15312:2 15315:3 15326:1 15345:1 15383:1 15385:2 15400:1 15414:1 15487:1 15502:3 15525:1 15526:1 15574:1 15577:1 15584:1 15587:1 15595:1 15598:1 15675:1 15705:1 15707:1 15747:1 15776:2 15778:21 15786:1 15794:1 15797:1 15800:4 15813:1 15844:4 15855:1 15864:2 15868:1 15885:1 15900:1 15910:1 15912:1 15942:1 15943:1 15944:1 15981:1 16001:1 16006:2 16013:1 16083:1 16099:1 16114:1 16134:1 16142:2 16147:1 16149:1 16196:1 16201:1 16241:1 16253:1 16269:1 16285:1 16293:1 16299:1 16303:1 16304:1 16320:1 16327:7 16332:1 16354:1 16357:1 16365:2 16372:1 16375:1 16394:1 16456:1 16490:1 16499:1 16502:2 16505:2 16510:2 16516:2 16528:1 16535:1 16594:1 16609:7 16613:1 16622:1 16643:1 16720:1 16729:1 16731:1 16732:1 16742:1 16775:1 16792:3 16797:3 16803:1 16831:1 16837:1 16854:1 16869:2 16874:2 16882:1 16889:1 16897:1 16898:1 16914:2 16918:1 16929:2 16964:1 16968:2 16970:1 16971:1 16973:1 16977:2 16978:1 16979:6 16980:1 16981:1 16983:1 17003:1 17008:1 17009:1 17013:4 17033:2 17064:1 17075:1 17076:1 17082:1 17114:1 17120:1 17125:1 17152:1 17161:1 17172:8 17175:1 17181:2 17193:1 17204:1 17214:1 17217:1 17230:1 17243:1 17273:1 17276:1 17278:2 17286:3 17303:1 17309:1 17315:3 17319:1 17320:1 17333:6 17336:3 17417:2 17426:1 17438:1 17449:4 17516:1 17545:1 17547:2 17562:1 17564:1 17571:1 17601:1 17623:1 17629:1 17675:4 17679:1 17762:1 17792:1 17794:1 17806:2 17814:2 17817:3 17835:1 17836:1 17849:1 17850:1 17903:1 17918:1 17925:1 17941:1 17942:1 17943:1 17955:1 17957:2 17972:1 17978:1 17981:1 17984:1 17992:1 17993:1 17997:1 17999:1 18000:1 18005:1 18016:1 18030:1 18032:1 18037:1 18039:1 18048:1 18057:2 18080:1 18092:21 18101:2 18105:1 18106:1 18110:1 18120:1 18128:1 18137:1 18198:1 18200:1 18203:3 18214:1 18215:1 18221:2 18244:1 18249:1 18270:3 18276:1 18290:1 18297:1 18298:1 18320:1 18325:1 18339:1 18342:1 18390:1 18442:1 18463:1 18470:2 18474:1 18485:1 18506:1 18535:1 18549:1 18559:1 18560:1 18561:2 18563:1 18574:1 18582:1 18593:1 18601:1 18603:1 18608:6 18645:3 18673:1 18696:1 18708:2 18712:1 18715:1 18732:1 18747:1 18752:1 18767:2 18779:1 18781:1 18793:1 18794:1 18823:1 18867:1 18876:1 18898:2 18954:1 18959:1 18968:1 18993:2 18997:1 19019:1 19029:1 19050:1 19064:2 19067:1 19083:1 19087:1 19096:1 19097:1 19175:1 19191:1 19192:2 19193:1 19225:1 19235:1 19263:4 19269:2 19287:1 19303:1 19310:1 19336:1 19361:1 19397:1 19416:1 19437:2 19458:3 19471:1 19475:1 19490:3 19496:2 19500:1 19513:2 19518:1 19525:1 19529:1 19538:3 19548:1 19602:1 19605:1 19620:1 19641:2 19645:4 19649:1 19658:1 19664:1 19679:1 19689:1 19691:3 19772:1 19787:1 19796:1 19806:1 19810:8 19814:2 19820:1 19851:2 19854:3 19858:1 19865:1 19894:2 19905:1 19907:1 19908:2 19932:8 19947:1 19961:1 19976:2 20027:1 20034:1 20046:1 20065:1 20074:1 20076:1 20078:1 20091:1 20109:4 20110:1 20115:3 20117:1 20125:1 20126:1 20127:1 20130:1 20153:1 20168:1 20174:1 20201:1 20221:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20295:1 20296:1 20324:1 20325:1 20350:1 20355:1 20383:1 20390:1 20431:1 20444:1 20446:2 20455:1 20537:1 20556:1 20566:1 20568:1 20572:1 20588:2 20604:1 20606:1 20607:1 20608:1 20643:1 20646:1 20649:1 20654:1 20727:1 20746:1 20751:3 20754:1 20762:1 20781:1 20783:1 20785:2 20796:1 20799:2 20816:1 20865:1 20885:1 20900:1 20917:1 20941:28 20948:1 20949:1 20974:1 20978:1 20997:1 21003:3 21064:1 21071:1 21072:1 21081:1 21083:1 21097:1 21101:1 21116:1 21124:2 21130:2 21145:2 21149:1 21174:1 21204:1 21209:1 21214:1 21215:1 21261:1 21263:1 21284:1 21292:1 21299:1 21316:1 21318:2 21323:1 21337:1 21371:1 21376:1 21423:1 21443:1 21445:1 21503:1 21508:1 21512:1 21513:1 21522:1 21524:1 21566:1 21586:1 21593:1 21597:1 21602:1 21603:1 21608:2 21612:1 21634:1 21686:2 21701:1 21704:2 21713:2 21724:1 21754:1 21788:1 21819:1 21823:4 21829:2 21831:1 21843:1 21864:1 21872:2 21875:2 21899:1 21917:2 21939:1 21943:1 21975:3 21987:4 22008:1 22032:1 22037:1 22067:1 22076:1 22079:4 22083:1 22084:1 22123:3 22143:2 22169:1 22173:1 22177:1 22181:1 22186:2 22190:1 22298:1 22300:3 22305:1 22315:1 22347:1 22386:1 22388:1 22406:1 22424:1 22429:3 22493:2 22497:1 22516:1 22530:1 22547:1 22584:1 22628:5 22643:1 22650:1 22666:1 22677:2 22720:1 22727:2 22754:1 22783:1 22791:1 22800:1 22806:1 22809:1 22824:1 22870:1 22883:1405 22893:1 22909:2 22923:1 22944:1 22969:1 22984:1 23031:3 23039:1 23043:2 23044:1 23079:1 23119:1 23129:1 23139:1 23193:1 23270:1 23304:1 23320:1 23321:1 23348:1 23365:1 23411:1 23427:1 23456:1 23457:1 23468:2 23470:1 23482:1 23508:1 23521:2 23523:2 23543:1 23549:1 23603:1 23607:4 23640:3 23647:1 23653:1 23698:1 23706:1 23708:1 23712:1 23718:1 23735:1 23763:1 23773:1 23800:1 23812:1 23821:1 23833:4 23834:3 23874:1 23880:4 23914:2 23934:1 23947:13 23958:1 23979:2 24012:2 24013:1 24019:1 24020:1 24047:3 24052:1 24064:2 24066:1 24079:1 24097:2 24105:3 24106:1 24118:1 24185:1 24191:1 24209:2 24217:1 24239:2 24240:1 24255:1 24289:1 24292:1 24327:1 24332:1 24342:1 24364:1 24369:1 24376:1 24424:1 24449:1 24450:1 24474:1 24479:1 24480:1 24482:1 24483:1 24491:1 24511:1 24518:1 24534:1 24539:1 24553:1 24566:1 24591:2 24592:5 24598:1 24604:1 24612:1 24620:1 24643:1 24651:1 24653:2 24656:3 24658:1 24680:2 24681:3 24683:1 24699:1 24700:1 24708:4 24728:1 24753:1 24762:1 24774:1 24781:2 24794:1 24808:2 24820:1 24826:1 24850:1 24853:1 24869:1 24883:3 24894:2 24918:1 24919:1 24924:1 24978:1 25000:1 25047:1 25053:1 25058:1 25076:1 25080:1 25114:4 25122:1 25143:1 25144:1 25157:1 25161:2 25163:1 25179:3 25217:1 25240:1 25244:1 25285:1 25299:1 25300:1 25303:1 25326:1 25334:2 25369:1 25373:1 25379:1 25392:1 25407:2 25417:1 25427:2 25448:1 25456:1 25461:1 25481:1 25486:1 25491:1 25498:2 25502:2 25505:1 25511:3 25527:1 25529:1 25541:1 25543:1 25553:1 25554:1 25572:1 25580:1 25582:2 25586:1 25590:3 25600:1 25602:1 25605:1 25608:3 25623:1 25630:1 25632:1 25637:2 25699:1 25720:1 25721:3 25725:1 25733:1 25738:1 25781:1 25782:1 25786:2 25793:2 25807:1 25811:1 25815:1 25824:2 25841:1 25846:1 25852:1 25859:1 25867:1 25879:1 25907:1 25917:1 25934:1 25952:1 25994:1 26000:1 26011:1 26014:1 26018:3 26031:1 26062:3 26070:1 26091:1 26102:2 26107:1 26119:1 26120:1 26138:1 26153:1 26155:1 26156:2 26203:2 26211:1 26214:1 26215:2 26216:2 26228:1 26260:1 26261:1 26285:1 26313:1 26327:1 26337:2 26362:1 26385:3 26394:1 26407:1 26424:1 26438:3 26444:1 26453:4 26459:1 26460:1 26496:1 26508:4 26552:1 26590:1 26593:1 26602:3 26608:1 26612:3 26614:1 26628:2 26642:1 26651:1 26668:6 26671:1 26679:1 26694:1 26740:1 26743:1 26744:1 26777:2 26779:4 26782:2 26787:1 26794:1 26795:1 26797:2 26808:1 26809:1 26815:1 26818:1 26820:1 26826:2 26827:1 26828:3 26842:1 26844:1 26854:1 26874:1 26907:1 26914:1 26930:1 26949:2 26984:1 26995:2 26999:1 27004:4 27029:2 27051:1 27072:1 27087:3 27092:1 27099:1 27127:2 27149:1 27153:2 27203:1 27213:1 27243:1 27251:1 27259:1 27260:8 27287:2 27294:1 27331:8 27333:2 27339:1 27343:1 27393:1 27396:4 27398:2 27401:1 27415:1 27447:1 27460:7 27478:1 27500:2 27508:1 27522:1 27526:1 27527:1 27542:1 27544:2 27573:1 27591:1 27594:1 27599:1 27601:1 27603:1 27619:3 27633:2 27651:1 27677:3 27723:1 27731:1 27760:1 27767:1 27779:1 27782:1 27787:20 27804:1 27808:1 27810:2 27813:2 27819:1 27825:1 27854:2 27859:1 27860:1 27862:1 27878:1 27879:1 27889:1 27920:1 27922:1 27925:1 27957:1 27963:1 27973:2 27983:1 27987:2 28000:1 28011:4 28017:1 28052:1 28154:1 28160:1 28179:3 28206:1 28263:1 28276:1 28278:1 28279:1 28287:1 28297:1 28298:2 28308:1 28310:1 28313:2 28317:1 28318:1 28370:21 28398:2 28399:1 28433:1 28436:1 28460:1 28464:1 28472:2 28473:1 28482:2 28489:6 28523:1 28528:1 28541:1 28560:1 28567:1 28572:1 28577:3 28582:2 28587:1 28612:1 28621:1 28639:1 28645:1 28647:2 28650:2 28686:1 28752:1 28786:1 28811:1 28814:1 28817:2 28831:1 28833:1 28852:1 28908:1 28913:1 28932:1 28939:1 28949:1 28974:2 28983:2 28993:1 28996:1 29004:1 29014:1 29016:1 29020:1 29087:1 29126:1 29133:2 29141:1 29149:1 29170:2 29174:1 29179:1 29190:1 29192:1 29215:1 29233:1 29258:1 29328:1 29330:1 29334:1 29367:1 29398:1 29417:1 29419:3 29426:2 29455:2 29464:1 29480:1 29486:2 29493:1 29516:2 29551:1 29554:1 29557:2 29564:1 29566:1 29568:2 29583:1 29584:2 29587:3 29591:1 29604:1 29634:3 29635:1 29688:7 29695:1 29701:1 29741:1 29749:1 29752:1 29756:1 29760:1 29775:1 29816:1 29822:1 29827:1 29840:1 29845:1 29887:1 29901:2 29939:1 29952:1 29957:1 29962:2 29995:1 30004:1 30015:1 30023:1 30035:1 30079:3 30083:1 30084:2 30092:1 30093:1 30099:3 30105:1 30119:1 30134:1 30144:2 30165:3 30192:1 30198:2 30199:2 30213:1 30235:2 30238:1 30248:1 30253:1 30261:4 30263:1 30283:1 30284:1 30294:1 30295:1 30299:1 30307:1 30320:1 30329:1 30330:1 30331:1 30350:1 30370:1 30424:1 30454:1 30478:1 30482:1 30483:1 30493:1 30518:1 30535:1 30537:1 30538:2 30541:1 30552:2 30601:1 30617:2 30641:1 30677:1 30679:1 30688:1 30743:1 30777:1 30788:1 30789:2 30790:4 30794:1 30806:1 30814:1 30817:2 30823:1 30855:1 30857:1 30861:1 30912:2 30920:1 30931:1 30944:1 30952:1 30960:2 30970:1 30972:1 30981:4 30987:1 31002:1 31005:1 31020:1 31026:1 31051:1 31053:1 31055:2 31057:1 31059:1 31089:1 31093:1 31112:2 31134:1 31142:1 31148:1 31151:1 31168:1 31177:1 31178:1 31181:1 31188:1 31201:1 31210:1 31226:1 31235:1 31255:2 31264:3 31265:1 31276:1 31283:1 31296:2 31317:2 31329:1 31334:3 31377:3 31384:1 31411:1 31413:8 31425:2 31444:1 31465:1 31478:1 31486:1 31550:1 31563:1 31569:1 31574:1 31578:3 31588:1 31595:1 31610:1 31612:1 31648:1 31660:2 31663:1 31708:1 31725:1 31737:1 31747:1 31753:2 31768:1 31784:1 31787:1 31797:1 31808:1 31834:3 31848:1 31866:2 31874:1 31882:1 31885:1 31891:1 31918:1 31919:1 31929:1 31930:3 31933:1 31946:2 31963:2 31964:1 31968:7 31969:1 31993:1 32010:1 32022:1 32036:1 32066:3 32074:1 32090:1 32099:1 32106:1 32112:1 32117:1 32153:1 32208:1 32219:2 32285:2 32307:1 32311:1 32319:1 32326:1 32329:1 32376:2 32406:1 32413:1 32459:1 32491:1 32492:1 32493:1 32505:2 32515:1 32532:1 32553:2 32574:1 32596:1 32606:1 32612:1 32624:1 32629:1 32636:1 32683:2 32691:1 32700:1 32725:2 32726:1 32732:1 32745:1 32749:2 32750:5 32774:2 32785:2 32787:1 32801:4 32813:1 32832:3 32846:1 32879:1 32890:4 32891:1 32893:1 32896:2 32908:1 32909:1 32917:1 32924:1 32929:2 32941:3 32950:1 32955:1 32958:1 32965:1 32974:1 32984:1 33027:1 33053:1 33057:1 33066:1 33069:1 33080:1 33085:1 33092:1 33094:3 33098:1 33100:1 33112:1 33118:1 33128:3 33133:2 33137:1 33141:1 33142:1 33144:1 33157:2 33183:2 33222:1 33272:1 33276:1 33284:1 33287:1 33296:3 33297:1 33309:2 33330:1 33346:1 33352:3 33388:1 33389:1 33404:1 33413:1 33446:1 33461:3 33467:1 33498:1 33503:1 33505:1 33512:1 33530:1 33533:3 33537:2 33543:2 33545:1 33552:1 33553:2 33555:1 33556:2 33563:2 33579:1 33591:1 33592:1 33595:2 33609:1 33616:1 33620:1 33623:1 33637:1 33663:6 33680:3 33716:1 33730:1 33734:2 33743:1 33760:1 33766:1 33769:1 33794:1 33795:1 33820:1 33824:1 33861:1 33865:1 33880:1 33910:1 33928:1 33930:1 34003:1 34040:1 34056:3 34057:2 34067:4 34071:2 34075:3 34080:1 34083:1 34085:3 34099:1 34104:1 34133:1 34139:1 34144:1 34151:1 34157:1 34160:1 34174:1 34197:1 34221:2 34246:2 34283:1 34306:1 34314:1 34321:1 34351:1 34364:1 34367:1 34371:1 34373:1 34407:1 34410:1 34413:1 34435:13 34445:1 34478:1 34497:5 34566:1 34570:1 34589:1 34596:2 34615:1 34619:1 34627:1 34629:1 34634:8 34643:2 34659:1 34662:1 34673:1 34674:1 34682:1 34691:7 34701:1 34749:1 34757:1 34761:1 34782:1 34794:1 34804:2 34862:1 34878:2 34968:1 34996:25 34997:1 35022:1 35026:3 35031:1 35041:3 35042:1 35056:1 35094:1 35098:1 35124:3 35128:7 35129:1 35135:2 35141:1 35149:1 35152:1 35164:1 35167:1 35177:1 35184:1 35201:1 35207:2 35253:1 35265:1 35281:1 35289:2 35310:1 35311:1 35326:1 35342:1 35354:1 35382:2 35395:1 35410:1 35456:1 35473:1 35499:1 35503:2 35517:1 35520:1 35539:1 35585:1 35589:2 35592:1 35602:2 35625:2 35636:1 35648:1 35656:1 35677:1 35681:1 35696:1 35700:1 35714:1 35721:1 35748:2 35753:1 35757:2 35785:1 35789:2 35805:5 35831:2 35836:1 35837:2 35838:2 35850:21 35888:1 35901:1 35939:1 35953:1 35957:1 35959:2 35965:2 35966:2 36011:1 36028:1 36072:1 36075:2 36091:1 2 9:1 10:1 31:2 32:1 33:1 65:1 69:1 73:1 95:1 104:2 106:2 107:1 122:1 140:1 166:2 177:1 191:1 196:1 200:1 207:1 211:1 235:1 239:1 251:1 256:1 278:1 297:2 302:3 303:1 309:1 322:1 323:1 328:1 330:1 365:1 372:1 412:1 414:3 418:1 435:1 452:1 454:1 478:2 498:1 503:1 520:1 526:1 539:1 553:1 555:1 568:2 601:2 607:1 610:1 621:1 659:1 662:1 672:1 674:1 684:1 690:1 750:1 751:3 755:1 761:1 766:1 795:3 820:22 825:3 831:1 835:1 854:1 861:1 881:1 886:2 919:1 935:2 941:2 964:1 999:2 1019:2 1022:1 1024:3 1028:2 1032:1 1034:1 1082:3 1102:1 1135:3 1136:6 1142:1 1150:5 1167:1 1176:3 1194:2 1203:3 1206:5 1210:1 1212:1 1219:1 1226:1 1233:2 1234:2 1253:2 1256:1 1260:2 1293:1 1301:2 1305:1 1308:1 1326:3 1327:1 1385:2 1386:1 1403:1 1454:1 1459:3 1510:1 1537:1 1541:21 1550:1 1554:1 1555:2 1556:1 1564:3 1567:1 1592:1 1595:2 1596:1 1603:1 1605:1 1610:1 1611:1 1616:1 1617:1 1619:1 1623:1 1627:1 1634:1 1638:1 1651:1 1682:1 1705:1 1706:2 1740:1 1755:1 1757:1 1763:1 1765:1 1771:2 1773:1 1792:1 1808:1 1809:1 1824:1 1836:2 1849:2 1861:1 1888:1 1889:1 1891:2 1895:1 1897:6 1903:1 1910:1 1911:1 1929:1 1960:2 1970:1 1990:1 1991:1 1997:2 2013:1 2031:1 2036:1 2037:1 2043:1 2058:1 2097:1 2098:1 2102:1 2105:1 2106:2 2123:1 2139:1 2145:1 2147:1 2158:2 2164:3 2175:1 2196:1 2198:1 2199:1 2202:1 2218:1 2249:1 2260:1 2265:1 2279:1 2282:1 2292:1 2307:1 2312:1 2317:2 2320:2 2328:1 2345:1 2348:1 2352:3 2368:1 2376:1 2379:2 2390:1 2400:2 2406:2 2420:1 2436:1 2446:1 2455:1 2467:1 2486:3 2508:1 2522:1 2525:1 2547:1 2566:1 2599:1 2604:1 2624:1 2638:1 2642:1 2644:1 2652:1 2655:1 2665:1 2696:6 2721:1 2743:1 2746:1 2747:1 2783:1 2789:1 2817:1 2827:1 2848:1 2852:1 2857:1 2859:1 2861:1 2862:3 2866:2 2867:1 2870:1 2872:3 2877:3 2881:3 2883:4 2887:3 2891:1 2895:1 2897:1 2900:1 2902:2 2906:1 2909:1 2910:1 2919:1 2920:1 2942:1 2954:2 2955:1 2971:3 2999:2 3002:1 3004:1 3026:1 3027:1 3044:1 3045:2 3054:1 3057:1 3075:1 3076:4 3086:2 3098:1 3100:1 3106:1 3116:3 3137:1 3145:1 3165:1 3177:1 3179:1 3186:1 3206:1 3224:2 3244:1 3255:1 3266:1 3267:1 3312:1 3319:1 3322:2 3341:2 3348:1 3367:1 3380:3 3381:1 3389:1 3406:1 3410:1 3413:3 3415:1 3420:1 3423:3 3429:1 3443:1 3451:1 3454:1 3493:1 3497:1 3507:1 3510:3 3516:1 3520:1 3539:2 3547:1 3584:2 3603:1 3612:1 3645:11 3648:22 3651:1 3652:2 3653:1 3663:2 3666:1 3678:1 3681:1 3682:1 3691:3 3692:1 3695:1 3698:1 3706:5 3736:2 3741:1 3756:1 3784:2 3789:1 3792:1 3793:1 3794:1 3836:1 3846:2 3860:1 3867:1 3897:2 4045:1 4070:1 4097:1 4101:1 4119:1 4146:1 4157:1 4161:2 4171:1 4179:1 4211:1 4224:1 4226:2 4251:2 4328:1 4334:1 4355:1 4359:1 4381:1 4383:1 4395:1 4396:1 4411:1 4412:1 4444:1 4448:1 4459:1 4474:1 4479:1 4488:1 4492:1 4517:1 4539:1 4555:1 4564:1 4575:1 4580:1 4601:1 4626:1 4643:3 4645:1 4646:1 4651:2 4654:1 4722:2 4724:1 4767:1 4773:1 4780:2 4795:1 4803:1 4815:1 4820:1 4830:1 4843:1 4855:1 4857:1 4859:1 4867:3 4886:1 4887:1 4914:1 4920:21 4922:2 4927:1 4947:1 4985:1 4992:1 5008:1 5015:2 5019:4 5020:2 5032:2 5039:1 5047:1 5054:2 5058:5 5059:2 5076:2 5119:1 5125:1 5134:1 5153:1 5163:1 5170:2 5178:1 5194:1 5233:1 5235:1 5237:1 5240:1 5241:1 5247:1 5254:1 5272:1 5282:1 5298:1 5299:2 5300:1 5302:2 5307:1 5308:3 5324:1 5348:1 5371:3 5402:2 5408:1 5428:1 5435:2 5437:21 5453:1 5456:1 5459:4 5465:1 5471:1 5473:1 5483:1 5486:1 5492:1 5555:2 5566:6 5588:1 5638:3 5655:2 5663:1 5672:1 5676:2 5679:1 5687:1 5712:1 5731:7 5738:1 5760:1 5832:2 5843:1 5869:1 5879:3 5885:1 5913:1 5924:1 5960:1 5967:1 5969:2 5973:2 5974:1 5980:1 5983:2 6004:1 6005:2 6017:1 6043:1 6049:1 6075:1 6078:1 6096:9 6097:2 6112:1 6115:1 6140:2 6149:2 6158:1 6187:1 6191:1 6207:1 6253:3 6254:1 6257:1 6277:3 6278:4 6279:2 6285:4 6291:1 6292:1 6293:3 6303:1 6309:2 6312:5 6315:2 6316:1 6326:1 6358:1 6407:1 6411:1 6528:1 6580:1 6610:1 6622:1 6623:2 6628:1 6655:1 6683:1 6684:1 6698:1 6738:2 6759:1 6787:1 6799:1 6801:2 6803:1 6807:1 6832:1 6835:1 6859:1 6861:1 6867:3 6870:1 6942:1 6970:1 6972:1 6983:1 6991:1 7008:1 7010:1 7012:1 7036:1 7061:1 7062:1 7065:1 7070:1 7076:1 7083:1 7119:1 7130:1 7138:1 7140:1 7164:1 7213:1 7225:2 7243:1 7250:1 7252:1 7264:1 7289:6 7295:2 7366:1 7377:1 7421:1 7422:1 7423:1 7432:1 7434:1 7451:1 7455:1 7494:1 7525:1 7532:1 7537:1 7561:1 7580:2 7583:1 7589:1 7591:1 7599:1 7604:2 7607:1 7630:1 7656:1 7665:1 7684:1 7707:1 7708:2 7709:1 7721:1 7722:1 7725:1 7727:1 7728:1 7729:3 7734:1 7739:1 7741:2 7764:1 7782:1 7805:1 7822:1 7825:1 7840:1 7847:1 7852:3 7857:2 7860:1 7871:2 7905:1 7937:2 7945:1 7965:1 7966:1 7974:1 7989:5 7995:1 8004:4 8007:1 8008:1 8009:1 8014:1 8015:1 8016:1 8019:2 8020:6 8030:1 8034:1 8054:1 8085:2 8125:1 8136:1 8176:1 8185:1 8186:1 8200:3 8203:3 8260:1 8284:1 8293:1 8297:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:2 8349:1 8370:1 8377:1 8393:2 8421:1 8427:1 8446:1 8449:1 8489:1 8493:1 8496:1 8501:3 8524:1 8564:1 8566:1 8570:1 8577:1 8602:1 8617:1 8648:1 8695:2 8714:1 8731:1 8738:1 8751:1 8772:1 8842:1 8845:1 8849:1 8854:1 8866:1 8883:4 8905:1 8940:1 8943:1 8946:1 8955:1 8966:2 8978:2 9007:1 9012:1 9052:2 9060:1 9090:1 9113:1 9122:1 9123:1 9134:1 9138:1 9146:1 9153:1 9194:1 9205:1 9216:1 9217:2 9231:1 9253:1 9282:1 9307:1 9325:1 9328:1 9333:1 9337:1 9338:5 9372:5 9374:1 9381:1 9394:1 9426:1 9428:2 9433:1 9437:1 9446:1 9484:1 9492:1 9495:1 9499:1 9526:3 9529:1 9577:1 9586:1 9588:1 9612:1 9619:1 9628:7 9629:9 9637:1 9655:1 9657:5 9688:3 9694:1 9702:28 9707:1 9708:1 9711:2 9719:1 9720:1 9723:1 9733:11 9738:3 9744:1 9754:1 9758:1 9780:1 9781:1 9793:2 9803:1 9849:3 9866:1 9870:1 9885:1 9895:1 9924:1 9926:2 9942:2 9957:1 9963:1 9967:2 9968:1 9975:1 9978:1 9999:3 10011:1 10023:1 10058:1 10063:2 10099:1 10103:1 10161:1 10167:1 10175:1 10209:1 10213:1 10223:1 10235:2 10261:1 10286:1 10298:1 10313:1 10314:1 10321:22 10333:1 10338:1 10342:1 10349:1 10356:1 10359:10 10360:3 10376:1 10378:2 10401:1 10406:1 10412:2 10431:1 10444:1 10452:1 10470:26 10488:1 10598:1 10599:1 10612:1 10669:1 10683:1 10686:2 10695:1 10697:1 10701:1 10704:1 10707:1 10711:1 10717:3 10718:1 10736:1 10744:1 10749:1 10772:3 10773:1 10778:1 10789:2 10791:1 10792:1 10796:1 10798:1 10807:2 10808:2 10812:1 10813:1 10826:1 10850:1 10864:1 10878:1 10884:1 10895:1 10900:1 10911:3 10979:1 11002:1 11075:2 11078:1 11109:2 11163:2 11165:1 11169:1 11183:1 11207:1 11212:3 11226:1 11230:1 11231:1 11233:1 11238:1 11247:3 11258:1 11268:1 11270:1 11272:1 11325:1 11340:1 11378:1 11382:4 11391:2 11402:1 11404:1 11422:1 11457:1 11489:3 11522:1 11557:3 11561:2 11564:1 11569:1 11571:3 11572:1 11573:1 11575:1 11583:1 11585:1 11587:2 11598:1 11617:1 11619:1 11625:1 11628:1 11636:1 11640:1 11641:1 11642:2 11645:1 11654:1 11668:1 11678:2 11690:4 11697:2 11707:2 11718:1 11720:1 11744:1 11745:1 11755:1 11771:1 11774:1 11776:1 11791:1 11793:1 11795:2 11804:1 11815:1 11840:1 11851:1 11861:1 11864:1 11865:1 11872:2 11876:1 11882:1 11885:1 11899:1 11903:1 11918:1 11919:1 11930:1 11931:2 11932:5 11936:1 11955:1 11961:2 11966:1 11969:1 11976:1 11978:1 11982:3 11988:1 11992:1 12004:1 12014:1 12033:1 12052:1 12056:1 12057:1 12076:1 12081:1 12082:1 12083:1 12112:1 12113:1 12120:1 12131:1 12146:1 12147:1 12186:1 12191:1 12214:1 12221:5 12230:1 12231:1 12237:3 12239:4 12248:1 12255:1 12301:1 12324:1 12359:1 12361:1 12391:21 12401:1 12407:1 12420:1 12435:1 12446:1 12451:1 12471:1 12473:1 12479:1 12490:2 12493:1 12521:1 12538:1 12540:2 12547:2 12552:1 12561:2 12570:2 12580:1 12592:1 12608:1 12618:2 12619:1 12630:1 12641:1 12643:2 12669:2 12673:5 12692:2 12694:1 12734:3 12757:1 12760:1 12774:1 12777:1 12794:1 12821:1 12824:2 12829:1 12837:1 12848:1 12867:5 12881:1 12898:1 12936:1 12958:1 12977:1 12988:1 13013:3 13028:1 13040:1 13049:1 13051:1 13052:1 13058:1 13079:1 13089:1 13096:1 13112:1 13113:3 13128:1 13154:3 13175:1 13179:1 13187:1 13213:1 13234:1 13258:2 13267:1 13282:1 13283:3 13303:1 13325:2 13357:2 13384:1 13385:2 13411:1 13412:4 13415:1 13418:1 13420:3 13429:1 13443:1 13454:1 13464:1 13468:1 13471:1 13483:1 13493:5 13498:1 13505:1 13516:1 13517:1 13550:1 13568:1 13588:1 13601:1 13632:1 13648:1 13669:2 13686:2 13690:3 13694:1 13704:1 13721:3 13737:1 13749:1 13761:1 13765:1 13767:1 13793:1 13798:8 13803:1 13808:1 13823:1 13824:3 13826:3 13828:1 13837:1 13845:1 13849:1 13859:1 13880:1 13881:1 13891:4 13895:1 13900:1 13901:1 13910:1 13919:1 13921:2 13931:1 13942:1 13972:2 13998:1 14008:1 14009:1 14015:1 14029:1 14032:3 14042:1 14070:2 14071:1 14093:1 14095:1 14105:1 14115:1 14116:2 14122:1 14124:1 14128:1 14134:1 14146:3 14149:1 14152:1 14154:1 14162:1 14186:1 14189:2 14218:1 14235:2 14263:1 14286:1 14296:1 14302:1 14309:1 14322:5 14337:2 14340:1 14376:1 14380:1 14406:1 14416:1 14430:1 14448:1 14488:1 14491:4 14515:1 14519:1 14523:1 14533:1 14550:1 14554:1 14555:1 14559:1 14564:1 14567:3 14568:1 14571:2 14580:3 14611:1 14614:1 14621:2 14628:1 14632:1 14636:1 14638:4 14642:1 14654:1 14667:1 14675:1 14686:1 14716:1 14727:1 14735:1 14737:1 14742:4 14744:1 14787:1 14791:2 14803:1 14840:1 14844:1 14854:1 14869:1 14910:1 14940:1 14941:1 14960:1 15012:1 15037:3 15046:1 15060:3 15083:1 15086:1 15095:1 15140:1 15150:1 15151:1 15152:2 15160:1 15162:1 15185:1 15197:1 15220:1 15222:1 15250:1 15269:1 15292:1 15312:2 15315:3 15326:1 15345:1 15383:1 15385:2 15400:1 15414:1 15487:1 15502:3 15519:1 15525:1 15526:1 15574:1 15577:1 15584:1 15587:1 15595:1 15598:1 15675:1 15705:1 15707:1 15746:1 15747:1 15776:2 15778:22 15782:1 15786:1 15794:1 15797:1 15800:4 15813:1 15844:4 15855:1 15864:2 15868:1 15885:1 15900:1 15910:1 15912:1 15942:1 15943:1 15944:1 15981:1 16001:1 16006:2 16013:1 16083:1 16099:1 16114:1 16134:1 16142:2 16147:1 16149:1 16196:1 16201:1 16241:1 16253:1 16269:1 16285:1 16293:1 16299:1 16303:1 16304:1 16320:1 16327:7 16332:1 16354:1 16357:1 16365:2 16372:1 16375:1 16394:1 16456:1 16490:1 16499:1 16502:2 16505:2 16510:2 16516:2 16528:1 16535:1 16594:1 16609:7 16613:1 16622:1 16643:1 16720:1 16729:1 16731:1 16732:1 16742:1 16775:1 16792:3 16797:3 16803:1 16831:1 16837:1 16854:1 16869:2 16874:2 16882:1 16889:1 16897:1 16898:1 16914:2 16918:1 16929:2 16964:1 16968:2 16970:1 16971:1 16973:1 16977:2 16978:1 16979:6 16980:1 16981:1 16983:1 17003:1 17008:1 17009:1 17013:4 17033:2 17064:1 17075:1 17076:1 17082:1 17114:1 17120:1 17125:1 17152:1 17161:1 17172:8 17175:1 17181:2 17193:1 17204:1 17214:1 17217:1 17230:1 17243:1 17273:1 17276:1 17278:2 17286:3 17303:1 17309:1 17315:3 17319:1 17320:1 17333:6 17336:3 17417:2 17426:1 17438:1 17449:4 17516:1 17545:1 17547:2 17562:1 17564:1 17571:1 17601:1 17623:1 17629:1 17675:4 17679:1 17762:1 17792:1 17794:1 17806:2 17814:2 17817:3 17835:1 17836:1 17849:1 17850:1 17903:1 17918:1 17925:1 17941:1 17942:1 17943:1 17955:1 17957:2 17972:1 17978:1 17981:1 17984:1 17992:1 17993:1 17997:1 17999:1 18000:1 18005:1 18016:1 18030:1 18032:1 18037:1 18039:1 18048:1 18057:2 18080:1 18092:22 18101:2 18105:1 18106:1 18110:1 18120:1 18128:1 18137:1 18198:1 18200:1 18203:3 18214:1 18215:1 18221:2 18244:1 18249:1 18270:3 18276:1 18290:1 18297:1 18298:1 18320:1 18325:1 18339:1 18342:1 18390:1 18442:1 18463:1 18470:2 18474:1 18485:1 18506:1 18535:1 18549:1 18559:1 18560:1 18561:2 18563:1 18574:1 18582:1 18593:1 18601:1 18603:1 18608:7 18645:3 18673:1 18696:1 18708:2 18712:1 18715:1 18732:1 18747:1 18752:1 18767:2 18779:1 18781:1 18793:1 18794:1 18823:1 18867:1 18876:1 18898:2 18954:1 18959:1 18968:1 18993:2 18997:1 19019:1 19029:1 19050:1 19064:2 19067:1 19083:1 19087:1 19096:1 19097:1 19154:1 19175:1 19191:1 19192:2 19193:2 19225:1 19235:1 19263:4 19269:2 19287:1 19303:1 19310:1 19336:1 19361:1 19397:1 19416:1 19437:2 19458:3 19471:1 19475:1 19490:3 19496:2 19500:1 19513:2 19518:1 19525:1 19529:1 19538:3 19548:1 19567:1 19602:1 19605:1 19620:1 19641:2 19645:4 19649:1 19658:1 19664:1 19679:1 19689:1 19691:3 19772:1 19787:1 19796:1 19806:1 19810:8 19814:2 19820:1 19851:2 19854:3 19858:1 19865:1 19894:2 19904:2 19905:1 19907:1 19908:2 19932:8 19947:1 19961:1 19976:2 20027:1 20034:1 20046:1 20065:1 20074:1 20076:1 20078:1 20091:1 20109:4 20110:2 20115:3 20117:1 20125:1 20126:1 20127:1 20130:1 20153:1 20168:1 20174:1 20201:2 20221:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20295:1 20296:1 20318:1 20324:1 20325:1 20350:1 20355:1 20383:1 20390:1 20431:1 20444:1 20446:2 20455:1 20522:1 20537:1 20556:1 20566:1 20568:1 20572:1 20588:2 20604:1 20606:1 20607:1 20608:1 20643:1 20646:1 20649:1 20654:1 20680:1 20727:1 20746:1 20751:3 20754:1 20762:1 20781:1 20783:1 20785:2 20796:1 20799:2 20816:1 20865:1 20885:1 20900:1 20917:1 20941:29 20948:1 20949:1 20974:1 20978:1 20997:1 21003:3 21064:1 21071:1 21072:1 21081:1 21083:1 21097:1 21101:1 21116:1 21124:2 21130:2 21145:2 21149:1 21174:1 21204:1 21209:1 21214:1 21215:1 21261:1 21263:1 21284:1 21292:1 21299:1 21316:1 21318:2 21323:1 21337:1 21371:1 21376:1 21423:1 21443:1 21445:1 21503:1 21508:1 21512:1 21513:1 21522:1 21524:1 21566:1 21586:1 21593:1 21597:1 21602:1 21603:1 21608:2 21612:1 21634:1 21686:2 21701:1 21704:2 21713:2 21724:1 21754:1 21788:1 21819:1 21823:4 21827:1 21829:2 21831:1 21843:1 21864:1 21866:1 21872:2 21875:2 21892:1 21899:1 21917:2 21939:1 21943:1 21975:3 21987:4 22008:2 22032:1 22037:1 22067:1 22076:1 22079:4 22083:1 22084:1 22123:3 22143:2 22169:1 22173:1 22177:1 22181:1 22186:2 22190:1 22298:1 22300:3 22305:1 22315:1 22347:1 22386:1 22388:1 22406:1 22424:1 22429:3 22490:1 22493:2 22497:1 22516:1 22530:1 22547:1 22584:1 22628:5 22643:1 22650:1 22666:1 22677:2 22720:1 22727:2 22754:1 22783:1 22791:1 22800:1 22806:1 22809:1 22824:1 22870:1 22883:1461 22893:1 22909:2 22923:1 22944:1 22969:1 22984:1 23031:3 23039:1 23043:2 23044:1 23079:1 23119:1 23129:1 23139:1 23193:1 23270:1 23304:1 23320:1 23321:1 23348:1 23365:1 23371:1 23411:1 23427:1 23456:1 23457:1 23468:2 23470:1 23482:1 23508:1 23521:2 23523:2 23543:1 23549:1 23603:1 23607:4 23640:3 23647:1 23653:1 23698:1 23706:1 23708:1 23712:1 23718:1 23735:1 23763:1 23773:1 23789:1 23800:1 23812:1 23821:1 23833:4 23834:3 23874:1 23880:4 23914:2 23934:1 23947:13 23958:1 23979:2 24012:2 24013:1 24019:1 24020:1 24047:3 24052:1 24064:2 24066:1 24079:1 24097:2 24105:3 24106:1 24118:1 24185:1 24191:1 24209:2 24217:1 24239:2 24240:1 24255:1 24271:1 24289:1 24292:1 24327:1 24332:1 24342:1 24347:1 24364:1 24369:1 24376:2 24424:1 24449:1 24450:1 24474:1 24479:1 24480:1 24482:1 24483:1 24491:1 24511:1 24518:2 24534:1 24539:1 24553:1 24566:1 24591:2 24592:5 24598:1 24604:1 24612:1 24620:1 24643:1 24651:1 24653:2 24656:3 24658:2 24674:1 24680:2 24681:3 24683:1 24699:1 24700:1 24708:4 24728:2 24753:1 24762:2 24774:1 24781:2 24794:1 24808:2 24820:1 24826:1 24850:1 24853:1 24869:1 24883:3 24894:2 24918:1 24919:1 24924:1 24978:1 25000:1 25047:1 25053:1 25058:1 25076:1 25080:1 25114:4 25122:1 25143:1 25144:1 25157:1 25161:2 25163:1 25179:3 25217:1 25240:1 25244:1 25285:1 25299:1 25300:1 25303:1 25326:1 25334:2 25369:1 25373:1 25379:1 25392:1 25407:2 25417:1 25427:2 25431:1 25448:1 25456:1 25461:1 25481:1 25486:1 25491:1 25498:2 25502:2 25505:1 25511:3 25527:1 25529:1 25541:1 25543:1 25553:1 25554:1 25568:1 25572:1 25580:1 25582:2 25586:1 25590:3 25600:1 25602:1 25605:1 25608:3 25623:2 25630:1 25632:1 25637:2 25699:1 25720:1 25721:3 25725:1 25733:2 25738:1 25781:1 25782:1 25786:2 25793:2 25807:1 25811:1 25815:1 25824:2 25841:1 25846:1 25852:1 25859:1 25867:1 25879:1 25907:1 25917:1 25928:1 25934:1 25952:1 25994:1 26000:1 26011:1 26014:1 26018:3 26031:1 26062:3 26070:1 26091:1 26102:2 26107:1 26119:1 26120:1 26138:1 26153:1 26155:1 26156:2 26191:1 26203:2 26211:1 26214:1 26215:2 26216:2 26228:1 26260:1 26261:1 26279:1 26285:1 26313:1 26327:1 26337:2 26362:1 26385:3 26394:1 26407:1 26424:1 26425:1 26438:3 26444:1 26453:4 26459:1 26460:1 26496:1 26508:4 26552:1 26590:1 26593:1 26602:3 26608:1 26612:3 26614:1 26628:2 26642:1 26651:1 26668:6 26671:1 26679:1 26694:1 26740:1 26743:1 26744:1 26777:2 26779:4 26782:2 26787:1 26794:1 26795:1 26797:2 26808:1 26809:1 26815:1 26818:1 26820:1 26826:2 26827:1 26828:3 26842:1 26843:1 26844:1 26854:1 26874:1 26907:1 26914:1 26930:1 26949:2 26984:1 26995:2 26999:1 27004:4 27029:2 27051:1 27072:1 27087:3 27092:1 27099:1 27127:2 27149:1 27153:2 27183:1 27203:1 27213:1 27243:1 27251:1 27259:1 27260:9 27283:1 27287:2 27294:1 27331:8 27333:2 27339:1 27343:1 27393:1 27396:4 27398:2 27401:1 27415:1 27447:1 27460:7 27478:1 27500:2 27508:1 27522:1 27526:1 27527:1 27542:1 27544:2 27573:1 27591:1 27594:1 27599:1 27601:1 27603:1 27619:3 27633:2 27651:1 27677:3 27723:1 27731:1 27752:1 27760:1 27767:1 27779:1 27782:1 27787:21 27804:1 27808:1 27810:2 27813:3 27816:1 27819:1 27825:1 27854:2 27859:1 27860:1 27862:1 27878:1 27879:1 27889:1 27920:1 27922:1 27925:1 27957:1 27963:1 27973:2 27983:1 27987:2 28000:1 28011:4 28017:1 28052:1 28154:1 28160:1 28179:3 28206:1 28263:1 28276:1 28278:1 28279:1 28287:1 28297:1 28298:2 28308:1 28310:1 28313:3 28317:1 28318:1 28370:22 28384:1 28398:2 28399:1 28433:1 28436:1 28460:1 28464:1 28472:2 28473:1 28482:2 28489:6 28523:1 28528:1 28541:1 28560:1 28567:1 28572:1 28577:3 28582:2 28587:1 28612:1 28621:1 28639:1 28645:1 28647:2 28650:2 28686:1 28752:1 28786:1 28811:1 28814:1 28817:2 28831:1 28833:1 28852:1 28908:1 28913:1 28932:1 28939:2 28940:1 28949:1 28974:2 28983:2 28993:1 28996:1 29004:1 29014:1 29016:1 29020:1 29032:1 29087:1 29126:1 29133:2 29141:1 29149:1 29170:2 29174:1 29179:1 29190:1 29192:1 29215:1 29233:1 29251:1 29258:1 29328:1 29330:1 29334:1 29367:2 29398:1 29417:1 29419:3 29426:2 29455:2 29464:1 29480:1 29486:2 29493:1 29516:2 29551:1 29554:1 29557:2 29564:1 29566:1 29568:2 29583:2 29584:2 29587:3 29591:1 29604:1 29634:3 29635:1 29688:7 29695:1 29701:1 29741:1 29749:1 29752:1 29756:1 29760:1 29775:1 29816:1 29822:1 29827:1 29840:1 29845:2 29887:1 29901:2 29939:1 29952:1 29957:1 29962:2 29995:1 30004:1 30015:1 30023:1 30035:1 30041:1 30079:3 30083:1 30084:2 30092:1 30093:1 30095:2 30099:3 30102:1 30105:1 30119:1 30134:1 30144:2 30165:3 30192:1 30198:2 30199:3 30213:1 30235:2 30238:1 30248:1 30253:1 30261:4 30263:1 30283:1 30284:1 30294:1 30295:1 30299:1 30307:1 30320:1 30329:1 30330:1 30331:1 30350:1 30370:1 30424:1 30434:1 30454:1 30478:1 30482:1 30483:1 30493:1 30518:1 30535:2 30537:2 30538:2 30541:1 30552:2 30601:1 30617:2 30641:1 30677:1 30679:1 30688:1 30743:1 30777:1 30788:1 30789:2 30790:4 30794:1 30806:1 30814:1 30817:3 30823:1 30855:1 30857:1 30861:1 30912:2 30920:1 30931:1 30944:1 30952:1 30960:2 30970:1 30972:1 30981:4 30987:1 31002:1 31005:1 31020:1 31026:1 31051:1 31053:1 31055:2 31057:1 31059:1 31089:1 31093:1 31112:2 31134:1 31142:1 31148:1 31151:1 31168:1 31177:1 31178:1 31181:1 31188:1 31201:1 31210:1 31226:1 31235:1 31255:2 31264:3 31265:1 31276:1 31283:1 31296:2 31317:2 31329:1 31334:3 31377:3 31384:1 31411:1 31413:9 31425:2 31444:1 31465:1 31478:1 31486:1 31550:1 31563:1 31569:1 31574:1 31578:3 31588:1 31595:1 31610:1 31612:1 31641:1 31648:1 31660:2 31663:1 31708:1 31725:1 31737:1 31747:1 31753:2 31768:1 31784:1 31787:1 31797:1 31808:1 31834:3 31848:1 31866:2 31874:1 31882:1 31885:1 31891:1 31918:1 31919:1 31929:1 31930:3 31933:1 31946:2 31963:2 31964:1 31968:7 31969:1 31993:1 32010:1 32022:1 32036:1 32066:3 32074:1 32090:1 32099:1 32106:1 32112:1 32117:1 32153:1 32208:1 32219:2 32285:2 32307:1 32311:1 32319:1 32326:1 32329:1 32376:2 32406:1 32413:1 32459:1 32461:1 32491:1 32492:1 32493:1 32505:2 32515:1 32532:1 32553:2 32574:1 32596:1 32606:1 32612:1 32624:1 32629:1 32636:1 32683:2 32691:1 32700:1 32725:2 32726:1 32732:1 32745:1 32749:2 32750:6 32774:3 32785:2 32787:1 32801:4 32813:1 32832:3 32846:1 32848:1 32879:1 32890:4 32891:1 32893:1 32896:2 32908:1 32909:1 32917:2 32924:1 32929:2 32941:3 32950:1 32955:1 32958:1 32965:1 32974:1 32984:1 33027:1 33053:1 33057:1 33066:1 33069:1 33080:1 33085:1 33092:1 33094:3 33098:1 33100:1 33112:1 33118:1 33128:3 33133:2 33137:1 33141:1 33142:1 33144:1 33157:2 33183:2 33222:1 33272:1 33276:1 33284:1 33287:1 33296:3 33297:1 33309:2 33330:1 33346:1 33352:3 33388:1 33389:1 33404:1 33413:1 33446:1 33461:3 33467:1 33498:1 33503:1 33505:1 33512:1 33530:1 33533:3 33537:2 33543:3 33545:1 33552:1 33553:2 33555:1 33556:2 33563:3 33579:1 33591:1 33592:1 33595:2 33609:1 33616:1 33620:1 33623:1 33637:1 33663:6 33680:3 33716:1 33720:1 33730:1 33734:2 33743:1 33760:1 33766:1 33769:1 33794:2 33795:1 33820:1 33824:1 33861:1 33865:1 33880:2 33910:1 33921:1 33928:1 33930:1 34003:1 34040:1 34056:3 34057:2 34062:1 34067:4 34071:2 34075:3 34080:1 34083:1 34085:3 34099:1 34104:1 34133:1 34139:1 34144:1 34151:1 34157:1 34160:1 34174:1 34197:1 34221:2 34246:2 34283:1 34306:1 34314:1 34321:1 34351:1 34364:1 34367:1 34371:1 34373:1 34407:1 34410:1 34413:2 34435:13 34437:1 34445:1 34478:1 34497:5 34566:1 34570:1 34589:1 34596:2 34615:1 34619:1 34627:1 34629:1 34634:8 34643:2 34654:1 34659:1 34662:1 34673:1 34674:1 34682:1 34691:7 34701:1 34749:1 34757:1 34761:1 34782:1 34794:1 34804:2 34862:1 34878:2 34968:1 34996:26 34997:1 35022:1 35026:4 35031:1 35041:3 35042:2 35056:1 35094:1 35098:1 35124:3 35128:7 35129:1 35135:2 35141:1 35149:1 35152:1 35164:1 35167:1 35177:1 35184:1 35201:1 35207:2 35253:1 35265:1 35281:1 35289:2 35310:1 35311:1 35326:1 35342:1 35354:2 35382:2 35395:1 35410:1 35456:1 35473:1 35499:1 35503:2 35517:2 35520:1 35539:1 35585:1 35589:2 35592:1 35602:2 35625:2 35636:1 35648:1 35656:1 35677:1 35681:1 35696:1 35700:1 35714:1 35721:1 35746:1 35748:2 35753:1 35757:2 35785:1 35789:2 35805:6 35831:2 35836:1 35837:2 35838:2 35850:22 35888:1 35901:1 35939:1 35953:1 35957:1 35959:2 35965:2 35966:2 36011:1 36028:1 36033:1 36072:1 36075:2 36091:1 2 9:1 10:1 31:2 32:1 33:1 65:1 69:1 73:1 95:1 104:2 106:2 107:1 122:1 140:1 166:2 177:1 191:1 196:1 200:1 207:1 211:1 235:1 239:2 251:1 256:1 278:1 297:2 302:3 303:1 309:1 322:1 323:1 328:1 330:1 365:1 372:1 412:1 414:3 418:1 435:1 452:1 454:1 478:2 498:1 503:1 520:1 526:1 539:1 553:1 555:1 568:2 601:2 607:1 610:1 621:1 650:1 659:1 662:1 672:1 674:1 684:1 690:1 750:1 751:3 755:2 761:1 766:1 795:3 820:23 825:3 831:1 835:1 854:1 861:1 881:1 886:2 919:1 935:2 941:2 964:1 999:2 1019:2 1022:1 1024:3 1028:2 1032:1 1034:1 1082:3 1102:1 1135:3 1136:6 1142:1 1150:5 1167:1 1176:3 1181:1 1194:2 1203:3 1206:5 1210:1 1212:1 1219:1 1226:2 1233:2 1234:2 1253:2 1256:1 1260:2 1293:1 1301:2 1305:1 1308:1 1322:1 1326:3 1327:1 1385:2 1386:1 1403:1 1454:1 1459:3 1510:1 1537:1 1541:22 1550:1 1554:2 1555:2 1556:1 1564:3 1567:1 1583:1 1592:1 1595:2 1596:2 1603:1 1605:1 1610:1 1611:1 1613:1 1616:1 1617:2 1619:1 1623:1 1627:1 1634:1 1638:1 1651:1 1652:1 1682:1 1705:1 1706:2 1740:1 1755:1 1757:1 1763:1 1765:1 1771:2 1773:1 1792:1 1808:1 1809:1 1824:1 1836:2 1849:2 1861:1 1870:1 1888:1 1889:1 1891:2 1895:1 1897:6 1903:1 1910:1 1911:1 1918:1 1925:1 1929:1 1960:2 1970:1 1990:1 1991:1 1997:2 2013:1 2031:1 2036:1 2037:1 2043:1 2058:1 2088:1 2097:1 2098:1 2102:1 2105:1 2106:2 2123:1 2139:1 2145:1 2147:1 2158:2 2164:3 2175:1 2196:1 2198:1 2199:1 2202:1 2218:1 2249:1 2260:1 2265:1 2279:1 2282:1 2292:1 2307:1 2312:1 2317:2 2320:2 2328:1 2345:1 2348:1 2352:3 2355:1 2368:1 2376:1 2379:2 2390:1 2400:2 2406:2 2420:1 2436:1 2446:1 2455:1 2467:1 2486:3 2508:1 2522:2 2525:1 2547:1 2566:1 2599:1 2604:1 2619:1 2624:1 2638:1 2642:1 2644:1 2652:1 2655:1 2665:1 2696:6 2721:1 2743:1 2746:1 2747:1 2783:1 2789:1 2817:1 2827:1 2848:1 2852:1 2857:1 2859:1 2861:2 2862:4 2866:2 2867:1 2870:1 2872:3 2877:4 2881:3 2883:4 2887:3 2891:1 2895:1 2897:1 2900:1 2902:4 2906:1 2909:1 2910:1 2919:1 2920:1 2942:1 2954:2 2955:1 2971:3 2999:2 3002:1 3004:1 3026:1 3027:1 3044:1 3045:2 3054:1 3057:1 3075:2 3076:4 3086:3 3098:1 3100:1 3106:1 3116:3 3137:1 3145:1 3165:1 3177:2 3179:1 3186:1 3206:1 3224:2 3244:1 3255:1 3266:1 3267:1 3312:1 3319:1 3322:2 3341:2 3348:2 3366:1 3367:1 3371:1 3380:3 3381:1 3389:1 3406:1 3410:1 3413:3 3415:1 3420:1 3423:3 3429:1 3443:1 3451:1 3454:1 3493:1 3497:2 3507:1 3510:4 3516:1 3520:1 3539:2 3547:1 3584:2 3603:1 3612:2 3645:11 3648:23 3651:1 3652:2 3653:1 3663:2 3666:1 3678:1 3681:1 3682:1 3691:4 3692:1 3695:1 3698:1 3706:5 3736:2 3741:1 3756:1 3784:2 3789:1 3792:1 3793:1 3794:1 3836:1 3846:2 3851:1 3860:1 3867:1 3897:2 3926:1 4045:1 4070:1 4097:1 4101:1 4119:1 4146:1 4157:1 4161:3 4171:1 4179:1 4211:1 4224:1 4226:2 4251:2 4328:1 4334:1 4355:1 4359:1 4381:1 4383:1 4395:1 4396:1 4402:1 4411:1 4412:1 4444:1 4448:1 4459:1 4474:1 4479:1 4488:1 4492:1 4517:1 4539:1 4555:1 4564:1 4575:1 4580:1 4601:1 4626:1 4643:3 4645:1 4646:1 4651:2 4654:1 4722:2 4724:1 4767:1 4773:1 4780:2 4795:1 4803:1 4813:1 4815:1 4820:1 4830:1 4843:1 4855:1 4857:1 4859:1 4867:3 4886:1 4887:1 4914:1 4920:22 4922:2 4927:1 4947:1 4985:1 4992:1 5008:1 5015:2 5019:4 5020:2 5032:2 5039:1 5047:1 5054:2 5058:5 5059:2 5076:2 5119:1 5125:1 5134:1 5153:1 5163:1 5170:3 5178:1 5194:1 5233:1 5235:1 5237:1 5240:1 5241:1 5247:1 5254:1 5272:1 5282:1 5298:1 5299:2 5300:1 5302:2 5307:1 5308:3 5324:1 5348:1 5371:3 5402:2 5408:1 5428:1 5435:2 5437:22 5444:1 5453:1 5456:1 5459:4 5465:1 5471:1 5473:1 5483:1 5486:1 5492:1 5555:2 5566:6 5588:1 5638:3 5655:2 5663:1 5672:2 5676:2 5679:1 5687:1 5712:1 5731:7 5738:1 5760:1 5832:3 5843:1 5869:1 5879:5 5885:1 5913:1 5924:1 5960:1 5967:1 5969:2 5973:2 5974:1 5980:1 5983:2 6004:1 6005:3 6017:1 6043:1 6049:1 6075:1 6078:1 6096:11 6097:2 6112:1 6115:1 6140:2 6149:2 6158:1 6187:1 6191:1 6207:1 6253:3 6254:1 6257:1 6277:3 6278:4 6279:2 6285:4 6291:1 6292:1 6293:3 6303:1 6309:2 6312:5 6315:2 6316:1 6326:1 6358:1 6407:1 6411:1 6528:1 6580:1 6610:1 6622:1 6623:2 6628:1 6655:1 6679:1 6683:1 6684:1 6698:1 6738:2 6759:1 6787:1 6799:1 6801:2 6803:1 6807:1 6832:1 6835:1 6859:1 6861:1 6867:3 6870:1 6942:1 6970:1 6972:1 6983:1 6991:1 7008:1 7010:1 7012:1 7036:2 7061:2 7062:1 7065:1 7070:1 7076:1 7083:1 7119:1 7130:1 7138:1 7140:1 7164:1 7213:1 7225:2 7243:1 7250:1 7252:1 7264:1 7289:6 7295:3 7366:1 7377:1 7421:1 7422:1 7423:1 7432:1 7434:1 7451:1 7455:1 7494:1 7525:1 7532:1 7537:1 7561:1 7580:2 7583:1 7589:1 7591:1 7599:1 7604:2 7607:1 7630:1 7656:1 7665:1 7684:1 7707:1 7708:2 7709:1 7715:1 7721:1 7722:1 7725:1 7727:1 7728:1 7729:3 7734:1 7739:1 7741:2 7764:1 7782:1 7805:1 7822:1 7825:1 7840:1 7847:1 7852:3 7857:2 7860:1 7871:2 7905:1 7937:2 7945:1 7965:1 7966:1 7974:1 7989:5 7995:1 8004:4 8006:1 8007:1 8008:1 8009:1 8014:1 8015:1 8016:1 8019:2 8020:6 8030:1 8034:1 8054:1 8085:2 8125:1 8136:1 8176:1 8185:1 8186:1 8200:3 8203:3 8260:1 8284:1 8293:1 8297:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:2 8349:1 8370:1 8377:1 8393:2 8421:1 8427:1 8446:1 8449:1 8489:1 8493:1 8496:1 8501:3 8524:1 8564:2 8566:1 8570:1 8577:1 8602:1 8617:1 8648:1 8695:2 8714:1 8731:1 8738:1 8751:1 8772:1 8842:1 8845:1 8849:1 8854:1 8866:1 8883:4 8905:1 8940:1 8943:1 8946:1 8955:1 8966:2 8978:2 9007:1 9012:1 9052:2 9060:1 9090:1 9113:1 9122:1 9123:1 9134:1 9138:1 9143:1 9146:1 9153:1 9194:1 9205:1 9216:1 9217:2 9231:1 9253:1 9282:1 9307:1 9325:1 9328:1 9333:1 9337:1 9338:5 9372:6 9374:1 9381:1 9394:1 9426:1 9428:2 9433:1 9437:1 9446:1 9484:1 9492:1 9495:1 9499:1 9526:4 9529:1 9577:1 9586:1 9588:1 9612:2 9619:1 9628:8 9629:9 9637:1 9655:1 9657:5 9688:3 9694:1 9702:33 9707:1 9708:1 9711:2 9719:1 9720:1 9723:1 9733:11 9738:3 9744:1 9754:1 9758:1 9780:1 9781:1 9793:2 9803:1 9849:4 9866:2 9870:1 9885:1 9895:1 9924:1 9926:2 9942:2 9957:1 9963:1 9967:3 9968:1 9975:1 9978:1 9999:4 10011:1 10023:1 10058:1 10063:2 10099:1 10103:1 10161:1 10167:1 10175:1 10209:1 10213:1 10223:1 10235:2 10261:2 10286:1 10298:1 10313:1 10314:1 10321:23 10333:1 10338:1 10342:1 10349:1 10356:1 10359:10 10360:3 10376:1 10378:2 10401:1 10406:1 10412:2 10431:1 10444:1 10452:1 10470:27 10488:1 10598:1 10599:1 10612:1 10669:1 10683:1 10686:2 10695:1 10697:1 10701:1 10704:1 10707:1 10711:1 10716:1 10717:3 10718:1 10736:1 10744:1 10749:1 10772:3 10773:1 10778:1 10789:2 10791:1 10792:1 10796:1 10798:1 10807:2 10808:2 10812:1 10813:1 10826:1 10850:1 10864:1 10878:1 10884:1 10895:1 10900:1 10911:3 10979:1 10994:1 11002:1 11075:3 11078:1 11109:2 11163:2 11165:1 11169:1 11183:1 11207:1 11212:3 11226:1 11230:1 11231:1 11233:1 11238:1 11247:3 11258:1 11268:1 11270:1 11272:1 11325:1 11340:1 11378:1 11382:4 11391:2 11402:1 11404:1 11422:1 11457:1 11489:4 11522:2 11557:3 11561:2 11564:1 11569:1 11571:3 11572:1 11573:1 11575:1 11583:1 11585:2 11587:2 11598:1 11617:1 11619:1 11625:1 11628:1 11636:1 11640:1 11641:1 11642:2 11645:1 11654:1 11668:1 11678:2 11690:4 11697:2 11707:2 11718:1 11720:1 11739:1 11744:1 11745:1 11755:1 11771:1 11774:1 11776:1 11791:1 11793:1 11795:2 11804:1 11815:1 11840:1 11851:1 11861:1 11864:1 11865:1 11872:2 11876:1 11882:1 11885:1 11899:1 11903:1 11918:1 11919:1 11930:1 11931:2 11932:5 11936:1 11955:1 11961:2 11966:1 11969:1 11976:1 11978:1 11982:3 11988:1 11992:1 12004:1 12014:1 12033:1 12052:1 12056:1 12057:1 12076:1 12081:1 12082:1 12083:2 12112:1 12113:1 12120:1 12131:1 12146:1 12147:1 12186:1 12191:1 12214:1 12221:5 12230:1 12231:1 12237:3 12239:4 12248:1 12255:1 12301:1 12324:1 12339:1 12359:1 12361:1 12391:22 12401:1 12407:1 12420:1 12435:1 12446:1 12451:1 12458:1 12471:1 12473:1 12479:1 12490:2 12493:1 12497:1 12521:1 12538:1 12540:3 12547:2 12552:1 12561:2 12570:2 12580:1 12592:1 12608:1 12618:2 12619:1 12630:1 12641:1 12643:2 12669:2 12673:5 12692:2 12694:1 12734:3 12756:1 12757:1 12760:1 12774:1 12777:1 12794:1 12821:1 12824:2 12829:1 12837:1 12848:1 12850:1 12867:5 12881:1 12898:1 12936:1 12958:1 12977:2 12988:1 13013:3 13028:1 13040:2 13049:1 13051:1 13052:1 13058:1 13079:1 13089:1 13096:1 13112:1 13113:3 13128:1 13154:3 13175:1 13179:1 13187:1 13213:1 13234:1 13258:3 13267:1 13282:1 13283:4 13303:1 13325:2 13357:2 13384:1 13385:2 13411:1 13412:4 13415:1 13418:1 13420:3 13429:1 13443:1 13454:1 13464:1 13468:1 13471:1 13483:1 13493:5 13498:1 13505:1 13516:1 13517:1 13550:1 13568:1 13588:1 13601:1 13632:1 13633:1 13648:1 13669:2 13686:2 13690:3 13694:1 13704:1 13721:3 13737:1 13749:1 13761:1 13765:1 13767:1 13777:1 13793:1 13798:8 13803:1 13808:1 13823:1 13824:3 13826:3 13828:1 13837:1 13845:1 13849:1 13859:1 13880:1 13881:1 13891:4 13895:1 13900:1 13901:1 13910:1 13919:1 13921:2 13931:1 13942:1 13972:2 13998:1 14008:1 14009:1 14015:1 14029:1 14032:3 14042:1 14070:2 14071:1 14093:1 14095:2 14105:1 14115:1 14116:2 14122:1 14124:1 14128:1 14134:1 14145:1 14146:4 14149:1 14152:1 14154:1 14162:1 14186:1 14189:2 14218:1 14235:2 14263:1 14286:1 14296:1 14302:1 14309:1 14322:5 14337:2 14340:1 14342:1 14376:1 14380:1 14406:1 14416:1 14430:1 14448:2 14488:1 14491:4 14515:1 14519:1 14523:1 14533:2 14550:1 14554:1 14555:1 14559:1 14564:1 14567:4 14568:1 14571:2 14580:4 14611:1 14614:1 14621:2 14628:1 14632:1 14636:1 14638:4 14642:1 14654:1 14667:1 14675:2 14686:1 14716:1 14727:3 14735:1 14737:1 14742:4 14744:1 14787:1 14791:2 14803:1 14840:1 14844:1 14854:1 14869:1 14910:1 14940:1 14941:1 14960:1 15012:1 15037:3 15046:1 15060:3 15083:1 15086:1 15095:1 15140:1 15150:1 15151:1 15152:2 15160:1 15162:1 15185:1 15197:1 15210:1 15220:1 15222:1 15250:1 15269:1 15292:1 15312:2 15315:3 15326:1 15345:1 15383:1 15385:2 15400:1 15414:1 15487:1 15502:3 15519:1 15525:1 15526:1 15574:1 15577:1 15584:1 15587:1 15595:1 15598:1 15675:1 15705:1 15707:1 15746:1 15747:1 15776:2 15778:23 15782:1 15786:1 15794:1 15797:1 15800:4 15813:1 15844:5 15855:1 15864:2 15868:1 15885:1 15900:1 15910:1 15912:1 15942:1 15943:1 15944:1 15981:1 16001:1 16006:2 16013:1 16083:1 16099:1 16114:1 16134:1 16142:2 16147:1 16149:1 16173:1 16190:1 16196:1 16201:1 16241:1 16253:1 16269:1 16285:1 16293:1 16299:1 16303:1 16304:1 16320:1 16327:7 16332:1 16354:1 16357:1 16365:2 16372:1 16375:1 16394:1 16456:1 16490:1 16499:1 16502:2 16505:2 16510:3 16516:3 16528:1 16535:1 16594:1 16609:8 16613:1 16622:1 16643:1 16720:1 16729:1 16731:1 16732:2 16742:1 16775:1 16792:3 16797:3 16803:1 16823:1 16831:1 16837:1 16854:1 16869:2 16874:2 16882:1 16889:1 16897:1 16898:1 16914:2 16918:1 16929:2 16964:1 16968:2 16970:1 16971:1 16973:1 16977:2 16978:1 16979:6 16980:1 16981:1 16983:1 17002:1 17003:1 17004:1 17008:1 17009:1 17013:4 17026:1 17033:2 17064:1 17075:1 17076:1 17082:1 17114:1 17120:1 17125:1 17152:1 17161:1 17172:9 17175:1 17181:2 17193:1 17204:1 17214:1 17217:1 17230:1 17243:1 17273:1 17276:1 17278:2 17286:4 17303:1 17309:1 17315:3 17319:1 17320:2 17333:7 17336:3 17417:2 17426:1 17438:1 17449:4 17450:1 17516:1 17545:1 17547:2 17562:1 17564:1 17571:1 17601:1 17607:1 17623:1 17629:1 17675:4 17679:1 17762:1 17769:1 17792:1 17794:1 17798:1 17806:2 17814:2 17817:3 17835:2 17836:1 17849:1 17850:1 17903:1 17918:1 17925:1 17941:1 17942:1 17943:1 17955:1 17957:2 17972:1 17978:1 17981:1 17984:1 17992:1 17993:1 17997:1 17999:1 18000:1 18005:1 18016:1 18030:1 18032:1 18037:1 18039:1 18048:1 18057:2 18080:1 18092:23 18101:2 18105:1 18106:1 18110:1 18120:1 18128:1 18137:1 18184:1 18198:1 18200:1 18203:4 18214:1 18215:1 18221:2 18244:1 18249:1 18270:3 18276:1 18277:1 18290:1 18297:1 18298:1 18320:2 18325:1 18339:1 18342:1 18390:1 18392:1 18442:1 18463:1 18470:2 18474:1 18485:1 18506:1 18535:1 18549:1 18559:1 18560:1 18561:2 18563:1 18574:1 18582:1 18593:1 18601:1 18603:1 18608:7 18645:3 18651:1 18673:1 18696:1 18708:2 18712:1 18715:1 18732:1 18747:1 18752:1 18767:2 18779:2 18781:3 18793:1 18794:1 18823:1 18867:1 18876:1 18898:2 18954:1 18959:1 18968:1 18993:2 18997:1 19019:1 19029:1 19050:1 19060:1 19064:2 19067:1 19083:1 19087:1 19096:1 19097:1 19154:1 19175:1 19191:1 19192:2 19193:2 19225:1 19235:1 19263:4 19269:2 19287:1 19303:1 19310:1 19336:1 19361:1 19397:1 19416:1 19437:2 19452:1 19458:3 19471:1 19475:1 19490:3 19496:2 19500:1 19513:2 19518:1 19525:1 19529:1 19538:3 19548:1 19567:1 19602:1 19605:1 19620:1 19641:2 19645:4 19649:1 19658:1 19664:1 19679:1 19689:1 19691:3 19703:1 19772:1 19775:1 19787:1 19796:1 19806:1 19810:9 19814:2 19820:1 19851:2 19854:3 19858:1 19865:1 19894:2 19904:2 19905:1 19907:1 19908:2 19932:8 19947:1 19961:1 19976:3 20027:1 20034:1 20046:1 20065:1 20074:1 20076:1 20078:1 20091:1 20109:4 20110:2 20115:3 20117:1 20125:1 20126:1 20127:1 20130:1 20153:1 20168:1 20174:1 20201:2 20221:1 20231:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20295:1 20296:1 20318:1 20324:1 20325:1 20350:1 20355:1 20383:1 20390:1 20431:1 20444:1 20446:2 20455:1 20522:1 20537:1 20556:1 20566:1 20568:1 20572:1 20588:2 20604:1 20606:1 20607:1 20608:1 20643:1 20646:1 20649:1 20654:1 20680:1 20727:1 20746:1 20751:3 20754:1 20762:1 20781:1 20783:1 20785:2 20796:1 20799:2 20816:1 20865:1 20885:1 20900:1 20917:1 20941:30 20948:1 20949:1 20974:1 20978:1 20997:1 21003:3 21064:1 21071:1 21072:1 21081:1 21083:1 21097:1 21101:1 21116:1 21124:2 21130:2 21145:2 21149:1 21174:1 21204:1 21209:1 21214:1 21215:1 21261:1 21263:1 21284:1 21292:1 21299:1 21316:1 21318:2 21323:1 21337:1 21371:1 21376:1 21423:1 21443:1 21445:1 21503:1 21508:1 21512:1 21513:1 21522:1 21524:1 21540:1 21566:1 21586:1 21593:1 21597:1 21602:1 21603:1 21608:2 21612:2 21634:1 21686:2 21701:1 21704:2 21713:2 21724:1 21754:1 21788:1 21806:1 21819:1 21823:4 21827:1 21829:2 21831:1 21843:1 21864:1 21866:1 21872:2 21875:2 21886:1 21892:1 21899:1 21917:2 21939:2 21943:1 21975:4 21987:4 22008:2 22032:1 22037:1 22067:1 22076:1 22079:5 22083:1 22084:2 22123:3 22143:2 22169:1 22173:1 22177:1 22181:1 22186:2 22190:1 22298:1 22300:4 22305:1 22315:1 22347:1 22362:1 22386:1 22388:1 22406:1 22424:1 22429:3 22490:1 22493:2 22497:1 22516:1 22530:1 22547:1 22584:1 22628:5 22643:1 22650:1 22666:1 22677:2 22720:1 22727:3 22754:1 22783:1 22791:1 22800:1 22806:1 22809:1 22824:1 22839:1 22870:1 22883:1521 22893:1 22909:2 22923:1 22944:1 22966:1 22969:1 22984:1 23031:3 23039:1 23043:2 23044:1 23079:1 23113:1 23119:1 23129:1 23139:1 23164:1 23193:1 23270:1 23304:1 23320:1 23321:1 23348:1 23365:1 23371:1 23411:1 23427:1 23456:1 23457:1 23468:2 23470:1 23482:1 23508:1 23521:2 23523:2 23543:1 23549:1 23603:1 23607:4 23640:3 23647:1 23653:1 23698:1 23706:1 23708:1 23712:1 23718:1 23735:1 23763:1 23766:1 23773:1 23789:1 23800:1 23812:1 23821:1 23833:5 23834:3 23874:1 23880:4 23914:2 23934:1 23947:13 23958:1 23979:2 24012:2 24013:1 24019:1 24020:1 24044:1 24047:3 24052:1 24064:2 24066:1 24079:1 24092:1 24097:2 24105:3 24106:1 24118:1 24185:1 24191:1 24209:2 24217:1 24239:2 24240:1 24255:1 24271:1 24289:1 24292:1 24327:1 24332:1 24342:1 24347:1 24364:1 24369:1 24376:2 24424:1 24449:1 24450:1 24474:1 24479:1 24480:1 24482:1 24483:1 24491:1 24511:1 24518:2 24534:1 24539:1 24553:1 24566:1 24591:2 24592:5 24598:1 24604:1 24612:1 24620:1 24640:1 24643:1 24651:1 24653:2 24656:3 24658:2 24674:1 24680:2 24681:3 24683:1 24699:1 24700:1 24708:4 24728:2 24753:1 24762:2 24774:1 24781:2 24794:1 24808:2 24820:1 24826:1 24850:1 24853:1 24869:1 24883:3 24894:2 24918:1 24919:1 24924:1 24978:1 25000:1 25047:1 25053:1 25058:1 25076:1 25080:1 25114:4 25122:1 25143:1 25144:1 25157:1 25161:2 25163:1 25179:3 25217:1 25240:1 25244:1 25285:1 25299:1 25300:1 25303:1 25326:1 25334:2 25369:1 25373:1 25379:1 25392:1 25407:2 25417:1 25427:2 25428:1 25431:1 25448:1 25456:1 25461:1 25481:1 25486:1 25491:1 25498:2 25502:2 25505:1 25511:3 25527:1 25529:1 25541:1 25543:1 25553:1 25554:1 25568:1 25572:1 25580:1 25582:2 25586:1 25590:3 25600:1 25602:1 25605:1 25608:3 25609:1 25623:2 25630:1 25632:1 25637:3 25699:1 25720:1 25721:3 25725:1 25733:2 25738:1 25781:1 25782:1 25786:2 25793:2 25807:1 25811:1 25815:1 25824:2 25841:1 25846:1 25852:1 25859:1 25867:1 25879:1 25907:1 25917:1 25928:1 25934:1 25948:1 25952:1 25973:1 25994:1 26000:1 26011:1 26014:1 26018:3 26031:1 26052:1 26062:3 26070:1 26091:1 26102:2 26107:1 26119:1 26120:1 26138:1 26153:1 26155:1 26156:3 26191:1 26203:2 26211:1 26214:1 26215:2 26216:2 26228:1 26236:1 26260:1 26261:1 26279:1 26285:1 26313:1 26327:1 26337:2 26361:1 26362:1 26385:3 26394:1 26407:1 26424:1 26425:1 26438:3 26444:1 26453:4 26459:1 26460:1 26496:1 26508:5 26552:1 26590:1 26593:1 26602:3 26608:1 26610:1 26612:3 26614:1 26628:2 26642:1 26651:1 26668:6 26671:1 26679:1 26694:1 26740:1 26743:1 26744:1 26777:2 26779:4 26782:2 26787:1 26794:1 26795:1 26797:2 26808:1 26809:1 26815:1 26818:1 26820:1 26826:2 26827:1 26828:3 26842:1 26843:1 26844:1 26854:1 26874:1 26907:1 26914:1 26930:1 26949:2 26984:1 26995:2 26999:1 27004:4 27029:2 27051:1 27072:1 27087:3 27092:1 27099:1 27114:1 27127:2 27149:1 27153:2 27183:1 27203:1 27213:2 27243:1 27251:1 27259:1 27260:11 27283:1 27287:2 27294:1 27331:8 27333:2 27339:1 27343:1 27393:1 27396:4 27398:2 27401:1 27415:1 27447:1 27460:7 27478:1 27500:2 27508:1 27522:1 27526:1 27527:1 27542:1 27544:2 27573:1 27591:1 27594:1 27599:1 27601:1 27603:2 27619:3 27633:2 27651:1 27653:1 27677:3 27723:1 27731:1 27752:1 27760:1 27767:1 27779:1 27782:1 27787:22 27804:1 27808:1 27810:2 27813:3 27816:1 27819:1 27825:1 27854:2 27859:2 27860:1 27862:1 27878:1 27879:1 27889:1 27920:1 27922:1 27925:1 27957:1 27963:1 27973:3 27974:1 27983:1 27987:2 28000:1 28011:4 28017:1 28052:1 28154:1 28160:1 28179:3 28191:1 28206:1 28263:1 28276:1 28278:1 28279:1 28287:1 28297:1 28298:2 28308:1 28310:1 28313:3 28317:1 28318:1 28370:23 28384:1 28398:2 28399:1 28433:1 28436:1 28460:1 28464:1 28472:2 28473:1 28482:2 28483:1 28489:6 28523:1 28528:1 28541:1 28560:1 28567:1 28572:1 28577:3 28582:2 28587:1 28612:1 28621:1 28639:1 28645:1 28647:2 28650:2 28686:1 28752:1 28786:1 28811:1 28814:1 28817:2 28826:1 28831:1 28833:1 28852:1 28908:1 28913:1 28932:1 28939:2 28940:1 28949:1 28974:2 28983:2 28993:1 28996:1 29004:1 29014:1 29016:1 29020:1 29032:1 29087:1 29126:1 29133:2 29141:1 29149:1 29170:2 29174:1 29179:1 29190:1 29192:1 29215:1 29233:1 29251:1 29258:1 29297:1 29328:1 29330:1 29334:1 29367:2 29398:1 29417:1 29419:3 29426:2 29455:2 29464:1 29480:1 29486:2 29493:1 29516:2 29551:1 29554:1 29557:2 29564:1 29566:1 29568:2 29583:2 29584:2 29587:3 29591:1 29592:1 29604:1 29634:3 29635:1 29688:7 29695:1 29701:1 29741:1 29749:1 29752:1 29756:1 29760:1 29775:1 29816:1 29822:1 29827:1 29840:1 29845:2 29887:1 29901:2 29939:1 29952:1 29957:1 29962:2 29969:1 29995:1 30004:1 30015:1 30023:1 30035:1 30041:1 30079:3 30083:1 30084:2 30092:1 30093:1 30095:2 30099:3 30102:1 30105:2 30119:1 30134:1 30144:2 30165:3 30192:1 30198:2 30199:3 30213:1 30235:2 30238:1 30248:1 30253:1 30261:4 30263:1 30283:1 30284:1 30290:1 30294:1 30295:1 30299:1 30307:1 30319:1 30320:1 30329:1 30330:1 30331:1 30350:1 30370:1 30424:1 30434:1 30454:1 30478:1 30482:1 30483:1 30493:1 30518:1 30535:2 30537:2 30538:2 30541:1 30552:2 30601:1 30617:2 30641:1 30677:1 30679:1 30688:1 30743:1 30777:1 30787:1 30788:1 30789:2 30790:4 30794:1 30806:1 30814:3 30817:3 30823:1 30855:1 30857:1 30861:1 30912:2 30920:2 30931:1 30944:1 30952:1 30960:2 30970:1 30972:1 30981:4 30987:1 31002:1 31005:1 31015:1 31020:1 31026:1 31051:3 31053:1 31055:2 31057:1 31059:1 31089:1 31092:1 31093:1 31112:2 31134:1 31142:1 31148:1 31151:1 31168:3 31177:1 31178:1 31181:1 31188:1 31201:1 31210:1 31226:1 31235:1 31255:2 31264:3 31265:2 31276:1 31283:1 31296:2 31317:2 31329:1 31334:3 31377:4 31384:1 31411:1 31413:11 31425:2 31444:1 31465:1 31478:1 31486:1 31550:1 31563:1 31569:1 31574:1 31578:3 31588:1 31595:1 31610:1 31612:1 31641:1 31648:1 31660:2 31663:1 31708:1 31725:1 31737:1 31747:1 31753:2 31768:1 31784:1 31787:1 31797:1 31808:1 31834:3 31848:1 31866:2 31874:1 31882:1 31885:1 31891:1 31918:1 31919:1 31929:1 31930:3 31933:1 31946:2 31963:2 31964:1 31968:7 31969:1 31993:1 32010:1 32022:1 32036:1 32066:4 32074:1 32090:1 32099:1 32106:1 32112:1 32117:1 32136:1 32153:1 32208:1 32219:2 32285:2 32307:1 32311:1 32319:1 32326:1 32329:1 32376:2 32406:1 32413:1 32459:1 32461:1 32491:1 32492:1 32493:1 32505:2 32515:1 32532:1 32553:2 32574:1 32596:1 32606:1 32612:1 32624:1 32629:1 32636:1 32683:2 32691:1 32700:1 32725:2 32726:1 32732:1 32745:1 32749:2 32750:6 32774:3 32785:2 32787:1 32801:4 32813:1 32832:3 32846:1 32848:1 32879:1 32890:5 32891:1 32893:1 32896:2 32908:1 32909:1 32917:2 32924:1 32929:3 32941:3 32950:1 32955:1 32958:1 32965:1 32974:1 32984:1 33027:1 33053:1 33057:1 33066:1 33069:1 33080:1 33085:1 33092:1 33094:3 33098:1 33100:1 33112:1 33118:1 33128:3 33133:2 33137:1 33141:1 33142:1 33144:1 33157:2 33180:1 33183:2 33222:1 33272:1 33276:1 33284:1 33287:1 33296:3 33297:1 33309:2 33330:1 33335:1 33346:1 33352:3 33388:1 33389:1 33404:1 33413:1 33440:1 33446:1 33461:3 33467:1 33498:1 33503:1 33505:1 33512:1 33530:1 33533:3 33537:2 33543:3 33545:1 33552:1 33553:2 33555:1 33556:2 33563:3 33579:1 33591:1 33592:1 33595:2 33609:1 33616:1 33620:1 33623:1 33637:1 33663:6 33669:1 33680:4 33716:1 33720:1 33730:1 33734:2 33743:1 33760:1 33766:1 33769:1 33794:2 33795:1 33820:1 33824:1 33861:1 33865:1 33880:2 33910:1 33921:1 33928:1 33930:1 34003:1 34040:1 34056:3 34057:2 34062:1 34067:4 34071:2 34075:4 34080:1 34083:1 34085:3 34099:1 34104:1 34133:1 34139:1 34144:1 34151:3 34157:1 34160:1 34174:1 34197:1 34221:2 34246:2 34283:1 34306:1 34314:1 34321:1 34351:1 34353:1 34364:1 34367:1 34371:1 34373:1 34407:1 34410:1 34413:2 34435:13 34437:1 34445:1 34478:2 34497:5 34566:1 34570:1 34589:1 34596:2 34615:1 34619:1 34627:1 34629:1 34634:8 34643:2 34654:1 34659:1 34662:1 34673:1 34674:1 34682:1 34691:9 34701:1 34749:1 34757:1 34761:1 34782:1 34794:1 34804:2 34862:1 34878:2 34968:1 34989:1 34996:27 34997:1 35022:1 35026:4 35031:1 35041:4 35042:2 35056:1 35094:1 35098:1 35124:3 35128:8 35129:1 35135:2 35141:1 35149:1 35152:1 35164:1 35167:1 35177:1 35184:1 35201:1 35207:2 35253:1 35265:1 35281:1 35289:2 35310:1 35311:1 35326:1 35342:1 35354:2 35382:2 35395:1 35410:1 35456:1 35473:1 35488:1 35499:1 35503:2 35517:2 35520:1 35539:1 35585:1 35589:2 35592:1 35602:2 35625:2 35635:1 35636:1 35648:1 35656:1 35665:1 35677:1 35681:1 35692:1 35696:1 35700:1 35714:1 35721:1 35746:1 35748:2 35753:1 35757:2 35785:1 35789:2 35805:6 35831:2 35836:1 35837:2 35838:2 35850:23 35862:1 35888:1 35901:1 35939:1 35953:1 35957:1 35959:2 35965:2 35966:4 36011:1 36028:1 36033:1 36072:1 36075:2 36091:1 2 9:1 10:1 31:2 32:1 33:1 65:1 69:1 73:1 95:1 104:2 106:2 107:1 122:1 140:1 166:2 177:1 191:1 196:1 200:2 207:1 211:1 235:1 239:2 251:1 256:1 278:1 297:2 302:3 303:1 309:1 322:1 323:1 328:1 330:1 365:1 372:1 412:1 414:3 418:1 435:1 452:1 454:1 478:2 498:1 503:1 520:1 526:1 539:1 553:1 555:1 568:2 601:2 607:1 610:1 621:1 650:1 659:1 662:1 672:1 674:1 684:1 690:1 750:1 751:3 755:2 761:1 766:1 795:3 820:24 825:3 831:1 835:1 854:1 861:1 881:1 886:2 919:1 935:2 941:2 955:1 964:1 999:2 1019:2 1022:1 1024:3 1028:2 1032:1 1034:1 1035:1 1082:3 1102:1 1135:3 1136:6 1140:1 1142:1 1150:5 1167:1 1176:3 1181:1 1194:2 1203:3 1206:5 1210:1 1212:2 1219:1 1226:2 1233:2 1234:2 1253:2 1256:1 1260:2 1293:1 1301:2 1305:1 1308:1 1322:1 1326:3 1327:1 1385:2 1386:1 1403:1 1442:1 1454:1 1459:3 1510:1 1537:1 1541:23 1550:1 1554:2 1555:2 1556:1 1564:3 1567:1 1583:1 1592:1 1595:2 1596:2 1603:1 1605:1 1610:1 1611:1 1613:1 1616:1 1617:2 1619:1 1623:1 1627:1 1634:1 1638:1 1651:1 1652:1 1682:1 1705:1 1706:2 1740:1 1755:1 1757:1 1763:1 1765:1 1771:2 1773:1 1792:1 1808:1 1809:1 1824:1 1836:2 1849:2 1861:1 1870:1 1888:1 1889:1 1891:2 1895:1 1897:6 1903:1 1910:1 1911:1 1915:1 1918:1 1925:1 1929:1 1960:2 1970:1 1990:1 1991:1 1997:2 2013:1 2014:1 2031:1 2036:1 2037:1 2043:1 2058:1 2088:1 2095:1 2097:1 2098:1 2102:1 2105:1 2106:2 2123:1 2139:1 2145:1 2147:1 2158:2 2164:3 2175:1 2196:1 2198:1 2199:1 2202:1 2218:1 2249:1 2260:1 2265:1 2279:1 2282:1 2292:1 2307:1 2312:1 2317:2 2320:2 2328:1 2345:1 2348:1 2352:3 2355:1 2368:1 2376:1 2379:2 2390:1 2400:2 2406:2 2418:1 2420:1 2436:1 2446:1 2455:1 2467:1 2486:3 2508:1 2522:2 2525:1 2547:1 2566:1 2598:1 2599:1 2604:1 2619:1 2624:1 2638:1 2642:1 2644:1 2652:1 2655:1 2665:1 2696:7 2721:1 2743:1 2746:1 2747:1 2783:1 2789:1 2817:1 2827:1 2848:1 2852:1 2857:1 2859:1 2861:2 2862:4 2866:2 2867:1 2870:1 2872:4 2877:4 2881:3 2883:5 2887:3 2891:1 2895:1 2897:1 2900:1 2902:4 2906:1 2909:1 2910:1 2919:1 2920:1 2942:1 2954:2 2955:1 2971:3 2999:2 3002:1 3004:1 3026:1 3027:1 3044:1 3045:3 3054:1 3057:1 3075:2 3076:4 3086:3 3098:1 3100:1 3106:1 3116:3 3137:1 3145:1 3165:1 3177:2 3179:1 3186:1 3206:1 3224:2 3244:1 3255:1 3266:1 3267:1 3312:1 3319:1 3322:2 3341:2 3348:2 3366:1 3367:1 3371:1 3380:3 3381:1 3389:1 3406:1 3410:1 3413:3 3415:2 3420:1 3423:3 3429:1 3443:1 3451:1 3454:1 3493:1 3497:2 3507:1 3510:4 3516:1 3520:1 3539:2 3547:1 3584:2 3603:1 3612:2 3645:12 3648:24 3651:1 3652:2 3653:1 3663:2 3666:1 3678:1 3681:1 3682:1 3691:4 3692:1 3695:1 3698:1 3706:5 3736:2 3741:1 3756:1 3784:2 3789:1 3792:1 3793:1 3794:1 3836:1 3846:2 3851:1 3860:1 3867:1 3897:2 3926:1 4045:1 4070:1 4097:1 4101:1 4119:1 4146:1 4157:1 4161:3 4171:1 4179:1 4211:1 4224:1 4226:2 4251:2 4328:1 4334:1 4355:1 4359:1 4381:1 4383:1 4395:1 4396:1 4402:1 4411:1 4412:1 4444:1 4448:1 4459:1 4474:1 4479:1 4488:1 4492:1 4517:1 4539:1 4555:1 4564:1 4575:1 4580:1 4601:1 4626:1 4643:3 4645:1 4646:1 4651:2 4654:1 4722:2 4724:1 4767:1 4773:1 4780:2 4795:1 4803:1 4813:1 4815:1 4820:1 4830:2 4843:1 4855:1 4857:1 4859:1 4867:3 4886:1 4887:1 4914:1 4920:23 4922:2 4927:1 4947:1 4985:1 4992:1 5008:1 5015:2 5019:4 5020:2 5032:2 5039:1 5047:1 5054:2 5058:5 5059:2 5076:2 5119:1 5125:1 5134:1 5153:1 5163:1 5170:3 5178:1 5190:1 5194:1 5233:1 5235:1 5237:1 5240:1 5241:1 5247:1 5254:1 5272:1 5282:1 5298:1 5299:2 5300:1 5302:2 5307:1 5308:3 5324:1 5348:1 5371:3 5402:2 5404:1 5408:1 5416:1 5428:1 5435:2 5437:23 5444:1 5453:1 5456:1 5459:4 5465:1 5471:1 5473:1 5483:1 5486:1 5492:1 5555:2 5566:6 5588:1 5598:1 5638:3 5655:2 5663:1 5672:2 5676:2 5679:1 5687:1 5712:1 5731:7 5738:1 5760:1 5832:3 5843:1 5869:1 5879:5 5885:1 5913:1 5924:1 5960:1 5967:1 5969:2 5973:2 5974:1 5980:1 5983:2 6004:1 6005:3 6017:1 6043:1 6049:1 6075:1 6078:1 6096:11 6097:2 6112:1 6115:1 6140:2 6149:2 6158:1 6187:1 6191:1 6207:1 6253:3 6254:1 6257:1 6277:3 6278:4 6279:2 6285:4 6291:1 6292:2 6293:3 6303:1 6309:2 6312:5 6315:2 6316:1 6326:1 6358:1 6407:1 6411:2 6528:1 6580:1 6610:1 6622:1 6623:2 6628:1 6655:1 6679:1 6683:1 6684:1 6698:1 6738:2 6759:1 6787:1 6799:1 6801:2 6803:1 6807:1 6832:1 6835:1 6859:1 6861:1 6867:3 6870:1 6942:1 6970:1 6972:1 6983:1 6991:1 7008:1 7010:1 7012:1 7036:2 7061:2 7062:1 7065:1 7070:1 7072:1 7076:1 7083:1 7119:1 7130:1 7138:1 7140:1 7164:1 7213:1 7225:2 7243:1 7250:1 7252:1 7264:1 7289:6 7295:3 7366:1 7377:1 7421:1 7422:1 7423:1 7432:1 7434:1 7451:1 7455:1 7494:1 7525:1 7532:1 7537:1 7561:1 7580:2 7583:1 7589:1 7591:1 7599:1 7604:2 7607:1 7630:1 7635:1 7656:1 7665:1 7684:1 7707:1 7708:2 7709:1 7715:1 7716:1 7721:1 7722:1 7725:1 7727:1 7728:1 7729:3 7734:1 7739:1 7741:2 7764:1 7782:1 7805:1 7822:1 7825:1 7840:1 7847:1 7852:3 7857:2 7860:1 7871:2 7905:1 7937:2 7945:1 7965:1 7966:1 7974:1 7989:5 7995:1 8004:4 8006:1 8007:1 8008:1 8009:1 8014:1 8015:1 8016:1 8019:2 8020:6 8030:1 8034:1 8054:1 8085:2 8125:1 8136:1 8176:1 8185:1 8186:1 8200:3 8203:3 8260:1 8284:1 8293:1 8297:1 8308:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:2 8349:1 8370:2 8377:1 8393:2 8421:1 8427:1 8446:1 8449:1 8489:1 8493:1 8496:1 8501:3 8524:1 8564:2 8566:1 8570:1 8577:1 8602:1 8617:1 8648:1 8695:2 8709:1 8714:1 8731:1 8738:1 8751:1 8772:1 8842:1 8845:1 8849:1 8854:1 8866:1 8883:5 8905:1 8940:1 8943:1 8946:1 8955:1 8966:2 8978:2 8996:1 9007:1 9012:1 9052:2 9060:1 9090:1 9113:1 9122:1 9123:1 9134:1 9138:1 9143:1 9146:1 9153:1 9194:1 9205:1 9216:1 9217:2 9231:1 9253:1 9282:1 9307:1 9325:1 9328:1 9333:1 9337:1 9338:5 9372:6 9374:1 9381:1 9394:1 9426:1 9428:2 9433:1 9437:1 9446:1 9484:1 9492:1 9495:1 9499:1 9526:4 9529:1 9577:1 9586:1 9588:1 9612:2 9619:1 9628:8 9629:9 9637:1 9655:1 9656:1 9657:5 9688:3 9694:1 9702:35 9707:1 9708:1 9711:2 9719:1 9720:1 9723:1 9733:12 9738:3 9744:1 9754:1 9758:1 9780:1 9781:1 9793:2 9803:1 9849:4 9866:2 9870:1 9885:1 9895:1 9924:1 9926:2 9942:2 9957:1 9963:1 9967:3 9968:1 9975:1 9978:1 9999:4 10011:1 10023:1 10058:1 10063:2 10099:2 10103:1 10161:1 10167:1 10175:1 10209:1 10213:1 10223:1 10235:2 10261:2 10286:1 10298:1 10313:1 10314:1 10321:24 10333:1 10338:1 10342:1 10349:1 10356:1 10359:10 10360:3 10376:1 10378:2 10399:1 10401:1 10406:1 10412:2 10431:1 10444:1 10452:1 10470:28 10488:1 10559:1 10598:1 10599:1 10612:1 10669:1 10683:1 10686:2 10695:1 10697:1 10701:2 10704:1 10707:1 10711:1 10716:1 10717:3 10718:1 10736:1 10744:1 10749:1 10772:3 10773:1 10778:1 10789:2 10791:1 10792:1 10796:1 10798:1 10807:2 10808:2 10812:1 10813:1 10826:1 10850:1 10864:1 10878:1 10884:1 10895:1 10900:1 10911:3 10937:1 10979:1 10994:1 11002:1 11075:3 11078:1 11109:2 11163:2 11165:1 11169:1 11183:1 11207:1 11212:3 11226:1 11230:1 11231:1 11233:1 11238:1 11247:3 11258:1 11268:1 11270:1 11272:1 11325:1 11340:1 11343:1 11378:1 11382:5 11391:2 11402:1 11404:1 11422:1 11457:1 11489:4 11522:2 11557:3 11561:2 11564:1 11569:1 11571:3 11572:1 11573:1 11575:1 11583:1 11585:2 11587:2 11598:1 11617:1 11619:1 11625:1 11628:1 11636:1 11640:1 11641:1 11642:2 11645:1 11654:1 11668:1 11678:2 11690:4 11697:2 11707:2 11718:1 11720:1 11739:1 11744:1 11745:1 11755:1 11771:1 11774:1 11776:1 11791:1 11793:1 11795:2 11804:1 11815:1 11840:1 11851:1 11861:1 11864:1 11865:1 11872:2 11876:1 11882:1 11885:1 11899:1 11902:1 11903:1 11918:1 11919:1 11930:1 11931:2 11932:6 11936:1 11955:1 11961:2 11966:1 11969:1 11976:1 11978:1 11982:3 11985:1 11988:1 11992:1 12004:1 12014:1 12033:1 12052:1 12056:1 12057:1 12076:1 12081:1 12082:1 12083:2 12112:1 12113:1 12120:1 12131:1 12146:1 12147:1 12186:1 12191:1 12214:1 12221:6 12230:1 12231:1 12237:3 12239:4 12248:1 12255:1 12269:1 12301:1 12324:1 12339:1 12359:1 12361:1 12391:23 12401:1 12407:1 12420:1 12435:1 12446:1 12451:1 12458:1 12471:1 12473:1 12479:1 12490:2 12493:1 12497:1 12521:1 12538:1 12540:3 12547:2 12552:1 12561:2 12570:2 12580:1 12592:1 12608:1 12618:2 12619:1 12630:1 12641:1 12643:2 12669:2 12673:5 12692:2 12694:1 12734:3 12756:1 12757:1 12760:1 12774:1 12777:1 12794:1 12821:1 12824:2 12829:1 12837:1 12848:1 12850:1 12867:5 12881:1 12898:1 12936:1 12958:1 12977:2 12988:1 13013:3 13028:1 13040:2 13049:1 13051:1 13052:1 13058:1 13079:1 13080:1 13089:1 13096:1 13112:1 13113:3 13128:1 13154:3 13175:1 13179:1 13187:1 13213:1 13234:1 13258:3 13267:1 13282:1 13283:4 13303:1 13325:2 13357:2 13384:1 13385:2 13411:1 13412:4 13415:1 13418:1 13420:3 13429:1 13443:1 13454:1 13464:1 13468:1 13471:1 13474:1 13483:1 13493:5 13498:1 13505:1 13509:1 13516:1 13517:2 13550:1 13568:1 13588:1 13601:1 13632:1 13633:1 13648:1 13669:2 13686:2 13690:3 13694:1 13704:1 13710:1 13721:3 13737:1 13749:1 13761:1 13765:1 13767:1 13768:1 13777:1 13793:1 13798:8 13803:1 13808:1 13823:1 13824:3 13826:3 13828:1 13837:1 13845:1 13849:1 13859:1 13880:1 13881:1 13891:5 13895:1 13900:1 13901:1 13910:1 13919:1 13921:2 13931:1 13942:1 13972:2 13998:1 14008:1 14009:1 14015:1 14029:1 14032:3 14036:1 14042:1 14070:2 14071:1 14093:1 14095:2 14105:1 14115:1 14116:2 14122:1 14124:1 14128:1 14134:1 14145:1 14146:4 14149:1 14152:1 14154:1 14162:1 14186:1 14189:2 14218:1 14235:2 14263:1 14265:1 14286:1 14296:1 14302:1 14308:1 14309:1 14322:5 14337:2 14340:1 14342:1 14376:1 14380:1 14406:1 14416:1 14430:1 14448:2 14488:1 14491:5 14515:1 14519:1 14523:1 14533:2 14550:1 14554:1 14555:1 14559:1 14564:1 14567:4 14568:1 14571:2 14577:1 14580:4 14611:1 14614:1 14621:2 14628:1 14632:2 14636:1 14638:5 14642:1 14654:1 14667:1 14675:2 14686:1 14716:1 14727:3 14735:1 14737:1 14742:4 14744:1 14787:1 14791:2 14803:1 14840:1 14844:1 14854:1 14869:1 14910:1 14940:1 14941:1 14960:1 15012:1 15037:3 15046:1 15060:3 15083:1 15086:1 15095:1 15140:1 15150:1 15151:1 15152:2 15160:1 15162:1 15185:1 15197:1 15210:1 15220:1 15222:1 15250:1 15269:1 15278:1 15292:1 15312:2 15315:3 15326:1 15345:1 15383:1 15385:2 15400:1 15414:1 15460:1 15472:1 15487:1 15502:3 15519:1 15525:1 15526:1 15574:1 15577:1 15584:1 15587:1 15595:1 15598:1 15675:1 15705:1 15707:1 15746:1 15747:1 15776:2 15778:24 15782:1 15786:1 15794:1 15797:1 15800:4 15813:1 15844:5 15855:1 15864:2 15868:1 15885:1 15900:1 15910:1 15912:1 15915:1 15942:1 15943:1 15944:1 15981:1 16001:1 16006:2 16013:1 16083:1 16099:1 16114:1 16134:1 16142:2 16147:1 16149:1 16173:1 16190:1 16196:1 16201:1 16241:1 16253:1 16269:1 16285:1 16293:1 16299:1 16303:1 16304:1 16320:1 16327:7 16332:1 16354:1 16357:1 16365:2 16372:1 16375:1 16394:1 16456:1 16475:1 16490:1 16499:1 16502:2 16505:2 16510:3 16516:3 16528:1 16535:1 16594:1 16609:9 16613:1 16622:1 16643:1 16720:1 16729:1 16731:1 16732:2 16742:1 16775:1 16792:3 16797:3 16803:1 16823:1 16831:1 16837:1 16854:1 16869:2 16874:2 16882:1 16889:1 16897:1 16898:1 16914:2 16918:1 16929:2 16964:1 16968:2 16970:1 16971:1 16973:1 16977:2 16978:1 16979:7 16980:1 16981:1 16983:1 17002:1 17003:1 17004:1 17008:1 17009:1 17013:4 17026:1 17033:2 17064:1 17075:1 17076:1 17082:1 17114:1 17120:1 17125:1 17152:1 17154:1 17161:1 17172:9 17175:1 17181:2 17193:1 17204:1 17214:1 17217:1 17230:1 17243:1 17273:1 17276:1 17278:2 17286:4 17303:1 17309:1 17315:3 17319:1 17320:2 17333:8 17336:3 17417:2 17426:1 17438:1 17449:4 17450:1 17516:1 17545:1 17547:2 17562:1 17564:1 17571:1 17601:1 17607:1 17623:1 17629:1 17675:4 17679:1 17762:1 17769:1 17792:1 17794:1 17798:1 17806:2 17814:2 17817:3 17835:2 17836:1 17849:1 17850:1 17903:1 17918:1 17924:1 17925:1 17941:1 17942:1 17943:1 17955:1 17957:2 17972:1 17978:1 17981:1 17984:1 17992:1 17993:1 17997:1 17999:1 18000:1 18005:1 18016:1 18030:1 18032:1 18037:1 18039:1 18048:1 18057:2 18080:1 18092:24 18101:2 18105:1 18106:1 18110:1 18120:1 18128:1 18137:1 18184:1 18198:1 18200:1 18203:4 18214:1 18215:1 18221:2 18244:1 18249:1 18270:3 18276:1 18277:1 18290:1 18297:1 18298:1 18320:2 18325:1 18339:1 18342:1 18390:1 18392:1 18396:1 18442:1 18463:1 18470:2 18474:1 18485:1 18506:1 18535:1 18549:1 18559:1 18560:1 18561:2 18563:1 18574:1 18582:1 18593:1 18601:1 18603:1 18608:7 18614:1 18645:3 18651:1 18673:1 18696:1 18708:2 18712:1 18715:1 18732:1 18747:1 18752:1 18767:2 18779:2 18781:3 18793:1 18794:1 18823:1 18867:1 18876:1 18898:2 18954:1 18959:1 18968:1 18993:2 18997:1 19019:1 19029:1 19050:1 19060:1 19064:2 19067:1 19083:1 19087:1 19096:1 19097:1 19141:1 19154:1 19175:1 19191:1 19192:2 19193:2 19225:1 19235:1 19263:4 19269:2 19287:1 19303:1 19310:1 19336:1 19361:1 19397:1 19416:1 19437:2 19452:1 19458:3 19469:1 19471:1 19475:1 19490:3 19496:2 19500:1 19513:3 19518:1 19525:1 19529:1 19538:3 19548:1 19567:1 19602:1 19605:1 19620:1 19641:2 19645:4 19649:1 19658:1 19664:1 19670:1 19679:1 19689:1 19691:3 19703:1 19772:1 19775:1 19787:1 19796:1 19806:1 19810:10 19814:2 19820:1 19851:2 19854:3 19858:1 19865:1 19894:2 19904:2 19905:1 19907:1 19908:2 19932:8 19947:1 19961:1 19976:3 20027:1 20034:1 20046:1 20065:1 20074:1 20076:1 20078:1 20091:1 20109:4 20110:2 20115:3 20117:1 20125:1 20126:1 20127:1 20130:1 20153:1 20168:1 20174:1 20201:2 20221:1 20231:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20295:1 20296:1 20318:1 20324:1 20325:1 20350:1 20355:1 20383:1 20390:1 20431:1 20444:1 20446:2 20455:1 20522:1 20537:1 20556:1 20566:1 20568:1 20572:1 20588:2 20604:1 20606:1 20607:1 20608:1 20643:1 20646:1 20649:1 20654:1 20680:1 20689:1 20727:1 20746:1 20751:3 20754:1 20762:1 20781:1 20783:1 20785:2 20796:1 20799:2 20816:1 20865:1 20885:1 20900:1 20917:1 20941:31 20948:1 20949:1 20974:1 20978:1 20997:1 21003:3 21064:1 21071:1 21072:1 21081:1 21083:1 21097:1 21101:1 21116:1 21124:2 21130:2 21145:2 21149:1 21174:1 21204:1 21209:1 21214:1 21215:1 21261:1 21263:1 21284:1 21292:1 21299:1 21316:1 21318:2 21323:1 21337:1 21371:1 21376:1 21423:1 21443:1 21445:1 21503:1 21508:1 21512:1 21513:1 21522:1 21524:1 21540:1 21566:1 21586:1 21593:1 21597:1 21602:1 21603:1 21608:2 21612:2 21634:1 21686:2 21701:1 21704:2 21713:2 21724:1 21754:1 21788:1 21806:1 21819:1 21823:4 21827:1 21829:2 21831:1 21843:1 21864:1 21866:1 21872:2 21875:2 21886:1 21892:1 21899:1 21917:2 21939:2 21943:1 21975:4 21987:4 22008:2 22032:1 22037:1 22067:1 22076:1 22079:5 22083:1 22084:2 22123:3 22143:2 22169:1 22173:1 22177:1 22181:1 22186:2 22190:1 22207:1 22247:1 22298:1 22300:4 22305:1 22308:1 22315:1 22347:1 22362:1 22386:1 22388:1 22406:1 22424:1 22429:3 22490:1 22493:2 22497:1 22516:1 22530:1 22547:1 22584:1 22628:5 22643:1 22650:1 22666:1 22677:2 22715:1 22720:1 22727:3 22754:1 22783:1 22791:1 22800:1 22806:1 22809:1 22824:1 22839:1 22866:1 22870:1 22883:1584 22893:1 22909:2 22923:1 22944:1 22966:1 22969:1 22984:1 23031:3 23039:1 23043:2 23044:1 23079:1 23113:1 23119:1 23129:1 23139:1 23164:1 23189:1 23193:1 23270:1 23304:1 23320:1 23321:1 23348:1 23365:1 23371:1 23411:1 23427:1 23456:1 23457:1 23468:2 23470:1 23482:1 23508:1 23521:2 23523:2 23543:1 23549:1 23603:1 23607:4 23640:3 23647:1 23653:1 23664:1 23698:1 23706:1 23708:1 23712:1 23718:1 23735:1 23763:1 23766:1 23773:1 23789:1 23800:1 23805:1 23812:1 23821:1 23833:5 23834:3 23874:1 23880:4 23914:2 23932:1 23934:1 23947:14 23958:1 23978:1 23979:2 24012:2 24013:1 24019:1 24020:1 24044:1 24047:3 24052:1 24064:2 24066:1 24079:1 24092:1 24097:2 24105:3 24106:1 24118:1 24185:1 24191:1 24197:1 24209:2 24217:1 24233:1 24239:2 24240:1 24255:1 24271:1 24289:1 24292:1 24327:1 24332:1 24342:1 24347:1 24364:1 24369:1 24376:2 24385:1 24424:1 24449:1 24450:1 24474:1 24479:1 24480:1 24482:1 24483:1 24491:1 24511:1 24518:2 24534:1 24539:1 24553:1 24566:1 24591:2 24592:5 24598:1 24604:1 24612:1 24620:1 24640:1 24643:1 24651:1 24653:2 24656:3 24658:3 24674:1 24680:2 24681:3 24683:1 24699:1 24700:1 24708:4 24728:2 24753:2 24762:2 24774:1 24781:3 24794:1 24808:2 24820:1 24826:1 24850:1 24853:1 24869:1 24883:3 24894:2 24918:1 24919:1 24924:1 24978:1 25000:1 25047:1 25053:1 25058:1 25067:1 25076:1 25080:1 25114:5 25122:1 25143:1 25144:1 25157:1 25161:2 25163:1 25179:3 25217:1 25240:1 25244:1 25269:1 25285:1 25299:1 25300:1 25303:1 25326:1 25334:2 25369:1 25373:1 25379:1 25392:1 25407:2 25417:1 25427:2 25428:1 25431:1 25448:1 25456:1 25461:1 25481:1 25486:1 25491:1 25498:2 25502:2 25505:1 25511:3 25527:1 25529:1 25541:1 25543:1 25553:1 25554:1 25568:1 25572:1 25580:1 25582:2 25586:1 25590:3 25600:1 25602:1 25605:1 25608:3 25609:1 25623:2 25630:1 25632:1 25637:3 25699:1 25720:1 25721:3 25725:1 25733:2 25738:1 25781:1 25782:1 25786:2 25793:2 25807:1 25811:1 25815:1 25824:2 25841:1 25846:1 25852:1 25859:1 25867:1 25879:1 25907:1 25917:1 25928:1 25934:1 25948:1 25952:1 25973:1 25994:1 26000:1 26005:1 26011:1 26014:1 26018:3 26031:2 26052:1 26062:3 26070:1 26091:1 26102:2 26107:1 26119:1 26120:1 26124:1 26138:1 26151:1 26153:1 26155:1 26156:3 26191:1 26203:2 26211:1 26214:1 26215:2 26216:2 26228:1 26236:1 26260:1 26261:1 26279:1 26285:1 26313:1 26327:1 26337:2 26345:1 26361:1 26362:1 26385:3 26394:1 26407:1 26424:1 26425:1 26438:3 26444:1 26453:4 26459:1 26460:1 26496:1 26508:5 26552:1 26590:1 26593:1 26602:3 26608:1 26610:1 26612:3 26614:1 26628:2 26642:1 26651:1 26667:1 26668:6 26671:1 26679:1 26694:1 26740:1 26743:1 26744:1 26777:2 26779:4 26782:2 26787:1 26794:1 26795:1 26797:2 26808:1 26809:1 26815:1 26818:1 26820:1 26826:4 26827:1 26828:3 26842:1 26843:1 26844:1 26854:1 26874:1 26907:1 26914:1 26930:1 26949:2 26984:1 26995:2 26999:1 27004:4 27029:2 27051:1 27072:1 27087:3 27092:1 27099:1 27114:1 27127:2 27138:1 27149:1 27153:2 27183:1 27203:1 27213:2 27243:1 27251:1 27259:1 27260:11 27283:1 27287:2 27294:1 27331:8 27333:2 27339:1 27343:1 27393:1 27396:4 27398:2 27401:1 27412:2 27415:1 27447:1 27460:7 27478:1 27500:3 27508:1 27522:1 27526:1 27527:1 27542:1 27544:2 27573:1 27591:1 27594:1 27599:1 27601:1 27603:2 27619:3 27633:2 27651:1 27653:1 27677:3 27723:1 27731:1 27752:1 27760:1 27767:1 27779:1 27782:1 27787:23 27804:1 27808:1 27810:2 27813:3 27816:1 27819:1 27825:1 27854:2 27859:2 27860:1 27862:1 27878:1 27879:1 27889:1 27920:1 27922:1 27925:1 27957:1 27963:1 27973:3 27974:1 27983:1 27987:2 28000:2 28011:4 28017:1 28052:1 28154:1 28160:1 28179:3 28191:1 28206:1 28263:1 28276:1 28278:1 28279:1 28287:1 28297:1 28298:2 28308:1 28310:1 28313:3 28317:1 28318:1 28370:24 28384:1 28398:2 28399:1 28433:1 28436:1 28460:1 28464:1 28472:2 28473:1 28482:2 28483:1 28489:6 28523:1 28528:1 28541:1 28560:1 28567:1 28572:1 28577:3 28582:2 28587:1 28612:1 28621:1 28639:1 28645:1 28647:2 28650:2 28686:1 28752:1 28786:1 28811:1 28814:1 28817:2 28826:1 28831:1 28833:1 28852:1 28908:1 28913:1 28929:1 28932:1 28939:2 28940:1 28949:1 28974:2 28983:2 28993:1 28996:1 29004:1 29014:1 29016:1 29020:1 29032:1 29087:1 29126:1 29133:2 29141:1 29149:1 29170:2 29174:1 29179:1 29190:1 29192:1 29215:1 29233:1 29241:1 29251:1 29258:1 29297:1 29328:1 29330:1 29334:1 29367:2 29398:1 29417:1 29419:3 29426:2 29455:2 29464:1 29480:1 29486:2 29493:1 29516:2 29551:1 29554:1 29557:2 29564:1 29566:1 29568:2 29583:2 29584:2 29587:3 29591:1 29592:1 29604:1 29634:3 29635:1 29688:7 29695:1 29701:1 29741:1 29749:1 29752:1 29756:1 29760:1 29775:1 29816:1 29822:1 29827:1 29840:1 29845:2 29887:1 29888:1 29901:2 29939:1 29952:1 29957:1 29962:2 29969:1 29995:1 30004:1 30015:1 30023:1 30035:1 30041:1 30079:3 30083:1 30084:2 30092:1 30093:1 30095:2 30099:3 30102:1 30105:2 30119:1 30134:1 30144:2 30165:3 30192:1 30198:2 30199:3 30213:1 30235:2 30238:1 30248:1 30253:1 30261:4 30263:1 30283:1 30284:1 30290:1 30294:1 30295:1 30299:1 30307:1 30319:1 30320:1 30329:1 30330:1 30331:1 30350:1 30370:1 30424:1 30434:1 30454:1 30478:1 30482:2 30483:1 30493:1 30518:1 30535:2 30537:2 30538:2 30541:1 30552:2 30601:1 30613:1 30617:2 30641:1 30677:1 30679:1 30688:1 30743:1 30777:1 30787:1 30788:1 30789:2 30790:5 30794:1 30806:1 30814:3 30817:3 30823:1 30855:2 30857:1 30861:1 30910:1 30912:2 30920:2 30931:1 30944:1 30952:1 30960:2 30970:1 30972:1 30981:4 30987:1 31002:1 31005:1 31015:1 31020:1 31026:1 31051:3 31053:1 31055:2 31057:1 31059:1 31089:1 31092:1 31093:1 31112:2 31134:1 31142:1 31148:1 31151:1 31168:3 31177:1 31178:1 31181:1 31188:1 31201:1 31210:1 31226:1 31235:1 31255:2 31264:3 31265:2 31276:1 31283:1 31296:2 31317:2 31329:2 31334:3 31377:4 31384:1 31404:1 31411:1 31413:11 31425:2 31444:1 31465:1 31478:1 31486:1 31550:1 31563:1 31569:1 31574:2 31578:3 31588:1 31595:1 31610:1 31612:1 31641:1 31648:1 31660:2 31663:1 31708:1 31725:1 31737:1 31747:1 31753:2 31768:1 31784:1 31787:1 31797:1 31808:1 31834:3 31848:1 31866:2 31874:1 31882:1 31885:1 31891:1 31918:1 31919:1 31929:1 31930:4 31933:1 31946:2 31963:2 31964:1 31968:7 31969:1 31993:2 32010:1 32022:1 32025:1 32036:1 32066:4 32074:1 32090:1 32099:1 32106:1 32112:1 32117:1 32136:1 32153:1 32208:1 32219:2 32285:3 32307:1 32311:1 32319:1 32326:1 32329:1 32376:2 32405:1 32406:1 32413:1 32459:1 32461:2 32491:1 32492:1 32493:1 32505:2 32515:1 32532:1 32553:2 32555:1 32574:1 32596:1 32606:1 32612:1 32624:1 32629:1 32636:1 32683:2 32691:1 32700:1 32725:2 32726:1 32732:1 32745:1 32749:2 32750:6 32774:3 32785:2 32787:1 32801:4 32813:1 32832:3 32846:1 32848:2 32879:1 32890:5 32891:1 32893:1 32896:2 32908:1 32909:1 32913:1 32917:2 32924:1 32929:3 32941:3 32950:1 32955:1 32958:1 32965:1 32974:1 32984:1 33027:1 33053:1 33057:1 33066:1 33069:1 33080:1 33085:1 33092:1 33094:3 33098:1 33100:1 33112:1 33118:1 33128:3 33133:2 33137:1 33141:1 33142:1 33144:1 33157:2 33180:1 33183:2 33222:1 33272:1 33276:1 33284:1 33287:1 33296:3 33297:1 33309:2 33330:1 33335:1 33346:1 33352:3 33388:1 33389:1 33404:1 33413:1 33422:1 33440:1 33446:1 33461:3 33467:1 33498:1 33503:1 33505:2 33512:1 33530:1 33533:3 33537:2 33543:3 33545:1 33552:1 33553:2 33555:1 33556:2 33563:3 33579:1 33591:2 33592:1 33595:2 33609:1 33616:1 33620:1 33623:1 33637:1 33663:7 33669:1 33680:4 33716:1 33720:1 33730:1 33734:2 33743:1 33760:1 33766:1 33769:1 33794:2 33795:1 33820:1 33824:1 33861:1 33865:1 33880:2 33902:1 33910:1 33921:1 33928:1 33930:1 33997:1 34003:1 34040:1 34056:3 34057:2 34062:1 34067:4 34071:2 34075:4 34076:1 34080:1 34083:1 34085:3 34099:1 34104:1 34133:1 34139:1 34144:1 34151:3 34157:1 34160:1 34174:1 34197:1 34221:2 34246:2 34283:1 34306:1 34314:1 34321:1 34351:1 34353:1 34364:1 34367:1 34371:1 34373:1 34403:1 34407:1 34410:1 34413:2 34435:13 34437:1 34440:1 34445:1 34478:2 34497:6 34566:1 34570:1 34589:1 34596:2 34615:1 34619:1 34627:1 34629:1 34634:8 34643:2 34654:1 34659:1 34662:1 34673:1 34674:1 34682:1 34691:9 34701:1 34749:1 34757:1 34761:1 34782:1 34794:1 34804:2 34834:1 34862:1 34878:2 34968:1 34989:1 34996:28 34997:1 35022:1 35026:4 35031:1 35041:4 35042:2 35056:1 35094:1 35098:1 35124:3 35128:8 35129:1 35135:2 35141:1 35149:1 35152:1 35164:1 35167:1 35177:1 35184:1 35201:1 35207:2 35253:1 35265:1 35281:1 35289:2 35310:1 35311:1 35326:1 35342:1 35354:2 35382:2 35395:1 35410:1 35456:1 35473:1 35488:1 35499:1 35503:2 35517:2 35520:1 35539:1 35585:1 35589:2 35592:1 35602:2 35625:2 35635:1 35636:1 35648:1 35656:1 35665:1 35677:1 35681:1 35692:1 35696:1 35700:1 35714:1 35721:1 35746:1 35748:2 35753:1 35757:2 35785:1 35789:2 35805:6 35831:2 35836:1 35837:2 35838:2 35850:24 35862:1 35888:1 35901:1 35925:1 35939:1 35953:1 35957:1 35959:2 35965:2 35966:4 36011:1 36028:2 36033:1 36072:1 36075:2 36091:1 2 9:1 10:1 31:2 32:1 33:1 65:1 69:1 73:1 95:1 104:2 106:2 107:1 122:1 140:1 166:2 177:1 191:1 196:1 200:2 207:1 211:1 235:1 239:2 251:1 256:1 278:2 297:2 302:3 303:1 309:1 322:1 323:1 328:1 330:1 365:1 372:1 412:1 414:3 418:1 435:1 452:1 454:1 478:2 498:1 503:1 520:1 526:1 539:1 553:1 555:1 568:2 601:2 607:1 610:1 621:1 650:1 659:1 662:1 672:1 674:1 684:1 690:1 750:1 751:3 755:2 761:1 766:1 795:3 820:25 825:3 831:1 835:1 854:1 861:1 881:1 886:2 919:1 935:2 941:2 955:1 964:1 999:2 1019:2 1022:1 1024:3 1028:2 1032:1 1034:1 1035:2 1082:3 1102:1 1135:3 1136:6 1140:2 1142:1 1150:5 1167:1 1176:4 1181:1 1194:2 1203:3 1206:5 1210:1 1212:2 1219:1 1226:2 1233:2 1234:3 1253:2 1256:1 1260:2 1270:1 1293:1 1301:2 1305:1 1308:1 1322:1 1326:3 1327:1 1385:2 1386:1 1403:1 1442:1 1454:1 1459:3 1510:1 1537:1 1541:24 1550:1 1554:2 1555:2 1556:1 1564:3 1567:1 1583:1 1592:1 1595:2 1596:2 1603:1 1605:1 1610:1 1611:1 1613:1 1616:1 1617:2 1619:1 1623:1 1627:1 1634:1 1638:1 1651:1 1652:1 1682:1 1705:1 1706:2 1740:2 1755:1 1757:1 1763:1 1765:1 1771:2 1773:1 1792:1 1808:1 1809:1 1824:1 1836:2 1847:1 1849:2 1861:1 1870:1 1888:1 1889:1 1891:2 1895:1 1897:6 1903:1 1910:1 1911:1 1915:1 1918:1 1925:1 1929:1 1960:2 1970:1 1990:1 1991:1 1997:2 2013:1 2014:1 2031:1 2036:1 2037:1 2043:1 2058:2 2088:1 2095:1 2097:1 2098:1 2102:1 2105:1 2106:2 2123:1 2139:1 2145:1 2147:1 2158:2 2160:1 2164:3 2175:1 2196:1 2198:1 2199:1 2202:1 2218:1 2249:1 2260:1 2265:1 2276:1 2279:1 2282:1 2292:1 2307:1 2312:1 2317:2 2320:2 2327:1 2328:1 2345:1 2348:1 2352:3 2355:1 2364:1 2368:1 2376:1 2379:2 2390:1 2400:2 2406:2 2418:1 2420:1 2436:1 2446:1 2455:1 2467:1 2486:4 2508:1 2522:2 2525:1 2547:1 2566:1 2598:1 2599:1 2604:1 2619:1 2624:1 2638:1 2642:1 2644:1 2652:1 2655:1 2665:1 2696:8 2721:1 2743:2 2746:1 2747:1 2783:1 2789:1 2817:1 2827:1 2848:1 2852:1 2857:1 2859:1 2861:2 2862:4 2866:2 2867:1 2870:1 2872:4 2877:6 2881:3 2883:5 2887:3 2891:1 2895:1 2897:1 2900:1 2902:4 2906:2 2909:1 2910:1 2918:1 2919:1 2920:1 2942:1 2954:2 2955:1 2971:3 2999:2 3002:1 3004:1 3026:1 3027:1 3042:1 3044:2 3045:3 3054:2 3057:1 3075:2 3076:4 3086:3 3087:1 3098:1 3100:1 3106:1 3116:3 3133:1 3137:1 3145:1 3165:1 3176:1 3177:2 3179:1 3186:1 3206:1 3224:2 3244:1 3255:1 3265:1 3266:1 3267:1 3312:1 3319:1 3322:2 3341:2 3348:2 3359:1 3366:1 3367:1 3371:1 3380:3 3381:1 3389:1 3406:1 3410:1 3413:3 3415:2 3420:1 3423:3 3429:1 3443:1 3451:1 3454:1 3493:1 3497:2 3507:1 3510:4 3516:1 3520:2 3539:2 3547:1 3584:2 3603:1 3612:2 3645:12 3648:25 3651:1 3652:2 3653:1 3663:2 3666:1 3678:1 3681:1 3682:1 3691:4 3692:1 3695:1 3698:1 3706:6 3736:2 3741:1 3753:1 3756:1 3784:2 3789:1 3792:1 3793:1 3794:1 3836:1 3846:3 3851:1 3860:1 3867:1 3897:2 3926:1 3958:1 4045:1 4070:1 4097:1 4101:1 4119:1 4142:1 4146:1 4157:1 4161:3 4171:1 4179:1 4211:1 4224:1 4226:2 4251:2 4328:1 4334:1 4355:1 4359:1 4375:1 4381:1 4383:1 4395:1 4396:1 4402:1 4411:1 4412:1 4444:1 4448:1 4459:1 4474:1 4479:1 4488:1 4492:1 4517:1 4539:1 4555:1 4564:1 4575:1 4580:1 4601:1 4626:1 4643:3 4645:1 4646:1 4651:2 4654:1 4722:2 4724:1 4767:1 4773:1 4780:2 4795:1 4803:1 4809:1 4813:1 4815:1 4820:1 4830:2 4843:1 4855:1 4857:1 4859:1 4867:3 4886:1 4887:1 4914:1 4920:24 4922:2 4927:1 4947:1 4985:1 4992:1 5008:1 5015:2 5019:4 5020:2 5032:2 5039:1 5047:1 5054:2 5058:5 5059:2 5076:2 5119:1 5125:1 5134:1 5153:1 5163:1 5170:3 5178:1 5190:1 5194:1 5233:1 5235:1 5237:1 5240:1 5241:1 5247:1 5254:1 5272:1 5282:1 5298:1 5299:2 5300:1 5302:2 5307:1 5308:3 5324:1 5348:1 5371:3 5402:2 5404:1 5408:1 5416:1 5428:1 5435:2 5437:24 5444:1 5453:1 5456:1 5459:4 5465:1 5471:1 5473:1 5483:1 5486:1 5492:1 5555:2 5566:6 5588:1 5598:1 5638:3 5655:2 5662:1 5663:1 5672:2 5676:2 5679:1 5687:1 5712:1 5731:7 5738:1 5760:1 5832:3 5843:1 5869:1 5879:5 5885:1 5913:1 5924:1 5960:1 5967:1 5969:2 5973:2 5974:1 5980:1 5983:2 6004:1 6005:3 6017:1 6043:1 6049:1 6075:2 6078:1 6096:12 6097:2 6112:1 6115:1 6140:3 6149:2 6158:1 6187:1 6191:1 6207:1 6253:3 6254:1 6257:2 6277:4 6278:4 6279:2 6285:5 6291:1 6292:2 6293:3 6294:1 6303:1 6309:2 6312:5 6315:3 6316:1 6326:1 6358:1 6407:1 6411:2 6495:1 6528:1 6580:1 6610:1 6622:1 6623:2 6628:1 6655:1 6679:1 6683:1 6684:1 6698:1 6738:3 6759:1 6787:1 6799:1 6801:2 6803:1 6807:1 6832:1 6835:1 6843:1 6859:1 6861:1 6867:3 6870:1 6942:1 6970:1 6972:1 6983:1 6991:1 6996:1 7008:1 7010:1 7012:1 7036:2 7038:1 7061:2 7062:1 7065:1 7070:1 7072:1 7076:1 7083:1 7086:1 7119:1 7130:1 7138:1 7140:1 7164:1 7213:1 7225:2 7243:1 7250:1 7252:1 7264:1 7289:7 7295:3 7366:1 7377:1 7421:1 7422:1 7423:1 7432:1 7434:1 7451:1 7455:1 7494:1 7525:1 7532:1 7537:1 7561:1 7567:1 7580:2 7583:1 7589:1 7591:1 7599:1 7603:1 7604:2 7607:1 7630:1 7635:1 7656:1 7665:1 7684:1 7707:1 7708:2 7709:1 7715:1 7716:1 7721:1 7722:1 7725:1 7727:1 7728:1 7729:3 7734:1 7739:1 7741:2 7764:1 7782:1 7805:1 7822:1 7825:1 7840:1 7847:1 7852:3 7857:2 7860:1 7871:2 7905:1 7937:2 7945:1 7965:1 7966:1 7974:1 7989:5 7995:1 8002:1 8004:4 8006:1 8007:1 8008:1 8009:1 8014:1 8015:1 8016:1 8019:3 8020:6 8030:1 8034:1 8054:1 8077:1 8085:2 8125:1 8136:1 8176:1 8185:1 8186:1 8200:3 8203:3 8224:1 8260:1 8284:1 8293:1 8297:1 8308:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:2 8349:1 8370:2 8377:1 8393:2 8421:1 8427:1 8446:1 8449:1 8489:1 8493:1 8496:1 8501:3 8524:1 8564:2 8566:1 8570:1 8577:1 8602:1 8617:1 8648:1 8695:2 8709:1 8714:1 8731:1 8738:1 8751:1 8772:1 8842:1 8845:1 8849:1 8854:1 8866:1 8883:5 8905:1 8940:1 8943:1 8946:1 8955:1 8966:2 8978:2 8996:1 9007:1 9012:1 9052:2 9060:1 9090:1 9113:1 9122:1 9123:1 9126:1 9134:1 9138:1 9143:1 9146:1 9153:1 9194:1 9205:1 9216:1 9217:2 9231:1 9253:1 9282:1 9307:1 9325:1 9328:1 9333:1 9337:1 9338:6 9372:6 9374:1 9381:1 9394:1 9426:1 9428:2 9433:1 9437:1 9446:1 9470:1 9484:1 9492:1 9495:1 9499:1 9526:4 9529:1 9577:1 9586:1 9588:1 9612:2 9619:1 9628:9 9629:9 9637:1 9655:1 9656:1 9657:5 9688:3 9694:2 9695:1 9702:38 9707:1 9708:1 9711:2 9719:1 9720:1 9723:1 9733:12 9738:3 9744:1 9754:1 9758:1 9780:1 9781:1 9793:2 9803:1 9849:4 9866:2 9870:1 9885:1 9895:1 9924:1 9926:2 9942:3 9957:1 9963:1 9967:3 9968:1 9975:1 9978:1 9999:5 10011:1 10023:1 10058:1 10063:2 10099:2 10103:1 10161:1 10167:1 10175:1 10209:1 10213:1 10223:1 10235:2 10261:2 10284:1 10286:1 10298:1 10313:1 10314:1 10321:25 10333:1 10338:1 10342:1 10349:1 10356:1 10359:10 10360:3 10376:1 10378:2 10399:1 10401:1 10406:1 10412:2 10431:1 10444:1 10452:1 10470:29 10488:1 10520:1 10559:1 10598:1 10599:1 10612:1 10669:1 10683:1 10686:2 10695:1 10697:1 10701:2 10704:1 10707:1 10711:1 10716:1 10717:3 10718:1 10736:1 10744:1 10749:1 10772:3 10773:1 10778:1 10789:2 10791:1 10792:1 10796:1 10798:1 10807:2 10808:2 10812:1 10813:1 10826:1 10850:1 10864:1 10878:1 10884:1 10895:1 10900:1 10911:3 10937:1 10979:1 10994:1 11002:1 11075:3 11078:1 11109:2 11163:2 11165:1 11169:1 11183:1 11207:1 11212:3 11226:1 11230:1 11231:1 11233:1 11238:1 11247:3 11258:1 11268:1 11270:1 11272:1 11325:1 11334:2 11340:1 11343:1 11347:1 11378:1 11382:5 11391:3 11402:1 11404:1 11422:1 11457:1 11489:4 11522:2 11557:3 11561:2 11564:1 11569:1 11571:3 11572:1 11573:1 11575:1 11583:1 11585:2 11587:2 11598:1 11617:1 11619:1 11625:1 11628:1 11636:1 11640:1 11641:1 11642:2 11645:1 11654:1 11668:1 11678:2 11690:4 11697:2 11707:2 11718:1 11720:1 11723:1 11739:1 11744:1 11745:1 11755:1 11771:1 11774:1 11776:1 11791:1 11793:1 11795:2 11804:1 11815:1 11840:1 11851:1 11861:1 11864:1 11865:1 11872:2 11876:1 11882:1 11885:1 11899:1 11902:1 11903:1 11918:1 11919:1 11930:1 11931:2 11932:7 11936:1 11955:1 11961:2 11966:1 11969:1 11976:1 11978:1 11982:3 11985:1 11988:1 11992:1 12004:1 12014:1 12033:1 12052:1 12056:1 12057:1 12076:1 12081:1 12082:1 12083:2 12086:1 12112:1 12113:1 12120:1 12131:1 12146:1 12147:1 12186:1 12191:1 12214:1 12221:6 12230:1 12231:1 12237:3 12239:4 12248:1 12255:1 12269:1 12301:1 12324:1 12339:1 12359:1 12361:1 12391:24 12401:1 12407:1 12420:1 12435:1 12446:1 12451:1 12458:1 12471:1 12473:1 12479:1 12490:2 12493:1 12497:1 12521:1 12538:1 12540:3 12547:2 12552:1 12561:2 12570:2 12580:1 12592:1 12608:1 12618:2 12619:1 12630:1 12641:1 12643:2 12651:1 12669:3 12673:5 12692:2 12694:1 12734:3 12756:1 12757:1 12760:1 12774:1 12777:1 12794:1 12821:1 12824:2 12829:1 12837:1 12848:1 12850:1 12867:5 12881:1 12898:1 12936:1 12958:1 12977:2 12981:1 12988:1 13013:4 13028:1 13040:2 13049:1 13051:1 13052:1 13058:1 13079:1 13080:1 13089:1 13096:1 13112:1 13113:4 13128:1 13154:3 13175:1 13179:1 13187:1 13213:1 13234:1 13258:3 13267:1 13282:1 13283:4 13303:1 13325:2 13357:2 13377:1 13384:1 13385:2 13411:1 13412:4 13415:1 13418:1 13420:3 13429:1 13443:1 13454:1 13464:1 13468:1 13471:1 13474:1 13483:1 13493:5 13498:1 13505:1 13509:1 13516:1 13517:2 13550:1 13568:1 13588:1 13601:1 13632:1 13633:1 13648:1 13669:2 13673:1 13686:2 13690:3 13694:1 13704:1 13710:1 13721:3 13737:1 13749:1 13761:1 13765:1 13767:1 13768:1 13777:1 13793:1 13798:8 13803:1 13808:1 13823:1 13824:3 13826:3 13828:1 13837:1 13845:1 13849:1 13859:1 13880:1 13881:1 13891:5 13895:1 13900:1 13901:1 13910:1 13919:1 13921:2 13931:1 13942:1 13972:2 13998:1 14008:1 14009:1 14015:1 14029:1 14032:3 14036:1 14042:1 14070:2 14071:1 14093:1 14095:2 14105:2 14114:1 14115:1 14116:2 14122:1 14124:1 14128:1 14134:1 14145:1 14146:4 14149:1 14152:1 14154:1 14162:1 14186:1 14189:2 14191:1 14218:1 14235:2 14263:1 14265:1 14286:1 14292:1 14296:1 14302:1 14308:1 14309:1 14322:6 14337:2 14340:1 14342:1 14376:1 14380:1 14406:1 14416:1 14430:1 14448:2 14488:1 14491:5 14515:1 14519:1 14523:1 14533:2 14550:1 14554:1 14555:1 14559:1 14564:1 14567:5 14568:1 14571:2 14577:1 14580:4 14586:1 14611:1 14614:1 14621:2 14628:1 14632:2 14636:1 14638:5 14642:1 14643:1 14654:1 14667:1 14675:2 14686:1 14716:1 14727:3 14735:1 14737:1 14742:4 14744:1 14787:1 14791:2 14803:1 14840:1 14844:1 14854:1 14869:1 14910:1 14940:1 14941:1 14960:1 15012:1 15037:3 15046:1 15060:3 15083:1 15086:1 15095:1 15140:1 15150:1 15151:1 15152:2 15160:1 15162:1 15185:1 15197:1 15210:1 15220:1 15222:1 15250:1 15269:1 15278:1 15292:1 15312:2 15315:4 15326:1 15345:1 15383:1 15385:2 15400:1 15414:1 15460:1 15472:1 15487:1 15502:3 15519:1 15525:1 15526:1 15574:1 15577:1 15584:1 15587:1 15595:1 15598:1 15675:1 15705:1 15707:1 15746:1 15747:1 15776:2 15778:25 15782:1 15786:1 15794:1 15797:1 15800:4 15813:1 15844:5 15855:1 15864:2 15868:1 15885:1 15900:1 15910:1 15912:1 15915:1 15942:1 15943:1 15944:1 15981:1 16001:1 16006:2 16013:1 16083:1 16099:2 16114:1 16134:1 16142:2 16147:1 16149:1 16173:1 16190:1 16196:1 16201:1 16241:1 16253:1 16269:1 16285:1 16293:1 16299:1 16303:1 16304:1 16320:1 16327:8 16332:1 16354:1 16357:1 16365:2 16372:1 16375:1 16394:1 16456:1 16475:1 16490:1 16499:1 16502:2 16505:2 16510:3 16516:3 16528:1 16535:1 16594:1 16609:10 16613:1 16622:1 16643:1 16720:1 16729:1 16731:1 16732:2 16742:1 16775:1 16792:3 16797:3 16803:2 16823:1 16831:1 16835:1 16837:1 16854:1 16869:2 16874:2 16882:1 16889:1 16897:1 16898:1 16914:2 16918:1 16929:2 16964:1 16968:2 16970:2 16971:1 16973:1 16977:2 16978:1 16979:8 16980:1 16981:1 16983:2 17002:1 17003:1 17004:1 17008:1 17009:1 17013:5 17026:1 17033:2 17064:1 17075:1 17076:1 17082:1 17114:1 17120:1 17125:1 17152:1 17154:1 17161:1 17172:10 17175:1 17181:2 17193:1 17204:1 17214:1 17217:1 17230:1 17243:1 17273:1 17276:1 17278:2 17286:4 17303:1 17309:1 17315:3 17319:1 17320:2 17333:9 17336:4 17417:2 17426:1 17438:1 17449:4 17450:1 17516:1 17545:1 17547:2 17562:1 17564:1 17571:1 17601:1 17607:2 17623:1 17629:1 17675:4 17679:1 17762:1 17769:1 17792:1 17794:1 17798:1 17806:2 17814:2 17817:3 17835:2 17836:1 17849:1 17850:1 17903:1 17918:1 17924:1 17925:1 17941:1 17942:1 17943:1 17955:1 17957:2 17972:1 17978:1 17981:1 17984:1 17992:1 17993:1 17997:1 17999:1 18000:1 18005:1 18013:1 18016:1 18030:1 18032:1 18037:1 18039:1 18048:1 18057:2 18080:1 18092:25 18101:2 18105:1 18106:1 18110:1 18120:1 18128:1 18137:1 18184:1 18198:1 18200:1 18203:5 18214:1 18215:1 18221:2 18244:1 18249:1 18270:3 18274:1 18276:1 18277:1 18290:1 18297:1 18298:1 18320:2 18325:1 18339:1 18342:1 18390:1 18392:1 18396:1 18442:1 18463:1 18470:2 18474:1 18485:1 18506:1 18535:1 18549:1 18559:1 18560:1 18561:2 18563:1 18574:1 18582:1 18593:1 18600:1 18601:1 18603:1 18608:7 18614:1 18645:3 18651:1 18673:1 18696:1 18708:2 18712:1 18715:1 18732:1 18747:1 18752:1 18767:2 18779:2 18781:3 18793:1 18794:1 18823:1 18867:1 18876:1 18898:2 18953:2 18954:1 18959:1 18968:1 18993:2 18997:1 19019:1 19029:1 19050:1 19060:1 19064:2 19067:1 19083:1 19087:1 19096:1 19097:1 19120:1 19141:1 19154:1 19175:1 19191:1 19192:2 19193:2 19225:1 19235:1 19263:4 19269:2 19287:1 19303:1 19310:1 19336:1 19361:1 19397:1 19416:1 19437:2 19452:1 19458:4 19469:1 19471:1 19475:1 19490:5 19496:2 19500:1 19513:3 19518:1 19525:1 19529:1 19538:3 19548:1 19567:1 19602:1 19605:1 19615:2 19620:1 19641:2 19645:4 19649:1 19658:1 19664:1 19670:1 19679:1 19689:1 19691:3 19703:1 19772:1 19775:1 19787:1 19796:1 19806:1 19810:11 19814:2 19820:1 19851:2 19854:3 19858:1 19865:2 19868:1 19894:2 19904:2 19905:1 19907:1 19908:2 19932:9 19947:1 19961:1 19976:3 20027:1 20034:1 20046:1 20065:1 20074:1 20076:1 20078:1 20091:1 20109:4 20110:2 20115:3 20117:1 20125:1 20126:1 20127:1 20130:1 20153:1 20168:1 20174:1 20201:2 20221:1 20231:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20295:1 20296:1 20318:1 20324:1 20325:1 20350:1 20355:1 20369:1 20383:1 20390:1 20431:1 20444:1 20446:2 20455:1 20522:1 20537:1 20556:2 20566:1 20568:1 20572:1 20588:2 20604:1 20606:1 20607:1 20608:1 20643:1 20646:1 20649:1 20654:1 20680:1 20689:1 20691:1 20727:1 20746:1 20751:3 20754:1 20762:1 20781:1 20783:1 20785:2 20796:1 20799:2 20816:1 20818:1 20865:1 20878:1 20885:1 20900:1 20917:1 20941:32 20948:1 20949:1 20974:1 20978:1 20997:1 21003:3 21064:1 21071:1 21072:1 21081:1 21083:1 21097:1 21101:1 21116:1 21124:2 21130:2 21145:2 21149:1 21174:1 21204:1 21209:1 21214:1 21215:1 21235:1 21261:1 21263:1 21284:1 21292:1 21299:1 21316:1 21318:2 21323:1 21337:1 21371:1 21376:1 21423:1 21443:1 21445:1 21503:1 21508:1 21512:1 21513:1 21522:1 21524:1 21530:1 21540:1 21566:1 21586:1 21593:1 21597:1 21602:1 21603:1 21608:2 21612:2 21634:1 21686:2 21701:1 21704:2 21713:2 21724:1 21754:1 21788:1 21806:1 21809:1 21819:1 21823:4 21827:1 21829:2 21831:1 21843:1 21864:1 21866:1 21872:2 21875:2 21886:1 21892:1 21899:1 21917:2 21939:2 21943:2 21975:4 21987:4 22008:2 22032:1 22037:1 22067:1 22076:1 22079:5 22083:1 22084:2 22123:3 22143:2 22169:1 22173:1 22177:1 22181:1 22186:2 22190:1 22207:1 22247:1 22298:1 22300:4 22305:1 22308:1 22315:1 22347:1 22362:1 22386:1 22388:1 22406:1 22424:1 22429:3 22490:1 22493:2 22497:1 22516:1 22530:2 22547:1 22584:1 22628:5 22643:1 22650:1 22666:1 22677:2 22715:1 22720:1 22727:4 22754:1 22783:1 22791:1 22800:1 22806:1 22809:1 22824:1 22839:1 22866:1 22870:1 22883:1625 22893:1 22909:2 22923:1 22944:1 22966:1 22969:1 22984:1 23031:3 23039:1 23043:2 23044:1 23079:1 23113:1 23119:1 23129:1 23139:1 23164:1 23171:1 23189:1 23193:1 23270:1 23304:1 23320:1 23321:1 23348:1 23365:1 23371:1 23411:1 23427:1 23456:1 23457:1 23468:2 23470:1 23482:1 23508:1 23521:2 23523:2 23543:1 23549:1 23603:1 23607:4 23640:3 23647:1 23653:1 23664:1 23698:1 23706:1 23708:1 23712:1 23718:1 23735:1 23763:1 23766:1 23773:1 23784:1 23789:1 23800:1 23805:1 23812:1 23821:1 23833:5 23834:3 23874:1 23880:4 23914:2 23932:1 23934:1 23947:14 23958:1 23978:1 23979:2 24012:2 24013:1 24019:1 24020:1 24044:1 24047:4 24052:1 24064:2 24066:1 24079:1 24092:1 24097:2 24105:3 24106:1 24118:1 24154:2 24185:1 24191:1 24197:1 24209:2 24217:1 24233:1 24239:2 24240:1 24255:1 24271:1 24289:1 24292:1 24327:1 24332:1 24342:1 24347:1 24364:1 24369:1 24376:4 24385:1 24424:1 24449:1 24450:1 24474:1 24479:1 24480:1 24482:1 24483:1 24491:1 24511:1 24518:2 24534:1 24539:1 24553:1 24566:1 24591:2 24592:5 24598:1 24604:1 24612:1 24620:1 24630:1 24640:1 24643:1 24651:1 24653:2 24656:3 24658:3 24674:1 24680:2 24681:3 24683:1 24699:1 24700:1 24708:4 24728:2 24753:2 24754:1 24762:2 24774:1 24781:3 24794:1 24808:2 24820:1 24826:1 24850:1 24853:1 24869:1 24883:4 24894:2 24918:1 24919:1 24924:1 24978:1 25000:1 25047:1 25053:1 25058:1 25067:1 25076:1 25080:1 25114:5 25122:1 25143:1 25144:2 25157:1 25161:2 25163:1 25179:3 25217:1 25240:1 25244:1 25269:1 25285:1 25299:1 25300:2 25303:1 25326:1 25334:2 25369:1 25373:1 25379:1 25392:1 25407:2 25410:1 25417:1 25427:2 25428:1 25431:1 25448:1 25456:1 25461:1 25481:1 25486:1 25491:1 25498:2 25502:2 25505:1 25511:3 25527:1 25529:1 25541:1 25543:1 25553:1 25554:1 25568:1 25572:1 25580:1 25582:2 25586:1 25590:3 25600:1 25602:1 25605:1 25608:3 25609:2 25623:2 25630:1 25632:1 25637:3 25699:1 25720:1 25721:4 25725:1 25733:2 25738:1 25781:1 25782:1 25786:2 25793:2 25807:1 25811:1 25815:1 25824:2 25841:1 25846:1 25852:1 25859:1 25867:1 25879:1 25907:1 25917:1 25928:1 25934:1 25948:1 25952:1 25973:1 25994:1 26000:1 26005:1 26011:1 26014:1 26018:3 26031:2 26052:1 26062:3 26070:1 26091:1 26102:2 26107:1 26119:1 26120:1 26124:1 26138:1 26151:1 26153:1 26155:1 26156:3 26183:1 26191:1 26203:2 26211:1 26214:1 26215:2 26216:2 26228:1 26236:1 26260:1 26261:1 26275:1 26279:1 26285:1 26306:1 26313:1 26327:1 26337:3 26345:1 26361:1 26362:1 26385:3 26394:1 26407:1 26424:1 26425:1 26438:3 26444:1 26453:4 26459:1 26460:1 26496:1 26508:5 26552:1 26589:1 26590:1 26593:1 26602:4 26608:1 26610:1 26612:3 26614:1 26628:2 26642:1 26651:1 26667:1 26668:7 26671:1 26679:1 26694:1 26740:1 26743:1 26744:1 26777:2 26779:4 26782:2 26787:1 26794:1 26795:1 26797:2 26808:1 26809:1 26815:1 26818:1 26820:1 26826:4 26827:1 26828:4 26842:1 26843:1 26844:1 26854:1 26874:1 26907:1 26914:1 26930:1 26949:2 26984:2 26995:2 26999:1 27004:4 27029:2 27051:1 27072:1 27087:3 27092:1 27097:1 27099:1 27103:1 27114:1 27127:3 27138:1 27149:1 27153:2 27171:1 27183:1 27203:1 27213:2 27243:1 27251:2 27259:1 27260:11 27283:1 27287:2 27294:1 27331:9 27333:2 27339:1 27343:1 27393:1 27396:4 27398:2 27401:1 27412:2 27415:1 27447:1 27460:7 27478:1 27500:3 27508:1 27522:1 27526:1 27527:1 27542:1 27544:2 27573:1 27591:1 27594:1 27599:1 27601:1 27603:2 27619:4 27633:2 27651:1 27653:1 27677:3 27723:1 27731:1 27752:1 27760:1 27767:1 27779:1 27782:1 27787:24 27804:1 27808:1 27810:2 27813:3 27816:1 27819:1 27825:1 27854:2 27859:2 27860:1 27862:1 27878:1 27879:1 27889:1 27920:1 27922:1 27925:1 27957:1 27963:1 27973:3 27974:1 27983:1 27987:2 28000:2 28011:4 28017:1 28052:1 28154:1 28160:1 28179:3 28191:1 28206:1 28263:1 28276:1 28278:1 28279:1 28287:1 28297:1 28298:2 28308:1 28310:1 28313:3 28317:1 28318:1 28370:25 28384:1 28398:2 28399:1 28433:1 28436:1 28460:1 28464:1 28472:2 28473:1 28482:2 28483:1 28489:6 28523:1 28528:1 28541:1 28560:1 28567:1 28572:1 28577:3 28582:2 28587:1 28612:1 28621:1 28639:1 28645:1 28647:2 28650:2 28686:1 28752:1 28786:1 28811:1 28814:1 28815:1 28817:2 28826:1 28831:1 28833:1 28852:1 28908:1 28913:1 28929:1 28932:1 28939:2 28940:1 28949:1 28974:2 28983:2 28993:1 28996:2 29004:1 29014:1 29016:1 29020:1 29032:1 29041:2 29087:1 29126:1 29133:2 29141:1 29149:1 29170:2 29174:1 29179:1 29190:1 29192:1 29215:1 29233:1 29241:1 29251:1 29258:1 29297:1 29328:1 29330:1 29334:1 29367:2 29398:1 29417:1 29419:3 29426:2 29451:1 29455:2 29464:1 29480:1 29486:2 29493:1 29516:2 29551:1 29554:1 29557:2 29564:1 29566:1 29568:2 29583:2 29584:2 29587:3 29591:1 29592:1 29604:1 29634:3 29635:1 29688:7 29695:1 29701:1 29741:1 29749:1 29752:1 29756:1 29760:1 29761:1 29775:1 29816:1 29822:1 29827:1 29840:1 29845:3 29887:1 29888:1 29901:2 29939:1 29952:1 29957:1 29962:2 29969:1 29995:1 30004:1 30015:1 30023:1 30035:1 30041:1 30079:3 30083:1 30084:2 30092:1 30093:1 30095:2 30099:3 30102:1 30105:2 30119:1 30134:1 30144:2 30165:3 30192:1 30198:2 30199:3 30213:1 30235:2 30238:1 30248:1 30253:1 30261:4 30263:1 30283:1 30284:1 30288:1 30290:1 30294:1 30295:1 30299:1 30307:1 30319:1 30320:1 30329:1 30330:1 30331:1 30350:1 30370:1 30424:1 30434:1 30454:1 30478:1 30482:3 30483:1 30493:1 30518:1 30535:3 30537:2 30538:2 30541:1 30552:2 30601:1 30613:1 30617:2 30641:1 30677:1 30679:1 30688:1 30743:1 30777:1 30783:1 30787:1 30788:1 30789:2 30790:5 30794:1 30806:1 30814:5 30817:3 30823:1 30855:2 30857:1 30861:1 30910:1 30912:2 30920:2 30931:1 30944:1 30952:1 30960:2 30970:1 30972:1 30981:4 30987:1 31002:1 31005:1 31015:1 31020:1 31026:1 31047:1 31051:3 31053:1 31055:2 31057:1 31059:1 31089:1 31092:1 31093:1 31095:1 31112:2 31134:1 31142:1 31148:1 31151:1 31168:3 31177:1 31178:1 31181:1 31188:1 31201:1 31210:1 31226:1 31235:1 31255:2 31264:3 31265:2 31276:1 31283:1 31296:2 31317:2 31329:2 31334:3 31377:4 31384:1 31404:1 31411:1 31413:11 31425:2 31444:1 31465:1 31478:1 31486:1 31550:1 31563:1 31569:1 31574:2 31578:3 31588:1 31595:1 31603:1 31610:1 31612:1 31641:1 31648:1 31660:2 31663:1 31708:1 31712:1 31725:1 31737:1 31747:1 31751:1 31753:2 31768:1 31784:1 31787:1 31797:1 31805:1 31808:1 31834:3 31848:1 31866:2 31874:1 31882:1 31885:1 31891:1 31893:1 31918:1 31919:1 31929:1 31930:4 31933:1 31946:2 31963:2 31964:1 31968:7 31969:1 31993:2 32010:1 32022:1 32025:1 32036:1 32066:5 32074:1 32090:1 32099:1 32106:1 32112:1 32115:1 32117:1 32136:1 32153:1 32208:1 32219:2 32259:1 32285:3 32307:1 32311:1 32319:1 32326:1 32329:1 32376:2 32405:1 32406:1 32413:1 32459:1 32461:2 32491:1 32492:1 32493:1 32505:2 32515:1 32532:1 32553:2 32555:1 32559:1 32574:1 32596:1 32606:1 32612:1 32624:1 32629:1 32636:1 32683:2 32691:1 32700:1 32725:2 32726:1 32732:1 32745:1 32749:2 32750:6 32774:3 32779:1 32785:2 32787:1 32801:4 32813:1 32820:1 32832:3 32846:1 32848:2 32879:1 32890:5 32891:1 32893:1 32896:2 32908:1 32909:1 32913:1 32917:2 32924:1 32929:3 32941:3 32950:1 32955:1 32958:1 32965:1 32974:1 32984:1 32997:1 33027:1 33031:1 33053:1 33057:1 33066:1 33069:1 33080:1 33085:1 33092:1 33094:3 33098:1 33100:1 33112:1 33118:1 33128:4 33133:2 33137:1 33141:1 33142:1 33144:1 33157:2 33180:1 33183:2 33222:1 33272:1 33276:1 33284:1 33287:1 33296:3 33297:1 33309:2 33330:1 33335:1 33346:1 33352:5 33388:1 33389:1 33404:1 33413:1 33422:1 33428:2 33440:1 33446:1 33461:3 33467:1 33498:1 33503:1 33505:2 33512:1 33530:1 33533:3 33537:2 33543:3 33545:1 33552:1 33553:2 33555:1 33556:2 33563:3 33579:1 33591:2 33592:1 33595:2 33609:1 33616:1 33620:1 33623:1 33637:1 33663:7 33669:1 33680:4 33716:1 33720:1 33730:1 33734:2 33743:1 33760:1 33766:1 33769:1 33794:2 33795:1 33820:1 33824:1 33861:1 33865:1 33880:2 33902:1 33910:1 33921:1 33928:1 33930:1 33997:1 34003:1 34040:1 34056:3 34057:2 34062:1 34067:4 34071:2 34075:4 34076:1 34077:1 34080:1 34083:1 34085:3 34099:1 34104:1 34133:1 34139:1 34144:1 34151:3 34157:1 34160:1 34174:1 34197:1 34221:2 34246:2 34283:1 34306:1 34314:1 34321:1 34351:1 34353:1 34364:1 34367:1 34371:1 34373:1 34385:1 34403:1 34407:1 34410:1 34413:2 34435:13 34437:1 34440:1 34445:1 34478:2 34497:6 34526:1 34566:1 34570:1 34589:1 34596:2 34615:1 34619:1 34627:1 34629:1 34630:1 34634:8 34643:2 34654:1 34659:1 34662:1 34673:1 34674:1 34682:1 34691:10 34701:1 34749:1 34757:1 34761:1 34782:1 34794:1 34804:2 34834:1 34862:1 34878:2 34968:1 34989:1 34996:29 34997:1 35022:1 35026:4 35031:1 35039:1 35041:5 35042:2 35056:1 35094:1 35098:1 35124:3 35128:8 35129:1 35135:2 35141:1 35149:1 35152:1 35164:1 35167:1 35177:1 35184:1 35201:1 35207:2 35253:1 35265:1 35281:1 35289:2 35310:1 35311:1 35326:1 35342:1 35354:3 35382:2 35395:1 35410:1 35456:1 35464:2 35473:1 35488:1 35499:1 35503:2 35517:2 35520:1 35539:1 35585:1 35589:2 35592:1 35602:2 35614:1 35625:2 35635:1 35636:1 35648:1 35656:1 35665:1 35677:1 35681:1 35692:1 35696:1 35700:1 35714:1 35721:1 35734:1 35746:1 35748:2 35753:1 35757:3 35785:1 35789:2 35805:6 35831:3 35836:1 35837:2 35838:2 35850:25 35862:1 35888:1 35901:1 35925:1 35939:1 35953:1 35957:1 35959:2 35965:2 35966:4 35989:1 36010:1 36011:1 36028:2 36033:1 36059:1 36072:1 36075:2 36091:1 2 9:1 10:1 31:2 32:1 33:1 65:1 69:1 73:1 95:1 104:3 106:2 107:1 122:1 140:1 166:2 177:1 191:1 196:2 200:2 207:1 211:1 235:1 239:2 251:1 256:1 278:2 297:2 302:3 303:1 309:1 322:2 323:1 328:1 330:1 365:1 372:1 412:1 414:3 418:1 435:1 450:1 452:1 454:1 478:2 498:2 503:1 515:1 520:1 526:1 539:1 549:1 553:1 555:1 568:2 601:2 607:1 610:1 621:1 641:1 650:1 659:1 662:1 672:1 674:1 684:1 690:1 720:1 750:1 751:3 755:2 761:1 766:1 795:4 820:26 825:3 831:1 835:1 854:1 861:1 881:1 886:2 919:1 931:1 935:2 941:2 955:1 964:1 999:2 1019:2 1022:1 1024:3 1028:2 1032:1 1034:1 1035:2 1082:3 1102:2 1135:3 1136:6 1140:2 1142:1 1150:5 1167:1 1176:4 1181:1 1194:2 1203:3 1206:6 1210:1 1212:2 1219:1 1226:2 1233:2 1234:3 1253:2 1256:1 1260:2 1270:2 1293:1 1301:2 1305:1 1308:1 1322:1 1326:3 1327:1 1385:2 1386:1 1403:1 1442:1 1454:1 1459:3 1510:1 1537:1 1541:25 1550:1 1554:2 1555:2 1556:1 1564:3 1567:1 1583:1 1592:1 1595:2 1596:2 1603:1 1605:1 1610:1 1611:1 1613:1 1616:1 1617:2 1619:1 1623:1 1627:1 1634:1 1638:1 1651:1 1652:1 1682:1 1705:1 1706:2 1740:2 1755:1 1757:1 1763:1 1765:1 1771:2 1773:3 1792:1 1808:1 1809:1 1824:1 1836:2 1847:1 1849:2 1861:1 1870:1 1888:1 1889:1 1891:2 1895:1 1897:6 1903:1 1910:1 1911:1 1915:1 1918:1 1925:1 1929:1 1930:1 1932:1 1960:2 1970:1 1990:1 1991:1 1997:2 2013:1 2014:1 2031:1 2036:1 2037:1 2043:1 2058:2 2088:1 2095:1 2097:1 2098:3 2102:1 2105:1 2106:2 2123:1 2139:1 2145:1 2147:1 2158:2 2160:1 2164:3 2172:1 2175:1 2196:1 2198:1 2199:1 2202:1 2218:1 2249:1 2260:1 2265:1 2276:1 2279:1 2282:1 2292:1 2307:1 2312:1 2317:2 2320:2 2327:1 2328:1 2345:1 2348:1 2352:3 2355:1 2364:1 2368:1 2376:1 2379:2 2390:1 2400:2 2406:2 2418:2 2420:1 2436:1 2446:1 2455:1 2467:1 2486:4 2508:1 2522:2 2525:1 2547:1 2557:1 2566:1 2598:1 2599:2 2604:1 2619:1 2624:1 2638:1 2642:1 2644:1 2652:1 2655:1 2665:1 2696:8 2721:1 2743:2 2746:1 2747:1 2783:1 2789:1 2817:1 2827:1 2848:1 2852:1 2857:1 2859:1 2861:2 2862:4 2865:1 2866:2 2867:1 2870:1 2872:5 2877:6 2881:3 2883:5 2887:3 2891:1 2895:1 2897:1 2900:1 2902:4 2906:2 2909:1 2910:1 2913:1 2918:1 2919:1 2920:1 2942:1 2954:2 2955:1 2971:3 2974:1 2980:1 2999:2 3002:1 3004:1 3026:1 3027:1 3042:1 3044:2 3045:3 3054:3 3057:1 3075:2 3076:4 3086:3 3087:1 3098:1 3100:1 3106:1 3116:3 3133:1 3137:1 3145:1 3165:1 3176:2 3177:2 3179:1 3186:1 3206:1 3224:2 3244:1 3255:1 3265:1 3266:1 3267:1 3312:1 3319:1 3322:2 3341:2 3348:2 3359:1 3366:1 3367:1 3371:1 3380:3 3381:1 3389:1 3406:1 3410:1 3413:3 3415:2 3420:1 3423:3 3429:1 3443:1 3451:1 3454:1 3493:1 3497:2 3507:1 3510:5 3516:1 3520:2 3539:2 3547:1 3584:2 3603:1 3612:2 3645:12 3648:26 3651:1 3652:2 3653:1 3663:2 3666:1 3678:1 3681:1 3682:1 3691:4 3692:1 3695:1 3698:1 3706:6 3736:2 3741:1 3753:1 3756:1 3784:2 3789:1 3792:1 3793:1 3794:1 3836:1 3846:3 3851:1 3860:1 3867:1 3897:3 3926:1 3958:1 3962:1 4045:1 4070:1 4097:1 4101:1 4119:1 4142:1 4146:1 4157:1 4161:3 4162:1 4171:1 4179:1 4211:1 4224:1 4226:2 4251:2 4328:1 4334:1 4355:1 4359:1 4371:1 4375:1 4381:1 4383:1 4395:1 4396:1 4402:1 4411:1 4412:1 4444:1 4448:1 4459:1 4474:1 4479:1 4488:1 4492:1 4517:1 4539:1 4555:1 4564:1 4575:1 4580:1 4582:1 4601:1 4626:1 4643:3 4645:2 4646:1 4651:2 4654:1 4722:2 4724:1 4767:1 4773:1 4780:3 4795:1 4803:1 4809:1 4813:1 4815:1 4820:2 4830:2 4843:1 4855:1 4857:1 4859:1 4867:3 4886:1 4887:1 4914:1 4920:25 4922:2 4927:1 4931:1 4947:1 4985:1 4992:1 5008:1 5015:2 5019:4 5020:2 5032:2 5039:1 5047:1 5054:2 5058:5 5059:2 5076:2 5119:1 5125:1 5134:1 5153:1 5163:1 5170:3 5178:1 5190:1 5194:1 5233:1 5235:1 5237:1 5240:1 5241:1 5247:1 5254:1 5272:1 5282:1 5298:1 5299:2 5300:1 5302:2 5307:1 5308:3 5324:1 5348:1 5371:3 5402:2 5404:1 5408:1 5416:1 5428:1 5435:2 5437:25 5444:1 5453:1 5456:1 5459:4 5465:1 5471:1 5473:1 5483:1 5486:1 5492:1 5555:2 5566:6 5587:1 5588:1 5598:1 5638:3 5655:2 5662:1 5663:1 5672:2 5676:2 5679:1 5687:1 5712:1 5731:7 5738:1 5760:1 5832:5 5843:1 5869:1 5879:5 5885:1 5913:1 5924:1 5960:1 5967:1 5969:2 5973:2 5974:1 5980:1 5983:2 5995:1 6004:1 6005:3 6017:1 6043:1 6049:1 6075:2 6078:1 6096:12 6097:2 6112:2 6115:1 6140:3 6149:2 6158:1 6187:2 6191:1 6207:1 6253:3 6254:1 6257:2 6277:4 6278:4 6279:2 6285:5 6291:1 6292:2 6293:3 6294:1 6303:1 6309:2 6312:5 6315:3 6316:1 6326:1 6358:1 6407:1 6411:2 6430:1 6495:1 6528:1 6580:1 6610:1 6622:1 6623:2 6628:1 6655:1 6679:1 6683:1 6684:1 6698:1 6738:3 6759:1 6787:1 6799:1 6801:2 6803:1 6807:1 6832:1 6835:1 6843:1 6859:1 6861:1 6867:3 6870:1 6942:1 6970:1 6972:1 6983:1 6991:1 6996:1 7008:1 7010:1 7012:1 7036:2 7038:2 7061:2 7062:3 7065:1 7070:1 7072:1 7076:1 7083:1 7086:1 7119:1 7130:1 7138:1 7140:1 7164:1 7213:1 7225:2 7243:1 7250:1 7252:1 7264:2 7289:8 7295:3 7366:1 7377:1 7421:1 7422:1 7423:1 7432:2 7434:1 7451:1 7455:1 7494:1 7525:1 7532:1 7537:1 7561:1 7567:2 7580:2 7583:1 7589:1 7591:1 7599:1 7603:1 7604:2 7607:1 7630:1 7635:1 7656:1 7665:1 7684:1 7707:1 7708:2 7709:1 7715:1 7716:1 7718:1 7721:1 7722:1 7725:1 7727:1 7728:1 7729:3 7734:1 7739:1 7741:2 7764:1 7782:1 7805:1 7822:1 7825:1 7840:1 7847:1 7852:3 7857:2 7860:1 7871:2 7905:1 7937:2 7945:1 7965:1 7966:1 7974:1 7989:5 7995:1 8002:1 8004:4 8006:1 8007:1 8008:1 8009:1 8014:2 8015:1 8016:1 8019:3 8020:6 8030:1 8034:1 8054:1 8077:1 8082:1 8085:2 8125:1 8136:1 8176:1 8185:1 8186:1 8200:3 8203:3 8224:1 8260:1 8284:1 8293:1 8297:1 8308:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:2 8349:1 8370:2 8377:1 8393:2 8421:1 8427:1 8446:1 8449:1 8489:1 8493:1 8496:1 8501:3 8524:1 8564:2 8566:1 8570:1 8577:1 8602:1 8617:1 8648:1 8695:2 8709:1 8714:1 8731:1 8738:1 8751:1 8772:1 8842:1 8845:1 8849:1 8854:1 8866:1 8883:6 8905:1 8940:1 8943:1 8946:1 8955:1 8960:1 8966:2 8978:2 8996:1 9007:1 9012:1 9052:2 9060:1 9090:1 9113:1 9122:1 9123:2 9126:1 9134:1 9138:1 9143:1 9146:1 9153:1 9194:1 9205:1 9216:1 9217:2 9231:1 9253:1 9282:1 9306:1 9307:1 9325:1 9328:1 9333:1 9337:1 9338:6 9372:6 9374:1 9381:1 9394:1 9426:1 9428:2 9433:1 9437:1 9446:1 9470:1 9484:1 9492:1 9495:1 9499:1 9526:4 9529:1 9577:1 9586:1 9588:1 9612:2 9619:1 9628:10 9629:9 9637:1 9655:1 9656:1 9657:5 9688:3 9694:2 9695:1 9702:40 9707:1 9708:1 9711:2 9719:1 9720:1 9723:1 9733:12 9738:3 9744:1 9754:1 9758:1 9761:1 9780:1 9781:1 9787:1 9793:2 9803:1 9849:4 9866:2 9870:1 9885:1 9895:1 9924:1 9926:2 9942:3 9957:1 9963:1 9967:3 9968:1 9975:1 9978:1 9999:5 10011:1 10023:1 10058:1 10063:2 10099:2 10103:1 10161:1 10167:1 10171:1 10175:1 10209:1 10213:1 10223:1 10235:2 10261:2 10284:1 10286:1 10298:1 10313:1 10314:1 10321:26 10333:1 10338:1 10342:1 10349:1 10356:1 10359:11 10360:3 10376:1 10378:2 10399:1 10401:1 10406:1 10411:1 10412:2 10431:1 10444:1 10452:1 10470:30 10488:1 10520:1 10559:1 10598:1 10599:1 10612:1 10669:1 10683:1 10686:2 10695:1 10697:1 10701:2 10704:1 10707:1 10711:1 10716:1 10717:4 10718:1 10736:1 10744:1 10749:1 10772:3 10773:1 10778:1 10789:2 10791:1 10792:1 10796:1 10798:1 10807:2 10808:2 10812:1 10813:1 10826:1 10848:1 10850:1 10864:1 10878:1 10884:1 10895:1 10900:1 10911:3 10937:1 10979:1 10994:1 11002:1 11075:3 11078:1 11081:1 11109:2 11163:2 11165:1 11169:1 11183:1 11207:1 11212:3 11226:1 11230:1 11231:1 11233:1 11238:1 11247:3 11258:1 11268:1 11270:1 11272:1 11325:1 11334:2 11340:1 11343:1 11347:2 11378:1 11382:5 11391:4 11402:1 11404:1 11422:1 11457:1 11489:4 11522:2 11557:3 11561:2 11564:1 11569:1 11571:3 11572:1 11573:1 11575:1 11583:1 11585:2 11587:2 11598:1 11617:1 11619:1 11625:1 11628:1 11636:1 11640:1 11641:1 11642:2 11645:1 11654:1 11668:1 11675:1 11678:2 11690:4 11697:2 11707:2 11718:1 11720:1 11723:1 11739:1 11744:1 11745:1 11755:1 11770:1 11771:1 11774:1 11776:1 11791:1 11793:1 11795:2 11804:1 11815:1 11840:1 11851:1 11861:1 11864:1 11865:1 11872:2 11876:1 11882:1 11885:1 11899:1 11902:1 11903:1 11918:1 11919:3 11930:1 11931:2 11932:7 11936:1 11955:1 11961:2 11966:1 11969:1 11976:1 11978:1 11982:3 11985:1 11988:1 11992:1 12004:1 12014:1 12033:1 12052:1 12056:1 12057:1 12076:1 12081:1 12082:1 12083:2 12086:1 12111:1 12112:1 12113:1 12120:1 12131:1 12146:1 12147:1 12186:1 12191:1 12214:1 12221:6 12229:1 12230:1 12231:1 12237:3 12239:4 12248:1 12255:1 12269:1 12301:1 12324:1 12339:1 12359:1 12361:1 12391:25 12401:1 12407:1 12420:1 12435:1 12446:1 12451:1 12458:1 12471:1 12473:1 12479:1 12490:2 12493:1 12497:1 12508:1 12520:1 12521:1 12538:1 12540:3 12547:2 12552:1 12561:2 12570:2 12580:1 12592:1 12608:1 12618:2 12619:1 12630:1 12641:1 12643:2 12651:1 12654:2 12669:4 12673:5 12692:2 12694:1 12734:4 12756:1 12757:1 12760:1 12774:1 12777:1 12794:1 12821:1 12824:2 12829:1 12837:1 12848:1 12850:1 12867:6 12879:1 12881:1 12898:1 12936:1 12958:1 12977:2 12981:1 12988:1 13013:4 13028:1 13040:2 13049:1 13051:1 13052:1 13058:1 13079:1 13080:1 13089:1 13096:1 13112:1 13113:4 13128:1 13154:3 13175:1 13179:1 13187:1 13213:1 13234:1 13258:3 13267:1 13282:1 13283:5 13303:1 13325:2 13357:2 13377:1 13384:1 13385:2 13411:1 13412:4 13415:1 13418:1 13420:4 13429:1 13443:1 13454:1 13464:2 13468:1 13471:1 13474:1 13483:1 13493:6 13498:1 13505:1 13509:1 13516:1 13517:2 13550:1 13568:1 13588:1 13601:1 13632:3 13633:1 13648:1 13669:2 13673:1 13686:2 13690:3 13694:1 13704:1 13710:1 13721:3 13737:1 13749:1 13761:1 13765:1 13767:1 13768:1 13777:1 13793:1 13798:8 13803:1 13808:1 13823:1 13824:3 13826:3 13828:1 13837:1 13845:1 13849:1 13859:1 13880:1 13881:1 13891:6 13895:1 13900:1 13901:1 13910:1 13919:1 13921:2 13931:1 13942:1 13972:2 13998:1 14008:1 14009:1 14015:1 14029:1 14032:3 14036:1 14042:1 14070:2 14071:1 14093:1 14095:2 14105:2 14114:1 14115:1 14116:2 14122:1 14124:1 14128:1 14134:1 14145:1 14146:4 14149:1 14152:1 14154:1 14162:1 14186:1 14189:2 14191:1 14218:1 14235:3 14263:1 14265:1 14286:1 14292:1 14296:1 14302:1 14308:1 14309:1 14322:6 14337:2 14340:2 14342:1 14376:1 14380:1 14406:1 14416:1 14430:1 14448:2 14488:1 14491:6 14515:1 14519:1 14523:1 14533:2 14550:1 14554:1 14555:1 14559:1 14564:1 14567:5 14568:1 14571:2 14577:1 14580:4 14586:1 14611:1 14614:1 14621:2 14628:1 14632:2 14636:1 14638:5 14642:1 14643:1 14654:1 14666:1 14667:1 14675:2 14686:1 14716:1 14727:3 14735:1 14737:1 14742:4 14744:1 14787:1 14791:2 14803:1 14840:1 14844:1 14854:1 14869:1 14910:1 14940:1 14941:1 14960:1 14984:1 15012:1 15030:1 15037:3 15046:1 15060:3 15083:1 15086:1 15095:1 15123:1 15140:1 15150:1 15151:1 15152:2 15160:1 15162:1 15185:1 15197:1 15210:1 15220:1 15222:1 15250:1 15269:1 15278:1 15292:1 15312:2 15315:4 15326:1 15345:1 15383:1 15385:2 15400:1 15414:1 15460:1 15472:1 15487:1 15502:3 15519:1 15525:1 15526:1 15574:1 15577:1 15584:1 15587:1 15595:1 15598:1 15675:1 15705:1 15707:1 15746:1 15747:1 15776:2 15778:26 15782:1 15786:1 15794:1 15797:1 15800:4 15813:1 15844:6 15855:1 15864:2 15868:1 15885:1 15900:1 15910:1 15912:1 15915:1 15942:1 15943:1 15944:1 15981:1 16001:1 16006:2 16013:1 16017:1 16083:1 16099:2 16114:1 16134:1 16142:2 16147:1 16149:1 16173:1 16190:1 16196:1 16198:1 16201:1 16241:1 16253:1 16269:1 16285:1 16293:1 16299:1 16303:1 16304:1 16320:1 16327:11 16332:2 16354:1 16357:1 16365:2 16372:1 16375:1 16394:1 16456:1 16475:1 16490:1 16499:1 16502:2 16505:2 16510:3 16516:5 16528:1 16535:1 16594:1 16609:11 16613:1 16622:1 16643:1 16720:1 16729:1 16731:1 16732:2 16742:1 16775:1 16792:3 16797:3 16803:2 16823:1 16831:1 16835:1 16837:1 16854:1 16869:2 16874:2 16882:1 16889:1 16897:1 16898:1 16914:2 16918:1 16929:2 16964:1 16968:2 16970:2 16971:1 16973:1 16977:2 16978:1 16979:8 16980:1 16981:1 16983:2 17002:1 17003:1 17004:1 17008:1 17009:1 17013:5 17026:1 17033:2 17064:1 17075:1 17076:1 17082:1 17114:1 17120:1 17125:1 17152:1 17154:1 17161:1 17172:10 17175:1 17181:2 17193:1 17204:1 17214:1 17217:1 17230:1 17234:1 17243:1 17246:1 17273:1 17276:1 17278:2 17286:4 17303:1 17309:1 17315:3 17319:1 17320:2 17333:9 17336:4 17417:2 17426:1 17438:1 17449:4 17450:1 17481:1 17516:1 17545:1 17547:2 17562:1 17564:1 17571:1 17601:1 17607:2 17623:1 17629:1 17675:4 17679:1 17723:1 17762:1 17769:1 17792:1 17794:1 17798:1 17806:2 17814:2 17817:3 17835:2 17836:1 17849:1 17850:1 17858:2 17869:1 17903:1 17918:1 17924:1 17925:1 17941:1 17942:1 17943:1 17955:1 17957:2 17972:1 17978:1 17981:1 17984:1 17992:1 17993:1 17997:1 17999:1 18000:1 18005:1 18011:1 18013:1 18016:1 18030:1 18032:1 18037:1 18039:1 18048:1 18057:2 18073:1 18080:1 18092:26 18101:3 18105:1 18106:1 18110:1 18120:1 18127:1 18128:1 18137:1 18184:1 18198:1 18200:1 18203:5 18214:1 18215:1 18221:2 18244:1 18249:1 18270:3 18274:1 18276:1 18277:1 18290:1 18297:1 18298:1 18320:2 18325:1 18339:1 18342:1 18390:1 18392:1 18396:1 18442:1 18463:2 18470:2 18474:1 18485:1 18506:1 18535:1 18549:1 18559:1 18560:1 18561:2 18563:1 18574:1 18582:1 18593:1 18600:2 18601:1 18603:1 18608:7 18614:1 18645:3 18651:1 18673:1 18696:1 18708:2 18712:1 18715:1 18732:1 18747:1 18752:1 18767:2 18769:1 18779:2 18781:3 18793:1 18794:1 18823:1 18867:1 18870:1 18876:1 18898:2 18953:2 18954:1 18959:1 18968:1 18993:2 18997:1 19019:1 19029:1 19050:1 19060:1 19064:2 19067:1 19083:1 19087:1 19096:1 19097:1 19120:1 19141:1 19154:1 19175:1 19191:1 19192:2 19193:3 19225:1 19235:1 19263:4 19269:2 19287:1 19303:1 19310:1 19336:1 19361:1 19397:1 19416:1 19428:1 19437:2 19452:1 19458:4 19469:1 19471:1 19475:1 19490:5 19496:3 19500:1 19513:3 19518:1 19525:1 19529:1 19538:3 19548:1 19567:1 19602:1 19605:1 19615:3 19620:1 19641:2 19645:4 19649:1 19658:1 19664:1 19670:1 19672:1 19679:1 19689:1 19691:3 19703:1 19708:1 19772:1 19775:1 19787:1 19796:1 19806:1 19810:12 19814:2 19820:1 19851:2 19854:3 19858:1 19865:2 19868:1 19894:2 19904:2 19905:1 19907:1 19908:2 19932:9 19947:1 19961:1 19976:3 20027:1 20034:1 20046:1 20061:1 20065:1 20074:1 20076:1 20078:1 20091:1 20109:4 20110:2 20115:3 20117:1 20125:2 20126:1 20127:1 20130:1 20153:1 20168:1 20174:1 20201:2 20221:1 20231:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20295:1 20296:1 20318:1 20324:1 20325:1 20350:1 20355:1 20369:1 20383:1 20390:1 20431:1 20444:1 20445:1 20446:2 20455:1 20522:1 20537:1 20556:2 20566:1 20568:1 20572:1 20588:2 20604:1 20606:3 20607:1 20608:1 20617:1 20643:1 20646:1 20649:1 20654:1 20679:1 20680:1 20689:1 20691:2 20727:1 20746:1 20751:3 20754:1 20762:1 20781:1 20783:1 20785:2 20796:1 20799:2 20816:1 20818:1 20865:1 20878:1 20885:1 20900:1 20917:1 20918:1 20941:33 20948:1 20949:1 20974:1 20978:1 20997:1 21000:1 21003:3 21044:1 21064:1 21071:1 21072:1 21081:1 21083:1 21097:1 21101:1 21116:1 21124:2 21130:2 21145:2 21149:1 21174:2 21204:1 21209:1 21214:1 21215:1 21235:1 21261:1 21263:1 21284:1 21292:1 21299:1 21316:1 21318:2 21322:1 21323:1 21337:1 21371:1 21376:1 21423:1 21443:1 21445:1 21477:1 21503:1 21508:1 21512:1 21513:1 21522:2 21524:1 21530:1 21540:1 21566:1 21586:1 21593:1 21597:1 21602:1 21603:1 21608:2 21612:2 21634:1 21686:2 21701:1 21704:2 21713:2 21724:1 21754:1 21788:1 21806:1 21809:1 21819:1 21823:4 21827:1 21829:2 21831:1 21843:1 21864:1 21866:1 21872:2 21874:1 21875:2 21886:1 21892:1 21899:1 21917:2 21939:2 21943:2 21975:4 21987:4 22008:2 22032:1 22037:1 22067:1 22076:1 22079:5 22083:1 22084:2 22123:3 22143:2 22169:1 22173:1 22177:2 22181:1 22186:2 22190:1 22207:1 22247:1 22251:2 22298:1 22300:4 22305:1 22308:1 22315:1 22347:1 22362:1 22386:1 22388:1 22406:1 22424:1 22429:3 22490:1 22493:2 22497:1 22516:1 22530:2 22547:1 22584:1 22628:6 22643:1 22650:1 22666:1 22668:1 22677:2 22715:1 22720:1 22727:4 22754:1 22781:1 22783:1 22791:1 22800:1 22806:1 22809:1 22824:1 22839:1 22866:1 22870:1 22883:1714 22893:1 22899:1 22909:2 22923:1 22944:1 22966:1 22969:1 22984:1 23031:3 23039:1 23043:2 23044:1 23079:1 23113:1 23119:1 23129:1 23139:1 23164:1 23171:1 23189:1 23193:1 23223:1 23270:1 23293:1 23304:1 23320:1 23321:1 23348:1 23365:1 23371:1 23411:1 23427:1 23456:1 23457:1 23468:2 23470:1 23474:1 23482:1 23492:1 23508:1 23521:3 23523:2 23543:1 23549:1 23603:1 23607:4 23640:4 23647:1 23653:1 23664:1 23698:1 23706:1 23708:1 23712:1 23718:1 23735:1 23763:1 23766:1 23773:1 23784:1 23787:1 23789:1 23800:1 23805:1 23812:1 23821:1 23833:5 23834:3 23874:1 23880:4 23914:2 23932:1 23934:1 23947:16 23958:1 23978:1 23979:2 24012:2 24013:1 24019:1 24020:1 24044:1 24047:4 24049:1 24052:1 24064:2 24066:1 24079:1 24092:1 24097:2 24105:3 24106:1 24118:1 24154:2 24185:1 24191:1 24197:1 24209:3 24217:1 24233:1 24239:2 24240:1 24255:1 24271:1 24289:2 24292:1 24327:1 24332:1 24342:1 24345:1 24347:1 24364:1 24369:1 24376:4 24385:1 24424:1 24449:1 24450:1 24474:1 24479:1 24480:1 24482:2 24483:1 24491:1 24511:1 24518:2 24534:1 24539:1 24553:1 24566:1 24591:2 24592:6 24598:1 24601:1 24604:1 24612:1 24620:1 24630:1 24640:1 24643:1 24651:1 24653:2 24656:3 24658:4 24663:1 24674:1 24680:2 24681:3 24682:1 24683:1 24699:1 24700:1 24708:4 24728:2 24753:2 24754:1 24762:2 24774:1 24781:3 24794:1 24808:2 24820:1 24826:1 24850:1 24853:1 24869:1 24883:4 24894:2 24918:1 24919:1 24924:1 24945:1 24978:1 25000:1 25047:1 25053:1 25058:1 25067:1 25076:1 25080:1 25114:5 25122:1 25143:1 25144:2 25157:1 25161:2 25163:1 25179:3 25217:1 25240:1 25244:1 25269:1 25285:1 25299:1 25300:2 25303:1 25326:1 25334:2 25357:1 25369:1 25373:1 25379:1 25386:1 25392:1 25407:2 25410:2 25417:1 25427:2 25428:1 25431:2 25448:1 25456:1 25461:1 25481:1 25486:1 25491:1 25498:2 25502:2 25505:1 25511:3 25527:1 25529:1 25541:1 25543:1 25553:1 25554:2 25568:1 25572:1 25580:1 25582:2 25586:1 25590:3 25600:2 25602:1 25605:1 25608:3 25609:2 25623:2 25630:1 25632:1 25637:3 25699:1 25720:1 25721:4 25725:1 25733:2 25738:1 25781:1 25782:1 25786:2 25793:2 25807:1 25811:1 25815:1 25824:2 25841:1 25846:1 25852:1 25859:2 25867:1 25879:1 25907:1 25917:1 25928:1 25934:1 25948:1 25952:1 25973:1 25994:1 26000:1 26005:1 26011:1 26014:1 26018:3 26031:2 26052:1 26062:3 26070:1 26091:1 26102:2 26107:1 26119:1 26120:1 26124:1 26138:1 26151:1 26153:1 26155:1 26156:3 26183:1 26191:1 26203:2 26211:1 26214:1 26215:2 26216:2 26228:1 26236:1 26260:1 26261:1 26275:1 26279:1 26285:1 26306:1 26313:1 26324:1 26327:1 26337:3 26344:1 26345:1 26361:1 26362:1 26385:3 26394:1 26407:1 26415:1 26424:1 26425:1 26438:3 26444:1 26453:4 26459:1 26460:1 26496:1 26508:5 26552:1 26555:1 26589:1 26590:1 26593:1 26602:4 26605:1 26608:1 26610:1 26612:3 26614:1 26628:2 26642:1 26651:1 26667:1 26668:7 26671:1 26679:1 26694:1 26740:1 26743:1 26744:1 26777:2 26779:4 26782:2 26787:1 26794:1 26795:1 26797:2 26808:1 26809:2 26815:1 26818:1 26820:1 26826:4 26827:1 26828:4 26842:1 26843:1 26844:1 26854:1 26874:1 26907:1 26914:1 26930:1 26949:2 26984:2 26995:2 26999:1 27004:4 27029:2 27051:1 27072:1 27087:3 27092:1 27097:1 27099:1 27103:1 27114:1 27127:3 27138:1 27149:1 27153:2 27171:1 27183:1 27203:1 27213:2 27243:1 27251:2 27259:1 27260:11 27283:1 27287:2 27294:1 27331:9 27333:2 27339:1 27343:1 27393:1 27396:4 27398:2 27401:1 27412:2 27415:1 27447:1 27460:7 27478:1 27500:3 27508:1 27522:1 27526:1 27527:1 27542:1 27544:2 27573:1 27591:1 27594:1 27599:1 27601:1 27603:2 27619:5 27633:2 27651:1 27653:1 27677:3 27703:1 27723:1 27731:1 27752:1 27760:1 27767:1 27779:1 27782:1 27787:25 27804:1 27808:1 27810:2 27813:3 27816:1 27819:1 27825:1 27854:2 27859:3 27860:1 27862:1 27878:1 27879:1 27889:1 27920:1 27922:1 27925:1 27957:1 27963:1 27973:5 27974:1 27983:1 27987:2 28000:2 28007:1 28011:4 28017:1 28051:1 28052:1 28154:1 28160:1 28179:3 28191:1 28206:1 28263:1 28276:1 28278:1 28279:1 28287:1 28297:1 28298:2 28308:1 28310:1 28313:3 28317:1 28318:1 28370:26 28384:1 28398:3 28399:1 28433:1 28436:1 28460:1 28464:1 28472:2 28473:1 28482:2 28483:1 28489:6 28523:1 28528:1 28541:1 28560:1 28567:1 28572:1 28577:3 28582:2 28587:1 28612:1 28621:1 28639:1 28645:1 28647:2 28650:2 28686:1 28752:1 28786:1 28811:1 28812:1 28814:1 28815:1 28817:2 28826:1 28831:1 28833:1 28852:1 28908:1 28913:1 28929:1 28932:1 28939:2 28940:1 28949:1 28974:2 28983:2 28993:1 28996:2 29004:1 29014:1 29016:1 29020:1 29032:1 29041:3 29087:1 29126:1 29133:2 29141:1 29149:1 29170:3 29174:1 29179:1 29190:2 29192:1 29215:1 29233:1 29241:1 29251:1 29258:1 29297:1 29328:1 29330:1 29334:1 29367:2 29398:1 29417:1 29419:3 29426:2 29451:1 29455:2 29464:1 29480:1 29486:2 29493:1 29516:2 29551:1 29554:1 29557:2 29564:2 29566:1 29568:2 29583:2 29584:2 29587:3 29591:1 29592:1 29604:1 29634:3 29635:1 29688:7 29695:1 29701:1 29741:1 29749:1 29752:1 29756:1 29760:1 29761:1 29768:1 29775:1 29816:1 29822:1 29827:1 29840:1 29845:4 29887:1 29888:1 29901:2 29939:1 29952:1 29957:1 29962:2 29969:1 29995:1 30004:1 30015:1 30023:1 30035:1 30041:1 30079:3 30083:1 30084:2 30092:1 30093:1 30095:2 30099:4 30102:1 30105:2 30119:1 30134:1 30144:2 30165:3 30192:1 30198:2 30199:3 30213:1 30235:2 30238:1 30248:1 30253:1 30261:4 30263:1 30283:1 30284:1 30288:1 30290:1 30294:1 30295:1 30299:1 30307:1 30319:1 30320:1 30329:1 30330:1 30331:1 30350:1 30364:1 30370:1 30424:1 30434:1 30454:1 30478:1 30482:3 30483:1 30489:1 30493:1 30518:1 30535:4 30537:2 30538:2 30541:1 30552:2 30601:1 30613:1 30617:2 30641:1 30677:1 30679:1 30688:1 30743:1 30777:1 30783:1 30787:1 30788:1 30789:2 30790:6 30794:1 30806:1 30814:5 30817:3 30823:1 30855:2 30857:1 30861:1 30910:1 30912:2 30920:2 30931:1 30944:2 30952:1 30960:2 30970:1 30972:1 30981:4 30987:1 31002:1 31005:1 31015:1 31020:1 31026:1 31047:1 31051:4 31053:1 31055:2 31057:1 31059:1 31089:1 31092:1 31093:1 31095:1 31112:2 31134:1 31142:1 31148:1 31151:1 31168:3 31177:1 31178:1 31181:1 31188:1 31201:1 31210:1 31226:1 31235:2 31255:2 31264:3 31265:2 31276:1 31283:1 31296:4 31317:2 31329:2 31334:3 31376:1 31377:5 31384:1 31387:1 31404:1 31411:1 31413:11 31425:2 31444:1 31465:1 31478:1 31486:1 31550:1 31563:1 31569:1 31574:2 31578:3 31588:1 31595:1 31603:1 31610:1 31612:1 31641:1 31648:1 31660:2 31663:1 31708:1 31712:1 31725:1 31737:1 31747:1 31751:1 31753:2 31768:1 31784:1 31787:1 31797:1 31805:1 31808:1 31834:3 31848:1 31853:1 31866:2 31874:1 31882:1 31885:1 31891:1 31893:1 31918:1 31919:1 31929:1 31930:4 31933:1 31946:2 31963:2 31964:1 31968:8 31969:1 31993:2 32010:1 32022:1 32025:1 32036:1 32066:5 32074:1 32090:1 32099:1 32106:1 32112:1 32115:1 32117:1 32136:1 32153:1 32208:1 32219:2 32259:1 32285:3 32307:1 32311:1 32317:1 32319:1 32326:1 32329:1 32376:2 32405:1 32406:1 32413:1 32459:1 32461:2 32491:1 32492:1 32493:2 32505:2 32515:1 32532:1 32553:2 32555:1 32559:1 32574:1 32596:1 32606:1 32612:1 32624:1 32629:1 32636:1 32683:2 32691:1 32700:1 32725:2 32726:1 32732:1 32745:1 32749:2 32750:6 32774:3 32779:1 32785:2 32787:1 32801:4 32813:1 32820:1 32832:3 32846:1 32848:2 32879:1 32890:5 32891:1 32893:1 32896:2 32908:1 32909:1 32913:1 32917:2 32924:1 32929:3 32941:3 32950:2 32955:1 32958:1 32965:1 32974:1 32984:1 32997:1 33027:1 33031:1 33053:1 33057:1 33066:1 33069:2 33080:1 33085:1 33089:1 33092:1 33094:3 33098:1 33100:1 33112:1 33118:1 33128:4 33133:2 33137:1 33141:1 33142:1 33144:1 33157:2 33168:1 33180:1 33183:2 33218:1 33222:1 33272:1 33276:1 33284:1 33287:1 33296:3 33297:1 33309:2 33330:1 33335:1 33346:1 33352:5 33388:1 33389:1 33404:1 33413:1 33422:1 33428:2 33440:1 33444:1 33446:1 33449:1 33461:3 33467:1 33498:1 33503:1 33505:2 33512:1 33530:1 33533:3 33537:2 33543:3 33545:1 33552:1 33553:2 33555:1 33556:2 33563:3 33579:1 33591:2 33592:1 33595:2 33609:1 33616:1 33620:1 33623:1 33637:1 33663:7 33669:1 33680:4 33716:1 33720:1 33730:1 33734:2 33743:1 33760:1 33766:1 33769:1 33771:1 33794:2 33795:1 33820:1 33824:1 33861:1 33865:1 33880:2 33902:1 33910:1 33921:1 33928:1 33930:1 33997:1 34003:1 34040:1 34056:3 34057:2 34062:1 34067:4 34071:2 34075:5 34076:1 34077:1 34080:1 34083:1 34085:3 34099:1 34104:1 34133:1 34139:1 34144:1 34151:3 34157:1 34160:1 34174:1 34197:1 34221:2 34246:2 34283:1 34306:1 34314:1 34321:1 34351:1 34353:1 34364:1 34367:1 34371:1 34373:1 34385:1 34403:1 34407:1 34410:1 34413:2 34435:13 34437:1 34440:1 34445:1 34470:1 34478:2 34497:6 34526:1 34566:1 34570:1 34589:1 34596:3 34615:1 34619:1 34627:1 34629:1 34630:1 34634:8 34643:2 34654:1 34659:1 34662:1 34673:1 34674:1 34682:1 34691:11 34701:1 34749:1 34757:2 34761:1 34782:1 34794:1 34804:2 34834:1 34862:1 34878:2 34968:1 34989:1 34996:30 34997:1 35022:1 35026:4 35031:1 35039:1 35041:5 35042:2 35056:1 35094:1 35098:1 35124:3 35128:8 35129:1 35135:2 35141:1 35149:1 35152:1 35157:1 35164:1 35167:1 35177:1 35184:1 35201:1 35207:2 35253:1 35265:1 35281:1 35289:2 35310:1 35311:1 35326:1 35342:1 35354:4 35382:2 35395:1 35410:1 35456:1 35464:3 35468:1 35470:1 35473:1 35488:1 35499:1 35503:2 35517:2 35520:1 35526:2 35539:1 35582:1 35585:1 35589:2 35592:1 35602:2 35614:1 35625:2 35635:1 35636:1 35648:1 35656:1 35665:1 35677:1 35681:1 35692:1 35696:1 35700:1 35714:1 35721:1 35734:1 35746:1 35748:3 35753:2 35757:3 35785:1 35789:2 35805:6 35831:3 35836:1 35837:2 35838:2 35845:1 35850:26 35862:2 35888:1 35901:1 35925:1 35939:1 35953:1 35957:1 35959:2 35965:2 35966:4 35989:1 36010:1 36011:1 36028:2 36033:1 36059:1 36072:1 36075:2 36091:1 2 9:1 10:1 19:1 31:2 32:1 33:1 55:1 65:1 68:1 69:1 73:1 95:1 104:3 106:2 107:1 122:1 128:1 140:1 166:2 177:1 191:1 196:2 200:2 207:1 211:1 221:1 235:1 239:2 251:1 255:1 256:1 278:2 297:2 302:4 303:1 309:1 322:2 323:1 328:1 330:1 365:1 372:1 412:1 414:3 418:1 433:1 435:1 450:1 452:1 454:1 478:2 498:2 503:1 515:1 520:2 526:1 539:1 549:1 553:1 555:1 568:2 601:2 607:1 610:1 621:1 641:1 650:1 659:1 662:1 671:1 672:1 674:1 684:1 690:1 720:1 750:1 751:3 755:2 761:1 766:1 795:6 820:27 825:3 831:1 833:1 835:1 854:1 861:1 881:1 886:2 919:1 931:1 935:2 941:2 955:1 964:1 999:2 1019:2 1022:1 1024:3 1028:2 1032:1 1034:1 1035:2 1058:1 1082:3 1102:2 1124:1 1135:3 1136:6 1140:2 1142:1 1150:5 1167:1 1176:4 1181:1 1194:2 1203:3 1206:6 1210:1 1212:2 1219:1 1226:2 1233:2 1234:3 1253:2 1256:1 1260:2 1270:2 1293:1 1301:2 1305:1 1308:1 1322:1 1326:3 1327:1 1385:2 1386:1 1403:1 1431:1 1442:1 1454:1 1459:3 1510:1 1537:1 1541:26 1550:1 1554:2 1555:2 1556:1 1564:3 1567:1 1583:1 1592:1 1595:2 1596:2 1603:1 1605:1 1610:1 1611:1 1613:1 1616:1 1617:2 1619:1 1623:1 1627:1 1634:1 1638:1 1651:1 1652:1 1682:1 1705:1 1706:2 1740:3 1755:1 1757:1 1763:1 1765:1 1771:2 1773:4 1792:1 1808:1 1809:1 1824:1 1836:3 1847:1 1849:2 1861:1 1870:1 1888:1 1889:1 1891:3 1895:1 1897:7 1903:1 1904:1 1910:1 1911:1 1915:1 1918:1 1925:1 1929:1 1930:1 1932:1 1960:2 1970:1 1990:1 1991:1 1997:3 2013:1 2014:1 2031:1 2036:1 2037:1 2043:1 2058:2 2067:1 2088:1 2095:1 2097:1 2098:4 2102:1 2105:1 2106:2 2123:1 2139:1 2145:1 2147:1 2158:2 2160:1 2164:3 2172:1 2175:1 2196:1 2198:1 2199:1 2202:1 2218:1 2249:1 2260:1 2265:1 2276:1 2279:1 2282:1 2292:1 2307:1 2312:1 2317:2 2320:2 2327:1 2328:1 2345:1 2348:1 2352:3 2355:1 2364:1 2368:1 2372:1 2376:1 2379:2 2390:1 2400:2 2406:2 2418:2 2420:1 2436:1 2446:1 2454:1 2455:1 2467:1 2486:5 2508:1 2517:1 2522:2 2525:1 2547:1 2557:1 2566:1 2598:1 2599:2 2604:1 2619:1 2624:1 2638:1 2642:1 2644:1 2652:1 2655:1 2665:1 2696:8 2721:1 2743:2 2746:1 2747:1 2783:1 2789:1 2817:1 2827:1 2848:1 2852:1 2857:1 2859:1 2861:2 2862:4 2865:1 2866:2 2867:1 2870:1 2872:5 2877:6 2881:3 2883:5 2887:3 2891:1 2895:1 2897:1 2900:1 2902:4 2906:2 2909:1 2910:1 2913:1 2918:1 2919:1 2920:1 2942:1 2954:2 2955:1 2971:3 2974:1 2980:1 2999:2 3002:1 3004:1 3026:1 3027:1 3042:1 3044:3 3045:3 3054:3 3057:1 3075:2 3076:4 3086:3 3087:1 3098:1 3100:1 3106:1 3116:3 3133:1 3137:1 3145:1 3165:1 3176:2 3177:2 3179:1 3186:1 3206:1 3224:2 3244:1 3255:1 3265:1 3266:1 3267:1 3312:1 3319:1 3322:2 3341:2 3348:2 3359:1 3366:1 3367:1 3371:1 3380:3 3381:1 3389:1 3406:1 3410:1 3413:3 3415:2 3420:1 3423:3 3429:1 3443:1 3451:1 3454:1 3493:1 3497:2 3507:1 3510:5 3516:1 3520:2 3539:2 3547:1 3584:2 3590:1 3603:1 3612:2 3645:12 3648:27 3651:1 3652:2 3653:1 3663:2 3666:1 3678:1 3681:1 3682:1 3691:4 3692:1 3695:1 3698:1 3706:6 3736:2 3741:1 3753:1 3756:1 3784:2 3789:1 3792:1 3793:1 3794:1 3836:1 3846:3 3851:1 3860:1 3867:1 3897:3 3926:1 3958:1 3962:1 4045:1 4067:2 4070:1 4097:1 4101:1 4119:1 4142:1 4146:1 4147:1 4157:1 4161:3 4162:1 4171:1 4179:2 4211:1 4224:1 4226:2 4251:2 4279:1 4328:1 4334:1 4355:1 4359:1 4371:1 4375:1 4381:1 4383:1 4395:1 4396:1 4402:1 4411:1 4412:1 4444:1 4448:1 4459:1 4474:1 4479:1 4488:1 4492:1 4517:1 4539:1 4555:1 4564:1 4575:1 4580:1 4582:1 4601:1 4626:1 4643:3 4645:2 4646:1 4651:2 4654:1 4722:2 4724:1 4762:1 4767:1 4773:1 4780:3 4795:1 4803:1 4809:1 4813:1 4815:1 4820:2 4830:2 4843:1 4854:1 4855:1 4857:1 4859:1 4867:3 4886:1 4887:1 4914:1 4920:26 4922:2 4927:1 4931:1 4947:1 4985:1 4992:1 5008:1 5015:2 5019:4 5020:2 5032:2 5039:1 5047:1 5054:3 5058:5 5059:2 5076:2 5119:1 5125:1 5134:1 5153:1 5163:1 5170:3 5178:1 5190:1 5194:1 5232:1 5233:1 5235:1 5237:1 5240:1 5241:1 5247:1 5254:1 5272:1 5282:1 5298:1 5299:2 5300:1 5302:3 5307:1 5308:3 5324:1 5348:1 5371:3 5402:2 5404:1 5408:1 5416:1 5428:1 5435:2 5437:26 5444:1 5453:1 5456:1 5459:4 5465:1 5471:1 5473:1 5483:1 5486:1 5492:1 5555:2 5566:6 5587:1 5588:1 5598:1 5638:3 5655:2 5662:1 5663:1 5672:2 5676:2 5679:1 5687:1 5712:1 5731:7 5738:1 5760:2 5832:5 5843:1 5850:1 5869:1 5879:5 5885:1 5913:1 5924:1 5960:1 5967:1 5969:2 5973:2 5974:1 5980:1 5983:2 5995:1 6004:1 6005:3 6017:1 6043:1 6049:1 6075:2 6078:1 6096:13 6097:2 6112:2 6115:1 6140:4 6149:2 6158:1 6187:2 6191:1 6207:1 6253:3 6254:1 6257:2 6277:4 6278:4 6279:2 6285:5 6291:1 6292:2 6293:3 6294:1 6303:1 6309:2 6312:5 6315:3 6316:1 6326:1 6358:1 6407:1 6411:2 6430:1 6483:1 6495:1 6506:1 6528:1 6580:1 6610:1 6622:1 6623:2 6628:1 6655:1 6679:1 6683:1 6684:1 6698:1 6738:3 6739:1 6759:1 6787:1 6799:1 6801:2 6803:1 6807:1 6832:1 6835:1 6843:1 6859:1 6861:1 6867:3 6870:1 6942:1 6968:1 6970:1 6972:1 6982:1 6983:1 6991:1 6996:1 7008:1 7010:1 7012:1 7036:2 7038:2 7046:1 7061:2 7062:4 7065:1 7070:1 7072:1 7076:1 7083:1 7086:1 7119:1 7130:1 7138:1 7140:1 7164:1 7213:1 7225:2 7243:1 7250:1 7252:2 7264:2 7289:8 7295:3 7366:1 7377:1 7383:1 7397:1 7421:1 7422:1 7423:1 7432:3 7434:1 7451:1 7455:1 7494:1 7496:1 7525:1 7532:1 7537:1 7561:2 7567:2 7580:2 7583:1 7589:1 7591:1 7599:1 7603:1 7604:2 7607:1 7630:1 7635:1 7656:1 7665:1 7684:1 7707:1 7708:2 7709:1 7715:1 7716:1 7718:1 7721:1 7722:1 7725:1 7727:1 7728:1 7729:3 7734:1 7739:2 7741:2 7742:1 7764:1 7782:1 7805:1 7822:1 7825:1 7840:1 7847:1 7852:3 7857:2 7860:1 7871:2 7905:1 7937:2 7945:1 7965:1 7966:1 7974:1 7989:5 7995:1 8002:1 8004:4 8006:1 8007:1 8008:1 8009:1 8014:2 8015:2 8016:1 8017:1 8019:3 8020:6 8021:1 8030:1 8034:1 8054:1 8077:1 8082:1 8085:2 8125:1 8136:1 8176:1 8185:1 8186:1 8200:3 8203:3 8224:1 8260:1 8284:1 8293:1 8297:1 8308:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:2 8349:1 8370:2 8377:1 8393:2 8421:1 8427:1 8446:1 8449:1 8489:1 8493:1 8496:1 8501:3 8524:1 8564:2 8566:1 8570:1 8577:1 8602:1 8617:1 8648:1 8661:1 8695:2 8709:1 8714:1 8731:1 8738:1 8751:1 8772:1 8842:1 8845:1 8849:1 8854:1 8866:1 8883:6 8905:1 8940:1 8943:1 8946:1 8955:1 8960:1 8966:2 8978:2 8996:1 9007:1 9012:1 9026:1 9052:2 9060:1 9090:1 9113:1 9122:1 9123:2 9126:1 9134:1 9138:1 9143:1 9146:1 9153:1 9194:1 9205:1 9216:1 9217:2 9231:1 9253:1 9278:1 9282:1 9306:1 9307:1 9325:1 9328:1 9333:1 9337:1 9338:6 9372:6 9374:1 9381:1 9394:1 9426:1 9428:2 9433:1 9437:1 9446:1 9470:1 9484:1 9492:1 9495:1 9499:1 9526:4 9529:1 9577:1 9586:1 9588:1 9612:2 9619:1 9628:10 9629:9 9637:1 9655:1 9656:1 9657:5 9688:3 9694:3 9695:1 9702:40 9707:1 9708:1 9711:2 9719:1 9720:1 9723:1 9733:12 9738:3 9744:1 9754:1 9758:1 9761:1 9780:1 9781:1 9787:1 9793:2 9803:1 9849:4 9866:2 9870:1 9885:1 9895:1 9924:1 9926:2 9942:3 9957:1 9963:1 9967:3 9968:1 9975:1 9978:1 9999:5 10011:1 10023:1 10058:1 10063:2 10099:2 10103:1 10161:1 10167:1 10171:1 10175:1 10209:1 10213:1 10223:1 10235:2 10261:2 10284:1 10286:1 10298:1 10313:1 10314:1 10321:27 10333:1 10338:1 10342:1 10349:1 10356:1 10359:12 10360:3 10376:1 10378:2 10399:1 10401:1 10406:1 10407:1 10411:1 10412:2 10431:1 10444:1 10452:1 10470:33 10488:1 10520:1 10559:1 10598:1 10599:1 10612:1 10624:1 10669:1 10683:1 10686:2 10695:1 10697:1 10701:2 10704:1 10707:1 10711:1 10716:1 10717:4 10718:1 10736:1 10744:1 10749:1 10772:3 10773:1 10778:1 10789:2 10791:1 10792:1 10796:1 10798:1 10807:2 10808:2 10812:1 10813:1 10826:1 10848:1 10850:1 10864:1 10878:1 10884:1 10895:1 10900:1 10911:3 10937:1 10979:1 10994:1 11002:2 11075:3 11078:1 11081:1 11109:2 11129:1 11163:2 11165:1 11169:1 11183:1 11207:1 11212:3 11226:1 11230:1 11231:1 11233:2 11238:1 11247:3 11258:1 11268:1 11270:1 11272:1 11325:1 11334:2 11340:1 11343:1 11347:2 11378:1 11382:5 11391:4 11402:1 11404:1 11422:1 11457:1 11489:4 11522:3 11557:3 11561:2 11564:1 11569:1 11571:3 11572:1 11573:1 11575:1 11583:1 11585:2 11587:2 11598:1 11617:1 11619:1 11625:1 11628:1 11636:1 11640:1 11641:1 11642:2 11645:1 11654:1 11668:1 11675:1 11678:3 11690:6 11697:2 11707:2 11718:2 11720:1 11723:1 11739:1 11744:1 11745:1 11755:1 11770:1 11771:1 11774:1 11776:1 11791:1 11793:1 11795:2 11804:1 11815:1 11840:1 11851:1 11861:1 11864:1 11865:1 11872:2 11876:1 11882:1 11885:1 11899:1 11902:1 11903:1 11912:1 11917:1 11918:1 11919:4 11930:1 11931:2 11932:8 11936:1 11947:1 11955:1 11961:2 11966:1 11969:1 11976:1 11978:1 11982:3 11985:1 11988:1 11992:1 12004:1 12014:1 12033:1 12052:1 12056:1 12057:1 12076:1 12081:1 12082:1 12083:2 12086:1 12104:1 12111:1 12112:1 12113:1 12120:1 12131:1 12146:1 12147:1 12186:1 12191:1 12214:1 12221:6 12229:1 12230:1 12231:1 12237:3 12239:4 12248:1 12255:1 12269:1 12301:1 12324:1 12339:1 12359:1 12361:1 12391:26 12401:1 12407:1 12420:1 12435:1 12446:1 12451:1 12458:1 12471:1 12473:1 12479:1 12490:2 12493:1 12497:1 12508:1 12520:1 12521:1 12538:1 12540:3 12547:2 12552:1 12561:2 12570:2 12580:1 12592:1 12608:1 12618:2 12619:1 12630:1 12641:1 12643:2 12651:1 12654:2 12669:4 12673:5 12692:2 12694:1 12734:4 12756:1 12757:1 12760:1 12774:1 12777:1 12794:1 12821:1 12824:2 12829:1 12837:1 12848:1 12850:1 12867:6 12879:1 12881:1 12898:1 12936:1 12958:1 12977:2 12981:1 12988:1 13013:4 13028:1 13040:2 13049:1 13051:1 13052:1 13058:1 13079:1 13080:1 13089:1 13096:1 13112:1 13113:5 13128:1 13154:3 13175:1 13179:1 13187:1 13213:1 13234:1 13258:4 13267:1 13282:1 13283:5 13303:1 13316:1 13325:2 13357:2 13377:1 13384:1 13385:2 13411:1 13412:4 13415:1 13418:1 13420:4 13429:1 13443:1 13454:1 13464:2 13468:1 13471:1 13474:1 13483:1 13493:6 13498:1 13505:1 13509:1 13516:1 13517:2 13550:1 13568:1 13588:1 13601:1 13632:4 13633:1 13648:1 13669:2 13673:1 13686:2 13690:3 13694:2 13704:1 13710:1 13721:4 13737:1 13749:1 13761:1 13765:1 13767:1 13768:1 13777:1 13793:1 13798:8 13803:1 13808:1 13823:1 13824:3 13826:3 13828:1 13837:1 13845:2 13849:1 13859:1 13880:1 13881:1 13891:6 13895:1 13898:1 13900:1 13901:1 13910:1 13919:1 13921:2 13931:1 13942:1 13972:2 13998:1 14008:1 14009:1 14015:1 14029:1 14032:3 14036:1 14042:1 14070:2 14071:1 14093:1 14095:2 14105:2 14114:1 14115:1 14116:2 14122:1 14124:1 14128:1 14134:1 14145:1 14146:4 14149:1 14152:1 14154:1 14162:1 14186:1 14189:2 14191:1 14218:1 14235:4 14263:1 14265:1 14286:1 14292:1 14296:1 14302:1 14308:1 14309:1 14322:6 14337:2 14340:2 14342:1 14376:1 14380:1 14406:1 14410:1 14416:1 14430:1 14448:2 14488:1 14491:6 14515:1 14519:1 14523:1 14533:3 14550:1 14554:1 14555:1 14559:1 14564:1 14567:5 14568:1 14571:2 14577:1 14580:4 14586:1 14611:1 14614:1 14621:2 14628:1 14632:2 14636:1 14638:5 14642:1 14643:1 14654:1 14666:1 14667:1 14675:2 14686:1 14716:1 14727:3 14735:1 14737:1 14742:4 14744:1 14787:1 14791:2 14803:1 14840:1 14844:1 14854:1 14869:1 14910:1 14940:1 14941:2 14960:1 14984:1 15012:1 15014:1 15030:1 15037:3 15046:1 15060:3 15083:1 15086:1 15095:1 15123:1 15132:1 15140:1 15150:1 15151:1 15152:2 15160:1 15161:1 15162:1 15169:1 15185:1 15197:1 15210:1 15220:1 15222:1 15250:1 15269:1 15278:1 15292:1 15312:2 15315:4 15326:1 15345:1 15383:1 15385:2 15400:1 15414:1 15460:1 15472:1 15487:1 15502:3 15519:1 15525:1 15526:1 15574:1 15577:1 15584:1 15587:1 15595:1 15598:1 15675:1 15705:1 15707:1 15746:1 15747:1 15776:2 15778:27 15782:1 15786:1 15794:1 15797:1 15800:4 15813:1 15844:6 15855:1 15864:2 15868:1 15885:1 15895:1 15900:1 15910:1 15912:1 15915:1 15942:1 15943:1 15944:1 15981:1 16001:1 16006:2 16013:1 16017:1 16022:1 16083:1 16099:2 16114:1 16134:1 16142:2 16147:1 16149:1 16173:1 16190:1 16196:1 16198:1 16201:1 16217:1 16241:1 16253:1 16269:1 16285:1 16293:1 16299:1 16303:1 16304:1 16320:1 16327:12 16332:2 16354:1 16357:1 16365:2 16372:1 16375:1 16394:1 16456:1 16475:1 16490:1 16499:1 16502:2 16505:2 16510:3 16516:5 16528:1 16535:1 16559:1 16594:1 16609:11 16613:1 16622:1 16643:1 16720:1 16729:1 16731:1 16732:2 16742:1 16775:1 16792:3 16797:4 16803:2 16823:1 16831:1 16835:1 16837:1 16843:1 16854:1 16869:2 16874:2 16882:1 16889:1 16897:1 16898:1 16914:2 16918:1 16929:2 16964:1 16968:2 16970:2 16971:1 16973:1 16977:2 16978:1 16979:9 16980:1 16981:1 16983:2 17002:1 17003:1 17004:1 17008:1 17009:1 17013:5 17026:1 17033:2 17064:1 17075:1 17076:1 17082:1 17100:1 17114:1 17120:1 17125:1 17152:1 17154:1 17161:1 17172:10 17175:1 17181:2 17193:1 17204:1 17214:1 17217:1 17230:1 17234:1 17243:1 17246:1 17273:1 17276:1 17278:2 17286:4 17303:1 17309:1 17315:3 17319:1 17320:2 17333:10 17336:5 17417:2 17426:1 17438:1 17449:4 17450:1 17481:1 17516:1 17545:1 17547:2 17562:1 17564:2 17571:1 17601:1 17607:2 17623:1 17629:1 17639:1 17675:4 17679:1 17723:1 17762:1 17769:1 17792:1 17794:1 17798:1 17806:2 17814:2 17817:3 17835:2 17836:1 17849:1 17850:1 17858:2 17869:1 17903:1 17918:1 17921:1 17924:1 17925:1 17941:1 17942:1 17943:1 17955:1 17957:2 17972:1 17978:1 17981:1 17984:1 17992:1 17993:1 17997:1 17999:1 18000:1 18005:1 18011:1 18013:1 18016:1 18030:1 18032:1 18037:1 18039:1 18048:1 18057:2 18073:1 18080:1 18092:27 18101:3 18105:1 18106:1 18110:1 18120:1 18127:1 18128:1 18137:1 18184:1 18198:1 18200:1 18203:5 18214:1 18215:1 18221:2 18244:1 18249:1 18270:3 18274:1 18276:1 18277:1 18290:1 18297:1 18298:1 18320:2 18325:1 18339:1 18342:1 18390:1 18392:1 18396:1 18442:1 18463:2 18470:2 18474:1 18485:1 18506:1 18535:1 18549:1 18559:1 18560:1 18561:2 18563:2 18574:1 18582:1 18593:1 18600:2 18601:1 18603:1 18608:7 18614:1 18645:3 18651:1 18673:1 18696:1 18703:1 18708:2 18712:1 18715:1 18732:1 18747:1 18752:1 18767:2 18769:1 18779:2 18781:3 18793:1 18794:1 18811:1 18823:1 18867:1 18870:1 18876:1 18898:2 18953:2 18954:1 18959:1 18968:1 18993:2 18997:1 19019:1 19029:1 19050:1 19060:1 19064:2 19067:1 19083:1 19087:1 19096:1 19097:1 19120:1 19141:1 19154:1 19175:1 19191:1 19192:3 19193:3 19204:1 19225:1 19235:1 19263:4 19269:2 19276:1 19287:1 19303:1 19310:1 19336:1 19361:1 19397:1 19416:1 19428:1 19437:2 19452:1 19458:4 19469:1 19471:1 19475:1 19490:5 19496:3 19500:1 19513:4 19514:1 19518:1 19525:1 19529:1 19532:1 19538:3 19548:1 19567:1 19602:1 19605:1 19615:3 19616:1 19620:1 19641:2 19645:4 19649:2 19658:1 19664:1 19670:1 19672:1 19679:1 19689:1 19691:3 19703:1 19708:1 19772:1 19775:1 19787:1 19796:1 19806:1 19810:12 19814:2 19820:1 19851:2 19854:3 19858:1 19865:2 19868:1 19894:2 19904:2 19905:1 19907:1 19908:2 19932:9 19947:1 19961:1 19976:3 20027:1 20034:1 20046:1 20061:1 20065:1 20074:1 20076:1 20078:1 20091:2 20109:4 20110:2 20115:3 20117:1 20125:3 20126:1 20127:1 20130:1 20153:1 20168:1 20174:1 20201:2 20221:1 20231:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20295:1 20296:1 20318:1 20324:1 20325:1 20350:1 20355:1 20369:1 20383:1 20390:1 20431:1 20444:1 20445:1 20446:2 20455:1 20522:1 20537:1 20540:2 20556:2 20566:1 20568:1 20572:1 20588:3 20593:1 20604:1 20606:4 20607:1 20608:1 20617:1 20643:1 20646:1 20649:1 20654:1 20679:1 20680:1 20689:1 20691:2 20727:1 20746:1 20751:3 20754:1 20762:1 20781:1 20783:1 20785:2 20796:1 20799:2 20816:1 20818:1 20865:1 20878:1 20885:1 20900:1 20917:1 20918:1 20941:36 20948:1 20949:2 20974:1 20978:1 20997:1 21000:1 21003:3 21044:1 21064:1 21071:1 21072:1 21081:1 21083:1 21097:1 21101:1 21116:1 21124:2 21130:2 21145:2 21149:1 21170:1 21174:2 21204:1 21209:1 21214:1 21215:1 21235:1 21261:1 21263:1 21284:1 21292:1 21299:1 21316:1 21318:2 21322:1 21323:1 21337:1 21371:1 21376:1 21423:1 21443:1 21445:1 21477:1 21503:1 21508:1 21512:1 21513:1 21522:2 21524:1 21530:1 21540:1 21566:1 21586:1 21593:1 21597:1 21602:1 21603:1 21608:2 21612:2 21634:1 21686:2 21696:1 21701:1 21704:2 21713:2 21724:1 21754:1 21788:1 21806:1 21809:1 21819:1 21823:4 21827:1 21829:2 21831:1 21843:1 21864:1 21866:1 21872:2 21874:1 21875:2 21886:1 21892:1 21899:1 21917:2 21939:2 21943:2 21975:4 21987:4 22008:2 22009:1 22032:1 22037:1 22067:1 22076:1 22079:5 22083:1 22084:2 22123:3 22143:2 22169:1 22173:1 22177:2 22181:1 22186:2 22190:1 22207:1 22247:1 22251:2 22298:1 22300:4 22305:2 22308:1 22315:1 22347:1 22362:1 22386:1 22388:1 22406:1 22424:1 22429:3 22490:1 22493:2 22497:1 22516:1 22530:2 22547:1 22584:1 22628:6 22643:1 22650:1 22666:1 22668:1 22677:2 22715:1 22720:1 22727:4 22754:1 22764:1 22781:1 22783:1 22791:1 22800:1 22806:1 22809:1 22824:1 22839:1 22866:1 22870:1 22883:1793 22893:1 22899:1 22909:2 22923:1 22944:1 22966:1 22969:1 22984:1 23031:3 23039:1 23043:2 23044:1 23079:1 23113:1 23119:1 23129:1 23139:1 23164:1 23171:1 23189:1 23193:1 23223:1 23270:1 23279:1 23293:1 23304:1 23320:1 23321:1 23348:1 23365:1 23371:1 23411:1 23427:1 23456:1 23457:1 23468:2 23470:1 23474:1 23482:1 23492:1 23508:1 23520:1 23521:3 23523:2 23543:1 23549:1 23603:1 23607:4 23640:4 23647:1 23653:1 23664:1 23698:1 23706:1 23708:1 23712:1 23715:1 23718:1 23735:1 23763:1 23766:1 23773:1 23784:1 23787:1 23789:1 23800:1 23805:1 23812:1 23821:1 23833:5 23834:3 23874:1 23880:4 23914:2 23922:1 23932:1 23934:1 23947:18 23958:1 23978:1 23979:2 24012:2 24013:1 24019:1 24020:1 24044:1 24047:4 24049:1 24052:1 24064:2 24066:1 24079:1 24092:1 24097:2 24105:3 24106:1 24118:1 24154:2 24185:1 24191:1 24197:1 24209:4 24217:1 24233:1 24239:2 24240:1 24255:1 24271:1 24289:2 24292:1 24327:1 24332:1 24342:1 24345:2 24347:1 24364:1 24369:1 24376:4 24385:1 24424:1 24449:1 24450:1 24474:1 24479:1 24480:2 24482:2 24483:1 24491:1 24511:1 24518:2 24534:1 24539:1 24553:1 24566:1 24591:2 24592:6 24598:1 24601:1 24604:1 24607:1 24612:1 24620:1 24630:1 24640:1 24643:1 24651:1 24653:2 24656:3 24658:4 24663:1 24674:1 24680:2 24681:4 24682:1 24683:1 24699:1 24700:1 24708:4 24728:2 24753:2 24754:1 24762:2 24774:1 24781:3 24792:1 24794:1 24808:2 24820:1 24826:1 24850:1 24853:1 24869:1 24883:4 24894:2 24918:1 24919:1 24924:1 24945:1 24978:1 25000:1 25031:1 25047:1 25053:1 25058:1 25067:1 25076:1 25080:1 25114:5 25122:1 25143:1 25144:2 25157:1 25161:2 25163:1 25179:3 25217:1 25240:1 25244:1 25269:1 25285:1 25299:1 25300:2 25303:1 25326:1 25334:2 25357:1 25369:1 25373:1 25379:1 25386:1 25392:1 25407:2 25410:2 25417:1 25427:2 25428:1 25431:2 25448:1 25456:1 25461:1 25481:1 25486:1 25491:1 25498:2 25502:2 25505:1 25511:3 25527:1 25529:1 25541:1 25543:1 25553:1 25554:2 25568:1 25572:1 25580:1 25582:2 25586:1 25590:3 25600:2 25602:1 25605:1 25608:3 25609:2 25623:2 25630:1 25632:1 25637:4 25699:1 25720:1 25721:4 25725:1 25733:2 25738:1 25781:1 25782:1 25786:2 25793:3 25807:1 25811:1 25815:1 25824:2 25841:1 25846:1 25852:1 25859:2 25867:1 25879:1 25903:1 25907:1 25917:1 25928:1 25934:1 25943:1 25948:1 25952:1 25973:1 25994:1 26000:1 26005:1 26011:1 26014:1 26018:4 26031:2 26052:1 26062:3 26070:1 26091:1 26099:1 26102:2 26107:1 26119:1 26120:1 26124:1 26138:1 26151:1 26153:1 26155:1 26156:3 26162:1 26183:1 26191:1 26203:2 26211:1 26212:1 26214:1 26215:2 26216:2 26228:1 26236:1 26260:1 26261:1 26275:1 26279:1 26285:1 26306:1 26313:1 26324:1 26327:2 26337:3 26344:1 26345:1 26346:1 26361:1 26362:1 26383:1 26385:3 26394:1 26407:1 26415:1 26424:1 26425:1 26426:1 26438:3 26444:1 26453:4 26459:1 26460:1 26496:1 26508:5 26552:1 26555:1 26589:1 26590:1 26593:1 26602:5 26605:1 26608:1 26610:1 26612:3 26614:1 26628:2 26642:1 26644:1 26651:1 26667:1 26668:7 26671:1 26679:1 26694:1 26740:1 26743:1 26744:1 26777:2 26779:4 26782:2 26787:1 26794:1 26795:1 26797:2 26808:1 26809:2 26815:1 26818:1 26820:1 26826:4 26827:1 26828:4 26842:1 26843:1 26844:1 26854:1 26874:1 26907:1 26914:1 26930:1 26949:2 26984:2 26995:2 26999:1 27004:4 27029:2 27051:1 27072:1 27087:3 27092:1 27097:1 27099:1 27103:1 27114:1 27127:3 27138:1 27149:1 27153:2 27171:1 27183:1 27203:1 27213:2 27243:1 27251:2 27259:1 27260:11 27283:1 27287:2 27294:1 27331:9 27333:2 27339:1 27343:1 27393:1 27396:4 27398:2 27401:1 27412:2 27415:2 27447:1 27460:7 27470:1 27478:1 27484:1 27500:3 27508:1 27522:1 27526:1 27527:1 27542:1 27544:2 27573:1 27591:1 27594:1 27599:1 27601:1 27603:2 27619:6 27633:2 27651:1 27653:1 27677:3 27703:1 27723:1 27731:1 27752:1 27760:1 27767:1 27779:1 27782:1 27787:26 27804:1 27808:1 27810:2 27813:3 27816:1 27817:1 27819:1 27825:1 27854:2 27859:3 27860:1 27862:1 27878:1 27879:1 27889:1 27920:1 27922:1 27925:1 27957:1 27963:1 27973:5 27974:1 27983:1 27987:2 28000:2 28007:1 28011:4 28017:1 28051:1 28052:1 28154:1 28160:1 28179:3 28191:1 28206:1 28263:1 28276:1 28278:1 28279:1 28287:1 28297:1 28298:2 28308:1 28310:1 28313:3 28317:1 28318:1 28370:27 28384:1 28398:3 28399:1 28433:1 28436:1 28460:1 28464:1 28470:1 28472:2 28473:1 28482:2 28483:1 28489:6 28523:1 28528:1 28541:1 28560:1 28567:1 28572:1 28577:3 28582:2 28587:1 28612:1 28621:1 28639:1 28645:1 28647:2 28650:2 28686:1 28752:1 28786:1 28811:1 28812:1 28814:1 28815:1 28817:2 28826:1 28831:1 28833:1 28852:1 28908:1 28913:1 28929:1 28932:1 28939:2 28940:1 28949:1 28974:2 28983:2 28993:1 28996:2 29004:1 29014:1 29016:1 29020:1 29032:1 29041:3 29087:1 29126:1 29133:2 29141:1 29149:1 29170:3 29174:1 29179:1 29190:2 29192:1 29215:1 29233:1 29241:1 29251:1 29258:1 29271:1 29297:1 29328:1 29330:1 29334:1 29367:2 29398:1 29417:1 29419:3 29426:2 29451:1 29455:2 29464:1 29480:1 29486:2 29493:1 29516:2 29551:1 29554:1 29557:3 29564:2 29566:1 29568:2 29583:2 29584:2 29587:3 29591:1 29592:1 29604:1 29634:3 29635:1 29688:7 29695:1 29701:1 29741:1 29749:1 29752:1 29756:1 29760:1 29761:1 29768:1 29775:1 29816:1 29822:1 29827:1 29840:1 29845:4 29857:1 29887:1 29888:1 29901:2 29939:1 29952:1 29954:1 29957:1 29962:2 29969:1 29972:1 29995:1 30004:1 30015:1 30023:1 30035:1 30041:1 30079:3 30083:1 30084:2 30092:1 30093:1 30095:2 30099:5 30102:1 30105:2 30119:1 30134:1 30144:2 30165:3 30192:1 30198:2 30199:3 30213:1 30215:1 30235:2 30238:1 30248:1 30253:1 30261:4 30263:1 30283:1 30284:1 30288:1 30290:1 30294:1 30295:1 30299:1 30307:1 30319:1 30320:1 30329:1 30330:1 30331:1 30350:1 30364:1 30370:1 30424:1 30434:1 30454:1 30478:1 30482:3 30483:1 30489:1 30493:1 30518:1 30535:4 30537:2 30538:2 30541:1 30552:2 30553:1 30601:1 30613:1 30617:2 30641:1 30677:1 30679:1 30688:1 30743:1 30777:1 30783:1 30787:1 30788:1 30789:2 30790:6 30794:1 30806:1 30814:5 30817:3 30823:1 30855:2 30857:1 30861:1 30907:1 30910:1 30912:2 30920:2 30931:1 30944:2 30952:1 30960:2 30970:1 30972:1 30981:4 30987:1 31002:1 31005:1 31015:1 31020:1 31026:1 31047:1 31051:4 31053:1 31055:2 31057:1 31059:1 31089:1 31092:1 31093:1 31095:1 31112:2 31134:1 31142:1 31148:1 31151:1 31168:3 31177:1 31178:1 31181:1 31188:1 31201:1 31210:1 31223:1 31226:1 31235:2 31255:2 31264:3 31265:2 31276:1 31283:1 31286:1 31296:4 31317:2 31329:2 31334:3 31376:1 31377:5 31384:1 31387:1 31404:1 31411:1 31413:11 31425:2 31444:2 31465:1 31478:1 31486:1 31550:1 31563:1 31569:1 31574:2 31578:3 31588:1 31595:1 31603:1 31610:1 31612:1 31641:1 31648:1 31660:2 31663:1 31701:1 31708:1 31712:1 31725:1 31737:1 31747:1 31751:1 31753:2 31767:1 31768:1 31784:1 31787:1 31797:1 31805:1 31808:1 31834:3 31848:1 31853:1 31866:2 31874:1 31882:1 31885:1 31891:1 31893:1 31918:1 31919:1 31929:1 31930:4 31933:1 31946:2 31963:2 31964:1 31968:8 31969:1 31993:2 32010:1 32022:1 32025:1 32036:1 32066:5 32074:1 32090:1 32099:1 32106:1 32112:1 32115:1 32117:1 32136:1 32153:1 32208:1 32219:2 32259:1 32285:3 32307:1 32311:1 32317:1 32319:1 32326:1 32329:1 32376:2 32405:1 32406:1 32413:1 32436:1 32459:1 32461:2 32491:1 32492:1 32493:2 32505:2 32515:1 32532:1 32553:2 32555:1 32559:1 32574:1 32596:1 32606:1 32612:1 32624:1 32629:1 32636:1 32683:2 32691:1 32700:1 32725:2 32726:1 32732:1 32745:1 32749:2 32750:6 32774:3 32779:1 32785:2 32787:1 32801:4 32813:1 32820:1 32832:3 32846:1 32848:2 32879:1 32890:5 32891:1 32893:1 32896:2 32908:1 32909:1 32913:1 32917:2 32924:1 32929:3 32941:3 32950:2 32955:1 32958:1 32965:1 32974:1 32984:1 32997:1 33027:1 33031:1 33053:1 33057:2 33066:1 33069:2 33080:1 33085:1 33089:1 33092:1 33094:3 33098:1 33100:1 33112:1 33118:1 33128:4 33133:2 33137:1 33141:2 33142:1 33144:1 33157:2 33168:1 33180:1 33183:2 33218:1 33222:1 33272:1 33276:1 33284:1 33287:1 33296:3 33297:1 33309:2 33330:1 33335:1 33346:1 33352:6 33388:1 33389:1 33404:1 33413:1 33422:1 33428:2 33440:1 33444:1 33446:1 33449:1 33461:3 33467:1 33498:1 33503:1 33505:2 33512:1 33530:1 33533:3 33537:2 33543:3 33545:1 33552:1 33553:2 33555:1 33556:2 33563:3 33579:1 33591:2 33592:1 33595:2 33609:1 33616:1 33620:1 33623:1 33637:1 33663:7 33669:1 33680:4 33716:1 33720:1 33730:1 33734:2 33743:1 33760:1 33766:1 33769:1 33771:1 33794:2 33795:1 33820:1 33824:1 33861:1 33865:1 33880:2 33902:1 33910:1 33921:1 33928:1 33930:1 33997:1 34003:1 34040:1 34056:3 34057:2 34062:1 34067:4 34071:2 34075:6 34076:1 34077:1 34080:1 34083:1 34085:3 34086:1 34099:1 34104:1 34133:1 34139:1 34144:1 34151:3 34157:1 34160:1 34174:1 34197:1 34221:2 34246:2 34283:1 34306:1 34314:1 34321:1 34351:1 34353:1 34363:1 34364:1 34367:1 34371:1 34373:1 34385:1 34403:1 34407:1 34410:1 34413:2 34435:13 34437:1 34440:1 34445:1 34470:1 34478:2 34497:6 34526:1 34566:1 34570:1 34589:1 34596:4 34615:1 34619:1 34627:1 34629:1 34630:1 34634:8 34643:2 34654:1 34659:1 34662:1 34673:1 34674:1 34682:1 34691:11 34701:1 34749:1 34757:2 34761:1 34782:1 34794:1 34804:2 34834:1 34862:1 34878:2 34924:1 34968:1 34989:1 34996:33 34997:1 35022:1 35026:4 35031:1 35039:1 35041:5 35042:2 35056:1 35094:1 35098:1 35124:3 35128:8 35129:1 35135:2 35141:1 35149:1 35152:1 35157:1 35164:1 35167:1 35177:1 35184:1 35201:1 35207:2 35253:1 35265:1 35281:2 35289:2 35310:1 35311:1 35326:1 35342:1 35354:4 35382:2 35395:1 35410:1 35456:1 35464:3 35468:1 35470:1 35473:1 35488:1 35499:1 35503:2 35517:2 35520:1 35526:2 35539:1 35582:1 35585:1 35589:2 35592:1 35602:2 35614:1 35625:2 35635:1 35636:1 35648:1 35656:1 35665:1 35677:1 35681:1 35692:1 35696:1 35700:1 35714:1 35721:1 35734:1 35746:1 35748:3 35749:1 35753:2 35757:3 35785:1 35789:2 35805:6 35831:3 35836:1 35837:2 35838:2 35845:1 35850:27 35862:2 35888:1 35901:1 35925:1 35939:1 35953:1 35957:1 35959:2 35965:2 35966:4 35989:1 36007:1 36010:1 36011:1 36028:2 36033:1 36059:1 36072:1 36075:2 36091:1 2 9:1 10:1 19:1 31:2 32:1 33:1 55:1 65:1 68:1 69:1 73:1 86:1 95:1 104:3 106:2 107:1 122:1 128:1 140:1 166:2 177:1 191:1 196:2 200:2 207:1 211:1 221:1 235:1 239:2 251:1 255:1 256:1 278:2 297:2 302:4 303:1 309:1 322:2 323:1 328:1 330:1 365:1 372:1 412:1 414:3 418:1 433:1 435:1 450:1 452:1 454:1 478:2 498:2 503:1 515:1 520:2 526:1 539:1 549:1 553:1 555:1 568:2 601:2 607:1 610:1 621:1 641:1 650:1 659:1 662:1 671:1 672:1 674:1 684:1 690:1 720:1 750:1 751:3 755:2 759:1 761:1 766:1 795:6 820:28 825:3 831:1 833:1 835:1 854:1 861:1 881:1 886:3 919:1 931:1 935:2 941:2 955:1 964:1 999:2 1019:2 1022:1 1024:3 1028:2 1032:1 1034:1 1035:2 1058:1 1082:3 1091:1 1102:2 1124:1 1135:3 1136:6 1140:2 1142:1 1150:5 1167:1 1176:4 1181:1 1194:2 1203:3 1206:6 1210:1 1212:2 1219:1 1226:2 1233:2 1234:3 1253:2 1256:1 1260:2 1270:3 1293:1 1301:2 1305:1 1308:1 1322:1 1326:3 1327:1 1385:2 1386:1 1403:1 1431:1 1442:1 1454:1 1459:3 1510:1 1537:1 1541:27 1550:1 1554:2 1555:2 1556:1 1564:3 1567:1 1583:1 1592:1 1595:2 1596:2 1603:1 1605:1 1610:1 1611:1 1613:1 1616:1 1617:2 1619:1 1623:1 1627:1 1632:1 1634:1 1638:1 1651:1 1652:1 1682:1 1705:1 1706:2 1740:3 1755:1 1757:1 1760:1 1763:1 1765:1 1771:2 1773:5 1792:1 1808:1 1809:1 1824:1 1836:3 1843:1 1847:1 1849:2 1861:1 1870:1 1888:1 1889:1 1891:3 1895:1 1897:8 1903:1 1904:1 1910:1 1911:1 1915:1 1918:1 1925:1 1929:1 1930:1 1932:1 1960:2 1970:1 1990:1 1991:1 1997:3 2013:1 2014:1 2031:1 2036:1 2037:1 2043:1 2058:2 2067:1 2088:1 2095:1 2097:1 2098:5 2102:1 2105:1 2106:2 2123:1 2139:1 2145:1 2147:1 2158:2 2160:1 2164:3 2172:1 2175:1 2180:1 2196:1 2198:1 2199:1 2202:1 2218:1 2249:1 2260:1 2265:1 2276:1 2279:1 2282:1 2292:1 2307:1 2312:1 2317:2 2320:2 2327:1 2328:1 2345:1 2348:1 2352:3 2355:1 2364:1 2368:1 2372:1 2376:1 2379:2 2390:1 2400:2 2406:2 2418:2 2420:1 2436:1 2446:1 2454:1 2455:1 2467:1 2486:5 2494:1 2508:1 2517:1 2522:2 2525:1 2547:1 2557:1 2566:1 2598:1 2599:2 2604:1 2619:1 2624:1 2638:1 2642:1 2644:1 2652:1 2655:1 2665:1 2696:8 2721:1 2743:2 2746:1 2747:1 2783:1 2789:1 2817:1 2827:1 2848:1 2852:1 2857:1 2859:1 2861:2 2862:4 2865:1 2866:2 2867:2 2870:1 2872:5 2877:6 2881:3 2883:5 2887:3 2891:1 2895:1 2897:1 2900:1 2902:4 2906:3 2909:1 2910:1 2913:1 2918:1 2919:1 2920:1 2941:1 2942:1 2954:2 2955:1 2971:3 2974:1 2980:1 2999:2 3002:1 3004:1 3026:1 3027:1 3038:1 3042:1 3044:3 3045:3 3054:3 3057:1 3075:2 3076:4 3086:3 3087:1 3098:1 3100:1 3106:1 3116:3 3131:1 3133:1 3137:1 3145:1 3165:1 3176:2 3177:2 3179:1 3186:1 3206:1 3224:2 3244:1 3255:1 3265:1 3266:1 3267:1 3312:1 3319:1 3322:2 3341:2 3348:2 3359:2 3366:1 3367:1 3371:1 3380:3 3381:1 3389:1 3406:1 3410:1 3413:3 3415:2 3420:1 3423:3 3429:1 3443:1 3451:1 3454:1 3493:1 3497:2 3507:1 3510:5 3511:1 3516:1 3520:2 3539:2 3547:1 3584:2 3590:1 3603:1 3612:2 3645:13 3648:28 3651:1 3652:2 3653:1 3663:2 3666:1 3678:1 3681:1 3682:1 3691:4 3692:1 3695:1 3698:1 3706:7 3736:2 3741:1 3753:1 3756:1 3784:2 3789:1 3792:1 3793:1 3794:1 3836:1 3846:3 3851:1 3860:1 3867:1 3897:3 3926:1 3958:1 3962:1 4045:1 4067:2 4070:1 4097:1 4101:1 4119:1 4142:1 4146:1 4147:1 4157:1 4161:3 4162:1 4171:1 4179:3 4211:1 4224:1 4226:2 4251:2 4279:1 4328:1 4334:1 4355:1 4359:1 4371:1 4375:1 4381:1 4383:1 4395:1 4396:1 4402:1 4411:1 4412:1 4444:1 4448:1 4459:1 4474:1 4479:1 4488:1 4492:1 4517:1 4539:1 4555:1 4564:1 4575:1 4580:1 4582:1 4601:1 4626:1 4643:3 4645:2 4646:1 4651:2 4654:1 4722:2 4724:1 4755:1 4762:1 4767:1 4773:1 4780:3 4795:1 4803:1 4809:1 4813:1 4815:2 4820:2 4830:2 4843:1 4854:1 4855:1 4857:1 4859:1 4867:3 4886:1 4887:1 4914:1 4920:27 4922:2 4927:1 4931:1 4947:1 4955:1 4985:1 4992:1 5008:1 5015:2 5019:4 5020:2 5032:2 5039:1 5047:1 5054:3 5058:5 5059:2 5076:2 5119:1 5125:1 5134:1 5153:1 5163:1 5170:3 5178:1 5190:1 5194:1 5232:1 5233:1 5235:1 5237:1 5240:1 5241:1 5247:1 5254:1 5272:1 5282:1 5298:1 5299:2 5300:1 5302:3 5307:1 5308:3 5324:1 5348:1 5371:3 5402:2 5404:1 5408:1 5416:1 5428:1 5435:2 5437:27 5444:1 5453:1 5456:1 5459:4 5465:1 5471:1 5473:1 5483:1 5486:1 5492:1 5555:2 5566:6 5587:1 5588:1 5598:1 5625:1 5638:3 5655:2 5662:2 5663:1 5672:2 5676:2 5679:1 5687:1 5712:1 5731:7 5738:1 5760:2 5832:5 5843:1 5850:1 5869:1 5879:5 5885:1 5913:1 5924:1 5960:1 5967:1 5969:2 5973:2 5974:1 5980:1 5983:3 5995:1 6004:1 6005:3 6017:1 6043:1 6049:1 6075:2 6078:1 6096:13 6097:2 6112:2 6115:1 6140:4 6149:2 6158:1 6187:2 6191:1 6207:1 6253:3 6254:1 6257:2 6277:4 6278:4 6279:2 6285:5 6291:1 6292:2 6293:3 6294:1 6303:1 6309:2 6312:5 6315:3 6316:1 6326:1 6358:1 6407:1 6411:2 6430:1 6483:1 6495:1 6506:1 6528:1 6561:1 6580:1 6610:1 6622:1 6623:2 6628:1 6655:1 6679:1 6683:1 6684:1 6695:1 6698:2 6738:3 6739:1 6759:1 6787:1 6799:1 6801:2 6803:1 6807:1 6832:1 6835:1 6843:1 6859:1 6861:1 6867:3 6870:1 6942:1 6968:1 6970:1 6972:1 6982:1 6983:1 6991:1 6996:1 7008:1 7010:1 7012:1 7036:2 7038:2 7046:1 7061:2 7062:5 7065:1 7070:1 7072:1 7076:1 7083:1 7086:1 7119:1 7130:1 7138:1 7140:1 7164:1 7213:1 7225:2 7243:1 7250:1 7252:2 7264:2 7289:9 7295:3 7366:1 7377:1 7383:1 7397:1 7421:1 7422:1 7423:1 7432:3 7434:1 7451:1 7455:1 7494:1 7496:1 7525:1 7532:1 7537:1 7561:2 7567:2 7580:2 7583:1 7589:1 7591:1 7599:1 7603:1 7604:2 7607:1 7630:1 7635:1 7656:1 7665:1 7684:1 7707:1 7708:2 7709:1 7715:1 7716:1 7718:1 7721:1 7722:1 7725:1 7727:1 7728:1 7729:3 7734:1 7736:1 7739:2 7741:2 7742:1 7748:1 7764:1 7782:1 7805:1 7822:1 7825:1 7840:1 7847:1 7852:3 7857:2 7860:1 7871:2 7880:1 7905:1 7937:2 7945:1 7965:1 7966:1 7974:1 7989:5 7995:1 8002:1 8004:4 8006:1 8007:1 8008:1 8009:2 8014:2 8015:2 8016:1 8017:1 8019:3 8020:6 8021:1 8030:1 8034:1 8054:1 8077:1 8082:1 8085:2 8125:1 8136:1 8176:1 8185:2 8186:1 8200:3 8203:3 8224:1 8260:1 8284:1 8293:1 8297:1 8308:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:2 8349:1 8370:2 8377:1 8393:2 8421:1 8427:1 8446:1 8449:1 8481:1 8489:1 8493:1 8496:1 8501:3 8524:1 8564:2 8566:1 8570:1 8577:1 8602:1 8617:1 8648:1 8661:1 8695:2 8709:1 8714:1 8731:1 8738:1 8751:1 8772:1 8842:1 8845:1 8849:1 8854:1 8866:1 8883:6 8905:1 8940:1 8943:1 8946:1 8955:1 8960:1 8966:2 8975:1 8978:2 8996:1 9007:1 9012:1 9026:1 9033:1 9052:2 9060:1 9090:1 9113:1 9122:1 9123:2 9126:1 9134:1 9138:1 9143:1 9146:1 9153:1 9194:1 9205:1 9216:1 9217:2 9231:1 9253:1 9278:1 9282:1 9306:1 9307:1 9325:1 9328:1 9333:1 9337:1 9338:6 9372:6 9374:1 9381:1 9394:1 9426:1 9428:2 9433:1 9437:1 9446:1 9470:1 9484:1 9492:1 9495:1 9499:1 9526:4 9529:1 9577:1 9586:1 9588:1 9612:2 9619:1 9628:10 9629:10 9637:1 9655:1 9656:1 9657:5 9688:3 9694:3 9695:1 9702:42 9707:1 9708:1 9711:2 9719:1 9720:1 9723:1 9733:13 9738:4 9744:1 9754:1 9758:1 9761:1 9780:1 9781:1 9787:1 9793:2 9803:1 9849:4 9866:2 9870:1 9885:1 9895:1 9924:1 9926:2 9942:3 9957:1 9963:1 9967:3 9968:1 9975:1 9978:1 9999:5 10011:1 10023:1 10058:1 10063:2 10099:2 10103:1 10161:1 10167:1 10171:1 10175:1 10209:1 10213:1 10223:1 10235:2 10261:2 10284:1 10286:1 10298:1 10313:1 10314:1 10321:28 10333:1 10338:1 10342:1 10349:1 10356:1 10359:12 10360:3 10376:1 10378:2 10399:1 10401:1 10406:1 10407:1 10411:1 10412:2 10431:1 10444:1 10452:1 10470:34 10488:1 10520:1 10559:1 10598:1 10599:1 10612:1 10624:1 10669:1 10683:1 10686:2 10695:1 10697:1 10701:2 10704:1 10707:1 10711:1 10716:1 10717:4 10718:1 10736:1 10744:1 10749:1 10772:3 10773:1 10778:1 10789:2 10791:1 10792:1 10796:1 10798:1 10807:2 10808:2 10812:1 10813:1 10826:1 10848:1 10850:1 10864:1 10878:1 10884:1 10895:1 10900:1 10911:3 10937:1 10979:1 10994:1 11002:2 11075:3 11078:1 11081:1 11109:2 11129:1 11163:2 11165:1 11169:1 11183:1 11207:1 11212:3 11226:1 11230:1 11231:1 11233:2 11238:1 11247:3 11258:1 11268:1 11270:1 11272:1 11320:1 11325:1 11334:2 11340:1 11343:1 11347:2 11378:1 11382:5 11391:4 11402:1 11404:1 11422:1 11457:1 11489:4 11522:3 11557:3 11561:2 11564:1 11569:1 11571:3 11572:1 11573:1 11575:1 11583:1 11585:2 11587:2 11598:1 11617:1 11619:1 11625:1 11628:1 11636:1 11640:1 11641:1 11642:2 11645:1 11654:1 11668:1 11675:1 11678:3 11690:6 11697:2 11707:2 11718:2 11720:1 11723:1 11739:2 11744:1 11745:1 11755:1 11770:1 11771:1 11774:1 11776:1 11791:1 11793:1 11795:2 11804:1 11815:1 11840:1 11851:1 11861:1 11864:1 11865:1 11872:2 11876:1 11882:1 11885:1 11899:1 11902:1 11903:1 11912:1 11917:1 11918:1 11919:5 11930:1 11931:2 11932:9 11936:1 11947:1 11955:1 11959:1 11961:2 11966:1 11969:1 11976:1 11978:1 11982:3 11985:1 11988:1 11992:1 12004:1 12014:1 12033:1 12052:1 12056:1 12057:1 12076:1 12081:1 12082:1 12083:2 12086:1 12096:1 12104:1 12111:1 12112:1 12113:1 12120:1 12131:1 12146:1 12147:1 12186:1 12191:1 12214:1 12221:6 12229:1 12230:1 12231:1 12237:3 12239:4 12248:1 12255:1 12269:1 12282:1 12301:1 12324:1 12339:1 12359:1 12361:1 12391:27 12401:1 12407:1 12420:1 12435:1 12446:1 12451:1 12458:1 12471:1 12473:1 12479:1 12490:2 12493:1 12497:1 12508:1 12520:1 12521:1 12538:1 12540:3 12547:2 12552:1 12561:2 12570:2 12580:1 12592:1 12608:1 12618:2 12619:1 12630:1 12641:1 12643:2 12651:1 12654:2 12669:4 12673:5 12692:2 12694:1 12734:4 12756:1 12757:1 12760:1 12774:1 12777:1 12794:1 12821:1 12824:2 12829:1 12837:1 12848:1 12850:1 12867:6 12879:1 12881:1 12898:1 12936:1 12958:1 12977:2 12981:1 12988:1 13013:4 13028:1 13040:2 13049:1 13051:1 13052:1 13058:1 13079:1 13080:1 13089:1 13096:1 13112:1 13113:5 13128:1 13154:3 13175:1 13179:1 13187:1 13213:1 13234:1 13241:1 13258:4 13267:1 13282:1 13283:5 13303:1 13316:1 13325:2 13357:2 13377:1 13384:1 13385:2 13411:1 13412:4 13415:1 13418:2 13420:5 13429:1 13443:1 13454:1 13464:2 13468:1 13471:1 13474:1 13483:1 13487:1 13493:6 13498:1 13505:1 13509:1 13516:1 13517:2 13550:1 13568:1 13588:1 13601:1 13632:5 13633:1 13647:1 13648:1 13669:2 13673:1 13686:2 13690:3 13694:3 13704:1 13710:1 13721:4 13737:1 13749:1 13761:1 13765:1 13767:1 13768:1 13777:1 13793:1 13798:8 13803:1 13808:1 13823:1 13824:3 13826:3 13828:1 13837:1 13845:2 13849:1 13859:1 13880:1 13881:1 13891:6 13895:1 13898:1 13900:1 13901:1 13910:1 13919:1 13921:2 13931:1 13942:1 13972:2 13998:1 14008:1 14009:1 14015:1 14029:1 14032:3 14036:1 14042:1 14070:2 14071:1 14093:1 14095:2 14105:2 14107:1 14114:1 14115:1 14116:3 14122:1 14124:1 14128:1 14134:1 14145:1 14146:4 14149:1 14152:1 14154:1 14162:1 14186:1 14189:2 14191:1 14218:1 14235:4 14263:1 14265:1 14286:1 14292:1 14296:1 14302:1 14308:1 14309:1 14322:7 14337:2 14340:2 14342:1 14376:1 14380:1 14406:1 14410:1 14416:1 14430:1 14448:2 14488:1 14491:6 14515:1 14519:1 14523:1 14533:3 14550:1 14554:1 14555:1 14559:1 14564:1 14567:5 14568:1 14571:2 14577:1 14580:4 14586:1 14611:1 14614:1 14621:2 14628:1 14632:2 14636:1 14638:5 14642:1 14643:1 14654:1 14666:1 14667:1 14675:2 14686:1 14716:1 14727:3 14735:1 14737:1 14742:4 14744:1 14787:1 14791:2 14803:1 14840:1 14844:1 14854:1 14869:1 14910:1 14940:1 14941:2 14960:1 14984:1 15012:1 15014:1 15030:1 15037:3 15046:1 15060:3 15083:1 15086:1 15095:1 15123:1 15132:1 15140:1 15150:1 15151:1 15152:2 15160:1 15161:1 15162:1 15169:1 15185:1 15197:1 15205:1 15210:1 15220:1 15222:1 15250:1 15269:1 15278:1 15292:1 15312:2 15315:5 15326:1 15345:1 15383:1 15385:2 15400:1 15414:1 15448:1 15460:1 15472:1 15487:1 15502:3 15519:1 15525:1 15526:1 15574:1 15577:1 15584:1 15587:1 15595:1 15598:1 15675:1 15705:1 15707:1 15746:1 15747:1 15776:2 15778:28 15782:1 15786:1 15794:1 15797:1 15800:4 15813:1 15844:6 15855:1 15864:2 15868:1 15885:1 15895:1 15900:1 15910:1 15912:1 15915:1 15942:1 15943:1 15944:1 15981:1 16001:1 16006:2 16013:1 16017:1 16022:1 16083:1 16099:2 16114:1 16134:1 16142:2 16147:1 16149:1 16173:1 16190:1 16196:1 16198:1 16201:1 16217:1 16236:1 16241:1 16253:1 16269:1 16285:1 16293:1 16299:1 16303:1 16304:1 16320:1 16327:12 16332:2 16354:1 16357:1 16365:2 16372:1 16375:1 16394:1 16456:1 16460:1 16475:1 16490:1 16499:1 16502:2 16505:2 16510:4 16516:5 16528:1 16535:1 16559:1 16594:1 16609:11 16613:1 16622:1 16643:1 16720:1 16729:1 16731:1 16732:2 16742:1 16775:1 16792:3 16797:4 16803:2 16823:1 16831:1 16835:1 16837:1 16843:1 16854:1 16862:1 16869:2 16874:2 16882:1 16889:1 16897:1 16898:1 16914:2 16918:1 16929:2 16964:1 16968:2 16970:2 16971:1 16973:1 16977:2 16978:1 16979:10 16980:1 16981:1 16983:2 17002:1 17003:1 17004:1 17008:1 17009:1 17013:5 17026:1 17033:2 17064:1 17075:1 17076:1 17082:1 17100:1 17114:1 17120:1 17125:1 17152:1 17154:1 17161:2 17172:10 17175:1 17181:2 17193:1 17204:1 17214:1 17217:1 17230:1 17234:1 17243:1 17246:1 17273:1 17276:1 17278:2 17286:4 17303:1 17309:1 17315:3 17319:1 17320:2 17333:11 17336:5 17417:2 17426:2 17438:1 17449:4 17450:1 17481:1 17516:1 17545:1 17547:2 17562:1 17564:2 17571:1 17601:1 17607:2 17623:1 17629:1 17639:1 17675:4 17679:1 17723:1 17762:1 17769:1 17792:2 17794:1 17798:1 17806:2 17814:2 17817:3 17835:2 17836:1 17849:1 17850:1 17858:2 17869:1 17903:1 17918:1 17921:1 17924:1 17925:1 17941:1 17942:1 17943:1 17955:1 17957:2 17972:1 17978:1 17981:1 17984:1 17992:1 17993:1 17997:1 17999:1 18000:1 18005:1 18011:1 18013:1 18016:1 18030:1 18032:1 18037:1 18039:1 18048:1 18057:2 18073:1 18080:1 18092:28 18101:3 18105:1 18106:1 18110:1 18120:1 18127:1 18128:1 18137:1 18184:1 18198:1 18200:1 18203:5 18214:1 18215:1 18221:2 18244:1 18249:1 18270:3 18274:1 18276:1 18277:1 18290:1 18297:1 18298:1 18320:2 18325:1 18339:1 18342:1 18390:1 18392:1 18396:1 18442:1 18463:2 18470:2 18474:1 18485:1 18506:1 18535:1 18549:1 18559:1 18560:1 18561:2 18563:2 18574:1 18582:1 18593:1 18600:2 18601:1 18603:1 18608:7 18614:1 18645:3 18651:1 18673:1 18676:1 18696:1 18703:1 18708:2 18712:1 18715:1 18732:1 18747:1 18752:1 18767:2 18769:1 18779:2 18781:3 18793:1 18794:1 18811:1 18823:1 18867:1 18870:1 18876:1 18898:2 18953:2 18954:1 18959:1 18968:1 18993:2 18997:1 19019:1 19029:1 19050:1 19060:1 19064:2 19067:1 19083:1 19087:2 19096:1 19097:1 19120:1 19141:1 19154:1 19169:1 19175:1 19191:1 19192:3 19193:3 19204:1 19225:1 19235:1 19263:4 19269:2 19276:1 19287:1 19303:1 19310:1 19336:1 19361:1 19397:1 19416:1 19428:1 19437:2 19452:1 19458:4 19469:1 19471:1 19475:1 19490:5 19496:3 19500:1 19513:4 19514:1 19518:1 19525:1 19529:1 19532:1 19538:3 19548:1 19567:1 19602:1 19605:1 19615:4 19616:1 19620:1 19641:2 19645:4 19649:2 19658:1 19664:1 19670:1 19672:1 19679:1 19689:1 19691:3 19703:1 19708:2 19772:1 19775:1 19787:1 19796:1 19806:1 19810:12 19814:2 19820:1 19851:3 19854:3 19858:1 19865:2 19868:1 19894:2 19904:2 19905:1 19907:1 19908:2 19932:9 19947:1 19961:1 19976:3 20027:1 20034:1 20046:1 20061:1 20065:1 20074:1 20076:1 20078:1 20091:2 20109:4 20110:2 20115:3 20117:1 20125:3 20126:1 20127:1 20130:1 20153:1 20168:1 20174:1 20201:2 20221:1 20231:1 20232:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20295:1 20296:1 20318:1 20324:1 20325:1 20350:1 20355:1 20369:1 20383:1 20390:1 20431:1 20444:1 20445:1 20446:2 20455:1 20522:1 20537:1 20540:2 20556:2 20566:1 20568:1 20572:1 20588:3 20593:1 20604:1 20606:5 20607:1 20608:1 20617:1 20643:1 20646:1 20649:1 20654:1 20679:1 20680:1 20689:1 20690:1 20691:2 20727:1 20746:1 20751:3 20754:1 20762:1 20781:1 20783:1 20785:2 20796:1 20799:2 20816:1 20818:1 20865:1 20878:1 20885:1 20900:1 20917:1 20918:1 20941:37 20948:1 20949:2 20974:1 20978:1 20997:1 21000:1 21003:3 21044:1 21064:1 21071:1 21072:1 21081:1 21083:1 21097:1 21101:1 21116:1 21124:2 21130:2 21145:2 21149:1 21170:1 21174:2 21204:1 21209:1 21214:1 21215:1 21235:1 21261:1 21263:1 21284:1 21292:1 21299:1 21316:1 21318:2 21322:1 21323:1 21337:1 21371:1 21376:1 21423:1 21443:1 21445:1 21477:1 21503:1 21508:1 21512:1 21513:1 21522:2 21524:1 21530:1 21540:1 21566:1 21586:1 21591:1 21593:1 21597:1 21602:1 21603:1 21608:2 21612:2 21634:1 21686:2 21696:1 21701:1 21704:2 21713:2 21724:1 21754:1 21788:1 21806:1 21809:1 21819:1 21823:4 21827:1 21829:2 21831:1 21843:1 21864:1 21866:1 21872:2 21874:1 21875:2 21886:1 21892:1 21899:1 21917:2 21939:2 21943:2 21975:4 21987:4 22008:2 22009:1 22032:1 22037:1 22067:1 22076:1 22079:5 22083:1 22084:2 22123:3 22143:2 22169:1 22173:1 22177:2 22181:1 22186:2 22190:1 22207:1 22247:1 22251:2 22298:1 22300:4 22304:1 22305:2 22308:1 22315:1 22347:1 22362:1 22386:1 22388:1 22406:1 22424:1 22429:4 22490:1 22493:2 22497:1 22516:1 22530:2 22547:1 22584:1 22628:6 22643:1 22650:1 22666:1 22668:1 22677:2 22715:1 22720:1 22727:4 22754:1 22764:1 22781:1 22783:1 22791:1 22800:1 22806:1 22809:1 22816:1 22824:1 22839:1 22866:1 22870:1 22883:1838 22893:1 22899:1 22909:2 22923:1 22944:1 22966:1 22969:1 22984:1 23031:3 23039:1 23043:2 23044:1 23079:1 23113:1 23119:1 23129:1 23139:1 23164:1 23171:1 23189:1 23193:1 23202:1 23223:1 23270:1 23279:1 23293:1 23304:1 23320:1 23321:1 23348:1 23365:1 23371:1 23411:1 23427:1 23456:1 23457:1 23468:2 23470:1 23474:1 23482:1 23492:1 23508:1 23520:1 23521:3 23523:2 23543:1 23549:1 23603:1 23607:4 23640:4 23647:1 23653:1 23664:1 23698:1 23706:1 23708:1 23712:1 23715:1 23718:1 23735:1 23763:1 23766:1 23773:1 23784:1 23787:1 23789:1 23800:1 23805:1 23812:1 23821:1 23833:5 23834:3 23874:1 23880:4 23914:2 23922:1 23932:1 23934:1 23947:19 23958:1 23978:1 23979:2 24012:2 24013:1 24019:1 24020:1 24044:1 24047:4 24049:1 24052:1 24064:2 24066:1 24079:1 24092:1 24097:2 24105:3 24106:1 24118:1 24154:2 24185:1 24191:1 24197:1 24209:4 24217:1 24233:1 24239:2 24240:1 24255:1 24271:1 24289:2 24292:1 24314:1 24327:1 24332:1 24342:1 24345:2 24347:1 24364:1 24369:1 24376:4 24385:1 24405:1 24424:1 24449:1 24450:1 24474:1 24479:1 24480:2 24482:2 24483:1 24491:1 24511:1 24518:2 24534:1 24539:1 24553:1 24566:1 24591:2 24592:6 24598:1 24601:1 24604:1 24607:1 24612:1 24620:1 24630:1 24640:1 24643:1 24651:1 24653:2 24656:3 24658:5 24663:1 24674:1 24680:2 24681:4 24682:1 24683:1 24699:1 24700:1 24704:1 24708:4 24728:2 24729:1 24753:2 24754:1 24762:2 24774:1 24781:3 24792:1 24794:1 24808:2 24820:1 24826:1 24850:1 24853:1 24869:1 24883:5 24894:2 24918:1 24919:1 24924:1 24945:1 24978:1 25000:1 25031:2 25047:1 25053:1 25058:1 25067:1 25076:1 25080:1 25114:5 25122:1 25143:1 25144:2 25157:1 25161:2 25163:1 25179:3 25217:1 25240:1 25244:1 25269:1 25285:1 25299:1 25300:2 25303:1 25326:1 25334:2 25357:1 25369:1 25373:1 25379:1 25386:1 25392:1 25407:2 25410:2 25417:1 25427:2 25428:1 25431:2 25448:1 25456:1 25461:1 25481:1 25486:1 25491:1 25498:2 25502:2 25505:1 25511:3 25527:1 25529:1 25541:1 25543:1 25553:2 25554:2 25568:1 25572:1 25580:1 25582:2 25586:1 25590:3 25600:2 25602:1 25605:1 25608:3 25609:2 25623:2 25630:1 25632:1 25637:4 25690:1 25699:1 25720:1 25721:4 25725:1 25733:2 25738:1 25781:1 25782:1 25786:2 25793:3 25807:1 25811:1 25815:1 25824:2 25841:1 25846:1 25852:1 25859:2 25867:1 25879:1 25903:1 25907:1 25917:1 25928:1 25934:1 25943:1 25948:1 25952:1 25973:1 25994:1 26000:1 26005:1 26011:1 26014:1 26018:4 26031:2 26052:1 26062:3 26070:1 26091:1 26099:1 26102:2 26107:1 26119:1 26120:1 26124:1 26138:1 26151:1 26153:1 26155:1 26156:3 26162:1 26167:1 26183:1 26191:1 26203:2 26211:1 26212:1 26214:1 26215:2 26216:2 26228:1 26236:1 26260:1 26261:1 26275:1 26279:1 26285:1 26306:1 26313:1 26324:1 26327:2 26337:3 26344:1 26345:1 26346:1 26361:1 26362:1 26383:1 26385:3 26394:1 26407:1 26415:1 26424:1 26425:1 26426:1 26438:3 26444:1 26453:4 26458:1 26459:1 26460:1 26475:1 26496:1 26508:5 26552:1 26555:1 26589:1 26590:1 26593:1 26602:5 26605:1 26608:1 26610:1 26612:3 26614:1 26628:2 26642:1 26644:1 26651:1 26667:1 26668:8 26671:1 26679:1 26694:1 26740:1 26743:1 26744:1 26777:2 26779:4 26782:2 26787:1 26794:1 26795:1 26797:2 26808:2 26809:2 26815:1 26818:1 26820:1 26826:4 26827:1 26828:4 26842:1 26843:1 26844:1 26854:1 26874:1 26907:1 26914:1 26930:1 26949:2 26984:2 26995:2 26999:1 27004:4 27029:2 27051:1 27072:1 27087:3 27092:1 27097:1 27099:1 27103:1 27114:1 27127:3 27138:1 27149:1 27153:2 27171:1 27183:1 27203:1 27213:2 27243:1 27251:2 27259:1 27260:12 27283:1 27287:2 27294:1 27331:9 27333:2 27339:1 27343:1 27393:1 27396:4 27398:2 27401:1 27412:2 27415:2 27447:1 27460:7 27470:1 27478:1 27484:1 27500:3 27508:1 27522:1 27526:1 27527:1 27542:1 27544:2 27573:1 27591:1 27594:1 27599:1 27601:1 27603:2 27619:6 27633:2 27651:1 27653:1 27677:3 27703:1 27723:1 27731:1 27752:1 27760:1 27767:1 27779:1 27782:1 27787:27 27804:1 27808:1 27810:2 27813:3 27816:1 27817:1 27819:1 27825:1 27854:2 27859:3 27860:1 27862:1 27866:1 27878:1 27879:1 27889:1 27920:1 27922:1 27925:1 27957:1 27963:1 27973:5 27974:1 27983:1 27987:2 28000:2 28007:1 28011:4 28017:1 28038:1 28051:1 28052:1 28081:1 28154:1 28160:1 28179:3 28191:1 28206:1 28263:1 28276:1 28278:1 28279:1 28287:1 28297:1 28298:2 28308:1 28310:1 28313:3 28317:1 28318:2 28348:1 28370:28 28384:1 28398:3 28399:1 28433:1 28436:1 28460:1 28464:1 28470:1 28472:2 28473:1 28482:2 28483:1 28489:6 28523:1 28528:1 28541:1 28560:1 28567:1 28572:1 28577:3 28582:2 28587:1 28612:1 28621:1 28639:1 28645:1 28647:2 28650:2 28686:1 28752:1 28786:1 28811:1 28812:1 28814:1 28815:1 28817:2 28826:1 28831:1 28833:1 28852:1 28908:1 28913:1 28929:1 28932:1 28939:2 28940:1 28949:1 28974:2 28983:2 28993:1 28996:2 29004:1 29014:1 29016:1 29020:1 29032:1 29041:3 29087:1 29126:1 29133:2 29141:1 29149:1 29170:3 29174:1 29179:1 29190:2 29192:1 29215:1 29233:1 29241:1 29251:1 29258:1 29271:1 29297:1 29320:1 29328:1 29330:1 29334:1 29367:2 29398:1 29417:1 29419:3 29426:2 29451:1 29455:2 29464:1 29480:1 29486:2 29493:1 29516:2 29551:1 29554:1 29557:3 29564:2 29566:1 29568:2 29583:2 29584:2 29587:3 29591:1 29592:1 29604:1 29634:3 29635:1 29688:8 29695:1 29701:1 29741:1 29749:1 29752:1 29756:1 29760:1 29761:1 29768:1 29775:1 29816:1 29822:1 29827:1 29840:1 29845:4 29857:1 29887:1 29888:1 29901:2 29939:1 29952:1 29954:1 29957:1 29962:2 29969:1 29972:1 29995:1 30004:1 30015:1 30023:1 30035:1 30041:1 30079:3 30083:1 30084:2 30092:1 30093:1 30095:2 30099:5 30102:1 30105:2 30119:1 30134:1 30144:2 30165:3 30192:1 30198:2 30199:3 30213:1 30215:1 30235:2 30238:1 30248:1 30253:1 30261:4 30263:1 30283:1 30284:1 30288:1 30290:1 30294:1 30295:1 30299:1 30307:1 30319:1 30320:1 30329:1 30330:1 30331:1 30350:1 30364:1 30370:1 30424:1 30434:1 30454:1 30478:1 30482:3 30483:1 30489:1 30493:1 30518:1 30535:4 30537:2 30538:2 30541:1 30552:2 30553:1 30601:1 30613:1 30617:2 30641:1 30677:1 30679:1 30688:1 30743:1 30777:1 30783:1 30787:1 30788:1 30789:2 30790:6 30794:1 30806:1 30814:5 30817:3 30823:1 30855:2 30857:1 30861:1 30907:1 30910:1 30912:2 30920:2 30931:1 30944:2 30952:1 30960:2 30963:1 30970:1 30972:1 30981:4 30987:1 31002:1 31005:1 31015:1 31020:1 31026:1 31047:1 31051:4 31053:1 31055:2 31057:1 31059:1 31089:1 31092:1 31093:1 31095:1 31112:2 31134:1 31142:1 31148:1 31151:1 31168:3 31177:1 31178:1 31181:1 31188:1 31201:1 31210:1 31223:1 31226:1 31235:2 31255:2 31264:3 31265:2 31276:1 31283:1 31286:1 31296:4 31317:2 31329:2 31334:3 31376:1 31377:5 31384:1 31387:1 31404:1 31411:1 31413:12 31425:2 31444:2 31465:1 31478:1 31486:1 31550:1 31563:1 31569:1 31574:2 31578:3 31588:1 31595:1 31603:1 31610:1 31612:1 31641:1 31648:1 31660:2 31663:1 31701:1 31708:1 31712:1 31725:1 31737:1 31747:1 31751:1 31753:2 31767:1 31768:1 31784:1 31787:1 31797:1 31805:1 31808:1 31834:3 31848:1 31853:1 31866:2 31874:1 31882:1 31885:1 31891:1 31893:1 31918:1 31919:1 31929:1 31930:4 31933:1 31946:2 31963:2 31964:1 31968:8 31969:1 31993:2 32010:1 32022:1 32025:1 32036:1 32057:1 32066:5 32074:1 32090:1 32099:1 32106:1 32112:1 32115:1 32117:1 32136:1 32140:1 32153:1 32208:1 32219:2 32259:1 32285:3 32307:1 32311:1 32317:1 32319:1 32326:1 32329:1 32376:2 32405:1 32406:1 32413:1 32436:1 32459:1 32461:2 32491:1 32492:1 32493:2 32505:2 32515:1 32532:1 32553:2 32555:1 32559:1 32574:1 32596:1 32606:1 32612:1 32624:1 32629:1 32636:1 32683:2 32691:1 32700:1 32725:2 32726:1 32732:1 32745:1 32749:2 32750:6 32774:3 32779:1 32785:2 32787:1 32801:4 32813:1 32820:1 32832:3 32846:1 32848:2 32879:1 32890:5 32891:1 32893:1 32896:2 32908:1 32909:1 32913:1 32917:2 32924:1 32929:3 32941:3 32950:2 32955:1 32958:1 32965:1 32974:1 32984:1 32997:1 33027:1 33031:1 33053:1 33057:2 33066:1 33069:2 33080:1 33085:1 33089:1 33092:1 33094:3 33098:1 33100:1 33112:1 33118:1 33128:4 33133:2 33137:1 33141:2 33142:1 33144:2 33157:2 33168:1 33180:1 33182:1 33183:2 33218:1 33222:1 33272:1 33276:1 33284:1 33287:1 33296:3 33297:1 33309:2 33330:1 33335:1 33346:1 33352:7 33388:1 33389:1 33404:1 33413:1 33422:1 33428:2 33440:1 33444:1 33446:1 33449:1 33461:3 33467:1 33498:1 33502:1 33503:1 33504:1 33505:2 33512:1 33530:1 33533:3 33537:2 33543:3 33545:1 33552:1 33553:2 33555:1 33556:2 33563:3 33579:1 33591:2 33592:1 33595:2 33609:1 33616:1 33620:1 33623:1 33637:1 33663:7 33669:1 33680:4 33716:1 33720:1 33730:1 33734:2 33743:1 33760:1 33766:1 33769:1 33771:1 33794:2 33795:1 33819:1 33820:1 33824:1 33861:1 33865:1 33880:2 33902:1 33910:1 33921:1 33928:1 33930:1 33997:1 34003:1 34040:1 34052:1 34056:3 34057:2 34062:1 34067:4 34071:2 34075:6 34076:1 34077:1 34080:1 34083:1 34085:3 34086:1 34099:1 34104:1 34133:1 34139:1 34144:1 34151:3 34157:1 34160:1 34174:1 34194:1 34197:1 34221:2 34246:2 34283:1 34304:1 34306:1 34314:1 34321:1 34351:1 34353:1 34363:1 34364:1 34367:1 34371:1 34373:1 34385:1 34403:1 34407:1 34410:1 34413:2 34435:13 34437:1 34440:1 34445:1 34470:1 34478:2 34497:6 34526:1 34566:1 34570:1 34589:1 34596:4 34615:1 34619:1 34627:1 34629:1 34630:1 34634:9 34643:2 34654:1 34659:1 34662:1 34673:1 34674:1 34682:1 34691:11 34701:1 34749:1 34757:2 34761:1 34782:1 34794:1 34804:2 34834:1 34862:1 34878:2 34924:1 34936:1 34968:1 34989:1 34996:34 34997:1 35022:1 35026:4 35031:1 35039:1 35041:5 35042:2 35056:1 35094:1 35098:1 35124:3 35128:8 35129:1 35135:2 35141:1 35149:1 35152:1 35157:1 35164:1 35167:1 35177:1 35184:1 35201:1 35207:2 35253:1 35265:1 35281:2 35289:2 35310:1 35311:1 35326:1 35342:1 35354:4 35382:2 35395:2 35410:1 35456:1 35464:3 35468:1 35470:1 35473:1 35488:1 35499:1 35503:2 35517:2 35520:1 35526:2 35539:1 35582:1 35585:1 35589:2 35592:1 35602:2 35614:1 35625:2 35635:1 35636:1 35648:1 35656:1 35665:1 35677:1 35681:2 35692:1 35696:1 35700:1 35714:1 35721:1 35734:1 35746:1 35748:3 35749:1 35753:2 35757:3 35785:1 35789:2 35805:6 35831:3 35836:1 35837:2 35838:2 35845:1 35850:28 35862:2 35888:1 35901:1 35925:1 35939:1 35953:1 35957:1 35959:2 35965:2 35966:4 35989:1 36007:1 36010:1 36011:1 36028:2 36033:1 36059:1 36065:1 36072:1 36075:2 36091:1 2 9:1 10:1 19:1 31:2 32:1 33:1 55:1 65:1 68:1 69:1 73:1 76:1 86:1 95:1 104:3 106:2 107:1 122:1 128:1 140:1 166:2 177:1 191:1 196:2 200:2 207:1 211:1 221:1 235:1 239:2 251:1 255:1 256:1 271:1 278:2 297:2 302:5 303:1 309:1 322:2 323:1 328:1 330:1 365:1 372:1 412:1 414:3 418:1 433:1 435:1 442:1 450:1 452:1 454:1 460:1 461:1 478:2 498:2 503:1 515:1 520:2 526:1 539:1 549:1 553:1 555:1 568:2 601:3 607:1 610:1 621:1 641:1 650:1 659:1 662:1 671:1 672:1 674:1 684:1 690:1 720:1 750:1 751:3 755:2 759:1 761:1 766:1 795:6 820:29 825:3 831:1 833:1 835:1 854:1 861:1 881:1 886:3 889:1 919:2 931:1 935:2 941:2 955:1 964:1 999:2 1019:2 1022:1 1024:3 1028:2 1032:1 1034:1 1035:3 1058:1 1082:3 1091:1 1102:2 1124:1 1128:1 1135:3 1136:6 1140:2 1142:1 1150:5 1167:1 1176:4 1181:1 1194:2 1203:3 1206:6 1210:1 1212:2 1219:1 1226:2 1233:2 1234:3 1253:2 1256:1 1260:2 1270:3 1293:1 1301:2 1305:1 1308:1 1322:1 1326:4 1327:1 1385:2 1386:1 1403:1 1431:1 1442:1 1454:1 1459:3 1510:1 1537:1 1541:28 1550:1 1554:2 1555:2 1556:1 1564:3 1567:1 1583:1 1592:1 1595:2 1596:2 1603:1 1605:1 1610:1 1611:1 1613:1 1616:1 1617:2 1619:1 1623:1 1627:1 1632:1 1634:1 1638:1 1651:1 1652:1 1682:1 1705:1 1706:2 1740:3 1755:1 1757:1 1760:1 1763:1 1765:1 1771:2 1773:6 1792:1 1808:1 1809:1 1824:1 1836:3 1843:1 1847:1 1849:2 1861:1 1870:1 1888:1 1889:1 1891:3 1895:1 1897:9 1903:1 1904:1 1910:1 1911:1 1915:1 1918:1 1925:1 1929:2 1930:1 1932:1 1960:3 1970:1 1990:1 1991:1 1997:3 2013:1 2014:1 2031:1 2036:1 2037:1 2043:1 2058:2 2067:1 2088:1 2095:1 2097:1 2098:6 2102:1 2105:1 2106:2 2123:1 2139:1 2145:1 2147:1 2158:2 2160:1 2164:3 2172:1 2175:1 2180:1 2196:1 2198:1 2199:1 2202:1 2218:1 2249:1 2260:1 2265:1 2276:1 2279:1 2282:1 2292:1 2307:1 2312:1 2317:2 2320:2 2327:1 2328:1 2345:1 2348:1 2352:3 2355:1 2364:1 2368:1 2372:1 2376:2 2379:2 2390:1 2400:2 2406:2 2418:2 2420:1 2436:1 2446:1 2454:1 2455:1 2467:1 2486:5 2494:1 2508:1 2517:1 2522:2 2525:1 2546:1 2547:1 2557:1 2566:1 2598:1 2599:2 2604:1 2619:1 2624:1 2638:1 2642:1 2644:1 2652:1 2655:1 2665:1 2696:8 2721:1 2743:2 2746:1 2747:1 2783:1 2789:1 2817:1 2827:1 2848:1 2852:1 2857:1 2859:1 2861:2 2862:4 2865:1 2866:2 2867:2 2870:1 2872:5 2877:7 2881:3 2883:5 2887:3 2891:1 2895:1 2897:1 2900:1 2902:4 2906:3 2909:1 2910:1 2913:1 2918:1 2919:1 2920:1 2941:1 2942:1 2954:2 2955:1 2971:3 2974:1 2980:1 2999:2 3002:1 3004:1 3026:1 3027:1 3038:1 3042:1 3044:3 3045:3 3054:3 3057:1 3075:2 3076:4 3086:3 3087:1 3098:1 3100:1 3106:1 3116:3 3131:1 3133:1 3137:1 3145:1 3165:1 3176:2 3177:2 3179:1 3186:1 3206:1 3224:2 3244:1 3255:1 3265:1 3266:1 3267:1 3312:1 3319:1 3322:2 3341:2 3348:2 3359:2 3366:1 3367:1 3371:1 3380:3 3381:1 3389:1 3406:1 3410:1 3413:3 3415:2 3420:1 3423:3 3429:1 3443:1 3451:1 3454:1 3493:1 3497:3 3507:1 3510:5 3511:1 3516:1 3520:2 3539:2 3547:1 3560:1 3584:2 3590:1 3603:1 3612:2 3645:13 3648:29 3651:1 3652:3 3653:1 3663:2 3666:1 3678:1 3681:1 3682:1 3691:4 3692:1 3695:1 3698:1 3706:7 3736:2 3741:1 3753:1 3756:1 3784:2 3789:1 3792:1 3793:1 3794:1 3836:1 3846:3 3851:1 3860:1 3867:1 3897:3 3926:1 3958:1 3962:1 4045:1 4067:3 4070:1 4097:1 4101:1 4119:1 4142:1 4146:1 4147:1 4157:1 4161:3 4162:1 4171:1 4179:3 4193:1 4201:1 4211:1 4224:1 4226:2 4251:2 4279:1 4328:1 4334:1 4355:1 4359:1 4371:1 4375:1 4381:1 4383:1 4384:1 4395:1 4396:1 4402:1 4411:1 4412:1 4444:1 4448:1 4459:1 4474:1 4479:1 4488:1 4492:1 4495:1 4517:1 4531:1 4539:1 4555:1 4564:1 4575:1 4580:1 4582:1 4601:1 4626:1 4643:3 4645:2 4646:1 4651:2 4654:2 4722:2 4724:1 4755:1 4762:1 4767:1 4773:1 4780:3 4795:1 4803:1 4809:1 4813:1 4815:2 4820:2 4830:2 4843:1 4854:1 4855:1 4857:1 4859:1 4867:3 4885:1 4886:1 4887:1 4914:1 4920:28 4922:2 4927:1 4931:1 4947:1 4955:1 4985:1 4992:1 5008:1 5015:2 5019:4 5020:2 5032:2 5039:1 5047:1 5054:5 5058:5 5059:2 5076:2 5119:1 5125:1 5134:1 5153:1 5163:1 5170:3 5178:1 5190:1 5194:1 5232:1 5233:1 5235:1 5237:2 5240:1 5241:1 5247:1 5254:1 5272:1 5282:1 5295:1 5298:1 5299:2 5300:1 5302:3 5307:1 5308:3 5324:1 5348:1 5371:3 5402:2 5404:1 5408:1 5416:1 5428:1 5435:2 5437:28 5444:1 5453:1 5456:1 5459:4 5465:1 5471:1 5473:1 5483:1 5486:1 5492:1 5555:2 5566:6 5587:1 5588:1 5598:1 5625:1 5638:3 5655:2 5662:2 5663:1 5672:2 5676:2 5679:1 5687:1 5712:1 5731:7 5738:1 5760:2 5832:5 5843:1 5850:1 5869:1 5879:5 5885:1 5913:1 5924:1 5960:1 5967:1 5969:2 5973:2 5974:1 5980:1 5983:3 5995:1 6004:1 6005:3 6017:1 6043:1 6049:1 6075:2 6078:2 6096:14 6097:2 6112:2 6115:1 6140:5 6149:2 6158:2 6187:2 6191:1 6207:1 6253:4 6254:1 6257:3 6277:4 6278:4 6279:2 6282:1 6285:5 6291:1 6292:2 6293:3 6294:1 6303:1 6309:2 6312:5 6315:3 6316:1 6326:1 6358:1 6407:1 6411:2 6430:1 6483:1 6495:1 6506:1 6528:1 6561:1 6580:1 6610:1 6622:1 6623:2 6628:1 6655:1 6679:1 6683:1 6684:1 6695:1 6698:2 6738:3 6739:1 6759:1 6787:1 6799:1 6801:2 6803:1 6807:1 6832:1 6835:1 6843:1 6859:1 6861:1 6867:3 6870:1 6942:1 6957:1 6968:1 6970:1 6972:1 6982:2 6983:1 6991:1 6996:1 7008:1 7010:1 7012:1 7036:2 7038:2 7046:1 7053:1 7061:2 7062:6 7065:1 7070:1 7072:1 7076:1 7083:1 7086:1 7119:2 7130:1 7138:1 7140:1 7164:1 7167:1 7205:1 7213:1 7225:2 7243:1 7250:1 7252:2 7264:2 7289:9 7295:3 7366:1 7377:1 7383:1 7397:1 7421:1 7422:1 7423:1 7432:3 7434:1 7451:1 7455:1 7494:1 7496:1 7525:1 7532:1 7537:1 7561:2 7567:2 7580:2 7583:1 7589:1 7591:1 7599:1 7603:1 7604:2 7607:1 7630:1 7635:1 7656:1 7665:1 7684:1 7690:1 7707:1 7708:2 7709:1 7715:1 7716:1 7718:1 7721:2 7722:1 7725:1 7727:1 7728:1 7729:3 7734:1 7736:1 7739:2 7741:2 7742:1 7748:1 7764:1 7782:1 7805:1 7822:1 7825:1 7840:1 7847:1 7852:3 7857:2 7860:1 7871:2 7880:1 7905:1 7937:2 7945:1 7965:1 7966:1 7974:1 7989:5 7995:1 8002:1 8004:4 8006:1 8007:1 8008:1 8009:2 8014:4 8015:2 8016:1 8017:1 8019:3 8020:7 8021:1 8030:1 8034:1 8054:1 8077:1 8082:1 8085:2 8125:1 8136:1 8176:1 8185:2 8186:1 8200:3 8203:3 8224:1 8243:1 8257:1 8260:1 8284:1 8293:1 8297:1 8308:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:2 8349:1 8370:2 8377:1 8393:2 8421:1 8427:1 8446:1 8449:1 8481:1 8489:1 8493:1 8496:1 8501:3 8524:1 8564:2 8566:1 8570:1 8577:1 8602:1 8617:1 8648:1 8661:1 8695:2 8709:1 8714:1 8731:1 8738:1 8751:1 8772:1 8842:1 8845:1 8849:1 8854:1 8866:1 8880:1 8883:6 8905:1 8940:1 8943:1 8946:1 8955:1 8960:1 8966:2 8975:1 8978:2 8996:1 9007:1 9012:1 9026:1 9033:1 9052:2 9060:1 9090:1 9113:1 9122:1 9123:2 9126:1 9134:1 9138:1 9143:1 9146:1 9153:1 9194:1 9205:1 9216:1 9217:2 9231:1 9253:1 9278:1 9282:2 9306:1 9307:1 9325:1 9328:1 9333:1 9337:1 9338:6 9372:6 9374:1 9381:1 9394:1 9426:1 9428:2 9433:1 9437:1 9446:1 9470:1 9484:1 9492:1 9495:1 9499:1 9526:4 9529:1 9577:1 9586:1 9588:1 9612:3 9619:1 9628:10 9629:10 9637:1 9655:1 9656:1 9657:5 9661:1 9688:3 9694:3 9695:1 9702:43 9707:1 9708:1 9711:2 9719:1 9720:1 9723:1 9733:13 9738:4 9744:1 9754:1 9758:1 9761:1 9780:1 9781:1 9787:2 9793:2 9803:1 9813:1 9849:4 9866:2 9870:1 9885:1 9895:1 9924:1 9926:2 9942:3 9957:1 9963:1 9967:3 9968:1 9975:1 9978:1 9999:5 10011:1 10023:1 10058:1 10063:2 10099:2 10103:1 10161:1 10167:1 10171:1 10175:1 10209:1 10213:1 10223:1 10235:2 10261:2 10284:1 10286:1 10298:1 10313:1 10314:1 10321:29 10331:1 10333:1 10338:1 10342:1 10349:1 10356:1 10359:12 10360:4 10376:1 10378:2 10399:1 10401:1 10406:1 10407:1 10411:1 10412:2 10431:1 10444:1 10452:1 10470:36 10488:1 10520:1 10559:1 10598:1 10599:1 10612:1 10624:1 10669:1 10683:1 10686:2 10695:1 10697:1 10701:2 10703:1 10704:1 10706:1 10707:1 10711:1 10716:1 10717:5 10718:1 10736:1 10744:1 10749:2 10772:3 10773:1 10778:1 10789:2 10791:1 10792:1 10796:1 10798:1 10807:2 10808:2 10812:1 10813:1 10826:1 10848:1 10850:1 10864:1 10878:1 10884:1 10895:1 10900:2 10911:3 10937:1 10979:1 10994:1 11002:2 11075:3 11078:1 11081:1 11109:2 11129:1 11163:2 11165:1 11169:1 11179:1 11183:2 11207:1 11212:4 11226:1 11230:1 11231:1 11233:3 11238:1 11247:3 11258:1 11268:1 11270:1 11272:1 11320:1 11325:1 11334:2 11340:1 11343:1 11347:2 11378:1 11382:5 11391:4 11402:1 11404:1 11422:1 11457:1 11489:4 11522:3 11556:1 11557:4 11561:2 11564:1 11569:1 11571:3 11572:1 11573:1 11575:1 11583:1 11585:2 11587:2 11598:1 11617:1 11619:1 11625:1 11628:1 11636:1 11640:1 11641:1 11642:2 11643:1 11645:1 11654:1 11668:1 11675:1 11678:3 11690:7 11694:1 11697:2 11707:2 11718:2 11720:1 11723:1 11739:2 11744:1 11745:1 11755:1 11770:1 11771:1 11774:1 11776:1 11791:1 11793:1 11795:2 11804:1 11815:1 11840:1 11851:1 11861:1 11864:1 11865:1 11872:2 11876:2 11882:1 11885:1 11899:1 11902:1 11903:1 11912:1 11917:1 11918:1 11919:6 11930:1 11931:2 11932:9 11936:1 11947:1 11955:1 11959:1 11961:2 11966:1 11969:1 11976:1 11978:1 11982:3 11985:1 11988:1 11992:1 12004:1 12014:1 12033:1 12052:1 12056:1 12057:1 12073:1 12076:1 12081:1 12082:1 12083:2 12086:1 12096:1 12104:1 12111:1 12112:1 12113:1 12120:1 12131:1 12146:1 12147:1 12186:1 12191:1 12214:1 12221:6 12229:1 12230:1 12231:1 12237:3 12239:4 12248:1 12255:1 12269:1 12275:1 12282:1 12301:1 12324:1 12339:1 12359:1 12361:1 12391:28 12401:1 12407:1 12420:1 12435:1 12446:1 12451:1 12458:1 12471:1 12473:1 12479:1 12490:2 12493:1 12497:1 12508:1 12520:1 12521:1 12538:1 12540:4 12547:3 12552:1 12561:2 12570:2 12580:1 12592:1 12608:1 12618:2 12619:2 12630:1 12641:1 12643:2 12651:1 12654:2 12669:4 12673:5 12692:3 12694:1 12734:5 12756:1 12757:1 12760:1 12774:1 12777:1 12794:1 12821:1 12824:2 12829:1 12837:1 12844:1 12848:1 12850:1 12867:6 12879:1 12881:1 12898:1 12936:1 12958:1 12977:2 12981:1 12988:1 13013:4 13028:1 13040:2 13049:1 13051:1 13052:1 13058:1 13079:1 13080:1 13089:1 13096:1 13112:1 13113:5 13128:1 13154:3 13175:1 13179:1 13187:1 13213:1 13234:1 13241:1 13258:4 13267:1 13282:1 13283:5 13303:1 13316:1 13325:2 13357:2 13377:1 13384:1 13385:2 13411:1 13412:4 13415:1 13418:2 13420:6 13429:1 13443:1 13454:1 13464:2 13468:1 13471:1 13474:1 13483:1 13487:1 13493:7 13498:1 13505:1 13509:1 13516:1 13517:2 13537:1 13550:1 13568:1 13588:1 13601:1 13632:6 13633:1 13647:1 13648:1 13657:1 13669:2 13673:1 13682:1 13686:2 13690:3 13694:3 13704:1 13710:1 13721:4 13737:1 13749:1 13761:1 13765:2 13767:1 13768:1 13777:1 13793:1 13798:8 13803:1 13808:1 13823:1 13824:3 13826:4 13828:1 13837:1 13845:2 13849:1 13859:1 13880:1 13881:1 13891:6 13895:1 13898:1 13900:1 13901:1 13910:1 13919:1 13921:2 13931:1 13942:1 13972:2 13998:1 14008:1 14009:1 14015:1 14029:1 14032:3 14036:1 14042:1 14070:2 14071:1 14092:1 14093:1 14095:2 14105:2 14107:1 14114:1 14115:1 14116:3 14119:1 14122:1 14124:1 14128:1 14134:1 14145:1 14146:4 14149:1 14152:1 14154:1 14162:1 14186:1 14189:3 14191:1 14218:1 14235:5 14263:1 14265:1 14280:1 14286:1 14292:1 14296:1 14302:1 14308:1 14309:1 14322:7 14337:2 14340:2 14342:1 14376:1 14380:1 14406:1 14410:1 14411:1 14416:1 14430:1 14448:2 14488:1 14491:6 14515:1 14519:1 14523:1 14528:1 14533:3 14550:1 14554:1 14555:1 14559:1 14564:1 14567:5 14568:2 14571:2 14577:1 14580:4 14586:1 14611:1 14614:1 14621:2 14628:1 14632:2 14636:1 14638:5 14642:1 14643:1 14654:1 14666:1 14667:1 14675:2 14686:1 14716:1 14727:3 14735:1 14737:1 14742:4 14744:1 14772:1 14787:1 14791:3 14803:1 14840:1 14844:1 14854:1 14869:1 14910:1 14913:1 14940:1 14941:2 14960:1 14984:1 15012:1 15014:1 15030:1 15037:3 15046:1 15060:4 15079:1 15083:1 15086:1 15095:1 15123:1 15132:1 15140:1 15150:1 15151:1 15152:3 15160:1 15161:2 15162:1 15169:1 15185:1 15197:1 15205:1 15210:1 15220:1 15222:1 15250:1 15269:1 15278:1 15292:1 15312:2 15315:5 15326:1 15345:1 15383:1 15385:2 15400:1 15414:1 15448:1 15460:1 15472:1 15487:1 15502:3 15519:1 15525:1 15526:1 15552:1 15574:1 15577:1 15584:1 15587:1 15595:1 15598:1 15675:1 15705:1 15707:1 15746:1 15747:1 15776:3 15778:29 15782:1 15786:1 15794:1 15797:1 15800:4 15803:1 15813:1 15844:6 15855:1 15864:2 15868:1 15885:1 15895:1 15900:1 15910:1 15912:1 15915:1 15942:1 15943:1 15944:1 15981:1 16001:1 16006:2 16013:1 16017:1 16022:1 16083:1 16099:2 16114:1 16134:1 16142:2 16147:1 16149:1 16173:1 16190:1 16196:1 16198:1 16201:1 16213:1 16217:1 16236:1 16241:1 16253:1 16269:1 16285:1 16293:1 16294:1 16299:1 16303:1 16304:1 16320:1 16327:12 16332:2 16354:1 16357:1 16365:2 16372:1 16375:1 16394:1 16456:1 16460:1 16475:1 16490:1 16499:1 16502:2 16505:2 16510:4 16516:5 16528:1 16535:1 16559:1 16594:1 16609:11 16613:1 16622:1 16643:1 16720:1 16729:1 16731:1 16732:2 16742:1 16775:1 16792:3 16797:4 16803:2 16823:1 16831:1 16835:1 16837:1 16843:1 16854:1 16862:1 16869:2 16874:2 16882:1 16889:1 16897:1 16898:1 16914:2 16918:1 16929:2 16964:1 16968:2 16970:2 16971:1 16973:1 16975:1 16977:2 16978:1 16979:10 16980:1 16981:1 16983:2 17002:1 17003:2 17004:1 17008:1 17009:1 17013:5 17022:1 17026:1 17033:2 17064:1 17075:1 17076:1 17082:1 17100:1 17114:1 17120:1 17125:1 17152:1 17154:1 17161:2 17172:10 17175:1 17181:2 17193:1 17204:1 17214:1 17217:1 17230:1 17234:1 17243:1 17246:1 17273:1 17276:1 17278:2 17286:4 17303:1 17309:1 17315:3 17319:1 17320:2 17333:11 17336:5 17417:2 17426:2 17438:1 17449:4 17450:1 17481:1 17516:1 17545:1 17547:3 17562:1 17564:2 17571:1 17598:1 17601:1 17607:2 17623:1 17629:1 17639:1 17675:4 17679:1 17723:1 17762:1 17769:1 17784:1 17792:2 17794:1 17798:1 17806:2 17814:2 17817:3 17835:2 17836:1 17849:1 17850:2 17858:2 17869:1 17903:1 17918:1 17921:1 17924:1 17925:1 17941:1 17942:1 17943:1 17945:1 17955:1 17957:2 17972:1 17978:2 17981:1 17984:1 17992:1 17993:1 17997:1 17999:1 18000:1 18005:1 18011:1 18013:1 18016:1 18030:1 18032:1 18037:1 18039:1 18048:1 18057:2 18073:1 18080:1 18092:29 18101:3 18105:1 18106:1 18110:1 18120:1 18127:1 18128:1 18137:1 18184:1 18198:1 18200:1 18203:5 18214:1 18215:1 18221:2 18244:1 18249:1 18270:3 18274:1 18276:1 18277:1 18290:1 18297:1 18298:1 18320:2 18325:1 18339:1 18342:1 18345:1 18390:1 18392:1 18396:1 18442:1 18463:2 18470:2 18474:1 18485:1 18506:1 18535:1 18549:1 18559:1 18560:1 18561:2 18563:2 18574:1 18582:1 18593:1 18600:2 18601:1 18603:1 18608:7 18614:1 18645:3 18651:1 18673:1 18676:1 18696:1 18703:1 18708:2 18712:1 18715:1 18732:1 18747:1 18752:1 18767:2 18769:1 18779:2 18781:3 18793:1 18794:1 18811:1 18823:1 18867:1 18870:1 18876:1 18898:2 18953:2 18954:1 18959:1 18968:1 18993:2 18997:1 19019:1 19029:1 19050:1 19060:1 19064:2 19067:1 19083:1 19087:2 19096:1 19097:1 19120:1 19141:1 19154:1 19169:1 19175:1 19191:1 19192:3 19193:3 19204:1 19225:1 19235:1 19263:5 19269:2 19276:1 19287:1 19303:1 19310:1 19336:1 19361:1 19397:1 19406:1 19416:1 19428:1 19437:2 19452:1 19458:4 19469:1 19471:1 19475:1 19490:5 19496:3 19500:1 19513:4 19514:1 19518:1 19525:1 19526:1 19529:1 19532:1 19538:3 19548:1 19567:1 19602:1 19605:1 19615:4 19616:1 19620:1 19641:2 19645:4 19649:2 19658:1 19664:1 19670:1 19672:1 19679:1 19689:1 19691:3 19703:1 19708:2 19772:1 19775:1 19787:1 19796:1 19806:1 19810:12 19814:2 19820:1 19851:3 19854:3 19858:1 19865:2 19868:1 19894:2 19904:2 19905:1 19907:1 19908:2 19932:10 19947:1 19961:1 19976:3 20027:2 20034:1 20046:2 20061:1 20065:1 20074:1 20076:1 20078:1 20091:2 20109:4 20110:2 20115:3 20117:1 20125:3 20126:1 20127:1 20130:1 20153:1 20168:1 20174:1 20201:2 20221:1 20231:1 20232:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20295:1 20296:1 20318:1 20324:1 20325:1 20350:1 20355:1 20369:2 20383:1 20390:1 20431:1 20444:1 20445:1 20446:2 20455:1 20499:1 20522:1 20537:1 20540:2 20556:2 20566:1 20568:1 20572:1 20588:3 20593:1 20604:1 20606:6 20607:1 20608:1 20617:1 20643:1 20646:1 20649:1 20654:1 20679:2 20680:1 20689:1 20690:1 20691:2 20727:1 20746:1 20751:3 20754:1 20762:1 20781:1 20783:1 20785:2 20796:1 20799:2 20816:1 20818:1 20865:1 20878:1 20885:1 20900:1 20917:1 20918:1 20941:39 20948:1 20949:2 20974:1 20978:1 20997:1 21000:1 21003:4 21044:1 21064:1 21071:1 21072:1 21081:1 21083:1 21097:1 21101:1 21116:1 21124:3 21130:2 21145:2 21149:1 21170:1 21174:2 21204:1 21209:1 21214:1 21215:1 21235:1 21261:1 21263:1 21284:1 21292:1 21299:1 21316:1 21318:2 21322:2 21323:1 21324:1 21337:1 21371:1 21376:1 21423:1 21443:1 21445:1 21473:1 21477:1 21500:1 21503:1 21508:1 21512:1 21513:1 21522:2 21524:1 21530:1 21540:1 21566:1 21586:1 21591:1 21592:1 21593:1 21597:1 21602:1 21603:1 21608:2 21612:2 21634:1 21643:1 21686:2 21696:1 21701:1 21704:2 21713:2 21724:1 21754:1 21788:1 21806:1 21809:1 21819:1 21823:4 21827:1 21829:2 21831:1 21843:1 21864:1 21866:1 21872:2 21874:1 21875:2 21886:1 21892:1 21899:1 21917:2 21925:1 21939:2 21943:2 21975:4 21987:4 22008:3 22009:1 22032:1 22037:1 22067:1 22076:1 22079:5 22083:1 22084:2 22123:3 22143:2 22169:1 22173:1 22177:2 22181:1 22186:2 22190:1 22207:1 22247:1 22251:2 22298:1 22300:4 22304:1 22305:2 22308:1 22315:1 22327:1 22345:1 22347:1 22362:1 22386:1 22388:1 22406:1 22424:1 22429:4 22490:1 22493:2 22497:1 22516:1 22530:2 22547:1 22572:1 22584:1 22628:8 22643:1 22650:1 22666:1 22668:1 22677:2 22715:1 22720:1 22727:4 22754:1 22764:1 22781:1 22783:1 22791:1 22800:1 22806:2 22809:1 22816:1 22824:1 22839:1 22866:1 22870:1 22883:1917 22893:1 22899:1 22909:2 22923:1 22944:1 22966:1 22969:1 22984:1 23031:3 23039:1 23043:3 23044:1 23079:1 23098:1 23113:1 23119:1 23129:1 23139:1 23164:1 23171:1 23189:1 23193:2 23202:1 23223:1 23270:1 23279:1 23293:1 23304:1 23320:1 23321:1 23348:1 23365:1 23371:1 23411:1 23427:1 23456:1 23457:1 23468:2 23470:1 23474:1 23482:1 23492:1 23508:1 23520:1 23521:3 23523:2 23543:1 23549:1 23565:1 23603:1 23607:4 23640:5 23647:1 23653:1 23664:1 23698:1 23706:1 23708:1 23712:1 23715:1 23718:1 23735:1 23763:1 23766:1 23773:1 23784:1 23787:1 23789:1 23800:1 23805:1 23812:1 23821:1 23833:5 23834:4 23874:1 23880:4 23914:2 23922:1 23932:1 23934:1 23947:21 23958:1 23978:1 23979:2 24012:2 24013:1 24019:1 24020:1 24044:1 24047:4 24049:1 24052:1 24064:2 24066:1 24079:1 24092:1 24097:2 24105:3 24106:1 24118:1 24154:2 24185:1 24191:1 24197:1 24209:4 24217:1 24233:1 24239:2 24240:1 24255:1 24268:1 24271:1 24289:2 24292:1 24314:1 24327:1 24332:1 24342:1 24345:2 24347:1 24364:1 24369:1 24376:4 24385:1 24405:1 24424:1 24449:1 24450:1 24474:1 24479:1 24480:3 24482:2 24483:1 24491:1 24511:1 24518:2 24534:1 24539:1 24553:1 24566:1 24591:2 24592:6 24598:1 24601:1 24604:1 24607:1 24612:1 24620:1 24630:1 24640:1 24643:1 24651:1 24653:2 24656:3 24658:5 24663:1 24674:1 24680:2 24681:5 24682:1 24683:1 24699:1 24700:1 24704:1 24708:5 24728:2 24729:1 24753:2 24754:1 24762:3 24774:1 24781:3 24792:1 24794:1 24808:2 24813:1 24820:1 24826:1 24850:1 24853:1 24869:1 24883:5 24894:2 24918:1 24919:1 24924:1 24945:1 24978:1 25000:1 25031:2 25047:1 25052:1 25053:1 25058:1 25067:1 25076:1 25080:1 25114:5 25122:1 25143:1 25144:2 25157:1 25161:2 25163:1 25179:3 25217:1 25240:1 25244:1 25269:1 25285:1 25299:1 25300:2 25303:1 25326:1 25334:2 25357:1 25369:1 25373:1 25379:1 25386:1 25392:1 25407:2 25410:2 25417:1 25427:2 25428:1 25431:2 25448:1 25456:1 25461:1 25468:1 25481:1 25486:1 25491:1 25498:2 25502:2 25505:1 25511:3 25526:1 25527:1 25529:1 25541:1 25543:1 25553:2 25554:2 25568:1 25572:1 25580:1 25582:2 25586:1 25590:3 25600:2 25602:1 25605:1 25608:3 25609:2 25623:2 25630:1 25632:1 25637:4 25690:1 25699:1 25720:1 25721:4 25725:1 25733:2 25738:1 25781:1 25782:1 25786:2 25793:3 25807:1 25811:1 25815:1 25824:2 25841:1 25846:1 25852:1 25859:2 25867:1 25879:1 25903:1 25907:1 25917:1 25928:1 25934:1 25943:1 25948:1 25952:1 25973:1 25994:1 26000:1 26005:1 26011:1 26014:1 26018:4 26031:2 26052:1 26062:3 26070:1 26091:1 26099:1 26102:2 26107:1 26119:1 26120:1 26124:1 26138:1 26151:1 26153:1 26155:1 26156:3 26162:1 26167:1 26183:1 26191:1 26203:2 26211:1 26212:1 26214:1 26215:2 26216:2 26228:1 26236:1 26260:1 26261:1 26275:1 26279:1 26285:1 26306:1 26313:1 26324:2 26327:2 26337:3 26344:1 26345:1 26346:1 26347:1 26361:1 26362:2 26383:1 26385:4 26394:1 26407:1 26415:1 26424:1 26425:1 26426:1 26438:3 26444:1 26453:4 26458:1 26459:1 26460:1 26475:1 26496:1 26505:1 26508:5 26552:1 26555:1 26589:1 26590:1 26593:1 26602:5 26605:1 26608:1 26610:1 26612:3 26614:1 26628:3 26642:1 26644:1 26651:1 26667:1 26668:8 26671:1 26679:1 26694:1 26740:1 26743:1 26744:1 26777:2 26779:4 26782:2 26787:1 26794:1 26795:1 26797:2 26808:2 26809:2 26815:1 26818:1 26820:1 26826:4 26827:1 26828:4 26842:1 26843:1 26844:1 26854:1 26874:1 26907:1 26914:1 26930:1 26949:2 26984:2 26995:2 26999:1 27004:4 27029:2 27051:1 27072:1 27087:3 27092:1 27097:1 27099:1 27102:1 27103:1 27114:1 27127:3 27138:1 27149:1 27153:2 27171:1 27183:1 27203:1 27213:2 27243:1 27251:2 27259:1 27260:12 27283:1 27287:2 27294:1 27331:10 27333:2 27339:1 27343:1 27354:1 27393:1 27396:4 27398:2 27401:1 27412:2 27415:2 27447:1 27460:7 27470:1 27478:1 27484:1 27500:3 27501:1 27508:1 27522:1 27526:1 27527:1 27542:1 27544:2 27573:1 27591:1 27594:1 27599:1 27601:1 27603:2 27619:6 27633:2 27651:1 27653:1 27677:3 27703:1 27723:1 27731:1 27752:1 27760:1 27767:1 27776:1 27779:1 27782:1 27787:28 27804:1 27808:1 27810:2 27813:3 27814:1 27816:1 27817:2 27819:1 27825:1 27854:2 27859:3 27860:1 27862:1 27866:1 27878:1 27879:1 27889:1 27920:1 27922:1 27925:1 27957:1 27963:1 27973:5 27974:1 27983:1 27987:2 28000:2 28007:1 28011:4 28017:1 28038:1 28051:1 28052:1 28081:1 28154:1 28160:1 28179:3 28191:1 28206:1 28263:1 28276:1 28278:1 28279:1 28287:1 28297:1 28298:3 28308:1 28310:1 28313:3 28317:1 28318:2 28348:1 28370:29 28384:1 28398:3 28399:1 28409:1 28433:1 28436:1 28460:1 28464:1 28470:1 28472:2 28473:1 28482:2 28483:1 28489:6 28523:1 28528:1 28541:1 28560:1 28567:1 28572:1 28577:3 28582:2 28587:1 28612:1 28621:1 28639:1 28645:1 28647:2 28650:2 28686:1 28693:1 28752:1 28786:1 28811:1 28812:1 28814:1 28815:1 28817:2 28826:1 28831:1 28833:1 28852:1 28908:1 28913:1 28929:1 28932:1 28939:2 28940:1 28949:1 28974:2 28983:2 28993:1 28996:2 29004:1 29014:1 29016:1 29020:1 29032:1 29041:3 29087:1 29126:1 29133:2 29141:1 29149:1 29169:1 29170:3 29174:1 29179:1 29190:2 29192:1 29196:1 29215:1 29233:1 29241:1 29251:1 29258:1 29271:1 29297:1 29320:1 29328:1 29330:1 29334:1 29367:2 29398:1 29417:1 29419:3 29426:2 29451:1 29455:2 29464:1 29480:1 29486:2 29493:1 29516:2 29527:1 29551:1 29554:1 29557:3 29564:2 29566:1 29568:2 29583:2 29584:2 29587:3 29591:1 29592:1 29604:1 29634:3 29635:1 29688:8 29695:1 29701:1 29741:1 29749:1 29752:1 29756:1 29760:1 29761:1 29768:1 29775:1 29816:1 29822:1 29827:1 29840:1 29845:4 29857:1 29887:1 29888:1 29901:2 29911:1 29939:1 29952:1 29954:1 29957:1 29962:3 29969:1 29972:1 29995:1 30004:1 30015:1 30023:1 30035:1 30041:1 30079:3 30083:1 30084:2 30092:1 30093:1 30095:2 30099:5 30102:1 30103:1 30105:2 30119:1 30134:1 30144:2 30165:3 30192:1 30198:2 30199:3 30213:1 30215:1 30235:2 30238:1 30248:1 30253:1 30261:4 30263:1 30283:1 30284:1 30288:1 30290:1 30294:1 30295:1 30299:1 30307:1 30319:1 30320:1 30329:1 30330:1 30331:1 30350:1 30364:1 30370:1 30424:1 30434:1 30454:1 30478:1 30482:3 30483:1 30489:1 30493:1 30518:1 30535:4 30537:2 30538:2 30541:1 30552:2 30553:1 30601:1 30613:1 30617:2 30641:1 30677:1 30679:1 30688:1 30743:1 30777:1 30783:1 30787:1 30788:1 30789:2 30790:6 30794:1 30806:1 30814:5 30817:3 30823:1 30855:2 30857:1 30861:1 30907:1 30910:1 30912:2 30920:2 30931:1 30944:2 30952:1 30960:2 30963:1 30970:1 30972:1 30981:4 30987:1 31002:1 31005:1 31015:1 31020:1 31026:1 31047:1 31051:4 31053:1 31055:2 31057:1 31059:1 31089:1 31092:1 31093:1 31095:1 31112:2 31134:1 31142:1 31148:1 31151:1 31168:3 31177:1 31178:1 31181:1 31188:1 31201:1 31210:1 31223:1 31226:1 31235:2 31255:2 31264:4 31265:2 31276:1 31283:1 31286:1 31296:4 31317:2 31329:2 31334:3 31369:1 31376:1 31377:5 31384:1 31387:1 31404:1 31411:1 31413:12 31425:2 31444:2 31465:2 31478:1 31486:1 31550:1 31563:1 31569:1 31574:2 31578:3 31580:1 31588:1 31595:1 31603:1 31610:1 31612:1 31641:1 31648:1 31660:2 31663:1 31701:1 31706:1 31708:1 31712:1 31725:1 31737:1 31747:1 31751:1 31753:2 31767:1 31768:1 31784:1 31785:1 31787:1 31797:1 31805:1 31808:2 31834:3 31848:1 31853:1 31866:2 31874:1 31882:1 31885:1 31890:1 31891:1 31893:1 31918:1 31919:1 31929:1 31930:4 31933:1 31946:2 31963:2 31964:1 31968:10 31969:1 31972:1 31993:2 32010:1 32022:1 32025:1 32036:1 32057:1 32066:5 32074:1 32090:1 32099:1 32106:1 32112:1 32115:1 32117:1 32136:1 32140:1 32153:1 32208:1 32219:2 32259:1 32285:3 32307:1 32311:1 32317:1 32319:1 32326:1 32329:1 32376:2 32405:1 32406:1 32413:1 32425:1 32436:1 32459:1 32461:2 32491:1 32492:1 32493:2 32505:2 32515:1 32532:1 32553:2 32555:1 32559:1 32574:1 32596:1 32606:1 32612:1 32624:1 32629:1 32636:1 32683:2 32691:1 32700:1 32725:2 32726:1 32732:1 32745:1 32749:2 32750:6 32774:3 32779:1 32785:2 32787:1 32801:4 32813:1 32820:1 32832:3 32846:1 32848:2 32879:1 32890:5 32891:1 32893:1 32896:2 32908:1 32909:1 32913:1 32917:2 32924:1 32929:3 32941:3 32950:2 32955:1 32958:1 32965:1 32974:1 32984:1 32997:1 33027:1 33031:1 33053:1 33057:2 33066:1 33069:2 33080:1 33085:1 33089:1 33092:1 33094:3 33098:1 33100:1 33112:1 33118:1 33128:4 33133:2 33137:1 33141:2 33142:1 33144:2 33157:2 33168:1 33180:1 33182:1 33183:2 33218:2 33222:1 33272:1 33276:1 33284:1 33287:1 33296:3 33297:1 33309:2 33330:1 33335:1 33346:1 33352:7 33388:1 33389:1 33404:1 33413:1 33422:1 33428:2 33439:1 33440:1 33444:1 33446:1 33449:1 33461:3 33467:1 33498:1 33502:1 33503:1 33504:1 33505:3 33512:1 33530:1 33533:3 33537:2 33543:3 33545:1 33552:1 33553:2 33555:1 33556:2 33563:3 33579:2 33591:2 33592:1 33595:3 33609:1 33616:1 33620:1 33623:1 33637:1 33663:7 33669:1 33680:4 33716:1 33720:1 33730:1 33732:1 33734:3 33743:1 33760:1 33766:1 33769:1 33771:1 33794:2 33795:1 33819:1 33820:1 33824:1 33861:1 33865:1 33880:2 33902:1 33910:1 33921:1 33928:1 33930:1 33997:1 34003:1 34040:1 34052:1 34056:3 34057:2 34062:1 34067:4 34071:3 34075:6 34076:1 34077:2 34080:1 34083:1 34085:3 34086:1 34099:1 34104:1 34133:1 34139:1 34144:1 34151:3 34157:1 34160:1 34174:1 34194:1 34197:1 34221:2 34246:2 34253:1 34283:1 34304:1 34306:1 34314:1 34321:1 34351:1 34353:1 34363:1 34364:1 34367:1 34371:1 34373:1 34385:2 34403:1 34407:1 34410:1 34413:3 34423:1 34435:13 34437:1 34440:1 34445:1 34470:1 34478:2 34497:6 34526:1 34566:1 34570:1 34589:1 34596:4 34615:1 34619:1 34627:1 34629:1 34630:1 34634:9 34643:3 34654:1 34659:1 34662:1 34673:1 34674:1 34682:1 34689:1 34691:11 34701:1 34749:1 34757:2 34761:1 34782:1 34794:1 34804:2 34834:1 34862:1 34878:2 34924:1 34936:1 34968:1 34989:1 34996:36 34997:1 35022:1 35026:4 35031:1 35039:1 35041:5 35042:2 35056:1 35094:1 35098:1 35124:3 35128:8 35129:1 35135:2 35141:1 35149:1 35152:1 35157:1 35164:1 35167:1 35177:1 35184:1 35201:1 35207:2 35253:1 35265:1 35281:2 35289:2 35310:1 35311:1 35326:1 35342:1 35354:4 35382:2 35395:2 35410:1 35456:1 35464:3 35468:1 35470:1 35473:1 35488:1 35499:1 35503:2 35517:2 35520:1 35526:2 35539:1 35582:1 35585:1 35589:2 35592:1 35602:2 35614:1 35625:2 35634:1 35635:1 35636:1 35648:1 35656:1 35661:1 35664:1 35665:1 35677:1 35681:2 35692:1 35696:1 35700:1 35714:1 35721:1 35734:1 35746:1 35748:4 35749:1 35753:2 35757:3 35785:1 35789:3 35805:6 35831:3 35836:1 35837:2 35838:2 35845:1 35850:29 35862:2 35888:1 35901:1 35925:1 35939:1 35953:1 35957:1 35959:2 35965:2 35966:4 35989:1 36007:1 36010:1 36011:1 36028:2 36033:1 36059:1 36065:1 36072:1 36075:2 36091:1 2 9:1 10:1 19:1 31:2 32:1 33:1 55:1 65:1 68:1 69:1 73:1 76:1 86:1 95:1 104:3 106:2 107:1 122:1 128:1 140:1 166:2 177:1 191:1 196:2 200:2 207:1 211:1 221:1 235:1 239:2 251:1 255:1 256:1 271:1 278:2 297:2 302:5 303:1 309:1 322:2 323:1 328:1 330:1 365:1 372:1 412:1 414:3 418:1 433:1 435:1 442:1 450:1 452:1 454:1 460:1 461:1 478:2 498:2 503:1 515:1 520:2 526:1 539:1 549:1 553:1 555:2 568:2 583:1 601:3 607:1 610:1 621:1 641:1 650:1 659:1 662:1 671:1 672:1 674:1 684:1 690:1 720:1 750:1 751:3 755:2 759:2 761:1 766:1 795:6 820:30 825:3 831:1 833:1 835:1 854:1 861:1 881:1 886:3 889:1 919:2 931:1 935:2 941:2 955:2 964:1 999:2 1019:2 1022:1 1024:3 1028:2 1032:1 1034:1 1035:3 1058:1 1082:3 1091:1 1102:2 1110:1 1124:1 1128:1 1135:3 1136:6 1140:2 1142:1 1150:5 1167:1 1176:4 1181:1 1194:2 1203:3 1206:6 1210:1 1212:2 1219:1 1226:2 1233:2 1234:3 1253:2 1256:1 1260:2 1270:3 1293:1 1301:2 1305:1 1308:1 1322:1 1326:4 1327:1 1385:2 1386:1 1403:1 1431:1 1442:1 1454:1 1459:3 1510:1 1537:1 1541:29 1550:1 1554:2 1555:2 1556:1 1564:3 1567:1 1583:1 1592:1 1595:2 1596:2 1603:1 1605:1 1610:1 1611:1 1613:1 1616:1 1617:2 1619:1 1623:1 1627:1 1632:1 1634:1 1638:1 1651:1 1652:1 1682:1 1705:1 1706:2 1740:3 1755:1 1757:1 1760:1 1763:1 1765:1 1771:2 1773:7 1792:1 1808:1 1809:1 1824:1 1836:3 1843:1 1847:1 1849:2 1861:1 1870:1 1888:1 1889:1 1891:3 1895:2 1897:9 1903:1 1904:1 1910:1 1911:1 1915:1 1918:1 1925:1 1929:2 1930:1 1932:1 1960:3 1970:1 1990:1 1991:1 1997:3 2013:1 2014:1 2031:1 2036:1 2037:2 2043:1 2058:2 2067:1 2088:1 2095:1 2097:1 2098:7 2102:1 2105:1 2106:2 2123:1 2139:1 2145:1 2147:1 2158:2 2160:1 2164:3 2172:1 2175:1 2180:1 2196:1 2198:1 2199:1 2202:1 2218:1 2249:1 2260:1 2265:1 2269:1 2276:1 2279:1 2282:1 2292:1 2307:1 2312:1 2317:2 2320:2 2327:1 2328:1 2345:1 2348:1 2352:3 2355:1 2364:1 2368:1 2372:1 2376:2 2379:2 2390:1 2400:2 2406:2 2418:2 2420:1 2436:1 2446:1 2454:1 2455:1 2467:1 2486:5 2494:1 2508:1 2517:1 2522:2 2525:1 2546:1 2547:1 2557:1 2566:1 2598:1 2599:2 2604:1 2619:1 2624:1 2638:1 2642:1 2644:1 2652:1 2655:1 2665:1 2696:8 2721:1 2743:2 2746:1 2747:1 2783:1 2789:1 2817:1 2827:1 2848:1 2852:1 2857:1 2859:1 2861:2 2862:4 2865:1 2866:2 2867:2 2870:1 2872:5 2877:7 2881:3 2883:6 2887:3 2891:1 2895:1 2897:1 2900:1 2902:4 2906:3 2909:1 2910:1 2913:1 2918:1 2919:1 2920:1 2941:1 2942:1 2954:2 2955:1 2971:4 2974:1 2980:1 2999:2 3002:1 3004:1 3026:1 3027:1 3038:1 3042:1 3044:3 3045:3 3054:3 3057:1 3075:2 3076:4 3086:3 3087:1 3098:1 3100:1 3106:1 3116:3 3131:1 3133:1 3137:1 3145:1 3165:1 3176:2 3177:2 3179:1 3186:1 3206:1 3224:2 3244:1 3255:2 3265:1 3266:1 3267:1 3312:1 3319:1 3322:2 3341:2 3348:2 3359:2 3366:1 3367:1 3371:1 3380:3 3381:1 3388:1 3389:1 3406:1 3410:1 3413:3 3415:3 3420:1 3423:3 3429:1 3443:1 3451:1 3454:1 3493:1 3497:3 3507:2 3510:5 3511:1 3516:1 3520:2 3539:2 3547:1 3560:1 3584:2 3590:1 3603:1 3612:2 3645:14 3648:30 3651:1 3652:3 3653:1 3663:2 3666:1 3678:1 3681:1 3682:1 3691:4 3692:1 3695:1 3698:1 3706:7 3736:4 3741:2 3753:1 3756:1 3784:2 3789:1 3792:1 3793:1 3794:1 3836:2 3846:3 3851:1 3860:1 3867:1 3897:3 3926:1 3958:1 3962:1 4045:1 4067:3 4070:1 4097:1 4101:1 4119:1 4142:1 4146:1 4147:1 4157:1 4161:3 4162:1 4171:1 4179:3 4193:1 4201:1 4211:1 4224:1 4226:4 4251:2 4279:1 4328:1 4334:1 4355:1 4359:1 4371:1 4375:1 4381:1 4383:1 4384:1 4395:1 4396:1 4402:1 4411:1 4412:1 4444:1 4448:1 4459:1 4474:1 4479:1 4488:1 4492:1 4495:1 4517:2 4531:1 4539:1 4555:1 4564:1 4575:1 4580:1 4582:1 4601:1 4626:1 4643:3 4645:2 4646:1 4651:2 4654:2 4722:2 4724:1 4755:1 4762:1 4767:1 4773:1 4780:3 4795:1 4803:1 4809:1 4813:1 4815:2 4820:2 4830:2 4843:1 4854:1 4855:1 4857:1 4859:1 4867:3 4882:1 4885:1 4886:1 4887:1 4914:1 4920:29 4922:2 4927:1 4931:1 4947:1 4955:1 4985:1 4992:1 5008:1 5015:2 5019:4 5020:2 5032:2 5039:1 5047:1 5054:5 5058:5 5059:2 5075:1 5076:2 5119:1 5125:1 5134:1 5153:1 5163:1 5170:3 5178:1 5190:1 5194:1 5232:1 5233:1 5235:1 5237:2 5240:1 5241:1 5247:1 5254:1 5272:1 5282:1 5295:1 5298:1 5299:2 5300:1 5302:3 5307:1 5308:3 5324:1 5348:1 5371:3 5402:2 5404:1 5408:1 5416:1 5428:1 5435:2 5437:29 5444:1 5453:1 5456:1 5459:4 5465:1 5471:1 5473:1 5483:1 5486:1 5492:1 5555:2 5566:6 5587:1 5588:1 5598:1 5625:1 5638:3 5655:2 5662:2 5663:1 5672:2 5676:2 5679:1 5687:1 5712:1 5731:7 5738:1 5760:2 5832:5 5843:1 5850:1 5869:1 5879:5 5885:1 5913:1 5924:1 5960:1 5967:1 5969:2 5973:2 5974:1 5980:1 5983:3 5995:1 6004:1 6005:3 6017:1 6043:1 6049:1 6075:2 6078:2 6096:15 6097:2 6112:2 6115:1 6140:5 6149:2 6158:2 6187:2 6191:1 6207:1 6253:4 6254:1 6257:3 6277:4 6278:4 6279:2 6282:1 6285:5 6291:1 6292:2 6293:3 6294:1 6303:1 6309:2 6312:5 6315:3 6316:1 6326:1 6358:1 6407:1 6411:2 6430:1 6451:1 6483:1 6495:1 6506:1 6528:1 6561:1 6580:1 6610:1 6622:1 6623:2 6628:1 6655:1 6679:1 6683:1 6684:1 6695:1 6698:2 6738:3 6739:1 6759:1 6787:1 6799:1 6801:2 6803:1 6807:1 6832:1 6835:1 6843:1 6859:1 6861:1 6867:3 6870:1 6942:1 6957:1 6968:1 6970:1 6972:1 6982:2 6983:1 6991:1 6996:1 7008:1 7010:1 7012:1 7036:2 7038:2 7046:1 7053:1 7061:2 7062:7 7065:1 7070:1 7072:1 7076:1 7083:1 7086:1 7119:2 7130:1 7138:1 7140:1 7164:2 7167:1 7205:1 7213:1 7225:2 7243:1 7250:1 7252:2 7264:2 7289:10 7295:3 7366:1 7377:1 7383:1 7394:1 7397:1 7421:1 7422:1 7423:1 7432:3 7434:1 7451:1 7455:1 7494:1 7496:1 7525:1 7532:1 7537:1 7561:2 7567:2 7580:2 7583:1 7589:1 7591:1 7599:1 7603:1 7604:2 7607:1 7616:1 7618:1 7630:1 7635:1 7656:1 7665:1 7684:1 7690:1 7707:1 7708:2 7709:1 7715:1 7716:1 7718:1 7721:2 7722:1 7725:1 7727:1 7728:1 7729:3 7734:1 7736:1 7739:2 7741:2 7742:1 7748:1 7764:1 7782:1 7805:1 7822:1 7825:1 7840:1 7847:1 7852:3 7857:2 7860:1 7871:2 7880:1 7905:1 7937:2 7945:1 7965:1 7966:1 7974:1 7989:6 7995:1 8002:1 8004:4 8006:1 8007:1 8008:1 8009:2 8014:4 8015:2 8016:1 8017:1 8019:3 8020:7 8021:1 8030:1 8034:1 8054:1 8077:1 8082:1 8085:2 8125:1 8136:1 8176:1 8185:2 8186:1 8200:3 8203:3 8224:1 8243:1 8257:1 8260:1 8284:1 8293:1 8297:1 8308:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:2 8349:1 8370:2 8377:1 8393:2 8421:1 8427:1 8446:1 8449:1 8481:1 8489:1 8493:1 8496:1 8501:3 8524:1 8564:2 8566:1 8570:1 8577:1 8602:1 8617:1 8641:1 8648:1 8661:1 8695:2 8709:1 8714:1 8731:1 8738:1 8751:1 8772:1 8842:1 8845:1 8849:1 8854:1 8866:1 8880:1 8883:6 8905:1 8940:1 8943:1 8946:1 8955:1 8960:1 8966:2 8975:1 8978:2 8996:1 9007:1 9012:1 9026:1 9033:1 9052:2 9060:1 9090:1 9113:1 9122:1 9123:2 9126:1 9134:1 9138:1 9143:1 9146:1 9153:1 9194:1 9205:1 9216:1 9217:2 9231:1 9253:1 9278:1 9282:2 9306:1 9307:1 9325:1 9328:1 9333:1 9337:1 9338:6 9372:7 9374:1 9381:1 9394:1 9426:1 9428:2 9433:1 9437:1 9446:1 9470:1 9484:1 9492:1 9495:1 9499:1 9526:4 9529:1 9577:1 9586:1 9588:1 9612:3 9619:1 9628:10 9629:10 9637:1 9655:1 9656:1 9657:5 9661:1 9688:3 9694:3 9695:1 9702:44 9707:1 9708:1 9711:2 9719:1 9720:1 9723:1 9733:14 9738:4 9744:1 9754:1 9758:1 9761:1 9780:1 9781:1 9787:2 9793:2 9803:1 9813:1 9849:4 9866:2 9870:1 9885:1 9895:1 9924:1 9926:2 9942:3 9957:1 9963:1 9967:3 9968:1 9975:1 9978:1 9999:5 10011:1 10023:1 10058:1 10063:2 10099:2 10103:1 10161:1 10167:1 10171:1 10175:1 10209:1 10213:1 10223:1 10235:2 10261:2 10284:1 10286:1 10298:1 10313:1 10314:1 10321:30 10331:1 10333:1 10338:1 10342:1 10349:1 10356:1 10359:15 10360:4 10376:1 10378:2 10399:1 10401:1 10406:1 10407:1 10411:1 10412:2 10431:1 10444:1 10452:1 10470:37 10488:1 10520:1 10559:1 10598:1 10599:1 10612:1 10624:1 10669:1 10683:1 10686:2 10695:1 10697:1 10701:2 10703:1 10704:1 10706:1 10707:1 10711:1 10716:1 10717:5 10718:1 10736:1 10744:1 10749:2 10772:3 10773:1 10778:1 10789:2 10791:1 10792:1 10796:1 10798:1 10807:2 10808:2 10812:1 10813:1 10826:1 10848:1 10850:1 10864:1 10878:1 10884:1 10895:1 10900:2 10911:3 10937:1 10979:1 10994:1 11002:2 11075:3 11078:1 11081:1 11109:2 11129:1 11163:2 11165:1 11169:1 11179:1 11183:2 11207:1 11212:4 11226:1 11230:1 11231:1 11233:3 11238:1 11247:3 11258:1 11268:1 11270:1 11272:1 11311:1 11320:1 11325:1 11334:2 11340:1 11343:1 11347:2 11378:1 11382:5 11391:4 11402:1 11404:1 11412:1 11422:1 11457:1 11489:4 11522:3 11556:1 11557:4 11561:2 11564:1 11569:1 11571:3 11572:1 11573:1 11575:1 11583:1 11585:2 11587:2 11598:1 11617:1 11619:1 11625:1 11628:1 11636:1 11640:1 11641:1 11642:2 11643:1 11645:1 11654:1 11668:1 11675:1 11678:3 11690:7 11694:1 11697:2 11707:2 11718:2 11720:1 11723:1 11739:2 11744:1 11745:1 11755:1 11770:1 11771:1 11774:1 11776:1 11791:1 11793:1 11795:2 11804:1 11815:1 11835:1 11840:1 11851:1 11861:1 11864:1 11865:1 11872:2 11876:2 11882:1 11885:1 11887:1 11899:1 11902:1 11903:1 11912:1 11917:1 11918:1 11919:7 11930:1 11931:2 11932:9 11936:1 11947:1 11955:1 11959:1 11961:2 11966:1 11969:1 11976:1 11978:1 11982:3 11985:1 11988:1 11992:1 12004:1 12014:1 12033:1 12052:1 12056:1 12057:1 12073:1 12076:1 12078:1 12081:1 12082:1 12083:2 12086:1 12096:1 12104:1 12111:1 12112:1 12113:1 12120:1 12131:1 12146:1 12147:1 12186:1 12191:1 12214:1 12221:6 12229:1 12230:1 12231:1 12237:3 12239:4 12248:1 12255:1 12269:1 12275:1 12282:1 12301:1 12324:1 12339:1 12359:1 12361:1 12391:29 12401:1 12407:1 12420:1 12428:1 12435:1 12446:1 12451:1 12458:1 12471:1 12473:1 12479:1 12490:2 12493:1 12497:1 12508:1 12520:1 12521:1 12538:1 12540:4 12547:3 12552:1 12561:2 12570:2 12580:1 12592:1 12608:1 12618:2 12619:2 12630:1 12641:1 12643:2 12651:1 12654:2 12669:4 12673:5 12684:1 12692:3 12694:1 12734:5 12756:1 12757:1 12760:2 12774:1 12777:1 12794:1 12821:1 12824:2 12829:1 12837:1 12844:1 12848:1 12850:1 12867:6 12879:1 12881:1 12898:1 12936:1 12958:1 12977:2 12981:1 12988:1 13013:4 13028:1 13040:2 13049:1 13051:1 13052:1 13058:1 13078:1 13079:1 13080:1 13089:1 13096:1 13112:1 13113:5 13128:1 13154:3 13175:1 13179:1 13187:1 13213:1 13234:1 13241:1 13258:4 13267:1 13282:1 13283:5 13303:1 13316:1 13325:2 13357:2 13377:1 13384:1 13385:2 13411:1 13412:4 13415:1 13418:2 13420:6 13429:1 13443:1 13454:1 13464:2 13468:1 13471:1 13474:1 13481:1 13483:1 13487:1 13493:7 13498:1 13505:1 13509:1 13516:1 13517:2 13537:1 13550:1 13568:1 13588:1 13601:1 13632:7 13633:1 13647:1 13648:1 13657:1 13669:2 13673:1 13682:1 13686:2 13690:3 13694:3 13704:1 13710:1 13721:4 13737:1 13749:1 13761:1 13765:2 13767:1 13768:1 13777:1 13793:1 13798:8 13803:1 13808:1 13823:1 13824:3 13826:4 13828:1 13837:1 13845:2 13849:1 13859:1 13880:1 13881:1 13891:6 13895:1 13898:1 13900:1 13901:1 13910:1 13919:1 13921:2 13931:1 13942:1 13972:2 13998:1 14008:1 14009:1 14015:1 14029:1 14032:3 14036:1 14042:1 14070:2 14071:2 14092:1 14093:1 14095:2 14105:2 14107:1 14114:1 14115:1 14116:3 14119:1 14122:1 14124:1 14128:1 14134:1 14145:1 14146:4 14149:1 14152:1 14154:1 14162:1 14186:1 14189:3 14191:1 14218:1 14235:5 14263:1 14265:1 14280:1 14286:1 14292:1 14296:1 14302:1 14308:1 14309:1 14322:8 14337:2 14340:2 14342:1 14376:1 14380:1 14406:1 14410:1 14411:1 14416:1 14430:1 14448:2 14488:1 14491:6 14515:1 14517:1 14519:1 14523:1 14528:1 14533:3 14550:1 14554:1 14555:1 14559:1 14564:1 14567:5 14568:3 14571:2 14577:1 14580:4 14586:1 14611:1 14614:1 14621:2 14628:1 14632:2 14636:1 14638:6 14642:1 14643:1 14654:1 14666:1 14667:1 14675:2 14686:1 14716:1 14727:3 14735:1 14737:1 14742:4 14744:1 14772:2 14787:1 14791:3 14803:1 14840:1 14844:1 14854:1 14869:1 14910:1 14913:1 14940:1 14941:2 14960:1 14984:1 15012:1 15014:1 15030:1 15037:3 15046:1 15060:4 15079:1 15083:1 15086:1 15095:1 15123:1 15132:1 15140:1 15150:1 15151:1 15152:3 15160:1 15161:2 15162:1 15169:1 15178:1 15185:1 15197:1 15205:1 15210:1 15220:1 15222:1 15250:1 15269:1 15278:1 15292:1 15312:2 15315:5 15326:1 15345:1 15383:1 15385:2 15400:1 15414:2 15448:1 15460:1 15472:1 15487:1 15502:3 15519:1 15525:1 15526:1 15552:1 15574:1 15577:1 15584:1 15587:1 15595:1 15598:1 15675:1 15705:1 15707:1 15746:1 15747:1 15776:3 15778:30 15782:1 15786:1 15794:1 15797:1 15800:4 15803:1 15813:1 15826:1 15844:6 15855:1 15864:2 15868:1 15885:1 15895:1 15900:1 15910:1 15912:1 15915:1 15942:1 15943:1 15944:2 15981:1 16001:1 16006:2 16008:1 16013:1 16017:1 16022:1 16083:1 16099:2 16114:1 16134:1 16142:2 16147:1 16149:1 16173:1 16190:1 16196:1 16198:1 16201:1 16213:1 16217:1 16236:1 16241:1 16253:1 16269:1 16285:1 16293:1 16294:1 16299:1 16303:1 16304:1 16320:1 16327:12 16332:4 16354:1 16357:1 16365:2 16372:1 16375:1 16394:1 16456:1 16460:1 16475:1 16490:1 16499:1 16502:2 16505:2 16510:4 16516:5 16528:1 16535:1 16559:1 16594:1 16609:11 16613:1 16622:1 16643:1 16720:1 16729:1 16731:1 16732:2 16742:1 16775:1 16792:3 16797:4 16803:2 16823:1 16831:1 16835:1 16837:1 16843:1 16854:1 16862:1 16869:2 16874:2 16882:1 16889:1 16897:1 16898:1 16914:2 16918:1 16929:2 16964:1 16968:2 16970:3 16971:1 16973:1 16975:1 16977:2 16978:1 16979:10 16980:1 16981:1 16983:2 17002:1 17003:2 17004:1 17008:1 17009:1 17013:5 17022:1 17026:1 17033:2 17064:1 17075:1 17076:1 17082:1 17100:1 17114:1 17120:1 17125:1 17152:1 17154:1 17161:2 17172:10 17175:1 17181:2 17193:1 17204:1 17214:1 17217:1 17230:1 17234:1 17243:1 17246:1 17273:1 17276:1 17278:2 17286:4 17303:1 17309:1 17315:3 17319:1 17320:2 17333:11 17336:5 17417:2 17426:2 17438:1 17449:4 17450:1 17481:1 17516:1 17545:1 17547:3 17562:1 17564:2 17571:1 17598:1 17601:1 17607:2 17623:1 17629:1 17639:1 17675:4 17679:1 17723:1 17762:1 17769:1 17784:1 17792:2 17794:1 17798:1 17806:2 17813:1 17814:2 17817:3 17835:2 17836:1 17849:1 17850:2 17858:2 17869:1 17903:1 17918:1 17921:1 17924:1 17925:1 17929:1 17941:1 17942:2 17943:1 17945:1 17955:1 17957:2 17972:1 17976:1 17978:2 17981:1 17984:1 17992:1 17993:1 17997:1 17999:1 18000:1 18005:1 18011:1 18013:1 18016:1 18030:1 18032:1 18037:1 18039:1 18048:1 18057:2 18073:1 18080:1 18092:30 18101:3 18105:1 18106:1 18110:1 18120:1 18127:1 18128:1 18137:1 18184:1 18198:1 18200:1 18203:5 18214:1 18215:1 18221:2 18244:1 18249:1 18270:3 18274:1 18276:1 18277:1 18290:1 18297:1 18298:1 18320:2 18325:1 18339:1 18342:1 18345:1 18390:1 18392:1 18396:1 18442:1 18463:2 18470:2 18474:1 18485:1 18506:1 18535:1 18549:1 18559:1 18560:1 18561:2 18563:2 18574:1 18582:1 18593:1 18600:2 18601:1 18603:1 18608:7 18614:1 18645:3 18651:1 18673:1 18676:1 18696:1 18703:1 18708:2 18712:1 18715:1 18732:1 18747:1 18752:1 18767:2 18769:1 18779:2 18781:3 18793:1 18794:1 18811:1 18823:1 18867:1 18870:1 18876:1 18898:2 18953:2 18954:1 18959:1 18968:1 18993:2 18997:1 19019:1 19029:1 19050:1 19060:1 19064:2 19067:1 19083:1 19087:2 19096:1 19097:1 19120:1 19141:1 19154:1 19169:1 19175:1 19191:1 19192:3 19193:3 19204:1 19225:1 19235:1 19263:5 19269:2 19276:1 19287:1 19303:1 19310:1 19336:1 19361:1 19397:1 19406:1 19416:1 19424:1 19428:1 19437:2 19452:1 19458:4 19469:1 19471:1 19475:1 19490:5 19496:3 19500:1 19513:4 19514:1 19518:1 19525:1 19526:1 19529:1 19532:1 19538:3 19548:1 19567:1 19602:1 19605:1 19615:4 19616:1 19620:1 19641:2 19645:4 19649:2 19658:1 19664:1 19670:1 19672:1 19679:1 19689:1 19691:3 19703:1 19708:2 19772:1 19775:1 19787:1 19796:1 19806:1 19810:12 19814:2 19820:1 19851:3 19854:3 19858:1 19865:2 19868:1 19894:2 19904:2 19905:1 19907:1 19908:2 19932:10 19947:1 19961:1 19976:3 20027:2 20034:1 20046:2 20061:1 20065:1 20074:1 20076:1 20078:1 20091:2 20109:4 20110:2 20111:1 20115:3 20117:1 20124:1 20125:3 20126:1 20127:2 20130:1 20153:1 20168:1 20174:1 20201:2 20221:1 20231:1 20232:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20295:1 20296:1 20318:1 20324:1 20325:1 20350:1 20355:1 20369:2 20383:1 20390:1 20431:1 20444:1 20445:1 20446:2 20455:1 20499:1 20522:1 20537:1 20540:2 20556:2 20566:1 20568:1 20572:1 20588:3 20593:1 20604:1 20606:7 20607:1 20608:1 20617:1 20643:1 20646:1 20649:1 20654:1 20679:2 20680:1 20689:1 20690:1 20691:2 20727:1 20746:1 20751:3 20754:1 20762:1 20781:1 20783:1 20785:2 20796:1 20799:2 20816:1 20818:1 20865:1 20878:1 20885:1 20900:1 20917:1 20918:1 20930:1 20941:40 20948:1 20949:2 20974:1 20978:1 20997:1 21000:1 21003:4 21044:1 21064:1 21071:1 21072:1 21081:1 21083:1 21097:1 21101:1 21116:1 21124:3 21130:2 21145:2 21149:1 21155:1 21170:1 21174:2 21204:1 21209:1 21214:1 21215:1 21235:1 21261:1 21263:1 21284:1 21292:1 21299:1 21316:1 21318:2 21322:2 21323:1 21324:1 21337:1 21371:1 21376:1 21423:1 21443:1 21445:1 21473:1 21477:1 21500:1 21503:1 21508:1 21512:1 21513:1 21522:2 21524:1 21530:1 21540:1 21566:1 21586:1 21591:1 21592:1 21593:1 21597:1 21602:1 21603:1 21608:2 21612:2 21634:1 21643:1 21686:2 21696:1 21701:1 21704:2 21713:2 21724:1 21754:1 21788:1 21806:1 21809:1 21819:1 21823:4 21827:1 21829:2 21831:1 21843:1 21864:1 21866:1 21872:2 21874:1 21875:2 21886:1 21892:1 21899:1 21917:2 21925:1 21939:2 21943:2 21975:4 21987:4 22008:3 22009:1 22032:1 22037:1 22067:1 22076:1 22079:5 22083:1 22084:2 22123:3 22143:2 22169:1 22173:1 22177:2 22181:1 22186:2 22190:1 22207:1 22247:1 22251:2 22298:1 22300:4 22304:1 22305:2 22308:1 22315:1 22327:1 22345:1 22347:1 22362:1 22386:1 22388:1 22406:1 22424:1 22429:4 22490:1 22493:2 22497:1 22516:1 22530:2 22547:1 22572:1 22584:1 22628:8 22643:1 22650:1 22666:1 22668:1 22677:2 22715:1 22720:1 22727:4 22754:1 22764:1 22781:1 22783:1 22791:1 22800:1 22806:2 22809:1 22816:1 22824:1 22839:1 22866:1 22870:1 22883:1972 22893:2 22899:1 22909:2 22923:1 22944:1 22966:1 22969:1 22984:1 23008:1 23031:3 23039:1 23043:3 23044:1 23079:1 23098:1 23113:1 23119:1 23129:1 23139:1 23164:1 23171:1 23189:1 23193:2 23202:1 23223:1 23224:1 23270:1 23279:1 23293:1 23304:1 23320:1 23321:1 23348:1 23365:2 23371:1 23411:1 23427:1 23456:1 23457:1 23468:2 23470:1 23474:1 23482:1 23492:1 23505:1 23508:1 23520:1 23521:3 23523:2 23543:1 23549:1 23565:1 23603:1 23607:5 23640:5 23647:1 23653:1 23664:1 23698:1 23706:1 23708:1 23712:1 23715:1 23718:1 23735:1 23763:1 23766:1 23773:1 23784:1 23787:1 23789:1 23800:1 23805:1 23812:1 23821:1 23833:5 23834:4 23874:1 23880:4 23900:1 23914:2 23922:1 23932:1 23934:1 23947:21 23958:1 23978:1 23979:2 24012:2 24013:1 24019:1 24020:1 24044:1 24047:4 24049:1 24052:1 24064:2 24066:1 24079:1 24092:1 24097:2 24105:3 24106:1 24118:1 24154:2 24185:1 24191:1 24197:1 24205:1 24209:4 24217:1 24233:1 24239:2 24240:1 24255:1 24268:1 24271:1 24289:2 24292:1 24306:1 24314:1 24327:1 24332:1 24342:1 24345:2 24347:1 24364:1 24369:1 24376:4 24385:1 24405:1 24424:1 24444:1 24449:1 24450:1 24474:1 24479:1 24480:3 24482:2 24483:1 24491:1 24511:1 24518:2 24534:1 24539:2 24553:1 24566:1 24591:2 24592:6 24598:1 24601:1 24604:1 24607:1 24612:1 24620:1 24630:1 24640:1 24643:1 24651:1 24653:2 24656:3 24658:5 24663:1 24674:1 24680:2 24681:5 24682:1 24683:1 24699:1 24700:1 24704:1 24708:5 24728:2 24729:1 24753:2 24754:1 24762:3 24774:1 24781:4 24792:1 24794:1 24808:2 24813:1 24820:1 24826:1 24850:1 24853:1 24869:1 24883:5 24894:2 24918:1 24919:1 24924:1 24945:1 24978:1 25000:1 25031:2 25047:1 25052:1 25053:1 25058:1 25067:1 25076:1 25080:1 25114:5 25122:1 25143:1 25144:2 25157:1 25161:2 25163:1 25179:3 25217:1 25240:1 25244:1 25269:1 25285:1 25299:1 25300:2 25303:1 25326:1 25334:2 25357:1 25369:1 25373:1 25379:1 25386:1 25392:1 25407:2 25410:2 25417:1 25427:2 25428:1 25431:2 25448:1 25456:1 25461:1 25468:1 25481:1 25486:1 25491:1 25498:2 25502:2 25505:1 25511:3 25526:1 25527:1 25529:1 25541:1 25543:1 25553:2 25554:2 25568:1 25572:1 25580:1 25582:2 25586:1 25590:3 25600:2 25602:1 25605:1 25608:3 25609:2 25623:2 25630:1 25632:1 25637:4 25690:1 25699:1 25720:1 25721:4 25725:1 25733:2 25738:1 25781:1 25782:1 25786:2 25793:3 25807:1 25811:1 25815:1 25824:2 25841:1 25846:1 25848:1 25852:1 25859:2 25867:1 25879:1 25903:1 25907:1 25917:1 25928:1 25934:1 25943:1 25948:1 25952:1 25973:1 25994:1 26000:1 26005:1 26011:1 26014:1 26018:4 26031:2 26052:1 26062:3 26070:1 26091:1 26099:1 26102:2 26107:1 26119:1 26120:1 26124:1 26138:1 26148:1 26151:1 26153:1 26155:1 26156:3 26162:1 26167:1 26183:1 26191:1 26203:2 26211:1 26212:1 26214:1 26215:2 26216:2 26226:1 26228:1 26236:1 26260:1 26261:1 26275:1 26279:1 26285:1 26306:1 26313:1 26324:2 26327:2 26337:3 26344:1 26345:1 26346:1 26347:1 26361:1 26362:2 26383:1 26385:4 26394:1 26407:1 26415:1 26424:1 26425:1 26426:1 26438:3 26444:1 26453:4 26458:1 26459:1 26460:1 26475:1 26496:1 26505:1 26508:5 26552:1 26555:1 26589:1 26590:1 26593:1 26602:5 26605:1 26608:1 26610:1 26612:3 26614:1 26628:3 26642:1 26644:1 26651:1 26667:1 26668:9 26671:1 26679:1 26694:1 26740:1 26743:1 26744:1 26777:2 26779:4 26782:2 26787:1 26794:1 26795:1 26797:2 26808:2 26809:2 26815:1 26818:1 26820:1 26826:5 26827:1 26828:4 26842:1 26843:1 26844:1 26854:1 26874:1 26907:1 26914:1 26930:1 26949:2 26984:2 26995:2 26999:1 27004:4 27029:2 27051:1 27072:1 27087:3 27092:1 27097:1 27099:1 27102:1 27103:1 27114:1 27127:3 27138:1 27149:1 27153:2 27171:1 27183:1 27203:1 27213:2 27243:1 27251:2 27259:1 27260:12 27283:1 27287:2 27294:1 27331:10 27333:2 27339:1 27343:1 27354:1 27393:1 27396:4 27398:2 27401:1 27412:3 27415:2 27447:1 27460:7 27470:1 27478:1 27484:1 27500:3 27501:1 27508:1 27522:1 27526:1 27527:1 27542:1 27544:2 27573:1 27591:1 27594:1 27599:1 27601:1 27603:2 27619:6 27633:2 27651:1 27653:1 27677:3 27703:1 27723:1 27731:1 27752:1 27760:1 27767:1 27776:1 27779:1 27782:1 27787:29 27804:1 27808:1 27810:2 27813:3 27814:1 27816:1 27817:2 27819:1 27825:1 27854:2 27859:3 27860:1 27862:1 27866:1 27878:1 27879:1 27889:1 27920:1 27922:1 27925:1 27957:1 27963:1 27973:5 27974:1 27983:1 27987:2 28000:2 28007:1 28011:4 28017:1 28038:1 28051:1 28052:1 28081:1 28154:1 28160:3 28179:3 28191:1 28194:1 28206:1 28263:1 28276:1 28278:1 28279:1 28287:1 28297:1 28298:3 28308:1 28310:1 28313:3 28317:1 28318:2 28348:1 28370:30 28384:1 28398:3 28399:1 28409:1 28433:1 28436:1 28460:1 28464:1 28470:1 28472:2 28473:1 28482:2 28483:1 28489:6 28512:1 28523:1 28528:1 28541:1 28560:1 28567:1 28572:1 28577:3 28582:2 28587:1 28593:1 28612:1 28620:1 28621:1 28639:1 28645:1 28647:2 28650:2 28686:1 28693:1 28752:1 28757:1 28786:1 28788:1 28811:1 28812:1 28814:1 28815:1 28817:2 28826:1 28831:1 28833:1 28852:1 28908:1 28913:1 28929:1 28932:1 28939:2 28940:1 28949:1 28974:2 28983:2 28993:1 28996:2 29004:1 29014:1 29016:1 29020:1 29032:1 29041:3 29087:1 29126:1 29133:2 29141:1 29149:1 29169:1 29170:3 29174:1 29179:1 29190:4 29192:1 29196:1 29215:1 29233:1 29241:1 29251:1 29258:1 29271:1 29297:1 29320:1 29328:1 29330:1 29334:1 29367:2 29398:1 29417:1 29419:3 29426:2 29451:1 29455:2 29464:1 29480:1 29486:2 29493:1 29516:2 29527:1 29551:1 29554:1 29557:3 29564:2 29566:1 29568:2 29583:2 29584:2 29587:3 29591:1 29592:1 29604:1 29634:3 29635:1 29688:8 29695:1 29701:1 29715:1 29741:1 29749:1 29752:1 29756:1 29760:1 29761:1 29768:1 29775:1 29816:1 29822:1 29827:1 29840:1 29845:4 29857:1 29887:1 29888:1 29901:2 29911:1 29939:1 29952:1 29954:1 29957:1 29962:3 29969:1 29972:1 29995:1 30004:1 30015:2 30023:1 30035:1 30041:1 30079:3 30083:1 30084:2 30092:1 30093:1 30095:2 30099:5 30102:1 30103:1 30105:2 30119:1 30134:1 30144:2 30165:3 30192:1 30198:2 30199:3 30213:1 30215:1 30235:2 30238:1 30248:1 30253:1 30261:4 30263:1 30273:1 30283:1 30284:1 30288:1 30290:1 30294:1 30295:1 30299:1 30307:1 30319:1 30320:1 30329:1 30330:1 30331:1 30350:1 30364:1 30370:1 30424:1 30434:1 30454:1 30478:1 30482:3 30483:1 30489:1 30493:1 30518:1 30535:4 30537:2 30538:2 30541:1 30552:2 30553:1 30601:1 30613:1 30617:2 30641:1 30677:1 30679:1 30688:1 30743:1 30777:1 30783:1 30787:1 30788:1 30789:2 30790:6 30794:1 30806:1 30814:5 30817:3 30823:1 30855:2 30857:1 30861:1 30907:1 30910:1 30912:2 30920:2 30931:1 30944:2 30951:1 30952:1 30960:2 30963:1 30970:1 30972:1 30981:4 30987:1 31002:1 31005:1 31015:1 31020:1 31026:1 31047:1 31051:4 31053:1 31055:2 31057:1 31059:1 31089:1 31092:1 31093:1 31095:1 31112:2 31134:1 31142:1 31148:1 31151:1 31168:3 31177:1 31178:1 31181:1 31188:1 31201:1 31210:1 31223:1 31226:1 31235:2 31255:2 31264:4 31265:2 31276:1 31283:1 31286:1 31296:4 31317:2 31329:2 31334:3 31369:1 31376:1 31377:5 31384:1 31387:1 31404:1 31411:1 31413:12 31425:2 31444:2 31465:2 31478:1 31486:1 31550:1 31563:1 31569:1 31574:2 31578:3 31580:1 31588:1 31595:1 31603:1 31610:1 31612:1 31641:2 31648:1 31660:2 31663:1 31701:1 31706:1 31708:1 31712:1 31725:1 31737:1 31747:1 31751:1 31753:2 31767:1 31768:1 31784:1 31785:1 31787:1 31797:1 31805:1 31808:2 31834:3 31848:1 31853:1 31866:2 31874:1 31882:1 31885:1 31890:1 31891:1 31893:1 31918:1 31919:1 31929:1 31930:4 31933:2 31946:2 31963:2 31964:1 31968:10 31969:1 31972:1 31993:2 32010:1 32022:1 32025:1 32036:1 32057:1 32066:5 32074:1 32090:1 32099:1 32106:1 32112:1 32115:1 32117:1 32136:1 32140:1 32153:1 32208:1 32219:2 32259:1 32285:3 32307:1 32311:1 32317:1 32319:1 32326:1 32329:1 32376:2 32405:1 32406:1 32413:1 32425:1 32436:1 32459:1 32461:2 32491:1 32492:1 32493:2 32505:2 32515:2 32532:1 32553:2 32555:1 32559:1 32574:1 32596:1 32606:1 32612:1 32624:1 32629:1 32636:1 32683:2 32691:1 32700:1 32725:2 32726:1 32732:1 32745:1 32749:2 32750:6 32774:3 32779:1 32785:2 32787:1 32801:4 32813:1 32820:1 32832:3 32846:1 32848:2 32879:1 32887:1 32890:5 32891:1 32893:1 32896:2 32908:1 32909:1 32913:1 32917:2 32924:1 32929:3 32941:3 32950:2 32955:1 32958:1 32965:1 32974:1 32984:1 32997:1 33027:1 33031:1 33053:1 33057:2 33066:1 33069:2 33080:2 33085:1 33089:1 33092:1 33094:3 33098:1 33100:1 33112:1 33118:1 33128:4 33133:2 33137:1 33141:2 33142:1 33144:2 33157:2 33168:1 33180:1 33182:1 33183:2 33218:2 33222:1 33272:1 33276:1 33284:1 33287:1 33296:3 33297:1 33309:2 33330:1 33335:1 33346:1 33352:7 33388:1 33389:1 33404:1 33413:1 33422:1 33428:2 33439:1 33440:1 33444:1 33446:1 33449:1 33461:3 33467:1 33498:1 33502:1 33503:1 33504:1 33505:3 33512:1 33530:1 33533:4 33537:2 33543:3 33545:1 33552:1 33553:2 33555:1 33556:2 33563:3 33579:2 33591:2 33592:1 33595:3 33609:1 33616:1 33620:1 33623:1 33637:1 33663:7 33669:1 33680:4 33716:1 33720:1 33730:1 33732:1 33734:3 33738:1 33743:3 33760:1 33766:1 33769:1 33771:1 33794:2 33795:1 33819:1 33820:1 33824:1 33861:1 33865:1 33880:2 33902:1 33910:1 33921:1 33928:1 33930:1 33997:1 34003:1 34040:1 34052:1 34056:3 34057:2 34062:2 34067:4 34071:3 34075:6 34076:1 34077:2 34080:1 34083:1 34085:3 34086:1 34099:1 34104:1 34133:1 34139:1 34144:1 34151:3 34157:1 34160:1 34174:1 34194:1 34197:1 34221:2 34246:2 34253:1 34283:1 34304:1 34306:1 34314:1 34321:2 34351:1 34353:1 34363:1 34364:1 34367:1 34371:1 34373:1 34385:2 34403:1 34407:1 34410:1 34413:3 34423:1 34435:13 34437:1 34440:1 34445:1 34470:1 34478:2 34497:6 34526:1 34566:1 34570:1 34589:1 34596:4 34615:1 34619:1 34627:1 34629:1 34630:1 34634:9 34643:3 34654:1 34659:1 34662:1 34673:1 34674:1 34682:1 34689:1 34691:11 34701:1 34749:1 34757:2 34761:1 34782:1 34794:1 34804:2 34834:1 34862:1 34878:2 34924:1 34936:1 34968:1 34989:1 34996:37 34997:1 35022:1 35026:4 35031:2 35039:1 35041:5 35042:2 35056:1 35094:1 35098:1 35124:3 35128:8 35129:1 35135:2 35141:1 35149:1 35152:1 35157:1 35164:1 35167:1 35177:1 35184:1 35201:1 35207:2 35253:1 35265:1 35281:2 35289:2 35310:1 35311:1 35326:1 35342:1 35354:4 35382:2 35395:2 35410:1 35456:1 35464:3 35468:1 35470:1 35473:1 35488:1 35499:1 35503:2 35517:2 35520:1 35526:2 35539:1 35582:1 35585:1 35589:2 35592:1 35602:2 35614:1 35625:2 35634:1 35635:1 35636:1 35648:1 35656:1 35661:1 35664:1 35665:1 35677:1 35681:2 35692:1 35696:1 35700:1 35714:1 35721:1 35734:1 35746:1 35748:6 35749:1 35753:2 35757:3 35785:1 35789:3 35805:6 35831:3 35836:1 35837:2 35838:2 35845:1 35850:30 35862:2 35888:1 35901:1 35925:1 35939:1 35953:1 35957:1 35959:2 35964:1 35965:2 35966:4 35989:1 36007:1 36010:1 36011:1 36028:2 36033:1 36059:1 36065:1 36072:1 36075:2 36091:1 2 9:1 10:1 19:1 31:2 32:1 33:1 55:1 65:1 68:1 69:1 73:1 76:1 86:1 95:1 104:3 106:2 107:1 122:1 128:1 140:1 166:2 177:1 184:1 191:1 196:2 200:2 207:1 211:1 221:1 235:1 239:2 251:1 255:1 256:1 271:1 278:2 297:2 302:5 303:1 309:2 322:2 323:1 328:1 330:1 365:1 372:1 412:1 414:3 418:1 433:1 435:1 442:1 450:1 452:1 454:1 460:1 461:1 478:2 498:2 503:2 515:1 520:2 526:1 539:1 549:1 553:1 555:2 568:2 583:1 601:3 607:1 610:1 621:1 626:1 641:1 650:1 659:1 662:1 671:1 672:1 674:1 684:1 690:1 720:1 750:1 751:3 755:2 759:2 761:1 766:1 795:6 820:31 825:3 831:1 833:1 835:1 854:1 861:1 881:1 886:3 889:2 919:2 931:1 935:2 941:2 955:3 964:1 999:2 1019:2 1022:1 1024:3 1028:2 1032:1 1034:1 1035:3 1058:1 1082:3 1091:1 1102:2 1110:1 1124:1 1128:1 1135:3 1136:7 1140:2 1142:1 1150:5 1167:1 1176:4 1181:1 1194:2 1203:3 1206:6 1210:1 1212:2 1219:1 1226:2 1233:2 1234:3 1253:2 1256:1 1260:2 1270:3 1293:1 1301:2 1305:1 1308:1 1322:1 1326:4 1327:1 1385:2 1386:1 1391:1 1403:1 1431:1 1442:1 1454:1 1459:3 1510:1 1537:1 1541:30 1550:1 1554:2 1555:2 1556:1 1564:3 1567:1 1583:1 1592:1 1595:2 1596:2 1603:1 1605:1 1610:1 1611:1 1613:1 1616:1 1617:2 1619:1 1623:1 1627:1 1632:1 1634:1 1638:1 1651:1 1652:1 1682:1 1705:1 1706:2 1740:3 1755:1 1757:1 1760:1 1763:1 1765:1 1771:2 1773:7 1792:1 1808:1 1809:1 1824:1 1836:3 1840:1 1843:1 1847:1 1849:2 1861:1 1870:1 1888:1 1889:1 1891:3 1895:2 1897:10 1903:1 1904:1 1910:1 1911:1 1915:1 1918:1 1925:1 1929:2 1930:1 1932:1 1960:3 1970:1 1990:1 1991:1 1997:3 2013:1 2014:1 2031:1 2036:1 2037:2 2043:1 2058:2 2067:1 2088:1 2095:1 2097:1 2098:7 2102:1 2105:1 2106:2 2123:1 2139:1 2145:1 2147:1 2158:2 2160:1 2164:3 2172:1 2175:1 2180:1 2196:1 2198:1 2199:1 2202:1 2218:1 2249:1 2260:1 2265:1 2269:1 2276:1 2279:1 2282:1 2292:1 2307:1 2312:1 2317:2 2320:2 2327:1 2328:1 2345:1 2348:1 2352:3 2355:1 2364:1 2368:1 2372:1 2376:2 2379:2 2390:1 2400:2 2406:2 2418:2 2420:1 2436:1 2446:1 2454:1 2455:1 2462:1 2467:1 2486:6 2494:1 2508:1 2517:1 2522:2 2525:1 2546:1 2547:1 2557:1 2566:1 2596:1 2598:1 2599:2 2604:1 2607:1 2619:1 2624:1 2638:1 2642:1 2644:1 2652:1 2655:1 2665:1 2676:1 2696:8 2721:1 2743:2 2746:1 2747:1 2783:1 2789:1 2817:1 2827:1 2848:1 2852:1 2857:1 2859:1 2861:2 2862:4 2865:1 2866:2 2867:2 2870:1 2872:5 2877:8 2881:3 2883:7 2887:3 2891:1 2895:1 2897:1 2900:1 2902:4 2906:3 2909:1 2910:1 2913:1 2918:1 2919:1 2920:1 2941:1 2942:1 2954:2 2955:1 2971:5 2974:1 2980:1 2999:2 3002:1 3004:1 3026:1 3027:1 3038:1 3042:1 3044:3 3045:3 3054:3 3057:1 3075:2 3076:4 3086:3 3087:1 3098:1 3100:1 3106:1 3116:3 3131:1 3133:1 3137:1 3145:1 3165:1 3176:2 3177:2 3179:1 3186:1 3206:1 3224:2 3244:1 3255:2 3265:1 3266:1 3267:1 3312:1 3319:1 3322:2 3341:2 3348:2 3359:2 3366:1 3367:1 3371:1 3380:3 3381:1 3388:1 3389:1 3406:1 3410:1 3413:3 3415:4 3420:1 3423:3 3429:1 3443:1 3451:1 3454:1 3493:1 3497:3 3507:2 3510:5 3511:1 3516:1 3520:2 3539:2 3547:1 3560:1 3584:2 3590:1 3603:2 3612:2 3645:14 3648:31 3651:1 3652:3 3653:1 3663:2 3666:1 3678:1 3681:1 3682:1 3691:4 3692:1 3695:1 3698:1 3706:7 3736:4 3741:2 3753:1 3756:1 3784:2 3789:1 3792:1 3793:1 3794:1 3836:2 3846:3 3851:1 3860:1 3867:1 3897:3 3926:1 3958:1 3962:1 4045:1 4067:4 4070:1 4091:1 4097:1 4101:1 4119:1 4142:1 4146:1 4147:1 4157:1 4161:3 4162:1 4171:1 4179:3 4193:1 4201:1 4211:1 4224:1 4226:4 4251:2 4279:1 4328:1 4334:1 4355:1 4359:1 4371:1 4375:2 4381:1 4383:1 4384:1 4395:1 4396:1 4402:2 4411:1 4412:1 4444:1 4448:1 4459:1 4474:1 4479:1 4488:1 4492:1 4495:1 4517:2 4531:1 4539:1 4555:1 4564:1 4575:1 4580:1 4582:1 4601:1 4626:1 4643:3 4645:2 4646:1 4651:2 4654:2 4676:1 4722:3 4724:1 4755:1 4762:1 4767:1 4773:1 4780:3 4795:1 4803:1 4809:1 4813:1 4815:2 4820:2 4830:2 4843:1 4854:1 4855:1 4857:1 4859:1 4867:3 4882:1 4885:1 4886:1 4887:1 4914:1 4920:30 4922:2 4927:1 4931:1 4947:1 4955:1 4985:1 4992:1 5008:1 5015:2 5019:4 5020:2 5032:2 5039:1 5047:1 5054:5 5058:5 5059:2 5075:1 5076:2 5119:1 5125:1 5134:1 5153:1 5163:1 5170:3 5178:1 5190:1 5194:1 5232:1 5233:1 5235:1 5237:2 5240:1 5241:1 5247:1 5254:1 5272:1 5282:1 5295:1 5298:1 5299:2 5300:1 5302:3 5307:1 5308:3 5324:1 5348:1 5371:3 5402:2 5404:1 5408:1 5411:1 5416:1 5428:1 5435:2 5437:30 5444:1 5453:1 5456:1 5459:4 5465:1 5471:1 5473:1 5483:1 5486:1 5492:1 5555:2 5566:6 5587:1 5588:1 5598:1 5625:1 5638:3 5655:2 5662:2 5663:1 5672:2 5676:2 5679:1 5687:1 5712:1 5731:7 5738:1 5760:2 5832:5 5843:1 5850:1 5869:1 5879:5 5885:1 5913:1 5924:1 5960:1 5967:2 5969:2 5973:2 5974:1 5980:1 5983:3 5995:1 6004:1 6005:3 6017:1 6043:1 6049:1 6075:2 6078:2 6096:16 6097:2 6112:2 6115:1 6140:5 6149:2 6158:2 6187:2 6191:1 6207:1 6217:1 6253:4 6254:1 6257:3 6277:4 6278:4 6279:2 6282:1 6285:5 6291:1 6292:2 6293:4 6294:1 6303:1 6309:2 6312:5 6315:3 6316:1 6326:1 6358:1 6407:1 6411:2 6430:1 6451:1 6483:1 6495:1 6506:1 6528:1 6561:1 6580:1 6610:1 6622:1 6623:2 6628:1 6655:1 6679:1 6683:1 6684:1 6695:1 6698:2 6738:3 6739:1 6759:2 6787:1 6799:1 6801:2 6803:1 6807:1 6832:1 6835:1 6843:2 6859:1 6861:1 6867:3 6870:1 6942:1 6956:1 6957:1 6968:1 6970:1 6972:1 6982:2 6983:1 6991:1 6996:1 7008:1 7010:1 7012:1 7036:2 7038:2 7046:1 7053:1 7061:2 7062:7 7065:1 7070:1 7072:1 7076:1 7083:1 7086:2 7119:2 7130:1 7138:1 7140:1 7164:2 7167:1 7205:1 7213:1 7225:2 7243:1 7250:1 7252:2 7264:2 7289:10 7295:3 7346:1 7366:1 7377:1 7383:1 7394:1 7397:1 7421:1 7422:1 7423:1 7432:3 7434:1 7451:1 7455:1 7494:1 7496:1 7525:1 7532:1 7537:2 7561:2 7567:2 7580:2 7583:1 7589:1 7591:1 7599:1 7603:1 7604:2 7607:1 7608:1 7616:1 7618:1 7622:1 7630:1 7635:1 7656:1 7665:1 7684:1 7690:1 7707:1 7708:2 7709:1 7715:1 7716:1 7718:1 7721:2 7722:1 7725:1 7727:1 7728:1 7729:3 7734:1 7736:1 7739:2 7741:2 7742:1 7748:1 7764:1 7782:1 7805:1 7822:2 7825:1 7840:1 7847:1 7852:3 7857:2 7860:1 7871:2 7880:1 7895:1 7905:1 7937:2 7945:1 7965:1 7966:1 7974:1 7989:6 7995:1 8002:1 8004:4 8006:1 8007:1 8008:1 8009:2 8014:4 8015:2 8016:1 8017:1 8019:4 8020:7 8021:1 8030:1 8034:1 8054:1 8077:1 8082:1 8085:2 8125:1 8136:1 8176:1 8185:2 8186:1 8200:3 8203:3 8224:1 8243:1 8257:1 8260:1 8284:1 8293:1 8297:1 8308:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:2 8349:1 8370:2 8377:1 8393:2 8421:1 8427:1 8446:1 8449:1 8481:1 8489:1 8493:1 8496:1 8501:3 8524:2 8564:2 8566:1 8570:1 8577:1 8602:1 8617:1 8641:1 8648:1 8661:1 8691:1 8695:2 8709:1 8714:1 8731:1 8738:1 8751:1 8772:1 8842:1 8845:1 8849:1 8854:2 8866:1 8880:1 8883:6 8905:1 8940:1 8943:1 8946:1 8955:1 8960:1 8966:2 8975:1 8978:2 8996:1 9007:1 9012:1 9026:1 9033:1 9052:2 9060:1 9090:1 9113:1 9122:1 9123:2 9126:1 9134:1 9138:1 9143:1 9146:1 9153:1 9194:1 9205:1 9216:1 9217:2 9231:1 9253:1 9278:1 9282:2 9306:1 9307:1 9325:1 9328:1 9333:1 9337:1 9338:6 9372:9 9374:1 9381:1 9394:1 9426:1 9428:2 9433:1 9437:1 9446:1 9470:2 9484:1 9492:1 9495:1 9499:1 9526:4 9529:1 9577:1 9586:1 9588:1 9612:3 9619:1 9628:10 9629:10 9637:1 9655:1 9656:1 9657:5 9661:1 9688:3 9694:3 9695:1 9702:46 9707:1 9708:1 9711:2 9719:1 9720:1 9723:1 9733:15 9738:4 9744:1 9754:1 9758:1 9761:1 9780:1 9781:1 9787:2 9793:2 9803:1 9813:1 9849:5 9866:2 9870:1 9885:1 9895:1 9924:1 9926:2 9942:3 9957:1 9963:1 9967:4 9968:1 9975:1 9978:1 9999:5 10011:1 10023:1 10058:1 10063:2 10099:2 10103:1 10161:1 10167:1 10171:1 10175:1 10209:1 10213:1 10223:1 10235:2 10261:2 10284:1 10286:1 10298:1 10313:1 10314:1 10321:31 10331:1 10333:1 10338:1 10342:1 10349:1 10356:1 10359:15 10360:4 10376:1 10378:2 10399:1 10401:1 10406:1 10407:1 10411:1 10412:2 10431:1 10444:1 10452:1 10470:39 10488:1 10520:2 10552:1 10559:1 10598:1 10599:1 10612:1 10624:1 10669:1 10683:1 10686:2 10695:1 10697:1 10701:2 10703:1 10704:1 10706:1 10707:1 10711:1 10716:1 10717:5 10718:1 10736:1 10744:1 10749:2 10772:3 10773:1 10778:1 10789:2 10791:1 10792:1 10796:1 10798:1 10807:2 10808:2 10812:1 10813:1 10826:1 10848:1 10850:1 10864:1 10878:1 10884:1 10895:1 10900:2 10911:3 10937:1 10979:1 10994:1 11002:2 11075:3 11078:1 11081:1 11109:2 11129:1 11163:2 11165:1 11169:1 11179:1 11183:2 11207:1 11212:4 11226:1 11230:1 11231:1 11233:3 11238:1 11247:3 11258:1 11268:1 11270:1 11272:1 11311:1 11320:1 11325:1 11334:3 11340:1 11343:1 11347:2 11378:1 11382:5 11391:4 11402:1 11404:1 11412:1 11422:1 11457:1 11489:4 11522:3 11523:1 11556:1 11557:4 11561:2 11564:1 11569:1 11571:3 11572:1 11573:1 11575:1 11583:1 11585:2 11587:2 11598:1 11617:1 11619:1 11625:1 11628:1 11636:1 11640:1 11641:1 11642:2 11643:1 11645:1 11654:1 11668:1 11675:1 11678:3 11690:8 11694:1 11697:2 11707:2 11718:2 11720:1 11723:1 11739:2 11744:1 11745:1 11755:1 11770:1 11771:1 11774:1 11776:1 11791:1 11793:1 11795:2 11804:1 11815:1 11835:1 11840:1 11851:1 11861:1 11864:1 11865:2 11872:2 11876:2 11882:1 11885:1 11887:1 11888:1 11899:1 11902:1 11903:1 11912:1 11917:1 11918:1 11919:7 11930:1 11931:2 11932:9 11936:1 11947:1 11955:1 11959:1 11961:2 11966:1 11969:1 11976:1 11978:1 11982:3 11985:1 11988:1 11992:1 12004:1 12014:1 12033:1 12046:1 12052:1 12056:1 12057:1 12073:1 12076:1 12078:1 12081:1 12082:1 12083:2 12086:1 12096:1 12104:1 12111:1 12112:1 12113:1 12120:1 12131:1 12146:1 12147:1 12186:1 12191:1 12214:1 12221:6 12229:1 12230:1 12231:1 12237:3 12239:4 12248:1 12255:1 12269:1 12275:1 12282:1 12301:1 12324:1 12339:1 12359:1 12361:1 12391:30 12401:1 12407:1 12420:1 12428:1 12435:1 12446:1 12451:1 12453:1 12458:1 12471:1 12473:1 12479:1 12490:2 12493:1 12497:1 12508:1 12520:1 12521:1 12532:1 12538:1 12540:4 12547:3 12552:1 12561:2 12570:2 12580:1 12592:1 12608:1 12618:2 12619:2 12630:1 12641:1 12643:2 12651:2 12654:2 12669:4 12673:5 12684:1 12692:3 12694:1 12734:5 12756:1 12757:1 12760:2 12774:1 12777:1 12794:1 12821:1 12824:2 12829:1 12837:1 12844:1 12848:1 12850:1 12867:6 12879:1 12881:1 12898:1 12936:1 12958:1 12977:2 12981:1 12988:1 13013:5 13028:1 13040:2 13049:1 13051:1 13052:1 13058:1 13078:1 13079:1 13080:1 13089:1 13096:1 13112:1 13113:6 13128:1 13154:3 13175:1 13179:1 13187:1 13213:1 13234:1 13241:1 13258:4 13267:1 13282:1 13283:5 13303:1 13316:1 13325:2 13357:2 13377:1 13384:1 13385:2 13411:1 13412:4 13415:1 13418:2 13420:6 13429:1 13443:1 13454:1 13464:2 13468:1 13471:1 13474:1 13481:1 13483:1 13487:1 13493:7 13498:1 13505:1 13509:1 13516:1 13517:2 13537:1 13550:1 13568:1 13588:1 13601:1 13632:7 13633:1 13647:1 13648:1 13657:1 13669:2 13673:1 13682:1 13686:2 13690:3 13694:3 13704:1 13710:1 13721:4 13737:1 13749:1 13761:1 13765:2 13767:1 13768:1 13777:1 13793:1 13798:8 13803:1 13808:1 13823:1 13824:3 13826:4 13828:1 13837:1 13845:2 13849:1 13859:1 13880:1 13881:1 13891:6 13895:1 13898:1 13900:1 13901:1 13910:2 13919:1 13921:2 13931:1 13942:1 13972:2 13998:1 14008:1 14009:1 14015:1 14029:1 14032:3 14036:1 14042:1 14070:2 14071:2 14092:1 14093:1 14095:2 14105:2 14107:1 14114:1 14115:1 14116:3 14119:1 14122:2 14124:1 14128:1 14134:1 14145:1 14146:4 14149:1 14152:1 14154:1 14162:1 14186:1 14189:3 14191:1 14218:1 14235:5 14263:1 14265:1 14280:1 14286:1 14292:1 14296:1 14302:1 14308:1 14309:1 14322:8 14337:2 14340:2 14342:1 14376:1 14380:1 14406:1 14410:1 14411:1 14416:1 14430:1 14448:2 14464:1 14488:1 14491:6 14515:1 14517:1 14519:1 14523:1 14528:1 14533:3 14550:1 14554:2 14555:1 14559:1 14564:1 14567:5 14568:3 14571:2 14577:1 14580:4 14586:1 14611:1 14614:1 14621:2 14628:1 14632:2 14636:1 14638:6 14642:1 14643:1 14654:1 14666:1 14667:1 14675:2 14686:1 14716:1 14727:3 14735:1 14737:1 14742:4 14744:1 14772:2 14787:1 14791:3 14803:1 14840:1 14844:1 14854:1 14869:1 14870:1 14910:1 14913:1 14940:1 14941:2 14960:1 14984:1 15012:1 15014:1 15030:1 15037:3 15046:1 15060:4 15079:1 15083:1 15086:1 15095:1 15123:1 15132:1 15140:1 15150:1 15151:1 15152:3 15160:1 15161:2 15162:1 15169:1 15178:1 15185:1 15197:1 15205:1 15210:1 15220:1 15222:1 15250:1 15269:1 15278:1 15292:1 15312:2 15315:5 15326:1 15345:1 15383:1 15385:2 15400:1 15414:2 15448:1 15460:1 15472:1 15487:1 15502:3 15519:1 15525:1 15526:1 15552:1 15574:1 15577:1 15584:1 15587:1 15595:1 15598:1 15675:1 15705:1 15707:1 15746:1 15747:1 15776:3 15778:31 15782:1 15786:1 15794:1 15797:1 15800:4 15803:1 15813:1 15826:1 15844:6 15855:1 15864:2 15868:1 15885:1 15895:1 15900:1 15910:1 15912:1 15915:1 15942:2 15943:1 15944:2 15981:1 16001:1 16006:2 16008:1 16013:1 16017:1 16022:1 16083:1 16099:2 16114:1 16134:1 16142:2 16147:1 16149:1 16173:1 16190:1 16196:1 16198:1 16201:1 16213:1 16217:1 16236:1 16241:1 16253:1 16269:1 16285:1 16293:1 16294:1 16299:1 16303:1 16304:1 16320:1 16327:12 16332:4 16354:1 16357:1 16365:2 16372:1 16375:1 16394:1 16456:1 16460:1 16475:1 16490:1 16499:1 16502:2 16505:2 16510:5 16516:5 16528:1 16535:1 16559:1 16594:1 16609:11 16613:1 16622:1 16643:1 16720:1 16729:1 16731:1 16732:2 16742:1 16775:1 16792:3 16797:4 16803:2 16823:1 16831:1 16835:1 16837:1 16843:1 16854:1 16862:1 16869:2 16874:2 16882:1 16889:1 16897:1 16898:1 16914:2 16918:1 16929:2 16964:1 16968:2 16970:3 16971:1 16973:1 16975:1 16977:2 16978:1 16979:10 16980:1 16981:1 16983:2 17002:1 17003:2 17004:1 17008:1 17009:1 17013:6 17022:1 17026:1 17033:2 17064:1 17075:1 17076:1 17082:1 17100:1 17114:1 17120:1 17125:1 17152:1 17154:1 17156:1 17161:2 17172:10 17175:1 17181:2 17193:1 17204:1 17214:1 17217:1 17230:1 17234:1 17243:1 17246:1 17273:1 17276:1 17278:2 17286:5 17303:1 17309:1 17315:3 17319:1 17320:2 17333:11 17336:6 17417:2 17426:2 17436:1 17438:1 17449:4 17450:1 17481:1 17516:1 17545:1 17547:3 17562:1 17564:2 17571:1 17598:1 17601:1 17607:2 17623:1 17629:1 17636:1 17639:1 17675:4 17679:1 17723:1 17762:1 17769:1 17784:1 17792:2 17794:1 17798:1 17806:2 17813:1 17814:2 17817:3 17835:2 17836:1 17849:1 17850:2 17858:2 17869:1 17903:1 17918:1 17921:1 17924:1 17925:2 17929:1 17941:1 17942:2 17943:1 17945:1 17955:1 17957:2 17972:1 17976:1 17978:2 17981:1 17984:1 17992:1 17993:1 17997:1 17999:1 18000:1 18005:1 18011:1 18013:1 18016:1 18030:1 18032:1 18037:1 18039:1 18048:1 18057:2 18073:1 18080:1 18092:31 18101:3 18105:1 18106:1 18110:1 18120:1 18127:1 18128:1 18137:1 18184:1 18198:1 18200:1 18203:5 18214:1 18215:1 18221:2 18244:1 18249:1 18270:3 18274:1 18276:1 18277:1 18290:1 18297:1 18298:1 18320:3 18325:1 18339:1 18342:1 18345:1 18390:1 18392:1 18396:1 18442:1 18463:2 18470:2 18474:1 18485:1 18506:1 18535:1 18549:1 18559:1 18560:1 18561:2 18563:2 18574:1 18582:1 18593:1 18600:2 18601:1 18603:1 18608:7 18614:1 18645:3 18651:1 18673:1 18676:1 18696:1 18703:1 18708:2 18712:1 18715:1 18732:1 18747:1 18752:1 18767:2 18769:1 18779:2 18781:3 18793:1 18794:1 18811:1 18823:1 18867:1 18870:1 18876:1 18898:2 18928:1 18953:3 18954:1 18959:1 18968:1 18989:1 18993:2 18997:1 19019:1 19029:1 19050:1 19060:1 19064:2 19067:1 19083:1 19087:2 19096:1 19097:1 19120:1 19141:1 19154:1 19169:1 19175:1 19191:1 19192:3 19193:3 19204:1 19225:1 19235:1 19263:5 19269:2 19276:1 19287:1 19303:1 19310:1 19336:1 19361:1 19397:1 19406:1 19416:1 19424:1 19428:1 19437:2 19450:1 19452:1 19458:4 19469:1 19471:1 19475:1 19490:5 19496:3 19500:1 19513:4 19514:1 19518:1 19525:1 19526:1 19529:1 19532:1 19538:3 19548:1 19567:1 19602:1 19605:1 19615:5 19616:1 19620:1 19641:2 19645:4 19649:2 19658:1 19664:1 19670:1 19672:1 19679:1 19689:1 19691:3 19703:1 19708:2 19724:1 19772:1 19775:1 19787:1 19796:1 19806:1 19810:12 19814:2 19815:1 19820:1 19851:3 19854:3 19858:1 19865:2 19868:2 19894:2 19901:1 19904:2 19905:1 19907:1 19908:2 19932:11 19947:1 19956:1 19961:1 19967:1 19976:3 20027:2 20034:1 20046:2 20061:1 20065:1 20074:1 20076:1 20078:1 20091:2 20109:4 20110:2 20111:1 20115:3 20117:1 20124:1 20125:3 20126:1 20127:2 20130:1 20153:1 20168:1 20174:1 20201:2 20221:1 20231:1 20232:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20295:1 20296:1 20318:1 20324:1 20325:1 20350:1 20355:1 20369:2 20383:1 20390:1 20431:1 20444:1 20445:1 20446:2 20455:1 20499:1 20522:1 20537:1 20540:2 20556:2 20566:1 20568:1 20572:1 20588:3 20593:1 20604:1 20606:7 20607:1 20608:1 20617:1 20643:1 20646:1 20649:1 20654:1 20679:2 20680:1 20689:1 20690:1 20691:2 20727:1 20741:1 20746:1 20751:3 20754:1 20762:1 20781:1 20783:1 20785:2 20796:1 20799:2 20816:1 20818:1 20865:1 20878:1 20885:1 20900:1 20917:1 20918:1 20930:1 20941:42 20948:1 20949:2 20974:1 20978:1 20997:1 21000:1 21003:4 21044:1 21064:1 21071:1 21072:1 21081:1 21083:1 21097:1 21101:1 21116:1 21124:3 21130:2 21145:2 21149:1 21155:1 21170:1 21174:2 21204:1 21209:1 21214:1 21215:1 21235:1 21261:1 21263:1 21284:1 21292:1 21299:1 21316:1 21318:2 21322:2 21323:1 21324:1 21337:1 21371:1 21376:1 21423:1 21443:1 21445:1 21473:1 21477:1 21500:1 21503:1 21508:1 21512:1 21513:1 21522:2 21524:1 21530:1 21540:1 21566:1 21586:1 21591:1 21592:1 21593:1 21597:1 21602:1 21603:1 21608:2 21612:2 21634:1 21643:1 21686:2 21696:1 21701:1 21704:2 21713:2 21724:1 21754:1 21788:1 21806:1 21809:1 21819:1 21823:4 21827:1 21829:2 21831:1 21843:1 21864:1 21866:1 21872:2 21874:1 21875:2 21886:1 21892:1 21899:1 21917:2 21925:1 21939:2 21943:2 21975:4 21976:1 21987:4 22008:4 22009:1 22032:1 22037:1 22067:1 22076:1 22079:5 22083:1 22084:2 22123:3 22143:2 22169:1 22173:1 22177:2 22181:1 22186:2 22190:1 22207:1 22247:1 22251:2 22298:1 22300:4 22304:1 22305:2 22308:1 22315:1 22327:1 22345:1 22347:1 22362:1 22386:1 22388:2 22391:1 22406:1 22424:1 22429:4 22490:1 22493:2 22497:1 22516:1 22530:2 22547:1 22572:1 22584:1 22628:8 22643:1 22650:1 22666:1 22668:1 22677:2 22715:1 22720:1 22727:4 22754:1 22764:1 22781:1 22783:1 22791:1 22800:1 22806:2 22809:1 22816:1 22824:1 22839:1 22866:1 22870:1 22883:2018 22893:2 22899:1 22909:2 22923:1 22944:1 22966:1 22969:1 22984:1 23008:1 23031:3 23039:1 23043:3 23044:1 23079:1 23098:1 23113:1 23119:1 23129:1 23139:1 23164:1 23171:1 23189:1 23193:2 23202:1 23223:1 23224:1 23270:1 23279:1 23293:1 23304:1 23320:1 23321:1 23348:1 23365:2 23371:1 23411:1 23427:1 23456:1 23457:1 23468:2 23470:1 23474:1 23482:1 23492:1 23505:1 23508:1 23520:1 23521:3 23523:2 23543:1 23549:1 23565:1 23603:1 23607:5 23640:5 23647:1 23653:1 23664:1 23698:1 23706:1 23708:1 23712:1 23715:1 23718:1 23735:1 23763:1 23766:1 23773:1 23784:1 23787:1 23789:1 23800:1 23805:1 23812:1 23821:1 23833:5 23834:4 23874:1 23880:4 23900:1 23914:2 23922:1 23932:1 23934:1 23947:21 23958:1 23978:1 23979:2 24012:2 24013:1 24019:1 24020:1 24044:1 24047:4 24049:1 24052:1 24064:2 24066:1 24079:1 24092:1 24097:2 24105:3 24106:1 24118:1 24154:2 24185:1 24191:1 24197:1 24205:1 24209:4 24217:1 24233:1 24239:2 24240:1 24255:1 24268:1 24271:1 24289:2 24292:1 24306:1 24314:1 24327:1 24332:1 24342:1 24345:2 24347:1 24364:1 24369:1 24376:4 24385:1 24405:1 24424:1 24444:1 24449:1 24450:1 24452:1 24474:1 24479:1 24480:3 24482:2 24483:1 24491:1 24511:1 24518:2 24534:1 24539:2 24553:1 24566:1 24591:2 24592:6 24598:1 24601:1 24604:1 24607:1 24612:1 24620:1 24630:2 24640:1 24643:1 24651:2 24653:2 24656:3 24658:5 24663:1 24674:1 24680:2 24681:6 24682:1 24683:1 24699:1 24700:1 24704:1 24708:5 24728:2 24729:1 24753:2 24754:1 24762:3 24774:1 24781:4 24792:1 24794:1 24808:2 24813:1 24820:1 24826:2 24850:1 24853:1 24869:1 24883:5 24894:2 24918:1 24919:1 24924:1 24945:1 24978:1 25000:1 25031:2 25047:1 25052:1 25053:1 25058:1 25067:1 25076:1 25080:1 25114:5 25122:1 25143:1 25144:2 25157:1 25161:2 25163:1 25179:3 25217:1 25225:1 25240:1 25244:1 25269:1 25285:1 25299:1 25300:2 25303:1 25326:1 25334:2 25357:1 25369:1 25373:1 25379:1 25386:1 25392:1 25407:2 25410:2 25417:1 25427:2 25428:1 25431:2 25448:1 25456:1 25461:1 25468:1 25481:1 25486:1 25491:1 25498:2 25502:2 25505:1 25511:3 25526:1 25527:1 25529:1 25541:1 25543:1 25553:2 25554:2 25568:1 25572:1 25580:2 25582:2 25586:1 25590:4 25600:2 25602:1 25605:1 25608:3 25609:2 25623:2 25630:1 25632:1 25637:4 25655:1 25690:1 25699:1 25720:1 25721:5 25725:1 25733:2 25738:1 25781:1 25782:1 25786:2 25793:3 25807:1 25811:1 25815:1 25824:2 25841:1 25846:1 25848:1 25852:1 25859:2 25867:1 25879:1 25903:1 25907:1 25917:1 25928:1 25934:1 25943:1 25948:1 25952:1 25973:1 25994:1 26000:1 26005:1 26011:2 26014:1 26018:4 26031:2 26052:1 26062:3 26070:1 26091:1 26099:1 26102:2 26107:1 26119:1 26120:1 26124:1 26138:1 26148:1 26151:1 26153:1 26155:1 26156:4 26162:1 26167:1 26183:1 26191:1 26203:2 26211:1 26212:1 26214:1 26215:2 26216:2 26226:1 26228:1 26236:1 26260:1 26261:1 26275:1 26279:1 26285:1 26306:1 26313:1 26324:2 26327:2 26337:3 26344:1 26345:1 26346:1 26347:1 26361:1 26362:2 26383:1 26385:4 26394:1 26407:1 26415:1 26424:1 26425:1 26426:1 26438:3 26444:1 26453:4 26458:1 26459:1 26460:1 26475:1 26496:1 26505:1 26508:5 26552:1 26555:1 26589:2 26590:1 26593:1 26602:6 26605:2 26608:1 26610:1 26612:3 26614:1 26628:3 26642:1 26644:1 26651:1 26667:1 26668:9 26671:1 26679:1 26694:1 26740:1 26743:1 26744:1 26776:1 26777:2 26779:4 26782:2 26787:1 26794:1 26795:1 26797:2 26808:2 26809:2 26815:1 26818:1 26820:1 26826:5 26827:1 26828:4 26842:1 26843:1 26844:1 26854:1 26874:1 26907:1 26914:1 26930:1 26949:3 26984:2 26995:2 26999:1 27004:4 27029:2 27051:1 27072:1 27087:3 27092:1 27097:1 27099:1 27102:1 27103:1 27114:1 27127:3 27138:1 27149:2 27153:2 27171:1 27183:1 27203:1 27213:2 27243:1 27251:2 27259:1 27260:13 27283:1 27287:2 27294:1 27331:11 27333:2 27339:1 27343:1 27354:1 27393:1 27396:4 27398:2 27401:1 27412:4 27415:2 27447:1 27460:7 27470:1 27478:1 27484:1 27500:3 27501:1 27508:1 27522:1 27526:1 27527:1 27542:1 27544:2 27573:1 27591:1 27594:1 27599:1 27601:1 27603:2 27619:8 27633:3 27651:1 27653:1 27677:3 27703:1 27723:1 27731:1 27752:1 27760:1 27767:1 27776:1 27779:1 27782:1 27787:30 27804:1 27808:1 27810:2 27813:3 27814:1 27816:1 27817:2 27819:1 27820:1 27825:1 27854:2 27859:3 27860:1 27862:1 27866:1 27878:1 27879:1 27889:1 27920:1 27922:1 27925:1 27957:1 27963:1 27973:5 27974:1 27983:1 27987:2 28000:2 28007:1 28011:4 28017:1 28038:1 28051:1 28052:1 28081:1 28154:1 28160:3 28179:3 28191:1 28194:1 28206:1 28263:1 28276:1 28278:1 28279:1 28287:1 28297:1 28298:3 28308:1 28310:1 28313:3 28316:1 28317:1 28318:2 28348:1 28370:31 28384:1 28398:3 28399:1 28409:1 28433:1 28436:1 28460:1 28464:1 28470:1 28472:2 28473:1 28482:2 28483:1 28489:6 28512:1 28523:1 28528:1 28541:1 28560:1 28567:1 28572:1 28577:3 28582:2 28587:1 28593:1 28608:1 28612:1 28620:1 28621:1 28639:1 28645:1 28647:2 28650:2 28686:1 28693:1 28752:1 28757:1 28786:1 28788:1 28811:1 28812:1 28814:2 28815:1 28817:2 28826:1 28831:1 28833:1 28852:1 28899:1 28908:1 28913:1 28929:1 28932:1 28939:2 28940:1 28949:1 28974:2 28983:2 28993:1 28996:2 29004:1 29014:1 29016:1 29020:1 29032:1 29041:3 29087:1 29126:1 29133:2 29141:1 29149:1 29169:1 29170:3 29174:1 29179:1 29190:4 29192:1 29196:1 29215:1 29233:1 29241:1 29251:1 29258:1 29271:1 29297:1 29320:1 29328:1 29330:1 29334:1 29367:2 29398:1 29417:1 29419:3 29426:2 29451:1 29455:2 29464:1 29480:1 29486:2 29493:1 29516:2 29527:1 29551:1 29554:1 29557:3 29564:2 29566:1 29568:2 29583:2 29584:2 29587:3 29591:1 29592:1 29604:1 29634:3 29635:1 29688:8 29695:1 29701:1 29715:1 29741:1 29749:1 29752:1 29756:1 29760:1 29761:1 29768:1 29775:1 29816:1 29822:1 29827:1 29840:1 29845:4 29857:1 29887:1 29888:1 29901:2 29911:1 29939:1 29952:1 29954:1 29957:1 29962:3 29969:1 29972:1 29995:1 30004:1 30015:2 30023:1 30035:1 30041:1 30079:3 30083:1 30084:2 30092:1 30093:1 30095:2 30099:5 30102:1 30103:1 30105:2 30119:1 30134:1 30144:2 30165:3 30192:1 30198:2 30199:3 30213:1 30215:1 30219:1 30235:2 30238:1 30248:1 30253:1 30261:4 30263:1 30273:1 30283:1 30284:1 30288:1 30290:1 30294:1 30295:1 30299:1 30307:1 30319:1 30320:1 30329:1 30330:1 30331:1 30350:1 30364:1 30370:1 30424:1 30434:1 30454:1 30478:1 30482:3 30483:1 30489:1 30493:1 30518:1 30535:4 30537:2 30538:2 30541:1 30552:2 30553:1 30601:1 30613:1 30617:2 30641:1 30677:1 30679:1 30688:1 30743:1 30777:1 30783:1 30787:1 30788:1 30789:2 30790:6 30794:1 30806:1 30814:5 30817:3 30823:1 30855:2 30857:1 30861:1 30907:1 30910:1 30912:2 30920:2 30931:1 30944:2 30951:1 30952:1 30960:2 30963:1 30970:1 30972:1 30981:4 30987:1 31002:1 31005:1 31015:1 31020:1 31026:1 31047:1 31051:4 31053:1 31055:2 31057:1 31059:1 31089:1 31092:1 31093:1 31095:1 31112:2 31134:1 31142:1 31148:1 31151:1 31153:1 31168:3 31177:1 31178:1 31181:1 31188:1 31201:1 31210:1 31223:1 31226:1 31235:2 31255:2 31264:4 31265:2 31276:1 31283:1 31286:1 31296:4 31317:2 31329:2 31334:3 31369:1 31376:1 31377:5 31384:1 31387:1 31404:1 31411:1 31413:12 31425:2 31444:2 31465:2 31478:1 31486:1 31550:1 31563:1 31569:1 31574:2 31578:3 31580:1 31588:1 31595:1 31603:2 31610:1 31612:1 31641:2 31648:1 31660:2 31663:1 31701:1 31706:1 31708:1 31712:1 31725:1 31737:1 31747:1 31751:1 31752:1 31753:2 31767:1 31768:1 31784:1 31785:1 31787:1 31797:1 31805:1 31808:2 31834:3 31848:1 31853:1 31866:2 31874:1 31882:1 31885:1 31890:1 31891:1 31893:2 31918:1 31919:1 31929:1 31930:4 31933:2 31946:2 31963:2 31964:1 31968:10 31969:1 31972:1 31993:2 32010:1 32022:1 32025:1 32036:1 32057:1 32066:5 32074:1 32090:1 32099:1 32106:1 32112:1 32115:1 32117:1 32136:1 32140:1 32153:1 32208:1 32219:2 32259:2 32285:3 32307:1 32311:1 32317:1 32319:1 32326:1 32329:1 32376:2 32405:1 32406:2 32413:1 32425:1 32436:1 32459:1 32461:2 32491:1 32492:1 32493:2 32505:2 32515:2 32532:1 32553:2 32555:1 32559:1 32574:1 32596:1 32606:1 32612:1 32624:1 32629:1 32636:1 32683:2 32691:1 32700:1 32725:2 32726:1 32732:1 32745:1 32749:2 32750:6 32774:3 32779:1 32785:2 32787:1 32801:4 32813:1 32820:1 32832:3 32846:1 32848:2 32879:1 32887:1 32890:6 32891:1 32893:1 32896:2 32908:1 32909:1 32913:1 32917:2 32924:1 32929:3 32941:3 32950:2 32955:1 32958:1 32965:1 32974:1 32984:1 32997:1 33027:1 33031:1 33053:1 33057:2 33066:1 33069:2 33080:2 33085:1 33089:1 33092:1 33094:3 33098:1 33100:1 33112:1 33118:1 33128:5 33133:2 33137:1 33141:2 33142:1 33144:2 33157:2 33168:1 33180:1 33182:1 33183:2 33218:2 33222:1 33231:1 33272:1 33276:2 33284:1 33287:1 33296:3 33297:1 33309:2 33330:1 33335:1 33346:1 33352:8 33388:1 33389:1 33404:1 33413:1 33422:1 33428:2 33439:1 33440:1 33444:1 33446:1 33449:1 33461:3 33467:1 33498:1 33502:1 33503:1 33504:1 33505:3 33512:1 33530:1 33533:5 33537:2 33543:3 33545:1 33552:1 33553:2 33555:1 33556:2 33563:3 33579:2 33591:2 33592:1 33595:3 33609:1 33616:1 33620:1 33623:1 33637:1 33663:7 33669:1 33680:4 33716:1 33720:1 33730:1 33732:1 33734:3 33738:1 33743:3 33760:1 33766:1 33769:1 33771:1 33794:2 33795:1 33819:1 33820:1 33824:1 33861:1 33865:1 33880:2 33902:1 33910:1 33921:1 33928:1 33930:1 33997:1 34003:1 34040:1 34052:1 34056:3 34057:2 34062:2 34063:1 34067:4 34071:3 34075:6 34076:1 34077:2 34080:1 34083:1 34085:3 34086:1 34099:1 34104:1 34133:1 34139:1 34144:1 34151:3 34157:1 34160:1 34174:1 34194:1 34197:1 34221:2 34246:2 34253:1 34283:2 34304:1 34306:1 34314:1 34321:2 34351:1 34353:1 34363:1 34364:1 34367:1 34371:1 34373:1 34385:2 34403:1 34407:1 34410:1 34413:3 34423:1 34435:13 34437:1 34440:1 34445:1 34455:1 34470:1 34478:3 34497:6 34526:1 34566:1 34570:1 34589:1 34596:4 34615:1 34619:1 34627:1 34629:1 34630:2 34634:9 34643:3 34654:1 34659:1 34662:1 34673:1 34674:1 34682:1 34689:1 34691:11 34701:1 34749:1 34757:2 34761:1 34782:1 34794:1 34804:2 34834:1 34862:1 34878:2 34924:1 34936:1 34968:1 34989:1 34996:39 34997:1 35022:1 35026:4 35031:2 35039:1 35041:5 35042:2 35056:1 35094:1 35098:1 35124:3 35128:8 35129:1 35135:2 35141:1 35149:1 35152:2 35157:1 35164:1 35167:1 35177:1 35184:1 35201:1 35207:2 35253:1 35265:1 35281:2 35289:2 35310:1 35311:1 35326:1 35342:1 35354:4 35382:2 35395:2 35410:1 35456:1 35464:3 35468:1 35470:1 35473:1 35488:1 35499:1 35503:2 35517:2 35520:1 35526:2 35529:1 35539:1 35582:1 35585:1 35589:2 35592:1 35602:2 35614:1 35625:2 35634:1 35635:1 35636:1 35648:1 35656:1 35661:1 35664:1 35665:1 35677:1 35681:2 35692:1 35696:1 35700:1 35714:1 35721:1 35731:1 35734:1 35746:1 35748:6 35749:1 35753:2 35757:3 35785:1 35789:3 35805:6 35831:4 35836:1 35837:2 35838:2 35845:1 35850:31 35862:2 35888:1 35901:1 35925:1 35939:1 35953:1 35957:1 35959:2 35964:1 35965:2 35966:4 35989:1 36007:1 36010:2 36011:1 36028:2 36033:1 36059:1 36065:1 36072:1 36075:2 36091:1 2 9:1 10:1 19:1 31:2 32:1 33:1 51:1 55:1 65:1 68:1 69:1 73:1 76:1 86:1 95:1 104:3 106:2 107:1 122:1 128:1 140:1 166:2 177:1 184:1 191:1 196:2 200:2 207:1 211:1 221:1 224:1 235:1 239:2 251:1 255:1 256:1 271:1 278:2 297:2 302:5 303:1 309:2 322:2 323:1 328:1 330:1 365:1 372:1 412:1 414:4 418:1 433:1 435:2 442:1 450:1 452:1 454:1 460:1 461:1 478:2 498:2 503:2 515:1 520:2 526:1 539:1 549:1 553:1 555:2 568:2 583:1 601:3 607:1 610:1 621:1 626:1 641:1 650:1 659:1 662:1 671:1 672:1 674:1 684:1 690:1 705:1 720:1 750:1 751:3 755:2 759:2 761:1 766:1 795:6 820:32 825:4 831:1 833:1 835:1 854:1 861:1 881:1 886:3 889:2 919:2 931:1 935:2 941:2 955:3 964:1 999:2 1019:2 1022:1 1024:3 1028:2 1032:1 1034:1 1035:3 1058:1 1082:3 1091:1 1102:2 1110:1 1124:1 1128:1 1135:3 1136:7 1140:2 1142:1 1150:5 1167:1 1176:4 1181:1 1194:2 1203:3 1206:7 1210:1 1212:2 1219:1 1226:2 1233:2 1234:3 1253:2 1256:1 1260:2 1270:3 1293:1 1301:2 1305:1 1308:1 1322:1 1326:4 1327:1 1330:1 1385:2 1386:1 1391:1 1403:1 1431:1 1442:1 1454:1 1459:3 1510:1 1537:1 1541:31 1550:1 1554:2 1555:2 1556:1 1564:4 1567:1 1583:1 1592:1 1595:2 1596:2 1603:1 1605:1 1610:1 1611:1 1613:1 1616:1 1617:2 1619:1 1623:1 1627:1 1632:1 1634:1 1638:1 1651:1 1652:1 1682:1 1705:1 1706:2 1740:4 1755:1 1757:1 1760:1 1763:1 1765:1 1771:2 1773:8 1792:1 1808:1 1809:1 1824:1 1836:3 1840:1 1843:1 1847:1 1849:2 1861:1 1870:1 1888:1 1889:1 1891:3 1895:2 1897:11 1899:1 1903:1 1904:1 1910:1 1911:1 1915:1 1918:1 1925:1 1929:2 1930:1 1932:1 1960:3 1970:1 1990:1 1991:1 1997:3 2013:1 2014:1 2031:1 2036:1 2037:2 2043:1 2058:2 2067:1 2088:1 2095:1 2097:1 2098:8 2102:1 2105:1 2106:2 2123:1 2139:1 2145:1 2147:1 2158:2 2160:1 2164:3 2172:1 2175:1 2180:1 2196:1 2198:1 2199:1 2202:1 2218:1 2249:1 2260:1 2265:1 2269:1 2276:1 2279:1 2282:1 2292:1 2307:1 2312:1 2317:2 2320:2 2327:1 2328:1 2345:1 2348:1 2352:3 2355:1 2364:1 2368:1 2372:1 2376:2 2379:2 2390:1 2400:2 2406:2 2418:2 2420:1 2436:1 2446:1 2454:1 2455:1 2462:1 2467:1 2486:7 2494:1 2508:1 2517:1 2522:2 2525:1 2546:1 2547:1 2557:1 2566:1 2595:1 2596:1 2598:1 2599:2 2604:1 2607:1 2619:1 2624:1 2638:1 2642:1 2644:1 2652:1 2655:1 2665:1 2676:1 2696:8 2721:1 2743:2 2746:1 2747:1 2783:1 2789:1 2817:1 2827:1 2848:1 2852:1 2857:1 2859:1 2861:2 2862:4 2865:2 2866:2 2867:2 2870:1 2872:5 2877:8 2881:3 2883:7 2887:3 2891:1 2895:1 2897:1 2900:1 2902:4 2906:3 2909:1 2910:1 2913:1 2918:1 2919:1 2920:1 2941:1 2942:1 2954:2 2955:1 2971:5 2974:1 2980:1 2999:2 3002:1 3004:1 3026:1 3027:1 3038:1 3042:1 3044:4 3045:3 3054:3 3057:1 3061:1 3075:2 3076:4 3086:3 3087:1 3098:1 3100:1 3106:1 3116:3 3131:1 3133:1 3137:1 3145:1 3165:1 3176:2 3177:2 3179:1 3186:1 3199:1 3206:1 3224:2 3240:1 3244:1 3255:2 3265:1 3266:1 3267:1 3312:1 3319:1 3322:2 3341:2 3348:2 3359:2 3366:1 3367:1 3371:1 3380:3 3381:1 3388:1 3389:1 3406:1 3410:1 3413:3 3415:4 3420:1 3423:3 3429:1 3443:1 3451:1 3454:1 3493:1 3497:3 3507:3 3510:5 3511:1 3516:1 3520:2 3539:2 3547:1 3560:1 3584:2 3590:1 3603:2 3612:2 3645:14 3648:32 3651:1 3652:3 3653:1 3663:2 3666:1 3678:1 3681:1 3682:1 3691:4 3692:1 3695:1 3698:1 3706:7 3736:4 3741:2 3753:1 3756:1 3784:2 3789:1 3792:1 3793:1 3794:1 3836:2 3843:1 3846:3 3851:1 3860:1 3867:1 3897:3 3926:1 3958:1 3962:1 4045:1 4067:4 4070:1 4091:1 4097:1 4101:1 4119:1 4142:1 4146:1 4147:1 4157:1 4161:3 4162:1 4171:1 4179:3 4193:1 4201:1 4211:1 4224:1 4226:4 4251:2 4279:1 4328:1 4334:1 4355:1 4359:1 4371:1 4375:2 4381:1 4383:1 4384:1 4395:1 4396:1 4402:2 4411:1 4412:1 4444:1 4448:1 4459:1 4474:1 4476:1 4479:1 4488:1 4492:1 4495:1 4517:2 4531:1 4539:1 4555:1 4564:1 4575:1 4580:1 4582:1 4601:1 4626:1 4643:3 4645:2 4646:1 4651:2 4654:2 4676:1 4722:3 4724:1 4755:1 4762:1 4767:2 4773:1 4780:3 4795:1 4803:1 4809:1 4813:1 4815:2 4819:1 4820:2 4830:2 4843:1 4854:1 4855:1 4857:1 4859:1 4867:3 4882:1 4885:1 4886:1 4887:1 4914:1 4920:31 4922:2 4927:1 4931:1 4947:1 4955:1 4985:1 4992:1 4993:1 5008:1 5015:2 5019:4 5020:3 5032:2 5039:1 5047:1 5054:5 5058:5 5059:2 5075:1 5076:2 5094:1 5119:1 5125:1 5134:1 5152:1 5153:2 5163:1 5170:3 5178:1 5190:1 5194:1 5232:1 5233:1 5235:1 5237:2 5240:1 5241:1 5247:1 5254:1 5272:1 5282:1 5295:1 5298:1 5299:2 5300:1 5302:3 5307:1 5308:3 5324:1 5348:1 5371:3 5402:2 5404:1 5408:1 5411:1 5416:1 5428:1 5435:2 5437:31 5444:1 5453:1 5456:1 5459:4 5465:1 5471:1 5473:1 5483:1 5486:1 5492:1 5555:2 5566:6 5587:1 5588:1 5598:1 5625:1 5638:3 5655:2 5662:2 5663:1 5672:2 5676:2 5679:1 5685:1 5687:1 5712:1 5731:7 5738:1 5760:2 5832:5 5843:1 5850:1 5869:1 5879:5 5885:1 5913:1 5924:1 5948:1 5960:1 5967:2 5969:2 5973:2 5974:1 5980:1 5983:3 5995:1 6004:1 6005:3 6017:1 6043:1 6049:1 6075:2 6078:2 6096:17 6097:2 6112:2 6115:1 6140:6 6149:2 6158:2 6187:2 6191:1 6207:1 6217:1 6253:4 6254:1 6257:3 6277:4 6278:4 6279:2 6282:1 6285:5 6291:1 6292:2 6293:4 6294:1 6303:1 6309:2 6312:5 6315:3 6316:1 6326:1 6358:1 6407:1 6411:2 6430:1 6451:1 6483:1 6495:1 6506:1 6528:1 6561:1 6580:1 6610:1 6622:1 6623:2 6628:1 6655:1 6679:1 6683:1 6684:1 6695:1 6698:2 6738:3 6739:1 6759:2 6787:1 6799:1 6801:2 6803:1 6807:1 6832:1 6835:1 6843:2 6859:1 6861:1 6867:3 6870:1 6942:1 6956:1 6957:1 6968:1 6970:1 6972:1 6982:2 6983:1 6991:1 6996:1 7008:1 7010:1 7012:1 7036:2 7038:2 7046:1 7053:1 7061:2 7062:8 7065:1 7070:1 7072:1 7076:1 7083:1 7086:2 7119:2 7130:2 7138:1 7140:1 7164:2 7167:1 7205:1 7213:1 7225:2 7243:1 7250:1 7252:2 7264:2 7289:10 7295:3 7346:1 7366:1 7377:1 7383:1 7394:1 7397:1 7421:1 7422:1 7423:2 7432:3 7434:1 7451:1 7455:1 7494:1 7496:1 7525:1 7532:1 7537:2 7561:2 7567:2 7580:2 7583:1 7589:1 7591:1 7599:1 7603:1 7604:3 7607:1 7608:1 7616:1 7618:1 7622:1 7630:1 7635:1 7656:1 7665:1 7684:1 7690:1 7707:2 7708:2 7709:1 7715:1 7716:1 7718:1 7721:2 7722:1 7725:1 7727:1 7728:1 7729:3 7734:2 7736:1 7739:2 7741:2 7742:1 7748:1 7764:1 7782:1 7805:1 7822:2 7825:1 7840:1 7847:1 7852:4 7857:2 7860:1 7871:2 7880:1 7895:1 7905:1 7937:2 7945:1 7965:1 7966:1 7974:1 7989:7 7995:1 8002:1 8004:4 8006:1 8007:1 8008:1 8009:2 8014:4 8015:2 8016:1 8017:1 8019:4 8020:8 8021:1 8022:1 8030:1 8034:1 8054:1 8077:1 8082:1 8085:2 8125:1 8136:1 8143:1 8176:1 8185:2 8186:1 8200:3 8203:3 8224:1 8243:1 8257:1 8260:1 8284:1 8293:1 8295:1 8297:1 8308:1 8315:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:2 8349:1 8370:2 8377:1 8393:2 8421:1 8427:1 8446:1 8449:1 8481:1 8489:1 8493:1 8496:1 8501:3 8524:2 8564:2 8566:1 8570:1 8577:1 8597:1 8602:1 8617:1 8641:1 8648:1 8661:1 8691:1 8695:2 8709:1 8714:1 8731:1 8738:1 8751:1 8772:1 8842:1 8845:1 8849:1 8854:2 8866:1 8880:1 8883:6 8905:1 8940:1 8943:1 8946:1 8955:1 8960:1 8966:2 8975:1 8978:2 8996:1 9007:1 9012:1 9026:1 9033:1 9052:2 9060:1 9090:1 9113:1 9122:1 9123:2 9126:1 9134:1 9138:1 9143:1 9146:1 9153:1 9160:1 9194:1 9205:1 9216:1 9217:2 9231:1 9253:1 9278:1 9282:2 9306:1 9307:1 9325:1 9328:1 9333:1 9337:1 9338:6 9372:9 9374:1 9381:1 9394:1 9426:1 9428:2 9433:1 9437:1 9446:1 9470:2 9484:1 9492:1 9495:1 9499:1 9526:4 9529:1 9577:1 9586:1 9588:1 9612:3 9619:1 9628:11 9629:11 9637:1 9655:1 9656:1 9657:5 9661:1 9688:3 9694:4 9695:1 9702:47 9707:1 9708:1 9711:2 9719:1 9720:1 9723:1 9733:15 9738:4 9744:1 9754:1 9758:1 9761:1 9778:1 9780:1 9781:1 9787:2 9793:2 9803:1 9813:1 9849:5 9866:2 9870:1 9885:1 9895:1 9924:1 9926:2 9942:3 9957:1 9963:1 9967:4 9968:1 9975:1 9978:1 9999:6 10011:1 10023:1 10058:1 10063:2 10099:2 10103:1 10161:1 10167:1 10171:1 10175:1 10209:1 10213:1 10223:1 10235:2 10242:1 10261:2 10284:1 10286:1 10298:1 10313:1 10314:1 10321:32 10331:1 10333:1 10338:1 10342:1 10349:1 10356:1 10359:15 10360:4 10376:1 10378:2 10399:1 10401:1 10406:1 10407:1 10411:1 10412:2 10431:1 10444:1 10452:1 10470:40 10488:1 10520:2 10552:1 10559:1 10573:1 10598:1 10599:1 10612:1 10624:1 10669:1 10683:1 10686:2 10695:1 10697:1 10701:2 10703:1 10704:1 10706:1 10707:1 10711:1 10716:2 10717:5 10718:1 10736:1 10744:1 10749:2 10772:3 10773:1 10778:1 10789:2 10791:1 10792:1 10796:1 10798:1 10807:2 10808:2 10812:1 10813:1 10826:1 10848:1 10850:1 10864:1 10878:1 10884:1 10895:1 10900:2 10911:3 10937:1 10979:1 10991:1 10994:1 11002:2 11075:3 11078:1 11081:1 11109:2 11129:1 11163:2 11165:1 11169:1 11179:1 11183:2 11207:1 11212:4 11226:1 11230:1 11231:1 11233:3 11238:1 11247:3 11258:1 11268:1 11270:1 11272:1 11311:1 11320:1 11325:1 11334:3 11340:1 11343:1 11347:2 11378:1 11382:5 11391:4 11402:1 11404:1 11412:1 11422:1 11457:1 11489:4 11522:3 11523:1 11556:1 11557:4 11561:2 11564:1 11569:2 11571:3 11572:1 11573:1 11575:1 11583:1 11585:2 11587:2 11598:1 11617:1 11619:1 11625:1 11628:1 11636:1 11640:1 11641:1 11642:2 11643:1 11645:1 11654:1 11668:1 11675:1 11678:3 11690:8 11694:1 11697:2 11707:2 11718:2 11720:1 11723:1 11739:2 11744:1 11745:1 11755:1 11770:1 11771:1 11774:2 11776:1 11791:1 11793:2 11795:2 11804:1 11815:1 11835:1 11840:1 11851:1 11861:1 11864:1 11865:2 11872:2 11876:2 11882:1 11885:1 11887:1 11888:1 11899:1 11902:1 11903:1 11912:1 11917:1 11918:1 11919:8 11930:1 11931:2 11932:9 11936:1 11947:1 11955:1 11959:1 11961:2 11966:1 11969:1 11976:1 11978:1 11982:3 11985:1 11988:1 11992:1 12004:1 12014:1 12033:1 12046:1 12052:1 12056:1 12057:1 12073:1 12076:1 12078:1 12081:1 12082:1 12083:2 12086:1 12096:1 12104:1 12111:1 12112:1 12113:1 12120:1 12131:1 12146:1 12147:1 12186:1 12191:1 12214:1 12221:6 12229:1 12230:1 12231:1 12237:3 12239:4 12248:1 12255:1 12263:1 12269:1 12275:1 12282:1 12301:1 12324:1 12339:1 12359:1 12361:1 12391:31 12401:1 12407:1 12420:1 12428:1 12435:2 12446:1 12451:1 12453:1 12458:1 12471:1 12473:1 12479:1 12490:2 12493:1 12497:1 12508:1 12520:1 12521:1 12532:1 12538:1 12540:4 12547:3 12552:1 12561:2 12570:2 12580:1 12592:1 12608:1 12618:2 12619:2 12630:1 12641:1 12643:2 12651:2 12654:2 12669:4 12673:5 12684:1 12692:3 12694:1 12734:5 12756:1 12757:1 12760:2 12774:1 12777:1 12794:1 12821:1 12824:2 12829:1 12837:1 12844:1 12848:1 12850:1 12867:7 12879:1 12881:1 12898:1 12936:1 12958:1 12977:2 12981:1 12988:1 13013:5 13028:1 13040:2 13049:1 13051:1 13052:1 13058:1 13078:1 13079:1 13080:1 13089:1 13096:1 13112:1 13113:7 13128:1 13154:3 13175:1 13179:1 13187:1 13213:1 13234:1 13241:1 13258:4 13267:1 13282:1 13283:5 13297:1 13303:1 13316:1 13325:2 13357:2 13377:1 13384:1 13385:2 13411:1 13412:4 13415:1 13418:2 13420:6 13429:1 13443:1 13454:1 13464:2 13468:1 13471:1 13474:1 13481:1 13483:1 13487:1 13493:7 13498:1 13505:1 13509:1 13516:1 13517:2 13537:1 13550:1 13568:1 13588:1 13601:1 13632:8 13633:1 13647:1 13648:1 13657:1 13669:2 13673:1 13682:1 13686:2 13690:3 13694:3 13704:1 13710:1 13721:4 13737:1 13749:1 13761:1 13765:2 13767:1 13768:1 13777:1 13793:1 13798:8 13803:1 13808:1 13823:1 13824:3 13826:4 13828:1 13837:1 13845:2 13849:1 13859:1 13880:1 13881:1 13891:6 13895:1 13897:1 13898:1 13900:1 13901:1 13910:2 13919:1 13921:2 13931:1 13942:1 13956:1 13972:2 13998:1 14008:1 14009:1 14015:1 14029:1 14032:3 14036:1 14042:1 14070:2 14071:2 14092:1 14093:1 14095:2 14105:2 14107:1 14114:1 14115:1 14116:3 14119:1 14122:2 14124:1 14128:1 14134:1 14145:2 14146:4 14149:1 14152:1 14154:1 14162:1 14186:1 14189:3 14191:1 14218:1 14228:1 14235:5 14263:1 14265:1 14280:1 14286:1 14292:1 14296:1 14302:1 14308:1 14309:1 14322:8 14337:2 14340:2 14342:1 14376:1 14380:1 14406:1 14410:1 14411:1 14416:1 14430:1 14448:2 14464:1 14488:1 14491:6 14515:1 14517:1 14519:1 14523:1 14528:1 14533:3 14550:1 14554:2 14555:1 14559:1 14564:1 14567:6 14568:3 14571:2 14577:1 14580:5 14586:1 14611:1 14614:1 14621:2 14628:1 14632:2 14636:1 14638:6 14642:1 14643:1 14654:1 14666:1 14667:1 14675:2 14686:1 14689:1 14716:1 14727:3 14735:1 14737:1 14742:4 14744:1 14772:2 14787:1 14791:3 14803:1 14840:1 14844:1 14854:1 14869:1 14870:1 14910:1 14913:1 14940:1 14941:2 14960:1 14984:1 15012:1 15014:1 15030:1 15037:3 15046:1 15060:4 15079:1 15083:1 15086:1 15095:1 15123:1 15132:1 15140:1 15150:1 15151:1 15152:3 15160:1 15161:3 15162:1 15169:1 15178:1 15185:1 15197:1 15205:1 15210:1 15220:1 15222:1 15250:1 15269:1 15278:1 15292:1 15312:2 15315:5 15326:1 15345:1 15383:1 15385:2 15400:1 15414:2 15448:1 15460:1 15472:1 15487:1 15502:3 15519:1 15525:1 15526:1 15552:1 15574:1 15577:1 15584:1 15587:1 15595:1 15598:1 15675:1 15705:1 15707:1 15746:1 15747:1 15776:3 15778:32 15782:1 15786:1 15794:1 15797:1 15800:4 15803:1 15813:1 15826:1 15844:6 15855:1 15864:2 15868:1 15885:1 15895:1 15900:1 15910:1 15912:1 15915:1 15942:2 15943:1 15944:2 15981:1 16001:1 16006:2 16008:1 16013:1 16017:1 16022:1 16083:1 16099:2 16114:1 16134:1 16142:2 16147:1 16149:1 16173:1 16190:1 16196:1 16198:1 16201:1 16213:1 16217:1 16236:1 16241:1 16253:1 16268:1 16269:1 16285:1 16293:1 16294:1 16299:1 16303:1 16304:1 16320:1 16327:12 16332:4 16354:1 16357:1 16365:2 16372:1 16375:1 16394:1 16456:1 16460:1 16475:1 16490:1 16499:1 16502:2 16505:2 16510:5 16516:5 16528:1 16535:1 16559:1 16594:1 16609:11 16613:1 16622:1 16643:1 16720:1 16729:1 16731:1 16732:2 16742:1 16775:1 16792:3 16797:4 16803:2 16823:1 16831:1 16835:1 16837:1 16843:1 16854:1 16862:1 16869:2 16874:2 16882:1 16889:1 16897:1 16898:1 16914:2 16918:1 16929:2 16964:1 16968:2 16970:3 16971:1 16973:1 16975:1 16977:2 16978:1 16979:10 16980:1 16981:1 16983:2 17002:1 17003:2 17004:1 17008:1 17009:1 17013:6 17022:1 17026:1 17033:2 17064:1 17075:1 17076:1 17082:1 17100:1 17114:1 17120:1 17125:1 17152:1 17154:1 17156:1 17161:2 17172:10 17175:1 17181:2 17193:1 17204:1 17214:1 17217:1 17230:1 17234:1 17243:1 17246:1 17273:1 17276:1 17278:2 17286:5 17303:1 17309:1 17315:3 17319:1 17320:2 17333:11 17336:7 17417:2 17426:3 17436:1 17438:1 17449:4 17450:1 17481:1 17516:1 17545:1 17547:3 17562:1 17564:2 17571:1 17598:1 17601:1 17607:2 17623:1 17629:1 17636:1 17639:1 17675:4 17679:1 17723:1 17762:1 17769:1 17784:1 17792:2 17794:1 17798:1 17806:2 17813:1 17814:2 17817:3 17829:1 17835:2 17836:1 17849:1 17850:2 17858:2 17869:1 17903:1 17918:1 17921:1 17924:1 17925:2 17929:1 17941:1 17942:2 17943:1 17945:1 17955:1 17957:2 17972:1 17976:1 17978:2 17981:1 17984:1 17992:1 17993:1 17997:1 17998:1 17999:1 18000:1 18005:1 18011:1 18013:1 18016:1 18030:1 18032:1 18037:2 18039:1 18048:1 18057:2 18073:1 18080:1 18092:32 18094:1 18101:3 18105:1 18106:1 18110:1 18120:1 18127:1 18128:1 18137:1 18184:1 18198:1 18200:1 18203:5 18214:1 18215:1 18221:2 18244:1 18249:1 18270:3 18274:1 18276:1 18277:1 18290:1 18297:1 18298:1 18320:3 18325:1 18339:1 18342:1 18345:1 18390:1 18392:1 18396:1 18442:1 18463:2 18470:2 18471:1 18474:1 18485:1 18506:1 18535:1 18549:1 18559:1 18560:1 18561:2 18563:2 18574:1 18582:1 18593:1 18600:2 18601:1 18603:1 18608:7 18614:1 18645:3 18651:1 18673:1 18676:1 18696:1 18703:1 18708:2 18712:1 18715:1 18732:1 18747:1 18752:1 18767:2 18769:1 18779:2 18781:3 18793:1 18794:1 18811:1 18823:1 18867:1 18870:1 18876:2 18898:2 18928:1 18953:3 18954:1 18959:1 18968:1 18989:1 18993:2 18997:1 19019:1 19029:1 19050:1 19060:1 19064:2 19067:1 19083:1 19087:2 19096:1 19097:1 19120:1 19141:1 19154:1 19169:1 19175:1 19191:1 19192:3 19193:3 19204:1 19225:1 19235:1 19263:5 19269:2 19276:1 19287:1 19303:1 19310:1 19336:1 19361:1 19397:1 19406:1 19416:1 19424:1 19428:1 19437:2 19450:1 19452:1 19458:4 19469:1 19471:1 19475:1 19490:5 19496:3 19500:1 19513:4 19514:1 19518:1 19525:1 19526:1 19529:1 19532:1 19538:3 19548:1 19567:1 19602:1 19605:1 19615:5 19616:1 19620:2 19641:2 19645:4 19649:2 19658:1 19664:1 19670:1 19672:1 19679:1 19689:1 19691:3 19703:1 19708:2 19724:1 19772:1 19775:1 19787:1 19796:1 19806:1 19810:12 19814:2 19815:1 19820:1 19851:3 19854:3 19858:1 19865:2 19868:2 19894:2 19901:1 19904:2 19905:1 19907:1 19908:2 19932:12 19947:1 19956:1 19961:1 19967:1 19976:3 20027:3 20034:1 20046:2 20061:1 20065:1 20074:1 20076:1 20078:1 20091:2 20109:4 20110:2 20111:1 20115:3 20117:1 20124:1 20125:3 20126:1 20127:2 20130:1 20153:1 20168:1 20174:1 20201:2 20221:1 20231:1 20232:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20295:1 20296:1 20318:1 20324:1 20325:1 20350:1 20355:1 20369:2 20383:1 20390:1 20431:1 20444:1 20445:1 20446:2 20455:1 20499:1 20522:1 20537:1 20540:2 20556:2 20566:1 20568:1 20572:1 20588:3 20593:1 20604:1 20606:8 20607:1 20608:1 20617:1 20643:1 20646:1 20649:1 20654:1 20679:2 20680:1 20689:1 20690:1 20691:2 20727:1 20741:1 20746:1 20751:3 20754:1 20762:2 20781:1 20783:1 20785:2 20796:1 20799:2 20816:1 20818:1 20865:1 20878:1 20885:1 20900:1 20917:1 20918:1 20930:1 20941:44 20948:1 20949:2 20974:1 20978:1 20980:1 20997:1 21000:1 21003:4 21044:1 21064:1 21071:1 21072:1 21081:1 21083:1 21097:1 21101:1 21116:1 21124:3 21130:2 21145:2 21149:1 21155:1 21170:1 21174:2 21204:1 21209:1 21214:1 21215:1 21235:1 21261:1 21263:1 21284:1 21292:1 21299:1 21316:1 21318:2 21322:2 21323:1 21324:1 21337:1 21371:1 21376:1 21423:1 21443:1 21445:1 21473:1 21477:1 21500:1 21503:1 21508:1 21512:1 21513:1 21518:1 21522:2 21524:1 21530:1 21540:1 21566:1 21586:1 21591:1 21592:1 21593:1 21597:1 21602:1 21603:1 21608:2 21612:2 21634:1 21643:1 21686:2 21696:1 21701:1 21704:2 21713:2 21724:1 21754:1 21788:1 21806:1 21809:1 21819:1 21823:4 21827:1 21829:2 21831:1 21843:1 21864:1 21866:1 21872:2 21874:1 21875:2 21886:1 21892:1 21899:1 21917:2 21925:1 21939:2 21943:2 21975:4 21976:1 21987:4 22008:4 22009:1 22032:1 22037:1 22067:1 22076:1 22079:6 22083:1 22084:2 22123:3 22143:2 22169:1 22173:1 22177:2 22181:1 22186:2 22190:1 22207:1 22247:1 22251:2 22298:1 22300:4 22304:2 22305:2 22308:1 22315:1 22327:1 22345:1 22347:1 22361:1 22362:1 22386:1 22388:2 22391:1 22406:1 22424:1 22429:4 22490:1 22493:2 22497:1 22516:1 22530:2 22547:1 22572:1 22584:1 22628:9 22643:1 22650:1 22666:1 22668:1 22677:2 22715:1 22720:1 22727:4 22754:1 22764:1 22781:1 22783:1 22791:1 22800:1 22806:2 22809:1 22816:1 22824:1 22839:1 22866:1 22870:1 22883:2060 22893:2 22899:1 22909:2 22923:1 22944:1 22966:1 22969:1 22981:1 22984:1 23008:1 23031:3 23039:1 23043:3 23044:1 23079:1 23098:1 23113:1 23119:1 23129:1 23139:1 23164:1 23171:1 23189:1 23193:2 23202:1 23223:1 23224:1 23270:1 23279:1 23293:1 23304:1 23320:1 23321:1 23348:1 23365:2 23371:1 23411:1 23427:1 23456:1 23457:1 23468:2 23470:1 23474:1 23482:1 23492:1 23505:1 23508:1 23520:1 23521:3 23523:2 23543:1 23549:1 23565:1 23603:1 23607:6 23640:5 23647:1 23653:1 23664:1 23698:1 23706:1 23708:1 23712:1 23715:1 23718:1 23735:1 23763:1 23766:1 23773:1 23784:1 23787:1 23789:1 23800:1 23805:1 23812:1 23821:1 23833:6 23834:4 23874:1 23880:4 23900:1 23914:2 23922:1 23932:1 23934:1 23947:22 23958:1 23978:1 23979:2 24012:2 24013:1 24019:1 24020:1 24044:1 24047:4 24049:1 24052:1 24064:2 24066:1 24079:1 24092:1 24097:2 24105:3 24106:1 24118:1 24154:2 24185:1 24191:1 24197:1 24205:1 24209:4 24217:1 24233:1 24239:2 24240:1 24255:1 24268:1 24271:1 24289:2 24292:1 24306:1 24314:1 24327:1 24332:1 24342:1 24345:2 24347:1 24364:1 24369:1 24376:4 24385:1 24405:1 24424:1 24444:1 24449:1 24450:1 24452:1 24474:1 24479:1 24480:3 24482:2 24483:1 24491:1 24511:1 24518:2 24534:1 24539:2 24553:1 24566:1 24591:2 24592:7 24598:1 24601:1 24604:1 24607:1 24612:1 24620:1 24630:2 24640:1 24643:1 24651:2 24653:2 24656:3 24658:5 24663:1 24674:1 24680:2 24681:6 24682:1 24683:1 24699:1 24700:1 24704:1 24708:5 24728:2 24729:1 24753:2 24754:1 24762:3 24774:1 24781:4 24792:1 24794:1 24808:2 24813:1 24820:1 24826:2 24850:1 24853:1 24869:1 24883:5 24894:2 24918:1 24919:1 24924:1 24945:1 24956:1 24978:1 25000:1 25031:2 25047:1 25052:1 25053:1 25058:1 25067:1 25076:1 25080:1 25114:5 25122:1 25123:1 25143:1 25144:2 25157:1 25161:2 25163:1 25179:3 25217:1 25225:1 25240:1 25244:1 25269:1 25285:1 25299:1 25300:2 25303:1 25326:1 25334:2 25357:1 25369:2 25373:1 25379:1 25386:1 25392:1 25407:2 25410:2 25417:1 25423:1 25427:2 25428:1 25431:2 25448:1 25450:1 25456:1 25461:1 25468:1 25481:1 25486:1 25491:1 25498:2 25502:2 25505:1 25511:3 25526:1 25527:1 25529:1 25541:1 25543:1 25553:2 25554:2 25568:1 25572:1 25580:2 25582:2 25586:1 25590:4 25600:2 25602:1 25605:1 25608:3 25609:2 25623:2 25630:1 25632:1 25637:4 25655:1 25690:1 25699:1 25720:1 25721:5 25725:1 25733:2 25738:1 25781:1 25782:1 25786:2 25793:3 25807:1 25811:1 25815:1 25824:2 25841:1 25846:1 25848:1 25852:1 25859:2 25867:1 25879:1 25903:1 25907:1 25917:1 25928:1 25934:1 25943:1 25948:1 25952:1 25973:1 25994:1 26000:1 26005:1 26011:2 26014:1 26018:4 26031:2 26052:1 26062:3 26070:1 26091:1 26099:1 26102:2 26107:1 26119:1 26120:1 26124:1 26138:1 26148:1 26151:1 26153:1 26155:1 26156:4 26162:1 26167:1 26183:1 26191:1 26203:2 26204:1 26211:1 26212:1 26214:1 26215:2 26216:2 26226:1 26228:2 26236:1 26260:1 26261:1 26275:1 26278:1 26279:1 26285:1 26306:1 26313:1 26322:1 26324:2 26327:2 26337:3 26344:1 26345:1 26346:1 26347:1 26361:1 26362:2 26383:1 26385:4 26394:1 26407:1 26415:1 26424:1 26425:1 26426:1 26438:3 26444:1 26453:4 26458:1 26459:1 26460:1 26475:1 26496:1 26505:1 26507:1 26508:6 26552:1 26555:1 26589:2 26590:1 26593:1 26602:7 26605:2 26608:1 26610:1 26612:4 26614:1 26628:3 26642:1 26644:1 26651:1 26667:1 26668:9 26671:1 26679:1 26694:1 26740:1 26743:1 26744:1 26776:1 26777:2 26779:4 26782:2 26787:1 26794:1 26795:1 26797:2 26808:2 26809:2 26815:1 26818:1 26820:1 26826:5 26827:1 26828:4 26842:1 26843:1 26844:1 26854:1 26874:1 26907:1 26914:1 26930:1 26949:3 26984:2 26995:2 26999:1 27004:4 27029:2 27051:1 27072:1 27087:3 27092:1 27097:1 27099:1 27102:1 27103:1 27114:1 27127:3 27138:1 27149:2 27153:2 27171:1 27183:1 27203:1 27213:2 27243:1 27251:2 27259:1 27260:13 27283:1 27287:2 27294:1 27331:12 27333:2 27339:1 27343:1 27354:1 27358:1 27393:1 27396:4 27398:2 27401:1 27412:4 27415:2 27447:1 27460:7 27470:1 27478:1 27484:1 27500:3 27501:1 27508:1 27522:1 27526:1 27527:1 27542:1 27544:2 27573:1 27591:1 27594:1 27599:1 27601:1 27603:2 27619:9 27633:3 27651:1 27653:1 27677:3 27703:1 27723:1 27731:1 27752:1 27760:1 27767:1 27776:1 27779:1 27782:1 27787:31 27804:1 27808:1 27810:2 27813:3 27814:1 27816:1 27817:2 27819:1 27820:1 27825:1 27854:2 27859:3 27860:1 27862:1 27866:1 27878:1 27879:1 27889:1 27920:1 27922:1 27925:1 27957:1 27963:1 27973:5 27974:1 27983:1 27987:2 28000:2 28007:1 28011:4 28017:1 28038:1 28051:1 28052:1 28081:1 28154:1 28160:3 28179:3 28191:1 28194:1 28206:1 28263:1 28276:1 28278:1 28279:1 28287:1 28297:1 28298:3 28308:1 28310:1 28313:3 28316:1 28317:1 28318:2 28348:1 28370:32 28384:1 28398:3 28399:1 28409:1 28433:1 28436:1 28460:1 28464:1 28470:1 28472:2 28473:1 28482:2 28483:1 28489:6 28512:1 28523:1 28528:1 28541:1 28560:1 28567:1 28572:1 28577:3 28582:2 28587:1 28593:1 28608:1 28612:1 28620:1 28621:1 28639:1 28645:1 28647:2 28650:2 28686:2 28693:1 28752:1 28757:1 28786:1 28788:1 28811:1 28812:1 28814:2 28815:1 28817:2 28826:1 28831:1 28833:1 28852:1 28899:1 28908:1 28913:1 28929:1 28932:1 28939:2 28940:1 28949:1 28974:2 28983:2 28993:1 28996:2 29004:1 29014:1 29016:1 29020:1 29032:1 29041:3 29087:1 29123:1 29126:1 29133:2 29141:1 29149:1 29169:1 29170:3 29174:1 29179:1 29187:1 29190:4 29192:1 29196:1 29215:1 29233:1 29241:1 29251:1 29258:1 29271:1 29297:1 29320:1 29328:1 29330:1 29334:1 29363:1 29367:2 29398:1 29417:1 29419:3 29426:2 29451:1 29455:2 29464:1 29480:1 29486:2 29493:1 29516:2 29527:1 29551:1 29554:1 29557:3 29564:2 29566:1 29568:2 29583:2 29584:2 29587:3 29591:1 29592:1 29604:1 29634:3 29635:1 29639:1 29671:1 29688:8 29695:1 29701:1 29715:1 29741:1 29749:1 29752:1 29756:1 29760:1 29761:1 29768:1 29775:1 29816:1 29822:1 29827:1 29840:1 29845:4 29857:1 29887:1 29888:1 29901:2 29911:1 29939:1 29952:1 29954:1 29957:1 29962:3 29969:1 29972:1 29995:1 30004:1 30015:2 30023:1 30035:1 30041:1 30079:3 30083:1 30084:2 30092:1 30093:1 30095:2 30099:5 30102:1 30103:1 30105:2 30119:1 30134:1 30144:2 30165:3 30192:1 30198:2 30199:3 30213:1 30215:1 30219:1 30235:2 30238:1 30248:1 30253:1 30261:4 30263:1 30273:1 30283:1 30284:1 30288:1 30290:1 30294:1 30295:1 30299:1 30307:1 30319:1 30320:1 30329:1 30330:1 30331:1 30332:1 30350:1 30364:1 30370:1 30424:1 30434:1 30454:1 30478:1 30482:3 30483:1 30489:1 30493:1 30518:1 30535:4 30537:2 30538:2 30541:1 30552:2 30553:1 30601:1 30613:1 30617:2 30641:1 30677:1 30679:1 30688:1 30743:1 30777:1 30783:1 30787:1 30788:1 30789:2 30790:6 30794:1 30806:1 30814:5 30817:3 30823:1 30855:2 30857:1 30861:1 30907:1 30910:1 30912:2 30920:2 30931:1 30934:1 30944:2 30951:1 30952:1 30960:2 30963:1 30970:1 30972:1 30981:4 30987:1 31002:1 31005:1 31015:1 31020:1 31026:1 31047:1 31051:4 31053:1 31054:1 31055:2 31057:1 31059:1 31089:1 31092:1 31093:1 31095:1 31112:2 31134:1 31142:1 31148:1 31151:1 31153:1 31168:3 31177:1 31178:1 31181:1 31188:1 31201:1 31210:1 31223:1 31226:1 31235:2 31255:4 31264:4 31265:2 31276:1 31283:1 31286:1 31296:4 31317:4 31329:2 31334:3 31369:1 31376:1 31377:5 31384:1 31387:1 31404:1 31411:1 31413:12 31425:2 31444:2 31465:2 31478:1 31486:1 31550:1 31563:1 31569:1 31574:2 31578:3 31580:1 31588:1 31595:1 31603:2 31610:1 31612:1 31641:2 31648:1 31660:2 31663:1 31701:1 31706:1 31708:1 31712:1 31725:1 31737:1 31747:1 31751:1 31752:1 31753:2 31757:1 31767:1 31768:1 31784:1 31785:1 31787:1 31797:1 31805:1 31808:2 31834:3 31848:1 31853:1 31866:2 31874:1 31882:1 31885:1 31890:1 31891:1 31893:2 31918:1 31919:1 31929:1 31930:4 31933:2 31946:2 31963:2 31964:1 31968:11 31969:1 31972:1 31993:2 32010:1 32022:1 32025:1 32036:1 32057:1 32066:5 32074:1 32085:1 32090:1 32099:1 32106:1 32112:1 32115:1 32117:1 32136:1 32140:1 32141:1 32153:1 32208:1 32219:2 32259:2 32285:3 32307:1 32311:1 32317:1 32319:1 32326:1 32329:1 32376:2 32405:1 32406:2 32413:1 32425:1 32436:1 32459:1 32461:2 32491:1 32492:1 32493:2 32505:2 32515:2 32532:1 32553:2 32555:1 32559:1 32574:1 32596:1 32606:1 32612:1 32624:1 32629:1 32636:1 32683:2 32691:1 32700:1 32725:2 32726:1 32732:1 32745:1 32749:2 32750:6 32774:3 32779:1 32785:2 32787:1 32801:4 32813:1 32820:1 32832:3 32846:1 32848:2 32879:1 32887:1 32890:6 32891:1 32893:1 32896:2 32908:1 32909:1 32913:1 32917:2 32924:1 32929:3 32941:3 32950:2 32955:1 32958:1 32965:1 32974:1 32984:1 32997:1 33027:1 33031:1 33053:1 33057:2 33066:1 33069:2 33080:2 33085:1 33089:1 33092:1 33094:3 33098:1 33100:1 33112:1 33118:1 33128:5 33133:3 33137:1 33141:2 33142:1 33144:2 33157:2 33168:1 33180:1 33182:1 33183:2 33218:2 33222:1 33231:1 33272:1 33276:2 33284:1 33287:1 33296:3 33297:1 33309:2 33330:1 33333:1 33335:1 33346:1 33352:8 33388:1 33389:1 33404:1 33413:1 33422:1 33428:2 33439:1 33440:1 33444:1 33446:1 33449:1 33461:3 33467:1 33498:1 33502:1 33503:1 33504:1 33505:3 33512:1 33530:1 33533:5 33537:2 33543:3 33545:1 33552:1 33553:2 33555:1 33556:2 33563:3 33579:2 33591:2 33592:1 33595:3 33609:1 33616:1 33620:1 33623:1 33637:1 33663:7 33669:1 33680:4 33716:1 33720:1 33730:1 33732:1 33734:3 33738:1 33743:3 33760:1 33766:1 33769:1 33771:1 33772:1 33794:2 33795:1 33819:1 33820:1 33824:1 33861:1 33865:1 33880:2 33902:1 33910:1 33921:1 33928:1 33930:1 33989:1 33997:1 34003:1 34040:1 34052:1 34056:3 34057:2 34062:2 34063:1 34067:4 34071:3 34075:6 34076:1 34077:2 34080:1 34083:1 34085:3 34086:1 34099:1 34104:1 34133:1 34139:1 34144:1 34151:3 34157:1 34160:1 34174:1 34194:1 34197:1 34221:2 34246:2 34253:1 34283:2 34304:1 34306:1 34314:1 34321:2 34351:1 34353:1 34363:1 34364:1 34367:1 34371:1 34373:1 34385:2 34403:1 34407:1 34410:1 34413:3 34423:1 34435:13 34437:1 34440:1 34445:1 34455:1 34470:1 34478:3 34497:6 34526:1 34566:1 34570:1 34589:1 34596:4 34615:1 34619:1 34627:1 34629:1 34630:2 34634:10 34643:3 34654:1 34659:1 34662:1 34673:1 34674:1 34682:1 34689:1 34691:12 34701:1 34749:1 34757:2 34761:1 34782:1 34794:1 34804:2 34834:1 34862:1 34878:2 34924:1 34936:1 34957:1 34968:1 34989:1 34996:40 34997:1 35022:1 35026:4 35031:2 35039:2 35041:5 35042:2 35043:1 35055:1 35056:1 35094:1 35098:1 35124:3 35128:9 35129:1 35135:2 35141:1 35149:1 35152:2 35157:1 35164:1 35167:1 35177:1 35184:1 35201:1 35207:2 35253:1 35265:1 35281:2 35289:2 35310:2 35311:1 35326:1 35342:1 35354:4 35382:2 35395:3 35410:1 35456:1 35464:3 35468:1 35470:1 35473:1 35488:1 35499:1 35503:2 35517:2 35520:1 35526:2 35529:1 35539:1 35582:1 35585:1 35589:2 35592:1 35602:2 35614:1 35625:2 35634:1 35635:1 35636:2 35648:1 35656:1 35661:1 35664:1 35665:1 35677:1 35681:2 35692:1 35696:1 35700:1 35714:1 35721:1 35731:1 35734:1 35746:1 35748:7 35749:1 35753:2 35757:3 35785:1 35789:3 35805:6 35831:4 35836:1 35837:2 35838:2 35845:1 35850:32 35862:2 35888:1 35901:1 35925:1 35939:1 35953:1 35957:1 35959:2 35964:1 35965:2 35966:4 35989:1 36007:1 36010:2 36011:1 36028:2 36033:1 36059:1 36065:1 36072:1 36075:2 36091:1 2 9:1 10:1 19:1 31:2 32:1 33:1 51:1 55:1 65:1 68:1 69:1 73:1 76:1 86:1 95:1 104:3 106:2 107:1 122:1 128:1 140:1 166:2 177:1 184:1 191:1 196:2 200:2 202:1 207:1 211:1 221:1 224:1 235:1 239:2 251:1 255:1 256:1 271:1 278:2 297:3 302:5 303:1 309:2 322:2 323:1 328:1 330:1 365:1 372:1 412:1 414:4 418:1 433:1 435:2 442:1 450:1 452:1 454:1 460:1 461:1 478:2 498:2 503:2 515:1 520:2 526:1 539:1 541:1 549:1 553:1 555:2 568:2 583:2 601:3 607:1 610:1 621:1 626:1 641:1 650:1 659:1 662:1 671:1 672:1 674:1 684:1 690:1 705:1 720:1 750:1 751:3 755:2 759:2 761:1 766:1 781:1 795:6 820:33 825:4 831:1 833:1 835:1 854:1 861:1 881:1 886:3 889:2 919:2 931:1 935:2 941:2 955:3 964:1 999:2 1019:2 1022:1 1024:3 1028:2 1032:1 1034:1 1035:3 1058:1 1082:3 1091:1 1102:3 1110:1 1124:1 1128:1 1135:3 1136:7 1140:3 1142:1 1150:5 1167:1 1176:4 1181:1 1194:2 1203:3 1206:8 1210:1 1212:2 1219:1 1226:2 1233:2 1234:3 1253:2 1256:1 1260:2 1270:3 1293:1 1301:2 1305:1 1308:1 1322:1 1326:4 1327:1 1330:1 1385:2 1386:1 1391:1 1403:1 1431:1 1442:1 1454:1 1459:3 1510:1 1537:1 1541:32 1550:1 1554:2 1555:2 1556:1 1564:4 1567:1 1583:1 1592:1 1595:2 1596:2 1603:1 1605:1 1610:1 1611:1 1613:1 1616:1 1617:3 1619:1 1623:1 1627:1 1632:1 1634:1 1638:1 1651:1 1652:1 1682:1 1705:1 1706:2 1740:4 1755:1 1757:1 1760:1 1763:1 1765:1 1771:2 1773:9 1792:1 1808:1 1809:1 1824:1 1836:3 1840:1 1843:1 1847:1 1849:2 1861:1 1870:1 1880:1 1888:1 1889:1 1891:3 1895:2 1897:11 1899:1 1903:1 1904:1 1910:1 1911:1 1915:1 1918:1 1925:1 1929:2 1930:1 1932:1 1960:3 1970:1 1990:1 1991:1 1997:4 2013:1 2014:1 2031:1 2036:1 2037:2 2043:1 2058:2 2067:1 2088:1 2095:1 2097:1 2098:9 2102:1 2104:1 2105:1 2106:2 2123:1 2139:1 2145:1 2147:1 2158:2 2160:1 2164:3 2172:1 2175:1 2180:1 2196:1 2198:1 2199:1 2202:1 2218:1 2249:1 2260:1 2265:1 2269:1 2276:1 2279:1 2282:1 2292:1 2307:1 2312:1 2317:2 2320:2 2327:1 2328:1 2345:1 2348:1 2352:3 2355:1 2364:1 2368:1 2372:1 2376:2 2379:2 2390:1 2400:2 2406:2 2418:2 2420:1 2436:1 2446:1 2454:1 2455:1 2462:1 2467:1 2486:7 2494:1 2508:1 2517:1 2522:2 2525:1 2546:1 2547:1 2557:1 2566:1 2595:1 2596:1 2598:1 2599:2 2604:1 2607:1 2619:1 2624:1 2638:1 2639:1 2642:1 2644:1 2652:1 2655:1 2665:1 2676:1 2696:8 2721:1 2743:2 2746:1 2747:1 2783:1 2789:1 2817:1 2827:1 2848:1 2852:1 2857:1 2859:1 2861:2 2862:4 2865:2 2866:2 2867:3 2870:1 2872:5 2877:8 2881:4 2883:7 2887:4 2891:1 2895:1 2897:1 2900:1 2902:4 2906:3 2909:1 2910:1 2913:1 2918:1 2919:1 2920:1 2941:1 2942:1 2946:1 2954:2 2955:1 2971:5 2974:1 2980:1 2999:2 3002:1 3004:1 3026:1 3027:1 3038:1 3042:1 3044:4 3045:4 3054:3 3057:1 3061:1 3075:2 3076:4 3086:3 3087:1 3098:1 3100:1 3106:1 3116:4 3131:1 3133:1 3137:1 3145:1 3165:1 3176:2 3177:2 3179:1 3186:1 3199:1 3206:1 3224:2 3240:1 3244:1 3255:2 3265:1 3266:1 3267:1 3312:1 3319:1 3322:2 3341:2 3348:2 3359:2 3366:1 3367:1 3371:1 3380:3 3381:1 3388:3 3389:1 3406:1 3410:1 3413:3 3415:4 3420:1 3423:3 3429:1 3443:1 3451:1 3454:1 3493:1 3497:3 3507:4 3510:5 3511:1 3516:1 3520:2 3539:2 3547:1 3560:1 3584:2 3590:1 3603:2 3612:2 3645:17 3648:33 3651:1 3652:3 3653:1 3663:2 3666:1 3678:1 3681:1 3682:1 3691:4 3692:1 3695:1 3698:1 3706:7 3736:4 3741:2 3753:1 3756:1 3784:2 3789:1 3792:1 3793:1 3794:1 3836:2 3843:1 3846:3 3851:1 3860:1 3867:1 3897:3 3926:1 3958:1 3962:1 4045:1 4067:4 4070:1 4091:1 4097:1 4101:1 4119:2 4142:1 4146:1 4147:1 4157:1 4161:3 4162:1 4171:1 4179:3 4193:1 4201:1 4211:1 4223:1 4224:1 4226:4 4251:2 4279:1 4328:1 4334:1 4355:1 4359:1 4371:1 4375:2 4381:1 4383:1 4384:1 4395:1 4396:1 4402:2 4411:1 4412:1 4444:1 4448:1 4452:1 4459:1 4465:1 4474:1 4476:1 4479:1 4488:1 4492:1 4495:1 4517:2 4531:1 4539:1 4555:1 4564:1 4575:1 4580:1 4582:1 4601:1 4626:1 4643:3 4645:2 4646:1 4651:2 4654:2 4676:1 4722:3 4724:1 4755:1 4762:1 4767:2 4773:1 4779:1 4780:3 4795:1 4803:1 4809:1 4813:1 4815:2 4819:1 4820:2 4830:2 4843:1 4854:1 4855:1 4857:1 4859:1 4867:3 4882:1 4885:1 4886:1 4887:1 4914:1 4920:32 4922:2 4927:1 4931:1 4941:1 4947:1 4955:1 4985:1 4992:1 4993:1 5008:1 5015:2 5019:4 5020:3 5032:2 5039:1 5047:1 5054:5 5058:5 5059:2 5075:1 5076:2 5094:1 5119:1 5125:1 5134:1 5152:1 5153:2 5163:1 5170:3 5178:1 5190:1 5194:1 5232:1 5233:1 5235:1 5237:2 5240:1 5241:1 5247:1 5254:1 5272:1 5282:1 5295:1 5298:1 5299:2 5300:1 5302:3 5307:1 5308:3 5324:1 5348:1 5364:1 5371:3 5402:2 5404:1 5408:1 5411:1 5416:1 5428:1 5435:2 5437:32 5444:1 5453:1 5456:1 5459:4 5465:1 5471:1 5473:1 5483:1 5486:1 5492:1 5555:2 5566:6 5587:1 5588:1 5598:1 5625:1 5638:3 5655:2 5662:3 5663:1 5672:2 5676:2 5679:1 5685:1 5687:1 5712:1 5731:7 5738:1 5760:2 5832:5 5843:3 5850:1 5869:1 5879:5 5885:1 5913:1 5924:1 5948:1 5960:1 5967:2 5969:2 5973:2 5974:1 5980:1 5983:3 5995:1 6004:1 6005:3 6017:1 6041:1 6043:1 6049:1 6075:2 6078:2 6096:18 6097:2 6112:2 6115:1 6140:6 6149:2 6158:2 6187:2 6191:1 6207:1 6217:1 6253:4 6254:1 6257:3 6277:4 6278:4 6279:2 6282:1 6285:5 6291:1 6292:2 6293:4 6294:1 6303:1 6309:2 6312:5 6315:3 6316:1 6326:1 6358:1 6407:1 6411:2 6430:1 6451:1 6483:1 6495:1 6506:1 6528:1 6561:1 6580:1 6610:1 6622:1 6623:2 6628:1 6655:1 6679:1 6683:1 6684:1 6695:1 6698:2 6738:3 6739:1 6759:2 6787:1 6799:1 6801:2 6803:1 6807:1 6832:1 6835:1 6843:2 6859:1 6861:1 6867:3 6870:1 6942:1 6956:1 6957:1 6968:1 6970:1 6972:1 6982:2 6983:1 6991:1 6996:1 7008:1 7010:1 7012:1 7036:2 7038:2 7046:1 7051:1 7053:1 7061:2 7062:9 7065:1 7070:1 7072:1 7076:1 7083:1 7086:2 7119:2 7130:2 7138:1 7140:1 7164:2 7167:1 7205:1 7213:1 7225:2 7243:1 7250:1 7252:2 7264:2 7289:10 7295:3 7346:1 7366:1 7377:1 7383:1 7394:1 7397:1 7421:1 7422:1 7423:2 7432:3 7434:1 7451:1 7455:1 7494:1 7496:1 7525:1 7532:1 7537:2 7561:2 7567:2 7580:2 7583:1 7589:1 7591:1 7599:1 7603:1 7604:3 7607:1 7608:1 7616:1 7618:1 7622:1 7630:1 7635:1 7656:1 7665:1 7684:1 7690:1 7707:2 7708:2 7709:1 7715:1 7716:1 7718:1 7721:2 7722:1 7725:1 7727:1 7728:1 7729:3 7734:2 7736:1 7739:2 7741:2 7742:1 7748:1 7764:1 7782:2 7805:1 7822:2 7825:1 7840:1 7847:1 7852:4 7857:2 7860:1 7871:3 7880:1 7881:1 7895:1 7905:1 7937:2 7945:1 7965:1 7966:1 7974:1 7989:7 7995:1 8002:1 8004:4 8006:1 8007:1 8008:1 8009:2 8014:4 8015:2 8016:1 8017:1 8019:4 8020:8 8021:1 8022:1 8030:1 8034:1 8054:1 8077:1 8082:1 8085:2 8086:1 8125:1 8136:1 8143:1 8176:1 8185:2 8186:1 8200:3 8203:3 8224:1 8243:2 8257:1 8260:1 8284:1 8293:1 8295:1 8297:1 8308:1 8315:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:2 8349:1 8370:2 8377:1 8393:2 8421:1 8427:1 8446:1 8449:1 8481:1 8489:1 8493:1 8496:1 8501:3 8524:2 8564:2 8566:1 8570:1 8577:1 8597:1 8602:2 8617:1 8641:1 8648:1 8661:1 8691:1 8695:2 8709:1 8714:1 8731:1 8738:1 8751:1 8772:1 8842:1 8845:1 8849:1 8854:2 8866:1 8880:1 8883:6 8905:1 8940:1 8943:1 8946:1 8955:1 8960:1 8966:2 8975:1 8978:2 8996:1 9007:1 9012:1 9026:1 9033:1 9052:2 9060:1 9090:1 9113:1 9122:1 9123:2 9126:1 9134:1 9138:1 9143:1 9146:1 9153:1 9160:1 9194:1 9205:1 9216:1 9217:2 9231:1 9253:1 9278:1 9282:2 9306:1 9307:1 9325:1 9328:1 9333:1 9337:1 9338:6 9372:9 9374:1 9381:1 9394:1 9426:1 9428:2 9433:1 9437:1 9442:1 9446:1 9470:2 9484:1 9492:1 9495:1 9499:1 9526:4 9529:1 9577:1 9586:1 9588:1 9612:3 9619:1 9623:1 9628:11 9629:12 9637:1 9655:1 9656:1 9657:5 9661:1 9688:3 9694:4 9695:1 9702:49 9707:1 9708:1 9711:2 9719:1 9720:1 9723:1 9733:18 9738:4 9744:1 9754:1 9758:1 9761:1 9778:1 9780:1 9781:3 9787:2 9793:2 9803:1 9813:1 9849:6 9866:2 9870:1 9877:1 9885:1 9895:1 9924:1 9926:2 9942:3 9957:1 9963:1 9967:4 9968:1 9975:1 9978:1 9999:6 10011:1 10023:1 10058:1 10063:2 10079:1 10099:2 10103:1 10161:1 10167:1 10171:1 10175:1 10209:1 10213:1 10223:1 10235:2 10242:1 10261:2 10284:1 10286:1 10298:1 10313:1 10314:1 10321:33 10331:1 10333:1 10338:1 10342:1 10349:1 10356:1 10359:16 10360:4 10376:1 10378:2 10399:1 10401:1 10406:1 10407:1 10411:1 10412:2 10431:1 10444:1 10452:1 10470:41 10488:1 10520:2 10529:1 10552:1 10559:1 10573:1 10598:1 10599:2 10612:1 10615:1 10624:1 10669:1 10683:1 10686:2 10695:1 10697:1 10701:2 10703:1 10704:1 10706:1 10707:1 10711:1 10716:2 10717:5 10718:1 10736:1 10744:1 10749:2 10772:3 10773:1 10778:1 10789:2 10791:1 10792:1 10796:1 10798:1 10807:2 10808:2 10812:1 10813:1 10826:1 10831:1 10848:1 10850:1 10864:1 10878:1 10884:1 10895:1 10900:2 10911:3 10937:1 10979:1 10991:1 10994:1 11002:2 11075:3 11078:1 11081:1 11109:2 11129:1 11163:2 11165:1 11169:1 11179:1 11181:1 11183:2 11207:1 11212:4 11226:1 11230:1 11231:1 11233:3 11238:1 11247:3 11258:1 11268:1 11270:1 11272:1 11311:1 11320:1 11325:1 11334:3 11340:1 11343:1 11347:2 11378:1 11382:5 11391:4 11402:1 11404:1 11412:2 11422:1 11457:1 11489:4 11522:3 11523:1 11556:1 11557:4 11561:2 11564:1 11569:4 11571:3 11572:1 11573:1 11575:1 11583:1 11585:2 11587:2 11598:1 11609:1 11617:1 11619:1 11625:1 11628:1 11636:1 11640:1 11641:1 11642:2 11643:1 11645:1 11654:1 11668:1 11675:1 11678:3 11690:8 11694:1 11697:2 11707:2 11718:2 11720:1 11723:1 11739:2 11744:1 11745:1 11755:1 11770:1 11771:1 11774:2 11776:1 11791:1 11793:2 11795:2 11804:1 11815:1 11835:1 11840:1 11848:1 11851:1 11861:1 11864:1 11865:2 11872:2 11876:2 11882:1 11885:1 11887:1 11888:1 11899:1 11902:1 11903:1 11912:1 11917:1 11918:1 11919:9 11930:1 11931:2 11932:9 11936:1 11947:1 11955:1 11959:1 11961:2 11966:1 11969:1 11976:1 11978:1 11982:3 11985:1 11988:1 11992:1 12004:1 12014:1 12033:1 12046:1 12052:1 12056:1 12057:1 12073:1 12076:1 12078:1 12081:1 12082:1 12083:2 12086:1 12096:1 12104:1 12111:1 12112:1 12113:1 12120:1 12131:1 12146:1 12147:1 12186:1 12191:1 12214:1 12221:6 12229:1 12230:1 12231:1 12237:3 12239:4 12248:1 12255:1 12263:1 12269:1 12275:1 12282:1 12301:1 12324:1 12339:1 12359:1 12361:1 12391:32 12394:1 12398:1 12401:1 12407:1 12420:1 12428:1 12435:2 12446:1 12451:1 12453:1 12458:1 12471:1 12473:1 12479:1 12490:2 12493:1 12497:1 12508:1 12520:1 12521:1 12532:1 12538:1 12540:4 12547:3 12552:1 12561:2 12570:2 12580:1 12592:1 12608:1 12618:2 12619:2 12630:1 12641:1 12643:2 12651:2 12654:2 12669:4 12673:5 12684:1 12692:3 12694:1 12734:5 12756:1 12757:1 12760:2 12774:1 12777:1 12794:1 12821:1 12824:2 12829:1 12837:1 12844:1 12848:1 12850:1 12867:7 12879:1 12881:1 12898:1 12936:1 12958:1 12977:2 12981:1 12988:1 13013:5 13028:1 13040:2 13049:1 13051:1 13052:1 13058:1 13078:1 13079:1 13080:1 13089:1 13096:1 13112:1 13113:7 13128:1 13154:3 13175:1 13179:1 13187:1 13213:1 13234:1 13241:1 13258:4 13267:1 13282:1 13283:5 13297:1 13303:1 13316:1 13325:2 13357:2 13377:1 13384:1 13385:2 13411:1 13412:4 13415:1 13418:2 13420:6 13429:1 13443:1 13454:1 13464:2 13468:1 13471:1 13474:1 13481:1 13483:1 13487:1 13493:7 13498:1 13505:1 13509:1 13516:1 13517:2 13537:1 13550:1 13568:1 13588:1 13601:1 13632:9 13633:1 13647:1 13648:1 13657:1 13669:2 13673:1 13682:1 13686:2 13690:3 13694:3 13704:1 13710:1 13721:4 13737:1 13749:1 13761:1 13765:2 13767:1 13768:1 13777:1 13793:1 13798:8 13803:1 13808:1 13823:1 13824:3 13826:4 13828:1 13837:1 13845:2 13849:1 13859:1 13880:1 13881:1 13891:6 13895:1 13897:1 13898:1 13900:1 13901:1 13910:2 13919:1 13921:2 13931:1 13942:1 13956:1 13972:2 13996:1 13998:1 14008:1 14009:1 14015:1 14029:1 14032:3 14036:1 14042:1 14070:2 14071:2 14092:1 14093:1 14095:2 14105:2 14107:1 14114:1 14115:1 14116:3 14119:1 14122:2 14124:1 14128:1 14134:1 14145:2 14146:4 14149:1 14152:1 14154:1 14162:1 14186:1 14189:3 14191:1 14218:1 14228:1 14235:5 14263:1 14265:1 14280:1 14286:2 14292:1 14296:1 14302:1 14308:1 14309:1 14322:8 14337:2 14340:2 14342:1 14376:1 14380:1 14406:1 14410:1 14411:1 14416:1 14430:1 14448:2 14462:1 14464:1 14488:1 14491:6 14515:1 14517:1 14519:1 14523:1 14528:1 14533:3 14550:1 14554:2 14555:1 14559:1 14564:1 14567:6 14568:4 14571:2 14577:1 14580:5 14586:1 14611:1 14614:1 14621:2 14628:1 14632:2 14636:1 14638:8 14642:1 14643:1 14654:1 14666:1 14667:1 14675:2 14686:1 14689:1 14716:1 14727:3 14735:1 14737:1 14742:4 14744:1 14772:3 14787:1 14791:3 14803:1 14840:1 14844:1 14854:1 14869:1 14870:1 14910:1 14913:1 14940:1 14941:2 14960:1 14984:1 15012:1 15014:1 15030:1 15037:3 15046:1 15060:4 15079:1 15083:1 15086:1 15095:1 15123:1 15132:1 15140:1 15150:1 15151:1 15152:3 15160:1 15161:4 15162:1 15166:1 15169:1 15178:1 15185:1 15197:1 15205:1 15210:1 15220:1 15222:1 15250:1 15269:1 15278:1 15292:1 15312:2 15315:5 15326:1 15345:1 15383:1 15385:2 15400:1 15414:2 15448:1 15460:1 15472:1 15487:1 15502:3 15519:1 15525:1 15526:1 15552:1 15574:1 15577:1 15584:1 15587:1 15595:1 15598:1 15675:1 15705:1 15707:1 15746:1 15747:1 15776:3 15778:33 15782:1 15786:1 15794:1 15797:1 15800:5 15803:1 15813:1 15826:1 15844:6 15855:1 15864:2 15868:1 15885:1 15895:1 15900:1 15910:1 15912:1 15915:1 15942:2 15943:1 15944:2 15981:1 15989:1 16001:1 16006:2 16008:1 16013:1 16017:1 16022:1 16083:1 16099:2 16114:1 16134:1 16142:2 16147:1 16149:1 16173:1 16190:1 16196:1 16198:1 16201:1 16213:1 16217:1 16236:1 16241:1 16253:1 16268:1 16269:1 16285:1 16293:1 16294:1 16299:1 16303:1 16304:1 16320:1 16327:12 16332:4 16336:2 16354:1 16357:1 16365:2 16372:1 16375:1 16393:1 16394:1 16456:1 16460:1 16475:1 16490:1 16499:1 16502:2 16505:2 16510:5 16516:5 16528:1 16535:1 16559:1 16561:1 16594:1 16609:13 16613:1 16622:1 16643:1 16720:1 16729:1 16731:1 16732:2 16742:1 16775:1 16792:3 16797:4 16803:2 16823:1 16831:1 16835:1 16837:1 16843:1 16854:1 16862:1 16869:2 16874:2 16882:1 16889:1 16897:1 16898:1 16914:2 16918:1 16929:2 16964:1 16968:2 16970:3 16971:1 16973:1 16975:1 16977:2 16978:1 16979:10 16980:1 16981:1 16983:2 17002:1 17003:2 17004:1 17008:1 17009:1 17013:6 17022:1 17026:1 17031:1 17033:2 17064:1 17075:1 17076:1 17082:1 17100:1 17114:1 17120:1 17125:1 17152:1 17154:1 17156:1 17161:2 17172:10 17175:1 17181:2 17193:1 17204:1 17214:1 17217:1 17230:1 17234:1 17243:1 17246:1 17273:1 17276:1 17278:2 17286:5 17303:1 17309:1 17315:3 17319:1 17320:2 17333:11 17336:7 17417:2 17426:4 17436:1 17438:1 17449:4 17450:1 17481:1 17516:1 17545:1 17547:3 17562:1 17564:2 17571:1 17598:1 17601:1 17607:2 17623:1 17629:1 17636:1 17639:1 17675:4 17679:1 17723:1 17762:1 17769:1 17784:2 17792:2 17794:1 17798:1 17806:2 17813:2 17814:2 17817:3 17829:1 17835:2 17836:1 17849:1 17850:2 17858:2 17869:1 17903:1 17918:1 17921:1 17924:1 17925:2 17929:1 17941:1 17942:2 17943:1 17945:1 17955:1 17957:2 17972:1 17976:1 17978:2 17981:1 17984:1 17992:1 17993:1 17994:1 17997:1 17998:1 17999:1 18000:1 18005:1 18011:1 18013:1 18016:1 18030:1 18032:1 18037:2 18039:1 18048:1 18057:2 18073:1 18080:1 18092:33 18094:1 18101:3 18105:1 18106:1 18110:1 18120:1 18127:1 18128:1 18137:1 18184:1 18198:1 18200:1 18203:5 18214:1 18215:1 18221:2 18244:1 18249:1 18270:3 18274:1 18276:1 18277:1 18290:1 18297:1 18298:1 18320:3 18325:1 18339:1 18342:1 18345:1 18348:1 18390:1 18392:1 18396:1 18442:1 18463:2 18470:2 18471:1 18474:1 18485:1 18506:1 18535:1 18549:1 18559:1 18560:1 18561:2 18563:2 18574:1 18582:1 18593:1 18600:2 18601:1 18603:1 18608:7 18614:1 18645:3 18651:1 18673:1 18676:1 18677:1 18696:1 18703:1 18708:3 18712:1 18715:1 18732:1 18747:1 18752:1 18767:2 18769:1 18779:2 18781:3 18793:1 18794:1 18811:1 18823:1 18855:1 18867:1 18870:1 18876:2 18898:2 18928:1 18953:3 18954:1 18959:1 18968:1 18989:1 18993:2 18997:1 19019:1 19029:1 19050:1 19060:1 19064:2 19067:1 19083:1 19087:2 19096:1 19097:1 19120:1 19141:1 19154:1 19169:1 19175:1 19191:1 19192:3 19193:3 19204:1 19225:1 19235:1 19263:5 19269:2 19276:1 19287:1 19303:1 19310:1 19336:1 19361:1 19397:1 19406:1 19416:1 19424:1 19428:1 19437:2 19450:1 19452:1 19458:4 19469:1 19471:1 19475:1 19489:1 19490:5 19496:3 19500:1 19513:4 19514:1 19518:1 19525:1 19526:1 19529:1 19532:1 19538:3 19548:1 19567:1 19602:1 19605:1 19615:5 19616:1 19620:2 19641:2 19645:4 19649:2 19655:1 19658:1 19664:1 19670:1 19672:1 19679:1 19689:1 19691:3 19703:1 19708:2 19724:1 19772:1 19775:1 19787:1 19796:1 19806:1 19810:14 19814:2 19815:1 19820:1 19851:3 19854:3 19858:1 19865:2 19868:2 19876:1 19894:2 19901:1 19904:2 19905:1 19907:1 19908:2 19932:12 19947:1 19956:1 19961:1 19967:1 19976:3 20027:3 20034:1 20046:2 20061:1 20065:1 20074:1 20076:1 20078:1 20090:1 20091:2 20109:4 20110:2 20111:1 20115:4 20117:1 20124:1 20125:3 20126:1 20127:2 20130:1 20153:1 20168:1 20174:1 20201:2 20221:1 20231:1 20232:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20295:1 20296:1 20318:1 20324:1 20325:1 20350:1 20355:1 20369:2 20383:1 20390:1 20431:1 20444:1 20445:1 20446:2 20455:1 20499:1 20522:1 20537:1 20540:2 20556:2 20566:1 20568:1 20572:1 20588:3 20593:1 20604:1 20606:9 20607:1 20608:1 20617:1 20643:1 20646:1 20649:1 20654:1 20679:2 20680:1 20683:1 20689:1 20690:1 20691:2 20727:1 20741:1 20746:1 20751:3 20754:1 20762:2 20781:1 20783:1 20785:2 20796:1 20799:2 20816:1 20818:1 20865:1 20878:1 20885:1 20900:1 20917:1 20918:1 20930:1 20941:45 20948:1 20949:2 20974:1 20978:1 20980:1 20997:1 21000:1 21003:4 21044:1 21064:1 21071:1 21072:1 21081:1 21083:1 21097:1 21101:1 21116:1 21124:3 21130:2 21145:2 21149:1 21155:1 21170:1 21174:2 21204:1 21209:1 21214:1 21215:1 21235:1 21261:1 21263:1 21284:1 21292:1 21299:1 21316:1 21318:2 21322:2 21323:1 21324:1 21337:1 21355:1 21371:1 21376:1 21423:1 21443:1 21445:1 21473:1 21477:1 21500:1 21503:1 21508:1 21512:1 21513:1 21518:1 21522:2 21524:1 21530:1 21540:1 21566:1 21586:1 21591:2 21592:1 21593:1 21597:1 21602:1 21603:1 21608:2 21612:2 21634:1 21643:1 21686:2 21696:1 21701:1 21704:2 21713:2 21724:1 21754:1 21788:1 21806:1 21809:1 21819:1 21823:4 21827:1 21829:2 21831:1 21843:1 21864:1 21866:1 21872:2 21874:2 21875:2 21886:1 21892:1 21899:1 21917:2 21925:1 21939:3 21943:2 21975:4 21976:1 21987:4 21996:1 22008:4 22009:1 22019:1 22032:1 22037:1 22067:1 22076:1 22079:6 22083:1 22084:2 22123:3 22130:1 22143:2 22169:1 22173:1 22177:2 22181:1 22186:2 22190:1 22207:1 22247:1 22251:2 22298:1 22300:4 22304:2 22305:2 22308:1 22315:1 22327:1 22345:1 22347:1 22361:1 22362:1 22386:1 22388:2 22391:1 22406:1 22424:1 22429:4 22490:1 22493:2 22497:1 22516:1 22530:2 22547:1 22572:1 22584:1 22628:9 22643:1 22650:1 22666:1 22668:1 22677:2 22715:1 22720:1 22727:4 22754:1 22762:1 22764:1 22781:1 22783:1 22791:2 22800:1 22806:2 22809:1 22816:1 22824:1 22839:1 22866:1 22870:1 22883:2140 22893:2 22899:1 22909:2 22923:1 22944:1 22966:1 22969:1 22971:1 22981:1 22984:1 23008:1 23031:3 23039:1 23043:3 23044:1 23079:1 23082:1 23098:1 23113:1 23119:1 23129:1 23139:1 23164:1 23171:1 23189:1 23193:2 23194:1 23202:1 23223:1 23224:1 23270:1 23279:1 23293:1 23304:1 23320:1 23321:1 23348:1 23365:2 23371:1 23411:1 23427:1 23456:1 23457:1 23468:2 23470:1 23474:1 23482:1 23492:1 23505:1 23508:1 23520:1 23521:3 23523:2 23543:1 23549:1 23565:1 23603:1 23607:6 23640:5 23647:1 23653:1 23658:1 23664:1 23698:1 23706:1 23708:1 23712:1 23715:1 23718:1 23735:1 23763:1 23766:1 23773:1 23784:1 23787:1 23789:1 23800:1 23805:1 23812:1 23821:1 23833:6 23834:4 23874:1 23880:4 23900:1 23914:2 23922:1 23932:1 23934:1 23947:22 23958:1 23978:1 23979:2 24012:2 24013:1 24019:1 24020:1 24021:1 24044:1 24047:4 24049:1 24051:1 24052:2 24064:2 24066:1 24079:1 24092:1 24097:2 24105:3 24106:1 24118:1 24154:2 24185:1 24191:1 24197:1 24205:1 24209:4 24217:1 24233:1 24239:2 24240:1 24255:1 24268:1 24271:1 24275:1 24289:2 24292:1 24306:1 24314:2 24327:1 24332:1 24342:1 24345:2 24347:1 24364:1 24369:1 24376:4 24385:1 24405:1 24424:1 24444:1 24449:1 24450:1 24452:1 24474:1 24479:1 24480:3 24482:2 24483:1 24491:1 24511:1 24518:2 24534:1 24539:2 24553:1 24566:1 24591:2 24592:8 24598:1 24601:1 24604:1 24607:1 24612:1 24620:1 24630:2 24640:1 24643:1 24651:2 24653:2 24656:3 24658:7 24663:1 24674:1 24680:2 24681:6 24682:1 24683:1 24699:1 24700:1 24704:1 24708:5 24728:2 24729:1 24753:2 24754:1 24762:3 24774:1 24777:1 24781:6 24792:1 24794:1 24808:2 24813:1 24820:1 24826:2 24850:1 24853:1 24869:1 24883:5 24894:2 24918:1 24919:1 24924:1 24945:1 24950:1 24956:1 24978:1 25000:1 25031:2 25047:1 25052:1 25053:1 25058:1 25067:1 25076:1 25080:1 25114:5 25117:1 25122:1 25123:1 25143:1 25144:2 25157:1 25161:2 25163:1 25179:3 25217:1 25225:1 25240:1 25244:1 25269:1 25285:1 25299:1 25300:2 25303:1 25326:1 25334:2 25351:1 25357:1 25369:2 25373:1 25379:1 25386:1 25392:1 25407:2 25410:3 25417:1 25423:1 25427:2 25428:1 25431:2 25448:1 25450:1 25456:1 25461:1 25468:1 25481:1 25486:1 25491:1 25498:2 25502:2 25505:1 25511:3 25526:1 25527:1 25529:1 25541:1 25543:1 25553:2 25554:2 25568:1 25572:1 25580:2 25582:2 25586:1 25590:4 25600:2 25602:1 25605:1 25608:3 25609:2 25623:2 25630:1 25632:1 25637:4 25655:1 25690:1 25699:1 25720:1 25721:5 25725:1 25733:2 25738:1 25781:1 25782:1 25786:2 25793:3 25807:1 25811:1 25815:1 25824:2 25841:1 25846:1 25848:1 25852:1 25859:2 25867:1 25879:1 25903:1 25907:1 25917:1 25928:1 25934:1 25943:1 25948:1 25952:1 25973:1 25994:1 26000:1 26005:1 26011:2 26014:1 26018:4 26031:2 26044:1 26052:1 26062:3 26070:1 26091:1 26099:1 26102:2 26107:1 26119:1 26120:1 26124:1 26138:1 26148:1 26151:1 26153:1 26155:1 26156:4 26162:1 26167:1 26183:1 26191:1 26203:2 26204:1 26211:1 26212:1 26214:1 26215:2 26216:2 26226:1 26228:2 26236:1 26260:1 26261:1 26275:1 26278:1 26279:1 26285:1 26306:1 26313:1 26322:1 26324:2 26327:2 26337:3 26344:1 26345:1 26346:1 26347:1 26361:1 26362:2 26383:1 26385:4 26394:1 26407:1 26415:1 26424:1 26425:1 26426:1 26438:3 26444:1 26453:4 26458:1 26459:1 26460:1 26475:1 26496:1 26505:1 26507:1 26508:6 26552:1 26555:1 26589:2 26590:1 26593:1 26602:7 26605:2 26608:1 26610:1 26612:4 26614:1 26628:3 26642:1 26644:1 26651:1 26667:1 26668:9 26671:1 26679:1 26694:1 26740:1 26743:1 26744:1 26776:1 26777:2 26779:4 26782:2 26787:1 26794:1 26795:1 26796:1 26797:2 26808:2 26809:2 26815:1 26818:1 26820:1 26826:7 26827:1 26828:4 26835:1 26842:1 26843:1 26844:1 26854:1 26874:1 26907:1 26914:1 26930:1 26949:3 26984:2 26995:2 26999:1 27004:4 27029:2 27051:1 27072:1 27087:3 27092:1 27097:1 27099:1 27102:1 27103:1 27114:1 27127:3 27138:1 27149:2 27153:2 27171:1 27183:1 27203:1 27213:2 27243:1 27251:2 27259:1 27260:13 27283:1 27287:2 27294:1 27331:12 27333:2 27339:1 27343:1 27354:1 27358:1 27393:1 27396:4 27398:2 27401:1 27412:4 27415:2 27447:1 27460:7 27470:1 27478:1 27484:1 27500:3 27501:1 27508:1 27522:1 27526:1 27527:1 27542:1 27544:2 27573:1 27591:1 27594:1 27599:1 27601:1 27603:2 27619:9 27633:3 27651:1 27653:1 27677:3 27703:1 27723:1 27731:1 27752:1 27760:1 27767:1 27776:1 27779:1 27782:1 27787:32 27804:1 27808:1 27810:2 27813:3 27814:1 27816:1 27817:2 27819:1 27820:1 27825:1 27854:2 27859:3 27860:1 27862:1 27866:1 27876:2 27878:1 27879:1 27889:1 27920:1 27922:1 27925:1 27957:1 27963:1 27973:5 27974:1 27983:1 27987:2 28000:2 28007:1 28011:4 28017:1 28038:1 28051:1 28052:1 28081:1 28154:1 28160:3 28179:3 28191:1 28194:1 28206:1 28263:1 28276:1 28278:1 28279:1 28287:1 28297:1 28298:3 28308:1 28310:1 28313:3 28316:1 28317:1 28318:2 28348:1 28370:33 28384:1 28398:3 28399:1 28409:1 28433:1 28436:1 28460:1 28464:1 28470:1 28472:2 28473:1 28482:2 28483:1 28489:6 28512:1 28523:1 28528:1 28541:1 28543:1 28560:1 28567:1 28572:1 28577:3 28582:2 28587:1 28593:1 28608:1 28612:1 28620:1 28621:1 28639:1 28645:1 28647:2 28650:2 28686:2 28693:1 28752:1 28757:1 28786:1 28788:1 28811:1 28812:1 28814:2 28815:1 28817:2 28826:1 28831:1 28833:1 28852:1 28899:1 28908:1 28913:1 28929:1 28932:1 28939:2 28940:1 28949:1 28958:1 28974:2 28983:2 28993:1 28996:2 29004:1 29014:1 29016:1 29020:1 29032:1 29041:3 29087:1 29123:1 29126:1 29133:2 29141:1 29149:1 29169:1 29170:3 29174:1 29179:1 29187:1 29190:6 29192:1 29196:1 29215:1 29233:1 29241:1 29251:1 29258:1 29271:1 29297:1 29320:1 29328:1 29330:1 29334:1 29363:1 29367:2 29398:1 29405:1 29417:1 29419:3 29426:2 29451:1 29455:2 29464:1 29480:1 29486:2 29493:1 29516:2 29527:1 29551:1 29554:1 29557:5 29564:2 29566:1 29568:2 29583:2 29584:2 29587:3 29591:1 29592:1 29604:1 29634:3 29635:1 29639:1 29671:1 29688:9 29695:1 29701:1 29715:1 29741:1 29749:1 29752:1 29756:1 29760:1 29761:1 29768:1 29775:1 29816:1 29822:1 29827:1 29840:1 29845:4 29857:1 29887:1 29888:1 29901:2 29911:1 29939:1 29952:1 29954:1 29957:1 29962:3 29969:1 29972:1 29995:1 30004:1 30015:2 30023:1 30035:1 30041:1 30079:3 30083:1 30084:2 30092:1 30093:1 30095:2 30099:5 30102:1 30103:1 30105:2 30119:1 30127:1 30134:1 30144:2 30165:3 30192:1 30198:2 30199:3 30213:1 30215:1 30219:1 30235:2 30238:1 30248:1 30253:2 30261:4 30263:1 30273:1 30283:1 30284:1 30288:1 30290:1 30294:1 30295:1 30299:1 30307:1 30319:1 30320:1 30329:1 30330:1 30331:1 30332:1 30350:1 30361:1 30364:1 30370:1 30424:1 30434:1 30452:1 30454:1 30478:1 30482:3 30483:1 30489:1 30493:1 30518:1 30535:4 30537:2 30538:2 30541:1 30552:2 30553:1 30588:1 30601:1 30613:1 30617:2 30641:1 30677:1 30679:1 30688:1 30743:1 30777:1 30783:1 30787:1 30788:1 30789:2 30790:6 30794:1 30806:1 30814:5 30817:3 30823:1 30855:2 30857:2 30861:1 30907:1 30910:1 30912:2 30920:2 30931:1 30934:1 30944:2 30951:1 30952:1 30960:2 30963:1 30965:1 30970:1 30972:1 30981:4 30987:1 31002:1 31005:1 31015:1 31020:1 31026:1 31047:1 31048:1 31051:4 31053:1 31054:1 31055:2 31057:1 31059:1 31072:1 31089:1 31092:1 31093:1 31095:1 31112:2 31134:1 31142:1 31148:1 31151:1 31153:1 31168:3 31177:1 31178:1 31181:1 31188:1 31201:1 31210:1 31223:1 31226:1 31235:2 31255:4 31264:4 31265:2 31276:1 31283:1 31286:1 31296:4 31317:4 31329:2 31334:4 31369:1 31376:1 31377:5 31384:1 31387:1 31404:1 31411:1 31413:12 31425:2 31444:2 31465:2 31478:1 31486:1 31550:1 31563:1 31569:1 31574:2 31578:3 31580:1 31588:1 31595:1 31603:2 31610:1 31612:1 31641:2 31648:1 31660:2 31663:1 31701:1 31706:1 31708:1 31712:1 31725:1 31737:1 31747:1 31751:1 31752:1 31753:2 31757:1 31767:1 31768:1 31784:1 31785:1 31787:1 31797:1 31805:1 31808:2 31834:3 31848:1 31853:1 31866:2 31874:1 31882:1 31885:1 31890:1 31891:1 31893:2 31918:1 31919:1 31929:1 31930:4 31933:2 31946:2 31963:2 31964:1 31968:11 31969:1 31972:1 31993:2 32010:1 32022:1 32025:1 32036:1 32057:1 32066:5 32074:1 32085:1 32090:1 32099:1 32106:1 32112:1 32115:1 32117:1 32136:1 32140:1 32141:1 32153:1 32208:1 32219:2 32259:2 32261:1 32285:3 32307:1 32311:1 32317:1 32319:1 32326:1 32329:1 32334:1 32376:2 32405:1 32406:2 32413:1 32425:1 32436:1 32459:1 32461:2 32491:1 32492:1 32493:2 32505:2 32515:2 32532:1 32553:2 32555:1 32559:1 32574:1 32596:1 32606:1 32612:1 32624:1 32629:1 32636:1 32683:2 32691:1 32700:1 32725:2 32726:1 32732:1 32745:1 32749:2 32750:6 32774:3 32779:1 32785:2 32787:1 32801:4 32813:1 32820:1 32832:3 32846:1 32848:2 32879:1 32887:2 32890:7 32891:1 32893:1 32896:2 32908:1 32909:1 32913:1 32917:2 32924:1 32929:3 32941:3 32950:2 32955:1 32958:1 32965:1 32974:1 32984:1 32997:1 33027:1 33031:1 33053:1 33057:2 33066:1 33069:2 33080:2 33085:1 33089:1 33092:1 33094:3 33098:1 33100:1 33112:1 33118:1 33128:5 33133:3 33137:1 33141:2 33142:1 33144:2 33157:2 33168:1 33180:1 33182:1 33183:2 33218:2 33219:1 33222:1 33231:1 33272:1 33276:2 33284:1 33287:1 33296:3 33297:1 33309:2 33330:1 33333:1 33335:1 33346:1 33352:8 33388:1 33389:1 33404:1 33413:1 33422:1 33428:2 33439:1 33440:1 33444:1 33446:1 33449:1 33461:3 33467:1 33498:1 33502:2 33503:1 33504:1 33505:3 33512:1 33530:1 33533:5 33534:1 33537:2 33543:3 33545:1 33552:1 33553:2 33555:1 33556:2 33563:3 33579:2 33591:3 33592:1 33595:3 33609:1 33616:1 33620:1 33623:1 33637:1 33663:7 33669:1 33680:4 33716:1 33720:1 33730:1 33732:1 33734:3 33738:1 33743:3 33760:1 33766:1 33769:1 33771:1 33772:1 33794:2 33795:1 33819:1 33820:1 33824:1 33861:1 33865:1 33880:2 33902:1 33910:1 33921:1 33928:1 33930:1 33989:1 33997:1 34003:1 34040:1 34052:1 34056:3 34057:2 34062:2 34063:1 34067:4 34071:3 34075:7 34076:1 34077:2 34080:1 34083:1 34085:3 34086:1 34099:1 34104:1 34133:1 34139:1 34144:1 34151:3 34157:1 34159:1 34160:1 34174:1 34194:1 34197:1 34204:1 34221:2 34246:2 34253:1 34283:2 34304:1 34306:1 34314:1 34321:2 34351:1 34353:1 34363:1 34364:1 34367:1 34371:1 34373:1 34385:2 34403:1 34407:1 34410:1 34413:3 34423:1 34435:13 34437:1 34440:1 34445:1 34455:1 34470:1 34478:3 34497:6 34526:1 34566:1 34570:1 34586:1 34589:1 34596:4 34615:1 34619:1 34627:1 34629:1 34630:2 34634:11 34643:3 34654:1 34659:1 34662:1 34673:1 34674:1 34682:1 34689:1 34691:12 34701:1 34749:1 34757:2 34761:1 34782:1 34794:1 34804:2 34834:1 34862:1 34878:2 34924:1 34936:1 34957:1 34961:1 34968:1 34989:1 34996:41 34997:1 35022:1 35026:5 35031:2 35039:2 35041:5 35042:2 35043:1 35055:1 35056:1 35094:1 35098:1 35124:4 35128:11 35129:1 35135:2 35141:1 35149:1 35152:2 35157:1 35164:1 35167:1 35177:1 35184:1 35201:1 35207:2 35253:1 35265:1 35281:2 35289:2 35310:2 35311:1 35326:1 35342:1 35347:1 35354:4 35382:2 35395:4 35410:1 35456:1 35464:3 35468:1 35470:1 35473:1 35488:1 35499:1 35503:2 35517:2 35520:1 35526:2 35529:1 35539:1 35582:1 35585:1 35589:2 35592:1 35602:2 35614:1 35625:2 35634:1 35635:1 35636:2 35648:1 35656:1 35661:1 35664:1 35665:1 35677:1 35681:2 35692:1 35696:1 35700:1 35714:1 35719:1 35721:1 35731:1 35734:1 35746:1 35748:9 35749:1 35753:2 35757:3 35785:1 35789:3 35805:6 35831:4 35836:1 35837:2 35838:2 35845:1 35850:33 35862:2 35888:1 35901:1 35925:1 35939:1 35953:1 35957:1 35959:2 35964:1 35965:2 35966:4 35989:1 36007:1 36010:2 36011:1 36028:2 36033:1 36051:1 36059:1 36065:1 36072:1 36075:2 36091:1 2 9:1 10:1 19:1 31:2 32:1 33:1 51:1 55:1 65:1 68:1 69:1 73:1 76:1 86:1 95:1 104:3 106:2 107:1 122:1 128:1 140:1 166:2 177:1 184:1 191:2 196:2 200:2 202:1 207:1 211:1 221:1 224:1 226:1 235:1 239:2 251:1 255:1 256:1 271:1 278:2 297:3 302:5 303:1 309:2 322:2 323:1 328:1 330:1 365:2 372:1 412:1 414:4 418:1 433:1 435:2 442:1 450:1 452:1 454:1 460:1 461:1 478:2 498:2 503:2 515:1 520:2 526:1 539:1 541:1 549:1 553:1 555:2 568:2 583:2 601:3 607:1 610:1 621:1 626:1 641:1 650:1 659:1 662:1 671:1 672:1 674:1 684:1 690:1 705:1 720:1 750:1 751:3 755:2 759:2 761:1 766:1 781:1 795:6 820:34 821:1 825:4 831:1 833:1 835:1 854:1 861:1 881:1 886:3 889:2 919:2 931:1 935:2 941:2 955:3 964:1 999:2 1019:2 1022:1 1024:3 1028:2 1032:1 1034:1 1035:3 1058:1 1082:3 1091:1 1102:3 1110:1 1124:1 1128:1 1135:3 1136:7 1140:3 1142:1 1150:5 1167:1 1176:4 1181:1 1194:2 1203:3 1206:9 1210:1 1212:2 1219:1 1226:2 1233:2 1234:3 1253:2 1256:1 1260:2 1270:3 1293:1 1301:2 1305:1 1308:1 1322:1 1326:4 1327:1 1330:1 1377:1 1385:2 1386:1 1391:1 1403:1 1431:1 1442:1 1454:1 1459:3 1510:1 1537:1 1541:33 1550:1 1554:2 1555:2 1556:1 1564:4 1567:1 1583:1 1592:1 1595:2 1596:2 1603:1 1605:1 1610:1 1611:1 1613:1 1616:2 1617:3 1619:1 1623:1 1627:1 1632:1 1634:1 1638:1 1651:1 1652:1 1682:1 1705:1 1706:2 1740:4 1755:1 1757:1 1760:1 1763:1 1765:1 1771:2 1773:10 1792:1 1808:1 1809:1 1824:1 1836:3 1840:1 1843:1 1847:1 1849:2 1861:1 1870:1 1880:1 1888:1 1889:1 1891:3 1895:2 1897:11 1899:1 1903:1 1904:1 1910:1 1911:1 1915:1 1918:1 1925:1 1929:2 1930:1 1932:1 1960:3 1970:1 1990:1 1991:1 1997:4 2013:1 2014:1 2031:1 2036:1 2037:2 2043:1 2058:2 2067:1 2088:1 2095:1 2097:1 2098:10 2102:1 2104:1 2105:1 2106:2 2123:1 2139:1 2145:1 2147:1 2158:2 2160:1 2164:3 2172:1 2175:1 2180:1 2196:1 2198:1 2199:1 2202:1 2218:1 2249:1 2260:1 2265:1 2269:1 2276:1 2279:1 2282:1 2292:1 2307:1 2312:1 2317:2 2320:2 2327:1 2328:1 2345:1 2348:1 2352:3 2355:1 2364:1 2368:1 2372:1 2376:2 2379:2 2390:1 2400:2 2406:2 2418:2 2420:1 2436:1 2438:1 2446:1 2454:1 2455:1 2462:1 2467:1 2486:7 2494:1 2508:1 2517:1 2522:2 2525:1 2546:1 2547:1 2557:1 2566:1 2595:1 2596:1 2598:1 2599:2 2604:1 2607:1 2619:1 2624:1 2638:1 2639:1 2642:1 2644:1 2652:1 2655:1 2665:1 2676:1 2696:9 2721:1 2743:2 2746:1 2747:1 2783:1 2789:1 2817:1 2827:1 2848:1 2852:1 2857:1 2859:2 2861:2 2862:4 2865:2 2866:2 2867:3 2870:1 2872:5 2877:8 2881:4 2883:7 2887:4 2891:1 2892:1 2893:1 2895:1 2897:1 2900:1 2902:4 2906:3 2909:1 2910:1 2913:1 2918:1 2919:1 2920:1 2941:1 2942:1 2946:1 2954:2 2955:1 2971:5 2974:1 2980:1 2999:2 3002:1 3004:1 3026:1 3027:1 3038:1 3042:1 3044:4 3045:4 3051:1 3054:4 3057:1 3061:1 3075:2 3076:4 3086:3 3087:1 3098:1 3100:1 3106:1 3116:4 3131:1 3133:1 3137:1 3145:1 3165:1 3176:2 3177:2 3179:1 3186:1 3191:1 3199:1 3206:1 3224:2 3240:1 3244:1 3255:2 3265:1 3266:1 3267:1 3312:1 3319:1 3322:2 3341:2 3348:2 3359:2 3366:1 3367:1 3371:1 3380:3 3381:1 3388:4 3389:1 3406:1 3410:1 3413:3 3415:4 3420:1 3423:3 3429:1 3443:1 3451:1 3454:1 3493:1 3497:3 3507:5 3510:5 3511:1 3516:1 3520:2 3539:2 3547:1 3560:1 3584:2 3590:1 3603:2 3608:1 3612:2 3623:1 3645:17 3648:34 3651:1 3652:3 3653:1 3663:2 3666:1 3678:1 3681:1 3682:1 3691:4 3692:1 3695:1 3698:1 3706:8 3736:4 3741:2 3753:1 3756:1 3784:2 3789:1 3792:1 3793:1 3794:1 3836:2 3843:1 3846:3 3851:1 3860:1 3867:1 3897:3 3926:1 3958:1 3962:1 4045:1 4067:4 4070:1 4091:1 4097:1 4101:1 4119:2 4142:1 4146:1 4147:1 4157:1 4161:3 4162:1 4171:1 4179:3 4193:1 4201:1 4211:1 4223:1 4224:1 4226:4 4251:2 4279:1 4328:1 4334:1 4355:1 4359:1 4371:1 4375:2 4381:1 4383:1 4384:1 4395:1 4396:1 4402:2 4411:1 4412:1 4444:1 4448:1 4452:1 4459:1 4465:1 4474:1 4476:1 4479:1 4488:1 4492:1 4495:1 4517:2 4531:1 4539:1 4555:1 4564:1 4575:1 4580:1 4582:1 4601:1 4626:1 4643:3 4645:2 4646:1 4651:2 4654:2 4676:1 4712:1 4722:3 4724:1 4755:1 4762:1 4767:2 4773:1 4779:1 4780:3 4795:1 4803:1 4809:1 4813:1 4815:2 4819:1 4820:2 4830:2 4843:1 4854:1 4855:1 4857:1 4859:1 4867:3 4882:1 4885:1 4886:1 4887:1 4914:1 4920:33 4922:2 4927:1 4931:1 4941:1 4947:1 4955:1 4985:1 4992:1 4993:1 5008:1 5015:2 5019:4 5020:4 5032:2 5039:1 5047:1 5054:5 5058:5 5059:2 5075:1 5076:2 5094:1 5119:1 5125:1 5134:1 5152:1 5153:2 5163:1 5170:3 5178:1 5190:1 5194:1 5232:1 5233:1 5235:1 5237:2 5240:1 5241:1 5247:1 5254:1 5272:1 5282:1 5295:1 5298:1 5299:2 5300:1 5302:3 5307:1 5308:3 5324:1 5348:1 5364:1 5371:3 5402:2 5404:1 5408:1 5411:1 5416:1 5428:1 5435:2 5437:33 5444:1 5453:1 5456:1 5459:5 5465:1 5471:1 5473:1 5483:1 5486:1 5492:1 5555:2 5566:6 5587:1 5588:1 5598:1 5625:1 5638:3 5655:2 5662:3 5663:1 5672:2 5676:2 5679:1 5683:1 5685:1 5687:1 5712:1 5731:7 5738:1 5760:2 5832:5 5843:4 5850:1 5869:1 5879:6 5885:1 5913:1 5924:1 5948:1 5960:1 5967:2 5969:2 5973:2 5974:1 5980:1 5983:3 5995:1 6004:1 6005:3 6017:1 6041:1 6043:1 6049:1 6075:2 6078:2 6096:19 6097:2 6112:2 6115:1 6140:6 6149:2 6158:2 6187:2 6191:1 6207:1 6217:1 6253:4 6254:1 6257:3 6277:4 6278:4 6279:2 6282:1 6285:5 6291:1 6292:2 6293:4 6294:1 6303:1 6309:2 6312:5 6315:4 6316:1 6326:1 6334:1 6358:1 6407:1 6411:2 6430:1 6451:1 6483:1 6495:1 6506:1 6528:1 6561:1 6580:1 6610:1 6622:1 6623:2 6628:1 6655:1 6679:1 6683:1 6684:1 6695:1 6698:2 6738:3 6739:1 6759:2 6787:1 6799:1 6801:2 6803:1 6807:1 6832:1 6835:1 6843:2 6859:1 6861:1 6867:3 6870:1 6942:1 6956:1 6957:1 6968:1 6970:1 6972:1 6982:2 6983:1 6991:2 6996:1 7008:1 7010:1 7012:1 7036:2 7037:1 7038:2 7046:1 7051:1 7053:1 7061:2 7062:10 7065:1 7070:2 7072:1 7076:1 7083:1 7086:2 7119:2 7130:2 7138:1 7140:1 7164:2 7167:1 7205:1 7213:1 7225:2 7243:1 7250:1 7252:2 7264:2 7289:10 7295:3 7334:1 7346:1 7366:1 7377:1 7383:1 7394:1 7397:1 7421:1 7422:1 7423:2 7432:3 7434:1 7451:1 7455:1 7494:1 7496:1 7525:1 7532:1 7537:2 7561:2 7567:2 7580:2 7583:1 7589:1 7591:1 7599:1 7603:2 7604:3 7607:1 7608:1 7616:1 7618:1 7622:1 7630:1 7635:1 7656:1 7665:1 7684:1 7690:1 7707:2 7708:2 7709:1 7715:1 7716:1 7718:1 7721:2 7722:1 7725:1 7727:1 7728:1 7729:3 7734:2 7736:2 7739:2 7741:2 7742:1 7748:1 7764:1 7782:2 7805:1 7822:2 7825:1 7840:1 7847:1 7852:4 7857:2 7860:1 7871:3 7880:1 7881:1 7895:1 7905:1 7937:2 7945:1 7965:1 7966:1 7972:1 7974:1 7989:7 7995:1 8002:1 8004:4 8006:1 8007:1 8008:1 8009:2 8014:4 8015:2 8016:1 8017:1 8019:4 8020:8 8021:1 8022:1 8030:1 8034:1 8054:1 8077:1 8082:1 8085:2 8086:1 8125:1 8136:1 8143:1 8176:1 8185:2 8186:1 8200:3 8203:3 8224:1 8243:2 8257:1 8260:1 8284:1 8293:1 8295:1 8297:1 8308:1 8315:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:2 8349:1 8366:1 8370:2 8377:1 8393:2 8421:1 8427:1 8446:1 8449:1 8481:1 8489:1 8493:1 8496:1 8501:3 8524:3 8564:2 8566:1 8570:1 8577:1 8597:1 8602:2 8617:1 8641:1 8648:1 8654:1 8661:1 8691:1 8695:2 8709:1 8714:1 8731:1 8738:1 8751:1 8772:1 8841:1 8842:1 8845:1 8849:1 8854:2 8866:1 8880:1 8883:6 8905:1 8940:1 8943:1 8946:1 8955:1 8960:1 8966:2 8975:1 8978:2 8996:1 9007:1 9012:1 9026:1 9033:1 9052:3 9060:1 9090:1 9113:1 9122:1 9123:2 9126:1 9134:1 9138:1 9143:1 9146:1 9153:1 9160:1 9194:1 9197:1 9205:1 9216:1 9217:2 9231:1 9253:1 9278:1 9282:2 9306:1 9307:1 9325:1 9328:1 9333:1 9337:1 9338:6 9372:9 9374:1 9381:1 9394:1 9426:1 9428:2 9433:1 9437:1 9442:1 9446:1 9470:2 9484:1 9492:1 9495:1 9499:1 9526:4 9529:1 9577:1 9586:1 9588:1 9612:3 9619:1 9623:1 9628:12 9629:13 9637:1 9655:1 9656:1 9657:5 9661:1 9688:3 9694:4 9695:1 9702:51 9707:1 9708:1 9711:2 9719:1 9720:1 9723:1 9733:19 9738:5 9744:1 9750:1 9754:1 9758:1 9761:1 9778:1 9780:1 9781:4 9787:2 9793:2 9803:1 9813:1 9849:6 9866:2 9870:1 9877:1 9885:1 9895:1 9924:1 9926:2 9942:3 9957:1 9963:1 9967:4 9968:1 9975:1 9978:1 9999:6 10011:1 10023:1 10058:1 10063:2 10079:1 10099:2 10103:1 10161:1 10167:1 10171:1 10175:1 10209:1 10213:1 10223:1 10235:2 10242:1 10261:2 10284:1 10286:1 10298:1 10313:1 10314:1 10321:34 10331:1 10333:1 10338:1 10340:1 10342:1 10349:1 10356:1 10359:16 10360:4 10376:1 10378:2 10399:1 10401:1 10406:1 10407:1 10411:1 10412:2 10431:1 10444:1 10452:1 10470:42 10488:1 10520:2 10529:1 10552:1 10559:1 10573:1 10598:1 10599:2 10612:1 10615:1 10624:1 10631:1 10669:1 10683:1 10686:2 10695:1 10697:1 10701:2 10703:1 10704:1 10706:1 10707:1 10711:1 10716:2 10717:5 10718:1 10736:1 10744:1 10749:2 10772:3 10773:1 10778:1 10789:2 10791:1 10792:1 10796:1 10798:1 10807:2 10808:2 10812:1 10813:1 10826:1 10831:1 10848:1 10849:1 10850:1 10864:1 10878:1 10884:1 10895:1 10900:2 10911:3 10937:1 10979:1 10991:1 10994:1 11002:2 11075:3 11078:1 11081:1 11109:2 11129:1 11140:1 11163:2 11165:1 11169:1 11176:1 11179:1 11181:1 11183:2 11207:1 11212:4 11226:1 11230:1 11231:1 11233:3 11238:1 11247:3 11258:1 11268:1 11270:1 11272:1 11311:1 11320:1 11325:1 11334:3 11340:1 11343:2 11347:2 11378:1 11382:6 11391:5 11402:1 11404:1 11412:2 11422:1 11457:1 11489:4 11522:3 11523:1 11556:1 11557:4 11561:2 11564:1 11569:5 11571:3 11572:1 11573:1 11575:1 11583:1 11585:2 11587:2 11598:1 11609:1 11617:1 11619:1 11625:1 11628:1 11636:1 11640:1 11641:1 11642:2 11643:1 11645:1 11654:1 11668:1 11675:1 11678:3 11690:8 11694:1 11697:2 11707:2 11718:2 11720:1 11723:1 11739:2 11744:1 11745:1 11755:1 11770:1 11771:1 11774:2 11776:1 11791:1 11793:2 11795:2 11804:1 11815:1 11835:1 11840:1 11848:1 11851:1 11861:1 11864:1 11865:2 11872:2 11876:2 11882:1 11885:1 11887:1 11888:1 11899:1 11902:1 11903:1 11912:1 11917:1 11918:1 11919:10 11930:1 11931:2 11932:9 11936:1 11947:1 11955:1 11959:1 11961:2 11966:1 11969:1 11976:1 11978:1 11982:3 11985:1 11988:1 11992:1 12004:1 12014:1 12031:1 12033:1 12046:1 12052:1 12056:1 12057:1 12073:1 12076:1 12078:1 12081:1 12082:1 12083:2 12086:1 12096:1 12104:1 12111:1 12112:1 12113:1 12120:1 12131:2 12146:1 12147:1 12186:1 12191:1 12214:1 12221:6 12229:1 12230:1 12231:1 12237:3 12239:4 12248:1 12254:1 12255:1 12263:1 12269:1 12275:1 12282:1 12301:1 12324:1 12339:1 12359:1 12361:1 12391:33 12394:1 12398:1 12401:1 12407:1 12420:1 12428:1 12435:2 12446:1 12451:1 12453:1 12458:1 12471:1 12473:1 12479:1 12490:2 12493:1 12497:1 12508:1 12520:1 12521:1 12532:1 12538:1 12540:4 12547:3 12552:1 12561:2 12570:2 12580:1 12592:1 12608:1 12618:2 12619:2 12630:1 12636:1 12641:1 12643:2 12651:2 12654:2 12669:5 12673:5 12684:1 12689:1 12692:3 12694:1 12734:5 12756:1 12757:1 12760:2 12774:1 12777:1 12794:1 12821:1 12824:2 12829:1 12837:1 12844:1 12848:1 12850:1 12867:7 12879:1 12881:1 12898:1 12936:1 12956:1 12958:1 12977:2 12981:1 12988:1 13013:5 13028:1 13040:2 13049:1 13051:1 13052:1 13058:1 13078:1 13079:1 13080:1 13089:1 13096:1 13112:1 13113:7 13128:1 13154:3 13175:1 13179:1 13187:1 13213:1 13234:1 13241:1 13258:4 13267:1 13282:1 13283:5 13297:1 13303:1 13316:1 13325:2 13357:2 13377:1 13384:1 13385:2 13411:1 13412:5 13415:1 13418:2 13420:6 13429:1 13443:1 13454:1 13464:2 13468:1 13471:1 13472:1 13474:1 13481:1 13483:1 13487:1 13493:7 13498:1 13505:1 13509:1 13516:1 13517:2 13537:1 13550:1 13567:1 13568:1 13588:1 13601:1 13632:10 13633:1 13647:1 13648:1 13657:1 13669:2 13673:1 13682:1 13686:2 13690:3 13694:3 13704:1 13710:1 13721:4 13737:1 13749:1 13761:1 13765:2 13767:1 13768:1 13777:1 13793:1 13798:8 13803:1 13808:1 13823:1 13824:3 13826:4 13828:1 13837:1 13845:2 13849:1 13859:1 13880:1 13881:1 13891:6 13895:1 13897:1 13898:1 13900:1 13901:1 13910:2 13919:1 13921:2 13931:1 13942:1 13956:1 13972:2 13996:1 13998:1 14008:1 14009:1 14015:1 14029:1 14032:3 14036:1 14042:1 14070:2 14071:2 14092:1 14093:2 14095:2 14105:2 14107:1 14114:1 14115:1 14116:4 14119:1 14122:2 14124:1 14128:1 14134:1 14145:2 14146:5 14149:1 14152:1 14154:1 14162:1 14186:1 14189:3 14191:1 14218:1 14228:1 14235:5 14263:1 14265:1 14280:1 14286:2 14291:1 14292:1 14296:1 14302:1 14308:1 14309:1 14322:9 14337:2 14340:2 14342:1 14376:1 14380:1 14406:1 14410:1 14411:1 14416:1 14430:1 14448:2 14462:1 14464:1 14488:1 14491:6 14515:1 14517:1 14519:1 14523:1 14528:1 14533:3 14549:1 14550:1 14554:2 14555:1 14559:1 14564:1 14567:6 14568:4 14571:2 14577:1 14580:5 14586:1 14611:1 14614:1 14621:2 14628:1 14632:2 14636:1 14638:8 14642:1 14643:1 14654:1 14666:1 14667:1 14675:2 14686:1 14689:1 14716:1 14727:3 14735:1 14737:1 14742:4 14744:1 14772:3 14787:1 14791:3 14803:1 14840:1 14844:1 14854:1 14869:1 14870:1 14910:1 14913:1 14940:1 14941:2 14960:1 14984:1 15012:1 15014:1 15030:1 15037:3 15046:1 15060:4 15079:1 15083:1 15086:1 15095:1 15123:1 15132:1 15139:1 15140:1 15150:1 15151:1 15152:3 15160:1 15161:5 15162:1 15166:1 15169:1 15178:1 15185:1 15197:1 15205:1 15210:1 15220:1 15222:1 15250:1 15269:1 15278:1 15292:1 15312:2 15315:5 15326:1 15345:1 15383:1 15385:2 15400:1 15414:2 15448:1 15460:1 15472:1 15487:1 15502:3 15519:1 15525:1 15526:1 15552:1 15574:1 15577:1 15584:1 15587:1 15595:1 15598:1 15675:1 15705:1 15707:1 15746:1 15747:1 15776:3 15778:34 15782:1 15786:1 15794:1 15797:1 15800:5 15803:1 15813:1 15826:1 15844:6 15855:1 15864:2 15868:1 15885:1 15895:1 15900:1 15910:1 15912:1 15915:1 15942:2 15943:1 15944:2 15981:1 15989:1 16001:1 16006:2 16008:1 16013:1 16017:1 16022:1 16083:1 16099:2 16114:1 16134:1 16142:2 16147:1 16149:1 16173:1 16190:1 16196:1 16198:1 16201:1 16213:1 16217:1 16236:1 16241:1 16253:1 16268:1 16269:1 16285:1 16289:1 16293:1 16294:1 16299:1 16303:1 16304:1 16320:1 16327:12 16332:4 16336:3 16354:1 16357:1 16365:2 16372:1 16375:1 16393:1 16394:1 16456:1 16460:1 16475:1 16490:1 16499:1 16502:2 16505:2 16510:6 16516:5 16528:1 16535:1 16559:1 16561:1 16594:1 16609:14 16613:1 16622:1 16643:1 16661:1 16706:1 16720:1 16729:1 16731:1 16732:2 16742:1 16775:1 16792:3 16797:4 16803:2 16823:1 16831:1 16835:1 16837:1 16843:1 16854:1 16862:1 16869:2 16874:2 16882:1 16889:1 16897:1 16898:1 16914:2 16918:1 16929:2 16964:1 16968:2 16970:3 16971:1 16973:1 16975:1 16977:2 16978:1 16979:10 16980:1 16981:1 16983:2 17002:1 17003:2 17004:1 17008:1 17009:1 17013:6 17022:1 17026:1 17031:1 17033:2 17064:1 17075:1 17076:1 17082:1 17100:1 17114:1 17120:1 17125:1 17152:1 17154:1 17156:1 17161:2 17172:10 17175:1 17181:2 17193:1 17204:1 17214:1 17217:1 17230:1 17234:1 17243:1 17246:1 17273:1 17276:1 17278:2 17286:5 17303:1 17309:1 17315:3 17319:1 17320:2 17333:11 17336:7 17417:2 17426:5 17436:1 17438:1 17449:4 17450:1 17481:1 17516:1 17545:1 17547:3 17562:1 17564:2 17571:1 17598:1 17601:1 17607:2 17623:1 17629:1 17636:1 17639:1 17675:4 17679:1 17723:1 17734:1 17762:1 17769:1 17784:2 17792:2 17794:1 17798:1 17806:2 17813:2 17814:2 17817:3 17829:1 17835:2 17836:1 17849:1 17850:2 17858:2 17869:1 17903:1 17918:1 17921:1 17924:1 17925:2 17929:1 17941:1 17942:2 17943:1 17945:1 17955:1 17957:2 17972:1 17976:1 17978:2 17981:1 17984:1 17992:1 17993:1 17994:1 17997:1 17998:1 17999:1 18000:1 18005:1 18011:1 18013:1 18016:1 18030:1 18032:1 18037:2 18039:1 18048:1 18057:2 18073:1 18080:1 18092:34 18094:1 18101:3 18105:1 18106:1 18110:1 18120:1 18127:1 18128:1 18137:1 18184:1 18198:1 18200:1 18203:5 18214:1 18215:1 18221:2 18244:1 18249:1 18270:3 18274:1 18276:1 18277:1 18290:1 18297:1 18298:1 18320:3 18325:1 18339:1 18342:1 18345:1 18348:1 18390:1 18392:1 18396:1 18442:1 18463:2 18470:2 18471:1 18474:1 18485:1 18506:1 18535:1 18549:1 18559:1 18560:1 18561:2 18563:2 18574:1 18582:1 18593:1 18600:2 18601:1 18603:1 18608:7 18614:1 18645:3 18651:1 18673:1 18676:1 18677:1 18696:1 18703:1 18708:3 18710:1 18712:1 18715:1 18732:1 18747:1 18752:1 18767:2 18769:1 18779:2 18781:3 18793:1 18794:1 18811:1 18823:2 18855:1 18867:1 18870:1 18876:2 18898:2 18928:1 18953:3 18954:1 18959:1 18968:1 18989:1 18993:2 18997:1 19019:1 19029:1 19050:1 19060:1 19064:2 19067:1 19083:1 19087:2 19096:1 19097:1 19120:1 19141:1 19154:1 19169:1 19175:1 19191:1 19192:3 19193:4 19204:1 19225:1 19235:1 19263:5 19269:2 19276:1 19287:1 19303:1 19310:1 19336:1 19361:1 19397:1 19406:1 19416:1 19424:1 19428:1 19437:2 19450:1 19452:1 19458:4 19469:1 19471:1 19475:1 19489:1 19490:5 19496:3 19500:2 19513:4 19514:1 19518:1 19525:1 19526:1 19529:1 19532:1 19538:3 19548:1 19567:1 19602:1 19605:1 19615:5 19616:1 19620:2 19641:2 19645:4 19649:2 19655:1 19658:1 19664:1 19670:1 19672:1 19679:1 19689:1 19691:3 19703:1 19708:3 19724:1 19772:1 19775:1 19787:1 19796:1 19806:1 19810:15 19814:2 19815:1 19820:1 19851:4 19854:3 19858:1 19865:2 19868:2 19876:1 19894:2 19901:1 19904:2 19905:1 19907:1 19908:2 19932:12 19947:1 19956:1 19961:1 19967:1 19976:4 20027:3 20034:1 20046:2 20061:1 20065:1 20074:1 20076:1 20078:1 20090:1 20091:2 20109:4 20110:2 20111:1 20115:4 20117:1 20124:1 20125:3 20126:1 20127:2 20130:1 20153:1 20168:1 20174:1 20201:2 20221:1 20231:1 20232:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20295:1 20296:1 20318:1 20324:1 20325:1 20350:1 20355:1 20369:2 20383:1 20390:1 20431:1 20444:1 20445:1 20446:2 20455:1 20499:1 20522:1 20537:1 20540:2 20556:2 20566:1 20568:1 20572:1 20588:3 20593:1 20604:1 20606:10 20607:1 20608:1 20617:1 20643:1 20646:1 20649:1 20654:1 20679:2 20680:1 20683:1 20689:1 20690:1 20691:2 20727:1 20741:1 20746:1 20751:3 20754:1 20762:2 20781:2 20783:1 20785:3 20796:1 20799:2 20816:1 20818:1 20865:1 20878:1 20885:1 20900:1 20917:1 20918:1 20930:1 20936:1 20941:46 20948:1 20949:2 20974:1 20978:1 20980:1 20997:1 21000:1 21003:4 21044:1 21064:1 21071:1 21072:1 21081:1 21083:1 21097:1 21101:1 21116:1 21124:3 21130:2 21145:2 21149:1 21155:1 21170:1 21174:2 21204:1 21209:1 21214:1 21215:1 21235:1 21261:1 21263:1 21284:1 21292:1 21299:1 21316:1 21318:2 21322:2 21323:1 21324:1 21337:1 21355:1 21371:1 21376:1 21423:1 21443:1 21445:1 21473:1 21477:1 21500:1 21503:1 21508:1 21512:1 21513:1 21518:1 21522:2 21524:1 21530:1 21540:1 21566:1 21586:1 21591:2 21592:1 21593:1 21597:1 21602:1 21603:1 21608:2 21612:2 21634:1 21643:1 21686:2 21696:1 21701:1 21704:2 21713:2 21724:1 21754:1 21788:1 21806:1 21809:1 21819:1 21823:4 21827:1 21829:2 21831:1 21843:1 21864:1 21866:1 21872:2 21874:2 21875:2 21886:1 21892:1 21899:1 21917:2 21925:1 21939:3 21943:2 21975:4 21976:1 21987:4 21996:1 22008:4 22009:1 22019:1 22032:1 22037:1 22067:1 22076:1 22079:7 22083:1 22084:2 22123:3 22130:1 22143:2 22169:1 22173:1 22177:2 22181:1 22186:2 22190:1 22207:1 22247:1 22251:2 22298:1 22300:4 22304:2 22305:2 22308:1 22315:1 22327:1 22345:1 22347:1 22361:1 22362:1 22386:1 22388:2 22391:1 22406:1 22424:1 22429:5 22490:1 22493:2 22497:1 22516:1 22530:2 22547:1 22572:1 22584:1 22628:9 22643:1 22650:1 22666:1 22668:1 22677:2 22715:1 22720:1 22727:4 22737:1 22754:1 22762:1 22764:1 22781:1 22783:1 22791:2 22800:1 22806:2 22809:1 22816:1 22824:1 22839:1 22866:1 22870:1 22883:2182 22893:2 22899:1 22909:2 22923:1 22944:1 22966:1 22969:1 22971:1 22981:1 22984:1 23008:1 23031:3 23039:1 23043:3 23044:1 23079:1 23082:1 23098:1 23113:1 23119:1 23129:2 23139:1 23164:1 23171:1 23173:1 23189:1 23193:2 23194:1 23202:1 23223:1 23224:1 23270:1 23279:1 23293:2 23304:1 23320:1 23321:1 23348:1 23365:2 23371:1 23411:1 23427:1 23438:1 23456:1 23457:1 23468:2 23470:1 23474:1 23482:1 23492:1 23505:1 23508:1 23509:1 23520:1 23521:3 23523:2 23543:1 23549:1 23565:1 23603:1 23607:6 23640:5 23647:1 23653:1 23658:2 23664:1 23698:1 23706:1 23708:1 23712:1 23715:1 23718:1 23735:1 23763:1 23766:1 23773:1 23784:1 23787:1 23789:1 23800:1 23805:1 23812:1 23821:1 23833:7 23834:4 23874:1 23880:4 23900:1 23914:2 23922:1 23932:1 23934:1 23947:23 23958:1 23978:1 23979:2 24012:2 24013:1 24019:1 24020:1 24021:2 24044:1 24047:4 24049:1 24051:1 24052:2 24064:2 24066:1 24079:1 24092:1 24097:2 24105:3 24106:1 24118:1 24154:2 24176:1 24185:1 24191:1 24197:1 24205:1 24209:4 24217:2 24233:1 24239:3 24240:1 24255:1 24268:1 24271:1 24275:1 24289:2 24292:1 24306:1 24314:2 24327:1 24332:1 24342:1 24345:2 24347:1 24364:1 24369:1 24376:4 24385:1 24405:1 24424:1 24444:1 24449:1 24450:1 24452:1 24474:1 24479:1 24480:3 24482:2 24483:1 24491:1 24511:1 24518:2 24534:1 24539:2 24553:1 24566:1 24591:2 24592:8 24598:1 24601:1 24604:1 24607:1 24612:1 24620:1 24630:2 24640:1 24643:1 24651:2 24653:2 24656:3 24658:7 24663:1 24674:1 24680:2 24681:6 24682:1 24683:1 24699:1 24700:1 24704:1 24708:5 24728:2 24729:1 24753:2 24754:1 24762:3 24774:1 24777:1 24781:6 24792:1 24794:1 24808:3 24813:1 24820:1 24826:2 24850:1 24853:1 24869:1 24883:5 24894:2 24918:1 24919:1 24924:1 24945:1 24950:1 24956:1 24978:1 25000:1 25031:2 25041:1 25047:1 25052:1 25053:1 25058:1 25067:1 25076:1 25080:1 25114:6 25117:1 25122:1 25123:1 25143:1 25144:2 25157:1 25161:2 25163:1 25179:3 25217:1 25225:1 25240:1 25244:1 25269:1 25285:1 25299:1 25300:2 25303:1 25326:1 25334:2 25351:1 25357:1 25369:2 25373:1 25379:1 25386:1 25392:1 25407:2 25410:3 25417:1 25423:1 25427:2 25428:1 25431:2 25448:1 25450:2 25456:1 25461:1 25468:1 25481:1 25486:1 25491:1 25498:2 25502:2 25505:1 25511:3 25526:1 25527:1 25529:1 25541:1 25543:1 25553:2 25554:2 25568:1 25572:1 25580:2 25582:2 25586:1 25590:4 25600:2 25602:1 25605:1 25608:3 25609:2 25623:2 25630:1 25632:1 25637:4 25655:1 25690:1 25699:1 25720:1 25721:5 25725:1 25733:2 25738:1 25781:1 25782:1 25786:2 25793:3 25807:1 25811:1 25815:1 25824:2 25841:1 25846:1 25848:1 25852:1 25859:2 25867:1 25879:1 25903:1 25907:1 25917:1 25928:1 25934:1 25943:1 25948:1 25952:1 25973:1 25994:1 26000:1 26005:1 26011:2 26014:1 26018:4 26031:2 26044:1 26052:1 26062:3 26070:1 26091:1 26099:1 26102:2 26107:1 26119:1 26120:1 26124:1 26138:1 26148:1 26151:1 26153:1 26155:1 26156:4 26162:1 26167:1 26178:1 26183:1 26191:1 26203:2 26204:1 26211:1 26212:1 26214:1 26215:2 26216:2 26226:1 26228:2 26236:1 26260:1 26261:1 26275:1 26278:1 26279:1 26285:1 26306:1 26313:1 26322:1 26324:2 26327:2 26337:4 26342:1 26344:1 26345:1 26346:1 26347:1 26361:2 26362:2 26383:1 26385:4 26394:1 26395:1 26407:1 26415:1 26424:1 26425:1 26426:1 26438:3 26444:1 26453:4 26458:1 26459:1 26460:1 26475:1 26496:1 26505:1 26507:1 26508:7 26552:1 26555:1 26589:2 26590:1 26593:1 26602:7 26605:2 26608:1 26610:1 26612:4 26614:1 26628:3 26642:1 26644:1 26651:1 26667:1 26668:10 26671:1 26679:1 26694:1 26740:1 26743:1 26744:1 26776:1 26777:2 26779:4 26782:2 26787:1 26794:1 26795:1 26796:1 26797:2 26808:2 26809:2 26815:1 26818:1 26820:1 26826:7 26827:1 26828:4 26835:1 26842:1 26843:1 26844:1 26854:1 26874:1 26907:1 26914:1 26930:1 26949:3 26984:2 26995:2 26999:1 27004:4 27008:1 27029:2 27033:1 27051:1 27072:1 27087:3 27092:1 27097:1 27099:1 27102:1 27103:1 27114:1 27127:4 27138:1 27149:2 27153:2 27171:1 27183:1 27203:1 27213:2 27243:1 27251:2 27259:1 27260:15 27283:1 27287:2 27294:1 27319:1 27331:12 27333:2 27339:1 27343:1 27354:1 27358:1 27365:1 27393:1 27396:4 27398:2 27401:1 27412:4 27415:2 27447:1 27460:7 27470:1 27478:1 27484:1 27500:3 27501:1 27508:1 27522:1 27526:1 27527:1 27542:1 27544:2 27573:1 27591:1 27594:1 27599:1 27601:1 27603:2 27619:9 27633:3 27651:1 27653:1 27677:3 27703:1 27723:1 27731:1 27752:1 27760:1 27767:1 27776:1 27779:1 27782:1 27787:33 27804:1 27808:1 27810:3 27813:3 27814:1 27816:1 27817:2 27819:1 27820:1 27825:1 27854:2 27859:3 27860:1 27862:1 27866:1 27876:3 27878:1 27879:1 27889:1 27920:1 27922:1 27925:1 27957:1 27963:1 27973:5 27974:1 27983:1 27987:2 28000:2 28007:1 28011:4 28017:1 28038:1 28051:1 28052:1 28081:1 28154:1 28160:3 28179:3 28191:1 28194:1 28206:1 28263:1 28276:1 28278:1 28279:1 28287:1 28297:1 28298:3 28303:1 28308:1 28310:1 28313:3 28316:1 28317:1 28318:2 28348:1 28370:34 28384:1 28398:3 28399:1 28409:1 28433:1 28436:1 28460:1 28464:1 28470:1 28472:2 28473:1 28482:2 28483:1 28489:6 28512:1 28523:1 28528:1 28541:1 28543:1 28560:1 28567:1 28572:1 28577:3 28582:2 28587:1 28593:1 28608:2 28612:1 28620:1 28621:1 28639:1 28645:1 28647:2 28650:2 28686:2 28693:1 28752:1 28757:1 28786:1 28788:1 28811:1 28812:1 28814:2 28815:1 28817:2 28826:1 28831:1 28833:1 28852:1 28899:1 28908:1 28913:1 28929:1 28932:1 28939:2 28940:1 28949:1 28958:1 28974:2 28983:2 28993:1 28996:2 29004:1 29014:1 29016:1 29020:1 29032:1 29041:3 29087:1 29123:1 29125:1 29126:1 29133:2 29141:1 29149:1 29169:1 29170:3 29174:1 29179:1 29187:1 29190:7 29192:1 29196:1 29215:1 29233:1 29241:1 29251:1 29258:1 29271:1 29297:1 29302:1 29320:1 29328:1 29330:1 29334:1 29363:1 29367:2 29398:1 29405:1 29417:1 29419:3 29426:2 29451:1 29455:2 29464:1 29480:1 29486:2 29493:1 29516:2 29527:1 29551:1 29554:1 29557:5 29564:2 29566:1 29568:2 29583:2 29584:2 29587:3 29591:1 29592:1 29604:1 29634:3 29635:1 29639:1 29671:1 29688:10 29695:1 29701:1 29715:1 29741:1 29749:1 29752:1 29756:2 29760:1 29761:1 29768:1 29775:1 29816:1 29822:1 29827:1 29840:1 29845:5 29857:1 29887:1 29888:1 29901:2 29911:1 29939:1 29952:1 29954:1 29957:1 29962:3 29969:1 29972:1 29995:1 30004:1 30015:2 30023:1 30035:1 30041:1 30079:3 30083:1 30084:2 30092:1 30093:1 30095:2 30099:5 30102:1 30103:1 30105:2 30119:1 30127:1 30134:1 30144:2 30165:3 30192:1 30198:2 30199:3 30213:1 30215:1 30219:1 30235:2 30238:1 30241:1 30248:1 30253:2 30261:4 30263:1 30273:1 30279:1 30283:1 30284:1 30288:1 30290:1 30294:1 30295:1 30299:1 30307:1 30319:1 30320:1 30329:1 30330:1 30331:1 30332:1 30350:1 30361:1 30364:1 30370:1 30424:1 30434:1 30452:1 30454:1 30478:1 30482:3 30483:1 30489:1 30493:1 30518:1 30535:5 30537:2 30538:2 30541:1 30552:2 30553:1 30588:1 30601:1 30613:1 30617:2 30641:1 30677:1 30679:1 30688:1 30743:1 30777:1 30783:1 30787:1 30788:1 30789:2 30790:6 30794:1 30806:1 30814:6 30817:3 30823:1 30853:1 30855:2 30857:2 30861:1 30907:1 30910:1 30912:2 30920:2 30931:1 30934:1 30944:2 30951:1 30952:1 30960:2 30963:1 30965:1 30970:1 30972:1 30981:4 30987:1 31002:1 31005:1 31015:1 31020:1 31026:1 31047:1 31048:1 31051:4 31053:1 31054:1 31055:2 31057:1 31059:2 31072:1 31089:1 31092:1 31093:1 31095:1 31112:2 31123:1 31134:1 31142:1 31148:1 31151:1 31153:1 31168:3 31177:1 31178:1 31181:1 31188:1 31201:1 31210:1 31223:1 31226:1 31235:2 31254:1 31255:4 31264:4 31265:2 31276:1 31283:1 31286:1 31296:5 31317:4 31329:2 31334:4 31369:1 31376:1 31377:5 31384:1 31387:1 31404:1 31411:1 31413:14 31425:2 31444:2 31465:2 31478:1 31486:1 31550:1 31563:1 31569:1 31574:2 31578:3 31580:1 31588:1 31595:1 31601:1 31603:2 31610:1 31612:1 31641:2 31648:1 31660:2 31663:1 31701:1 31706:1 31708:1 31712:1 31725:1 31737:1 31747:1 31751:1 31752:1 31753:2 31757:1 31767:1 31768:1 31784:1 31785:1 31787:1 31797:1 31805:1 31808:2 31834:3 31848:1 31853:1 31866:2 31874:1 31882:1 31885:1 31890:1 31891:1 31893:2 31918:1 31919:1 31929:1 31930:4 31933:2 31946:2 31963:2 31964:1 31968:11 31969:1 31972:1 31983:1 31993:2 32010:1 32022:1 32025:1 32036:1 32057:1 32066:5 32074:1 32085:1 32090:1 32099:1 32106:1 32112:1 32115:1 32117:1 32136:1 32140:1 32141:1 32153:1 32208:1 32219:2 32259:2 32261:1 32285:3 32307:1 32311:1 32317:1 32319:1 32326:1 32329:1 32334:1 32376:2 32405:1 32406:2 32413:1 32425:1 32436:1 32459:1 32461:2 32491:1 32492:1 32493:2 32505:2 32515:2 32532:1 32553:2 32555:1 32559:1 32574:1 32596:1 32606:1 32612:1 32624:1 32629:1 32636:1 32683:2 32691:1 32700:1 32725:2 32726:1 32732:1 32745:1 32749:2 32750:6 32774:3 32779:1 32785:2 32787:1 32801:4 32813:1 32820:1 32832:4 32846:1 32848:2 32879:1 32887:2 32890:7 32891:1 32893:1 32896:2 32908:1 32909:1 32913:1 32917:2 32924:1 32929:3 32941:3 32950:2 32955:1 32958:1 32965:1 32974:1 32984:1 32997:1 33027:1 33031:1 33053:1 33057:2 33066:1 33069:2 33080:2 33085:1 33089:1 33092:1 33094:3 33098:1 33100:1 33112:1 33118:1 33128:5 33133:4 33137:1 33141:2 33142:1 33144:2 33157:2 33168:1 33180:1 33182:1 33183:2 33218:2 33219:1 33222:1 33231:1 33272:1 33276:2 33284:1 33287:1 33296:3 33297:1 33309:2 33330:1 33333:1 33335:1 33346:1 33352:8 33388:1 33389:1 33404:1 33413:1 33422:1 33428:2 33439:1 33440:1 33444:1 33446:1 33449:1 33461:3 33467:1 33498:1 33502:2 33503:1 33504:1 33505:3 33512:1 33530:1 33533:5 33534:1 33537:2 33543:3 33545:1 33552:1 33553:2 33555:1 33556:2 33563:3 33579:2 33591:3 33592:1 33595:3 33609:1 33616:1 33620:1 33623:1 33637:1 33663:8 33669:1 33680:4 33716:1 33720:1 33730:1 33732:1 33734:3 33738:1 33743:3 33760:1 33766:1 33769:1 33771:1 33772:1 33794:2 33795:2 33819:1 33820:1 33824:1 33861:1 33865:1 33880:2 33902:1 33910:1 33921:1 33928:1 33930:1 33989:1 33997:1 34003:1 34040:1 34052:1 34056:3 34057:2 34062:2 34063:1 34067:4 34071:3 34075:7 34076:1 34077:2 34080:1 34083:1 34085:3 34086:1 34099:1 34104:1 34133:1 34139:1 34144:1 34151:3 34157:1 34159:1 34160:1 34164:1 34174:1 34194:1 34197:1 34204:1 34221:2 34246:2 34253:1 34283:2 34304:1 34306:1 34314:1 34321:2 34351:1 34353:1 34363:1 34364:1 34367:1 34371:1 34373:1 34385:2 34403:1 34407:1 34410:1 34413:3 34423:1 34435:13 34437:2 34440:1 34445:1 34455:1 34470:1 34478:3 34497:6 34526:1 34566:1 34570:1 34586:1 34589:1 34596:4 34615:1 34619:1 34627:1 34629:1 34630:2 34634:12 34643:3 34654:1 34659:1 34662:1 34673:1 34674:1 34682:1 34689:1 34691:13 34701:2 34749:1 34757:2 34761:1 34782:1 34794:1 34804:2 34834:1 34862:1 34878:2 34924:1 34936:1 34957:1 34961:1 34968:1 34989:1 34996:42 34997:1 35022:1 35026:5 35031:2 35039:2 35041:5 35042:2 35043:1 35055:1 35056:1 35094:1 35098:1 35124:4 35128:12 35129:1 35135:2 35141:1 35149:1 35152:2 35157:1 35164:1 35167:1 35177:1 35184:1 35201:1 35207:2 35253:1 35265:1 35281:2 35289:2 35310:2 35311:1 35326:1 35342:1 35347:1 35354:5 35382:2 35395:5 35410:1 35456:1 35464:3 35468:1 35470:1 35473:1 35488:1 35499:1 35503:2 35517:2 35520:1 35526:2 35529:1 35539:1 35582:1 35585:1 35589:2 35592:1 35602:2 35614:1 35625:2 35634:1 35635:1 35636:2 35648:1 35656:1 35661:1 35664:1 35665:1 35677:1 35681:2 35692:1 35696:1 35700:1 35714:1 35719:1 35721:1 35731:1 35734:1 35746:1 35748:10 35749:1 35753:2 35757:3 35785:1 35789:3 35805:6 35831:4 35836:1 35837:2 35838:2 35845:1 35850:34 35862:2 35888:1 35901:1 35925:1 35939:1 35953:1 35957:1 35959:2 35964:2 35965:2 35966:5 35989:1 36007:1 36010:2 36011:1 36028:2 36033:1 36051:1 36059:1 36065:1 36072:1 36075:2 36091:1 2 9:1 10:1 19:1 31:2 32:1 33:1 51:1 55:1 65:1 68:1 69:1 73:1 76:1 86:1 95:1 104:3 106:2 107:1 122:1 128:1 140:1 166:2 177:1 184:1 191:2 196:2 200:2 202:1 207:1 211:1 221:1 224:1 226:1 235:1 239:2 251:1 255:1 256:1 271:1 278:2 297:3 302:5 303:1 309:2 322:2 323:1 328:1 330:1 365:2 372:1 412:1 414:4 418:1 433:1 435:2 442:1 446:1 450:1 452:1 454:1 460:1 461:1 478:2 498:2 503:2 515:1 520:2 526:1 539:1 541:1 549:1 553:1 555:2 568:2 583:2 601:3 607:1 610:1 621:1 626:1 641:1 650:1 659:1 662:1 671:1 672:1 674:1 684:1 690:1 705:1 720:1 750:1 751:3 755:2 759:2 761:1 766:1 781:1 795:6 820:35 821:1 825:4 831:1 833:1 835:1 854:1 861:1 881:1 886:3 889:3 919:2 931:1 935:2 941:2 955:3 964:1 999:2 1019:2 1022:1 1024:3 1028:2 1032:1 1034:2 1035:3 1058:1 1082:3 1091:1 1102:3 1110:1 1124:1 1128:1 1135:3 1136:7 1140:3 1142:1 1150:5 1167:1 1176:5 1181:1 1194:2 1203:4 1206:10 1210:1 1212:2 1219:1 1226:2 1233:2 1234:3 1253:2 1256:1 1260:2 1270:3 1293:1 1301:2 1305:1 1308:1 1322:1 1326:4 1327:1 1330:1 1377:1 1385:2 1386:1 1391:1 1403:1 1431:1 1442:1 1454:1 1459:3 1479:1 1510:1 1537:1 1541:34 1550:1 1554:2 1555:2 1556:1 1564:4 1567:1 1583:1 1592:2 1595:2 1596:2 1603:1 1605:1 1610:1 1611:1 1613:1 1616:2 1617:3 1619:1 1623:1 1626:1 1627:1 1632:1 1634:1 1638:1 1651:1 1652:1 1682:1 1705:1 1706:2 1707:1 1740:4 1755:1 1757:1 1760:1 1763:1 1765:1 1771:2 1773:10 1792:1 1808:1 1809:1 1824:1 1836:3 1840:1 1843:1 1847:1 1849:2 1861:1 1870:1 1880:1 1888:1 1889:1 1891:3 1895:2 1897:12 1899:1 1903:1 1904:1 1910:1 1911:1 1915:1 1918:1 1925:1 1929:2 1930:1 1932:1 1959:1 1960:3 1970:2 1990:1 1991:1 1997:5 2013:1 2014:1 2031:1 2036:1 2037:2 2043:1 2058:2 2067:1 2088:1 2095:1 2097:1 2098:10 2102:1 2104:1 2105:1 2106:2 2123:1 2139:1 2145:1 2147:1 2158:2 2160:1 2164:3 2172:1 2175:1 2180:1 2196:1 2198:1 2199:1 2202:1 2218:1 2249:1 2260:1 2265:1 2269:1 2276:1 2279:1 2282:1 2292:1 2307:1 2312:1 2317:2 2320:2 2327:1 2328:1 2342:1 2345:1 2348:1 2352:3 2355:1 2364:1 2368:1 2372:1 2376:2 2379:3 2390:1 2400:2 2406:2 2418:2 2420:1 2436:1 2438:1 2446:1 2454:1 2455:1 2462:1 2467:1 2486:8 2494:1 2508:1 2517:1 2522:2 2525:1 2546:1 2547:1 2557:1 2566:1 2595:1 2596:1 2598:1 2599:2 2604:1 2607:1 2619:1 2624:1 2638:1 2639:1 2642:1 2644:1 2652:1 2655:1 2665:1 2676:1 2696:9 2721:1 2743:2 2746:1 2747:1 2783:1 2789:1 2817:1 2827:1 2848:1 2852:1 2857:1 2859:2 2861:2 2862:4 2865:2 2866:2 2867:3 2870:1 2872:5 2873:1 2877:8 2881:4 2883:7 2887:4 2891:1 2892:1 2893:1 2895:1 2897:1 2900:1 2902:4 2906:4 2909:1 2910:1 2913:1 2918:1 2919:1 2920:1 2941:1 2942:1 2946:1 2954:2 2955:1 2971:5 2974:1 2980:1 2999:2 3002:1 3004:1 3026:1 3027:1 3038:1 3042:1 3044:4 3045:4 3051:1 3054:4 3057:1 3061:1 3075:2 3076:4 3086:4 3087:1 3098:1 3100:1 3106:1 3116:4 3131:1 3133:1 3137:1 3145:1 3165:1 3176:2 3177:2 3179:1 3186:1 3191:1 3199:1 3206:1 3224:2 3240:1 3244:1 3255:2 3265:1 3266:1 3267:1 3312:1 3319:1 3322:2 3331:1 3341:2 3348:3 3358:1 3359:2 3366:1 3367:1 3371:1 3380:3 3381:1 3388:4 3389:1 3406:1 3410:1 3413:3 3415:4 3420:1 3423:3 3429:1 3443:1 3451:1 3454:1 3493:1 3497:3 3507:5 3510:5 3511:1 3516:1 3520:2 3539:2 3547:1 3560:1 3584:2 3590:1 3601:1 3603:2 3608:1 3612:2 3623:1 3645:17 3648:35 3651:1 3652:3 3653:1 3663:2 3666:2 3678:1 3681:1 3682:1 3691:4 3692:1 3695:1 3698:1 3706:8 3736:4 3741:2 3753:1 3756:1 3784:2 3789:1 3792:1 3793:1 3794:1 3836:2 3843:1 3846:3 3851:1 3860:1 3867:1 3897:3 3926:2 3958:1 3962:1 4045:1 4067:4 4070:1 4091:1 4097:1 4101:1 4119:2 4142:1 4146:1 4147:1 4157:1 4161:3 4162:1 4171:1 4179:3 4193:1 4201:1 4211:1 4223:1 4224:1 4226:4 4251:2 4279:1 4328:1 4334:1 4355:1 4359:1 4371:1 4375:2 4381:1 4383:1 4384:1 4395:1 4396:1 4402:2 4411:1 4412:1 4444:1 4448:1 4452:1 4459:1 4465:1 4474:1 4476:1 4479:1 4488:1 4492:1 4495:1 4517:2 4531:1 4539:1 4555:1 4564:1 4575:1 4580:1 4582:1 4601:1 4626:1 4643:3 4645:2 4646:1 4651:2 4654:2 4676:1 4712:1 4722:3 4724:1 4755:1 4762:1 4763:1 4767:2 4773:1 4779:1 4780:3 4795:1 4803:1 4809:1 4813:1 4815:2 4819:1 4820:2 4830:2 4843:1 4854:1 4855:1 4857:1 4859:1 4867:3 4882:1 4885:1 4886:1 4887:1 4914:1 4920:34 4922:2 4927:1 4931:1 4941:1 4947:1 4955:1 4985:1 4992:1 4993:1 5008:1 5013:1 5015:2 5019:4 5020:4 5032:2 5039:1 5047:1 5054:5 5058:6 5059:2 5075:1 5076:2 5094:1 5119:1 5125:1 5134:1 5149:1 5152:1 5153:2 5163:1 5170:3 5178:1 5190:1 5194:1 5232:1 5233:1 5235:1 5237:2 5240:1 5241:1 5247:1 5254:1 5272:1 5282:1 5295:1 5298:1 5299:2 5300:1 5302:3 5307:1 5308:3 5324:1 5348:1 5364:1 5371:3 5402:2 5404:1 5408:1 5411:1 5416:1 5428:1 5435:2 5437:34 5444:1 5453:1 5456:1 5459:5 5465:1 5470:1 5471:1 5473:1 5483:1 5486:1 5492:1 5555:2 5566:6 5587:1 5588:1 5598:1 5625:1 5638:3 5655:2 5662:3 5663:1 5672:2 5676:2 5679:1 5683:1 5685:1 5687:1 5712:1 5731:7 5738:1 5760:2 5832:5 5843:4 5850:1 5869:1 5879:6 5885:1 5899:1 5913:1 5924:1 5948:1 5960:1 5967:2 5969:2 5973:2 5974:1 5980:1 5983:3 5995:1 6004:1 6005:3 6017:1 6041:1 6043:1 6049:1 6075:2 6078:2 6096:19 6097:2 6112:2 6115:1 6140:7 6149:2 6158:2 6173:1 6187:2 6191:1 6194:1 6207:1 6217:1 6253:4 6254:1 6257:4 6277:4 6278:4 6279:2 6282:1 6285:5 6291:1 6292:2 6293:4 6294:1 6303:1 6309:2 6312:5 6315:4 6316:1 6326:1 6334:1 6358:1 6407:1 6411:2 6430:1 6451:1 6483:1 6495:1 6506:1 6528:1 6561:1 6580:1 6610:1 6622:1 6623:2 6628:1 6655:1 6679:1 6683:1 6684:1 6695:1 6698:2 6738:3 6739:1 6759:2 6787:1 6799:1 6801:2 6803:1 6807:1 6832:1 6835:1 6843:2 6859:1 6861:1 6867:3 6870:1 6942:1 6956:1 6957:1 6961:1 6968:1 6970:1 6972:1 6982:2 6983:1 6991:2 6996:1 7008:1 7010:1 7012:1 7036:2 7037:1 7038:2 7046:1 7051:1 7053:1 7061:2 7062:10 7065:1 7070:2 7072:1 7076:1 7083:1 7086:2 7119:2 7130:2 7138:1 7140:1 7164:2 7167:1 7198:1 7205:1 7213:1 7225:2 7243:1 7250:1 7252:2 7264:2 7289:10 7295:3 7334:1 7346:1 7366:1 7377:1 7383:1 7394:1 7397:1 7421:1 7422:1 7423:2 7432:3 7434:1 7451:1 7455:1 7494:1 7496:1 7525:1 7532:1 7537:2 7561:2 7567:2 7580:3 7583:1 7589:1 7591:1 7599:1 7603:2 7604:3 7607:1 7608:1 7616:1 7618:1 7622:1 7625:1 7630:1 7635:1 7656:1 7665:1 7684:1 7690:1 7707:2 7708:2 7709:1 7715:1 7716:1 7718:1 7721:2 7722:1 7725:1 7727:1 7728:1 7729:3 7734:2 7736:2 7739:2 7741:2 7742:1 7748:1 7764:1 7782:2 7805:1 7822:2 7825:1 7840:1 7847:1 7852:4 7857:2 7860:1 7871:3 7880:1 7881:1 7895:1 7905:1 7937:2 7945:1 7965:1 7966:1 7972:1 7974:1 7989:7 7995:1 8002:1 8004:4 8006:1 8007:1 8008:1 8009:2 8014:4 8015:3 8016:1 8017:1 8019:4 8020:9 8021:1 8022:1 8030:1 8034:1 8054:1 8077:1 8082:1 8085:2 8086:1 8125:1 8136:1 8143:1 8176:1 8185:2 8186:1 8200:3 8203:3 8224:1 8243:2 8257:1 8260:1 8284:1 8293:1 8295:1 8297:1 8308:1 8315:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:2 8349:1 8366:1 8370:2 8377:1 8393:2 8421:1 8427:1 8446:1 8449:1 8481:1 8489:1 8493:1 8496:1 8501:3 8524:3 8564:2 8566:1 8570:1 8577:1 8597:1 8602:2 8617:1 8641:1 8648:1 8654:1 8661:1 8691:1 8695:2 8709:1 8714:1 8731:1 8738:1 8751:1 8772:1 8841:1 8842:1 8845:1 8849:1 8854:2 8866:1 8869:1 8880:1 8883:6 8905:1 8940:1 8943:1 8946:1 8955:1 8960:1 8966:2 8969:1 8975:1 8978:2 8996:1 9007:1 9012:1 9026:1 9033:1 9052:3 9060:1 9090:1 9113:1 9122:1 9123:2 9126:1 9134:1 9138:1 9143:1 9146:1 9149:1 9153:1 9160:1 9194:1 9197:1 9205:1 9216:1 9217:2 9231:1 9253:1 9278:1 9282:2 9306:1 9307:1 9325:1 9328:1 9333:1 9337:1 9338:6 9372:9 9374:1 9381:1 9394:1 9426:1 9428:2 9433:1 9437:1 9442:1 9446:1 9470:2 9484:1 9492:1 9495:1 9499:1 9526:4 9529:1 9577:1 9586:1 9588:1 9612:3 9619:1 9623:1 9628:13 9629:13 9637:1 9655:1 9656:1 9657:5 9661:1 9688:3 9694:4 9695:1 9702:53 9707:1 9708:1 9711:2 9719:1 9720:1 9723:1 9733:19 9738:5 9744:1 9750:1 9754:1 9758:1 9761:1 9778:1 9780:1 9781:4 9787:2 9793:2 9803:1 9813:1 9849:6 9866:2 9870:1 9877:1 9885:1 9895:1 9924:1 9926:2 9942:3 9957:1 9963:1 9967:4 9968:1 9975:1 9978:1 9999:6 10011:1 10023:1 10058:1 10063:2 10079:2 10099:2 10103:1 10161:1 10167:1 10171:1 10175:1 10209:1 10213:1 10223:1 10230:1 10235:3 10242:1 10261:2 10284:1 10286:1 10298:1 10313:1 10314:1 10321:35 10331:1 10333:1 10338:1 10340:1 10342:1 10349:1 10356:1 10359:16 10360:4 10376:1 10378:2 10399:1 10401:1 10406:1 10407:1 10411:1 10412:2 10424:1 10431:1 10444:1 10452:1 10470:43 10488:1 10520:2 10529:1 10552:1 10559:1 10573:1 10598:1 10599:2 10612:1 10615:1 10624:1 10631:1 10669:1 10683:1 10686:2 10695:1 10697:1 10701:2 10703:1 10704:1 10706:1 10707:1 10711:1 10716:2 10717:5 10718:1 10736:1 10744:1 10749:2 10765:1 10772:3 10773:1 10777:1 10778:1 10789:2 10791:1 10792:1 10796:1 10798:1 10807:2 10808:2 10812:1 10813:1 10826:1 10831:1 10848:1 10849:1 10850:1 10864:1 10878:1 10884:1 10895:1 10900:2 10911:3 10937:1 10979:1 10991:1 10994:1 11002:2 11075:3 11078:1 11081:1 11109:2 11118:1 11129:1 11140:1 11163:2 11165:1 11169:1 11176:1 11179:1 11181:1 11183:2 11207:1 11212:4 11226:1 11230:1 11231:1 11233:3 11238:1 11247:3 11258:1 11268:1 11270:1 11272:1 11311:1 11320:1 11325:1 11334:3 11340:1 11343:2 11347:2 11378:1 11382:6 11391:5 11402:1 11404:1 11412:2 11422:1 11457:1 11489:4 11522:3 11523:1 11524:1 11556:1 11557:4 11561:2 11564:1 11569:5 11571:3 11572:1 11573:1 11575:1 11583:2 11585:2 11587:2 11598:1 11609:1 11617:1 11619:1 11625:1 11628:1 11636:1 11640:1 11641:1 11642:2 11643:1 11645:1 11654:1 11668:1 11675:1 11678:3 11690:8 11694:2 11697:2 11707:2 11718:2 11720:1 11723:1 11739:3 11744:1 11745:1 11755:1 11770:1 11771:1 11774:2 11776:1 11791:1 11793:2 11795:2 11804:1 11815:1 11835:1 11838:1 11840:1 11848:1 11851:1 11861:1 11864:1 11865:2 11872:2 11876:2 11882:1 11885:1 11887:1 11888:2 11899:1 11902:1 11903:1 11912:1 11917:1 11918:1 11919:10 11930:1 11931:2 11932:9 11936:1 11947:1 11955:1 11959:1 11961:2 11966:1 11969:1 11976:1 11978:1 11982:3 11985:1 11988:1 11992:1 12004:1 12014:1 12031:1 12033:1 12046:1 12052:1 12056:1 12057:1 12073:1 12076:2 12078:1 12081:1 12082:1 12083:2 12086:1 12096:1 12104:1 12111:1 12112:1 12113:1 12120:1 12131:2 12146:1 12147:1 12186:1 12191:1 12214:1 12221:6 12229:1 12230:1 12231:1 12237:3 12239:4 12248:1 12254:1 12255:1 12263:1 12269:1 12275:1 12282:1 12301:1 12324:1 12339:1 12359:1 12361:1 12391:34 12394:1 12398:1 12401:1 12407:1 12420:1 12428:1 12435:2 12446:1 12451:1 12453:1 12458:1 12471:1 12473:1 12479:2 12490:2 12493:1 12497:1 12508:1 12520:1 12521:1 12532:1 12538:1 12540:5 12547:3 12552:1 12561:2 12570:2 12580:1 12592:1 12608:1 12618:2 12619:2 12630:1 12636:1 12641:1 12643:2 12651:2 12654:2 12669:5 12673:5 12684:1 12689:1 12692:3 12694:1 12734:5 12756:1 12757:1 12760:2 12774:1 12777:1 12794:1 12808:1 12821:1 12824:3 12829:1 12837:1 12844:1 12848:1 12850:1 12867:7 12879:1 12881:1 12898:1 12936:1 12956:1 12958:1 12977:2 12981:1 12988:1 13013:5 13028:1 13040:2 13049:1 13051:1 13052:1 13058:1 13078:1 13079:1 13080:1 13089:1 13096:1 13112:2 13113:7 13122:1 13128:1 13154:3 13175:1 13179:1 13187:1 13213:1 13234:1 13241:1 13258:4 13267:1 13282:1 13283:5 13297:1 13303:1 13316:1 13325:2 13357:3 13377:1 13384:1 13385:2 13411:1 13412:5 13415:1 13418:2 13420:6 13429:1 13443:1 13454:1 13464:2 13468:1 13471:1 13472:1 13474:1 13481:1 13483:1 13487:1 13493:7 13498:1 13505:1 13509:1 13516:1 13517:2 13523:1 13537:1 13550:1 13567:1 13568:1 13588:1 13601:1 13632:10 13633:1 13647:1 13648:1 13657:1 13669:3 13673:1 13682:1 13686:3 13690:3 13694:3 13704:1 13710:1 13721:4 13729:1 13737:1 13749:1 13761:1 13765:2 13767:1 13768:1 13777:1 13793:1 13798:8 13803:1 13808:1 13823:1 13824:3 13826:4 13828:1 13837:1 13845:2 13849:1 13859:1 13880:1 13881:1 13891:6 13895:1 13897:1 13898:1 13900:1 13901:1 13910:2 13919:1 13921:2 13931:1 13942:1 13956:1 13972:3 13996:1 13998:1 14008:1 14009:1 14015:1 14029:1 14032:3 14036:1 14042:1 14070:2 14071:2 14092:1 14093:2 14095:2 14105:2 14107:1 14114:1 14115:1 14116:4 14119:1 14122:2 14124:1 14128:1 14134:1 14145:2 14146:5 14149:1 14152:1 14154:1 14162:1 14186:1 14189:3 14191:1 14218:1 14228:1 14235:5 14263:1 14265:1 14280:1 14286:2 14291:1 14292:1 14296:1 14302:1 14308:1 14309:1 14322:9 14337:2 14340:2 14342:1 14376:1 14380:1 14406:1 14410:1 14411:1 14416:1 14430:1 14448:2 14462:1 14464:2 14488:1 14491:6 14515:1 14517:1 14519:1 14523:1 14528:1 14533:3 14549:1 14550:1 14554:2 14555:1 14559:1 14564:1 14567:6 14568:4 14571:2 14577:1 14580:5 14586:1 14611:1 14614:1 14621:2 14628:1 14632:2 14636:1 14638:8 14642:1 14643:1 14654:1 14666:1 14667:1 14675:2 14686:1 14689:1 14716:1 14727:3 14735:1 14737:1 14742:4 14744:1 14772:3 14787:1 14791:3 14803:1 14840:1 14844:1 14854:1 14869:1 14870:1 14910:1 14913:1 14940:1 14941:2 14960:1 14984:1 15012:1 15014:1 15030:1 15037:3 15039:1 15046:1 15060:4 15079:1 15083:1 15086:1 15095:1 15123:1 15132:1 15139:1 15140:1 15150:1 15151:1 15152:3 15160:1 15161:5 15162:1 15166:1 15169:1 15178:1 15185:1 15197:1 15205:1 15210:1 15220:1 15222:1 15250:1 15269:1 15278:1 15292:1 15312:3 15315:5 15326:1 15345:1 15383:1 15385:2 15400:1 15414:2 15448:1 15460:1 15472:1 15487:1 15502:3 15519:1 15525:1 15526:1 15552:1 15574:1 15577:1 15584:1 15587:1 15595:1 15598:1 15675:1 15696:1 15705:1 15707:1 15746:1 15747:1 15776:3 15778:35 15782:1 15786:1 15794:1 15797:1 15800:5 15803:1 15813:1 15826:1 15844:6 15855:1 15864:2 15868:1 15871:1 15885:1 15895:1 15900:1 15910:1 15912:1 15913:1 15915:1 15942:2 15943:1 15944:2 15981:1 15989:1 16001:1 16006:2 16008:1 16013:1 16017:1 16022:1 16083:1 16099:2 16114:1 16134:1 16142:2 16147:1 16149:1 16173:1 16190:1 16196:1 16198:1 16201:1 16213:1 16217:1 16236:1 16241:1 16253:1 16268:1 16269:1 16285:1 16289:1 16293:1 16294:1 16299:1 16303:1 16304:1 16320:1 16327:12 16332:4 16336:3 16354:1 16357:1 16365:2 16372:1 16375:1 16393:1 16394:1 16456:1 16460:1 16475:1 16490:1 16499:1 16502:2 16505:2 16510:6 16516:5 16528:1 16535:1 16559:1 16561:1 16594:1 16609:14 16613:1 16622:1 16643:1 16661:1 16676:1 16706:1 16720:1 16729:1 16731:1 16732:2 16742:1 16775:1 16792:3 16797:4 16803:2 16823:1 16831:1 16835:1 16837:1 16843:1 16854:1 16862:1 16869:2 16874:2 16882:1 16889:1 16897:1 16898:1 16914:2 16918:1 16929:2 16964:1 16968:2 16970:3 16971:1 16973:1 16975:1 16977:2 16978:1 16979:10 16980:1 16981:1 16983:2 17002:1 17003:2 17004:1 17007:1 17008:1 17009:1 17011:1 17013:6 17022:1 17026:1 17031:1 17033:2 17064:1 17075:1 17076:1 17082:1 17100:1 17114:1 17120:1 17125:1 17152:1 17154:1 17156:1 17161:2 17172:10 17175:1 17181:2 17193:1 17204:1 17214:1 17217:1 17230:1 17234:1 17243:1 17246:1 17273:1 17276:1 17278:2 17286:5 17303:1 17309:1 17315:3 17319:1 17320:2 17333:11 17336:8 17378:1 17417:2 17426:5 17436:2 17438:1 17449:4 17450:1 17481:1 17513:1 17516:1 17545:1 17547:3 17562:1 17564:2 17571:1 17598:1 17601:1 17607:2 17623:1 17629:1 17636:1 17639:1 17675:4 17679:1 17723:1 17734:1 17762:1 17769:1 17784:2 17792:2 17794:1 17798:1 17806:2 17813:2 17814:2 17817:3 17819:1 17829:1 17835:2 17836:1 17849:1 17850:2 17858:2 17869:1 17884:1 17903:1 17918:1 17921:1 17924:1 17925:2 17929:1 17941:1 17942:2 17943:1 17945:1 17955:2 17957:2 17972:1 17976:1 17978:2 17981:1 17984:1 17992:1 17993:1 17994:1 17997:1 17998:1 17999:1 18000:1 18005:1 18011:1 18013:1 18016:1 18030:1 18032:1 18037:2 18039:1 18048:1 18057:2 18073:1 18080:1 18092:35 18094:1 18101:3 18105:1 18106:1 18110:1 18120:1 18127:1 18128:1 18137:1 18184:1 18198:1 18200:1 18203:5 18204:1 18214:1 18215:1 18221:2 18244:1 18249:1 18270:3 18274:1 18276:1 18277:1 18278:1 18290:1 18297:1 18298:1 18320:3 18325:1 18339:1 18342:1 18345:1 18348:1 18390:1 18392:1 18396:1 18442:1 18463:2 18470:2 18471:1 18474:1 18485:1 18506:1 18535:1 18549:1 18559:1 18560:1 18561:2 18563:2 18574:1 18582:1 18593:1 18600:2 18601:1 18603:1 18608:7 18614:1 18645:3 18651:1 18667:1 18673:1 18676:1 18677:1 18696:1 18703:1 18708:3 18710:1 18712:1 18715:1 18732:1 18747:1 18752:1 18767:2 18769:1 18779:2 18781:3 18793:1 18794:1 18811:1 18823:2 18855:1 18867:1 18870:1 18876:2 18898:2 18899:1 18928:1 18953:3 18954:1 18959:1 18968:1 18978:1 18989:1 18993:3 18997:1 19019:1 19029:1 19050:1 19060:1 19064:2 19067:1 19083:1 19087:2 19096:1 19097:1 19120:1 19141:1 19154:1 19169:1 19175:1 19191:1 19192:3 19193:4 19204:1 19225:1 19235:1 19263:5 19269:2 19276:1 19287:1 19303:1 19310:1 19336:1 19361:1 19397:1 19406:1 19416:1 19424:1 19428:1 19437:2 19450:1 19452:1 19458:4 19469:1 19471:1 19475:1 19484:1 19489:1 19490:5 19496:3 19500:2 19513:4 19514:1 19518:1 19525:1 19526:1 19529:1 19532:1 19538:3 19548:1 19567:1 19602:1 19605:1 19615:5 19616:1 19620:2 19641:2 19645:4 19649:2 19655:1 19658:1 19664:1 19670:1 19672:1 19679:1 19689:1 19691:3 19703:1 19708:3 19724:1 19766:1 19772:1 19775:1 19787:1 19796:1 19806:1 19810:15 19814:2 19815:1 19820:1 19851:4 19854:3 19858:1 19865:2 19868:2 19876:1 19894:2 19901:1 19904:2 19905:2 19907:1 19908:2 19932:12 19947:1 19956:1 19961:1 19967:1 19976:4 20027:3 20034:1 20046:2 20061:1 20065:1 20074:1 20076:1 20078:1 20090:1 20091:2 20109:4 20110:2 20111:1 20115:4 20117:1 20124:1 20125:3 20126:1 20127:2 20130:1 20153:1 20168:1 20174:1 20201:2 20221:1 20231:1 20232:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20295:1 20296:1 20318:1 20324:1 20325:1 20350:1 20355:1 20369:2 20383:1 20390:2 20431:1 20444:1 20445:1 20446:2 20455:1 20499:1 20522:1 20537:1 20540:2 20556:2 20566:1 20568:1 20572:1 20588:3 20593:1 20604:1 20606:10 20607:1 20608:1 20617:1 20643:1 20646:1 20649:1 20654:1 20679:2 20680:1 20683:1 20689:1 20690:1 20691:2 20723:1 20727:1 20741:1 20746:1 20751:3 20754:1 20762:2 20781:2 20783:1 20785:3 20796:1 20799:2 20816:1 20818:1 20865:1 20878:1 20885:1 20900:1 20917:1 20918:1 20930:1 20936:1 20941:47 20948:1 20949:2 20974:1 20978:1 20980:1 20997:1 21000:1 21003:4 21044:1 21064:1 21071:1 21072:1 21081:1 21083:1 21097:1 21101:1 21116:1 21124:3 21130:2 21145:2 21149:1 21155:1 21170:1 21174:2 21204:1 21209:1 21214:1 21215:1 21235:1 21261:1 21263:1 21284:1 21292:1 21299:1 21316:1 21318:2 21322:2 21323:1 21324:1 21337:1 21355:1 21371:1 21376:1 21423:1 21443:1 21445:1 21460:1 21473:1 21477:1 21488:1 21500:1 21503:1 21508:1 21512:1 21513:1 21518:1 21522:2 21524:1 21530:1 21540:1 21566:1 21586:1 21591:2 21592:1 21593:1 21597:1 21602:1 21603:1 21608:2 21612:2 21634:1 21643:1 21686:2 21696:1 21701:1 21704:2 21713:2 21724:1 21754:1 21769:1 21788:1 21806:1 21809:1 21819:1 21822:1 21823:4 21827:1 21829:2 21831:1 21843:1 21864:1 21866:1 21872:2 21874:2 21875:2 21886:1 21892:1 21899:1 21917:2 21925:1 21939:3 21943:2 21975:4 21976:1 21987:5 21996:1 22008:4 22009:1 22019:1 22032:1 22037:1 22067:2 22076:1 22079:8 22083:1 22084:2 22123:3 22130:1 22143:2 22169:1 22173:1 22177:2 22181:1 22186:2 22190:1 22207:1 22247:1 22251:2 22298:1 22300:4 22304:2 22305:2 22308:1 22315:1 22327:1 22345:2 22347:2 22361:1 22362:1 22386:1 22388:2 22391:1 22406:1 22424:1 22429:5 22437:1 22490:1 22493:2 22497:1 22516:1 22530:2 22547:1 22572:1 22584:1 22628:9 22643:2 22650:1 22666:1 22668:1 22677:2 22715:1 22720:1 22727:4 22737:1 22754:1 22762:1 22764:1 22781:1 22783:1 22791:2 22800:1 22806:2 22809:1 22816:1 22824:1 22839:1 22866:1 22870:1 22883:2249 22893:2 22899:1 22909:2 22923:1 22944:1 22966:1 22969:1 22971:1 22981:1 22984:1 23008:1 23031:3 23039:1 23043:3 23044:1 23079:1 23082:1 23098:1 23113:1 23119:1 23129:2 23139:1 23164:1 23171:1 23173:1 23189:1 23193:2 23194:1 23202:1 23223:1 23224:1 23270:1 23279:1 23293:2 23304:1 23320:1 23321:1 23348:1 23365:2 23371:1 23411:1 23427:1 23438:1 23456:1 23457:1 23468:2 23470:1 23474:1 23482:1 23492:1 23505:1 23508:1 23509:1 23520:1 23521:3 23523:2 23543:1 23549:1 23560:1 23565:1 23603:1 23607:6 23640:5 23647:1 23653:1 23658:2 23664:2 23698:1 23705:1 23706:1 23708:1 23712:1 23715:1 23718:1 23735:1 23763:1 23766:1 23773:1 23784:1 23787:1 23789:1 23800:1 23805:1 23812:1 23821:1 23833:8 23834:4 23874:1 23880:4 23900:1 23914:2 23922:1 23932:1 23934:1 23947:23 23958:1 23978:1 23979:2 24012:2 24013:1 24019:1 24020:1 24021:2 24044:1 24047:4 24049:1 24051:1 24052:2 24064:2 24066:1 24079:1 24092:1 24097:2 24105:3 24106:1 24118:1 24128:1 24154:2 24176:1 24185:1 24191:1 24197:1 24205:1 24209:4 24217:2 24233:1 24239:3 24240:1 24255:1 24268:1 24271:1 24275:1 24289:2 24292:1 24306:1 24314:2 24327:1 24332:1 24342:1 24345:2 24347:1 24364:1 24369:1 24376:4 24385:1 24405:1 24424:1 24444:1 24449:1 24450:1 24452:1 24474:1 24479:1 24480:3 24482:2 24483:1 24491:1 24511:1 24518:2 24534:1 24539:2 24553:1 24566:1 24591:2 24592:8 24598:1 24601:1 24604:1 24607:1 24612:1 24620:1 24630:2 24640:1 24643:1 24651:2 24653:2 24656:3 24658:7 24663:1 24674:1 24680:2 24681:6 24682:1 24683:1 24699:1 24700:1 24704:1 24708:5 24728:2 24729:1 24753:2 24754:1 24762:3 24774:1 24777:1 24781:6 24792:1 24794:1 24808:3 24813:1 24820:1 24826:2 24850:1 24853:1 24869:1 24883:5 24894:2 24918:1 24919:1 24924:1 24945:1 24950:1 24956:1 24978:1 25000:1 25031:2 25041:1 25047:1 25052:1 25053:1 25058:1 25067:1 25076:1 25080:1 25114:6 25117:1 25122:1 25123:1 25143:1 25144:2 25157:1 25161:2 25163:1 25179:3 25194:1 25217:1 25225:1 25240:1 25244:1 25269:1 25285:1 25299:1 25300:2 25303:1 25326:1 25334:2 25351:1 25357:1 25369:2 25373:1 25379:1 25386:1 25392:1 25407:2 25410:3 25417:1 25423:1 25427:2 25428:1 25431:2 25448:1 25450:2 25456:1 25461:1 25468:1 25481:1 25486:1 25491:1 25498:2 25502:2 25505:1 25511:3 25526:1 25527:1 25529:1 25541:1 25543:1 25553:2 25554:2 25568:1 25572:1 25580:2 25582:2 25586:1 25590:4 25600:2 25602:1 25605:1 25608:3 25609:2 25623:2 25630:1 25632:1 25637:4 25655:1 25690:1 25699:1 25720:1 25721:5 25725:1 25733:2 25738:1 25781:1 25782:1 25786:2 25793:3 25807:1 25811:1 25815:1 25824:2 25841:1 25846:1 25848:1 25852:1 25859:2 25867:1 25879:1 25903:1 25907:1 25917:1 25922:1 25928:1 25934:1 25943:1 25948:1 25952:1 25973:1 25994:1 26000:1 26005:1 26011:2 26014:1 26018:4 26031:2 26044:1 26052:1 26062:3 26070:1 26091:1 26099:1 26102:2 26107:1 26119:1 26120:1 26124:1 26138:1 26148:1 26151:1 26153:1 26155:1 26156:4 26162:1 26167:1 26178:1 26183:1 26191:1 26203:2 26204:1 26211:1 26212:1 26214:1 26215:2 26216:2 26226:1 26228:2 26236:1 26260:1 26261:1 26275:1 26278:1 26279:1 26285:1 26288:1 26306:1 26313:1 26322:1 26324:2 26327:2 26337:4 26342:1 26344:1 26345:1 26346:1 26347:1 26361:2 26362:2 26383:1 26385:4 26394:1 26395:1 26407:1 26415:1 26424:1 26425:1 26426:1 26438:3 26444:1 26453:4 26458:2 26459:1 26460:1 26475:1 26496:1 26505:1 26507:1 26508:8 26552:1 26555:1 26589:2 26590:1 26593:1 26602:8 26605:2 26608:1 26610:1 26612:5 26614:1 26628:3 26642:1 26644:1 26651:1 26667:1 26668:10 26671:1 26679:1 26694:1 26740:1 26743:1 26744:1 26776:1 26777:2 26779:4 26782:2 26787:1 26794:1 26795:1 26796:1 26797:2 26808:2 26809:2 26815:1 26818:1 26820:1 26826:7 26827:1 26828:4 26835:1 26842:1 26843:1 26844:1 26854:1 26874:1 26907:1 26914:1 26930:1 26949:3 26984:2 26995:2 26999:1 27004:4 27008:1 27029:2 27033:1 27051:1 27072:1 27087:3 27092:1 27097:1 27099:1 27102:1 27103:1 27114:1 27127:4 27138:1 27149:2 27153:2 27171:1 27183:1 27203:1 27213:2 27243:1 27251:2 27259:1 27260:15 27283:1 27287:2 27294:1 27319:1 27331:12 27333:2 27339:1 27343:1 27354:1 27358:1 27365:1 27393:1 27396:4 27398:2 27401:1 27412:4 27415:2 27447:1 27460:7 27470:1 27478:2 27484:1 27500:3 27501:1 27508:1 27522:1 27526:1 27527:1 27542:1 27544:2 27573:1 27591:1 27594:1 27599:1 27601:1 27603:2 27619:10 27633:3 27651:1 27653:1 27677:3 27703:1 27723:1 27731:1 27752:1 27760:1 27767:1 27776:1 27779:1 27782:1 27787:34 27804:1 27808:1 27810:3 27813:3 27814:1 27816:1 27817:2 27819:1 27820:1 27825:1 27854:2 27859:3 27860:1 27862:1 27866:1 27876:3 27878:1 27879:1 27889:1 27920:1 27922:1 27925:1 27957:1 27963:1 27973:5 27974:1 27983:1 27987:2 28000:2 28007:1 28011:4 28017:1 28038:1 28051:1 28052:1 28081:1 28154:1 28160:3 28179:3 28191:1 28194:1 28206:1 28263:1 28276:1 28278:1 28279:1 28287:1 28297:1 28298:3 28303:1 28308:1 28310:1 28313:3 28316:1 28317:1 28318:2 28325:1 28348:1 28370:35 28384:1 28398:3 28399:1 28409:1 28433:1 28436:1 28460:1 28464:1 28470:1 28472:2 28473:1 28482:2 28483:1 28489:6 28512:1 28523:1 28528:1 28541:1 28543:1 28559:1 28560:1 28567:1 28572:1 28577:3 28582:2 28587:1 28593:1 28608:2 28612:1 28620:1 28621:1 28639:1 28645:1 28647:2 28650:2 28686:2 28693:1 28719:1 28752:1 28757:1 28786:1 28788:1 28811:1 28812:1 28814:2 28815:1 28817:2 28826:1 28831:1 28833:1 28852:1 28899:1 28908:1 28913:1 28929:1 28932:1 28939:2 28940:1 28949:1 28958:1 28974:2 28983:2 28993:1 28996:2 29004:1 29014:1 29016:1 29020:1 29032:1 29041:3 29087:1 29123:1 29125:1 29126:1 29133:2 29141:1 29149:1 29150:1 29169:1 29170:3 29174:1 29179:1 29187:1 29190:7 29192:1 29196:1 29215:1 29233:1 29241:1 29251:1 29258:1 29271:1 29297:1 29302:1 29320:1 29328:1 29330:1 29333:1 29334:1 29363:1 29367:2 29398:1 29405:1 29417:1 29419:3 29426:2 29451:1 29455:2 29464:1 29480:1 29486:2 29493:1 29516:2 29527:1 29551:1 29554:1 29557:6 29564:2 29566:1 29568:2 29583:2 29584:2 29587:3 29591:1 29592:1 29600:1 29604:1 29634:3 29635:1 29639:1 29671:1 29688:10 29695:1 29701:1 29715:1 29741:1 29749:1 29752:1 29756:2 29760:1 29761:1 29768:1 29775:1 29797:1 29816:1 29822:1 29827:1 29840:1 29845:5 29857:1 29887:1 29888:1 29901:2 29911:1 29933:1 29939:1 29952:1 29954:1 29957:1 29962:3 29969:1 29972:1 29995:1 30004:1 30015:2 30023:1 30035:1 30041:1 30079:3 30083:1 30084:2 30092:1 30093:1 30095:2 30099:5 30102:1 30103:1 30105:2 30119:1 30127:1 30134:1 30144:2 30165:3 30192:1 30198:2 30199:3 30213:1 30215:1 30219:1 30235:2 30238:1 30241:1 30248:1 30253:2 30261:4 30263:1 30273:1 30279:1 30283:1 30284:1 30288:1 30290:1 30294:1 30295:1 30299:1 30307:1 30319:1 30320:1 30326:1 30329:1 30330:1 30331:1 30332:1 30350:1 30361:1 30364:1 30370:1 30424:1 30434:1 30452:1 30454:1 30478:1 30482:3 30483:1 30489:1 30493:1 30518:1 30535:5 30537:2 30538:2 30541:1 30552:2 30553:1 30588:1 30601:1 30613:1 30617:2 30641:2 30677:1 30679:1 30688:1 30690:1 30743:1 30748:1 30777:1 30783:2 30787:1 30788:1 30789:2 30790:6 30794:1 30806:1 30814:6 30817:3 30823:1 30853:1 30855:2 30857:2 30861:1 30907:1 30910:1 30912:2 30920:2 30931:1 30934:1 30944:2 30951:1 30952:1 30960:2 30963:1 30965:1 30970:1 30972:1 30981:4 30987:1 31002:1 31005:1 31015:1 31020:1 31026:1 31047:1 31048:1 31051:4 31053:1 31054:1 31055:2 31057:1 31059:2 31072:1 31089:2 31092:1 31093:1 31095:1 31112:2 31123:1 31134:1 31142:1 31148:1 31151:1 31153:1 31168:3 31177:1 31178:1 31181:1 31188:1 31201:1 31210:1 31223:1 31226:1 31235:2 31254:1 31255:4 31264:4 31265:2 31276:1 31283:1 31286:1 31296:5 31317:4 31329:2 31334:4 31369:1 31376:1 31377:5 31384:1 31387:1 31404:1 31411:1 31413:14 31425:2 31444:2 31465:2 31478:1 31486:1 31550:1 31563:1 31569:1 31574:2 31578:3 31580:1 31588:1 31595:1 31601:1 31603:2 31610:1 31612:1 31641:3 31648:1 31660:3 31663:1 31701:1 31706:1 31708:1 31712:1 31725:1 31737:1 31747:1 31751:1 31752:1 31753:2 31757:1 31767:1 31768:1 31784:1 31785:1 31787:1 31797:1 31805:1 31808:2 31834:3 31848:1 31853:1 31866:2 31874:1 31882:1 31885:1 31890:1 31891:1 31893:2 31918:1 31919:1 31929:1 31930:4 31933:2 31946:2 31963:2 31964:1 31968:11 31969:1 31972:1 31983:1 31993:2 32010:1 32013:1 32022:1 32025:1 32036:1 32057:1 32066:5 32074:1 32085:1 32090:1 32098:1 32099:1 32106:1 32112:1 32115:1 32117:1 32136:1 32140:1 32141:1 32153:1 32208:1 32219:2 32259:2 32261:1 32269:1 32285:3 32307:1 32311:1 32317:1 32319:1 32326:1 32329:1 32334:1 32376:2 32405:1 32406:2 32413:1 32425:1 32436:1 32459:1 32461:2 32491:1 32492:1 32493:2 32505:2 32515:2 32532:1 32538:1 32553:2 32555:1 32559:1 32574:1 32596:1 32597:1 32606:1 32612:1 32624:1 32629:1 32636:1 32683:2 32691:1 32700:1 32725:2 32726:1 32732:1 32745:1 32749:2 32750:6 32774:3 32779:1 32785:2 32787:1 32801:4 32813:1 32820:1 32832:4 32841:1 32846:1 32848:2 32879:1 32887:2 32890:7 32891:1 32893:1 32896:2 32908:1 32909:1 32913:1 32917:2 32924:1 32929:3 32941:3 32950:2 32955:1 32958:1 32965:1 32974:1 32984:1 32997:1 33027:1 33031:1 33053:1 33057:2 33066:1 33069:2 33080:2 33085:1 33089:1 33092:1 33094:3 33098:1 33100:1 33112:1 33118:1 33128:5 33133:4 33137:1 33141:2 33142:2 33144:2 33157:2 33168:1 33180:1 33182:1 33183:2 33189:1 33218:2 33219:1 33222:1 33231:1 33241:1 33272:1 33276:2 33284:1 33287:1 33296:3 33297:1 33309:2 33330:1 33333:1 33335:1 33346:1 33352:8 33388:1 33389:1 33404:1 33413:1 33422:1 33428:2 33439:1 33440:1 33444:1 33446:1 33449:1 33461:3 33467:1 33498:1 33502:2 33503:1 33504:1 33505:3 33512:1 33530:1 33533:5 33534:1 33537:2 33543:3 33545:1 33552:1 33553:2 33555:1 33556:2 33563:3 33579:2 33591:3 33592:1 33595:3 33609:1 33616:1 33620:1 33623:1 33637:1 33663:8 33669:1 33680:4 33716:1 33720:1 33730:1 33732:1 33734:3 33738:1 33743:3 33760:1 33766:1 33769:1 33771:1 33772:1 33794:2 33795:2 33819:1 33820:1 33824:1 33861:1 33865:1 33880:2 33902:1 33910:1 33921:1 33928:1 33930:1 33989:1 33997:1 34003:1 34040:1 34052:1 34056:3 34057:2 34062:2 34063:1 34067:5 34071:3 34075:7 34076:1 34077:2 34080:1 34083:1 34085:3 34086:1 34099:1 34104:1 34133:1 34139:1 34144:1 34151:3 34157:1 34159:1 34160:1 34164:1 34172:1 34174:1 34194:1 34197:1 34204:1 34221:2 34246:2 34253:1 34283:2 34304:1 34306:1 34314:1 34321:2 34351:1 34353:1 34363:1 34364:1 34367:1 34371:1 34373:1 34385:2 34403:1 34407:1 34410:1 34413:3 34423:1 34435:14 34437:2 34440:1 34445:1 34455:1 34470:1 34478:3 34496:1 34497:6 34526:1 34566:1 34570:1 34586:1 34589:1 34596:4 34615:1 34619:1 34627:1 34629:1 34630:2 34634:12 34643:3 34654:1 34659:1 34662:1 34673:1 34674:1 34682:1 34689:1 34691:14 34701:2 34749:1 34757:2 34761:1 34771:1 34782:1 34794:1 34804:2 34834:1 34862:1 34878:2 34924:1 34936:1 34957:1 34961:1 34968:1 34989:1 34996:43 34997:1 35022:1 35026:5 35031:2 35039:2 35041:5 35042:2 35043:1 35055:1 35056:1 35094:1 35098:1 35124:4 35128:13 35129:1 35135:2 35141:1 35149:1 35152:2 35157:1 35164:1 35167:1 35177:1 35184:1 35201:1 35207:2 35253:1 35265:1 35281:2 35289:2 35310:2 35311:1 35326:1 35342:1 35347:1 35354:5 35382:2 35395:5 35410:1 35456:1 35464:3 35468:1 35470:1 35473:1 35488:1 35499:1 35503:2 35517:2 35520:1 35526:2 35529:1 35539:1 35582:1 35585:1 35589:2 35592:1 35602:2 35614:1 35625:3 35634:1 35635:1 35636:2 35648:1 35656:1 35661:1 35664:1 35665:1 35677:1 35681:2 35692:1 35696:1 35700:1 35714:1 35719:1 35721:1 35731:1 35734:1 35746:1 35748:10 35749:1 35753:2 35757:3 35785:1 35789:3 35805:6 35811:1 35831:4 35836:1 35837:2 35838:2 35845:1 35850:35 35862:2 35888:2 35901:1 35925:1 35927:1 35939:1 35953:1 35957:1 35959:2 35964:2 35965:2 35966:5 35989:1 36007:1 36010:2 36011:1 36028:2 36033:1 36045:1 36051:1 36059:1 36065:1 36072:1 36075:2 36091:1 2 9:1 10:1 19:1 31:2 32:1 33:1 51:1 55:1 65:1 68:1 69:1 73:1 76:1 86:1 95:1 104:3 106:2 107:1 122:1 128:1 140:1 166:2 177:1 184:1 191:2 196:2 200:2 202:1 207:1 211:1 221:1 224:1 226:1 235:1 239:2 251:1 255:1 256:1 271:1 278:2 297:3 302:5 303:1 309:2 322:2 323:1 328:1 330:1 365:2 372:1 412:1 414:4 418:1 433:1 435:2 442:1 446:1 450:1 452:1 454:1 460:1 461:1 478:2 498:2 503:2 515:1 520:2 526:1 539:1 541:1 549:1 553:1 555:2 568:2 583:2 601:4 607:1 610:1 621:1 626:1 641:2 650:1 659:1 662:1 671:1 672:1 674:1 684:1 690:1 705:1 720:1 750:1 751:3 755:2 759:2 761:1 766:1 781:1 795:6 820:36 821:1 825:4 831:1 833:1 835:1 854:1 861:1 881:1 886:3 889:3 919:2 931:1 935:2 941:2 955:3 964:1 999:2 1019:2 1022:1 1024:3 1028:2 1032:1 1034:2 1035:3 1058:1 1082:3 1091:1 1102:3 1110:1 1115:1 1124:1 1128:1 1135:3 1136:7 1140:3 1142:1 1150:5 1167:1 1176:5 1181:1 1194:2 1203:4 1206:10 1210:1 1212:2 1219:1 1226:2 1233:2 1234:3 1253:2 1256:1 1260:2 1270:3 1293:1 1301:2 1305:1 1308:1 1322:1 1326:4 1327:1 1330:1 1377:1 1385:2 1386:1 1391:1 1403:1 1431:1 1442:1 1454:1 1459:3 1479:1 1510:1 1537:1 1541:35 1550:1 1554:2 1555:2 1556:1 1564:4 1567:1 1583:1 1592:2 1595:2 1596:2 1603:1 1605:1 1610:1 1611:1 1613:1 1616:2 1617:3 1619:1 1623:1 1626:1 1627:1 1632:1 1634:1 1638:1 1651:1 1652:1 1682:1 1705:1 1706:2 1707:1 1740:4 1755:1 1757:1 1760:1 1763:1 1765:1 1771:2 1773:10 1792:1 1808:1 1809:1 1824:1 1836:3 1840:1 1843:1 1847:1 1849:2 1861:1 1870:1 1880:1 1888:1 1889:1 1891:3 1895:2 1897:13 1899:1 1903:1 1904:1 1910:1 1911:1 1915:1 1918:1 1925:1 1929:2 1930:1 1932:1 1959:1 1960:3 1970:2 1990:1 1991:1 1997:6 2013:1 2014:1 2031:1 2036:1 2037:2 2043:1 2058:2 2067:1 2088:1 2095:1 2097:1 2098:10 2102:1 2104:1 2105:1 2106:2 2123:1 2139:1 2145:1 2147:1 2158:2 2160:1 2164:3 2172:1 2175:1 2180:1 2196:1 2198:1 2199:1 2202:1 2207:1 2218:1 2249:1 2260:1 2265:1 2269:1 2276:1 2279:1 2282:1 2292:1 2307:1 2312:1 2317:2 2320:2 2327:1 2328:1 2342:1 2345:1 2348:1 2352:3 2355:1 2364:1 2368:1 2372:1 2376:2 2379:3 2390:1 2400:2 2406:2 2418:2 2420:1 2433:1 2436:1 2438:1 2446:1 2454:1 2455:1 2462:1 2467:1 2486:8 2494:1 2508:1 2517:1 2522:2 2525:1 2546:1 2547:1 2557:1 2566:1 2595:1 2596:1 2598:1 2599:2 2604:1 2607:1 2619:1 2624:1 2638:2 2639:1 2640:1 2642:1 2644:1 2652:1 2655:1 2665:1 2676:1 2696:9 2721:1 2743:2 2746:1 2747:1 2783:1 2789:1 2817:1 2827:1 2848:1 2852:1 2857:1 2859:2 2861:2 2862:4 2865:3 2866:2 2867:3 2870:1 2872:5 2873:1 2877:8 2881:4 2883:7 2887:4 2891:1 2892:2 2893:1 2895:1 2897:1 2900:1 2902:4 2906:4 2909:1 2910:1 2913:1 2918:1 2919:1 2920:1 2941:1 2942:1 2946:1 2954:3 2955:1 2971:5 2974:1 2980:1 2999:2 3002:1 3004:1 3026:1 3027:1 3035:1 3038:1 3042:1 3044:4 3045:4 3051:1 3054:4 3057:1 3061:1 3075:2 3076:4 3086:4 3087:1 3098:1 3100:1 3106:1 3116:4 3131:1 3133:1 3137:1 3145:1 3165:1 3176:2 3177:2 3179:1 3186:1 3191:1 3199:1 3206:1 3224:2 3240:1 3244:1 3255:2 3265:1 3266:1 3267:1 3312:1 3319:1 3322:2 3331:1 3341:2 3348:3 3358:1 3359:2 3366:1 3367:1 3371:1 3380:3 3381:1 3388:4 3389:1 3406:1 3410:1 3413:3 3415:4 3420:1 3423:3 3429:1 3443:1 3451:1 3454:1 3493:1 3497:3 3507:5 3510:5 3511:1 3516:1 3520:2 3539:2 3547:1 3560:1 3584:2 3590:1 3601:1 3603:2 3608:1 3612:2 3623:1 3645:17 3648:36 3651:1 3652:3 3653:1 3663:2 3666:2 3678:1 3681:2 3682:1 3691:4 3692:1 3695:1 3698:1 3706:8 3736:4 3741:2 3753:1 3756:1 3766:1 3784:2 3789:1 3792:1 3793:1 3794:1 3836:2 3843:1 3846:3 3851:1 3860:1 3867:1 3897:3 3926:2 3958:1 3962:1 4045:1 4067:4 4070:1 4091:1 4097:1 4101:1 4119:2 4142:1 4146:1 4147:1 4157:1 4161:3 4162:1 4171:1 4179:3 4193:1 4201:2 4211:1 4223:1 4224:1 4226:4 4251:2 4279:1 4328:1 4334:1 4355:1 4359:1 4371:1 4375:2 4381:1 4383:1 4384:1 4395:1 4396:1 4402:2 4411:1 4412:1 4444:1 4448:1 4452:1 4459:1 4465:1 4474:1 4476:1 4479:1 4488:1 4492:1 4495:1 4517:2 4531:1 4539:1 4555:1 4564:1 4575:1 4580:1 4582:1 4601:1 4626:1 4643:3 4645:2 4646:1 4651:2 4654:2 4676:1 4712:1 4722:3 4724:1 4755:1 4762:1 4763:1 4767:2 4773:1 4779:1 4780:3 4795:1 4803:1 4809:1 4813:1 4815:2 4819:1 4820:2 4830:2 4843:1 4854:1 4855:1 4857:1 4859:1 4867:3 4882:1 4885:1 4886:1 4887:1 4914:1 4920:35 4922:2 4927:1 4931:1 4941:1 4947:1 4955:1 4985:1 4992:1 4993:1 5008:1 5013:1 5015:2 5019:4 5020:4 5032:2 5039:1 5047:1 5054:6 5058:7 5059:2 5075:1 5076:2 5094:1 5117:1 5119:1 5125:1 5134:1 5149:1 5152:1 5153:2 5163:1 5170:3 5178:1 5190:1 5194:1 5232:1 5233:1 5235:1 5237:2 5240:1 5241:1 5247:1 5254:1 5263:1 5272:1 5282:1 5295:1 5298:1 5299:2 5300:1 5302:3 5307:1 5308:3 5324:1 5348:1 5364:1 5368:1 5371:3 5402:2 5404:1 5408:1 5411:1 5416:1 5428:1 5435:2 5437:35 5444:1 5453:1 5456:1 5459:5 5465:1 5470:1 5471:1 5473:1 5483:1 5486:1 5492:1 5555:2 5566:6 5587:1 5588:1 5598:1 5625:1 5638:3 5655:2 5662:3 5663:1 5672:2 5676:2 5679:1 5683:1 5685:1 5687:1 5712:1 5731:8 5738:2 5760:2 5832:6 5843:4 5850:1 5869:1 5879:6 5885:1 5899:1 5913:1 5924:1 5934:1 5948:1 5960:1 5967:3 5969:2 5973:2 5974:1 5980:1 5983:4 5995:1 6004:1 6005:3 6017:1 6041:1 6043:1 6049:1 6075:2 6078:2 6096:19 6097:2 6112:2 6115:1 6140:7 6149:2 6158:2 6173:1 6187:2 6191:1 6194:1 6207:1 6217:1 6253:4 6254:1 6257:4 6277:4 6278:4 6279:2 6282:1 6285:5 6291:1 6292:2 6293:4 6294:1 6303:1 6309:2 6312:5 6315:4 6316:1 6326:1 6334:1 6358:1 6382:1 6407:1 6411:2 6417:1 6430:1 6451:1 6473:1 6483:1 6495:1 6506:1 6528:1 6561:1 6580:1 6610:1 6622:1 6623:2 6628:1 6655:1 6679:1 6683:1 6684:1 6695:2 6698:2 6729:1 6738:3 6739:1 6759:2 6787:1 6799:1 6801:2 6803:1 6807:1 6832:1 6835:1 6843:2 6859:1 6861:1 6867:3 6870:1 6942:1 6956:1 6957:1 6961:1 6968:1 6970:1 6972:1 6982:2 6983:1 6986:1 6991:2 6996:1 7008:1 7010:1 7012:1 7036:2 7037:1 7038:2 7046:1 7051:1 7053:1 7061:2 7062:10 7065:1 7070:2 7072:1 7076:1 7083:1 7086:2 7119:2 7130:2 7138:1 7140:1 7164:2 7167:2 7198:1 7205:1 7213:1 7225:2 7243:1 7250:1 7252:2 7264:2 7289:11 7295:3 7334:1 7346:1 7366:1 7368:1 7377:1 7383:1 7394:1 7397:1 7421:1 7422:1 7423:2 7432:3 7434:1 7451:1 7455:1 7494:1 7496:1 7525:1 7532:1 7537:2 7561:2 7567:2 7580:3 7583:1 7589:1 7591:1 7599:1 7603:2 7604:3 7607:1 7608:1 7616:1 7618:1 7622:1 7625:1 7630:1 7635:1 7656:1 7665:1 7684:1 7690:1 7707:2 7708:2 7709:1 7715:1 7716:1 7718:1 7721:2 7722:1 7725:1 7727:1 7728:1 7729:3 7734:2 7736:2 7739:2 7741:2 7742:1 7748:1 7764:1 7782:2 7805:1 7822:3 7825:1 7840:1 7847:1 7852:4 7857:2 7860:1 7871:3 7880:1 7881:1 7895:1 7905:1 7937:2 7945:1 7965:1 7966:1 7972:1 7974:1 7989:7 7995:1 8002:1 8004:5 8006:1 8007:1 8008:1 8009:2 8010:1 8014:4 8015:3 8016:1 8017:1 8019:4 8020:9 8021:1 8022:1 8030:1 8034:1 8054:1 8077:1 8082:1 8085:2 8086:1 8125:1 8136:1 8143:1 8176:1 8185:2 8186:1 8200:3 8203:3 8224:1 8243:2 8257:1 8260:1 8284:1 8293:1 8295:1 8297:1 8308:1 8315:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:2 8349:1 8366:1 8370:2 8377:1 8393:2 8421:1 8427:1 8446:1 8449:1 8481:1 8489:1 8493:1 8496:1 8501:3 8524:3 8564:2 8566:1 8570:1 8577:1 8597:1 8602:2 8617:1 8641:1 8648:1 8654:1 8661:1 8691:1 8693:1 8695:2 8709:1 8714:1 8731:1 8738:1 8751:1 8772:1 8841:1 8842:1 8845:1 8849:1 8854:3 8866:1 8869:1 8880:1 8883:6 8905:1 8940:1 8943:1 8946:1 8955:1 8960:1 8966:2 8969:1 8975:1 8978:2 8996:1 9007:1 9012:2 9026:1 9033:1 9052:3 9060:1 9090:1 9113:1 9122:1 9123:2 9126:1 9134:1 9138:1 9143:1 9146:1 9149:1 9153:1 9160:1 9194:1 9197:1 9205:1 9216:1 9217:2 9231:1 9247:1 9253:1 9278:1 9282:2 9306:1 9307:1 9325:1 9328:1 9333:1 9337:1 9338:6 9372:9 9374:1 9381:1 9394:1 9426:1 9428:2 9433:1 9437:1 9442:1 9446:1 9470:2 9484:1 9492:1 9495:1 9499:1 9526:4 9529:1 9577:1 9586:1 9588:1 9612:3 9619:1 9623:1 9628:13 9629:13 9637:1 9654:1 9655:1 9656:1 9657:5 9661:1 9688:3 9694:4 9695:1 9702:54 9707:1 9708:1 9711:2 9719:1 9720:1 9723:1 9733:19 9738:5 9744:1 9750:1 9754:1 9758:1 9761:1 9778:1 9780:1 9781:4 9787:2 9793:2 9803:1 9813:1 9849:6 9866:2 9870:1 9877:1 9885:1 9895:1 9924:1 9926:2 9942:3 9957:1 9963:1 9967:4 9968:1 9975:1 9978:1 9999:6 10011:1 10023:1 10058:1 10063:2 10079:2 10099:2 10103:1 10161:1 10167:1 10171:1 10175:2 10209:1 10213:1 10223:1 10230:1 10235:3 10242:1 10261:2 10284:1 10286:1 10298:1 10313:1 10314:1 10321:36 10331:1 10333:1 10338:1 10340:1 10342:1 10349:1 10356:1 10359:16 10360:4 10376:1 10378:2 10399:1 10401:1 10406:1 10407:1 10411:1 10412:2 10424:1 10431:1 10444:1 10452:1 10470:44 10488:1 10520:2 10529:1 10552:1 10559:1 10573:1 10598:1 10599:2 10612:1 10615:1 10624:1 10631:1 10669:1 10683:1 10686:2 10695:1 10697:1 10701:2 10703:1 10704:1 10706:1 10707:1 10711:1 10716:2 10717:5 10718:1 10736:1 10744:1 10749:2 10765:1 10772:3 10773:1 10777:1 10778:1 10789:2 10791:1 10792:1 10796:1 10798:1 10807:2 10808:2 10812:1 10813:1 10826:1 10831:1 10848:1 10849:1 10850:1 10864:1 10878:1 10884:1 10895:1 10900:2 10911:4 10937:1 10979:1 10991:1 10994:1 11002:2 11075:3 11078:1 11081:1 11109:2 11118:1 11129:1 11140:1 11163:2 11165:1 11169:1 11176:1 11179:1 11181:1 11183:2 11203:1 11207:1 11212:4 11226:1 11230:1 11231:1 11233:4 11238:1 11247:3 11258:1 11268:1 11270:1 11272:1 11311:1 11320:1 11325:1 11334:3 11340:1 11343:2 11347:2 11378:1 11382:6 11391:5 11402:1 11404:1 11412:2 11422:1 11457:1 11489:4 11522:3 11523:1 11524:1 11556:1 11557:4 11561:2 11564:1 11569:5 11571:3 11572:1 11573:1 11575:1 11583:2 11585:2 11587:2 11598:1 11609:1 11617:1 11619:1 11625:1 11628:1 11636:1 11640:1 11641:1 11642:2 11643:1 11645:1 11654:1 11668:1 11675:1 11678:3 11690:8 11694:2 11697:2 11707:2 11718:2 11720:1 11723:1 11739:3 11744:1 11745:1 11755:1 11770:1 11771:1 11774:2 11776:1 11791:1 11793:2 11795:2 11804:1 11815:1 11835:1 11838:1 11840:1 11848:1 11851:1 11861:1 11864:1 11865:2 11872:2 11876:2 11882:1 11885:1 11887:1 11888:2 11899:1 11902:1 11903:1 11912:1 11917:1 11918:1 11919:10 11930:1 11931:2 11932:10 11936:1 11947:1 11955:1 11959:1 11961:3 11966:1 11969:1 11976:1 11978:1 11982:3 11985:1 11988:1 11992:1 12004:1 12014:1 12031:1 12033:1 12046:1 12052:1 12056:1 12057:1 12073:1 12076:2 12078:1 12081:1 12082:1 12083:2 12086:1 12096:1 12104:1 12111:1 12112:1 12113:1 12120:1 12131:2 12146:1 12147:1 12186:1 12191:1 12214:1 12221:6 12229:1 12230:1 12231:1 12237:3 12239:4 12248:1 12254:1 12255:1 12263:1 12269:1 12275:1 12282:1 12301:1 12324:1 12339:1 12359:1 12361:1 12391:35 12394:1 12398:1 12401:1 12407:1 12420:1 12428:1 12435:2 12446:1 12451:1 12453:1 12458:1 12471:1 12473:1 12479:2 12490:2 12493:1 12497:1 12508:1 12520:1 12521:1 12532:1 12538:1 12540:5 12547:3 12552:1 12561:2 12570:2 12580:1 12592:1 12608:1 12618:2 12619:2 12630:1 12636:1 12641:1 12643:2 12651:2 12654:2 12669:5 12673:5 12684:1 12689:1 12692:3 12694:1 12734:5 12756:1 12757:1 12760:2 12774:1 12777:1 12794:1 12808:1 12821:1 12824:3 12829:1 12837:1 12844:1 12848:1 12850:1 12867:7 12879:1 12881:1 12898:1 12936:1 12956:1 12958:1 12977:2 12981:1 12987:1 12988:1 13013:5 13028:1 13040:2 13049:1 13051:1 13052:2 13058:1 13078:1 13079:1 13080:1 13089:1 13096:1 13112:2 13113:7 13122:1 13128:1 13154:3 13175:1 13179:1 13187:1 13213:1 13234:1 13241:1 13258:4 13267:1 13282:1 13283:5 13297:1 13303:1 13316:1 13325:2 13357:3 13377:1 13384:1 13385:2 13411:1 13412:5 13415:1 13418:2 13420:7 13429:1 13443:1 13454:1 13464:2 13468:1 13471:1 13472:1 13474:1 13481:1 13483:1 13487:1 13493:7 13498:1 13505:1 13509:1 13516:1 13517:2 13523:1 13537:1 13550:1 13567:1 13568:1 13588:1 13601:1 13632:10 13633:1 13647:1 13648:1 13657:1 13669:3 13673:1 13682:1 13686:3 13690:3 13694:3 13704:1 13710:1 13721:4 13729:1 13737:1 13749:1 13761:1 13765:2 13767:1 13768:1 13777:1 13793:1 13798:9 13803:1 13808:1 13823:1 13824:3 13826:4 13828:1 13837:1 13845:2 13849:1 13859:1 13880:1 13881:1 13891:6 13895:1 13897:1 13898:1 13900:1 13901:1 13910:2 13919:1 13921:2 13931:1 13942:1 13956:1 13972:3 13996:1 13998:1 14008:1 14009:1 14015:1 14017:1 14029:1 14032:3 14036:1 14042:1 14070:2 14071:2 14092:1 14093:2 14095:2 14105:2 14107:1 14114:1 14115:1 14116:4 14119:1 14122:2 14124:1 14128:1 14134:1 14145:2 14146:5 14149:1 14152:1 14154:1 14162:1 14186:1 14189:3 14191:1 14218:1 14228:1 14235:5 14263:1 14265:1 14280:1 14286:2 14291:1 14292:1 14296:1 14302:1 14308:1 14309:1 14322:9 14337:2 14340:2 14342:1 14376:1 14380:1 14406:1 14410:1 14411:1 14416:1 14430:1 14448:2 14462:1 14464:2 14488:1 14491:6 14515:1 14517:1 14519:1 14523:1 14528:1 14533:3 14549:1 14550:1 14554:2 14555:1 14559:1 14564:1 14567:6 14568:4 14571:2 14577:1 14580:5 14586:1 14611:1 14614:1 14621:2 14628:1 14632:2 14636:1 14638:8 14642:1 14643:1 14654:1 14666:1 14667:1 14675:2 14686:1 14689:1 14716:1 14727:3 14735:1 14737:1 14742:4 14744:1 14772:3 14787:1 14791:3 14803:1 14840:1 14844:1 14854:1 14869:1 14870:1 14910:1 14913:1 14940:1 14941:2 14960:1 14984:1 15012:1 15014:1 15030:1 15037:3 15039:1 15046:1 15060:4 15079:1 15083:1 15086:1 15095:1 15123:1 15132:1 15139:1 15140:1 15144:1 15150:2 15151:1 15152:3 15160:1 15161:5 15162:1 15166:1 15169:1 15178:1 15185:1 15197:1 15205:1 15210:1 15220:1 15222:1 15250:1 15269:1 15278:1 15292:1 15312:3 15315:5 15326:1 15345:1 15383:1 15385:2 15400:1 15414:2 15448:1 15460:1 15472:1 15487:1 15502:3 15519:1 15525:1 15526:1 15552:1 15574:1 15577:1 15584:2 15587:1 15595:1 15598:1 15675:1 15696:1 15705:1 15707:1 15746:1 15747:1 15776:3 15778:36 15782:1 15786:1 15794:1 15797:1 15800:5 15803:1 15813:1 15826:1 15844:6 15855:1 15864:2 15868:1 15871:1 15885:1 15895:1 15900:1 15910:1 15912:1 15913:1 15915:1 15942:2 15943:1 15944:2 15981:1 15989:1 16001:1 16006:2 16008:1 16013:1 16017:1 16022:1 16083:1 16092:1 16099:2 16114:1 16134:1 16142:2 16147:1 16149:1 16173:1 16190:1 16196:1 16198:1 16201:1 16213:1 16217:1 16236:1 16241:1 16253:1 16268:1 16269:1 16285:1 16289:1 16293:1 16294:1 16299:1 16303:1 16304:1 16320:1 16327:12 16332:4 16336:3 16354:1 16357:1 16365:2 16372:1 16375:1 16393:1 16394:1 16456:1 16460:1 16475:1 16490:1 16499:1 16502:2 16505:2 16510:6 16515:1 16516:6 16528:1 16535:1 16559:1 16561:1 16594:1 16609:14 16613:1 16622:1 16643:1 16661:1 16676:1 16706:1 16720:1 16729:1 16731:1 16732:2 16742:1 16775:1 16792:3 16797:4 16803:2 16823:1 16831:1 16835:1 16837:1 16843:1 16854:1 16862:1 16869:2 16874:2 16882:1 16889:1 16897:1 16898:1 16914:2 16918:1 16929:2 16964:1 16968:2 16970:3 16971:1 16973:1 16975:1 16977:2 16978:1 16979:11 16980:1 16981:1 16983:2 17002:1 17003:2 17004:1 17007:1 17008:1 17009:1 17011:1 17013:6 17022:1 17026:1 17031:1 17033:2 17064:1 17075:1 17076:1 17082:1 17100:1 17114:1 17120:1 17125:1 17152:1 17154:1 17156:1 17161:2 17172:10 17175:1 17181:2 17193:1 17204:1 17214:1 17217:1 17230:1 17234:1 17243:1 17246:1 17273:1 17276:1 17278:2 17286:5 17303:1 17309:1 17315:3 17319:1 17320:2 17333:12 17336:8 17378:1 17417:2 17426:5 17436:2 17438:1 17449:4 17450:1 17481:1 17513:1 17516:1 17545:1 17547:3 17562:1 17564:2 17571:1 17598:1 17601:1 17607:2 17623:1 17629:1 17636:1 17639:1 17675:4 17679:1 17716:1 17723:1 17734:1 17762:1 17769:1 17784:2 17792:2 17794:1 17798:1 17806:2 17813:2 17814:2 17817:3 17819:1 17829:1 17835:2 17836:1 17849:1 17850:2 17858:2 17869:1 17884:1 17903:1 17918:1 17921:1 17924:1 17925:2 17929:1 17941:1 17942:2 17943:1 17945:1 17955:2 17957:2 17972:1 17976:1 17978:2 17981:1 17984:1 17992:1 17993:1 17994:1 17997:1 17998:1 17999:1 18000:1 18005:1 18011:1 18013:1 18016:2 18030:1 18032:1 18037:2 18039:1 18048:1 18057:2 18058:1 18073:1 18080:1 18092:36 18094:1 18101:3 18105:1 18106:1 18110:1 18120:1 18127:1 18128:1 18137:1 18184:1 18198:1 18200:1 18203:5 18204:1 18214:1 18215:1 18221:2 18244:1 18249:1 18270:3 18274:1 18276:1 18277:1 18278:1 18290:1 18297:1 18298:1 18320:4 18325:1 18339:1 18342:1 18345:1 18348:1 18390:1 18392:1 18396:1 18442:1 18463:2 18470:2 18471:1 18474:1 18485:1 18506:1 18535:1 18549:1 18559:1 18560:1 18561:2 18563:2 18574:1 18582:1 18593:1 18600:2 18601:1 18603:1 18608:7 18614:1 18645:3 18651:1 18667:1 18673:1 18676:1 18677:1 18696:1 18703:1 18708:3 18710:1 18712:1 18715:1 18732:1 18747:1 18752:1 18767:2 18769:1 18779:2 18781:3 18793:1 18794:1 18811:1 18823:2 18855:1 18867:1 18870:1 18876:2 18898:2 18899:1 18928:1 18953:3 18954:1 18959:1 18968:1 18978:1 18989:1 18993:3 18997:1 19019:1 19029:1 19050:1 19060:1 19064:2 19067:1 19083:1 19087:2 19090:1 19096:1 19097:1 19120:1 19141:1 19154:1 19169:1 19175:1 19191:1 19192:3 19193:4 19204:1 19225:1 19235:2 19263:6 19269:2 19276:1 19287:1 19303:1 19310:1 19336:1 19361:1 19397:1 19406:1 19416:1 19424:1 19428:1 19437:2 19450:1 19452:1 19458:4 19469:1 19471:1 19475:1 19484:1 19489:1 19490:5 19496:3 19500:2 19513:4 19514:1 19518:1 19525:1 19526:1 19529:1 19532:1 19538:3 19548:1 19567:1 19602:1 19605:1 19615:5 19616:1 19620:2 19641:2 19645:4 19649:2 19655:1 19658:1 19664:1 19670:1 19672:1 19679:1 19689:1 19691:3 19703:1 19708:4 19724:1 19766:1 19772:1 19775:1 19787:1 19796:1 19806:1 19810:15 19814:2 19815:1 19820:1 19851:4 19854:3 19858:1 19865:2 19868:2 19876:1 19894:2 19901:1 19904:2 19905:2 19907:1 19908:2 19932:12 19947:1 19956:1 19960:1 19961:1 19967:1 19976:4 20027:3 20034:1 20046:2 20061:1 20065:1 20074:1 20076:1 20078:1 20090:1 20091:2 20109:4 20110:2 20111:1 20115:4 20117:1 20124:1 20125:3 20126:1 20127:2 20130:1 20153:1 20168:1 20174:2 20201:2 20211:1 20221:1 20231:1 20232:1 20237:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20295:1 20296:1 20318:1 20324:1 20325:1 20350:1 20355:1 20369:2 20383:1 20390:2 20431:1 20444:1 20445:1 20446:2 20455:1 20499:1 20522:1 20537:1 20540:2 20556:2 20566:1 20568:1 20572:1 20588:3 20593:1 20604:1 20606:10 20607:1 20608:1 20617:1 20643:1 20646:1 20649:1 20654:1 20679:2 20680:1 20683:1 20689:1 20690:1 20691:2 20723:1 20727:1 20741:1 20746:1 20751:3 20754:1 20762:2 20781:2 20783:1 20785:3 20796:1 20799:2 20816:1 20818:1 20865:1 20878:1 20885:1 20900:1 20917:1 20918:2 20930:1 20936:1 20941:48 20948:1 20949:2 20966:1 20974:1 20978:1 20980:1 20997:1 21000:1 21003:4 21044:1 21064:1 21071:1 21072:1 21081:1 21083:1 21097:1 21101:1 21116:1 21124:3 21130:2 21145:2 21149:1 21155:1 21170:1 21174:2 21204:1 21209:1 21214:1 21215:1 21235:1 21261:1 21263:1 21284:1 21292:1 21299:1 21316:1 21318:2 21322:2 21323:1 21324:1 21337:1 21355:1 21371:1 21376:1 21423:1 21443:1 21445:1 21460:1 21473:1 21477:1 21488:1 21500:1 21503:1 21508:1 21512:1 21513:1 21518:1 21522:2 21524:1 21530:1 21540:1 21566:1 21586:1 21591:2 21592:1 21593:1 21597:1 21602:1 21603:1 21608:2 21612:2 21634:1 21643:1 21686:2 21696:1 21701:1 21704:2 21713:2 21724:1 21754:1 21769:1 21788:1 21806:1 21809:1 21819:1 21822:1 21823:4 21827:1 21829:2 21831:1 21843:1 21864:1 21866:1 21872:2 21874:2 21875:2 21886:1 21892:1 21899:1 21917:2 21925:1 21939:3 21943:2 21975:4 21976:1 21987:5 21996:1 22008:4 22009:1 22019:1 22032:1 22037:1 22067:2 22076:1 22079:8 22083:1 22084:2 22123:3 22130:1 22143:2 22169:1 22173:1 22177:2 22181:1 22186:2 22190:1 22207:1 22247:1 22251:2 22298:1 22300:4 22304:2 22305:2 22308:1 22315:1 22327:1 22345:2 22347:2 22361:1 22362:1 22386:1 22388:2 22391:1 22406:1 22424:1 22429:5 22437:1 22490:1 22493:2 22497:1 22516:1 22530:2 22547:1 22572:1 22584:1 22628:9 22643:2 22650:1 22666:1 22668:1 22677:2 22715:1 22720:1 22727:4 22737:1 22754:1 22762:1 22764:1 22781:1 22783:1 22791:2 22800:1 22806:2 22809:1 22816:1 22824:1 22839:1 22853:1 22866:1 22870:1 22883:2374 22893:2 22899:1 22909:2 22923:1 22944:1 22966:1 22969:1 22971:1 22981:1 22984:1 23008:1 23031:3 23039:1 23043:3 23044:1 23079:1 23082:1 23098:1 23113:1 23119:1 23129:2 23139:2 23164:1 23171:1 23173:1 23189:1 23193:2 23194:1 23202:1 23223:1 23224:1 23270:1 23279:1 23293:2 23304:1 23320:1 23321:1 23348:1 23365:2 23371:1 23411:1 23427:1 23438:1 23456:1 23457:1 23468:2 23470:1 23474:1 23482:1 23492:1 23505:1 23508:1 23509:1 23520:1 23521:3 23523:2 23543:1 23549:1 23560:1 23565:1 23603:1 23607:6 23640:5 23647:1 23653:1 23658:2 23664:2 23698:1 23705:1 23706:1 23708:1 23712:1 23715:1 23718:1 23735:1 23763:1 23766:1 23773:1 23784:1 23787:1 23789:1 23800:1 23805:1 23812:1 23821:1 23833:8 23834:4 23874:1 23880:4 23900:1 23914:2 23922:1 23932:1 23934:1 23947:23 23958:1 23978:1 23979:2 24012:2 24013:1 24017:1 24019:1 24020:1 24021:2 24044:1 24047:4 24049:1 24051:1 24052:2 24064:2 24066:1 24079:1 24092:1 24097:2 24105:3 24106:1 24118:1 24128:1 24154:2 24176:1 24185:1 24191:1 24197:1 24201:1 24205:1 24209:4 24217:2 24233:1 24239:3 24240:1 24255:1 24268:1 24271:1 24275:1 24289:2 24292:1 24306:1 24314:2 24327:1 24332:1 24342:1 24345:2 24347:1 24364:1 24369:1 24376:4 24385:1 24405:1 24424:1 24444:1 24449:1 24450:1 24452:1 24474:1 24479:1 24480:3 24482:2 24483:1 24491:1 24511:1 24518:2 24534:1 24539:2 24553:1 24566:1 24591:2 24592:8 24598:1 24601:1 24604:1 24607:1 24612:1 24620:1 24630:2 24640:1 24643:1 24651:2 24653:2 24656:3 24658:7 24663:1 24674:1 24680:2 24681:6 24682:1 24683:1 24699:1 24700:1 24704:1 24708:5 24728:2 24729:1 24753:2 24754:1 24762:3 24774:1 24777:1 24781:6 24792:1 24794:1 24808:3 24813:1 24820:1 24826:2 24850:1 24853:1 24869:1 24882:1 24883:5 24894:2 24918:1 24919:1 24924:1 24945:1 24950:1 24956:1 24978:1 25000:1 25031:2 25041:1 25047:1 25052:1 25053:1 25058:1 25067:1 25076:1 25080:1 25114:6 25117:1 25122:1 25123:1 25143:1 25144:2 25157:1 25161:2 25163:1 25179:3 25194:1 25217:1 25225:1 25240:1 25244:1 25269:1 25285:1 25299:1 25300:2 25303:1 25326:1 25334:2 25351:1 25357:1 25369:2 25373:1 25379:1 25386:1 25392:1 25407:2 25410:3 25417:1 25423:1 25427:2 25428:1 25431:2 25448:1 25450:2 25456:1 25461:1 25468:1 25481:1 25486:1 25491:1 25498:2 25502:2 25505:1 25511:3 25526:1 25527:1 25529:1 25541:1 25543:1 25553:2 25554:2 25568:1 25572:1 25580:2 25582:2 25586:1 25590:4 25600:2 25602:1 25605:1 25608:3 25609:2 25623:2 25630:1 25632:1 25637:4 25655:1 25690:1 25699:1 25720:1 25721:5 25725:1 25733:2 25738:1 25781:1 25782:1 25786:2 25793:3 25807:1 25811:1 25815:1 25824:2 25841:1 25846:1 25848:1 25852:1 25859:2 25867:1 25879:1 25903:1 25907:1 25917:1 25922:1 25928:1 25934:1 25943:1 25948:1 25952:1 25973:1 25994:1 26000:1 26005:1 26011:2 26014:1 26018:4 26031:2 26044:1 26052:1 26062:3 26070:1 26091:1 26099:1 26102:2 26107:1 26119:1 26120:1 26124:1 26138:1 26148:1 26151:1 26153:1 26155:1 26156:4 26162:1 26167:1 26178:1 26183:1 26191:1 26203:2 26204:1 26211:1 26212:1 26213:1 26214:1 26215:2 26216:2 26226:1 26228:2 26236:1 26260:1 26261:1 26275:1 26278:1 26279:1 26285:1 26288:1 26306:1 26313:1 26322:1 26324:2 26327:2 26337:4 26342:1 26344:1 26345:1 26346:1 26347:1 26361:2 26362:2 26383:1 26385:4 26394:1 26395:1 26407:1 26415:1 26424:1 26425:1 26426:1 26438:3 26444:1 26453:4 26458:2 26459:1 26460:1 26475:1 26496:1 26505:1 26507:1 26508:8 26521:1 26552:1 26555:1 26589:2 26590:1 26593:1 26602:8 26605:2 26608:1 26610:1 26612:5 26614:1 26628:3 26642:1 26644:1 26651:1 26667:1 26668:11 26671:1 26679:1 26694:1 26740:1 26743:1 26744:1 26776:1 26777:2 26779:4 26782:2 26787:1 26794:2 26795:1 26796:1 26797:2 26808:2 26809:2 26815:1 26818:1 26820:1 26826:7 26827:1 26828:4 26835:1 26842:1 26843:1 26844:1 26854:1 26874:1 26907:1 26914:1 26930:1 26949:3 26984:2 26995:2 26999:1 27004:4 27008:1 27029:2 27033:1 27051:1 27072:1 27087:3 27092:1 27097:1 27099:1 27102:1 27103:1 27114:1 27127:4 27138:1 27149:2 27153:2 27171:1 27183:1 27203:1 27213:2 27243:1 27251:2 27259:1 27260:15 27283:1 27287:2 27294:1 27319:1 27331:12 27333:2 27339:1 27343:1 27354:1 27358:1 27365:1 27393:1 27396:4 27398:2 27401:1 27412:4 27415:2 27447:1 27460:7 27470:1 27478:2 27484:1 27490:1 27500:3 27501:1 27508:1 27522:1 27526:1 27527:1 27542:1 27544:2 27573:1 27591:1 27594:1 27599:1 27601:1 27603:2 27619:10 27633:3 27651:1 27653:1 27677:3 27703:1 27723:1 27731:1 27752:1 27760:1 27767:1 27776:1 27779:1 27782:1 27787:35 27804:1 27808:1 27810:3 27813:3 27814:1 27816:1 27817:2 27819:1 27820:1 27825:1 27854:2 27859:3 27860:1 27862:1 27866:1 27876:3 27878:1 27879:1 27889:1 27920:1 27922:1 27925:1 27957:1 27963:1 27973:6 27974:1 27983:1 27987:3 28000:2 28007:1 28011:4 28017:1 28038:1 28051:1 28052:1 28081:1 28154:1 28160:3 28179:3 28191:1 28194:1 28206:1 28263:1 28276:1 28278:1 28279:1 28287:1 28297:1 28298:3 28303:1 28308:1 28310:1 28313:3 28316:1 28317:1 28318:2 28325:1 28348:1 28370:36 28384:1 28398:3 28399:1 28409:1 28433:1 28436:1 28443:1 28460:1 28464:1 28470:1 28472:2 28473:1 28482:2 28483:1 28489:6 28512:1 28523:1 28528:1 28541:1 28543:1 28559:1 28560:1 28567:1 28572:1 28577:3 28582:2 28587:1 28593:1 28608:2 28612:1 28620:1 28621:1 28639:1 28645:1 28647:2 28650:2 28655:1 28686:2 28693:1 28719:1 28752:1 28757:1 28786:1 28788:1 28811:1 28812:1 28814:3 28815:1 28817:2 28826:1 28831:1 28833:1 28852:1 28899:1 28908:1 28913:1 28929:1 28932:1 28939:2 28940:1 28949:1 28958:1 28974:2 28983:2 28993:1 28996:2 29004:1 29014:1 29016:1 29020:1 29032:1 29041:3 29087:1 29123:1 29125:1 29126:1 29133:2 29141:1 29149:1 29150:1 29169:1 29170:3 29174:1 29179:1 29187:1 29190:7 29192:1 29196:1 29215:1 29233:1 29241:1 29251:1 29258:1 29271:1 29297:1 29302:1 29320:1 29328:1 29330:1 29333:1 29334:1 29363:1 29367:2 29398:1 29405:1 29410:1 29417:1 29419:3 29426:2 29451:1 29455:2 29464:1 29480:1 29486:2 29493:1 29516:2 29527:1 29551:1 29554:1 29557:7 29564:2 29566:1 29568:2 29583:2 29584:2 29587:3 29591:1 29592:1 29600:1 29604:1 29634:3 29635:1 29639:1 29671:1 29688:10 29695:1 29701:1 29715:1 29741:1 29749:1 29752:1 29756:2 29760:1 29761:1 29768:1 29775:1 29797:1 29816:1 29822:1 29827:1 29840:1 29845:5 29857:1 29887:1 29888:1 29901:2 29911:1 29933:1 29939:1 29952:1 29954:1 29957:1 29962:3 29969:1 29972:1 29995:1 30004:1 30015:2 30023:1 30035:1 30041:1 30079:3 30083:1 30084:2 30092:1 30093:1 30095:2 30099:5 30102:1 30103:1 30105:2 30119:1 30127:1 30134:1 30144:2 30165:3 30192:1 30198:2 30199:3 30213:1 30215:1 30219:1 30233:1 30235:2 30238:1 30241:1 30248:1 30253:2 30261:4 30263:1 30273:1 30279:1 30283:1 30284:1 30288:1 30290:1 30294:1 30295:1 30299:1 30307:1 30309:1 30319:1 30320:1 30326:1 30329:1 30330:1 30331:1 30332:1 30350:1 30361:1 30364:1 30370:1 30424:1 30434:1 30452:1 30454:1 30478:1 30482:3 30483:1 30489:1 30493:1 30518:1 30535:5 30537:2 30538:2 30541:1 30552:2 30553:1 30566:1 30588:1 30601:1 30613:1 30617:2 30641:2 30677:1 30679:1 30688:1 30690:1 30743:1 30748:1 30777:1 30783:2 30787:1 30788:1 30789:2 30790:6 30794:1 30806:1 30814:6 30817:3 30823:1 30853:1 30855:2 30857:2 30861:1 30907:1 30910:1 30912:2 30920:2 30931:1 30934:1 30944:2 30951:1 30952:1 30960:2 30963:1 30965:1 30970:1 30972:1 30981:4 30987:1 30992:1 31002:1 31005:1 31015:1 31020:1 31026:1 31047:1 31048:1 31051:4 31053:1 31054:1 31055:2 31057:1 31059:2 31072:1 31089:2 31092:1 31093:1 31095:1 31112:2 31123:1 31134:1 31142:1 31148:1 31151:1 31153:1 31168:3 31177:1 31178:1 31181:1 31188:1 31201:1 31210:1 31223:1 31226:1 31235:2 31254:1 31255:4 31264:4 31265:2 31276:1 31283:1 31286:1 31296:5 31317:4 31319:1 31329:2 31334:4 31369:1 31376:1 31377:5 31384:1 31387:1 31404:1 31411:1 31413:14 31425:2 31444:2 31465:2 31478:1 31486:1 31550:1 31563:1 31569:1 31574:2 31578:3 31580:1 31588:1 31595:1 31601:1 31603:2 31610:1 31612:1 31641:3 31648:1 31660:3 31663:1 31701:1 31706:1 31708:1 31712:1 31725:1 31737:1 31747:1 31751:1 31752:1 31753:2 31757:1 31767:1 31768:1 31784:1 31785:1 31787:1 31797:1 31805:1 31808:2 31834:3 31848:1 31853:1 31866:2 31874:1 31882:1 31885:1 31890:1 31891:1 31893:2 31918:1 31919:1 31929:1 31930:4 31933:2 31946:2 31963:2 31964:1 31968:11 31969:1 31972:1 31983:1 31993:3 32010:1 32013:1 32022:1 32025:1 32036:1 32057:1 32066:5 32074:1 32085:1 32090:1 32098:1 32099:1 32106:1 32112:1 32115:1 32117:1 32136:1 32140:2 32141:1 32153:1 32208:1 32219:2 32259:2 32261:1 32269:1 32285:3 32307:1 32311:1 32317:1 32319:1 32326:1 32329:1 32334:1 32376:2 32405:1 32406:2 32413:1 32425:1 32436:1 32459:1 32461:2 32491:1 32492:1 32493:2 32505:2 32515:2 32532:1 32538:1 32553:2 32555:1 32559:1 32574:1 32596:1 32597:1 32606:1 32612:1 32624:1 32629:1 32636:1 32682:1 32683:2 32691:1 32700:1 32725:2 32726:2 32732:1 32745:1 32749:2 32750:6 32774:3 32779:1 32785:2 32787:1 32801:4 32813:1 32820:1 32832:4 32841:1 32846:1 32848:2 32879:1 32887:2 32890:7 32891:1 32893:1 32896:2 32908:1 32909:1 32913:1 32917:2 32924:1 32929:3 32941:3 32950:2 32955:1 32958:1 32965:1 32974:1 32984:1 32997:1 33027:1 33031:1 33053:1 33057:2 33066:1 33069:2 33074:1 33080:2 33085:1 33089:1 33092:1 33094:3 33098:1 33100:1 33112:1 33118:1 33128:5 33133:4 33137:1 33141:2 33142:2 33144:2 33157:2 33168:1 33180:1 33182:1 33183:2 33189:1 33218:2 33219:1 33222:1 33231:1 33241:1 33272:1 33276:2 33284:1 33287:1 33296:3 33297:1 33309:2 33330:1 33333:1 33335:1 33346:1 33352:8 33388:1 33389:1 33404:1 33413:1 33422:1 33428:2 33439:1 33440:1 33444:2 33446:1 33449:1 33461:3 33467:1 33498:1 33502:2 33503:1 33504:1 33505:3 33512:1 33530:1 33533:5 33534:1 33537:2 33543:3 33545:1 33552:1 33553:2 33555:1 33556:2 33563:3 33579:2 33591:3 33592:1 33595:3 33609:1 33616:1 33620:1 33623:1 33637:1 33663:8 33669:1 33680:4 33716:1 33720:1 33730:1 33732:1 33734:3 33738:1 33743:3 33760:1 33766:1 33769:1 33771:1 33772:1 33794:2 33795:2 33819:1 33820:1 33824:1 33861:1 33865:1 33880:2 33902:1 33910:1 33921:1 33928:1 33930:1 33989:1 33997:1 34003:1 34040:1 34049:1 34052:1 34056:3 34057:2 34062:2 34063:1 34067:5 34071:3 34075:7 34076:1 34077:2 34080:1 34083:1 34085:3 34086:1 34099:1 34104:1 34133:1 34139:1 34144:1 34151:3 34157:1 34159:1 34160:1 34164:1 34172:1 34174:1 34194:1 34197:1 34204:1 34221:2 34246:2 34253:1 34283:3 34304:1 34306:1 34314:1 34321:2 34322:1 34351:1 34353:1 34363:1 34364:1 34367:1 34371:1 34373:1 34385:2 34403:1 34407:1 34410:1 34413:3 34423:1 34435:14 34437:2 34440:1 34445:1 34455:1 34470:1 34478:4 34496:1 34497:6 34526:1 34566:1 34570:1 34586:1 34589:1 34596:4 34615:1 34619:1 34627:1 34629:1 34630:2 34634:12 34643:3 34654:1 34659:1 34662:1 34673:2 34674:1 34682:1 34689:1 34691:14 34701:2 34749:1 34757:2 34761:1 34771:1 34782:1 34794:1 34804:2 34834:1 34862:1 34878:2 34924:2 34936:1 34957:1 34961:1 34968:1 34989:1 34996:44 34997:1 35022:1 35026:5 35031:2 35039:2 35041:5 35042:2 35043:1 35055:1 35056:1 35094:1 35098:1 35124:4 35128:13 35129:1 35135:2 35141:1 35149:1 35152:2 35157:1 35164:1 35167:1 35177:1 35184:1 35201:1 35207:2 35253:1 35265:1 35281:2 35289:2 35310:2 35311:1 35326:1 35342:1 35347:1 35354:5 35382:2 35395:5 35410:1 35456:1 35464:3 35468:1 35470:1 35473:1 35488:1 35499:1 35503:2 35517:2 35520:1 35526:2 35529:1 35539:1 35582:1 35585:1 35589:2 35592:1 35602:2 35614:1 35625:3 35634:1 35635:1 35636:2 35648:1 35656:1 35661:1 35664:1 35665:1 35677:1 35681:2 35692:1 35696:1 35700:1 35714:1 35719:1 35721:1 35731:1 35734:1 35746:1 35748:10 35749:1 35753:2 35757:3 35785:1 35789:3 35805:6 35811:1 35831:4 35836:1 35837:2 35838:2 35845:1 35850:36 35862:2 35888:2 35901:1 35925:1 35927:1 35939:1 35953:1 35957:1 35959:2 35964:2 35965:2 35966:5 35989:1 35996:1 36007:1 36010:2 36011:1 36028:2 36033:1 36045:1 36051:1 36059:1 36065:1 36072:1 36075:2 36091:1 2 9:1 10:1 19:1 31:2 32:1 33:1 51:1 55:1 65:1 68:1 69:1 73:1 76:1 86:1 95:1 104:3 106:2 107:1 122:1 128:1 140:1 166:2 177:1 184:1 191:2 196:2 200:2 202:1 207:1 211:1 221:1 224:1 226:1 235:1 239:2 251:1 255:1 256:1 271:1 278:2 297:3 302:5 303:1 309:2 322:2 323:1 328:1 330:2 365:2 372:1 412:1 414:4 418:1 433:1 435:2 442:1 446:1 450:1 452:1 454:1 460:1 461:1 478:2 498:2 503:2 515:1 520:2 526:1 539:1 541:1 549:1 553:1 555:2 568:2 583:2 601:4 607:1 610:1 621:1 626:1 641:2 650:2 659:1 662:1 671:1 672:1 674:1 684:1 690:1 691:1 705:1 720:1 750:1 751:3 755:2 759:2 761:1 766:1 781:1 787:1 795:6 820:37 821:1 825:4 831:1 833:1 835:1 854:1 861:1 881:1 886:3 889:3 919:2 931:1 935:2 941:2 955:3 964:1 999:2 1019:2 1022:1 1024:3 1028:2 1032:1 1034:2 1035:3 1058:1 1082:3 1091:1 1102:3 1110:1 1115:1 1124:1 1128:1 1135:3 1136:7 1140:3 1142:1 1150:5 1167:1 1176:5 1181:1 1194:2 1203:4 1206:10 1210:1 1212:3 1219:1 1226:2 1233:2 1234:3 1253:2 1256:1 1260:2 1270:3 1293:1 1301:3 1305:1 1308:1 1322:1 1326:4 1327:1 1330:1 1377:1 1385:2 1386:1 1391:1 1403:1 1431:1 1442:1 1454:1 1459:3 1479:1 1510:1 1537:1 1541:36 1550:1 1554:2 1555:2 1556:1 1564:4 1567:1 1583:1 1592:2 1595:2 1596:2 1603:1 1605:1 1610:1 1611:1 1613:1 1616:2 1617:3 1619:1 1623:1 1626:1 1627:1 1632:1 1634:1 1638:1 1651:1 1652:2 1682:1 1705:1 1706:2 1707:1 1740:4 1755:1 1757:1 1760:1 1763:1 1765:1 1771:2 1773:11 1792:1 1808:1 1809:1 1824:1 1836:3 1840:1 1843:1 1847:1 1849:2 1861:1 1870:1 1880:1 1888:1 1889:1 1891:3 1895:2 1897:16 1899:1 1903:1 1904:1 1910:1 1911:1 1915:1 1918:1 1925:1 1929:2 1930:1 1932:1 1959:1 1960:3 1970:2 1990:1 1991:1 1997:6 2013:1 2014:1 2031:1 2036:1 2037:2 2043:1 2058:3 2067:1 2088:1 2095:1 2097:1 2098:11 2102:1 2104:1 2105:1 2106:2 2123:1 2139:1 2145:1 2147:1 2158:2 2160:1 2164:3 2172:1 2175:1 2180:1 2196:1 2198:1 2199:1 2202:1 2207:1 2218:1 2249:1 2260:1 2265:1 2269:1 2276:1 2279:1 2282:1 2292:1 2307:1 2312:1 2317:3 2320:2 2327:1 2328:1 2342:1 2345:1 2348:1 2352:3 2355:1 2364:1 2368:1 2372:1 2376:2 2379:3 2390:1 2400:2 2406:2 2418:2 2420:1 2433:1 2436:1 2438:1 2442:1 2446:1 2449:1 2451:1 2454:1 2455:1 2462:1 2467:1 2486:8 2494:1 2508:1 2517:1 2522:2 2525:1 2546:1 2547:1 2557:1 2566:1 2595:1 2596:1 2598:1 2599:2 2604:1 2607:1 2619:1 2624:1 2638:2 2639:1 2640:1 2642:1 2644:1 2652:1 2655:1 2665:1 2676:1 2696:10 2721:1 2743:3 2746:1 2747:1 2783:1 2789:2 2817:1 2827:1 2848:1 2852:1 2857:1 2859:2 2861:2 2862:4 2865:3 2866:2 2867:3 2870:1 2872:5 2873:1 2877:9 2881:4 2883:7 2887:4 2891:1 2892:3 2893:1 2895:1 2897:1 2900:1 2902:4 2906:4 2909:1 2910:1 2913:1 2918:1 2919:1 2920:1 2941:1 2942:1 2946:1 2954:3 2955:1 2971:5 2974:1 2980:1 2999:2 3002:1 3004:1 3026:1 3027:1 3035:1 3038:1 3042:1 3044:4 3045:4 3051:1 3054:4 3057:1 3061:1 3075:2 3076:4 3086:4 3087:1 3098:1 3100:1 3106:1 3116:4 3131:1 3132:1 3133:1 3137:1 3145:1 3165:1 3176:2 3177:2 3179:1 3186:1 3191:1 3199:1 3206:1 3218:1 3224:2 3240:1 3244:1 3255:2 3265:1 3266:1 3267:1 3312:1 3319:1 3322:2 3331:1 3341:2 3348:3 3358:1 3359:2 3366:1 3367:1 3371:1 3380:3 3381:1 3388:4 3389:1 3406:1 3410:1 3413:3 3415:4 3420:1 3423:3 3429:1 3443:1 3451:1 3454:1 3493:1 3497:3 3507:5 3510:5 3511:1 3516:1 3520:4 3539:2 3547:1 3560:1 3584:2 3590:1 3601:1 3603:2 3608:1 3612:2 3623:1 3645:17 3648:37 3651:1 3652:3 3653:1 3663:2 3666:2 3667:1 3678:1 3681:2 3682:1 3691:4 3692:1 3695:1 3698:1 3706:8 3736:4 3741:2 3745:1 3753:1 3756:1 3766:1 3784:2 3789:1 3792:1 3793:1 3794:1 3836:2 3843:1 3846:3 3851:1 3860:1 3867:1 3897:3 3926:2 3958:1 3962:1 4034:1 4045:1 4067:4 4070:1 4091:1 4097:1 4101:1 4119:2 4142:2 4146:1 4147:1 4157:1 4161:3 4162:1 4171:1 4179:3 4193:1 4201:2 4211:1 4223:1 4224:1 4226:4 4251:2 4279:1 4328:1 4334:1 4355:1 4359:1 4371:1 4375:2 4381:1 4383:1 4384:1 4395:1 4396:1 4402:2 4411:1 4412:1 4444:1 4448:1 4452:1 4459:1 4465:1 4474:1 4476:1 4479:1 4488:1 4492:1 4495:1 4517:2 4531:1 4539:1 4555:1 4564:1 4575:1 4580:1 4582:1 4601:1 4626:1 4643:3 4645:2 4646:1 4651:2 4654:2 4676:1 4712:1 4722:3 4724:1 4755:1 4762:1 4763:2 4767:2 4773:1 4779:1 4780:3 4795:1 4803:1 4809:1 4813:1 4815:2 4819:1 4820:2 4830:2 4843:1 4854:1 4855:1 4857:1 4859:1 4867:3 4882:1 4885:1 4886:1 4887:1 4914:1 4920:36 4922:2 4927:1 4931:1 4941:2 4947:1 4955:1 4985:1 4992:1 4993:1 5008:1 5013:1 5015:2 5019:4 5020:5 5032:2 5039:2 5047:1 5054:6 5058:7 5059:2 5075:1 5076:2 5077:1 5094:1 5117:1 5119:1 5125:1 5134:1 5149:1 5152:1 5153:2 5163:1 5170:3 5178:1 5190:1 5194:1 5232:1 5233:1 5235:1 5237:2 5240:1 5241:1 5247:1 5254:1 5263:1 5272:1 5282:1 5295:1 5298:1 5299:2 5300:1 5302:3 5307:1 5308:3 5324:1 5348:1 5364:1 5368:1 5371:3 5402:2 5404:1 5408:1 5411:1 5416:2 5428:1 5435:2 5437:36 5444:1 5453:2 5456:1 5459:5 5465:1 5470:1 5471:1 5473:1 5483:1 5486:1 5492:1 5555:2 5566:6 5587:1 5588:1 5598:1 5625:1 5638:3 5655:2 5662:3 5663:1 5672:2 5676:2 5679:1 5683:1 5685:1 5687:1 5712:1 5731:8 5738:2 5760:2 5802:1 5832:6 5843:4 5850:1 5869:1 5879:6 5885:1 5899:1 5913:1 5924:1 5929:1 5934:1 5948:1 5960:1 5967:5 5969:2 5973:2 5974:1 5980:1 5983:4 5995:1 6004:1 6005:3 6017:1 6041:1 6043:1 6049:1 6075:3 6078:2 6096:19 6097:2 6112:2 6115:1 6140:7 6149:2 6158:2 6173:1 6187:2 6191:1 6194:1 6207:1 6217:1 6253:4 6254:1 6257:5 6277:4 6278:4 6279:2 6282:1 6285:6 6291:1 6292:2 6293:4 6294:1 6303:1 6309:2 6312:5 6315:4 6316:1 6326:1 6334:1 6358:1 6382:1 6407:1 6411:2 6417:1 6430:1 6451:1 6473:1 6483:1 6495:1 6506:1 6528:1 6561:1 6580:1 6610:1 6622:1 6623:2 6628:1 6655:1 6679:1 6683:1 6684:1 6695:2 6698:2 6729:1 6738:3 6739:1 6759:2 6787:1 6799:1 6801:2 6803:1 6807:1 6832:1 6835:1 6843:2 6859:1 6861:1 6867:3 6870:1 6942:1 6956:1 6957:1 6961:1 6968:1 6970:1 6972:1 6982:2 6983:1 6986:1 6991:2 6996:1 7008:1 7010:1 7012:1 7036:2 7037:1 7038:2 7046:1 7051:1 7053:1 7061:2 7062:11 7065:1 7070:2 7072:1 7076:1 7083:1 7086:2 7119:2 7130:2 7138:1 7140:1 7164:2 7167:2 7198:1 7205:1 7213:1 7225:2 7243:1 7250:1 7252:2 7264:2 7289:11 7295:3 7334:1 7346:1 7366:1 7368:1 7377:1 7383:1 7394:1 7397:1 7421:1 7422:1 7423:2 7432:3 7434:1 7451:1 7455:1 7494:1 7496:1 7525:1 7532:1 7537:2 7561:2 7567:2 7580:3 7583:1 7589:1 7591:1 7599:1 7603:2 7604:4 7607:1 7608:1 7616:1 7618:1 7622:1 7625:1 7630:1 7635:1 7656:1 7665:1 7684:1 7690:1 7707:2 7708:2 7709:1 7715:1 7716:1 7718:1 7721:2 7722:1 7725:1 7727:1 7728:1 7729:3 7734:2 7736:2 7739:2 7741:3 7742:1 7748:1 7764:1 7782:2 7805:1 7822:5 7825:1 7840:1 7847:1 7852:4 7857:2 7860:1 7871:3 7880:1 7881:1 7895:1 7905:1 7937:2 7945:1 7965:1 7966:1 7972:1 7974:1 7989:8 7993:1 7995:1 8002:2 8004:5 8006:2 8007:1 8008:1 8009:2 8010:1 8014:5 8015:3 8016:1 8017:1 8019:4 8020:9 8021:1 8022:1 8030:1 8034:1 8054:1 8077:1 8082:1 8085:2 8086:1 8125:1 8136:1 8143:1 8176:1 8185:2 8186:1 8200:3 8203:3 8224:1 8243:2 8257:1 8260:1 8284:1 8293:1 8295:1 8297:1 8308:1 8315:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:2 8349:1 8366:1 8370:2 8377:1 8393:2 8421:1 8427:1 8446:1 8449:1 8481:1 8489:1 8493:1 8496:1 8501:3 8524:3 8545:1 8564:2 8566:1 8570:1 8577:1 8597:1 8602:2 8617:1 8641:1 8648:1 8654:1 8661:1 8691:1 8693:1 8695:2 8709:1 8714:2 8731:1 8738:1 8751:1 8772:1 8841:1 8842:1 8845:1 8849:1 8854:5 8866:1 8869:1 8880:1 8883:6 8905:1 8940:1 8943:1 8946:1 8955:1 8960:1 8966:2 8969:1 8975:1 8978:2 8996:1 9007:1 9012:2 9026:1 9033:1 9052:3 9060:1 9090:1 9113:1 9122:1 9123:2 9126:1 9134:1 9138:1 9143:1 9146:1 9149:1 9153:1 9160:1 9194:1 9197:1 9205:1 9216:1 9217:2 9231:1 9247:1 9253:1 9278:1 9282:2 9306:1 9307:1 9325:1 9328:1 9333:1 9337:1 9338:6 9372:9 9374:1 9381:1 9394:1 9426:1 9428:2 9433:1 9437:1 9442:1 9446:1 9470:2 9484:1 9492:1 9495:1 9499:1 9526:4 9529:1 9533:1 9577:1 9586:1 9588:1 9612:3 9619:1 9623:1 9628:13 9629:13 9637:1 9654:1 9655:1 9656:1 9657:5 9661:1 9688:3 9694:4 9695:1 9702:56 9707:1 9708:1 9711:2 9719:1 9720:1 9723:1 9733:19 9738:6 9744:1 9750:1 9754:1 9758:1 9761:1 9778:1 9780:1 9781:4 9787:2 9793:2 9803:1 9813:1 9849:6 9866:2 9870:1 9877:1 9885:1 9895:1 9924:1 9926:2 9942:3 9957:1 9963:1 9967:4 9968:1 9975:1 9978:1 9999:6 10011:1 10023:1 10058:1 10063:2 10079:2 10099:2 10103:1 10161:1 10167:1 10171:1 10175:2 10209:1 10213:1 10223:1 10230:1 10235:3 10242:1 10261:2 10284:2 10286:1 10287:1 10298:1 10313:1 10314:1 10321:36 10331:1 10333:1 10338:1 10340:1 10342:1 10349:1 10356:1 10358:1 10359:16 10360:4 10376:1 10378:2 10399:1 10401:1 10406:1 10407:1 10411:1 10412:2 10424:1 10431:1 10444:1 10452:1 10470:45 10488:1 10520:2 10529:1 10552:1 10559:1 10573:1 10598:1 10599:2 10612:1 10615:1 10624:1 10631:1 10669:1 10683:1 10686:2 10695:1 10697:1 10701:2 10703:1 10704:1 10706:1 10707:1 10711:1 10716:2 10717:5 10718:1 10736:1 10744:1 10749:2 10765:1 10772:3 10773:1 10777:1 10778:1 10789:2 10791:1 10792:2 10796:1 10798:1 10807:2 10808:2 10812:1 10813:1 10826:1 10831:1 10848:1 10849:1 10850:1 10864:1 10878:1 10884:1 10895:1 10900:2 10911:4 10937:1 10979:1 10991:1 10994:1 11002:2 11075:3 11078:1 11081:1 11109:2 11118:1 11129:1 11140:1 11163:2 11165:1 11169:1 11176:1 11179:1 11181:1 11183:2 11203:1 11207:1 11212:4 11226:1 11230:1 11231:1 11233:4 11238:1 11247:3 11258:1 11268:1 11270:1 11272:1 11311:1 11320:1 11325:1 11334:3 11340:1 11343:2 11347:2 11378:1 11382:6 11391:5 11402:1 11404:1 11412:2 11422:1 11457:1 11489:4 11522:3 11523:1 11524:1 11556:1 11557:4 11561:2 11564:1 11569:5 11571:3 11572:1 11573:1 11575:1 11583:2 11585:2 11587:2 11598:1 11609:1 11617:1 11619:1 11625:1 11628:1 11636:1 11640:1 11641:1 11642:2 11643:1 11645:1 11654:1 11668:1 11675:1 11678:3 11690:8 11694:2 11697:2 11707:2 11718:2 11720:1 11723:1 11739:3 11744:1 11745:1 11755:1 11770:1 11771:1 11774:2 11776:1 11791:1 11793:3 11795:2 11804:1 11815:1 11835:1 11838:1 11840:1 11848:1 11851:1 11861:1 11864:1 11865:2 11872:2 11876:2 11882:1 11885:1 11887:1 11888:2 11899:1 11902:1 11903:1 11910:1 11912:1 11917:1 11918:1 11919:11 11930:1 11931:2 11932:11 11936:1 11947:1 11955:1 11959:1 11961:3 11966:1 11969:1 11976:1 11978:1 11982:3 11985:1 11988:1 11992:1 12004:1 12014:1 12031:1 12033:1 12046:1 12052:1 12056:1 12057:1 12073:1 12076:2 12078:1 12081:1 12082:1 12083:2 12086:1 12096:1 12104:1 12111:1 12112:1 12113:1 12120:1 12131:2 12146:1 12147:1 12186:1 12191:1 12214:1 12221:6 12229:1 12230:1 12231:1 12237:3 12239:4 12248:1 12254:1 12255:1 12263:1 12269:1 12275:1 12282:1 12301:1 12324:2 12339:1 12359:1 12361:1 12391:36 12394:1 12398:1 12401:1 12407:1 12420:1 12428:1 12435:2 12446:1 12451:1 12453:1 12458:1 12471:1 12473:1 12479:2 12490:2 12493:1 12497:1 12508:1 12520:1 12521:1 12532:1 12538:1 12540:5 12547:3 12552:1 12561:2 12570:2 12580:1 12592:1 12607:1 12608:1 12618:2 12619:2 12630:2 12636:1 12641:1 12643:2 12651:2 12654:2 12669:5 12673:5 12684:1 12689:1 12692:3 12694:1 12734:5 12756:1 12757:1 12760:2 12774:1 12777:1 12794:1 12808:1 12821:1 12824:3 12829:1 12837:1 12844:1 12848:1 12850:1 12867:7 12879:1 12881:1 12898:1 12936:1 12956:1 12958:1 12977:2 12981:1 12987:1 12988:1 13013:5 13028:1 13040:2 13049:1 13051:1 13052:2 13058:1 13078:1 13079:1 13080:1 13089:1 13096:1 13112:2 13113:8 13122:1 13128:1 13154:3 13175:1 13179:1 13187:1 13213:1 13234:1 13241:1 13258:4 13267:1 13282:1 13283:5 13297:1 13303:1 13316:1 13325:2 13357:3 13377:1 13384:1 13385:2 13411:1 13412:5 13415:1 13418:2 13420:8 13429:1 13443:1 13454:1 13457:1 13464:2 13468:1 13471:1 13472:1 13474:1 13481:1 13483:2 13487:1 13493:7 13498:1 13505:1 13509:1 13516:1 13517:2 13523:1 13537:1 13550:1 13567:1 13568:1 13588:1 13601:1 13632:11 13633:1 13647:1 13648:1 13657:1 13669:3 13673:1 13682:1 13686:3 13690:3 13694:3 13704:1 13710:1 13721:5 13729:1 13737:1 13749:1 13761:2 13765:2 13767:1 13768:1 13777:1 13793:1 13798:9 13803:1 13808:1 13823:1 13824:3 13826:4 13828:1 13837:1 13845:2 13849:1 13859:1 13880:1 13881:1 13891:6 13895:1 13897:1 13898:1 13900:1 13901:1 13910:2 13919:1 13921:2 13931:1 13942:1 13956:1 13972:3 13996:1 13998:1 14008:1 14009:1 14015:1 14017:1 14029:1 14032:3 14036:1 14042:1 14070:2 14071:2 14092:1 14093:2 14095:2 14105:2 14107:1 14114:1 14115:1 14116:4 14119:1 14122:2 14124:1 14128:1 14134:1 14145:2 14146:5 14149:1 14152:1 14154:1 14162:1 14186:1 14189:3 14191:1 14192:1 14218:1 14228:1 14235:5 14263:1 14265:1 14280:1 14286:2 14291:1 14292:1 14296:1 14302:1 14308:1 14309:1 14322:10 14337:2 14340:2 14342:1 14376:1 14380:1 14404:1 14406:1 14410:1 14411:1 14416:1 14430:1 14448:2 14462:1 14464:2 14488:1 14491:6 14515:1 14517:1 14519:1 14523:1 14528:1 14533:3 14549:1 14550:1 14554:2 14555:1 14559:1 14564:1 14567:6 14568:4 14571:2 14577:1 14580:5 14586:1 14611:1 14614:1 14621:2 14628:1 14632:2 14636:1 14638:9 14642:1 14643:1 14654:1 14666:1 14667:1 14675:2 14686:1 14689:1 14716:1 14727:3 14735:1 14737:1 14742:4 14744:1 14772:3 14787:1 14791:3 14803:1 14835:1 14840:1 14844:1 14854:1 14869:1 14870:1 14910:1 14913:1 14940:1 14941:2 14960:1 14984:1 15012:1 15014:1 15030:1 15037:3 15039:1 15046:1 15060:4 15079:1 15083:1 15086:1 15095:1 15123:1 15132:1 15139:1 15140:1 15144:1 15150:2 15151:1 15152:3 15160:1 15161:6 15162:1 15166:1 15169:1 15178:1 15185:1 15197:1 15205:1 15210:1 15220:1 15222:1 15250:1 15269:1 15278:1 15292:1 15312:3 15315:5 15326:1 15345:1 15383:1 15385:2 15400:1 15414:2 15448:1 15460:1 15472:1 15487:1 15502:3 15519:1 15525:1 15526:1 15552:1 15574:1 15577:1 15584:2 15587:1 15595:1 15598:1 15675:1 15696:1 15705:1 15707:1 15746:1 15747:1 15776:3 15778:37 15782:1 15786:1 15794:1 15797:1 15800:5 15803:1 15813:1 15826:1 15844:6 15855:1 15864:2 15868:1 15871:1 15885:1 15895:1 15900:1 15910:1 15912:1 15913:1 15915:1 15942:2 15943:1 15944:2 15981:1 15989:1 16001:1 16006:2 16008:1 16013:1 16017:1 16022:1 16083:1 16092:1 16099:3 16114:1 16134:1 16142:2 16147:1 16149:1 16173:1 16190:1 16196:1 16198:1 16201:1 16213:1 16217:1 16236:1 16241:1 16253:1 16268:1 16269:1 16285:1 16289:1 16293:1 16294:1 16299:1 16303:1 16304:1 16320:1 16327:12 16332:4 16336:3 16354:1 16357:1 16365:2 16372:1 16375:1 16393:1 16394:1 16456:1 16460:1 16475:1 16490:1 16499:1 16502:2 16505:2 16510:6 16515:1 16516:6 16528:1 16535:1 16559:1 16561:1 16594:1 16609:14 16613:1 16622:1 16643:1 16661:1 16676:1 16706:1 16720:1 16729:1 16731:1 16732:2 16742:1 16775:1 16792:3 16797:4 16803:3 16823:1 16831:1 16835:2 16837:1 16843:1 16854:1 16862:1 16869:2 16874:2 16882:1 16889:1 16897:1 16898:1 16914:3 16918:1 16929:2 16964:1 16968:2 16970:3 16971:1 16973:1 16975:1 16977:2 16978:1 16979:12 16980:1 16981:1 16983:2 17002:1 17003:2 17004:1 17007:1 17008:1 17009:1 17011:1 17013:6 17022:1 17026:1 17031:1 17033:2 17064:1 17075:1 17076:1 17082:1 17100:1 17114:1 17120:1 17125:1 17152:1 17154:1 17156:1 17161:2 17172:10 17175:1 17181:2 17193:1 17204:1 17214:1 17217:1 17230:1 17234:1 17243:1 17246:1 17273:1 17276:1 17278:2 17286:5 17303:1 17309:1 17315:3 17319:1 17320:2 17333:13 17336:8 17378:1 17417:2 17425:1 17426:5 17436:2 17438:1 17449:4 17450:1 17481:1 17513:1 17516:1 17545:1 17547:3 17562:1 17564:2 17571:1 17598:1 17601:1 17607:2 17623:1 17629:1 17636:1 17639:1 17675:4 17679:1 17716:1 17723:1 17734:1 17762:1 17769:1 17784:2 17792:2 17794:1 17798:1 17806:2 17813:2 17814:2 17817:3 17819:1 17829:1 17835:2 17836:1 17849:1 17850:2 17858:2 17869:1 17884:1 17903:1 17918:1 17921:1 17924:1 17925:2 17929:1 17941:1 17942:2 17943:1 17945:1 17955:2 17957:2 17972:1 17976:1 17978:2 17981:1 17984:1 17992:1 17993:1 17994:1 17997:1 17998:1 17999:1 18000:1 18005:1 18011:1 18013:1 18016:2 18030:1 18032:1 18037:2 18039:1 18048:1 18057:2 18058:1 18073:1 18080:1 18092:37 18094:1 18101:3 18105:1 18106:1 18110:1 18120:1 18127:1 18128:1 18137:1 18184:1 18198:1 18200:1 18203:5 18204:1 18214:1 18215:1 18221:2 18244:1 18249:1 18270:3 18274:1 18276:1 18277:1 18278:1 18290:1 18297:1 18298:1 18320:6 18325:1 18339:1 18342:1 18345:1 18348:1 18390:1 18392:1 18396:1 18442:1 18463:2 18470:2 18471:2 18474:1 18485:1 18506:1 18535:1 18549:1 18559:1 18560:1 18561:2 18563:2 18574:1 18582:1 18593:1 18600:2 18601:1 18603:1 18608:7 18614:1 18645:3 18651:1 18667:1 18673:1 18676:1 18677:1 18696:1 18703:1 18708:3 18710:1 18712:1 18715:1 18732:1 18747:1 18752:1 18767:2 18769:1 18779:2 18781:3 18793:1 18794:1 18811:1 18823:2 18855:1 18867:1 18870:1 18876:2 18898:2 18899:1 18928:1 18953:3 18954:1 18959:1 18968:1 18978:1 18989:1 18993:3 18997:1 19019:1 19027:1 19029:1 19050:1 19060:1 19064:2 19067:1 19083:1 19087:2 19090:1 19096:1 19097:1 19120:2 19141:1 19154:1 19169:1 19175:1 19191:1 19192:3 19193:4 19204:1 19225:1 19235:2 19263:6 19269:2 19276:1 19287:1 19303:1 19310:1 19336:1 19361:1 19397:1 19404:1 19406:1 19416:1 19424:1 19428:1 19435:1 19437:3 19450:1 19452:1 19458:4 19469:1 19471:1 19475:1 19484:1 19489:1 19490:5 19496:3 19500:2 19513:4 19514:1 19518:1 19525:1 19526:1 19529:1 19532:1 19538:3 19548:1 19567:1 19598:1 19602:1 19605:1 19615:5 19616:1 19620:2 19641:2 19645:4 19649:2 19655:1 19658:1 19664:1 19670:1 19672:1 19679:1 19689:1 19691:3 19703:1 19708:5 19724:1 19766:1 19772:1 19775:1 19787:1 19796:1 19806:1 19810:15 19814:2 19815:1 19820:1 19851:4 19854:3 19858:1 19865:2 19868:2 19876:1 19894:2 19901:1 19904:3 19905:2 19907:1 19908:2 19932:12 19947:1 19956:1 19960:1 19961:1 19967:1 19976:4 20027:3 20034:1 20046:2 20061:1 20065:1 20074:1 20076:1 20078:1 20090:1 20091:2 20109:4 20110:2 20111:1 20115:4 20117:1 20124:1 20125:3 20126:1 20127:2 20130:1 20153:1 20168:1 20174:2 20201:2 20211:1 20221:1 20231:1 20232:1 20237:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20295:1 20296:1 20318:1 20324:1 20325:1 20350:1 20355:1 20369:2 20383:1 20390:2 20431:1 20444:1 20445:1 20446:2 20455:1 20499:1 20522:1 20537:1 20540:2 20556:2 20566:1 20568:1 20572:1 20588:4 20593:1 20604:1 20606:11 20607:1 20608:1 20617:1 20643:1 20646:1 20649:1 20654:1 20679:2 20680:3 20683:1 20689:1 20690:1 20691:2 20723:1 20727:1 20741:1 20746:1 20751:3 20754:1 20762:2 20781:2 20783:1 20785:3 20796:1 20799:2 20816:1 20818:1 20865:1 20878:1 20885:1 20900:1 20917:1 20918:2 20930:1 20936:1 20941:49 20948:1 20949:2 20966:1 20974:1 20978:1 20980:1 20997:1 21000:1 21003:4 21044:1 21064:1 21071:1 21072:1 21081:1 21083:1 21097:1 21101:1 21116:1 21124:3 21130:2 21145:2 21149:1 21155:1 21170:1 21174:2 21204:1 21209:1 21214:1 21215:1 21235:1 21243:1 21261:1 21263:1 21284:1 21292:1 21299:1 21316:1 21318:2 21322:2 21323:1 21324:1 21337:1 21355:1 21371:1 21376:1 21423:1 21443:1 21445:1 21460:1 21473:1 21477:1 21488:1 21500:1 21503:1 21508:1 21512:1 21513:1 21518:1 21522:2 21524:1 21530:1 21540:1 21566:1 21586:2 21591:2 21592:1 21593:1 21597:1 21602:1 21603:1 21608:2 21612:2 21634:1 21643:1 21686:2 21696:1 21701:1 21704:2 21713:2 21724:1 21754:1 21769:1 21788:1 21792:1 21806:1 21809:1 21819:1 21822:1 21823:4 21827:1 21829:2 21831:1 21843:1 21864:1 21866:1 21872:2 21874:2 21875:2 21886:1 21892:1 21899:1 21917:2 21925:1 21939:3 21943:2 21975:4 21976:1 21987:5 21996:1 22008:4 22009:1 22019:1 22032:1 22037:1 22067:2 22076:1 22079:8 22083:1 22084:2 22123:3 22130:1 22143:2 22169:1 22173:1 22177:2 22181:1 22186:2 22190:1 22207:1 22247:1 22251:2 22298:1 22300:4 22304:2 22305:2 22308:1 22315:1 22327:1 22345:2 22347:2 22361:1 22362:1 22386:1 22388:2 22391:1 22406:1 22424:1 22429:5 22437:1 22490:1 22493:2 22497:1 22516:1 22530:2 22547:1 22572:1 22581:1 22584:1 22628:9 22643:2 22650:1 22666:1 22668:1 22677:2 22715:1 22720:1 22727:4 22737:1 22754:1 22762:1 22764:1 22781:1 22783:1 22791:2 22800:1 22806:2 22809:1 22816:1 22824:1 22839:1 22853:1 22866:1 22870:1 22883:2404 22893:2 22899:1 22909:2 22923:1 22944:1 22966:1 22969:1 22971:1 22981:1 22984:1 23008:1 23031:3 23039:1 23043:3 23044:1 23079:1 23082:1 23098:1 23113:1 23119:1 23129:2 23139:2 23147:1 23164:1 23171:1 23173:1 23189:1 23193:2 23194:1 23202:1 23223:1 23224:1 23270:1 23279:1 23293:2 23304:1 23320:1 23321:1 23348:1 23365:2 23371:1 23411:1 23427:1 23438:1 23456:1 23457:1 23468:2 23470:1 23474:1 23482:1 23492:1 23505:1 23508:1 23509:1 23520:1 23521:3 23523:2 23543:1 23549:1 23560:1 23565:1 23603:1 23607:6 23640:5 23647:1 23653:1 23658:2 23664:2 23698:1 23705:1 23706:1 23708:1 23712:1 23715:1 23718:1 23735:1 23763:1 23766:1 23773:2 23784:1 23787:1 23789:1 23800:1 23805:1 23812:1 23821:1 23833:8 23834:4 23874:1 23880:5 23900:1 23914:2 23922:1 23932:1 23934:1 23947:23 23958:1 23978:1 23979:2 24012:2 24013:1 24017:1 24019:1 24020:1 24021:2 24044:1 24047:4 24049:1 24051:1 24052:2 24064:2 24066:1 24079:1 24092:1 24097:2 24105:3 24106:1 24118:1 24128:1 24154:2 24176:1 24185:1 24191:1 24197:1 24201:1 24205:1 24209:4 24217:2 24233:1 24239:3 24240:1 24255:1 24268:1 24271:1 24275:1 24289:2 24292:1 24306:1 24314:2 24322:1 24327:1 24332:1 24342:1 24345:2 24347:1 24364:1 24369:1 24376:4 24385:1 24405:1 24424:1 24444:1 24449:1 24450:1 24452:1 24474:1 24479:1 24480:3 24482:2 24483:1 24491:1 24511:1 24518:2 24534:1 24539:2 24553:1 24566:1 24591:3 24592:8 24598:1 24601:1 24604:1 24607:1 24612:1 24620:1 24630:2 24640:1 24643:1 24651:2 24653:2 24656:3 24658:7 24663:1 24674:1 24680:2 24681:6 24682:1 24683:1 24699:1 24700:1 24704:1 24708:5 24728:3 24729:1 24753:2 24754:1 24762:3 24774:1 24777:1 24781:6 24792:1 24794:1 24808:3 24813:1 24820:1 24826:2 24850:1 24853:1 24869:1 24882:1 24883:5 24894:2 24918:1 24919:1 24924:1 24945:1 24950:1 24956:1 24978:1 25000:1 25031:2 25041:1 25047:1 25052:1 25053:1 25058:1 25067:1 25076:1 25080:1 25114:6 25117:1 25122:1 25123:1 25143:1 25144:2 25157:1 25161:2 25163:1 25179:3 25194:1 25217:1 25225:1 25240:1 25244:1 25269:1 25285:1 25299:1 25300:3 25303:1 25326:1 25334:2 25351:1 25357:1 25369:2 25373:2 25379:1 25386:1 25392:1 25407:2 25410:3 25417:1 25423:1 25427:2 25428:1 25431:2 25448:1 25450:2 25456:1 25461:1 25468:1 25481:1 25486:1 25491:1 25498:2 25502:2 25505:1 25511:3 25526:1 25527:1 25529:1 25541:1 25543:1 25553:2 25554:2 25568:1 25572:1 25577:1 25580:2 25582:2 25586:1 25590:4 25600:2 25602:1 25605:1 25608:3 25609:2 25623:2 25630:1 25632:1 25637:4 25655:1 25690:1 25699:1 25720:1 25721:5 25725:1 25733:2 25738:1 25781:1 25782:1 25786:2 25793:3 25807:1 25811:1 25815:1 25824:2 25841:1 25846:1 25848:1 25852:1 25859:2 25867:1 25879:1 25903:1 25907:1 25917:1 25922:1 25928:1 25934:1 25943:1 25948:1 25952:1 25973:1 25994:1 26000:1 26005:1 26011:2 26014:1 26018:5 26031:2 26044:1 26052:1 26062:3 26070:1 26091:1 26099:1 26102:2 26107:1 26119:1 26120:1 26124:1 26138:1 26148:1 26151:1 26153:1 26155:1 26156:4 26162:1 26167:1 26178:1 26183:2 26191:1 26203:2 26204:1 26211:1 26212:1 26213:1 26214:1 26215:2 26216:2 26226:1 26228:2 26236:2 26260:1 26261:1 26275:1 26278:1 26279:1 26285:2 26288:1 26306:1 26313:1 26322:1 26324:2 26327:2 26337:4 26342:1 26344:1 26345:1 26346:1 26347:1 26348:1 26361:2 26362:2 26383:1 26385:4 26394:1 26395:1 26407:1 26415:1 26424:1 26425:1 26426:1 26438:3 26444:1 26453:4 26458:2 26459:1 26460:1 26475:1 26496:1 26505:1 26507:1 26508:8 26521:1 26552:1 26555:1 26589:2 26590:1 26593:1 26602:8 26605:2 26608:1 26610:1 26612:5 26614:1 26628:3 26642:1 26644:1 26651:1 26667:1 26668:12 26671:1 26679:1 26694:1 26740:1 26743:1 26744:1 26776:1 26777:2 26779:4 26782:2 26787:1 26794:2 26795:1 26796:1 26797:2 26808:2 26809:2 26815:1 26818:1 26820:1 26826:7 26827:1 26828:4 26835:1 26842:1 26843:1 26844:1 26854:1 26874:1 26907:1 26914:1 26930:1 26949:3 26984:3 26995:2 26999:1 27004:4 27008:1 27029:2 27033:1 27051:1 27072:1 27087:3 27092:1 27097:1 27099:1 27102:1 27103:1 27114:1 27127:4 27138:1 27149:2 27153:2 27171:1 27183:1 27203:1 27213:2 27243:1 27251:2 27259:1 27260:15 27283:2 27287:2 27294:1 27319:1 27331:12 27333:2 27339:1 27343:1 27349:1 27354:1 27358:1 27365:1 27393:1 27396:4 27398:2 27401:1 27412:4 27415:2 27447:1 27460:7 27470:1 27478:2 27484:1 27490:1 27500:3 27501:1 27508:1 27522:1 27526:1 27527:1 27542:1 27544:2 27573:1 27591:1 27594:1 27599:1 27601:1 27603:2 27619:10 27633:3 27651:1 27653:1 27677:3 27703:1 27723:1 27731:1 27752:1 27760:1 27767:1 27776:1 27779:1 27782:1 27787:36 27804:1 27808:1 27810:3 27813:3 27814:1 27816:1 27817:2 27819:1 27820:1 27825:1 27854:2 27859:3 27860:1 27862:1 27866:1 27876:3 27878:1 27879:1 27889:1 27920:1 27922:1 27925:1 27957:1 27963:1 27966:1 27973:6 27974:1 27983:1 27987:3 28000:2 28007:1 28011:4 28017:1 28038:1 28051:1 28052:1 28081:1 28098:1 28154:1 28160:3 28179:3 28191:1 28194:1 28206:1 28263:1 28276:1 28278:1 28279:1 28287:1 28297:1 28298:3 28303:1 28308:1 28310:1 28313:3 28316:1 28317:1 28318:2 28325:1 28348:1 28370:37 28384:1 28398:3 28399:1 28409:1 28433:1 28436:1 28443:1 28460:1 28464:1 28470:1 28472:2 28473:1 28482:2 28483:1 28489:6 28493:1 28512:1 28523:1 28528:1 28541:1 28543:1 28559:1 28560:1 28567:1 28572:1 28577:3 28582:2 28587:1 28593:1 28608:2 28612:1 28620:1 28621:1 28639:1 28645:1 28647:2 28650:2 28655:1 28686:2 28693:1 28719:1 28752:1 28757:1 28786:1 28788:1 28811:1 28812:1 28814:5 28815:1 28817:2 28826:1 28831:1 28833:1 28852:1 28899:1 28908:1 28913:1 28929:1 28932:1 28939:2 28940:1 28949:1 28958:1 28974:2 28983:2 28993:1 28996:2 29004:1 29014:1 29016:1 29020:1 29032:1 29041:3 29087:1 29123:1 29125:1 29126:1 29133:2 29141:1 29149:1 29150:1 29169:1 29170:3 29174:1 29179:1 29187:1 29190:7 29192:1 29196:1 29215:1 29233:1 29241:1 29251:1 29258:1 29271:1 29297:1 29302:1 29320:1 29328:1 29330:1 29333:1 29334:1 29363:1 29367:2 29398:1 29405:1 29410:1 29417:1 29419:3 29426:2 29451:1 29455:2 29464:1 29480:1 29486:2 29493:1 29516:2 29527:1 29551:1 29554:1 29557:7 29564:2 29566:1 29568:2 29583:2 29584:2 29587:3 29591:1 29592:1 29600:1 29604:1 29634:3 29635:1 29639:1 29671:1 29688:10 29695:1 29701:1 29715:1 29741:1 29749:1 29752:1 29756:2 29760:1 29761:1 29768:1 29775:1 29777:1 29797:2 29816:1 29822:1 29827:1 29840:1 29845:5 29857:1 29887:1 29888:1 29901:2 29911:1 29933:1 29939:1 29952:1 29954:1 29957:1 29962:3 29969:1 29972:1 29995:1 30004:1 30015:2 30023:1 30027:1 30035:1 30041:1 30079:3 30083:1 30084:2 30092:1 30093:1 30095:3 30099:5 30102:1 30103:1 30105:2 30119:1 30127:1 30134:1 30144:2 30165:3 30192:1 30198:2 30199:3 30213:1 30215:1 30219:1 30233:1 30235:2 30238:1 30241:1 30248:1 30253:2 30261:4 30263:1 30273:1 30279:1 30283:1 30284:1 30288:1 30290:1 30294:1 30295:1 30299:1 30307:1 30309:1 30319:1 30320:1 30326:1 30329:1 30330:1 30331:1 30332:1 30350:1 30361:1 30364:1 30370:1 30424:1 30434:3 30452:1 30454:1 30478:1 30482:3 30483:1 30489:1 30493:1 30518:1 30535:5 30537:2 30538:2 30541:1 30552:2 30553:1 30566:1 30588:1 30601:1 30613:1 30617:2 30641:2 30677:1 30679:1 30688:1 30690:1 30743:1 30748:1 30777:1 30783:2 30787:1 30788:1 30789:2 30790:6 30794:1 30806:1 30814:6 30817:3 30823:1 30853:1 30855:2 30857:2 30861:1 30907:1 30910:1 30912:2 30920:2 30931:1 30934:1 30944:2 30951:1 30952:1 30960:2 30963:1 30965:1 30970:1 30972:1 30981:4 30987:1 30992:1 31002:1 31005:1 31015:1 31020:1 31026:1 31047:1 31048:1 31051:4 31053:1 31054:1 31055:2 31057:1 31059:2 31072:1 31089:2 31092:1 31093:1 31095:1 31112:2 31123:1 31134:1 31142:1 31148:1 31151:1 31153:1 31168:3 31177:1 31178:1 31181:1 31188:1 31201:1 31210:1 31223:1 31226:1 31235:2 31254:1 31255:4 31264:4 31265:2 31276:1 31283:1 31286:1 31296:5 31311:1 31317:4 31319:1 31329:2 31334:4 31369:1 31376:1 31377:5 31384:1 31387:1 31404:1 31411:1 31413:14 31425:2 31444:2 31465:2 31478:1 31486:1 31494:1 31543:1 31550:1 31563:1 31569:1 31574:2 31578:3 31580:1 31588:1 31595:1 31601:1 31603:2 31610:1 31612:1 31641:3 31648:1 31660:3 31663:1 31701:1 31706:1 31708:1 31712:1 31725:1 31737:1 31747:1 31751:1 31752:1 31753:2 31757:1 31767:1 31768:1 31784:1 31785:1 31787:1 31797:1 31805:1 31808:2 31834:3 31848:1 31853:1 31866:2 31874:1 31882:1 31885:1 31890:1 31891:1 31893:2 31918:1 31919:1 31929:1 31930:4 31933:2 31946:2 31963:2 31964:1 31968:11 31969:1 31972:1 31983:1 31993:3 32010:1 32013:1 32022:1 32025:1 32036:1 32057:1 32066:5 32074:1 32085:1 32090:1 32098:1 32099:1 32106:1 32112:1 32115:1 32117:1 32136:1 32140:2 32141:1 32153:1 32208:1 32219:2 32234:1 32259:2 32261:1 32269:1 32285:3 32307:1 32311:1 32317:1 32319:1 32326:1 32329:1 32334:1 32376:3 32405:1 32406:4 32413:1 32425:1 32436:1 32459:1 32461:2 32491:1 32492:1 32493:2 32505:2 32515:2 32532:1 32538:1 32553:2 32555:1 32559:1 32574:1 32596:1 32597:1 32606:1 32612:1 32624:1 32629:1 32636:1 32682:1 32683:2 32691:1 32700:1 32725:2 32726:2 32732:1 32745:1 32749:2 32750:6 32774:3 32779:1 32785:2 32787:1 32801:4 32813:1 32820:1 32832:4 32841:1 32846:1 32848:2 32879:1 32887:2 32890:7 32891:1 32893:1 32896:2 32908:1 32909:1 32913:1 32917:2 32924:1 32929:3 32941:3 32950:2 32955:1 32958:1 32965:1 32970:1 32974:1 32984:1 32997:1 33027:1 33031:1 33053:1 33057:2 33066:1 33069:2 33074:1 33080:2 33085:1 33089:1 33092:1 33094:3 33098:1 33100:1 33112:1 33118:1 33128:5 33133:5 33137:1 33141:2 33142:2 33144:2 33157:2 33168:1 33180:1 33182:1 33183:2 33189:1 33218:2 33219:1 33222:1 33231:1 33241:1 33272:1 33276:2 33284:1 33287:1 33296:3 33297:1 33309:2 33330:1 33333:1 33335:1 33346:1 33352:9 33388:1 33389:1 33404:1 33413:1 33422:1 33428:2 33439:1 33440:1 33444:3 33446:1 33449:1 33461:3 33467:1 33498:1 33502:2 33503:1 33504:1 33505:3 33512:1 33530:1 33533:5 33534:1 33537:2 33543:3 33545:1 33549:1 33552:1 33553:2 33555:1 33556:2 33563:3 33579:2 33591:3 33592:1 33595:3 33609:1 33616:1 33620:1 33623:1 33637:1 33663:8 33669:1 33680:4 33716:1 33720:1 33730:1 33732:1 33734:3 33738:1 33743:3 33760:1 33766:1 33769:1 33771:1 33772:1 33794:2 33795:2 33819:1 33820:1 33824:1 33861:1 33865:1 33880:2 33902:1 33910:1 33921:1 33928:1 33930:1 33989:1 33997:1 34003:1 34040:1 34049:1 34052:1 34056:3 34057:2 34062:2 34063:1 34067:5 34071:3 34075:7 34076:1 34077:2 34080:1 34083:1 34085:3 34086:1 34099:1 34104:1 34133:1 34139:1 34144:1 34151:3 34157:1 34159:1 34160:1 34164:1 34172:1 34174:1 34194:1 34197:1 34204:1 34221:2 34246:2 34253:1 34283:5 34304:1 34306:1 34314:1 34321:2 34322:1 34335:1 34351:1 34353:1 34363:1 34364:1 34367:1 34371:1 34373:1 34385:2 34403:1 34407:1 34410:1 34413:3 34423:1 34435:15 34437:2 34440:1 34445:1 34455:1 34470:1 34478:6 34496:1 34497:6 34526:1 34566:1 34570:1 34586:1 34589:1 34596:4 34615:1 34619:1 34627:1 34629:1 34630:2 34634:12 34643:3 34654:1 34659:1 34662:1 34673:2 34674:1 34682:1 34689:1 34691:14 34701:2 34749:1 34757:2 34761:2 34771:1 34782:1 34794:1 34796:1 34804:2 34834:1 34862:1 34878:2 34924:2 34936:1 34957:1 34961:1 34968:1 34989:1 34996:45 34997:1 35022:1 35026:5 35031:2 35039:2 35041:5 35042:2 35043:1 35055:1 35056:1 35094:1 35098:1 35124:4 35128:13 35129:1 35135:2 35141:1 35149:1 35152:2 35157:1 35164:1 35167:1 35177:1 35184:1 35201:1 35207:2 35217:1 35253:1 35265:1 35281:2 35289:2 35310:2 35311:1 35326:1 35342:1 35347:1 35354:5 35382:2 35395:5 35410:1 35456:1 35464:3 35468:1 35470:1 35473:1 35488:1 35499:1 35503:2 35517:2 35520:1 35526:2 35529:1 35539:1 35582:1 35585:1 35589:2 35592:1 35602:2 35614:1 35625:3 35634:1 35635:1 35636:3 35648:1 35656:1 35661:1 35664:1 35665:1 35677:1 35681:2 35692:1 35696:1 35700:1 35714:1 35719:1 35721:1 35731:1 35734:1 35746:1 35748:10 35749:1 35753:2 35757:3 35785:1 35789:3 35805:6 35811:1 35831:4 35836:1 35837:2 35838:2 35845:2 35850:37 35862:2 35888:2 35901:1 35919:1 35925:1 35927:1 35939:1 35953:1 35957:1 35959:2 35964:2 35965:2 35966:5 35967:1 35989:1 35996:1 36007:1 36010:2 36011:1 36028:2 36033:2 36045:1 36051:1 36059:1 36065:1 36072:1 36075:2 36091:1 2 9:1 10:1 19:1 31:2 32:1 33:1 51:1 55:1 65:1 68:1 69:1 73:1 76:1 86:1 95:1 104:3 106:2 107:1 122:1 128:1 140:1 166:2 176:1 177:1 184:1 191:2 196:2 200:2 202:1 207:1 211:1 221:1 224:1 226:1 235:1 239:2 251:1 255:1 256:1 271:1 278:2 297:3 302:5 303:1 309:2 322:2 323:1 328:1 330:2 365:2 372:1 412:1 414:4 418:1 433:1 435:2 442:1 446:1 450:1 452:1 454:1 460:1 461:1 478:2 498:2 503:2 515:1 520:2 526:1 539:1 541:1 549:1 553:1 555:2 568:2 583:2 600:1 601:4 607:1 610:1 621:1 626:1 641:2 650:2 659:1 662:1 671:1 672:1 674:1 684:1 690:1 691:1 705:1 720:1 750:1 751:3 755:2 759:2 761:1 766:1 781:1 787:1 795:6 820:38 821:1 825:4 831:1 833:1 835:1 854:1 861:1 881:1 886:3 889:3 919:2 931:1 935:2 941:2 955:3 964:1 999:2 1019:2 1022:1 1024:3 1028:2 1032:1 1034:2 1035:3 1058:1 1082:3 1091:1 1102:3 1110:1 1115:1 1124:1 1128:1 1135:3 1136:7 1140:3 1142:1 1150:5 1167:1 1176:5 1181:1 1194:2 1203:4 1206:10 1210:1 1212:3 1219:1 1226:2 1233:2 1234:3 1253:2 1256:1 1260:2 1270:3 1293:1 1301:3 1305:1 1308:1 1322:1 1326:4 1327:1 1330:1 1377:1 1385:2 1386:1 1391:1 1397:1 1403:1 1431:1 1442:1 1454:1 1459:3 1479:1 1506:1 1510:1 1537:1 1541:37 1550:2 1554:2 1555:2 1556:1 1564:4 1567:1 1583:1 1592:2 1595:2 1596:2 1603:1 1605:1 1610:1 1611:1 1613:1 1616:2 1617:4 1619:1 1623:1 1626:1 1627:1 1632:1 1634:1 1638:1 1651:1 1652:2 1682:2 1705:2 1706:2 1707:1 1740:4 1755:1 1757:1 1760:1 1763:1 1765:1 1771:2 1773:11 1792:1 1808:1 1809:1 1824:1 1836:3 1840:1 1843:1 1847:1 1849:2 1861:1 1870:1 1880:1 1888:1 1889:1 1891:4 1895:2 1897:17 1899:1 1903:1 1904:1 1910:1 1911:1 1915:1 1916:1 1918:1 1925:1 1929:2 1930:1 1932:1 1959:1 1960:3 1970:2 1990:1 1991:1 1997:6 2013:1 2014:1 2031:1 2036:1 2037:2 2043:1 2058:3 2067:1 2088:1 2095:1 2097:1 2098:11 2102:1 2104:1 2105:1 2106:2 2123:1 2139:1 2145:1 2147:1 2158:2 2160:1 2164:3 2172:1 2175:1 2180:1 2196:1 2198:1 2199:1 2202:1 2207:1 2218:1 2249:1 2260:1 2265:1 2269:1 2276:1 2279:1 2282:1 2292:1 2307:1 2312:1 2317:3 2320:2 2327:1 2328:1 2342:1 2345:1 2348:1 2352:3 2355:1 2364:1 2368:1 2372:1 2376:2 2379:3 2390:1 2400:2 2406:2 2418:2 2420:1 2433:1 2436:1 2438:1 2442:1 2446:1 2449:1 2451:1 2454:1 2455:2 2462:1 2467:1 2474:1 2486:8 2494:1 2508:1 2517:1 2522:2 2525:1 2546:1 2547:1 2557:1 2566:2 2595:1 2596:1 2598:1 2599:2 2604:1 2607:1 2619:1 2624:1 2638:2 2639:1 2640:1 2642:1 2644:1 2652:1 2655:1 2665:1 2676:1 2696:10 2721:1 2743:3 2746:1 2747:1 2783:1 2789:2 2817:1 2827:1 2848:1 2852:1 2857:1 2859:2 2861:2 2862:4 2865:3 2866:2 2867:3 2870:1 2872:5 2873:1 2877:9 2881:5 2883:7 2887:5 2891:1 2892:3 2893:1 2895:1 2897:1 2900:1 2902:4 2906:4 2909:1 2910:1 2913:1 2918:1 2919:1 2920:1 2941:1 2942:1 2946:1 2954:3 2955:1 2971:5 2974:1 2980:1 2999:2 3002:1 3004:1 3026:2 3027:1 3035:1 3038:1 3042:1 3044:4 3045:4 3051:1 3054:4 3057:1 3061:1 3075:2 3076:4 3086:4 3087:1 3098:1 3100:1 3106:1 3116:4 3131:1 3132:1 3133:1 3137:1 3145:1 3165:1 3176:2 3177:2 3179:1 3186:1 3191:1 3199:1 3206:1 3218:1 3222:1 3224:2 3240:1 3244:1 3255:2 3265:1 3266:1 3267:1 3312:1 3319:1 3322:2 3331:1 3341:2 3348:3 3358:1 3359:2 3366:1 3367:1 3371:1 3380:3 3381:1 3388:4 3389:1 3406:1 3410:1 3413:3 3415:4 3420:1 3423:3 3429:1 3443:1 3451:1 3454:1 3493:1 3497:3 3507:5 3510:5 3511:1 3516:1 3520:4 3539:2 3547:1 3560:1 3584:2 3590:1 3601:1 3603:2 3608:1 3612:2 3623:1 3645:17 3648:38 3651:1 3652:3 3653:1 3663:2 3666:2 3667:1 3678:1 3681:2 3682:1 3691:4 3692:1 3695:1 3698:1 3706:8 3736:4 3741:2 3745:1 3753:1 3756:1 3766:1 3784:2 3789:1 3792:1 3793:1 3794:1 3836:2 3843:1 3846:3 3851:1 3860:1 3867:1 3897:3 3926:2 3958:1 3962:1 4034:1 4045:1 4067:4 4070:1 4091:1 4097:1 4101:1 4119:2 4142:2 4146:1 4147:2 4157:1 4161:3 4162:1 4171:1 4179:3 4193:1 4201:2 4211:1 4223:1 4224:1 4226:4 4251:2 4279:1 4328:1 4334:1 4355:1 4359:1 4371:1 4375:2 4381:1 4383:1 4384:1 4395:1 4396:1 4402:2 4411:1 4412:1 4417:1 4444:1 4448:1 4452:1 4459:1 4465:1 4474:1 4476:1 4479:1 4488:1 4492:1 4495:1 4517:2 4531:1 4539:1 4555:1 4564:1 4575:1 4580:1 4582:1 4601:1 4626:1 4643:3 4645:2 4646:1 4651:2 4654:2 4676:1 4712:1 4722:3 4724:1 4755:1 4762:1 4763:2 4767:2 4773:1 4779:1 4780:3 4795:1 4803:1 4809:1 4813:1 4815:2 4819:1 4820:2 4830:2 4843:1 4854:1 4855:2 4857:1 4859:1 4867:3 4882:1 4885:1 4886:1 4887:1 4895:1 4914:1 4920:37 4922:2 4927:1 4931:1 4941:2 4947:1 4955:1 4985:1 4992:1 4993:1 5008:1 5013:1 5015:2 5019:4 5020:6 5032:2 5039:2 5047:1 5054:6 5058:7 5059:2 5075:1 5076:2 5077:1 5094:1 5117:1 5119:1 5125:1 5134:1 5149:1 5152:1 5153:2 5163:1 5170:3 5178:1 5190:1 5194:1 5232:1 5233:1 5235:2 5237:2 5240:1 5241:1 5247:1 5254:1 5263:1 5272:1 5282:1 5295:1 5298:1 5299:2 5300:1 5302:4 5307:1 5308:3 5324:1 5348:1 5364:1 5368:1 5371:3 5402:2 5404:1 5408:1 5411:1 5416:2 5428:1 5435:2 5437:37 5444:1 5453:2 5456:1 5459:5 5465:1 5470:1 5471:1 5473:1 5483:1 5486:1 5492:1 5516:1 5555:2 5566:6 5587:1 5588:1 5598:1 5625:1 5638:3 5655:2 5662:3 5663:1 5672:2 5676:2 5679:1 5683:1 5685:1 5687:1 5712:1 5731:8 5738:2 5760:2 5802:1 5832:6 5843:4 5850:1 5869:1 5879:6 5885:1 5899:1 5913:1 5924:1 5929:1 5934:1 5948:1 5960:1 5967:5 5969:2 5973:2 5974:1 5980:1 5983:4 5995:1 6004:1 6005:3 6017:1 6041:1 6043:1 6049:1 6075:3 6078:2 6096:20 6097:2 6112:2 6115:1 6140:8 6149:2 6158:2 6173:1 6187:2 6191:1 6194:1 6207:1 6217:1 6253:4 6254:1 6257:5 6277:4 6278:5 6279:2 6282:1 6285:6 6291:1 6292:2 6293:4 6294:1 6303:1 6309:2 6312:5 6314:1 6315:4 6316:1 6326:1 6334:1 6358:1 6382:1 6407:1 6411:2 6417:1 6430:1 6451:1 6473:1 6483:1 6495:1 6506:1 6528:1 6561:1 6580:1 6584:1 6610:1 6614:1 6622:1 6623:2 6628:1 6655:1 6679:1 6683:1 6684:1 6695:2 6698:2 6729:1 6738:3 6739:1 6759:2 6787:1 6799:1 6801:2 6803:1 6807:1 6832:1 6835:1 6843:2 6859:1 6861:1 6867:3 6870:1 6942:1 6956:1 6957:1 6961:1 6968:1 6970:1 6972:1 6982:2 6983:1 6986:1 6991:2 6996:1 7008:1 7010:1 7012:1 7036:2 7037:1 7038:2 7046:1 7051:1 7053:1 7061:2 7062:11 7065:1 7070:2 7072:1 7076:1 7083:1 7086:2 7119:2 7130:2 7138:1 7140:1 7164:2 7167:2 7198:1 7205:1 7213:1 7225:2 7243:1 7250:1 7252:2 7264:2 7289:12 7295:3 7334:1 7346:1 7366:1 7368:1 7377:1 7383:1 7394:1 7397:1 7421:1 7422:1 7423:2 7432:3 7434:1 7451:1 7455:1 7494:1 7496:1 7525:1 7532:1 7537:2 7543:1 7561:2 7567:2 7580:3 7583:1 7589:1 7591:1 7599:1 7603:2 7604:5 7607:1 7608:1 7616:1 7618:1 7622:1 7625:1 7630:1 7635:1 7650:1 7656:1 7665:1 7684:1 7690:1 7707:2 7708:2 7709:1 7715:1 7716:1 7718:1 7721:2 7722:1 7725:1 7727:1 7728:1 7729:3 7734:2 7736:2 7739:2 7741:3 7742:1 7748:1 7764:1 7782:2 7805:1 7822:5 7825:2 7840:1 7847:1 7852:4 7857:2 7860:1 7871:3 7880:1 7881:1 7895:1 7905:1 7937:2 7945:1 7965:1 7966:1 7972:1 7974:1 7989:9 7993:1 7995:1 8002:2 8004:5 8006:2 8007:1 8008:1 8009:2 8010:1 8014:5 8015:4 8016:1 8017:1 8019:4 8020:9 8021:1 8022:2 8030:1 8034:1 8054:1 8077:1 8082:1 8085:2 8086:1 8125:1 8136:1 8143:1 8176:1 8185:2 8186:1 8200:3 8203:3 8224:1 8243:3 8257:1 8260:1 8284:1 8293:1 8295:1 8297:1 8308:1 8315:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:2 8349:1 8366:1 8370:2 8377:1 8393:2 8421:1 8427:1 8446:1 8449:1 8481:1 8489:1 8493:1 8496:1 8501:3 8524:3 8545:1 8564:2 8566:1 8570:1 8577:1 8597:1 8602:2 8617:1 8641:1 8648:1 8654:1 8661:1 8691:1 8693:1 8695:2 8709:1 8714:2 8731:1 8738:1 8751:1 8772:1 8841:1 8842:1 8845:1 8849:1 8854:5 8866:1 8869:1 8880:1 8883:6 8905:1 8940:1 8943:1 8946:1 8955:1 8960:1 8966:2 8969:1 8975:1 8978:2 8996:1 9007:1 9012:2 9026:1 9033:1 9052:3 9060:1 9090:1 9113:1 9122:1 9123:2 9126:1 9134:1 9138:1 9143:1 9146:1 9149:1 9153:1 9160:1 9194:1 9197:1 9205:1 9216:1 9217:2 9231:1 9247:1 9253:1 9278:1 9282:2 9306:1 9307:1 9325:1 9328:1 9333:1 9337:1 9338:6 9372:9 9374:1 9381:1 9394:1 9426:1 9428:2 9433:1 9437:1 9442:1 9446:1 9470:2 9484:1 9492:1 9495:1 9499:1 9526:4 9529:1 9533:1 9577:1 9586:1 9588:1 9612:3 9619:1 9623:1 9628:13 9629:13 9637:1 9654:1 9655:1 9656:1 9657:5 9661:1 9688:4 9694:4 9695:1 9702:57 9707:1 9708:1 9711:2 9719:1 9720:1 9723:1 9733:19 9738:6 9744:1 9750:1 9754:1 9758:1 9761:1 9778:1 9780:1 9781:4 9787:2 9793:2 9803:1 9813:1 9834:1 9849:6 9866:2 9870:1 9877:1 9885:1 9895:1 9924:1 9926:2 9942:3 9956:1 9957:1 9963:1 9967:4 9968:1 9975:1 9978:1 9999:6 10011:1 10016:1 10023:1 10058:1 10063:2 10079:2 10099:2 10103:1 10161:1 10167:1 10171:1 10175:2 10209:1 10213:1 10223:1 10230:1 10235:3 10242:1 10261:2 10284:2 10286:1 10287:1 10298:1 10313:1 10314:1 10321:37 10331:1 10333:1 10338:1 10340:1 10342:1 10349:1 10356:1 10358:1 10359:18 10360:4 10376:1 10378:2 10399:1 10401:1 10406:1 10407:1 10411:1 10412:2 10424:1 10431:1 10444:1 10452:1 10470:46 10488:1 10520:2 10529:1 10552:1 10559:1 10573:1 10598:1 10599:2 10612:1 10615:1 10624:1 10631:1 10669:1 10683:1 10686:2 10695:1 10697:1 10701:2 10703:1 10704:1 10706:1 10707:1 10711:1 10716:2 10717:5 10718:1 10736:1 10744:1 10749:2 10765:1 10772:3 10773:1 10777:1 10778:1 10789:2 10791:1 10792:2 10796:1 10798:1 10807:2 10808:2 10812:1 10813:1 10826:1 10831:1 10848:1 10849:1 10850:1 10864:1 10878:1 10884:1 10895:1 10900:2 10911:4 10937:1 10979:1 10991:1 10994:1 11002:3 11075:3 11078:1 11081:1 11109:2 11118:1 11129:1 11140:1 11163:2 11165:1 11169:1 11176:1 11179:1 11181:1 11183:2 11203:1 11207:1 11212:4 11226:1 11230:1 11231:1 11233:4 11238:1 11247:3 11258:1 11268:1 11270:1 11272:1 11311:1 11320:1 11325:1 11334:3 11340:1 11343:2 11347:2 11378:1 11382:6 11391:5 11402:1 11404:1 11412:2 11422:1 11457:1 11489:4 11522:3 11523:1 11524:1 11556:1 11557:4 11561:2 11564:1 11569:5 11571:3 11572:1 11573:1 11575:1 11583:2 11585:2 11587:2 11598:1 11609:1 11617:1 11619:1 11625:1 11628:1 11636:1 11639:1 11640:1 11641:1 11642:2 11643:1 11645:1 11654:1 11668:1 11675:1 11678:3 11690:8 11694:2 11697:2 11707:2 11718:2 11720:1 11723:1 11739:3 11744:1 11745:1 11755:1 11770:1 11771:1 11774:2 11776:1 11791:1 11793:3 11795:2 11804:1 11815:1 11835:1 11838:1 11840:1 11848:1 11851:1 11861:1 11864:1 11865:2 11872:2 11876:2 11882:1 11885:1 11887:1 11888:2 11899:1 11902:1 11903:1 11910:1 11912:1 11917:2 11918:1 11919:11 11930:1 11931:2 11932:12 11936:1 11947:1 11955:1 11959:1 11961:3 11966:1 11969:1 11976:1 11978:1 11982:3 11984:1 11985:1 11988:1 11992:1 12004:1 12014:1 12031:1 12033:1 12046:1 12052:1 12056:1 12057:1 12073:1 12076:2 12078:1 12081:1 12082:1 12083:2 12086:1 12096:1 12104:1 12111:1 12112:1 12113:1 12120:1 12131:2 12146:1 12147:1 12186:1 12191:1 12214:1 12221:6 12229:1 12230:1 12231:1 12237:3 12239:4 12248:1 12254:1 12255:1 12257:1 12263:1 12269:1 12275:1 12282:1 12301:1 12324:2 12339:1 12359:1 12361:1 12391:37 12394:1 12398:1 12401:1 12407:1 12420:1 12428:1 12435:2 12446:1 12451:1 12453:1 12458:1 12471:1 12473:1 12479:2 12490:2 12493:1 12497:1 12508:1 12520:1 12521:1 12532:1 12538:1 12540:5 12547:3 12552:1 12561:2 12570:2 12580:1 12592:1 12607:1 12608:1 12618:2 12619:2 12630:2 12636:1 12641:1 12643:2 12651:2 12654:2 12669:5 12673:5 12684:1 12689:1 12692:3 12694:1 12734:5 12756:1 12757:1 12760:2 12774:1 12777:1 12794:1 12808:1 12821:1 12824:3 12829:1 12837:1 12844:1 12848:1 12850:1 12867:7 12868:1 12879:1 12881:1 12898:1 12936:1 12956:1 12958:1 12959:1 12977:2 12981:1 12987:1 12988:1 13013:5 13028:1 13040:2 13049:1 13051:1 13052:2 13058:1 13078:1 13079:1 13080:1 13089:1 13096:1 13112:2 13113:8 13122:1 13128:1 13154:3 13175:1 13179:1 13187:1 13213:1 13234:1 13241:1 13258:5 13267:1 13282:1 13283:5 13285:1 13297:1 13303:1 13316:1 13325:2 13357:3 13377:1 13384:1 13385:2 13411:1 13412:5 13415:1 13418:2 13420:8 13429:1 13443:1 13454:1 13457:1 13464:2 13468:1 13471:1 13472:1 13474:1 13481:1 13483:2 13487:1 13493:7 13498:1 13505:1 13509:1 13516:1 13517:2 13523:1 13537:1 13550:1 13567:1 13568:1 13588:1 13601:1 13632:11 13633:1 13647:1 13648:1 13657:1 13669:3 13673:1 13682:1 13686:3 13690:3 13694:3 13704:1 13710:1 13721:5 13729:1 13737:1 13749:1 13761:2 13765:2 13767:1 13768:1 13777:1 13793:1 13798:9 13803:1 13808:1 13823:1 13824:3 13826:4 13828:1 13837:2 13845:2 13849:1 13859:1 13880:1 13881:1 13891:6 13895:1 13897:1 13898:1 13900:1 13901:1 13910:2 13919:1 13921:2 13931:1 13942:1 13956:1 13972:3 13974:1 13996:1 13998:1 14008:1 14009:1 14015:1 14017:1 14029:1 14032:3 14036:1 14042:1 14070:2 14071:2 14092:1 14093:2 14095:2 14105:2 14107:1 14108:1 14114:1 14115:1 14116:4 14119:1 14121:1 14122:2 14124:1 14128:1 14134:1 14145:2 14146:5 14149:1 14152:1 14154:1 14162:1 14186:1 14189:3 14191:1 14192:1 14218:1 14228:1 14235:5 14263:1 14265:1 14280:1 14286:2 14291:1 14292:1 14296:1 14302:1 14308:1 14309:1 14322:10 14337:2 14340:2 14342:1 14376:1 14380:1 14404:1 14406:1 14410:1 14411:1 14416:1 14430:1 14448:2 14462:1 14464:2 14488:1 14491:6 14515:1 14517:1 14519:1 14523:1 14528:1 14533:3 14549:1 14550:1 14554:2 14555:1 14559:1 14564:1 14567:6 14568:5 14571:2 14577:1 14580:5 14586:1 14611:1 14614:1 14621:2 14628:1 14632:2 14636:1 14638:9 14642:1 14643:1 14654:1 14666:1 14667:1 14675:2 14679:1 14686:1 14689:1 14716:1 14727:3 14735:1 14737:1 14742:4 14744:1 14772:3 14787:1 14791:3 14803:1 14835:1 14840:1 14841:1 14844:1 14854:1 14869:1 14870:1 14910:1 14913:1 14940:1 14941:2 14960:1 14984:1 15012:1 15014:1 15030:1 15037:3 15039:1 15046:1 15060:4 15079:1 15080:1 15083:1 15086:1 15095:2 15123:1 15132:1 15139:1 15140:1 15144:2 15150:2 15151:1 15152:3 15160:1 15161:6 15162:1 15166:1 15169:1 15178:1 15185:1 15197:1 15205:1 15210:1 15220:1 15222:1 15250:1 15269:1 15278:1 15292:1 15312:3 15315:5 15326:1 15335:1 15345:1 15383:1 15385:2 15400:1 15414:2 15448:1 15460:1 15472:1 15487:1 15502:3 15519:1 15525:1 15526:1 15551:1 15552:1 15574:1 15577:1 15584:2 15587:1 15595:1 15598:1 15675:1 15690:1 15696:1 15705:1 15707:1 15746:1 15747:1 15776:3 15778:38 15782:1 15786:1 15794:1 15797:1 15800:5 15803:1 15813:1 15826:1 15844:6 15855:1 15864:2 15868:1 15871:1 15885:1 15895:1 15900:1 15910:1 15912:1 15913:1 15915:1 15942:2 15943:1 15944:2 15981:1 15989:1 16001:1 16006:2 16008:1 16013:1 16017:1 16022:1 16083:1 16092:1 16099:3 16114:1 16134:1 16142:2 16147:1 16149:1 16173:1 16190:1 16196:1 16198:1 16201:1 16213:1 16217:1 16236:1 16241:1 16253:1 16268:1 16269:1 16285:1 16289:1 16293:1 16294:1 16299:1 16303:1 16304:1 16320:1 16327:13 16332:4 16336:3 16354:1 16357:1 16365:2 16372:1 16375:1 16393:1 16394:1 16456:1 16460:1 16475:1 16490:1 16499:1 16502:2 16505:2 16510:6 16515:1 16516:6 16528:1 16535:1 16559:1 16561:1 16581:1 16594:1 16609:14 16613:1 16622:1 16643:1 16661:1 16676:1 16704:1 16706:1 16720:2 16729:1 16731:1 16732:2 16742:1 16775:1 16779:1 16792:3 16797:4 16803:3 16823:1 16831:1 16835:2 16836:1 16837:1 16843:1 16854:1 16862:1 16869:2 16874:2 16882:1 16889:1 16897:1 16898:1 16914:3 16918:1 16923:1 16929:2 16964:1 16968:2 16970:3 16971:1 16973:1 16975:1 16977:2 16978:1 16979:13 16980:1 16981:1 16983:2 17002:1 17003:2 17004:1 17007:1 17008:1 17009:1 17011:1 17013:6 17022:1 17026:1 17031:1 17033:2 17064:1 17075:1 17076:1 17082:1 17100:1 17114:1 17120:1 17125:1 17149:1 17152:1 17154:1 17156:1 17161:2 17172:10 17175:1 17181:2 17193:1 17204:1 17214:1 17217:1 17230:1 17234:1 17243:1 17246:1 17273:1 17276:1 17278:2 17286:5 17303:1 17309:1 17315:3 17319:1 17320:2 17333:14 17336:8 17378:1 17417:2 17425:1 17426:5 17436:2 17438:1 17449:4 17450:1 17481:1 17513:1 17516:1 17545:1 17547:3 17562:1 17564:2 17571:1 17590:1 17598:1 17601:1 17607:2 17623:1 17629:1 17636:1 17639:1 17675:4 17679:1 17716:1 17723:1 17734:1 17762:1 17769:1 17784:3 17792:2 17794:1 17798:1 17806:2 17813:2 17814:2 17817:3 17819:1 17829:1 17835:2 17836:1 17849:1 17850:2 17858:2 17869:1 17884:1 17903:1 17918:1 17921:1 17924:1 17925:2 17929:1 17941:1 17942:2 17943:1 17945:1 17955:2 17957:2 17972:1 17976:1 17978:2 17981:1 17984:2 17992:1 17993:1 17994:1 17997:1 17998:1 17999:1 18000:1 18005:1 18011:1 18013:1 18016:2 18030:1 18032:1 18037:2 18039:1 18048:1 18057:2 18058:1 18073:1 18080:1 18092:38 18094:1 18101:3 18105:1 18106:1 18110:1 18120:1 18127:1 18128:1 18137:2 18151:1 18184:1 18198:1 18200:1 18203:5 18204:1 18214:1 18215:1 18221:2 18244:1 18249:1 18270:3 18274:1 18276:1 18277:1 18278:1 18290:1 18297:1 18298:1 18320:6 18325:1 18339:1 18342:1 18345:1 18348:1 18390:1 18392:1 18396:1 18442:1 18463:2 18470:2 18471:2 18474:1 18485:1 18493:1 18494:1 18506:1 18517:1 18535:1 18549:1 18559:1 18560:1 18561:2 18563:2 18574:1 18582:1 18593:1 18600:2 18601:1 18603:1 18608:7 18614:1 18645:3 18651:1 18667:1 18673:1 18676:1 18677:1 18696:1 18703:1 18708:4 18710:1 18712:1 18715:1 18727:1 18732:1 18747:1 18752:1 18767:2 18769:1 18779:2 18781:3 18793:1 18794:1 18811:1 18823:2 18855:1 18867:1 18870:1 18876:2 18898:2 18899:1 18928:1 18953:3 18954:1 18959:1 18968:1 18978:1 18989:1 18993:3 18997:1 19019:1 19027:1 19029:1 19050:1 19060:1 19064:2 19067:1 19083:1 19087:2 19090:1 19096:1 19097:1 19120:2 19141:1 19154:1 19169:1 19175:1 19191:1 19192:3 19193:4 19204:1 19225:1 19235:2 19263:7 19269:2 19276:2 19287:1 19303:1 19310:1 19336:1 19361:1 19364:1 19397:1 19404:1 19406:1 19416:1 19424:1 19428:1 19435:1 19437:4 19442:1 19450:1 19452:1 19458:4 19469:1 19471:1 19474:1 19475:1 19484:1 19489:1 19490:5 19496:3 19500:2 19513:4 19514:1 19518:1 19525:1 19526:1 19529:1 19532:1 19538:3 19548:1 19567:1 19598:1 19602:1 19605:1 19615:5 19616:1 19620:2 19641:2 19645:4 19649:2 19655:1 19658:1 19664:1 19670:1 19672:1 19679:1 19689:1 19691:3 19703:1 19708:5 19724:1 19766:1 19772:1 19775:1 19787:1 19796:1 19806:1 19810:15 19814:2 19815:1 19820:1 19851:4 19854:3 19858:1 19865:2 19868:2 19876:1 19894:2 19901:1 19904:3 19905:2 19907:1 19908:2 19932:12 19947:1 19956:1 19960:1 19961:1 19967:1 19976:4 20027:3 20034:1 20046:2 20061:1 20065:1 20074:1 20076:1 20078:1 20090:1 20091:3 20109:4 20110:2 20111:1 20115:4 20117:2 20124:1 20125:4 20126:1 20127:2 20130:1 20153:1 20168:1 20174:2 20201:2 20211:1 20221:1 20231:1 20232:1 20237:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20295:1 20296:1 20318:1 20324:1 20325:1 20350:1 20355:1 20369:2 20383:1 20390:2 20431:1 20444:1 20445:1 20446:2 20455:1 20499:1 20522:1 20537:1 20540:2 20556:2 20566:1 20568:1 20572:1 20588:4 20593:1 20604:2 20606:11 20607:1 20608:1 20617:1 20643:1 20646:1 20649:1 20654:1 20679:2 20680:3 20683:1 20689:1 20690:1 20691:2 20723:1 20727:1 20741:1 20746:1 20751:3 20754:1 20762:2 20781:2 20783:1 20785:3 20796:1 20799:2 20816:1 20818:1 20865:1 20878:1 20885:1 20900:1 20917:1 20918:2 20922:1 20930:1 20936:1 20941:50 20948:1 20949:3 20966:1 20974:1 20978:1 20980:1 20997:1 21000:1 21003:4 21044:1 21064:1 21071:1 21072:1 21081:1 21083:1 21097:1 21101:1 21116:1 21124:3 21130:2 21145:2 21149:1 21155:1 21170:1 21174:2 21204:1 21209:1 21214:1 21215:1 21235:1 21243:1 21261:1 21263:1 21284:1 21292:1 21299:1 21316:1 21318:2 21322:2 21323:1 21324:1 21337:1 21355:1 21371:1 21376:1 21423:1 21443:1 21445:1 21460:1 21473:1 21477:1 21488:1 21500:1 21503:2 21508:1 21512:1 21513:1 21518:1 21522:2 21524:1 21530:1 21540:1 21566:2 21586:2 21591:2 21592:1 21593:1 21595:1 21597:1 21602:1 21603:1 21608:2 21612:2 21634:1 21643:1 21660:1 21686:2 21696:1 21701:1 21704:2 21713:2 21724:1 21754:1 21755:1 21769:1 21788:1 21792:1 21806:1 21809:1 21819:1 21822:1 21823:4 21827:1 21829:2 21831:1 21843:1 21864:1 21866:1 21872:2 21874:2 21875:2 21886:1 21892:1 21899:1 21917:2 21925:1 21939:3 21943:2 21975:4 21976:1 21987:5 21996:1 22008:4 22009:1 22019:1 22032:1 22037:1 22067:2 22076:1 22079:8 22083:1 22084:2 22094:1 22123:3 22130:1 22143:2 22169:1 22173:1 22177:2 22181:1 22186:2 22190:1 22207:1 22247:1 22251:2 22298:1 22300:4 22304:2 22305:2 22308:1 22315:1 22327:1 22332:1 22345:2 22347:2 22361:1 22362:1 22386:1 22388:2 22391:1 22406:1 22424:1 22429:5 22437:1 22490:1 22493:2 22497:1 22516:1 22530:2 22547:1 22572:1 22581:1 22584:1 22628:10 22643:2 22650:1 22666:1 22668:1 22677:2 22715:1 22720:1 22727:4 22737:1 22754:1 22762:1 22764:1 22781:1 22783:1 22791:2 22800:1 22806:2 22809:1 22816:1 22824:1 22839:1 22853:1 22866:1 22870:1 22883:2467 22893:2 22899:1 22909:2 22923:1 22944:1 22965:1 22966:1 22969:1 22971:1 22981:1 22984:1 23008:1 23012:1 23031:3 23039:1 23043:3 23044:1 23079:1 23082:1 23098:1 23113:1 23119:1 23129:2 23139:2 23147:1 23164:1 23171:1 23173:1 23184:1 23189:1 23193:2 23194:1 23202:1 23223:1 23224:1 23270:1 23279:1 23293:2 23302:1 23304:1 23320:1 23321:1 23348:1 23365:2 23371:1 23411:1 23427:1 23438:1 23456:1 23457:1 23468:2 23470:1 23474:1 23482:1 23492:1 23501:1 23505:1 23508:1 23509:1 23520:1 23521:3 23523:2 23543:1 23549:1 23560:1 23565:1 23576:1 23603:1 23607:6 23640:5 23647:1 23653:1 23658:2 23664:2 23698:1 23705:1 23706:1 23708:1 23712:1 23715:1 23718:1 23735:1 23763:1 23766:1 23772:1 23773:2 23784:1 23787:1 23789:1 23800:1 23805:1 23812:1 23821:1 23833:8 23834:4 23874:1 23880:5 23900:1 23914:2 23922:1 23932:1 23934:2 23947:23 23958:1 23978:1 23979:2 24012:2 24013:1 24017:1 24019:1 24020:1 24021:2 24044:1 24047:4 24049:1 24051:1 24052:2 24064:2 24066:1 24079:1 24092:1 24097:2 24105:3 24106:1 24118:1 24128:1 24154:2 24176:1 24185:1 24191:1 24197:1 24201:1 24205:1 24209:4 24217:2 24233:1 24239:3 24240:1 24255:1 24268:1 24271:1 24275:1 24289:2 24292:1 24306:1 24314:2 24322:1 24327:1 24332:2 24342:1 24345:2 24347:1 24364:1 24369:1 24376:4 24385:1 24405:1 24424:1 24444:1 24449:1 24450:1 24452:1 24474:1 24479:1 24480:3 24482:2 24483:1 24491:1 24511:1 24518:2 24534:1 24539:2 24553:1 24566:1 24591:4 24592:8 24598:1 24601:1 24604:1 24607:1 24612:1 24620:1 24630:2 24640:1 24643:1 24651:2 24653:2 24656:3 24658:7 24663:1 24674:1 24679:1 24680:2 24681:6 24682:1 24683:1 24699:1 24700:1 24704:1 24708:5 24728:3 24729:1 24753:2 24754:1 24762:3 24774:1 24777:1 24781:6 24792:1 24794:1 24808:3 24813:1 24820:1 24826:2 24850:1 24853:1 24869:1 24882:1 24883:5 24894:2 24918:1 24919:1 24924:1 24931:1 24945:1 24950:1 24956:1 24978:1 25000:1 25031:2 25041:1 25047:1 25052:1 25053:1 25058:1 25067:1 25076:1 25080:1 25114:6 25117:1 25122:2 25123:1 25143:1 25144:2 25157:1 25161:2 25163:1 25179:3 25194:1 25217:1 25225:1 25240:1 25244:1 25269:1 25285:1 25299:1 25300:3 25303:1 25326:1 25334:2 25351:1 25357:1 25369:3 25373:2 25379:1 25386:1 25392:1 25407:2 25410:3 25417:1 25423:1 25427:2 25428:1 25431:2 25448:1 25450:2 25456:1 25461:1 25468:1 25481:1 25486:1 25491:1 25498:2 25502:2 25505:1 25511:3 25526:1 25527:1 25529:1 25541:1 25543:1 25553:2 25554:2 25568:1 25572:1 25577:1 25580:2 25582:2 25586:1 25590:4 25600:2 25602:1 25605:1 25608:3 25609:2 25623:2 25630:1 25632:1 25637:5 25655:1 25690:1 25699:1 25720:1 25721:5 25725:1 25733:2 25738:1 25781:1 25782:1 25786:2 25793:3 25807:1 25811:1 25815:1 25824:2 25841:1 25846:1 25848:1 25852:1 25859:2 25867:1 25879:1 25903:1 25907:1 25917:1 25922:1 25928:1 25934:1 25943:1 25948:1 25952:1 25973:1 25994:1 26000:1 26005:1 26011:2 26014:1 26018:5 26031:2 26044:1 26052:1 26062:3 26070:1 26091:1 26099:1 26102:2 26107:1 26119:1 26120:1 26124:1 26138:1 26148:1 26151:1 26153:1 26155:1 26156:4 26162:1 26167:1 26178:1 26183:2 26191:1 26203:2 26204:1 26211:1 26212:1 26213:1 26214:1 26215:2 26216:2 26226:1 26228:2 26236:2 26260:1 26261:1 26275:1 26278:1 26279:1 26285:2 26288:1 26306:1 26313:1 26319:1 26322:1 26324:2 26327:3 26337:4 26342:1 26344:1 26345:1 26346:1 26347:1 26348:1 26361:2 26362:2 26383:1 26385:4 26394:1 26395:1 26407:1 26415:1 26424:1 26425:1 26426:1 26438:3 26444:1 26453:4 26458:2 26459:1 26460:1 26475:1 26496:1 26505:1 26507:1 26508:8 26521:1 26535:1 26552:1 26555:1 26589:2 26590:1 26593:1 26602:8 26605:2 26608:1 26610:1 26612:5 26614:1 26628:3 26642:1 26644:1 26651:1 26667:1 26668:12 26671:1 26679:1 26694:1 26740:1 26743:1 26744:1 26776:1 26777:2 26779:4 26782:2 26787:1 26794:2 26795:1 26796:1 26797:2 26808:2 26809:2 26815:1 26818:1 26820:1 26826:7 26827:1 26828:4 26835:1 26839:1 26842:1 26843:1 26844:1 26854:1 26874:1 26907:1 26914:1 26930:1 26949:3 26984:3 26995:2 26999:1 27004:4 27008:1 27029:2 27033:1 27043:1 27051:1 27072:1 27087:3 27092:1 27097:1 27099:1 27102:1 27103:1 27114:1 27127:4 27138:1 27149:2 27153:2 27171:1 27183:1 27203:1 27213:2 27243:1 27251:2 27259:1 27260:16 27283:2 27287:2 27294:1 27319:1 27331:13 27333:2 27339:1 27343:1 27349:1 27354:1 27355:1 27358:1 27365:1 27393:1 27396:4 27398:2 27401:1 27412:4 27415:2 27447:1 27460:7 27470:1 27478:2 27484:1 27490:1 27500:4 27501:1 27508:1 27522:1 27526:1 27527:1 27533:1 27542:1 27544:2 27573:1 27591:1 27594:1 27599:1 27601:1 27603:2 27619:10 27633:3 27651:1 27653:1 27677:3 27703:1 27723:1 27728:1 27731:1 27752:1 27760:1 27767:2 27776:1 27779:1 27782:1 27787:37 27804:1 27808:1 27810:3 27813:3 27814:1 27816:1 27817:2 27819:1 27820:1 27825:1 27854:2 27859:3 27860:1 27862:1 27866:1 27876:3 27878:1 27879:1 27889:1 27920:1 27922:1 27925:1 27957:1 27963:1 27966:1 27973:6 27974:1 27983:1 27987:3 28000:2 28007:1 28011:4 28017:1 28038:1 28051:1 28052:1 28081:1 28098:1 28154:1 28160:3 28179:3 28191:1 28194:1 28206:1 28263:1 28276:1 28278:1 28279:1 28287:1 28297:1 28298:3 28303:1 28308:1 28310:1 28313:3 28316:1 28317:1 28318:2 28325:1 28348:1 28370:38 28384:1 28398:3 28399:2 28409:1 28433:1 28436:1 28443:1 28460:1 28464:1 28470:1 28472:2 28473:1 28482:2 28483:1 28489:6 28493:1 28512:1 28523:1 28528:1 28541:1 28543:1 28545:1 28559:1 28560:1 28567:1 28572:1 28577:3 28582:2 28587:1 28593:1 28608:2 28612:1 28620:1 28621:1 28639:1 28645:1 28647:2 28650:3 28655:1 28686:2 28693:1 28719:1 28752:1 28757:1 28786:1 28788:2 28811:1 28812:1 28814:5 28815:1 28817:2 28826:1 28831:1 28833:1 28852:1 28899:1 28908:1 28913:1 28929:1 28932:1 28939:2 28940:1 28949:1 28958:1 28974:2 28983:2 28993:1 28996:2 29004:1 29014:1 29016:1 29020:1 29032:1 29041:3 29087:1 29123:1 29125:1 29126:1 29133:2 29141:1 29149:1 29150:1 29169:1 29170:3 29174:1 29179:1 29187:1 29190:7 29192:1 29196:1 29215:1 29233:1 29241:1 29251:1 29258:1 29271:1 29297:1 29302:1 29320:1 29328:1 29330:1 29333:1 29334:1 29363:1 29367:2 29398:1 29405:1 29410:1 29417:1 29419:3 29426:2 29451:1 29455:2 29464:1 29480:1 29486:2 29493:1 29516:2 29527:1 29551:1 29554:1 29557:7 29564:2 29566:1 29568:2 29583:2 29584:2 29587:3 29591:1 29592:1 29600:1 29604:1 29619:1 29634:3 29635:1 29639:1 29671:1 29679:1 29688:10 29695:1 29701:1 29715:1 29741:1 29749:1 29752:1 29756:2 29760:1 29761:1 29768:1 29775:1 29777:1 29797:2 29816:1 29822:1 29827:1 29839:1 29840:1 29845:5 29857:1 29887:1 29888:1 29901:2 29911:1 29933:1 29939:1 29942:1 29952:1 29954:1 29957:2 29962:4 29969:1 29972:1 29995:1 30004:1 30015:2 30023:1 30027:1 30035:1 30041:1 30075:1 30079:3 30083:1 30084:2 30091:1 30092:1 30093:1 30095:3 30099:5 30102:1 30103:1 30105:2 30119:1 30127:1 30134:1 30144:2 30165:3 30192:1 30198:2 30199:3 30213:1 30215:1 30219:1 30233:1 30235:2 30238:1 30241:1 30248:1 30253:2 30261:4 30263:1 30273:1 30279:1 30283:1 30284:1 30288:1 30290:1 30294:1 30295:1 30299:1 30307:1 30309:1 30319:1 30320:1 30326:1 30329:1 30330:1 30331:1 30332:1 30350:1 30361:1 30364:1 30370:1 30371:1 30424:1 30434:3 30452:1 30454:1 30478:1 30482:3 30483:1 30489:1 30493:1 30518:1 30535:5 30537:2 30538:2 30541:1 30552:2 30553:1 30566:1 30588:1 30601:1 30613:1 30617:2 30641:2 30677:1 30679:1 30688:1 30690:1 30743:1 30748:1 30777:1 30783:2 30787:1 30788:1 30789:2 30790:6 30794:1 30806:1 30814:6 30817:3 30823:1 30853:1 30855:2 30857:2 30861:1 30907:1 30910:1 30912:2 30920:2 30931:1 30934:1 30944:2 30951:1 30952:1 30960:2 30963:1 30965:1 30970:1 30972:1 30981:4 30987:1 30992:1 31002:1 31005:1 31015:1 31020:1 31026:1 31047:1 31048:1 31051:4 31053:1 31054:1 31055:2 31057:1 31059:2 31072:1 31083:1 31089:2 31092:1 31093:1 31095:1 31112:2 31123:1 31134:1 31142:1 31148:1 31151:1 31153:1 31168:3 31177:1 31178:1 31181:1 31188:1 31201:1 31210:1 31223:1 31226:1 31235:2 31241:1 31254:1 31255:4 31264:4 31265:2 31276:1 31283:1 31286:1 31296:5 31311:1 31317:4 31319:1 31329:2 31334:4 31369:1 31376:1 31377:5 31384:1 31387:1 31404:1 31411:1 31413:15 31425:2 31444:2 31465:2 31478:1 31486:1 31494:1 31543:1 31550:1 31563:1 31569:1 31574:2 31578:3 31580:1 31588:1 31595:1 31601:1 31603:2 31610:1 31612:1 31641:3 31648:1 31660:3 31663:1 31701:1 31706:1 31708:1 31712:1 31725:1 31737:1 31747:1 31751:1 31752:1 31753:2 31757:1 31767:1 31768:1 31784:1 31785:1 31787:1 31797:1 31805:1 31808:2 31834:3 31848:1 31853:1 31866:3 31874:1 31882:1 31885:1 31890:1 31891:1 31893:2 31918:1 31919:1 31929:1 31930:4 31933:2 31946:2 31963:2 31964:1 31968:12 31969:1 31972:1 31979:1 31983:1 31993:3 32010:1 32013:1 32022:1 32025:1 32036:1 32057:1 32066:5 32074:1 32085:1 32090:1 32098:1 32099:1 32106:1 32112:1 32115:1 32117:1 32136:1 32140:2 32141:1 32153:1 32208:1 32219:2 32234:1 32259:2 32261:1 32269:1 32285:3 32307:2 32311:1 32317:1 32319:1 32326:1 32329:1 32334:1 32376:4 32400:1 32405:1 32406:4 32413:1 32425:1 32436:1 32459:1 32461:2 32491:1 32492:1 32493:2 32505:2 32515:2 32532:1 32538:1 32553:2 32555:1 32559:1 32574:1 32576:1 32596:1 32597:1 32606:1 32612:1 32624:1 32629:1 32636:1 32682:1 32683:2 32687:1 32691:1 32700:1 32725:2 32726:2 32732:1 32745:1 32749:2 32750:6 32774:3 32779:1 32785:2 32787:1 32801:4 32813:1 32820:1 32832:4 32841:1 32846:1 32848:2 32879:1 32887:2 32890:7 32891:1 32893:1 32896:2 32908:1 32909:1 32913:1 32917:2 32923:1 32924:1 32929:3 32941:3 32950:2 32955:1 32958:1 32965:1 32970:1 32974:1 32984:1 32997:1 33027:1 33031:1 33053:1 33057:2 33066:1 33069:2 33074:1 33080:2 33085:1 33089:1 33092:1 33094:3 33098:1 33100:1 33112:1 33118:1 33128:5 33133:6 33137:1 33141:2 33142:2 33144:2 33157:2 33168:1 33180:1 33182:1 33183:2 33189:1 33218:2 33219:1 33222:1 33231:1 33241:1 33272:1 33276:2 33284:1 33287:1 33296:3 33297:1 33309:2 33330:1 33333:1 33335:1 33346:1 33352:10 33388:1 33389:1 33404:1 33413:1 33422:1 33428:2 33439:1 33440:1 33444:3 33446:1 33449:1 33461:3 33467:1 33498:1 33502:2 33503:1 33504:1 33505:3 33512:1 33530:1 33533:5 33534:1 33537:2 33543:3 33545:1 33549:1 33552:1 33553:2 33555:1 33556:2 33563:3 33579:2 33591:3 33592:1 33595:3 33609:1 33616:1 33620:1 33623:1 33637:1 33663:8 33669:1 33675:1 33680:4 33716:1 33720:1 33722:1 33730:1 33732:1 33734:3 33738:1 33743:3 33760:1 33766:1 33769:1 33771:1 33772:1 33794:2 33795:2 33819:1 33820:1 33824:1 33861:1 33865:1 33880:2 33902:1 33910:1 33921:1 33928:1 33930:1 33989:1 33997:1 34003:1 34040:1 34049:1 34052:1 34056:3 34057:2 34062:2 34063:1 34067:5 34071:3 34075:8 34076:1 34077:2 34080:1 34083:1 34085:3 34086:1 34099:1 34104:1 34133:1 34139:1 34144:1 34151:3 34157:1 34159:1 34160:1 34164:1 34172:1 34174:1 34194:1 34197:1 34204:1 34221:2 34246:2 34253:1 34283:5 34304:1 34306:1 34314:1 34321:2 34322:1 34335:1 34341:1 34351:1 34353:1 34363:1 34364:1 34367:1 34371:1 34373:1 34385:3 34403:1 34407:1 34410:1 34413:3 34423:1 34435:15 34437:2 34440:1 34445:1 34455:1 34470:1 34478:6 34496:1 34497:6 34526:1 34566:1 34570:1 34586:1 34589:1 34596:5 34615:1 34619:1 34627:1 34629:1 34630:2 34634:12 34643:3 34654:1 34659:1 34662:1 34673:2 34674:1 34682:1 34689:1 34691:14 34701:2 34749:1 34757:2 34761:2 34771:1 34782:1 34794:1 34796:1 34799:1 34803:1 34804:2 34822:1 34834:1 34862:1 34878:2 34924:2 34936:1 34951:1 34957:1 34961:1 34968:1 34989:1 34996:46 34997:1 35022:1 35026:5 35031:2 35039:2 35041:5 35042:2 35043:1 35055:1 35056:1 35094:1 35098:1 35124:4 35128:13 35129:1 35135:3 35141:1 35149:1 35152:2 35157:1 35164:1 35167:1 35177:1 35184:1 35201:1 35207:2 35217:1 35253:1 35265:1 35281:3 35289:2 35310:2 35311:1 35326:1 35342:1 35347:1 35354:5 35382:2 35395:5 35410:1 35456:1 35464:3 35468:1 35470:1 35473:1 35488:1 35499:1 35503:2 35517:2 35520:1 35526:2 35529:1 35539:1 35582:1 35585:1 35589:2 35592:1 35602:2 35614:1 35625:3 35634:1 35635:1 35636:3 35638:1 35648:1 35656:1 35661:1 35664:1 35665:1 35677:1 35681:2 35692:1 35696:1 35700:1 35714:1 35719:1 35721:1 35731:1 35734:1 35746:1 35748:10 35749:1 35753:2 35757:3 35785:1 35789:3 35805:6 35811:1 35825:1 35831:4 35836:1 35837:2 35838:2 35845:2 35850:38 35862:2 35888:2 35901:1 35919:1 35925:1 35927:1 35939:1 35953:1 35957:1 35958:1 35959:2 35964:2 35965:2 35966:5 35967:1 35989:1 35996:1 36007:1 36010:2 36011:1 36028:2 36033:3 36045:1 36051:1 36059:1 36065:1 36072:1 36075:2 36091:1 2 9:1 10:1 19:1 31:2 32:1 33:1 51:2 54:1 55:1 65:1 68:1 69:1 73:1 76:1 86:1 95:1 104:3 106:2 107:1 122:1 128:1 140:1 166:2 176:1 177:1 184:1 191:2 196:2 200:2 202:1 207:1 211:1 221:1 224:1 226:1 230:1 235:1 239:3 251:1 255:1 256:1 271:1 278:2 281:1 297:4 302:6 303:1 309:2 322:2 323:1 328:1 330:2 365:2 372:1 412:1 414:4 418:1 433:1 435:2 442:1 446:1 450:1 452:1 454:1 460:1 461:1 478:2 498:2 503:2 515:1 520:2 526:1 539:1 541:1 549:1 553:1 555:2 568:2 583:2 600:1 601:4 607:1 610:1 621:1 626:1 641:2 650:2 659:1 662:1 671:1 672:1 674:1 684:1 690:1 691:1 705:1 720:1 750:1 751:3 755:2 759:2 761:1 766:1 781:1 787:1 795:6 809:1 820:38 821:1 825:4 831:1 833:1 835:1 854:1 861:1 881:1 886:3 889:3 919:2 930:1 931:1 935:2 941:2 955:3 964:1 967:1 999:2 1019:2 1022:1 1024:3 1028:2 1032:1 1034:2 1035:3 1058:1 1082:4 1091:1 1102:3 1110:1 1115:1 1124:1 1128:1 1135:3 1136:7 1140:3 1142:1 1150:6 1156:1 1167:1 1176:5 1181:1 1194:2 1203:4 1206:12 1210:1 1212:3 1219:1 1226:2 1232:1 1233:2 1234:3 1253:2 1256:1 1260:3 1270:3 1293:1 1301:3 1305:1 1308:1 1322:1 1326:4 1327:1 1330:1 1377:1 1385:2 1386:1 1391:1 1397:1 1403:1 1431:1 1442:1 1454:1 1459:4 1479:1 1506:1 1510:1 1537:1 1541:37 1550:2 1554:2 1555:2 1556:1 1564:4 1567:1 1583:1 1592:2 1595:2 1596:2 1603:1 1605:1 1610:1 1611:1 1613:1 1616:2 1617:4 1619:1 1623:1 1626:1 1627:1 1632:1 1634:1 1638:1 1651:1 1652:4 1675:1 1682:3 1705:2 1706:2 1707:1 1740:4 1755:1 1757:1 1760:1 1763:1 1765:1 1771:2 1773:11 1774:1 1792:1 1808:1 1809:1 1824:1 1836:3 1840:1 1843:1 1847:1 1849:2 1861:1 1870:1 1880:1 1888:1 1889:1 1891:4 1895:2 1897:17 1899:1 1903:1 1904:1 1910:1 1911:1 1915:1 1916:1 1918:1 1925:1 1929:2 1930:2 1932:1 1959:1 1960:3 1970:2 1990:1 1991:1 1997:6 2013:1 2014:1 2031:1 2036:1 2037:2 2043:1 2058:3 2067:1 2088:1 2095:1 2097:1 2098:11 2102:1 2104:1 2105:1 2106:3 2123:1 2139:1 2145:1 2147:1 2158:2 2160:1 2164:3 2172:1 2175:1 2180:1 2196:1 2198:1 2199:1 2202:1 2207:1 2218:1 2228:1 2249:1 2260:1 2265:1 2269:1 2276:1 2279:1 2282:1 2292:1 2307:1 2312:1 2317:3 2320:2 2327:1 2328:1 2342:1 2345:1 2348:1 2352:3 2355:1 2364:1 2368:2 2372:1 2376:2 2379:3 2390:1 2400:2 2406:2 2418:3 2420:1 2433:1 2436:1 2438:1 2442:1 2446:1 2449:1 2451:1 2454:1 2455:2 2462:1 2467:1 2474:1 2486:8 2494:1 2508:1 2511:1 2517:1 2522:2 2525:1 2546:1 2547:1 2557:1 2566:2 2595:1 2596:1 2598:1 2599:2 2604:1 2607:1 2619:1 2624:1 2638:2 2639:1 2640:1 2642:1 2644:1 2652:1 2655:1 2665:1 2676:1 2696:11 2721:1 2743:3 2746:1 2747:1 2783:1 2789:2 2817:2 2827:1 2848:1 2852:1 2857:1 2859:2 2861:2 2862:4 2865:3 2866:2 2867:3 2870:1 2872:6 2873:1 2877:9 2881:5 2883:7 2887:5 2891:1 2892:3 2893:1 2895:1 2897:1 2900:1 2902:4 2906:4 2909:1 2910:1 2913:1 2918:1 2919:1 2920:1 2941:1 2942:1 2946:1 2954:3 2955:1 2971:5 2974:1 2980:1 2999:2 3002:1 3004:1 3026:2 3027:1 3028:1 3035:1 3038:1 3042:1 3044:4 3045:4 3051:1 3054:4 3057:1 3061:1 3075:2 3076:4 3086:4 3087:1 3098:1 3100:1 3106:1 3116:4 3131:1 3132:1 3133:1 3137:1 3145:1 3165:1 3176:2 3177:2 3179:1 3186:1 3191:1 3199:1 3206:1 3218:1 3222:1 3224:2 3240:1 3244:1 3255:2 3265:1 3266:1 3267:1 3312:1 3313:1 3319:1 3322:2 3331:1 3341:2 3348:3 3358:1 3359:2 3366:1 3367:1 3371:1 3380:3 3381:2 3388:4 3389:1 3406:1 3410:1 3413:3 3415:4 3420:1 3423:3 3429:1 3443:1 3451:1 3454:1 3493:1 3497:3 3507:5 3510:5 3511:1 3516:1 3520:4 3539:2 3547:1 3560:1 3584:2 3590:1 3601:1 3603:2 3608:1 3612:2 3623:1 3645:17 3648:38 3651:1 3652:3 3653:1 3663:2 3666:2 3667:1 3678:1 3681:2 3682:1 3691:4 3692:1 3695:1 3698:1 3706:8 3736:4 3741:2 3745:1 3753:1 3756:1 3766:1 3784:2 3789:1 3792:1 3793:1 3794:1 3836:2 3843:1 3846:3 3851:1 3860:1 3867:1 3897:3 3926:2 3958:1 3962:1 4034:1 4045:1 4067:4 4070:1 4091:1 4097:1 4101:1 4119:2 4142:2 4146:1 4147:2 4157:1 4161:3 4162:1 4171:1 4177:1 4179:4 4193:1 4199:1 4201:2 4211:1 4223:1 4224:1 4226:4 4251:2 4262:1 4279:1 4328:1 4334:1 4355:1 4359:1 4371:1 4375:2 4381:1 4383:1 4384:1 4392:1 4395:1 4396:1 4402:2 4411:1 4412:1 4417:1 4423:1 4444:1 4448:1 4452:1 4459:1 4465:1 4474:1 4476:1 4479:1 4488:1 4492:1 4495:1 4517:2 4531:1 4539:1 4555:1 4564:1 4575:1 4580:1 4582:1 4601:1 4626:1 4643:3 4645:2 4646:1 4651:3 4654:2 4676:1 4712:1 4722:3 4724:1 4755:1 4762:1 4763:2 4767:2 4773:1 4779:1 4780:3 4795:1 4803:1 4809:1 4813:1 4815:2 4819:1 4820:2 4830:2 4843:1 4854:1 4855:2 4857:1 4859:1 4867:3 4882:1 4885:1 4886:1 4887:1 4895:1 4914:1 4920:37 4922:2 4927:1 4931:1 4935:1 4941:2 4947:1 4955:1 4985:1 4992:1 4993:1 5008:1 5013:1 5015:2 5019:4 5020:6 5032:2 5039:2 5047:1 5054:6 5058:7 5059:2 5075:1 5076:2 5077:1 5094:1 5117:1 5119:1 5125:1 5134:1 5149:1 5152:1 5153:2 5163:1 5170:3 5174:1 5178:1 5190:1 5194:1 5232:1 5233:1 5235:2 5237:2 5240:1 5241:1 5247:1 5254:1 5263:1 5272:1 5282:1 5295:1 5298:1 5299:2 5300:1 5302:4 5307:1 5308:3 5324:1 5348:1 5364:1 5368:1 5371:3 5402:2 5404:1 5408:1 5411:1 5416:2 5428:1 5435:2 5437:37 5444:1 5453:2 5456:1 5459:5 5465:1 5470:1 5471:1 5473:1 5483:1 5486:1 5492:1 5513:1 5516:1 5555:2 5566:6 5587:1 5588:1 5598:1 5625:1 5638:3 5655:2 5662:3 5663:1 5672:2 5676:2 5679:1 5683:1 5685:1 5687:1 5712:1 5731:8 5738:2 5760:2 5802:1 5832:6 5843:4 5850:1 5869:1 5879:6 5885:1 5899:1 5913:1 5924:1 5929:1 5934:1 5948:1 5960:1 5967:5 5969:2 5973:2 5974:1 5980:1 5983:4 5995:1 6004:1 6005:3 6017:1 6041:1 6043:1 6046:1 6049:1 6075:3 6078:2 6096:20 6097:2 6112:2 6115:1 6140:8 6149:2 6158:2 6173:1 6187:2 6191:1 6194:1 6207:1 6217:1 6253:4 6254:2 6257:5 6277:4 6278:6 6279:2 6282:1 6285:6 6291:1 6292:2 6293:4 6294:1 6303:1 6309:2 6312:5 6314:1 6315:4 6316:1 6326:1 6334:1 6358:1 6382:1 6407:1 6411:2 6417:1 6430:1 6451:1 6473:1 6483:1 6495:1 6506:1 6528:1 6561:1 6580:1 6584:1 6610:1 6614:1 6622:1 6623:2 6628:1 6655:1 6679:1 6683:1 6684:1 6695:2 6698:2 6729:1 6738:3 6739:1 6759:2 6787:1 6799:1 6801:2 6803:1 6807:1 6832:1 6835:1 6843:2 6859:1 6861:1 6867:3 6870:1 6942:1 6956:1 6957:1 6961:1 6968:1 6970:1 6972:1 6982:2 6983:1 6986:2 6991:2 6996:1 7008:1 7010:1 7012:1 7036:2 7037:1 7038:2 7046:1 7051:1 7053:1 7061:2 7062:11 7063:1 7065:1 7070:2 7072:1 7076:1 7083:1 7086:2 7119:2 7130:2 7138:1 7140:1 7164:2 7167:2 7198:1 7205:1 7213:1 7225:2 7243:1 7250:1 7252:2 7264:2 7270:1 7289:12 7295:3 7334:1 7346:1 7366:1 7368:1 7377:1 7383:1 7394:1 7397:1 7421:1 7422:1 7423:2 7432:3 7434:1 7451:1 7455:1 7494:1 7496:1 7525:1 7532:1 7537:2 7543:1 7561:2 7567:2 7580:3 7583:1 7589:1 7591:1 7599:1 7603:2 7604:5 7607:1 7608:1 7616:1 7618:1 7622:1 7625:1 7627:1 7630:1 7635:1 7650:1 7656:1 7657:1 7665:1 7684:1 7690:1 7707:2 7708:2 7709:1 7715:1 7716:1 7718:1 7721:2 7722:1 7725:1 7727:1 7728:1 7729:3 7734:2 7736:2 7739:2 7741:3 7742:1 7748:1 7764:1 7782:2 7805:1 7822:5 7825:2 7840:1 7847:1 7852:4 7857:2 7860:1 7871:4 7878:1 7880:1 7881:1 7891:1 7895:1 7905:1 7937:2 7945:1 7965:1 7966:1 7972:1 7974:1 7989:10 7993:1 7995:1 8002:2 8004:5 8006:2 8007:1 8008:1 8009:2 8010:1 8014:5 8015:4 8016:1 8017:1 8019:4 8020:9 8021:1 8022:2 8030:1 8034:1 8054:1 8077:1 8082:1 8085:2 8086:1 8125:1 8136:1 8143:1 8176:1 8185:2 8186:1 8200:3 8203:3 8224:1 8243:3 8257:1 8260:1 8284:1 8293:1 8295:1 8297:1 8308:1 8315:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:2 8349:1 8366:1 8370:3 8377:1 8393:2 8421:1 8427:1 8446:1 8449:1 8481:1 8489:1 8493:1 8496:1 8501:3 8503:1 8505:1 8524:3 8545:1 8564:3 8566:1 8570:1 8577:1 8597:2 8602:3 8617:1 8641:1 8648:1 8654:1 8661:1 8691:1 8693:1 8695:2 8709:1 8714:2 8731:1 8738:1 8751:1 8772:1 8775:1 8841:1 8842:1 8845:1 8849:1 8854:5 8866:1 8869:1 8880:2 8883:6 8905:1 8940:1 8943:1 8946:1 8955:1 8960:1 8966:2 8969:1 8975:1 8978:2 8996:1 9007:1 9012:2 9026:1 9033:1 9052:3 9060:1 9090:1 9113:1 9122:1 9123:2 9125:1 9126:1 9134:1 9138:1 9143:1 9146:1 9149:1 9153:1 9160:1 9194:1 9197:1 9205:1 9216:1 9217:2 9231:1 9247:1 9253:1 9260:1 9278:1 9282:2 9306:1 9307:1 9325:1 9328:1 9333:1 9337:1 9338:6 9372:9 9374:1 9381:1 9394:1 9426:1 9428:2 9433:1 9437:1 9442:1 9446:1 9470:2 9484:1 9492:1 9495:1 9499:1 9526:4 9529:1 9533:1 9577:1 9586:1 9588:1 9612:3 9619:1 9623:1 9628:13 9629:13 9637:1 9647:1 9654:1 9655:2 9656:1 9657:6 9661:1 9688:4 9694:4 9695:1 9702:58 9707:1 9708:1 9711:2 9719:1 9720:1 9723:1 9733:19 9738:6 9744:1 9750:1 9754:1 9758:1 9761:1 9778:1 9780:1 9781:4 9787:2 9793:2 9803:1 9813:1 9834:1 9849:6 9866:2 9870:1 9877:1 9885:1 9895:1 9924:1 9926:3 9942:3 9956:1 9957:1 9963:1 9967:4 9968:1 9975:1 9978:1 9999:6 10011:1 10016:1 10023:1 10058:1 10063:2 10079:2 10099:2 10103:1 10161:1 10167:1 10171:1 10175:2 10209:2 10213:1 10223:1 10230:1 10235:3 10242:1 10261:2 10284:2 10286:1 10287:1 10298:1 10313:1 10314:1 10321:37 10331:1 10333:1 10338:1 10340:1 10342:1 10349:1 10356:1 10358:1 10359:20 10360:4 10376:1 10378:2 10399:1 10401:1 10406:1 10407:1 10411:1 10412:2 10424:1 10431:1 10444:1 10452:1 10470:47 10488:1 10520:2 10529:1 10552:1 10559:1 10573:1 10598:1 10599:2 10612:1 10615:1 10624:1 10631:1 10669:1 10683:1 10686:2 10695:1 10697:1 10701:3 10703:1 10704:1 10706:1 10707:1 10711:1 10716:2 10717:5 10718:1 10736:1 10744:1 10749:2 10765:1 10772:3 10773:1 10777:1 10778:1 10789:2 10791:1 10792:2 10796:1 10798:1 10807:2 10808:2 10812:1 10813:1 10826:1 10831:1 10848:1 10849:1 10850:1 10864:1 10878:1 10884:1 10895:1 10900:2 10911:4 10937:1 10979:1 10991:1 10994:1 11002:3 11075:3 11078:1 11081:1 11109:2 11118:1 11123:1 11129:1 11140:1 11163:2 11165:1 11169:1 11176:1 11179:1 11181:1 11183:2 11203:1 11207:1 11212:4 11226:1 11230:2 11231:1 11233:4 11238:1 11247:3 11258:1 11268:1 11270:1 11272:1 11311:1 11320:1 11325:1 11334:3 11340:1 11343:2 11347:2 11373:1 11378:1 11382:6 11389:1 11391:5 11402:1 11404:1 11412:2 11422:1 11457:1 11489:4 11520:1 11522:3 11523:1 11524:2 11556:1 11557:4 11561:2 11564:1 11569:5 11571:3 11572:1 11573:1 11575:1 11583:2 11585:2 11587:2 11590:1 11598:1 11609:1 11617:1 11619:1 11622:1 11625:1 11628:1 11636:1 11639:1 11640:1 11641:1 11642:2 11643:1 11645:1 11654:1 11668:1 11675:1 11678:3 11690:9 11694:2 11697:2 11707:2 11718:2 11720:1 11723:1 11739:3 11744:1 11745:1 11755:1 11770:1 11771:1 11774:2 11776:1 11791:1 11793:3 11795:2 11804:1 11815:1 11835:1 11838:1 11840:1 11848:1 11851:1 11861:1 11864:1 11865:2 11872:2 11876:2 11882:1 11885:1 11887:1 11888:2 11899:1 11902:1 11903:1 11910:1 11912:1 11917:2 11918:1 11919:11 11930:1 11931:2 11932:12 11936:1 11947:1 11955:1 11959:1 11961:3 11966:1 11969:1 11976:1 11978:1 11982:3 11984:1 11985:1 11988:1 11992:1 12004:1 12014:1 12031:1 12033:1 12046:1 12052:1 12056:1 12057:1 12073:1 12076:2 12078:1 12081:1 12082:1 12083:2 12086:1 12096:1 12104:1 12111:1 12112:1 12113:1 12120:1 12131:2 12146:1 12147:1 12186:1 12191:1 12214:1 12221:6 12229:1 12230:1 12231:1 12237:3 12239:4 12248:1 12254:1 12255:1 12257:1 12263:1 12269:1 12275:1 12282:1 12301:1 12324:2 12339:1 12359:1 12361:1 12391:37 12394:1 12398:1 12401:1 12407:1 12420:1 12428:1 12435:2 12446:1 12451:1 12453:1 12458:1 12471:1 12473:1 12479:2 12490:2 12493:1 12497:1 12508:1 12520:1 12521:1 12532:1 12538:1 12540:5 12547:3 12552:1 12561:2 12570:2 12580:1 12592:1 12607:1 12608:1 12618:2 12619:2 12630:2 12636:1 12641:1 12643:2 12651:2 12654:2 12669:5 12673:5 12684:1 12689:1 12692:3 12694:1 12734:5 12738:1 12756:1 12757:1 12760:2 12774:1 12777:1 12794:1 12808:1 12821:2 12824:3 12829:1 12837:1 12844:1 12848:1 12850:1 12867:8 12868:1 12879:1 12881:1 12898:2 12936:1 12956:1 12958:1 12959:1 12977:2 12981:1 12987:1 12988:1 13013:5 13028:1 13040:2 13049:1 13051:1 13052:2 13058:1 13078:1 13079:1 13080:1 13089:1 13096:1 13112:2 13113:8 13122:1 13128:1 13154:3 13175:1 13179:1 13187:1 13213:1 13234:1 13241:1 13258:5 13267:1 13282:1 13283:5 13285:1 13297:1 13303:1 13316:1 13325:2 13351:1 13357:3 13377:1 13384:1 13385:2 13411:1 13412:5 13415:1 13418:2 13420:8 13429:1 13443:1 13454:1 13457:1 13464:2 13468:1 13471:1 13472:1 13474:1 13481:1 13483:2 13487:1 13493:7 13498:1 13505:1 13509:1 13516:1 13517:3 13523:1 13537:1 13550:1 13567:1 13568:1 13588:1 13601:1 13632:11 13633:1 13647:1 13648:1 13657:1 13669:3 13673:1 13682:1 13686:3 13690:3 13694:3 13704:1 13710:1 13721:5 13729:1 13737:1 13749:1 13761:2 13765:2 13767:1 13768:1 13777:1 13793:1 13798:9 13803:1 13808:1 13823:1 13824:3 13826:4 13828:1 13837:4 13845:2 13849:1 13859:1 13873:1 13880:1 13881:1 13882:1 13891:6 13895:1 13897:1 13898:1 13900:1 13901:1 13910:2 13919:1 13921:2 13926:1 13931:1 13942:1 13956:1 13972:3 13974:1 13996:1 13998:1 14008:1 14009:1 14015:1 14017:1 14029:1 14032:3 14036:1 14042:1 14070:2 14071:2 14092:1 14093:2 14095:2 14105:2 14107:1 14108:1 14114:1 14115:1 14116:4 14119:1 14121:1 14122:2 14124:1 14128:1 14134:1 14145:2 14146:5 14149:1 14152:1 14154:1 14162:1 14186:1 14189:3 14191:1 14192:1 14218:1 14228:1 14235:5 14263:1 14265:1 14280:1 14286:2 14291:1 14292:1 14296:1 14302:1 14308:1 14309:1 14322:10 14337:2 14340:2 14342:1 14376:1 14380:1 14388:1 14404:2 14406:1 14410:1 14411:1 14416:1 14430:1 14448:2 14462:1 14464:2 14488:1 14491:6 14515:1 14517:1 14519:1 14523:1 14528:1 14533:3 14549:1 14550:1 14554:2 14555:1 14559:1 14564:1 14567:6 14568:5 14571:2 14577:1 14580:5 14586:1 14611:1 14614:1 14621:2 14628:1 14632:2 14636:1 14638:9 14642:1 14643:1 14654:1 14666:1 14667:1 14675:2 14679:1 14686:1 14689:1 14716:1 14727:3 14735:1 14737:1 14742:4 14744:1 14772:3 14787:1 14791:4 14803:1 14820:1 14835:1 14840:1 14841:1 14844:1 14854:1 14869:1 14870:1 14910:1 14913:1 14940:1 14941:2 14960:1 14984:1 15012:1 15014:1 15030:1 15037:3 15039:1 15046:1 15060:4 15079:1 15080:1 15083:1 15086:1 15094:1 15095:2 15123:1 15132:1 15139:1 15140:1 15144:2 15150:2 15151:1 15152:3 15160:1 15161:6 15162:1 15166:1 15169:1 15178:1 15185:1 15197:1 15205:1 15210:1 15220:1 15222:1 15250:1 15269:1 15278:1 15292:1 15312:3 15315:5 15326:1 15335:1 15345:1 15383:1 15385:2 15400:1 15414:2 15448:1 15460:1 15472:1 15487:1 15502:3 15519:1 15525:2 15526:1 15551:1 15552:1 15574:1 15577:2 15584:2 15587:1 15595:1 15598:1 15675:1 15690:1 15696:1 15705:1 15707:1 15746:1 15747:1 15776:3 15778:38 15782:1 15786:1 15794:1 15797:1 15800:5 15803:1 15813:1 15826:1 15844:6 15855:1 15864:2 15868:1 15871:1 15885:1 15895:1 15900:1 15910:1 15912:1 15913:1 15915:1 15942:2 15943:1 15944:2 15981:1 15989:1 16001:1 16006:2 16008:1 16013:1 16017:1 16022:1 16037:1 16083:2 16092:1 16099:3 16114:1 16134:1 16142:2 16147:1 16149:1 16173:1 16190:1 16196:1 16198:1 16201:1 16213:1 16217:1 16236:1 16241:1 16253:1 16268:2 16269:1 16285:1 16289:1 16293:1 16294:1 16299:1 16303:1 16304:1 16320:1 16327:13 16332:4 16336:3 16354:1 16357:1 16365:2 16372:1 16375:1 16393:1 16394:1 16456:1 16460:1 16475:1 16490:1 16499:1 16502:2 16505:2 16510:6 16515:1 16516:6 16528:1 16535:1 16559:1 16561:1 16581:1 16594:1 16609:14 16613:1 16622:1 16643:1 16661:1 16676:1 16704:1 16706:1 16720:2 16729:1 16731:1 16732:2 16742:1 16775:1 16779:1 16792:3 16797:4 16803:3 16823:1 16831:1 16835:2 16836:1 16837:1 16843:1 16854:1 16862:1 16869:2 16874:2 16882:1 16889:1 16897:1 16898:1 16914:3 16918:1 16923:1 16929:2 16964:1 16968:2 16970:3 16971:1 16973:1 16975:1 16977:2 16978:1 16979:13 16980:1 16981:1 16983:2 17002:1 17003:2 17004:1 17007:1 17008:1 17009:1 17010:1 17011:1 17013:6 17022:1 17026:1 17031:1 17033:2 17064:1 17075:1 17076:1 17082:2 17100:1 17114:1 17120:1 17125:1 17149:1 17152:1 17154:1 17156:1 17161:2 17172:10 17175:1 17181:2 17193:1 17204:1 17214:1 17217:1 17230:1 17234:1 17243:1 17246:1 17273:1 17276:1 17278:2 17286:5 17303:1 17309:1 17315:3 17319:1 17320:2 17333:14 17336:8 17378:1 17398:1 17417:2 17425:1 17426:5 17436:2 17438:1 17449:4 17450:1 17481:1 17513:1 17516:1 17537:1 17545:1 17547:3 17562:1 17564:2 17571:1 17590:1 17598:1 17601:1 17607:2 17623:1 17629:1 17636:1 17639:1 17675:4 17679:1 17693:1 17716:1 17723:1 17734:1 17762:1 17769:1 17784:3 17792:2 17793:1 17794:1 17798:1 17806:2 17813:2 17814:2 17817:3 17819:1 17829:1 17835:2 17836:1 17849:1 17850:2 17858:2 17869:1 17884:1 17903:1 17918:1 17921:1 17924:1 17925:2 17929:1 17941:1 17942:2 17943:1 17945:1 17955:2 17957:2 17972:1 17976:1 17978:2 17981:1 17984:2 17992:1 17993:1 17994:1 17997:1 17998:1 17999:1 18000:1 18005:1 18011:1 18013:1 18016:2 18030:1 18032:1 18037:2 18039:1 18048:1 18057:2 18058:1 18073:1 18080:1 18092:38 18094:1 18101:3 18105:1 18106:1 18110:1 18120:1 18127:1 18128:1 18137:2 18151:1 18184:1 18198:1 18200:1 18203:5 18204:1 18214:1 18215:1 18221:2 18244:1 18249:1 18270:3 18274:1 18276:1 18277:1 18278:1 18290:1 18297:1 18298:1 18320:6 18325:1 18339:1 18342:1 18345:1 18348:1 18390:1 18392:1 18396:1 18442:1 18463:2 18470:2 18471:2 18474:1 18485:1 18493:1 18494:1 18506:1 18517:1 18535:1 18549:1 18559:1 18560:1 18561:2 18563:2 18574:1 18582:1 18593:1 18600:2 18601:1 18603:1 18608:9 18614:1 18645:3 18651:1 18667:1 18673:1 18676:1 18677:1 18696:1 18703:1 18708:4 18710:1 18712:1 18715:1 18727:1 18732:1 18747:1 18752:1 18767:2 18769:1 18779:2 18781:3 18793:1 18794:1 18811:1 18823:2 18855:1 18867:2 18870:1 18876:2 18898:2 18899:1 18928:1 18953:3 18954:1 18959:1 18968:1 18978:1 18989:1 18993:3 18997:1 19019:1 19027:1 19029:1 19050:1 19060:1 19064:2 19067:1 19083:1 19087:2 19090:1 19096:1 19097:1 19120:2 19141:1 19154:1 19169:1 19175:1 19191:1 19192:3 19193:4 19204:1 19225:1 19235:2 19263:9 19269:2 19276:2 19278:1 19287:1 19303:1 19310:1 19336:1 19361:1 19364:1 19397:1 19404:1 19406:1 19416:1 19424:1 19428:1 19435:1 19437:4 19442:2 19450:1 19452:1 19458:4 19469:1 19471:1 19474:1 19475:1 19484:1 19489:1 19490:5 19496:3 19500:2 19513:4 19514:1 19518:1 19525:1 19526:2 19529:1 19532:1 19538:3 19548:1 19567:1 19598:2 19602:1 19605:1 19615:5 19616:1 19620:2 19641:2 19645:4 19649:2 19655:1 19658:1 19664:1 19670:1 19672:1 19679:1 19689:1 19691:3 19703:1 19708:5 19724:1 19766:1 19772:1 19775:1 19787:1 19796:1 19806:2 19810:15 19814:2 19815:1 19820:1 19851:4 19854:3 19858:1 19865:2 19868:2 19876:1 19894:2 19901:1 19904:3 19905:2 19907:1 19908:2 19932:13 19947:1 19956:1 19960:1 19961:1 19967:1 19976:4 20027:3 20034:1 20046:2 20061:1 20065:1 20074:1 20076:1 20078:1 20090:1 20091:3 20101:1 20109:4 20110:2 20111:1 20115:4 20117:2 20123:1 20124:1 20125:4 20126:1 20127:2 20130:1 20153:1 20168:1 20174:2 20201:2 20211:1 20221:1 20231:1 20232:1 20237:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20295:1 20296:1 20318:1 20324:1 20325:1 20350:1 20355:1 20369:2 20383:1 20390:2 20431:1 20444:1 20445:1 20446:2 20455:1 20499:1 20522:1 20537:1 20540:2 20556:2 20566:1 20568:1 20572:1 20588:4 20593:1 20604:2 20606:11 20607:1 20608:1 20617:1 20643:1 20646:1 20649:1 20654:1 20679:2 20680:4 20683:1 20689:1 20690:1 20691:2 20723:1 20727:1 20738:1 20741:1 20746:1 20751:3 20754:1 20762:2 20781:2 20783:1 20785:3 20796:1 20799:2 20816:1 20818:1 20865:1 20878:1 20885:1 20900:1 20917:1 20918:2 20922:1 20926:1 20930:1 20936:1 20941:51 20948:1 20949:3 20966:1 20974:1 20978:1 20980:1 20997:1 21000:1 21003:4 21044:1 21064:1 21071:1 21072:1 21081:2 21083:1 21097:1 21101:1 21116:1 21124:3 21130:2 21145:2 21149:1 21155:1 21170:1 21174:2 21204:1 21209:1 21214:1 21215:1 21235:1 21243:1 21261:1 21263:1 21284:1 21292:1 21299:1 21316:1 21318:2 21322:2 21323:1 21324:1 21337:1 21355:1 21371:1 21376:1 21423:1 21443:1 21445:1 21460:1 21473:2 21477:1 21488:1 21490:1 21500:1 21502:1 21503:2 21508:2 21512:1 21513:1 21518:1 21522:2 21524:1 21530:1 21540:1 21566:2 21586:2 21591:2 21592:1 21593:2 21595:1 21597:1 21602:1 21603:1 21608:2 21612:2 21634:1 21643:1 21660:1 21686:2 21696:1 21701:1 21704:2 21713:2 21724:1 21754:1 21755:1 21769:1 21788:1 21792:1 21806:1 21809:1 21819:1 21822:1 21823:4 21827:1 21829:2 21831:1 21843:1 21864:1 21866:1 21872:2 21874:2 21875:2 21886:1 21892:1 21899:1 21917:2 21925:1 21939:3 21943:2 21975:4 21976:1 21987:5 21996:1 22008:4 22009:1 22019:1 22032:1 22037:1 22067:2 22076:1 22079:8 22083:1 22084:2 22094:1 22123:3 22130:1 22143:2 22169:1 22173:1 22177:2 22181:1 22186:2 22190:1 22207:1 22247:1 22251:2 22298:1 22300:4 22304:2 22305:2 22308:1 22315:1 22327:1 22332:1 22345:2 22347:2 22361:1 22362:1 22386:1 22388:2 22391:1 22406:1 22424:1 22429:5 22437:1 22490:1 22493:2 22497:1 22516:1 22530:2 22547:1 22572:1 22581:1 22584:1 22628:13 22639:1 22643:2 22650:1 22666:1 22668:1 22677:2 22715:1 22720:1 22727:4 22737:1 22754:1 22762:1 22764:1 22781:1 22783:1 22791:2 22800:1 22806:2 22809:1 22816:1 22824:1 22829:1 22839:1 22853:1 22866:1 22870:1 22883:2540 22893:2 22899:1 22909:2 22923:1 22944:1 22965:1 22966:1 22969:1 22971:1 22981:1 22984:1 23008:1 23012:1 23031:3 23039:1 23043:3 23044:1 23079:1 23082:1 23098:1 23113:1 23119:1 23129:2 23139:2 23147:1 23164:1 23171:1 23173:1 23184:1 23189:1 23193:2 23194:1 23202:1 23223:1 23224:1 23270:1 23279:1 23293:2 23302:1 23304:1 23320:1 23321:1 23348:1 23365:2 23371:1 23392:1 23411:1 23427:1 23438:1 23456:1 23457:1 23468:2 23470:1 23474:1 23482:1 23492:1 23501:1 23505:1 23508:1 23509:1 23520:1 23521:3 23523:2 23543:1 23549:1 23560:1 23565:1 23576:1 23603:1 23607:7 23640:5 23647:1 23653:1 23658:2 23664:2 23698:1 23705:1 23706:1 23708:1 23710:1 23712:1 23715:1 23718:1 23735:1 23763:1 23766:1 23772:1 23773:2 23784:1 23787:1 23789:1 23800:1 23805:1 23812:1 23821:1 23833:8 23834:4 23874:1 23880:5 23900:1 23914:2 23922:1 23932:1 23934:3 23947:23 23958:1 23978:1 23979:2 24012:2 24013:1 24017:1 24019:1 24020:1 24021:2 24044:1 24047:4 24049:1 24051:1 24052:2 24064:2 24066:1 24079:1 24092:1 24097:2 24105:3 24106:1 24114:1 24118:1 24128:1 24154:2 24176:1 24185:1 24191:1 24197:1 24201:1 24205:1 24209:4 24217:2 24233:1 24239:3 24240:1 24255:1 24268:1 24271:1 24275:1 24289:2 24292:1 24306:1 24314:2 24322:1 24327:1 24332:2 24342:1 24345:2 24347:1 24364:1 24369:1 24376:4 24385:1 24405:1 24424:1 24444:1 24449:1 24450:1 24452:1 24474:1 24479:1 24480:3 24482:2 24483:1 24491:1 24511:1 24518:2 24534:1 24539:2 24553:2 24566:1 24591:4 24592:9 24598:1 24601:1 24604:1 24607:1 24612:1 24620:1 24622:1 24625:1 24630:2 24640:1 24643:1 24651:2 24653:2 24656:3 24658:7 24663:1 24674:1 24679:1 24680:2 24681:6 24682:1 24683:1 24699:1 24700:1 24704:1 24708:5 24728:3 24729:1 24753:2 24754:1 24762:3 24774:1 24777:1 24781:6 24792:1 24794:1 24808:3 24813:1 24820:1 24826:2 24850:1 24853:1 24869:1 24882:1 24883:5 24894:2 24918:1 24919:1 24924:1 24931:1 24945:1 24950:1 24956:1 24978:1 25000:1 25031:2 25041:1 25047:1 25052:1 25053:1 25058:1 25067:1 25076:1 25080:1 25114:6 25117:1 25122:2 25123:1 25125:1 25143:1 25144:2 25157:2 25161:2 25163:1 25179:3 25194:1 25217:1 25225:1 25240:1 25244:1 25269:1 25285:1 25299:1 25300:3 25303:1 25326:1 25334:2 25351:1 25357:1 25369:3 25373:2 25379:1 25386:2 25392:1 25407:2 25410:3 25417:1 25423:1 25427:2 25428:1 25431:2 25448:1 25450:2 25456:1 25461:1 25468:1 25481:1 25486:1 25491:1 25498:2 25502:2 25505:1 25511:3 25526:1 25527:1 25529:1 25541:1 25543:1 25549:1 25553:2 25554:2 25568:1 25572:1 25577:1 25580:2 25582:2 25586:1 25590:4 25600:2 25602:1 25605:1 25608:3 25609:2 25623:2 25630:1 25632:1 25637:5 25655:1 25690:1 25694:1 25699:1 25720:1 25721:5 25725:1 25733:2 25738:1 25781:1 25782:1 25786:2 25793:3 25807:1 25811:1 25815:1 25824:2 25841:2 25846:1 25848:1 25852:1 25859:2 25867:1 25879:1 25903:1 25907:1 25917:1 25919:1 25922:1 25928:1 25934:1 25943:1 25948:1 25952:1 25973:1 25994:1 26000:1 26005:1 26011:2 26014:1 26018:5 26031:2 26044:1 26052:1 26062:3 26070:1 26091:1 26099:1 26102:2 26107:1 26119:1 26120:1 26124:1 26138:1 26148:1 26151:1 26153:1 26155:1 26156:4 26162:1 26167:1 26178:1 26183:2 26191:1 26203:2 26204:1 26211:1 26212:1 26213:1 26214:1 26215:2 26216:2 26226:1 26228:2 26236:2 26260:1 26261:1 26275:1 26278:1 26279:1 26285:2 26288:1 26295:1 26306:1 26313:1 26319:1 26322:1 26324:2 26327:3 26337:4 26342:1 26344:1 26345:1 26346:1 26347:1 26348:1 26361:2 26362:2 26383:1 26385:4 26394:1 26395:1 26407:1 26415:1 26424:1 26425:1 26426:1 26438:3 26444:1 26453:4 26458:2 26459:1 26460:1 26475:1 26496:1 26505:1 26507:1 26508:8 26521:1 26535:1 26552:1 26555:1 26589:2 26590:1 26593:1 26602:8 26605:2 26608:1 26610:1 26612:5 26614:1 26628:3 26642:1 26644:1 26651:1 26667:2 26668:12 26671:1 26679:1 26694:1 26740:1 26743:1 26744:1 26776:1 26777:2 26779:4 26782:3 26787:1 26794:2 26795:1 26796:1 26797:2 26808:2 26809:2 26815:1 26818:1 26820:1 26826:7 26827:1 26828:4 26835:1 26839:1 26842:1 26843:1 26844:1 26854:1 26874:1 26907:1 26914:1 26930:1 26949:3 26984:3 26995:2 26999:1 27004:4 27008:1 27029:2 27033:1 27043:1 27051:1 27072:1 27087:3 27092:1 27097:1 27099:1 27102:1 27103:1 27114:1 27127:4 27138:1 27149:2 27153:2 27171:1 27183:1 27203:1 27213:2 27221:1 27243:1 27251:2 27259:1 27260:16 27283:2 27287:2 27294:1 27319:1 27331:14 27333:2 27339:1 27343:1 27349:1 27354:1 27355:1 27358:1 27365:1 27393:1 27396:4 27398:2 27401:1 27412:4 27415:2 27419:1 27447:1 27460:7 27470:1 27478:2 27484:1 27490:1 27500:5 27501:1 27508:1 27522:1 27526:1 27527:1 27533:1 27542:1 27544:2 27563:1 27573:2 27591:1 27594:1 27599:1 27601:1 27603:2 27619:10 27633:3 27651:1 27653:1 27677:3 27703:1 27704:1 27723:1 27728:1 27731:1 27752:2 27760:1 27767:2 27776:1 27779:1 27782:1 27787:37 27791:1 27804:1 27808:1 27810:3 27813:3 27814:1 27815:1 27816:1 27817:2 27819:1 27820:1 27825:1 27854:2 27859:3 27860:1 27862:1 27866:1 27876:3 27878:1 27879:1 27889:1 27920:1 27922:1 27925:1 27957:1 27963:1 27966:2 27973:6 27974:1 27983:1 27987:3 28000:2 28007:1 28011:4 28017:1 28038:1 28051:1 28052:1 28081:1 28098:1 28154:1 28160:3 28179:3 28191:1 28192:1 28194:1 28206:1 28263:1 28276:1 28278:1 28279:1 28287:1 28297:1 28298:3 28303:1 28308:1 28310:1 28313:3 28316:1 28317:1 28318:2 28325:1 28348:1 28370:38 28384:1 28398:3 28399:2 28409:1 28433:1 28436:1 28443:1 28460:1 28464:1 28470:1 28472:2 28473:1 28482:2 28483:1 28489:6 28493:1 28512:1 28523:1 28528:2 28541:1 28543:1 28545:1 28559:1 28560:1 28567:1 28572:1 28577:3 28582:2 28587:1 28593:1 28608:2 28612:1 28620:1 28621:1 28639:1 28645:1 28647:2 28650:3 28655:1 28686:2 28693:1 28707:1 28719:1 28752:1 28757:1 28786:1 28788:3 28811:1 28812:1 28814:5 28815:1 28817:2 28826:1 28831:1 28833:1 28852:1 28890:1 28899:1 28908:1 28913:1 28929:1 28932:1 28939:2 28940:1 28949:1 28958:1 28974:2 28983:2 28993:2 28996:2 29004:1 29014:1 29016:1 29020:1 29032:1 29041:3 29087:1 29123:1 29125:1 29126:1 29133:2 29141:1 29149:1 29150:1 29169:1 29170:3 29174:1 29179:1 29187:2 29190:7 29192:1 29196:1 29215:1 29233:1 29241:2 29251:1 29258:1 29271:1 29297:1 29302:1 29320:1 29323:1 29328:1 29330:1 29333:1 29334:1 29363:1 29367:2 29398:1 29405:1 29410:1 29417:1 29419:3 29426:2 29451:1 29455:2 29464:1 29480:1 29486:2 29493:1 29516:2 29527:1 29544:1 29551:1 29554:1 29557:7 29564:2 29566:1 29568:2 29583:2 29584:2 29587:3 29591:1 29592:1 29600:1 29604:1 29619:1 29625:1 29634:3 29635:1 29639:1 29671:1 29679:1 29680:1 29688:10 29689:2 29695:1 29701:1 29715:1 29741:1 29749:1 29752:1 29756:2 29760:1 29761:1 29768:1 29775:1 29777:1 29797:2 29816:1 29822:1 29827:1 29839:1 29840:1 29845:5 29857:1 29887:1 29888:1 29901:2 29911:1 29933:1 29939:1 29942:1 29952:1 29954:1 29957:2 29962:4 29969:1 29972:1 29995:1 30004:1 30015:2 30023:1 30027:1 30035:1 30041:1 30075:1 30079:4 30083:1 30084:2 30091:1 30092:1 30093:1 30095:3 30099:5 30102:1 30103:1 30105:2 30119:1 30127:2 30134:1 30144:2 30165:3 30192:1 30198:2 30199:3 30213:1 30215:1 30219:1 30233:2 30235:2 30238:1 30241:1 30248:1 30253:2 30261:4 30263:1 30273:1 30279:1 30283:1 30284:1 30288:1 30290:1 30294:1 30295:1 30299:1 30307:1 30309:1 30319:1 30320:1 30326:1 30329:1 30330:1 30331:1 30332:1 30350:1 30361:1 30364:1 30370:1 30371:1 30424:1 30434:4 30452:1 30454:1 30478:1 30482:3 30483:2 30489:1 30493:1 30518:1 30535:5 30537:2 30538:2 30541:1 30552:2 30553:1 30566:1 30588:1 30601:1 30613:1 30617:2 30641:2 30677:1 30679:1 30688:1 30690:1 30743:1 30748:1 30777:1 30783:2 30787:1 30788:1 30789:2 30790:6 30794:1 30806:1 30814:6 30817:3 30823:1 30853:1 30855:2 30857:2 30861:1 30907:1 30910:1 30912:2 30920:2 30931:1 30934:1 30944:2 30951:1 30952:1 30960:2 30963:1 30965:1 30970:1 30972:1 30981:4 30987:1 30992:2 31002:1 31005:2 31015:1 31020:1 31026:1 31030:1 31047:1 31048:1 31051:4 31053:1 31054:1 31055:3 31057:1 31059:2 31072:1 31083:1 31089:2 31092:1 31093:1 31095:1 31104:1 31112:2 31123:1 31134:1 31142:1 31148:1 31151:1 31153:1 31168:3 31177:1 31178:1 31181:1 31188:1 31201:1 31210:1 31223:1 31226:1 31235:2 31241:1 31254:1 31255:4 31264:4 31265:2 31276:1 31283:1 31286:1 31296:5 31311:1 31317:4 31319:1 31329:2 31334:4 31369:1 31376:1 31377:5 31384:1 31387:1 31404:1 31411:1 31413:15 31425:2 31444:2 31465:2 31478:1 31486:1 31494:1 31543:1 31550:1 31563:1 31569:1 31574:2 31578:3 31580:1 31588:1 31595:1 31601:1 31603:2 31610:1 31612:1 31641:3 31648:1 31660:3 31663:1 31701:1 31706:1 31708:1 31712:1 31725:1 31737:1 31747:1 31751:1 31752:1 31753:2 31757:1 31767:1 31768:1 31784:1 31785:1 31787:1 31796:1 31797:1 31805:1 31808:2 31834:3 31848:1 31853:1 31866:3 31874:1 31882:2 31885:2 31890:1 31891:1 31893:2 31918:1 31919:1 31929:1 31930:4 31933:2 31946:2 31963:2 31964:1 31968:15 31969:1 31972:1 31979:1 31983:1 31993:3 32010:1 32013:1 32022:1 32025:2 32036:1 32056:1 32057:1 32066:5 32074:1 32085:1 32090:1 32098:1 32099:1 32106:1 32112:1 32115:1 32117:1 32136:1 32140:2 32141:1 32153:1 32208:1 32219:2 32234:1 32259:2 32261:1 32269:1 32285:3 32307:2 32311:1 32317:1 32319:1 32326:1 32329:1 32334:1 32376:4 32400:1 32405:1 32406:4 32413:1 32425:1 32436:1 32459:1 32461:3 32491:1 32492:1 32493:2 32505:2 32515:2 32532:1 32538:1 32553:2 32555:1 32559:1 32574:1 32576:1 32596:1 32597:1 32606:1 32612:1 32624:1 32629:1 32636:1 32682:1 32683:2 32687:1 32691:1 32700:1 32725:2 32726:2 32732:1 32740:1 32745:1 32749:2 32750:6 32752:1 32774:3 32779:1 32785:2 32787:1 32801:4 32813:1 32820:1 32832:4 32841:1 32846:1 32848:3 32879:1 32887:2 32890:7 32891:1 32893:1 32896:2 32908:1 32909:2 32913:1 32917:2 32923:1 32924:1 32929:3 32941:3 32950:2 32955:1 32958:1 32965:1 32970:1 32974:1 32984:1 32997:1 33017:1 33027:1 33031:1 33053:1 33057:2 33066:1 33069:2 33074:1 33080:2 33085:1 33089:1 33092:1 33094:3 33098:1 33100:1 33112:1 33118:1 33128:5 33133:6 33137:1 33141:2 33142:2 33144:2 33157:2 33168:1 33180:1 33182:1 33183:2 33189:1 33218:2 33219:1 33222:1 33231:1 33241:1 33256:1 33272:1 33276:2 33284:1 33287:1 33296:3 33297:1 33309:2 33330:1 33333:1 33335:1 33346:1 33352:10 33388:1 33389:1 33404:1 33413:1 33422:1 33428:2 33439:1 33440:1 33444:3 33446:1 33449:1 33455:1 33461:3 33467:1 33498:1 33502:2 33503:1 33504:1 33505:3 33512:1 33530:1 33533:5 33534:1 33537:2 33543:3 33545:1 33549:1 33552:1 33553:2 33555:1 33556:2 33563:4 33579:2 33589:1 33591:3 33592:1 33595:3 33609:1 33616:1 33620:1 33623:1 33637:1 33663:8 33669:1 33675:1 33680:4 33711:1 33716:1 33720:1 33722:1 33730:1 33732:1 33734:3 33738:1 33743:3 33760:1 33766:1 33769:1 33771:1 33772:1 33794:2 33795:2 33819:1 33820:1 33824:1 33861:1 33865:1 33880:2 33902:1 33910:1 33921:1 33928:1 33930:1 33949:1 33989:1 33997:1 34003:1 34040:1 34049:1 34052:1 34056:3 34057:2 34062:2 34063:1 34067:5 34071:3 34075:8 34076:1 34077:2 34080:1 34083:1 34085:3 34086:1 34099:1 34104:1 34133:1 34139:1 34144:1 34151:3 34155:1 34157:1 34159:1 34160:1 34164:1 34172:1 34174:1 34194:1 34197:1 34204:1 34221:2 34246:2 34253:1 34283:5 34304:1 34306:2 34314:1 34321:2 34322:1 34335:1 34341:1 34351:1 34353:1 34363:1 34364:1 34367:1 34371:1 34373:1 34385:3 34403:1 34407:1 34410:1 34413:3 34423:1 34435:15 34437:2 34440:1 34445:1 34455:1 34470:1 34478:6 34496:1 34497:6 34526:1 34566:1 34570:1 34586:1 34589:1 34596:5 34615:1 34619:1 34621:1 34627:1 34629:1 34630:2 34632:1 34634:12 34643:3 34654:1 34659:1 34662:1 34673:2 34674:1 34682:1 34689:1 34691:14 34701:2 34749:1 34757:2 34761:2 34771:1 34782:1 34794:1 34796:1 34799:1 34803:1 34804:2 34822:1 34834:1 34862:1 34878:2 34924:3 34936:1 34951:1 34957:2 34960:1 34961:1 34968:1 34989:1 34996:47 34997:1 35022:1 35026:5 35031:2 35039:2 35041:5 35042:2 35043:1 35055:1 35056:1 35094:1 35098:1 35124:4 35128:13 35129:1 35135:3 35141:1 35149:1 35152:2 35157:1 35164:1 35167:1 35177:1 35184:1 35201:1 35207:2 35217:1 35253:1 35265:1 35281:3 35289:2 35310:2 35311:1 35326:1 35342:1 35347:1 35354:5 35382:2 35395:5 35410:1 35456:1 35464:3 35468:1 35470:1 35473:1 35488:1 35499:1 35503:2 35517:2 35520:1 35526:2 35529:1 35539:1 35582:1 35585:1 35589:2 35592:1 35602:2 35603:1 35614:1 35625:3 35634:1 35635:1 35636:3 35638:1 35648:1 35656:1 35661:1 35664:1 35665:1 35677:1 35681:2 35692:1 35696:1 35700:1 35714:1 35719:1 35721:1 35731:1 35734:1 35746:1 35748:11 35749:1 35753:2 35757:4 35785:1 35789:3 35805:7 35811:1 35825:1 35831:4 35836:1 35837:2 35838:2 35845:2 35850:38 35862:2 35888:2 35901:1 35919:1 35925:1 35927:1 35939:1 35953:2 35957:1 35958:1 35959:2 35964:2 35965:2 35966:5 35967:1 35989:1 35996:1 36007:1 36010:2 36011:1 36028:2 36033:3 36045:1 36051:1 36059:1 36065:1 36072:1 36075:2 36091:1 2 9:1 10:1 19:1 31:2 32:1 33:1 51:2 54:1 55:1 65:1 68:1 69:1 73:1 76:1 86:2 95:1 104:3 106:2 107:1 122:1 128:1 140:1 166:2 176:1 177:1 184:1 189:1 191:2 196:2 200:2 202:1 207:1 211:1 218:1 221:1 224:1 226:1 230:1 235:1 239:3 251:1 255:1 256:1 271:1 278:3 281:1 297:4 302:6 303:2 309:2 314:1 322:2 323:1 328:1 330:2 365:2 372:1 401:1 412:1 414:4 418:1 433:1 435:2 442:1 446:1 450:1 452:1 454:1 460:1 461:1 478:2 492:1 498:2 503:2 515:1 520:2 526:1 539:1 541:1 549:1 553:1 555:2 568:2 583:2 600:1 601:5 607:1 610:1 621:1 626:1 641:2 650:2 659:1 662:1 671:1 672:1 674:1 684:1 690:1 691:1 705:1 720:1 750:1 751:3 755:2 759:2 761:1 766:1 781:1 787:1 795:6 809:1 820:39 821:1 825:4 831:1 833:1 835:1 854:1 861:1 881:1 886:3 889:3 919:2 930:1 931:1 935:2 941:2 955:3 964:1 967:1 999:2 1019:2 1022:1 1024:3 1028:2 1032:1 1034:2 1035:3 1058:1 1082:4 1091:1 1102:3 1110:1 1115:1 1124:1 1128:1 1135:3 1136:7 1140:3 1142:1 1150:6 1156:1 1167:1 1176:5 1181:1 1194:2 1203:4 1206:13 1210:1 1212:3 1219:1 1226:2 1232:1 1233:2 1234:4 1253:2 1256:1 1260:4 1270:3 1293:1 1301:3 1305:1 1308:1 1322:1 1326:4 1327:1 1330:1 1377:1 1379:1 1385:2 1386:1 1391:1 1397:1 1403:1 1431:1 1442:1 1454:1 1459:4 1479:1 1506:1 1510:2 1537:1 1541:38 1550:3 1554:2 1555:2 1556:1 1564:4 1567:1 1583:1 1592:3 1595:2 1596:2 1603:1 1605:1 1610:1 1611:1 1613:1 1616:2 1617:4 1619:1 1623:1 1626:1 1627:1 1632:1 1634:1 1638:1 1651:1 1652:4 1675:1 1682:3 1705:2 1706:2 1707:1 1740:4 1755:1 1757:1 1760:1 1763:1 1765:1 1771:2 1773:11 1774:1 1792:1 1808:1 1809:1 1824:1 1836:3 1840:1 1843:1 1847:1 1849:2 1861:1 1870:1 1880:1 1888:1 1889:1 1891:4 1895:2 1897:18 1899:1 1903:1 1904:1 1910:1 1911:1 1915:1 1916:2 1918:1 1925:1 1929:2 1930:2 1932:1 1959:1 1960:3 1970:2 1990:1 1991:1 1997:6 2013:1 2014:1 2031:1 2036:1 2037:2 2043:1 2058:3 2067:1 2088:1 2095:1 2097:1 2098:11 2102:1 2104:1 2105:1 2106:3 2123:1 2139:1 2145:1 2147:1 2158:2 2160:1 2164:3 2172:1 2175:1 2180:1 2196:1 2198:1 2199:1 2202:1 2207:1 2218:1 2228:1 2249:1 2260:1 2265:1 2269:1 2276:1 2279:1 2282:1 2292:1 2307:1 2312:1 2317:3 2320:2 2327:2 2328:1 2342:1 2345:1 2348:1 2352:3 2355:1 2364:1 2368:2 2372:1 2376:2 2379:3 2390:1 2400:2 2406:2 2418:3 2420:1 2433:1 2436:1 2438:1 2442:1 2446:1 2449:1 2451:1 2454:1 2455:2 2462:1 2467:1 2474:1 2486:8 2494:1 2508:1 2511:1 2517:1 2522:2 2525:1 2546:1 2547:1 2548:1 2557:1 2566:2 2595:1 2596:1 2598:1 2599:2 2604:1 2607:1 2619:1 2624:1 2638:2 2639:1 2640:1 2642:1 2644:1 2652:1 2655:1 2665:1 2676:1 2696:12 2721:1 2743:3 2746:1 2747:1 2783:1 2789:2 2817:2 2819:1 2827:1 2848:1 2852:1 2857:1 2859:2 2861:2 2862:4 2865:3 2866:2 2867:3 2870:1 2872:6 2873:1 2877:10 2881:5 2883:7 2887:5 2891:1 2892:3 2893:1 2895:1 2897:1 2900:1 2902:4 2906:4 2909:1 2910:1 2913:1 2918:1 2919:1 2920:1 2941:1 2942:1 2946:1 2954:3 2955:1 2971:5 2974:1 2980:1 2999:2 3002:1 3004:1 3026:2 3027:1 3028:1 3035:1 3038:1 3042:1 3044:4 3045:4 3051:1 3054:4 3057:1 3061:1 3075:2 3076:4 3086:4 3087:1 3098:1 3100:1 3106:1 3116:4 3131:1 3132:1 3133:1 3137:1 3145:1 3165:1 3176:2 3177:2 3179:1 3186:1 3191:1 3199:1 3206:1 3218:1 3222:1 3224:3 3234:1 3240:1 3244:1 3255:2 3265:1 3266:1 3267:1 3289:1 3312:1 3313:1 3319:1 3322:2 3331:1 3341:2 3348:3 3358:1 3359:2 3366:1 3367:1 3371:1 3380:3 3381:2 3388:4 3389:1 3406:1 3410:1 3413:3 3415:4 3420:1 3423:3 3429:1 3443:1 3451:1 3454:1 3493:1 3497:3 3507:5 3510:5 3511:1 3516:1 3520:4 3539:2 3547:1 3560:1 3584:2 3590:1 3601:1 3603:2 3608:1 3612:2 3623:1 3645:17 3648:39 3651:1 3652:3 3653:1 3663:2 3666:2 3667:1 3678:1 3681:2 3682:1 3691:4 3692:1 3695:1 3698:1 3706:8 3736:4 3741:2 3745:1 3753:1 3756:1 3766:1 3784:2 3789:1 3792:1 3793:1 3794:1 3836:2 3843:1 3846:4 3851:1 3860:1 3867:1 3897:3 3926:2 3958:1 3962:1 4034:1 4045:1 4067:4 4070:1 4091:1 4097:1 4101:1 4119:2 4142:2 4146:1 4147:2 4157:1 4161:3 4162:1 4171:1 4177:1 4179:4 4193:1 4199:1 4201:2 4211:1 4223:1 4224:1 4226:4 4251:2 4262:1 4279:1 4328:1 4334:1 4355:1 4359:1 4371:1 4375:2 4381:1 4383:1 4384:1 4392:1 4395:1 4396:1 4402:2 4411:1 4412:1 4417:1 4423:1 4444:1 4448:1 4452:1 4459:1 4465:1 4474:1 4476:1 4479:1 4488:1 4492:1 4495:1 4517:2 4531:1 4539:1 4555:1 4564:1 4575:1 4580:1 4582:1 4601:1 4626:1 4643:3 4645:2 4646:1 4651:3 4654:3 4676:1 4712:1 4722:3 4724:1 4755:1 4762:1 4763:2 4767:2 4773:1 4779:1 4780:3 4795:1 4803:1 4809:1 4813:1 4815:2 4819:1 4820:2 4830:2 4843:1 4854:1 4855:2 4857:1 4859:1 4867:3 4882:1 4885:1 4886:1 4887:1 4895:1 4914:1 4920:38 4922:3 4927:1 4931:1 4935:1 4941:2 4947:1 4955:1 4985:1 4992:1 4993:1 5008:1 5011:1 5013:1 5015:2 5019:4 5020:6 5032:2 5039:2 5047:1 5054:6 5058:7 5059:2 5075:1 5076:2 5077:1 5094:1 5117:1 5119:1 5125:1 5134:1 5149:1 5152:1 5153:3 5163:1 5170:3 5174:1 5178:1 5190:1 5194:1 5232:1 5233:1 5235:2 5237:2 5240:1 5241:1 5247:1 5254:1 5263:1 5272:1 5282:1 5295:1 5298:1 5299:2 5300:1 5302:4 5307:1 5308:3 5324:1 5348:1 5364:1 5368:1 5371:3 5391:1 5402:2 5404:1 5408:1 5410:1 5411:1 5416:2 5428:1 5435:2 5437:38 5444:1 5453:2 5456:1 5459:5 5465:1 5470:1 5471:1 5473:1 5483:1 5486:2 5492:1 5513:1 5516:1 5555:2 5566:6 5587:1 5588:1 5598:1 5625:1 5638:3 5655:2 5662:3 5663:1 5672:2 5676:2 5679:1 5683:1 5685:1 5687:1 5712:1 5731:9 5738:2 5760:2 5790:1 5802:1 5832:6 5843:4 5850:1 5869:1 5879:6 5885:1 5899:1 5913:1 5924:1 5929:1 5934:1 5948:1 5960:1 5967:5 5969:2 5973:2 5974:1 5980:1 5983:4 5995:1 6004:1 6005:3 6017:1 6041:1 6043:1 6046:1 6049:1 6075:3 6078:2 6096:21 6097:2 6112:2 6115:1 6140:9 6149:2 6158:2 6171:1 6173:1 6187:2 6191:1 6194:1 6207:1 6217:1 6253:4 6254:2 6257:5 6277:4 6278:6 6279:2 6282:1 6285:6 6291:1 6292:2 6293:4 6294:1 6303:1 6309:2 6312:6 6314:1 6315:4 6316:1 6326:1 6334:1 6358:1 6382:1 6407:1 6411:2 6417:1 6430:1 6451:1 6473:1 6483:1 6490:1 6495:1 6506:1 6528:1 6561:1 6580:1 6584:1 6610:1 6614:1 6622:1 6623:2 6628:1 6655:1 6679:1 6683:1 6684:1 6695:2 6698:2 6729:1 6738:4 6739:1 6758:1 6759:2 6787:1 6794:1 6799:1 6801:2 6803:1 6807:1 6832:1 6835:1 6843:2 6859:1 6861:1 6867:3 6870:1 6908:1 6942:1 6956:1 6957:1 6961:1 6968:1 6970:1 6972:1 6982:2 6983:1 6986:2 6991:2 6996:1 7006:1 7008:1 7010:1 7012:1 7036:2 7037:1 7038:2 7046:1 7051:1 7053:1 7061:2 7062:11 7063:1 7065:1 7070:2 7072:1 7076:1 7083:1 7086:2 7119:2 7130:2 7138:1 7140:1 7164:2 7167:2 7174:1 7198:1 7205:1 7213:1 7225:2 7243:1 7250:1 7252:2 7264:2 7270:1 7289:12 7295:3 7334:1 7346:1 7366:1 7368:1 7377:1 7383:1 7394:1 7397:1 7421:1 7422:1 7423:2 7432:3 7434:1 7451:1 7455:2 7494:1 7496:1 7525:1 7532:1 7537:2 7543:1 7552:1 7561:2 7567:2 7580:3 7583:1 7589:1 7591:1 7599:1 7603:3 7604:5 7605:1 7607:1 7608:1 7616:1 7618:1 7622:1 7625:1 7627:1 7630:1 7635:1 7650:1 7656:1 7657:1 7665:1 7684:1 7690:1 7707:2 7708:2 7709:1 7715:1 7716:1 7718:1 7721:2 7722:1 7725:1 7727:1 7728:1 7729:3 7734:2 7736:2 7739:2 7741:3 7742:1 7748:1 7764:1 7782:2 7805:1 7822:5 7825:2 7840:1 7847:1 7852:4 7857:2 7860:1 7871:4 7878:1 7880:2 7881:1 7891:1 7895:1 7905:1 7937:2 7945:2 7965:1 7966:1 7972:1 7974:1 7989:10 7993:1 7995:1 8002:2 8004:5 8006:2 8007:1 8008:1 8009:2 8010:1 8014:5 8015:4 8016:1 8017:1 8019:4 8020:9 8021:1 8022:3 8030:1 8034:1 8054:1 8077:1 8082:1 8085:2 8086:1 8125:1 8136:1 8143:1 8176:1 8185:2 8186:1 8200:3 8203:3 8224:1 8243:3 8257:1 8260:1 8284:1 8293:1 8295:1 8297:1 8308:1 8315:1 8316:1 8323:1 8328:1 8335:1 8345:1 8348:2 8349:1 8366:1 8370:3 8377:1 8393:2 8421:1 8427:1 8446:1 8449:1 8481:1 8483:1 8489:1 8493:1 8496:1 8501:3 8503:1 8505:1 8524:3 8534:1 8545:1 8564:3 8566:1 8570:1 8577:1 8597:2 8602:3 8617:1 8641:1 8648:1 8654:1 8661:1 8691:1 8693:1 8695:2 8709:1 8714:2 8731:1 8738:1 8751:1 8760:1 8772:1 8775:1 8841:1 8842:1 8845:1 8849:1 8854:5 8866:1 8869:1 8880:2 8883:6 8905:1 8940:1 8943:1 8946:1 8955:1 8960:1 8966:2 8969:1 8975:1 8978:2 8993:1 8996:1 9007:1 9012:2 9026:1 9033:1 9052:3 9060:1 9090:1 9113:1 9122:1 9123:2 9125:1 9126:1 9134:1 9138:1 9143:1 9146:1 9149:1 9153:1 9160:1 9194:1 9197:1 9205:1 9216:1 9217:2 9231:1 9247:1 9253:1 9260:1 9278:1 9282:2 9306:1 9307:1 9325:1 9328:1 9333:1 9337:1 9338:6 9372:9 9374:1 9381:1 9394:1 9426:1 9428:2 9433:1 9437:1 9442:1 9446:1 9470:2 9484:1 9492:1 9495:1 9499:1 9526:4 9529:1 9533:1 9577:1 9579:1 9586:1 9588:1 9612:3 9619:1 9623:1 9628:13 9629:13 9637:1 9647:1 9654:1 9655:3 9656:1 9657:6 9661:1 9688:5 9694:4 9695:1 9702:60 9707:1 9708:1 9711:2 9719:1 9720:1 9723:1 9733:19 9738:6 9744:1 9750:1 9754:1 9758:1 9761:1 9778:1 9780:1 9781:4 9787:2 9793:2 9803:1 9813:1 9834:1 9849:6 9866:2 9870:1 9877:1 9885:1 9895:1 9924:1 9926:3 9942:4 9956:1 9957:1 9963:1 9967:4 9968:1 9975:1 9978:1 9999:7 10011:1 10016:1 10023:1 10036:1 10058:1 10063:2 10079:2 10099:2 10103:1 10161:1 10167:1 10171:1 10175:2 10209:2 10213:1 10223:1 10230:1 10231:1 10235:3 10242:1 10261:2 10284:2 10286:1 10287:1 10298:1 10313:2 10314:1 10321:38 10331:1 10333:1 10338:1 10340:1 10342:1 10349:1 10356:1 10358:1 10359:21 10360:4 10376:1 10378:2 10399:1 10401:1 10406:1 10407:1 10411:1 10412:2 10424:1 10431:1 10444:1 10452:1 10470:48 10488:1 10520:2 10529:1 10552:1 10559:1 10573:1 10598:1 10599:2 10612:1 10615:1 10624:1 10631:1 10658:1 10669:1 10676:1 10683:1 10686:2 10695:1 10697:1 10701:3 10703:1 10704:1 10706:1 10707:2 10711:1 10716:2 10717:5 10718:1 10736:1 10744:1 10749:2 10765:1 10772:3 10773:1 10777:1 10778:1 10789:2 10791:1 10792:2 10796:2 10798:1 10807:2 10808:2 10812:1 10813:1 10826:1 10831:1 10848:1 10849:1 10850:1 10864:1 10878:1 10884:2 10895:1 10900:2 10911:4 10937:1 10979:1 10991:1 10994:1 11002:3 11075:3 11078:1 11081:1 11109:2 11118:1 11123:1 11129:1 11140:1 11163:2 11165:1 11169:1 11176:1 11179:1 11181:1 11183:2 11203:1 11207:1 11212:4 11226:1 11230:2 11231:1 11233:4 11238:1 11247:3 11258:1 11268:1 11270:1 11272:1 11311:1 11320:1 11325:1 11334:3 11340:1 11343:2 11347:2 11373:1 11378:1 11382:6 11389:1 11391:5 11402:1 11404:1 11412:2 11422:1 11457:1 11489:4 11520:1 11522:3 11523:1 11524:2 11556:1 11557:4 11561:2 11564:1 11569:5 11571:3 11572:1 11573:1 11575:1 11583:2 11585:2 11587:2 11590:1 11598:1 11601:1 11609:1 11617:1 11619:1 11622:1 11625:1 11628:1 11636:1 11639:1 11640:1 11641:1 11642:2 11643:1 11645:1 11654:1 11668:1 11675:1 11678:3 11690:9 11694:2 11697:2 11707:2 11718:2 11720:1 11723:1 11739:3 11744:1 11745:1 11755:1 11770:1 11771:1 11774:2 11776:1 11791:1 11793:3 11795:2 11804:1 11815:1 11835:1 11838:1 11840:1 11848:1 11851:1 11861:1 11864:1 11865:2 11872:2 11876:2 11882:1 11885:1 11887:1 11888:2 11889:1 11899:1 11902:1 11903:1 11910:1 11912:1 11917:2 11918:1 11919:11 11930:1 11931:2 11932:12 11936:1 11947:1 11955:1 11959:1 11961:3 11966:1 11969:1 11976:1 11978:1 11982:3 11984:1 11985:2 11988:1 11992:1 12004:1 12014:1 12031:1 12033:1 12046:1 12052:1 12056:1 12057:1 12073:1 12076:2 12078:1 12081:1 12082:1 12083:2 12086:1 12096:1 12104:1 12111:1 12112:1 12113:1 12120:1 12121:1 12131:2 12146:1 12147:1 12186:1 12191:1 12214:1 12221:6 12229:1 12230:1 12231:1 12237:3 12239:4 12248:1 12254:1 12255:1 12257:1 12263:1 12269:1 12275:1 12282:1 12301:1 12324:2 12339:1 12359:1 12361:1 12391:38 12394:1 12398:1 12401:1 12407:2 12420:1 12428:1 12435:2 12446:1 12451:1 12453:1 12458:1 12471:1 12473:1 12479:2 12490:2 12493:1 12497:1 12508:1 12520:1 12521:1 12532:1 12538:1 12540:5 12547:3 12552:1 12561:2 12570:2 12580:1 12592:1 12607:1 12608:1 12618:2 12619:2 12630:2 12636:1 12641:1 12643:2 12651:2 12654:2 12669:5 12673:5 12684:1 12689:1 12692:3 12694:1 12734:5 12738:1 12756:1 12757:1 12760:2 12774:1 12777:1 12794:1 12808:1 12821:2 12824:3 12825:1 12829:1 12837:1 12844:1 12848:1 12850:1 12867:8 12868:1 12879:1 12881:1 12898:2 12936:1 12956:1 12958:1 12959:1 12977:2 12981:1 12987:1 12988:1 13013:5 13028:1 13040:2 13049:1 13051:1 13052:2 13058:1 13078:1 13079:1 13080:1 13089:1 13096:1 13112:2 13113:8 13122:1 13128:1 13145:1 13154:3 13175:1 13179:1 13187:1 13213:1 13234:1 13241:1 13258:5 13267:1 13282:1 13283:5 13285:2 13297:1 13303:1 13316:1 13325:2 13351:1 13357:3 13377:1 13384:1 13385:2 13411:1 13412:5 13415:1 13418:2 13420:8 13429:1 13443:1 13454:1 13457:1 13464:2 13468:1 13471:1 13472:1 13474:1 13481:1 13483:2 13487:1 13493:7 13498:1 13505:1 13509:1 13516:1 13517:3 13523:1 13537:1 13550:1 13567:1 13568:1 13588:1 13601:1 13632:11 13633:1 13647:1 13648:1 13657:1 13669:3 13673:1 13682:1 13686:3 13690:3 13694:3 13704:2 13710:1 13721:5 13729:1 13737:1 13749:1 13761:2 13765:2 13767:1 13768:1 13777:1 13793:1 13798:10 13803:1 13808:1 13815:1 13823:1 13824:3 13826:4 13828:1 13837:4 13845:2 13849:1 13859:1 13873:1 13880:1 13881:1 13882:1 13891:6 13895:1 13897:1 13898:1 13900:2 13901:1 13910:2 13919:1 13921:2 13926:1 13931:1 13942:1 13956:1 13972:3 13974:1 13996:1 13998:1 14008:1 14009:1 14015:1 14017:1 14029:1 14032:3 14036:1 14042:1 14070:2 14071:2 14092:1 14093:2 14095:2 14105:2 14107:1 14108:1 14114:1 14115:1 14116:4 14119:1 14121:1 14122:2 14124:1 14128:1 14134:1 14145:2 14146:6 14149:1 14152:1 14154:1 14162:1 14186:1 14189:3 14191:1 14192:1 14218:1 14228:1 14235:5 14263:1 14265:1 14280:1 14286:2 14291:1 14292:1 14296:1 14302:1 14308:1 14309:1 14322:10 14337:2 14340:2 14342:1 14376:1 14380:1 14388:1 14404:2 14406:1 14410:1 14411:1 14416:1 14430:1 14448:2 14462:1 14464:2 14488:1 14491:6 14515:1 14517:1 14519:1 14523:1 14528:1 14533:3 14549:1 14550:1 14554:2 14555:1 14559:2 14564:1 14567:7 14568:5 14571:2 14577:1 14580:6 14586:1 14611:1 14614:1 14621:2 14628:1 14632:2 14636:1 14638:9 14642:1 14643:1 14654:1 14666:1 14667:1 14675:2 14679:1 14686:1 14689:1 14716:1 14727:3 14735:1 14737:1 14742:4 14744:1 14772:3 14787:1 14791:4 14803:1 14820:1 14835:1 14840:2 14841:1 14844:1 14854:1 14869:1 14870:1 14910:1 14913:1 14940:1 14941:2 14960:1 14984:1 15012:1 15014:1 15030:1 15037:3 15039:1 15046:1 15060:4 15079:1 15080:1 15083:1 15086:1 15094:1 15095:2 15123:1 15132:1 15139:1 15140:1 15144:3 15150:2 15151:1 15152:3 15153:1 15160:1 15161:6 15162:1 15166:1 15169:1 15178:1 15185:1 15197:1 15205:1 15210:1 15220:1 15222:1 15250:1 15269:1 15278:1 15292:1 15312:3 15315:5 15326:1 15335:1 15345:1 15383:1 15385:2 15400:1 15414:2 15448:1 15460:1 15472:1 15487:1 15502:3 15519:1 15525:2 15526:1 15551:1 15552:1 15574:1 15577:2 15584:3 15587:1 15595:1 15598:1 15675:1 15690:1 15696:1 15705:1 15707:1 15746:1 15747:1 15776:3 15778:39 15782:1 15786:1 15794:1 15797:1 15800:6 15803:1 15813:1 15826:1 15844:6 15855:1 15864:2 15868:1 15871:1 15885:1 15895:1 15900:1 15910:1 15912:1 15913:1 15915:1 15942:2 15943:1 15944:2 15981:1 15989:1 16001:1 16006:2 16008:1 16013:1 16017:1 16022:1 16037:1 16083:2 16092:1 16099:3 16114:1 16134:1 16142:2 16147:1 16149:1 16173:1 16190:1 16196:1 16198:1 16201:1 16213:1 16217:1 16236:1 16241:1 16253:1 16268:2 16269:1 16275:1 16285:1 16289:1 16293:1 16294:1 16299:1 16303:1 16304:1 16320:1 16327:13 16332:4 16336:3 16354:1 16357:1 16365:2 16372:1 16375:1 16393:1 16394:1 16456:1 16460:2 16475:1 16490:1 16499:1 16502:2 16505:2 16510:6 16515:1 16516:6 16528:1 16535:1 16559:1 16561:1 16581:1 16594:1 16609:14 16613:1 16622:1 16643:1 16661:1 16676:1 16704:1 16706:1 16720:2 16729:1 16731:1 16732:2 16742:1 16775:1 16779:1 16792:3 16797:4 16803:3 16823:1 16831:1 16835:2 16836:1 16837:1 16843:1 16854:1 16862:1 16869:2 16874:2 16882:1 16889:1 16897:1 16898:1 16914:3 16918:1 16923:1 16929:2 16964:1 16968:2 16970:3 16971:1 16973:1 16975:1 16977:2 16978:1 16979:13 16980:1 16981:1 16983:2 17002:1 17003:2 17004:1 17007:1 17008:1 17009:1 17010:1 17011:1 17013:6 17022:1 17026:1 17031:1 17033:2 17064:1 17075:1 17076:1 17082:2 17100:1 17114:1 17120:1 17125:1 17149:1 17152:1 17154:1 17156:1 17161:2 17172:10 17175:1 17181:2 17193:1 17204:1 17214:1 17217:1 17230:1 17234:1 17243:1 17246:1 17250:1 17273:1 17276:1 17278:2 17286:5 17303:1 17309:1 17315:3 17319:1 17320:2 17333:14 17336:8 17378:1 17398:1 17417:2 17425:1 17426:5 17436:2 17438:1 17449:4 17450:1 17481:1 17513:1 17516:1 17537:1 17545:1 17547:3 17562:1 17564:2 17571:1 17590:1 17598:1 17600:1 17601:1 17607:2 17623:1 17629:1 17636:1 17639:1 17675:5 17679:1 17693:1 17716:1 17723:1 17734:1 17762:1 17769:1 17784:3 17792:2 17793:1 17794:1 17798:1 17806:2 17813:2 17814:2 17817:3 17819:1 17820:1 17829:1 17835:2 17836:1 17849:1 17850:2 17858:2 17869:1 17884:1 17903:1 17918:1 17921:1 17924:1 17925:2 17929:1 17941:1 17942:2 17943:1 17945:1 17955:2 17957:2 17972:1 17976:1 17978:2 17981:1 17984:2 17992:1 17993:1 17994:1 17997:1 17998:1 17999:1 18000:1 18005:1 18011:1 18013:1 18016:2 18030:1 18032:1 18037:2 18039:1 18048:1 18057:2 18058:1 18073:1 18080:1 18092:39 18094:1 18101:3 18105:1 18106:1 18110:1 18120:1 18127:1 18128:1 18137:2 18151:1 18184:1 18198:1 18200:1 18203:6 18204:1 18214:1 18215:1 18221:2 18244:1 18249:1 18270:3 18274:1 18276:1 18277:1 18278:1 18290:1 18297:1 18298:1 18312:1 18320:6 18325:1 18339:1 18342:1 18345:1 18348:1 18378:1 18390:1 18392:1 18396:1 18442:1 18463:2 18465:1 18470:2 18471:2 18474:1 18485:1 18493:1 18494:1 18506:1 18517:1 18535:1 18549:1 18559:1 18560:1 18561:2 18563:2 18574:1 18582:1 18593:1 18600:2 18601:1 18603:1 18608:9 18614:1 18645:3 18651:1 18667:1 18673:1 18676:1 18677:1 18696:1 18703:1 18708:4 18710:1 18712:1 18715:1 18727:1 18732:1 18747:1 18752:1 18767:2 18769:1 18779:2 18781:3 18793:1 18794:1 18811:1 18823:2 18849:1 18855:1 18867:2 18870:1 18876:2 18898:2 18899:1 18915:1 18928:1 18953:3 18954:1 18959:1 18968:1 18978:1 18989:1 18993:3 18997:1 19019:1 19027:1 19029:1 19050:1 19060:1 19064:2 19067:1 19083:1 19087:2 19090:2 19096:1 19097:1 19120:2 19141:1 19154:1 19169:1 19175:1 19191:1 19192:3 19193:4 19204:1 19225:1 19235:2 19263:9 19269:2 19276:2 19278:1 19287:1 19303:1 19310:1 19336:1 19361:1 19364:2 19397:1 19404:1 19406:1 19416:1 19424:1 19428:1 19435:1 19437:4 19442:2 19450:1 19452:1 19458:4 19469:1 19471:1 19474:1 19475:1 19484:1 19489:1 19490:6 19496:3 19500:2 19513:4 19514:1 19518:1 19525:1 19526:2 19529:1 19532:1 19538:3 19548:1 19567:1 19598:2 19602:1 19605:1 19615:5 19616:1 19620:2 19641:2 19645:4 19649:2 19655:1 19658:1 19664:1 19670:1 19672:1 19679:1 19689:1 19691:3 19703:1 19708:5 19724:1 19766:1 19772:1 19775:1 19787:1 19796:1 19806:2 19810:15 19814:2 19815:1 19820:1 19851:4 19854:3 19858:1 19865:3 19868:2 19876:1 19894:2 19901:1 19904:3 19905:2 19907:1 19908:2 19932:13 19947:1 19956:1 19960:1 19961:1 19967:1 19976:4 20024:1 20027:3 20034:1 20046:2 20061:1 20065:1 20074:1 20076:1 20078:1 20090:1 20091:3 20101:1 20109:4 20110:3 20111:1 20115:4 20117:2 20123:1 20124:1 20125:5 20126:1 20127:2 20130:1 20153:1 20168:1 20174:2 20201:2 20211:1 20221:1 20231:1 20232:1 20237:1 20242:1 20247:1 20261:1 20272:1 20286:1 20292:1 20295:1 20296:1 20318:1 20324:1 20325:1 20350:1 20355:1 20369:2 20383:1 20390:2 20431:1 20444:1 20445:1 20446:2 20455:1 20499:1 20522:1 20537:1 20540:2 20556:2 20566:1 20568:1 20572:1 20588:4 20593:1 20604:2 20606:11 20607:1 20608:1 20617:1 20643:1 20646:1 20649:1 20654:1 20671:1 20679:2 20680:4 20683:1 20689:1 20690:1 20691:2 20723:1 20727:1 20733:1 20738:1 20741:1 20746:1 20751:3 20754:1 20762:2 20773:1 20781:2 20783:1 20785:3 20796:1 20799:2 20816:1 20818:1 20865:1 20878:1 20885:1 20900:1 20917:1 20918:2 20922:1 20926:1 20930:1 20936:1 20941:52 20948:1 20949:3 20966:1 20974:1 20978:1 20980:1 20997:1 21000:1 21003:4 21044:1 21064:1 21071:1 21072:1 21075:1 21081:2 21083:1 21097:1 21101:1 21116:1 21124:3 21130:2 21145:2 21149:1 21155:1 21170:1 21174:2 21204:1 21209:1 21214:1 21215:1 21235:1 21243:1 21261:1 21263:1 21284:1 21292:1 21299:1 21316:1 21318:2 21322:2 21323:1 21324:1 21337:1 21355:1 21371:1 21376:1 21423:1 21443:1 21445:1 21460:1 21473:2 21477:1 21488:1 21490:1 21500:2 21502:1 21503:2 21508:2 21512:1 21513:1 21518:1 21522:2 21524:1 21530:1 21540:1 21566:2 21586:2 21591:2 21592:1 21593:2 21595:1 21597:1 21602:1 21603:1 21608:2 21612:2 21634:1 21643:1 21660:1 21686:2 21696:1 21701:1 21704:2 21713:2 21724:1 21754:1 21755:2 21769:1 21788:1 21792:1 21806:1 21809:1 21819:1 21822:1 21823:4 21827:1 21829:2 21831:1 21843:1 21864:1 21866:1 21872:2 21874:2 21875:2 21886:1 21888:1 21892:1 21899:1 21912:1 21917:2 21925:1 21939:3 21943:2 21975:4 21976:1 21987:5 21996:1 22008:4 22009:1 22019:1 22032:1 22037:1 22067:2 22076:1 22079:8 22083:1 22084:2 22094:1 22123:3 22130:1 22143:2 22169:1 22173:1 22177:2 22181:1 22186:2 22190:1 22207:1 22247:1 22251:2 22298:1 22300:5 22304:2 22305:2 22308:1 22315:1 22327:1 22332:1 22343:1 22345:2 22347:2 22361:1 22362:1 22386:1 22388:2 22391:1 22406:1 22413:1 22424:1 22429:5 22437:1 22490:1 22493:2 22497:1 22516:1 22530:3 22547:1 22572:1 22581:1 22584:1 22628:14 22639:1 22643:2 22650:1 22666:1 22668:1 22677:2 22715:1 22720:1 22727:4 22737:1 22754:1 22762:1 22764:1 22781:1 22783:1 22791:2 22800:1 22806:2 22809:1 22816:1 22824:1 22829:1 22839:1 22853:1 22866:1 22870:1 22883:2570 22893:2 22899:1 22909:2 22923:1 22924:1 22944:1 22965:1 22966:1 22969:1 22971:1 22981:1 22984:1 23008:1 23012:1 23031:3 23039:1 23043:3 23044:1 23079:1 23082:1 23098:1 23113:1 23119:1 23129:2 23139:2 23147:1 23164:1 23171:1 23173:1 23184:1 23189:1 23193:2 23194:1 23202:1 23223:1 23224:1 23270:1 23279:1 23293:2 23302:1 23304:1 23320:1 23321:1 23348:1 23365:2 23371:1 23392:1 23411:1 23427:1 23438:1 23456:1 23457:1 23468:2 23470:1 23474:1 23482:1 23492:1 23501:1 23505:1 23508:1 23509:1 23520:1 23521:3 23523:2 23543:1 23549:1 23560:1 23565:1 23576:1 23603:1 23607:7 23640:5 23647:1 23653:1 23658:2 23664:2 23698:1 23705:1 23706:1 23708:1 23710:1 23712:1 23715:1 23718:1 23735:1 23763:1 23766:1 23772:1 23773:2 23784:1 23787:1 23789:1 23800:1 23805:1 23812:1 23821:1 23833:8 23834:4 23874:1 23880:5 23900:1 23914:2 23922:1 23932:1 23934:3 23947:23 23958:1 23978:1 23979:2 24012:2 24013:1 24017:1 24019:1 24020:1 24021:2 24044:1 24047:4 24049:1 24051:1 24052:2 24064:2 24066:1 24079:1 24092:1 24097:2 24105:3 24106:1 24114:1 24118:1 24128:1 24154:2 24176:1 24185:1 24191:1 24197:1 24201:1 24205:1 24209:4 24217:2 24233:1 24239:3 24240:1 24255:1 24268:1 24271:1 24275:1 24289:2 24292:1 24306:1 24314:2 24322:1 24327:1 24332:2 24342:1 24345:2 24347:1 24364:1 24369:1 24376:5 24385:1 24405:1 24423:1 24424:1 24444:1 24449:1 24450:1 24452:1 24474:1 24479:1 24480:3 24482:2 24483:1 24491:1 24511:1 24518:2 24534:1 24539:2 24553:2 24566:1 24591:4 24592:9 24598:1 24601:1 24604:1 24607:1 24612:1 24620:1 24622:1 24625:1 24630:2 24640:1 24643:1 24651:2 24653:2 24656:3 24658:7 24663:1 24674:1 24679:1 24680:2 24681:6 24682:1 24683:1 24699:1 24700:1 24704:1 24708:5 24728:3 24729:1 24753:2 24754:1 24762:3 24774:1 24777:1 24781:6 24792:1 24794:1 24808:3 24813:1 24820:1 24826:2 24850:1 24853:1 24869:1 24882:1 24883:5 24894:2 24918:1 24919:2 24924:1 24931:1 24945:1 24950:1 24956:1 24978:1 25000:1 25015:1 25031:2 25041:1 25047:1 25052:1 25053:1 25058:1 25067:1 25076:1 25080:1 25114:6 25117:1 25122:2 25123:1 25125:1 25143:1 25144:2 25157:2 25161:2 25163:1 25179:3 25194:1 25217:1 25225:1 25240:1 25244:1 25269:1 25285:1 25299:1 25300:3 25303:1 25326:1 25334:2 25351:1 25357:1 25369:3 25373:2 25379:1 25386:2 25392:1 25407:2 25410:3 25417:1 25423:1 25427:2 25428:1 25431:2 25448:1 25450:2 25456:1 25461:1 25468:1 25481:1 25486:1 25491:1 25498:2 25502:2 25505:1 25511:3 25526:1 25527:1 25529:1 25541:1 25543:1 25545:1 25549:1 25553:2 25554:2 25568:1 25572:1 25577:1 25580:2 25582:2 25586:1 25590:4 25600:2 25602:1 25605:1 25608:3 25609:2 25623:2 25630:1 25632:1 25637:5 25655:1 25690:1 25694:1 25699:1 25720:1 25721:5 25725:1 25733:2 25738:1 25781:1 25782:1 25786:2 25793:3 25807:1 25811:1 25815:1 25824:2 25841:2 25846:2 25848:1 25852:1 25859:2 25867:1 25879:1 25903:1 25907:1 25917:1 25919:1 25922:1 25928:1 25934:1 25943:1 25948:1 25952:1 25973:1 25994:1 26000:1 26005:1 26011:2 26014:1 26018:5 26031:2 26044:1 26052:1 26062:3 26070:1 26091:1 26099:1 26102:2 26107:1 26119:1 26120:1 26124:1 26138:1 26148:1 26151:1 26153:1 26155:1 26156:4 26162:1 26167:1 26178:1 26183:2 26191:1 26195:1 26203:2 26204:1 26211:1 26212:1 26213:1 26214:1 26215:2 26216:2 26226:1 26228:2 26236:2 26260:1 26261:1 26275:1 26278:1 26279:1 26285:2 26288:1 26295:1 26306:1 26313:1 26319:1 26322:1 26324:2 26327:3 26337:4 26342:1 26343:1 26344:1 26345:1 26346:1 26347:1 26348:1 26361:2 26362:2 26383:1 26385:4 26394:1 26395:1 26407:1 26415:1 26424:1 26425:1 26426:1 26438:3 26444:1 26453:4 26458:2 26459:1 26460:1 26475:1 26496:1 26505:1 26507:1 26508:8 26521:1 26535:2 26552:1 26555:1 26589:2 26590:1 26593:1 26602:8 26605:2 26608:1 26610:1 26612:5 26614:1 26628:3 26642:1 26644:1 26651:1 26667:2 26668:12 26671:1 26679:1 26694:1 26740:1 26743:1 26744:1 26776:1 26777:2 26779:5 26782:3 26787:1 26794:2 26795:1 26796:1 26797:2 26808:2 26809:2 26815:1 26818:1 26820:1 26826:7 26827:1 26828:4 26835:1 26839:1 26842:1 26843:1 26844:1 26854:1 26874:1 26907:1 26914:1 26930:1 26949:3 26984:3 26995:2 26999:1 27004:4 27008:1 27029:2 27033:1 27043:1 27051:2 27072:1 27087:4 27092:1 27097:1 27099:1 27102:1 27103:1 27114:1 27127:4 27138:1 27149:2 27153:2 27164:1 27171:1 27183:1 27203:1 27213:2 27221:1 27243:1 27251:2 27259:1 27260:17 27283:2 27287:2 27294:1 27319:1 27331:14 27333:2 27339:1 27343:1 27349:1 27354:1 27355:1 27358:1 27365:1 27393:1 27396:4 27398:2 27401:1 27410:1 27412:4 27415:2 27419:1 27447:2 27460:7 27470:1 27478:2 27484:1 27490:1 27500:5 27501:1 27508:1 27522:1 27526:1 27527:1 27533:1 27542:1 27544:2 27563:1 27573:2 27591:1 27594:1 27599:1 27601:1 27603:2 27619:10 27633:3 27651:1 27653:1 27677:3 27703:1 27704:1 27723:1 27728:1 27731:1 27752:2 27760:1 27767:2 27776:1 27779:1 27782:1 27787:38 27791:1 27804:1 27808:1 27810:3 27813:3 27814:1 27815:1 27816:1 27817:2 27819:1 27820:1 27825:1 27854:2 27859:3 27860:1 27862:1 27866:1 27876:3 27878:1 27879:1 27889:1 27920:1 27922:1 27925:1 27957:1 27963:1 27966:2 27973:6 27974:1 27983:1 27987:3 28000:2 28007:1 28011:4 28017:1 28038:1 28051:1 28052:1 28081:1 28098:1 28154:1 28160:3 28179:4 28191:1 28192:1 28194:1 28206:1 28263:1 28276:1 28278:1 28279:1 28287:2 28297:1 28298:3 28303:1 28308:1 28310:1 28313:3 28316:1 28317:1 28318:2 28325:1 28348:1 28370:39 28384:1 28398:3 28399:2 28409:1 28433:1 28436:1 28443:1 28460:1 28464:1 28467:1 28470:1 28472:2 28473:1 28475:1 28482:2 28483:1 28489:6 28493:1 28512:1 28523:1 28528:2 28541:1 28543:1 28545:1 28559:1 28560:1 28567:1 28572:1 28577:3 28582:2 28587:1 28593:1 28608:2 28612:1 28620:1 28621:1 28639:1 28645:1 28647:2 28650:3 28655:1 28686:2 28693:1 28707:1 28719:1 28752:1 28757:1 28786:1 28788:3 28811:1 28812:1 28814:5 28815:1 28817:2 28826:1 28831:1 28833:1 28840:1 28852:1 28890:1 28899:1 28908:1 28913:1 28929:1 28932:1 28939:2 28940:1 28949:1 28958:1 28974:2 28983:2 28993:2 28996:3 29004:2 29014:1 29016:1 29020:1 29032:1 29041:3 29087:1 29123:1 29125:1 29126:1 29133:2 29141:1 29149:1 29150:1 29169:1 29170:3 29174:1 29179:1 29187:2 29190:7 29192:1 29196:1 29215:1 29233:1 29241:2 29251:1 29258:1 29271:1 29297:1 29302:1 29320:1 29323:1 29328:1 29330:1 29333:1 29334:1 29363:1 29367:2 29398:1 29405:1 29410:1 29417:1 29419:3 29426:2 29451:1 29455:2 29464:1 29480:1 29486:2 29493:1 29516:2 29527:1 29544:1 29551:1 29554:1 29557:7 29564:2 29566:1 29568:2 29583:2 29584:2 29587:3 29591:1 29592:1 29600:1 29604:1 29619:1 29625:1 29634:3 29635:1 29639:1 29642:1 29671:1 29679:1 29680:1 29688:10 29689:2 29695:1 29701:1 29715:1 29741:1 29749:1 29752:1 29756:2 29760:1 29761:1 29768:1 29775:1 29777:1 29783:1 29797:2 29816:1 29822:1 29827:1 29839:1 29840:1 29845:5 29857:1 29887:1 29888:1 29901:2 29911:1 29933:1 29939:1 29942:1 29952:1 29954:1 29957:2 29962:4 29969:1 29972:1 29995:1 30004:1 30015:2 30023:1 30027:1 30035:1 30041:1 30075:1 30079:4 30083:1 30084:2 30091:1 30092:1 30093:1 30095:3 30099:5 30102:1 30103:1 30105:2 30119:1 30127:2 30134:1 30144:2 30165:3 30192:1 30198:2 30199:3 30213:1 30215:1 30219:1 30233:2 30235:2 30238:1 30241:1 30248:1 30253:2 30261:4 30263:1 30273:1 30279:1 30283:1 30284:1 30288:1 30290:1 30294:1 30295:1 30299:1 30307:1 30309:1 30319:1 30320:1 30326:1 30329:1 30330:1 30331:1 30332:1 30350:1 30361:1 30363:1 30364:1 30370:1 30371:1 30424:1 30434:4 30452:1 30454:1 30478:1 30482:3 30483:2 30489:1 30493:1 30518:1 30535:5 30537:2 30538:2 30541:1 30549:1 30552:2 30553:1 30566:1 30588:1 30600:1 30601:1 30613:1 30617:2 30641:2 30677:1 30679:1 30688:1 30690:1 30743:1 30748:1 30777:1 30783:2 30787:1 30788:1 30789:2 30790:6 30794:1 30806:1 30814:7 30817:3 30823:1 30853:1 30855:2 30857:2 30861:1 30907:1 30910:1 30912:2 30920:2 30931:1 30934:1 30944:2 30951:1 30952:1 30960:2 30963:1 30965:1 30970:1 30972:1 30981:4 30987:1 30992:2 31002:1 31005:2 31015:1 31020:1 31026:1 31030:1 31047:1 31048:1 31051:4 31053:1 31054:1 31055:3 31057:1 31059:2 31072:1 31083:1 31089:2 31092:1 31093:1 31095:1 31104:1 31112:2 31123:1 31134:1 31142:1 31148:1 31151:1 31153:1 31168:3 31177:1 31178:1 31181:1 31188:1 31201:1 31210:1 31223:1 31226:1 31235:2 31241:1 31254:1 31255:4 31264:4 31265:2 31276:1 31283:1 31286:1 31296:5 31311:1 31317:4 31319:1 31329:2 31334:4 31369:1 31376:1 31377:5 31384:1 31387:1 31404:1 31411:1 31413:16 31425:2 31428:1 31444:2 31465:2 31478:1 31486:1 31494:1 31543:1 31550:1 31563:1 31569:1 31574:2 31578:3 31580:1 31588:1 31595:1 31601:1 31603:2 31610:1 31612:1 31641:3 31648:1 31660:3 31663:1 31701:1 31706:1 31708:1 31712:1 31725:1 31737:1 31747:1 31751:1 31752:1 31753:2 31757:1 31767:1 31768:1 31784:1 31785:1 31787:1 31796:1 31797:1 31805:1 31808:2 31834:3 31846:1 31848:1 31853:1 31866:3 31874:1 31882:2 31885:2 31890:1 31891:1 31893:2 31918:1 31919:1 31929:1 31930:4 31933:2 31946:2 31963:2 31964:1 31968:16 31969:1 31972:1 31979:1 31983:1 31993:3 32010:1 32013:1 32022:1 32025:2 32036:1 32056:1 32057:1 32066:6 32074:1 32085:1 32090:1 32098:1 32099:1 32106:1 32112:1 32115:1 32117:1 32136:1 32140:2 32141:1 32153:1 32208:1 32219:2 32234:1 32259:2 32261:1 32269:1 32285:3 32307:2 32311:1 32317:1 32319:1 32326:1 32329:1 32334:1 32376:4 32400:1 32405:1 32406:4 32413:1 32425:1 32436:1 32459:1 32461:3 32491:1 32492:1 32493:2 32505:2 32515:2 32532:1 32538:1 32553:2 32555:1 32559:1 32574:1 32576:2 32596:1 32597:1 32606:1 32612:1 32624:1 32629:1 32636:1 32682:1 32683:2 32687:1 32691:1 32700:2 32725:2 32726:2 32732:1 32740:1 32745:1 32749:2 32750:6 32752:1 32774:3 32779:1 32785:2 32787:1 32801:4 32813:1 32820:1 32832:4 32841:1 32846:1 32848:3 32879:1 32887:2 32890:7 32891:1 32893:1 32896:2 32908:1 32909:2 32913:1 32917:2 32923:1 32924:1 32929:3 32941:3 32950:2 32955:1 32958:1 32965:1 32967:1 32970:1 32974:1 32984:1 32997:1 33017:1 33027:1 33031:1 33053:1 33057:2 33066:1 33069:2 33074:1 33080:2 33084:1 33085:1 33089:1 33092:1 33094:3 33098:1 33100:1 33112:1 33118:1 33128:5 33133:6 33137:1 33141:2 33142:2 33144:2 33157:2 33168:1 33180:1 33182:1 33183:2 33189:1 33218:2 33219:1 33222:1 33231:1 33241:1 33256:1 33272:1 33276:2 33284:1 33287:1 33296:3 33297:1 33309:2 33330:1 33333:1 33335:1 33346:1 33352:10 33388:1 33389:1 33404:1 33413:1 33422:1 33428:2 33439:1 33440:1 33444:3 33446:1 33449:1 33455:1 33461:3 33467:1 33498:1 33502:2 33503:1 33504:1 33505:3 33512:1 33530:1 33533:5 33534:1 33537:2 33543:3 33545:1 33549:1 33552:1 33553:2 33555:1 33556:2 33563:4 33579:3 33589:1 33591:3 33592:1 33595:3 33601:1 33609:1 33616:1 33620:1 33623:1 33637:1 33663:8 33669:1 33675:1 33680:4 33711:1 33716:1 33720:1 33722:1 33730:1 33732:1 33734:3 33738:1 33743:3 33760:1 33766:1 33769:1 33771:1 33772:1 33794:2 33795:2 33819:1 33820:1 33824:1 33861:1 33865:1 33880:2 33902:1 33910:1 33921:1 33928:1 33930:1 33949:1 33989:1 33997:1 34003:1 34019:1 34040:1 34049:1 34052:1 34056:3 34057:2 34062:2 34063:1 34067:5 34071:3 34075:8 34076:1 34077:2 34080:1 34083:1 34085:3 34086:1 34099:1 34104:1 34133:1 34139:1 34144:1 34151:3 34155:1 34157:1 34159:1 34160:1 34164:1 34172:1 34174:1 34194:1 34197:1 34204:1 34221:2 34246:2 34253:1 34283:5 34299:1 34300:1 34304:1 34306:2 34314:1 34321:2 34322:1 34335:1 34341:1 34351:1 34353:1 34363:1 34364:1 34367:1 34371:1 34373:1 34385:4 34403:1 34407:2 34410:1 34413:3 34423:1 34435:16 34437:2 34440:1 34445:1 34455:1 34470:1 34478:6 34496:1 34497:6 34526:1 34566:1 34570:1 34586:1 34589:1 34596:5 34615:1 34619:1 34621:1 34627:1 34629:1 34630:2 34632:1 34634:12 34643:3 34654:1 34659:1 34662:1 34673:2 34674:1 34682:1 34689:1 34691:14 34701:2 34749:1 34757:2 34761:2 34771:1 34782:1 34794:1 34796:1 34799:1 34803:1 34804:2 34822:1 34834:1 34862:1 34878:2 34924:3 34936:1 34951:1 34957:2 34960:1 34961:1 34968:1 34989:1 34996:48 34997:1 35022:1 35026:5 35031:2 35039:2 35041:6 35042:2 35043:1 35055:1 35056:1 35094:1 35098:2 35124:4 35128:13 35129:1 35135:3 35141:1 35149:1 35152:2 35157:1 35164:1 35167:1 35177:1 35184:1 35201:1 35207:2 35217:1 35253:1 35265:1 35281:3 35285:1 35289:2 35310:2 35311:1 35326:1 35342:1 35347:1 35354:5 35382:2 35395:5 35410:1 35456:1 35464:3 35468:1 35470:1 35473:1 35488:1 35499:1 35503:2 35517:2 35520:1 35526:2 35529:1 35539:1 35582:1 35585:1 35589:2 35592:1 35602:2 35603:1 35614:1 35625:3 35634:1 35635:1 35636:3 35638:1 35648:1 35656:1 35661:1 35664:1 35665:1 35677:1 35681:2 35692:1 35696:1 35700:1 35714:1 35716:1 35719:1 35721:1 35731:1 35734:2 35746:1 35748:11 35749:1 35753:2 35757:4 35785:1 35789:3 35805:7 35811:1 35825:2 35831:4 35836:1 35837:2 35838:2 35845:2 35850:39 35862:2 35888:2 35901:1 35919:1 35925:1 35927:1 35939:1 35953:2 35957:1 35958:1 35959:2 35964:2 35965:2 35966:5 35967:1 35989:1 35996:1 36007:1 36010:2 36011:1 36022:1 36028:2 36033:3 36045:1 36051:1 36059:1 36063:1 36065:1 36072:1 36075:2 36091:1
2fe4b78a2f48c0bd771660f48b8d75170f1a4a77
449d555969bfd7befe906877abab098c6e63a0e8
/569/CH3/EX3.9/3_9.sci
a7b50a9832bb2f84ec22909bb28ebfe5d4cdae99
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
719
sci
3_9.sci
// Calculate the percentage limiting error and range of resistance values clc; disp('decade a is set at 4000 ohm, so,error in decade a=') Er_a=4000*0.1/100; disp(Er_a) disp('decade b is set at 600 ohm, so,error in decade b=') Er_b=600*0.1/100; disp(Er_b) disp('decade c is set at 30 ohm, so,error in decade c=') Er_c=30*0.1/100; disp(Er_c) disp('decade d is set at 9 ohm, so,error in decade d=') Er_d=9*0.1/100; disp(Er_d) Er_total=Er_a+Er_b+Er_c+Er_d; Re_le_percentage=Er_total*100/4639; disp(Re_le_percentage,'Percentage Relative limiting error=') Range_lower=4639-Er_total; disp(Range_lower,'Lower value of range (ohm)=') Range_upper=4639+Er_total; disp(Range_upper,'upper value of range (ohm)=')
1231cf4c0aea186cecaab7e760f0801eda2363ba
449d555969bfd7befe906877abab098c6e63a0e8
/1073/CH2/EX2.24/2_24.sce
e95a70e475728e7d25026f1573bfa42e0105c115
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
507
sce
2_24.sce
clc; clear; printf("Example 2.24\n Page no. 2.47"); //given L=1//m thp=2//Thickness of pipe; in mm thi=10//Thickness of insulation; in mm T1=373//K T2=298//K id=30//mm r1=id/2//mm r2=r1+thp//mm r3=r2+thi//mm //In S.I units r1=r1/1000 //m r2=r2/1000//m r3=r3/1000//m k1=17.44//W/(m.K) k2=0.58//W/(m.K) hi=11.63//W/(sq m.K) ho=11.63//W/(sq m.K) //Solution Q=(2*%pi*L*(T1-T2))/(1/(r1*hi)+(log(r2/r1))/k1+((log(r3/r2))/k2)+(1/(0.02*ho))) printf("ANSWER: \n Rate of heat loss,Q=%f W",Q);
7086925c9f8aca7ab38854ea7b9ee35334762f3c
449d555969bfd7befe906877abab098c6e63a0e8
/3772/CH15/EX15.11/Ex15_11.sce
d0f9002b0e773807c1875ee1aaf7b326eb5fc5ac
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,352
sce
Ex15_11.sce
// Problem no 15.11,Page no.358 clc; clear; close; d=0.3 //m //Diameter D=0.003 //m //Diameter of steel wire t=0.006 //m //thickness sigma_w=8*10**6 //Pa //Stress p=1*10**6 //Pa //Internal pressure E_s=200*10**9 //Pa //Modulus of Elasticity for steel E_c=100*10**9 //Pa //Modulus of Elasticity for cast iron m=1*0.3**-1 //Calculations sigma_p=(sigma_w*%pi*2**-1*d)*(2*t)**-1 //compressive hoop stress sigma_l=p*d*(4*t)**-1 //Longitudinal stress //when internal presure is apllied Let sigma_w_1=Tensile in wire and sigma_p_1=tensile hoop in wire //sigma_p_1*2*t+sigma_w_1*2*d**-1*%pi*4**-1*d**2=p*D //After substituting values and further simplifying we get //1.2*sigma_p_1+0.471*sigma_w_1=3000 Equation 1 //1*E_c**-1(sigma_p_1-sigma_1*m**-1+sigma_p)=1*E_s**-1(sigma_w_1-sigma_w) //After substituting values and further simplifying we get //sigma_p_1-0.5*sigma_w_1=1.36*10**6 //sigma_p_1=0.5*sigma_w_1-3.39*10**6 Equation 2 //From Equation 2 substituting value of sigma_p_1 in Equation 1 sigma_w_1=(40.68*10**3+0.3*10**6)*(10.71238*10**-3)**-1 sigma_p_1=0.5*sigma_w_1-3.39*10**6 //Let X=sigma_p_1 and Y=sigma_w_1 X=sigma_p_1*10**-6 //MPa //Stresses in %pipe Y=sigma_w_1*10**-6 //MPa //Stresses in wire //Result printf("Stress in the pipe is %.2f",X);printf(" MN/m**2") printf("\n Stress in the wire is %.2f",Y);printf(" MN/m**2")
28a67e85c47b5957ca112655bcee3c73215970b4
449d555969bfd7befe906877abab098c6e63a0e8
/1697/CH4/EX4.18/Exa4_18.sce
fa0d5b94e604b121997f88d5205e79f421e0990a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
964
sce
Exa4_18.sce
//Exa 4.18 clc; clear; close; //given data : //Side lobe level below main lobe disp("Side lobe level below main lobe : ") SideLobe=20;//in dB r=10^(SideLobe/20);// disp(r,"r=") ; //No. of elements are 5, n=5 disp("No. of elements are 5, n=5 :"); disp("Tchebyscheff polynomials of degree (n-1) is"); disp("5-1=4"); disp("T4(xo)=r"); disp("8*xo^4-8*xo^2+1=10"); disp("By using alternate formula, we get"); m=4; r=10; xo=(1/2)*[{r+sqrt(r^2-1)}^(1/m)+{r-sqrt(r^2-1)}^(1/m)] disp(xo,"xo="); disp("E5=T4(xo)") disp("E5=ao*z+a1*(2*z^2-1)+a2*(8*z^4-8*z^2+1)"); disp("We Know that : z=x/xo, E5=T4*xo"); disp("ao=a1*(2*(x/xo)^2-1)+a2*[8*(x/xo)^4-8*(x/xo)^2+1]=8*x^4-8*x^2+1"); disp("By comparing the term we have : "); disp("a2=xo^4 a1=4*a2-4*xo^2 ao=1+a1-a2 ") a2=xo^4; a1=4*a2-4*xo^2; ao=1+a1-a2; disp("And therefore the 5 elements array is given by : "); disp(string(a2)+" "+string(a1)+" "+string(2*ao)+" "+string(a1)+" "+string(a2));
79569d8d9e4c09f7b73492c22a16809c002b0246
449d555969bfd7befe906877abab098c6e63a0e8
/1247/CH1/EX1.2/example1_2.sce
b7d4584aa62cdf9749284ec8c906f1feb4110b6b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
591
sce
example1_2.sce
clear; clc; // Stoichiometry // Chapter 1 // Dimensions and Units // Example 1.2 // Page 12 printf("Example 1.2, Page 12 \n \n"); // solution qm = 2000 // [kg/h] (mass flow rate) d1 = 3.068 // [in] (internal dia of pipe) // Using conversion factors from table 1.3 (Pg 9) d2 = 3.068/.0393701 // [mm] A = ((%pi/4)*d2^2)/10^6 // [m^2] (cross section area) // Using steam tables; Appendix IV.3 v = 0.46166 // [m^3/kg] (sp. vol. of steam at 440 kPa) qv = (qm*v)/3600 // [m^3/s] vs = qv/A // [m/s] printf("velocity of the steam in the pipeline is "+string(vs)+" m/s")
38cdc43bcf661d9aacbac0f658e8596381fb91c4
449d555969bfd7befe906877abab098c6e63a0e8
/2792/CH5/EX5.11/Ex5_11.sce
1e8adb8d337a12285211c48842149a449ec817de
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
3,188
sce
Ex5_11.sce
clc A= 10^-8 disp("A= "+string(A)+"m^2") //initializing value of diode area Na=10^23 disp("Na = "+string(Na)+"m^-3") //initializing value of acceptor atoms Nd=10^23 disp("Nd = "+string(Nd)+"m^-3") //initializing value of donor atoms Dp = 10*10^-4 disp("Dp= "+string(Dp)+"m^2/s")//initializing value of hole diffusion coefficient Dn = 30*10^-4 disp("Dn= "+string(Dn)+"m^2/s")//initializing value of electron diffusion coefficient Tn = 10^-7 disp("Tn= "+string(Tn)+"s")//inializing value of electron minority carrier lifetime Tp = 10^-7 disp("Tp= "+string(Tp)+"s")//inializing value of hole minority carrier lifetime tau = 10^-8 disp("tau= "+string(tau)+"s")//inializing value of carrier lifetime in depletion region e = 1.6*10^-19 disp("e= "+string(e)+"C")//initializing value of charge of electron kbT = 0.026 disp("kbT = "+string(kbT)+"eV") //initializing value of kbT at 300K ni = 1.5*10^16 disp("ni= "+string(ni)+"m^-3")//initializing value of intrinsic carrier concentration apsilen = 11.9*8.85*10^-12 disp("apsilen = "+string(apsilen)+"F/m") //initializing value of relative permitivity //NOTE: nn=Nd and pp=Na Lp = sqrt(Dp*Tp) disp("The hole diffusion length is ,Lp = sqrt(Dp*Tp)= "+string(Lp)+"m")//calculation Ln = sqrt(Dn*Tn) disp("The electron diffusion length is ,Ln = sqrt(Dn*Tn)= "+string(Ln)+"m")//calculation // NOTE: pn= (ni^2/nn) and np=(ni^2/pp) np=ni^2/Na disp("The electron conc in p type is ,np=ni^2/Na= "+string(np)+"m^-3")//calculation pn=ni^2/Nd disp("The holes conc in n type is ,pn=ni^2/Nd= "+string(pn)+"m^-3")//calculation Vbi = kbT*log((Na*Nd)/ni^2) disp("The built in voltage is ,Vbi = kbT*log((Na*Nd)/ni^2)= "+string(Vbi)+"V")//calculation Io = e*((((Dn)*np)/(Ln))+((Dp*pn)/(Lp))) disp("The prefactor in the ideal diode is ,Io = e*(((Dn*np)/(Ln))+((Dp*pn)/(Lp)))= "+string(Io)+"A")//calculation //let Vf = 0.5 V Vf = 0.5 disp("Vf= "+string(Vf)+"V") //initializing value of forward bias voltage W = sqrt((2*apsilen/e)*((Na+Nd)/Nd/Na)*(Vbi-Vf)) disp("The depletion width is ,W = sqrt(((2*apsilen)/e)*((Na*Nd)/(Na+Nd))*(Vbi-Vf))= "+string(W)+"m")//calculation Io_GR = e*A*W*ni/(2*tau) disp("prefactor for recombination generation current, Io_GR = "+string(Io_GR)+"A") I = (Io*exp(Vf/kbT))+(Io_GR*exp(Vf/(2*kbT))) I_V1 = I disp("Current, I = (Io*exp(Vf/kbT))+(Io_GR*exp(Vf/kbT)) = "+string(I)+"A") //let V = 0.6 V Vf = 0.6 disp("Vf= "+string(Vf)+"V") //initializing value of forward bias voltage W = sqrt((2*apsilen/e)*((Na+Nd)/Nd/Na)*(Vbi-Vf)) disp("The depletion width is ,W = sqrt(((2*apsilen)/e)*((Na*Nd)/(Na+Nd))*(Vbi-Vf))= "+string(W)+"m")//calculation Io_GR = e*A*W*ni/2/tau disp("prefactor for recombination generation current, Io_GR = "+string(Io_GR)+"A") I = (Io*exp(Vf/kbT))+(Io_GR*exp(Vf/(2*kbT))) I_V2 = I disp("Current, I = (Io*exp(Vf/kbT))+(Io_GR*exp(Vf/kbT)) = "+string(I)+"A") V1 = 0.5 V2 = 0.6 n = e*(V2-V1)/kbT/log(I_V2/I_V1) disp("Ideallity factor ,n = e*(V2-V1)/kbT/log(I_V2/I_V1) = "+string(n)) //note: in the text book the value of //-+"prefactor of ideal diode equation, Io" //calculated by author is wrong thus it efect the overall calculation of the solution
4d9e8993439885370bfe0180600398c730598330
449d555969bfd7befe906877abab098c6e63a0e8
/695/CH3/EX3.28/Ex3_28.sce
c3607ad95b435f0e8999856efcf4b3ff1f161a5e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
341
sce
Ex3_28.sce
//Caption:Find the voltage regulation //Exa:3.28 clc; clear; close; KVA=500; V2=500;//in volts x=0.75; pf=1; Eff_max=0.97; P_i=(KVA*x*1000*pf-KVA*x*1000*pf*Eff_max)/(2*Eff_max);//in watts P_cu=P_i/x^2; R_equ=P_cu/(KVA*1000); X_equ=sqrt(0.1^2-R_equ^2);//in ohms VR=R_equ*0.8+X_equ*0.6; disp(VR*100,'Voltage Regulation (in %)=')
a2edfb901175ae095e6d58b0260953c4ee087319
449d555969bfd7befe906877abab098c6e63a0e8
/167/CH2/EX2.19/ex19.sce
c5795778739f40421b455dd002b76639030987e1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
477
sce
ex19.sce
// example 19 // heat transfer from a person clear clc T1=20 //room temperature in celsius T2=29 //body temperature of person in celsius a=1.6 //exposed surface area in m^2 h=6 //convection heat transfer coefficient in W/m^2*C Qc=h*a*(T2-T1) //heat loss due convection in W Qr=0.95*5.67*10^-8*a*((T2+273)^4-(T1+273)^4) //heat loss due to radiation in W Q=Qc+Qr //net heat loss from the person in W printf("\n Hence,the total rate of heat transfer is =%.1f W. \n",Q)
9087f8350dfb511955c0d096b34b0e999c592609
449d555969bfd7befe906877abab098c6e63a0e8
/3537/CH8/EX8.13/Ex8_13.sce
0ffa0941e2905292607ee0d9727e5d4db320b7f6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
302
sce
Ex8_13.sce
//Example 8_13 clc(); clear; //To calculate the fundamental frequency l=0.001 //units in mts y=7.9*10^10 //units in N/mts^2 d=2650 //units in N/mts^2 v=sqrt(y/d) //units in m/sec toe=0.001 //units in m V=v/(2*toe) //units in Hz printf("Fundamental frequency=%.2fHz",V)
5fb794faddc0199c486499b7619fad9b4a1012f9
449d555969bfd7befe906877abab098c6e63a0e8
/542/CH16/EX16.5/Example_16_5.sci
a7e03099a66a09936d7fad9f07939fe76bef08ae
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
3,758
sci
Example_16_5.sci
clear; clc; printf("\n Example 16.5"); //Inlet air temperature Tair = 400; //Inlet air temperature in kelvins H = 0.01; //Humidity is in kg/kg dry air //*therefore wet bulb temperature = Twetbulb = 312; //Inlet wet-bulb temperature NTU = 1.5; //Number of transfer units //Then for adiabatic drying the outlet air temperature,To is given by To = poly([0],'To'); To1 = roots(exp(1.5)*(To-312)-(400-312)); printf("\n For adiabatic drying the outlet air temperature = %.1f K",To1); //Solids outlet temperature will be taken to be maximum allowable,325K //From the steam tables in the Appendix, the latent heat of vaporisation of water at 312 K is2410 kJ/kg. Again from steam tables, the specific heat capacity of water vapour = 1.88 kJ/kg K and that of the solids will be taken as 2.18 kJ/kg K. //For a mass flow of solids of 0.35 kg/s and inlet and outlet moisture contents of 0.15 and 0.005 kg/kg dry solids respectively, the mass of water evaporated = 0.35(0.15 − 0.005) = 0.0508 kg/s. //For unit mass of solids ,the heat duty includes: //Heat to the solids qsolids = 2.18*(325-300); //heat to solids in kJ/kg //Heat to raise the moisture to the dew point qdew = (0.15*4.187*(312-300)); //in kJ/kg //Heat of vaporisation qvap = 2410*(0.15-0.005); //in kJ/kg //Heat to raise remaining moisture to solids outlet temperature qremaining = (0.05*4.187)*(325-312); //Heat to raise evaporated moisture to the air outlet temp. qevapo = (0.15-0.005)*1.88*(331.5-312); qtotal = qsolids + qdew + qvap + qremaining + qevapo; printf("\n Total heat = %.1f kJ/kg or %d kW",qtotal,qtotal*0.35); //The humid heat of entering air is 1.03 kJ/kg K //G1 (1 +H1) = Q/Cp1(T1 − T2) //where: G1 (kg/s) is the mass flowrate of inlet air, //H1 (kg/kg) is the humidity of inlet air, //Q (kW) is the heat duty, //Cp1 (kJ/kg K) is the humid heat of inlet air //and: T1 and T2 (K) are the inlet and outlet air temperatures respectively. G1 = poly([0],'G1'); G = roots(G1*(1+0.01)-146/(1.03*(400-331.5))); printf("\n Mass flow rate of inlet air = %.2f kg/secs",G); printf("\n Mass flow rate of dry air ,Ga = %.2f kg/secs",G/1.01); printf("\n the humidity of the outlet air H2 = %.4f kg/kg",0.01+0.0508/2.05); //At a dry bulb temperature of 331.5 K, with a humidity of 0.0347 kg/kg, the wet-bulb temperatureof the outlet air, from Figure 13.4 in Volume 1, is 312 K, the same as the inlet, which is the case for adiabatic drying. //The dryer diameter is then found from the allowable mass velocity of the air and the entering air flow and for a mass velocity of 0.95 kg/m^2.secs, the cross sectional area of the dryer is printf("\n The cross sectional area of the dryer is %.2f m^2",2.07/0.95); printf("\n The equivalent diameter of the dryer = %.2f m",[(4*2.18)/%pi]^0.5); //With a constant drying temperature of 312 K: //at the inlet deltaT1 = 400-312; //inlet temperature is in deg K //at the outlet deltaT2 = 331.5-312; //outlet temperature is in deg K Tlogmean = (deltaT1 - deltaT2)/log(deltaT1/deltaT2); printf("\n Logarithmic mean temperature difference = %.1f deg K",Tlogmean); //The length of the dryer, L is then: L = Q/(0.0625πDG^(0.67)*Tm) //where D (m) is the diameter //and G(kg/m^2.secs) is the air mass velocity. L = 146/[0.0625*(%pi)*1.67*(0.95)^(0.67)*45.5]; printf("\n The length of the dryer = %.1f m",L); printf("\n Length/diameter ratio = %d ",10.1/1.67);
f2eeff959735e6f06bee3cfe6a99af96d0b1a18a
449d555969bfd7befe906877abab098c6e63a0e8
/3733/CH2/EX2.1/Ex2_1.sce
efd2db49ef2843237eb8e83a8436a2d9662482c0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
425
sce
Ex2_1.sce
// Example 2_1 clc;funcprot(0); //Given data R=6.2;//Rainfall in cm A=2346;// Area in km^2 //Calculation Tr=A*10^6*(R/100);// Total rainfall in m^2 V=(A*R*10^4)/86400;// Rainfall in day-sec-metre R_k=(A*R*10^4)/10^6;// Rainfall in km^2-m printf('\n Total rainfall=%0.4e m^3 \nVolume of rainfall=%0.0f day-sec-metre \nRainfall in km^2-m=%0.2f km^2-m',Tr,V,R_k); // The answer provided in the textbook is wrong
487d7514a182e64786f9bc9c722ba8691c49bb8e
449d555969bfd7befe906877abab098c6e63a0e8
/1109/CH13/EX13.8/13_8.sce
c8bce06b764b2e68789252ca6b03382d1ddc6624
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
572
sce
13_8.sce
clear; clc; V1=1;R1=1;R2=2;R3=1;R4=2;I2=0; //I2=0 because port 2-2' has been open circuited a=[R1+R2 -R2;-2 5]; b=[1;0]; b=inv(a)*b; I1=b(1,1); I3=b(2,1); V2=I3*R4; A=V1/V2; C=I1/V2; V21=0; //because port 2-2' has been short circuited c=[3 -2;-2 3]; d=[1;0]; d=inv(c)*d; I11=d(1,1); I21=d(2,1); B=V1/I21; D=I11/I21; R=(A*D)-(B*C); printf("The transmission parameters are:\n"); printf(" A = %f\n",A); printf(" B = %f ohms\n",B); printf(" C = %f mhos\n",C); printf(" D = %f\n\n",D); printf(" AD-BC = %f . Hence the circuit is reciprocal.",R);
874525a58d2bb53a27738b574bcaf56dee2ea312
449d555969bfd7befe906877abab098c6e63a0e8
/1928/CH1/EX1.14.13/ex1_14_13.sce
fa544dd24977742f0f862173f5f7b569246c3029
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
387
sce
ex1_14_13.sce
//Chapter-1,Example1_14_13,pg 1-63 n=2 //BCC structure ro=9.6*10^2 //density of sodium crystal A=23 //atomic weight of sodium crystal N=6.023*10^26 //Avogadro's number a=((n*A)/(N*ro))^(1/3) printf("Lattice constant=") disp(a) printf("m")
b71ff8569c39b024a6e21141f011c20a6f20db6c
449d555969bfd7befe906877abab098c6e63a0e8
/476/CH6/EX6.1/Example_6_1.sce
dc1f981fbf703a6c87cb091527cfbdf7b623669b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
729
sce
Example_6_1.sce
//A Textbook of Chemical Engineering Thermodynamics //Chapter 6 //Thermodynamic Properties of Pure Fluids //Example 1 clear; clc; //Given: betta = 1.25*10^-3; //coeffecient of expansion (K^-1) V = 0.1; //molar volume of organic liquid (m^3/kmol) P2 = 20; //final pressure (bar) P1 = 1; //initial pressure (bar) //To determine the change in entropy of system //betta = (1/V)*(del V/del T)p //Let k = (del V/del T)p k = betta*V; //Considering Maxwell's relation Eq. 6.24 (Page no. 193) //dS = -k*(dP) S = -k*(P2-P1)*10^5; //entropy change (J/kmol K) mprintf('Change in entropy is %f J/kmol K',S); mprintf('\n It is assumed that (del V/del T)p is constant in the pressure range 1 to 20 bar'); //end
9ecf83c17c9c77995faf2ae603625ab522efb921
449d555969bfd7befe906877abab098c6e63a0e8
/3673/CH10/EX10.10/Ex10_10.sce
7b2f136f4003b76c3b21929e24df22bcd5232c0e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
535
sce
Ex10_10.sce
//Example 10_10 page no:455 clc; //given K=0.9; L1=10^-6; L2=100*10^-6; C=0.1*10^-6; Rs=10; R2=10; Vi=15; //calculating the resonance frequency M=K*sqrt(L1*L2); Wr=1/sqrt(L2*C); Fr=Wr/(2*%pi); Fr=Fr/1000;//converting to kilo Hz disp(Fr,"the resonant frequency is (in kHz)"); //calculating the output voltage Vo=M*Vi/(C*((Rs*R2)+(Wr^2*M))); Vo=Vo*1000; disp(Vo,"the output voltage is (in mV)"); //maximum value of output voltage Vom=Vi/(2*Wr*C*sqrt(Rs*R2)); disp(Vom,"maximum value of output voltage is (in V)");
dc2deb5590952e40065c7431bbe099d5c2a60014
fa73b9454b1d003e901d57ef2121b7544bcdfef2
/scenes/custom_2.sce
75e48e568a93bcf1de205cdf6c7a0ebdc5f7ae01
[]
no_license
bernielampe1/ray_tracer
ea91cf08188194f6a0d1e8c9e95baa4aea12f021
7fa963ccd07695be3a78acd4837af6cd439698b9
refs/heads/master
2021-01-02T01:16:52.595743
2020-03-02T12:36:03
2020-03-02T12:36:03
239,428,546
0
0
null
null
null
null
UTF-8
Scilab
false
false
4,434
sce
custom_2.sce
sce1.0 # camera eyepos 750 75 150 eyedir -0.2 1.0 0.3 eyeup 0.0 0.0 1.0 wdist 20.0 fovy_deg 70 nx 1280 ny 640 #options max_recursion 8 aasample 2 # scene ca 0.1 0.1 0.1 background 0 0 0 { # cylinder cube frame around bottom plane cr 0.8 0.0 0.8 cp 0.1 0.0 0.1 shininess 10.0 push_matrix rotate 90.0 1.0 0.0 0.0 scale 35.0 35.0 1000.0 cylinder pop_matrix push_matrix rotate 90.0 0.0 1.0 0.0 scale 35.0 35.0 1000.0 cylinder pop_matrix push_matrix translate 1000.0 1000.0 0.0 rotate -90.0 0.0 1.0 0.0 scale 35.0 35.0 1000.0 cylinder pop_matrix push_matrix translate 1000.0 1000.0 0.0 rotate -90.0 1.0 0.0 0.0 scale 35.0 35.0 1000.0 cylinder pop_matrix } { # cylinder cube frame around top plane cr 0.8 0.0 0.8 cp 0.1 0.0 0.1 shininess 10.0 push_matrix translate 0.0 0.0 1000.0 push_matrix rotate 90.0 1.0 0.0 0.0 scale 35.0 35.0 1000.0 cylinder pop_matrix push_matrix rotate 90.0 0.0 1.0 0.0 scale 35.0 35.0 1000.0 cylinder pop_matrix push_matrix translate 1000.0 1000.0 0.0 rotate -90.0 0.0 1.0 0.0 scale 35.0 35.0 1000.0 cylinder pop_matrix push_matrix translate 1000.0 1000.0 0.0 rotate -90.0 1.0 0.0 0.0 scale 35.0 35.0 1000.0 cylinder pop_matrix pop_matrix } { # cylinder cube frame vertically around box cr 0.8 0.0 0.8 cp 0.1 0.0 0.1 shininess 10.0 push_matrix scale 35.0 35.0 1000.0 cylinder pop_matrix push_matrix translate 1000.0 0.0 0.0 scale 35.0 35.0 1000.0 cylinder pop_matrix push_matrix translate 0.0 1000.0 0.0 scale 35.0 35.0 1000.0 cylinder pop_matrix push_matrix translate 1000.0 1000.0 0.0 scale 35.0 35.0 1000.0 cylinder pop_matrix } { #bottom ca 0.4 0.2 0.2 cr 0.7 0.4 0.4 cp 1.0 1.0 1.0 shininess 100.0 triangle 0.0 0.0 0.0 0.0 1000.0 0.0 1000.0 0.0 0.0 triangle 0.0 1000.0 0.0 1000.0 1000.0 0.0 1000.0 0.0 0.0 } { #top push_matrix translate 0.0 0.0 1000.0 ca 0.4 0.2 0.2 cr 0.7 0.4 0.4 cp 1.0 1.0 1.0 shininess 100.0 triangle 0.0 0.0 0.0 0.0 1000.0 0.0 1000.0 0.0 0.0 triangle 0.0 1000.0 0.0 1000.0 1000.0 0.0 1000.0 0.0 0.0 pop_matrix } { #left push_matrix rotate -90.0 0.0 1.0 0.0 ca 0.2 0.4 0.2 cr 0.4 0.7 0.4 cp 1.0 1.0 1.0 shininess 100.0 triangle 0.0 0.0 0.0 0.0 1000.0 0.0 1000.0 0.0 0.0 triangle 0.0 1000.0 0.0 1000.0 1000.0 0.0 1000.0 0.0 0.0 pop_matrix } { #right push_matrix translate 1000.0 0.0 0.0 rotate -90.0 0.0 1.0 0.0 ca 0.2 0.4 0.2 cr 0.4 0.7 0.4 cp 1.0 1.0 1.0 shininess 100.0 triangle 0.0 0.0 0.0 0.0 1000.0 0.0 1000.0 0.0 0.0 triangle 0.0 1000.0 0.0 1000.0 1000.0 0.0 1000.0 0.0 0.0 pop_matrix } { #front push_matrix rotate 90.0 1.0 0.0 0.0 ca 0.2 0.2 0.4 cr 0.4 0.4 0.7 cp 1.0 1.0 1.0 shininess 100.0 triangle 0.0 0.0 0.0 0.0 1000.0 0.0 1000.0 0.0 0.0 triangle 0.0 1000.0 0.0 1000.0 1000.0 0.0 1000.0 0.0 0.0 pop_matrix } { #back push_matrix translate 0.0 1000.0 0.0 rotate 90.0 1.0 0.0 0.0 ca 0.2 0.2 0.4 cr 0.4 0.4 0.7 cp 1.0 1.0 1.0 shininess 100.0 triangle 0.0 0.0 0.0 0.0 1000.0 0.0 1000.0 0.0 0.0 triangle 0.0 1000.0 0.0 1000.0 1000.0 0.0 1000.0 0.0 0.0 pop_matrix } { push_matrix translate 500 500 100 pointlight 0 0 0 1.0 1.0 1.0 pop_matrix } end
eef8daba954ab1408e5529930ad5c3722bcc5bc6
449d555969bfd7befe906877abab098c6e63a0e8
/3507/CH12/EX12.26/Ex12_26.sce
94b923c6b09de1e380d59a8ec0cf7f352530a891
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
331
sce
Ex12_26.sce
//chapter12 //example12.26 //page261 R1=18 // kilo ohm R2=4.7 // kilo ohm Re=1 // kilo ohm Vcc=10 // V V_B=Vcc*R2/(R1+R2) printf("voltage at base = %.3f V \n",V_B) printf("The fact that V_C=10V and V_E is nearly equal to V_B reveals \nthat I_C=0 and I_E=0.So I_B drops to zero.So obvious fault is R_E is open. \n")
076b434dcae0d1d8a1b760bd7858a3c2e19ab253
449d555969bfd7befe906877abab098c6e63a0e8
/2882/CH7/EX7.10/Ex7_10.sce
7ffdcff4109780ee72feaf7516107764aa3c3d5c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
266
sce
Ex7_10.sce
//Tested on Windows 7 Ultimate 32-bit //Chapter 7 Field Effect Transistors Pg no. 237 and 238 clear; clc; //Given Data gm=5D-3;//transconductance in Siemens RD=1D3;//drain resistance in ohms //Solution GV=gm*RD;//voltage gain printf("GV = %d",GV);
784557bdb93b66d0223d514e4200c35b35befbb2
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set5/s_Digital_Principals_And_Applications_D._P._Leach_And_A._P._Malvino_45.zip/Digital_Principals_And_Applications_D._P._Leach_And_A._P._Malvino_45/CH1/EX1.2/example_1_2.sce
49b1a0c52f5645f83985d564bae3ab4e714d8577
[]
no_license
hohiroki/Scilab_TBC
cb11e171e47a6cf15dad6594726c14443b23d512
98e421ab71b2e8be0c70d67cca3ecb53eeef1df6
refs/heads/master
2021-01-18T02:07:29.200029
2016-04-29T07:01:39
2016-04-29T07:01:39
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
153
sce
example_1_2.sce
errcatch(-1,"stop");mode(2);//Example 1.2 ; ; n=8; // given no of flip flops max_count = 2^n -1 ; printf("Maximum count = %d",max_count); exit();
1e65de28642df4f21787a48b536a272661ef5bc5
449d555969bfd7befe906877abab098c6e63a0e8
/3769/CH25/EX25.22/Ex25_22.sce
6e9dced872717e7d3390967f48fa2702beff1bd6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
289
sce
Ex25_22.sce
clear //Given mp=232.03714 mn=228.02873 m0=4.002603 a=931.5 A=232.0 e=1.6*10**-19 m=1.66*10**-27 //Calculation M=mp-mn-m0 Q=M*a K=(A-4)*Q/A S=sqrt((2*K*e)/(4.0*m)) //Result printf("\n (i) Kinetic energy is %0.1f Mev",K) printf("\n (ii) Speed of particle is %0.1f *10**7 m/s",S*10**-4)
77b833424d849638cd8be786e326d514daec1c8d
1573c4954e822b3538692bce853eb35e55f1bb3b
/DSP Functions/allpasslp2hp/test_13.sce
bd88725f338be926b381c82a756febbd2b54b17c
[]
no_license
shreniknambiar/FOSSEE-DSP-Toolbox
1f498499c1bb18b626b77ff037905e51eee9b601
aec8e1cea8d49e75686743bb5b7d814d3ca38801
refs/heads/master
2020-12-10T03:28:37.484363
2017-06-27T17:47:15
2017-06-27T17:47:15
95,582,974
1
0
null
null
null
null
UTF-8
Scilab
false
false
226
sce
test_13.sce
// Test # 13 : For zero valued inputs exec('./allpasslp2hp.sci',-1); [n,d]=allpasslp2hp(0,0); // !--error 10000 //Wo must lie between 0 and 1 //at line 41 of function allpasslp2hp called by : //[n,d]=allpasslp2hp(0,0)
27b88c3effe633a82ab6560e21703fb2fe7d9434
449d555969bfd7befe906877abab098c6e63a0e8
/611/CH8/EX8.4/Chap8_Ex4_R1.sce
560e8a63bd91072dafed9dafcacaaa93e2134b39
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,707
sce
Chap8_Ex4_R1.sce
// Y.V.C.Rao ,1997.Chemical Engineering Thermodynamics.Universities Press,Hyderabad,India. //Chapter-8,Example 4,Page 278 //Title: Entropy departure using Beattie-Bridgman equation of state //================================================================================================================ clear clc //INPUT T=100;//temperature of carbon dioxide in degree celsius P=10;//pressure of carbon dioxide in MPa B0=104.76*10^-6;//Beattie-Bridgman constant for carbon dioxide in m^3/mol b=72.35*10^-6;//Beattie-Bridgman constant for carbon dioxide in m^3/mol C=660.0;//Beattie-Bridgman constant for carbon dioxide in (m^3 K^3)/mol R=8.314;//universal gas constant in J/molK v=0.233*10^-3;//volume calculated in Example (8.3) in m^3/mol Z=0.751;//compressibility factor as calculated in Example (8.3) (no unit) //CALCULATION T=T+273.15;//conversion of temperature in K //calculation of entropy departure using Eq.(8.38) in J/molK dep_s=(R*log (Z))-(((B0*R)+((2*C*R)/(T^3)))*(1/v))+(((b*B0*R)-((2*C*B0*R)/(T^3)))*(1/(2*(v^2))))+((2*b*C*B0*R)/(3*(T^3)*(v^3))); //OUTPUT mprintf("\n The entropy departure for carbon dioxide using the Beattie-Bridgman equation of state = %f J/mol K\n",dep_s); //===============================================END OF PROGRAM=================================================== //DISCLAIMER: THE PROBLEM STATEMENT MENTIONS THE TEMPERATURE TO BE 100 DEGREE CELSIUS, WHICH CORRESPONDS TO A TEMPERATURE OF 373.15K. HOWEVER, THE AUTHOR HAS EVALUATED THE ENTROPY DEPARTURE FOR A TEMPERATURE OF 313.15K, WHICH IS CLEARLY A PRINTING ERROR. THE CODE ABOVE HAS BEEN WRITTEN FOR THE TEMPERATURE OF 373.15K AS GIVEN IN THE PROBLEM STATEMENT.
d6b9c4629e036d26af73461f788d1c83d1006628
449d555969bfd7befe906877abab098c6e63a0e8
/2243/CH2/EX2.6/Ex2_6.sce
ee2f02e6aef9df753fdc2d3603f26995e285e42d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
895
sce
Ex2_6.sce
clc(); clear; //(a)Tunning fork nu= 440; // Frequency in Hz V=340; // velocity of sound in air in m/s lambda= V/nu ;// Wavelength of sound wave in m k= 2*%pi/lambda; // Wave number in m //(b) Red Light nu1 = 5*10^14;// Frequency of Red light in Hz V1 = 3*10^8;//Velocity of light in m/s lambda1= V1/nu1; //Wavelength of light wave in m k1= 2*%pi/lambda1; // Wave number in m printf("For Sound wave : \n\n Frequency: %d Hz \n Velocity: %d m/s \n Wavelegth: %.3f m\n Wave number : %.2f m \n Wave Equation for Sound wave: y = A*sin((%.2f*x)-(%.3f*t)) \n\n",nu,V,lambda,k,k,(2*%pi*nu)); printf("For Light wave : \n\n Frequency: %.0f x 10^14 Hz \n Velocity: %d x 10^8 m/s \n Wavelegth: %.1f x 10^-7 m\n Wave number : %.2f x 10^7 m \n Wave Equation for Sound wave: y = A*sin((%.2f*10^7*x)-(%.1f*10^15*t)) \n\n",nu1*10^-14,V1*10^-8,lambda1*10^7,k1*10^-7,k1*10^-7,(2*%pi*nu1*10^-15));
30d9d5042cc3aff4637c4263e93a836bfdb061f2
449d555969bfd7befe906877abab098c6e63a0e8
/991/CH7/EX7.3/Example7_3.sce
dbb3f291cf11b4e14d631c52288c05975031c930
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
211
sce
Example7_3.sce
//Example 7.3 clc format(5) VGSoff=-6 IDSS=8 ID=4 disp("ID = IDSS*[1 - (VGS/VGS_off)]^2") VGS=(1-sqrt(ID/IDSS))*VGSoff disp(VGS,"Therefore, VGS(V) = ") VP=abs(VGSoff) disp(VP,"VP(V) = |VGS_off| = ")
bc317f16e0eb6c092c0a33be0fcfa6eb6efea0fe
449d555969bfd7befe906877abab098c6e63a0e8
/3760/CH5/EX5.13/Ex5_13.sce
56d1dc84007ef182d77c998fd7d3f0f51416ced9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
533
sce
Ex5_13.sce
clc; e=1.2; // pu excitation emf xs=0.8; // pu synchronous reactance vt=1; // pu rated voltage ia=1; // pu armature current for KVA=100 %, vt*ia=1 therefore ia=1; pf=cosd(asind((e^2-xs^2-1)/(-2*xs))); // leading power factor pd=vt*ia*pf; printf('Mechanical power developed by motor is %f pu\n',pd); e=1; // pu excitation emf reduced to generate 100% emf de=asind((pf*xs)/(vt*e)); // load angle ia=(sqrt(vt^2+e^2-2*e*vt*cosd(de)))/xs; // new armature current p=(vt*ia)*100; printf('New KVA rating is %f percent ',p);
b4373c1048bc588e1fe2f4e9c9f2859dfd685f0e
60acf54211c534dae12601541518c7f3692c9899
/Linux/scripts/hs.search.chwon.sce
60cd8b16d77fa7f03c9850a5a2a48ef349769e3e
[ "MIT" ]
permissive
webappcreations/dotLinux
67159a42510e60d18f059f7c9ac955eee1c3e4f2
aac20d0ed2ff28b2701febbe49a0152cb94f50da
refs/heads/master
2021-05-09T10:35:02.938723
2018-03-19T16:14:37
2018-03-19T16:14:37
118,967,881
0
0
null
null
null
null
UTF-8
Scilab
false
false
252
sce
hs.search.chwon.sce
473 chwon -u goalador ~/.mpdconf 404 chwon -u goalador ~/.mpdconf 304 chwon -u goalador ~/.mpdconf 72 chwon -u goalador ~/.mpdconf 49 chwon -u goalador ~/.mpdconf 49 chwon -u goalador ~/.mpdconf 49 chwon -u goalador ~/.mpdconf
0c9a8eb6c5e9861ef54a006c3b9caf616a9d1ce1
449d555969bfd7befe906877abab098c6e63a0e8
/3822/CH3/EX3.2/Ex3_2.sce
473dec64f3e32b735b6a96aae10c75396c5dbb77
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
936
sce
Ex3_2.sce
//OptoElectronics and Fibre Optics Communication, by C.K Sarkar and B.C Sarkar //Example 3.2 //OS=Windows 10 ////Scilab version Scilab 6.0.0-beta-2(64 bit) clc; clear; //given n1=1.46;//refractive inde for the silica p=0.286;//photo elastic coefficient for the silica Bc=7e-11;//isothermal compressibility in m^2/N lambda=1e-6;//wavelength in meters KB=1.38e-23;//Boltzman constant in J/K TF=1400//fictive temperature in K u=8*(%pi^3)*KB*Bc*TF*p^2;// partial product v=(n1)^8;//partial product z=(lambda)^4;//partial product taur=[(u*v)/(z*3)];//Rayleigh scattering coefficient in per Km mprintf("\n Rayleigh scattering coefficient=%.3f*10^-4 per meter",taur*10^4);//multiplication by 1e4 to convert the unit to !0^-4 per Km LKM=exp(-taur*1e3);//transmission loss factor of fiber per m AdB=10*log10(1/LKM);//Attenuation in dB mprintf("\n Attenuation in dB=%.2fdB per Km",AdB); //the answer vary due to rounding
639b52cdafc663594753affe68aad3a509b2c5cc
449d555969bfd7befe906877abab098c6e63a0e8
/683/CH3/EX3.33/MS_33.sce
9015042e3500f11b9bcf661b1c297c2ebb7f215b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
MS_33.sce
// sum 3-33 clc; clear; F=50; B1=4; B2=8; D=12; y1=D/3*(B1+(2*B2))/(B1+B2); y2=12-y1; R=6+y2; A=(B1+B2)/2*D; //Let x= h^2/R^2 a=(B1+((B2-B1)*(y1+R)/D))*log((R+y1)/(R-y2)) x=R/(A)*(a -(B2-B1)); x=x-1; x=1/x; KG=y2+8; M=F*KG; sigd=F/A; //Let bending stress at a be sigA sigA=M/(A*R)*(1+(x*y1/(R+y1))); //Let bending stress at b be sigB sigB=M/(A*R)*((y2*x/(R-y2))-1); sigA=(sigA-sigd)*10; sigB=(sigB+sigd)*10; // printing data in scilab o/p window printf("sigA is %0.2f MPa ",sigA); printf("\n sigB is %0.2f MPa ",sigB); //The difference in the answers are due to rounding-off of values.
99118f76136e34c09838a26796ba54e5974a5e66
449d555969bfd7befe906877abab098c6e63a0e8
/1472/CH2/EX2.2/2_2.sce
78ac6a6af293c097fa501d73f74ad2e283e0dce9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
190
sce
2_2.sce
clc //Initialization of variables Wb=-33000 //ft-lb V2=3 //cu ft V1=1 //cu ft P=69.4 //psia //calculations Wa=P*(V2-V1)*144 W=Wa+Wb //results printf("Net work done = %d ft-lb",W)
8d1b28efd8df94f1b81d742f29dd71128e1ddd3a
449d555969bfd7befe906877abab098c6e63a0e8
/3281/CH2/EX2.4/ex2_4.sce
b1f89561271ba188a16e9895779cc5349b37c066
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
ex2_4.sce
//Page Number: 93 //Example 2.4 clc; //Given, c=3D+8; //m/s f=10D+9; //Hz zte=410; //ohm //Wider dimension lam=c/f;//m lam=lam*100;//cm a=3/(2*(sqrt(1-(120*%pi/zte)^2))); disp('cm',a,'Wider dimension:');
a35a6bf431c9abfeb22fe936d98a280dd7a367d2
449d555969bfd7befe906877abab098c6e63a0e8
/1694/CH2/EX2.43/EX2_43.sce
4b23c3ed04bf75a77e04e510a742f0743de52081
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
764
sce
EX2_43.sce
clear; clc; printf("\nEx2.43\n"); //page no.-88 //given h=6.624*10^-27;..........//planck's constant in ergs-sec m=9.1*10^-28;.........//mass of electron in kg w=3.2*10^-12;.........//work function in joule c=3*10^10;...........//speed of light in cm/sec lambda=3600*10^-8;...//wavelength in m e=1.6*10^-12;.........//charge in ergs lambda_o=(h*c)/w;..........//threshold wavelength in cm vo=c/lambda_o;........//threshold frequency in m/s v=c/lambda;..........//frequency E=((v-vo)*h)/e.................//energy in eV printf("\nkinetic energy is 1.45 eV\n"); printf("\nso stopping potential is 1.45 eV\n"); v=sqrt((2*E*e)/m)............//velocity of electron in cm/sec printf("\nVelocity of electron is 7.1*10^7 cm/sec\n");
88168adb64c3cba47391122c7aeeb23858466307
477abd9cafd593820f8c911ce94b35c93acd69d3
/FACTORIZATION.sce
c2e1dcc8414f2f93b291ba0627179e186dcce271
[]
no_license
khan2810/Scilab-Solver
67cba0bcc29e7e93418c164393c6977ee632fe2f
3636341eeefa62bf2fb690fcd9046e48de7eb1a1
refs/heads/main
2023-05-30T17:36:59.061148
2021-06-14T15:25:47
2021-06-14T15:25:47
376,855,785
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,444
sce
FACTORIZATION.sce
//Solving by LU decomposition method clc clear function[x]=crout(A,b) [n,m]=size(A) L=zeros(A) U=zeros(A) for i=1:n L(i,1)=A(i,1) U(i,i)=1 end; for j=2:n for k=2:n //This loop is for checking pivoting if L(1,1)==0 temp=L(1,:) L(1,:)=L(k,:) L(k,:)=temp end; end; U(1,j)=A(1,j)/L(1,1) end; for i=2:n for j=2:i L(i,j)=A(i,j)-L(i,1:j-1)*U(1:j-1,j) end; for j=i:n for k=1:n //This loop is for checking pivoting if L(i,i)==0 temp=L(i,:) L(i,:)=L(k,:) L(k,:)=temp end; end; U(i,j)=(A(i,j)-L(i,1:i-1)*U(1:i-1,j))/L(i,i) end; end; disp("This is the L matrix:") disp(L) disp("This is the U matrix:") disp(U) if isnan(det(L))|isnan(det(U))|isinf(det(L))|isinf(det(U)) then printf("This matrix Can not be factorized!!!!") else z=L^-1*b x=U^-1*z end; endfunction //Now execution for the given system of equation //8x-3y+2z=20 //4x+11y-1z=33 //6x+3y+12z=36 A=[8,-3,2;4,11,-1;6,3,12] disp("This is the given cofficient matrix (A)") disp(A) b=[20;33;36] disp("This is the column (b) matrix") disp(b) x=crout(A,b) disp("This is the answer") [n,m]=size(x) for i=1:n printf("\tx(%d)=%f\n",i,x(i)) end;
0a36f20e3bcaa0698f2ab282e95b2be72b0be5a2
a8592d34f144b71794ebf30f1c2a1b5faf0b053c
/ODE/scilab/ode_ABM.sce
df81bef61bfbc7698a11654c20925e05afffa0a0
[]
no_license
f-fathurrahman/ffr-MetodeNumerik
ee9a6a7153b174b1ba3d714fe61ccbd1cb1dd327
e3a9da224c0fd5b32e671708e890018a3c4104c4
refs/heads/master
2023-07-19T22:29:38.810143
2023-07-07T10:02:34
2023-07-07T10:02:34
107,272,110
2
2
null
null
null
null
UTF-8
Scilab
false
false
961
sce
ode_ABM.sce
function [t,y] = ode_ABM(f,tspan,y0,N,KC) // Adams-Bashforth-Moulton method to solve vector d.e. y’(t) = f(t,y(t)) // for tspan = [t0,tf] and with the initial value y0 and N time steps // using the modifier based on the error estimate depending on KC = 1/0 if ~exists("KC", "local") KC = 1 end if ~exists("N","local") N = 100 end if ~exists("tspan","local") y0 = 0 end y0 = y0(:)' h = (tspan(2) - tspan(1))/N tspan0 = tspan(1) + [0 3]*h [t,y] = ode_RK4(f,tspan0,y0,3) t = [t(1:3)' t(4):h:tspan(2)]' for k = 1:4 F(k,:) = f(t(k),y(k,:)) end p = y(4,:) c = y(4,:) KC22 = KC*251/270 KC12 = KC*19/270 h24 = h/24 h241 = h24*[1 -5 19 9] h249 = h24*[-9 37 -59 55] for k = 4:N p1 = y(k,:) + h249*F m1 = p1 + KC22*(c-p) c1 = y(k,:) + h241*[F(2:4,:); f(t(k + 1),m1)] y(k+1,:) = c1 - KC12*(c1 - p1) p = p1 c = c1 F = [F(2:4,:); f(t(k + 1),y(k + 1,:))] end endfunction
634d824e339da43d2cb887e2daa4009cfebfcd3e
449d555969bfd7befe906877abab098c6e63a0e8
/2318/CH5/EX5.3.a/ex_5_3_a.sce
002bb41fd6c6829779248121e01d006cb2d9d658
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
ex_5_3_a.sce
//Example 5.3.a: Logarithmic increment clc; clear; close; //given data : theta1=12.5; theta2=10; lamda=log(theta1/theta2); disp(lamda,"Logarithmic increment, = ")