blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 6 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 87 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 15 values | visit_date timestamp[us]date 2016-08-04 09:00:04 2023-09-05 17:18:33 | revision_date timestamp[us]date 1998-12-11 00:15:10 2023-09-02 05:42:40 | committer_date timestamp[us]date 2005-04-26 09:58:02 2023-09-02 05:42:40 | github_id int64 436k 586M ⌀ | star_events_count int64 0 12.3k | fork_events_count int64 0 6.3k | gha_license_id stringclasses 7 values | gha_event_created_at timestamp[us]date 2012-11-16 11:45:07 2023-09-14 20:45:37 ⌀ | gha_created_at timestamp[us]date 2010-03-22 23:34:58 2023-01-07 03:47:44 ⌀ | gha_language stringclasses 36 values | src_encoding stringclasses 17 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 15 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
5c439709ba8339ee9d07c5ea54e352594f2d7cc5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH1/EX1.03/1_03.sce | 6d5aa090a0612a867ba75aea09a05635d8a4450d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 265 | sce | 1_03.sce | //Problem 1.03: Find the force acting vertically downwards on a mass of 200 g attached to a wire.
//initializing the variables:
M = 0.2; // in Kg
g = 9.81; // in m/s2
//calculation:
F = M*g
printf("\n\nResult\n\n")
printf("\nForce: %.3f Newton(N)\n",F) |
3a58fb50cf6c66d0e84562d8df4b7183cd804e66 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1472/CH13/EX13.2.b/13_2b.sce | 97c0abdd3553803ce4ac917ac158d75b931e4c4c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 398 | sce | 13_2b.sce | clc
//initialization of varaibles
T1=350+460 //R
v1=6 //cu ft/lb
m=1 //lb
R=53.34
v2=2*v1
cp=0.24
//calculations
disp("From steam tables,")
vg=3.342 //cu ft/lb
P1=77.5 //psia
P2=P1
h1=1204.8 //B/lb
v2=2*v1
T2=1106 //F
h2=1586.7 //B/lb
Q=h2-h1
W=P1*144*(v2-v1)
//results
printf("Final temperature = %d F",T2)
printf("\n Work = %d ft lb/lb",W)
printf("\n Heat = %.1f B/lb",Q)
|
e18620cd4aa88122a014fb432bcd19817f4c1aca | 449d555969bfd7befe906877abab098c6e63a0e8 | /1358/CH7/EX7.7/Example77.sce | 3427ce5da6fc5e92fbda797a29fc6a3b090c3c7c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,238 | sce | Example77.sce | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Turbomachinery Design and Theory,Rama S. R. Gorla and Aijaz A. Khan, Chapter 7, Example 7")
Cpg = 1147;
disp("Temperature Drop = T01 -T03")
Drop = 145;
U = 345;
psi = Cpg*(Drop)/U^2
disp("Using velocity diagram")
disp("U/Ca = tan(beta3) - tan(alpha3)")
disp("tan(beta3) = 1/phi + tan(alpha3)")
alpha3 = 12;
phi = 0.75;
beta3 = atan(1/phi + tan(alpha3*%pi/180))*180/%pi
disp("Psi = phi*(tan(beta2) +tan(beta3))")
disp("DOR = phi/2 *(tan(beta3) - tan(beta2))")
disp("tan(beta3) = (psi + 2*DOR)/(2*phi)")
DOR = (tan(beta3*%pi/180) *2*phi - psi)/2 *100
disp("tan(beta2) = (psi-2*DOR)/(2*phi)")
beta2 = atan((psi-2*DOR/100)/(2*phi))*180/%pi
alpha2 = atan(tan(beta2*%pi/180)+(1/phi))*180/%pi
Ca1 = U*phi//m/s
C2 = Ca1/cos(alpha2*%pi/180)//m/s
disp("R2 = T02-T2 = C2^2 /2Cp")
R2 = C2^2 /(2*Cpg)
disp("R3 = T2-T2s = Tn*C2^2/(2Cpg)")
Tn = 0.05;
R3 = Tn*C2^2 /(2*Cpg)
T2 = 1100-R2//K
T2s = T2 - R3//K
P01 = 4;//bars
T01 = 1100;
P2 = P01*(T2s/T01)^4
R = 0.287;
rho2 = P2*100/(R*T2)//kg/m3
disp("Nozzle Throat area in A in m2")
C1 = C2;//m/s
rho1 = 0.907;//kg/m3
m = 24;
A = m/(rho1*C1)
A1 = m/(rho1*Ca1)
|
c3f792a9042beac7a120ab674d39e65af73fcccc | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/tests/examples/acoshm.man.tst | c30e2f6c7a28793facf281d1e753786db321af6d | [
"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 | 81 | tst | acoshm.man.tst | clear;lines(0);
A=[1,2;3,4];
coshm(acoshm(A))
A(1,1)=A(1,1)+%i;
coshm(acoshm(A))
|
a1ed3d1a5ff35caa3937fb029e1225d71ea3bbb3 | a4bbc60bcc82ee6212825ce21fc9e4fa7b04e870 | /Bioinformatics_3k/3uzd/tests/1AXC.tst | df229dd1bbc0d125423d334cc0e6c3af9d7b1879 | [] | no_license | Luksys5/LT_programos | 3a7cabb6c5e8a23a856983c1938d2d492cddf916 | 959ab74029df334767fcad84adc46ae36cf7cdf1 | refs/heads/master | 2021-01-19T19:33:11.505596 | 2017-03-12T18:08:14 | 2017-03-12T18:08:14 | 16,478,166 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 92 | tst | 1AXC.tst | #$Id: pdbboxes 232 2015-05-04 12:44:10Z Lukas_Tutkus $
93.962 97.136 44.179 inputs/1AXC.pdb
|
aa2e688b6881fe3cc5a85fcd733bca1f0e6a0de1 | b3285989ffe1c1bb555a67a92c4bbe7e1e39dcc5 | /Agrégation Mathieu/LP12 - Traitement du signal. Étude spectrale/carré.sce | 7792b1debb7d301958703153288d353c20cbfe74 | [] | no_license | mubero/AgregationPhysique2020 | 82b840924dd800e8d614ecf3e24ab511b2326243 | 9a038fb0302059e9e5b8442ba765f918176916b0 | refs/heads/master | 2022-11-10T13:03:22.976863 | 2020-06-21T15:22:24 | 2020-06-21T15:22:24 | 270,004,658 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 348 | sce | carré.sce | // ******************* Signal carré *******************
clear all
// Paramètres
N = 1; // Nombre de modes
t = linspace(-5,5,1000);
s = 0;
for k = 1:N
s = s + (4/%pi)*(sin((2*k-1)*%pi*t))/(2*k-1);
end
h=gca();
plot2d(t,s, style = 2);
h.data_bounds = [-5, -2 ; 5, 2];
h.x_label.text = "Temps";
h.y_label.text = "s(t)";
|
304def3adb16a9c2a5e0d9da4ceb97ea21759a41 | 2ac3595ed7f1ea89f95169caefd85f9a1c52a6d9 | /base/Applications/Eventing/EventActive/EventActive.tst | 9ce564eda0e35a587c91a9bf3d4147408fd40822 | [] | no_license | lastweek/source-singularity | bc61bdac3047ef02cc017841d7621831b5413fe8 | d37047d36f26f7543224905ae35a369448be904e | refs/heads/master | 2021-10-13T01:19:54.646849 | 2021-09-26T18:58:14 | 2021-09-26T18:58:14 | 210,944,019 | 86 | 8 | null | null | null | null | UTF-8 | Scilab | false | false | 174 | tst | EventActive.tst |
<Profile Name="ProfileEventActive">
<Module Name="EventActive">
<Suite Name="EventActive">
<Test Name="TestAll"/>
</Suite>
</Module>
</Profile>
|
09f697a3f9f222643839af5998f8d00932b6ccb6 | 0896434fe17d3300e03ad0250029673ebf70bacc | /sheet_6/Scilab_codes/parte.sce | 171cfece58520c6219f6a5774427556994d87624 | [] | no_license | TheShiningVampire/EE324_Controls_Lab | 8ff1720b852bf24dca3c172082f5f898f80f69f3 | 9aea73eed3f5a4ac6c19a799f8aebe09f4af0be8 | refs/heads/main | 2023-07-09T17:30:38.041544 | 2021-08-23T12:14:29 | 2021-08-23T12:14:29 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 193 | sce | parte.sce | clear
clc
s = poly(0,'s');
G = 1/((s+3)*(s+4)*(s+12));
for k = 1:50:1000
T = k*G/(1+k*G);
t = 0:0.1:20;
T1 = syslin('c',T);
ts = csim('step' ,t, T1);
plot(t , ts);
end
|
b913f92841d5b2693311d36593419595f7256c32 | a8592d34f144b71794ebf30f1c2a1b5faf0b053c | /ODE/scilab/bvp2_shoot_secant.sce | cdcf641680d9c97dcaf0bed46265729e5fb0d587 | [] | 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 | 1,376 | sce | bvp2_shoot_secant.sce | function [t,x] = bvp2_shoot_secant(f,t0,tf,x0,xf,N,tol,kmax)
// To solve BVP2: [x1,x2]’ = f(t,x1,x2) with x1(t0) = x0, x1(tf) = xf
if ~exists("kmax","local")
kmax = 10
end
if ~exists("tol","local")
tol = 1e-8
end
if ~exists("N","local")
N = 100
end
dx0(1) = (xf - x0)/(tf - t0) // the initial guess of x'(t0)
printf("Initial guess of dx(t0) = %f\n", dx0(1))
[t,x] = ode_RK4(f,[t0 tf],[x0 dx0(1)],N)
// clf()
// plot(t,x(:,1))
// //set( gca(), "data_bounds", [0,1,0.2,0.45] )
// orig_data_bounds = get( gca(), "data_bounds" )
// //disp(orig_data_bounds)
// xs2png(gcf(),"TEMP_shoot_0.png")
e(1) = x(N+1,1) - xf
dx0(2) = dx0(1) - 0.1*sign(e(1))
for k = 2:kmax-1
[t,x] = ode_RK4(f,[t0 tf],[x0 dx0(k)],N)
//clf()
//plot(t,x(:,1))
//set(gca(), "data_bounds", orig_data_bounds)
//xs2png(gcf(),"TEMP_shoot_" + string(k) + '.png')
//difference between the resulting final value and the target one
e(k) = x(N+1,1) - xf
printf("iter = %d, error = %18.10f\n", k, e(k))
ddx = dx0(k) - dx0(k - 1)
if abs(e(k))< tol | abs(ddx) < tol
break
end
deddx = (e(k) - e(k - 1))/ddx // the gradient of mismatching error
dx0(k+1) = dx0(k) - e(k)/deddx // move by secant method
end
Nk = length(dx0)
printf("Final dx0 = %18.10f\n",dx0(Nk))
endfunction |
22c3fdf7e7fa8f05ac70de3a115d6d18ab21b2ff | eee6b5ba0933f6b42d6abe6b5180679afff46b59 | /model_17.5kpa.sce | 3f30143ebb51337d246fd85e88127452e3ef3545 | [] | no_license | Cedev/fluidic-amplifiers | f3e528dc22cc2824cf0c5c869c7e04489c3b116f | 08db2e272a580947d744605bbc42c536ce7e43cf | refs/heads/master | 2021-05-17T16:30:12.460688 | 2020-04-05T15:35:28 | 2020-04-05T15:35:28 | 250,872,346 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 511 | sce | model_17.5kpa.sce | exec("model_defaults.sce", -1)
// CONTRL
FINTIM=1E-2
// PARAM - geometry
D=0.905
B0=1.06E-3
BC=1
ALPH=.20944
XV1=8.640
LGTHC=10
AREAC=2
LGTHS=15
AREAS=3
LGTHV=10
AREAV=1.95
SPL=10
LGTHR=27.75
// PARAM - supply
P0=3.5/.165 // An output pressure of 3.5 kPa with only .174 times the input reaching the output
L=0
CS=0.80 // Based on Figure 14 for high Reynold's number
// PARAM - control
PRE1=1
PRE2=1
POST1=0
POST2=0
P1=0.1
P2=0
TRISE=1.5E-3
exec("simulate_model.sce", -1)
|
9316523b4c469733461f2398cb78c48184ee3834 | 04e4dfecf86c47abbad9ad721bcbc552300a8834 | /Self_tuning_controller/ConventionalTuning_Vikas/PIDControllersetpointchange/pid_bda.sci | b2c916daf41ca0f0430c5438c212ba21c62128f6 | [] | no_license | rupakrokade/scilab_local_codes | 702f741a5cadc6da56e428f7379971818238ff22 | 4de8383487def7f18a1f19906397ed4eaf42480e | refs/heads/master | 2021-01-19T06:58:47.689324 | 2015-10-24T11:55:34 | 2015-10-24T11:55:34 | 26,806,574 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 544 | sci | pid_bda.sci | mode(0)
function [temp] = pid_bda(setpoint,fan,K,Ti,Td)
global temp heat_in fan_in C0 u_old u_new e_old e_new e_old_old
global heatdisp fandisp tempdisp setpointdisp sampling_time m name
e_new = setpoint - temp;
Ts=sampling_time;
S0=K*(1+(Ts/Ti)+(Td/Ts));
S1=K*(-1-((2*Td)/Ts));
S2=K*(Td/Ts);
u_new = u_old + S0*e_new + S1*e_old + S2*e_old_old;
u_old = u_new;
e_old_old = e_old;
e_old = e_new;
heat = u_new;
temp = comm(heat,fan);
plotting([heat fan temp setpoint],[0 0 20 0],[100 100 40 1000])
m=m+1;
endfunction
|
1a35766586b8db020f5081a43ed730f281d49362 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2360/CH3/EX3.26/ex3_26.sce | c3d524802a38ab8ecccfc4961fd02e5fe354362e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex3_26.sce | // Exa 3.26
format('v',7);clc;clear;close;
// Given data
Vm = 0.1;//full scale deflection voltage in V
Rm = 20;//meter resistance in ohm
Im = Vm/Rm;//current in A
I1= 10;// in A
I2= 1;// in A
I3= 100*10^-3;// in A
// I1*R1 = Im*(R2+R3+Rm) or I1*R1 - Im*R2 - Im*R3 = Im*Rm (i)
// I2*(R1+R2) = Im*(R3+Rm) or I2*R1 + I2*R2 -Im*R3 = Im*Rm (ii)
// I3*(R1+R2+R3) = Im*Rm or I3*R1 + I3*R2 + I3*R3 = Im*Rm (iii)
A= [I1 I2 I3;-Im I2 I3;-Im -Im I3];
B= [Im*Rm Im*Rm Im*Rm];
R= B*A^-1;// Solving equation (i), (ii) and (iii) by matrix method
R1= R(1);// in ohm
R2= R(2);// in ohm
R3= R(3);// in ohm
disp(R1,"The value of R1 in ohm is : ")
disp(R2,"The value of R2 in ohm is : ")
disp(R3,"The value of R3 in ohm is : ")
|
56d040cbb8743926a6b91bd961bd31447363751b | e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4 | /New LSTMAttn Model/.data/form-split/GOLD-TEST/dak.tst | 6e1222fde26322dc865411a1e39c82b97991f311 | [] | no_license | davidgu13/Lemma-vs-Form-Splits | c154f1c0c7b84ba5b325b17507012d41b9ad5cfe | 3cce087f756420523f5a14234d02482452a7bfa5 | refs/heads/master | 2023-08-01T16:15:52.417307 | 2021-09-14T20:19:28 | 2021-09-14T20:19:28 | 395,023,433 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 23,767 | tst | dak.tst | waṗiye waṗiwaye V;SG;1;PRS
ohitike uŋkohitikapi V;PL;1;PRS
icimani ye icimani ye V;SG;3;PRS
héc̣a héuŋc̣a V;PL;1+INCL;PRS
ṡapye ṡapuŋye V;PL;1+INCL;PRS
ḣtani ye ḣtani uŋye V;PL;1+INCL;PRS
okicide owekicide V;SG;1;PRS
nataŋ nawataŋ V;SG;1;PRS
hdasaŋ hdasaŋ V;SG;3;PRS
ḣa ḣa V;SG;3;PRS
kaḳi yakaḳipi V;PL;2;PRS
hde yahdapi V;PL;2;PRS
ihdohde nihdohde V;SG;2;PRS
aohaha awaohaha V;SG;1;PRS
aḳi ayaḳipi V;PL;2;PRS
ic̣'icaġe uŋkic̣'icaġe V;PL;1+INCL;PRS
watopa watouŋpapi V;PL;1;PRS
ibotu ibouŋtupi V;PL;1;PRS
pasdohaŋ wapasdohaŋ V;SG;1;PRS
snihda sniyahda V;SG;2;PRS
c̣antewaṡte c̣anteniwaṡte V;SG;2;PRS
icewakte icemawakta V;SG;1;PRS
iyauŋpe iyauŋkuŋpe V;PL;1+INCL;PRS
ṭi uŋṭi V;PL;1+INCL;PRS
iḳope iḳopa V;SG;3;PRS
waḣpanice mawaḣpanice V;SG;1;PRS
núni yanunipi V;PL;2;PRS
ṗáhiŋ kícisuŋ ṗáhiŋ uŋkicisuŋ V;PL;1+INCL;PRS
wópeṭuŋ wópeyaṭuŋ V;SG;2;PRS
wic̣ada wic̣awada V;SG;1;PRS
aḣpeya uŋkaeḣpeye V;PL;1+INCL;PRS
épaṭaŋ éuŋpaṭaŋpi V;PL;1;PRS
yazaŋ yazaŋpi V;PL;3;PRS
hiŋhde uŋhiŋhda V;PL;1+INCL;PRS
hdicu uŋhdicupi V;PL;1;PRS
ohitike uŋkohitika V;PL;1+INCL;PRS
kabubu yakabubupi V;PL;2;PRS
kíciyuieska kíciyuḣdoka V;SG;3;PRS
u u V;SG;3;PRS
tógeḣpekiye tógeḣpeyaye V;SG;2;PRS
wac̣ekiye wac̣eyakiye V;SG;2;PRS
yuḣpe bduḣpe V;SG;1;PRS
kai wakai V;SG;1;PRS
mnaye mnayaŋpi V;PL;3;PRS
iyekiciye iyeweciye V;SG;1;PRS
ihakab iwahakab V;SG;1;PRS
yużipa uŋyużipapi V;PL;1;PRS
hoḣpa hoyaḣpa V;SG;2;PRS
kahiŋte kahiŋtapi V;PL;3;PRS
ohnake oyahnake V;SG;2;PRS
ksúye ksúye V;SG;3;PRS
ksápe niksape V;SG;2;PRS
eyokiya eyokiyapi V;PL;3;PRS
naḣma abdeza naḣma ayabdezapi V;PL;2;PRS
awaciŋ awaciŋpi V;PL;3;PRS
yuṭokca yuṭokca V;SG;3;PRS
bdokaske bdokaske V;SG;3;PRS
hduṡdoka uŋhduṡdoka V;PL;1+INCL;PRS
ihdużaża nihdużaża V;SG;2;PRS
aṗe uŋkaṗapi V;PL;1;PRS
kic̣o yéc̣opi V;PL;2;PRS
yahomni yahomni V;SG;3;PRS
hdaḣepe wahdaḣepa V;SG;1;PRS
wóżaża wadużażapi V;PL;2;PRS
ihni iwahni V;SG;1;PRS
ṗidakiye ṗidauŋkiyapi V;PL;1;PRS
ihni ihni V;SG;3;PRS
pataŋ yapataŋ V;SG;2;PRS
iyakaṡke iyayakaṡkapi V;PL;2;PRS
ṭioanate ṭioanauŋtaŋpi V;PL;1;PRS
da dapi V;PL;3;PRS
kaku kakupi V;PL;3;PRS
oḳ'u oyaḳ'u V;SG;2;PRS
yac̣o dac̣opi V;PL;2;PRS
iwaŋke iwaŋkapi V;PL;3;PRS
tebye tebuŋyapi V;PL;1;PRS
ite icu ite icu V;SG;3;PRS
eye eṗe V;SG;1;PRS
wópeṭuŋ i wópeṭuŋ wai V;SG;1;PRS
wod i wod yai V;SG;2;PRS
c̣aŋzeye c̣aŋżeuŋye V;PL;1+INCL;PRS
yúṭe yáte V;SG;2;PRS
yuġaŋ uŋyuġaŋ V;PL;1+INCL;PRS
hdou wahdou V;SG;1;PRS
yamnumnuġe damnumnuġapi V;PL;2;PRS
okaḣniġe uŋkoḣniġe V;PL;1+INCL;PRS
suŋ yasuŋpi V;PL;2;PRS
yuhomni yuhomni V;SG;3;PRS
mnaye mnaye V;SG;3;PRS
anataŋ anawataŋ V;SG;1;PRS
ahdapṡiyaŋ waŋke ahdapṡiyaŋ uŋwaŋkapi V;PL;1;PRS
o uŋko V;PL;1+INCL;PRS
osdohaŋ kic̣'uŋ osdohaŋ kic̣'uŋ V;SG;3;PRS
ohdake oyahdakapi V;PL;2;PRS
spaye spayapi V;PL;3;PRS
ayatkaŋ adatkaŋpi V;PL;2;PRS
kaptaŋye kaptaŋyaŋpi V;PL;3;PRS
yuinaḣni yuinaḣnipi V;PL;3;PRS
tebkiye tebkiyapi V;PL;3;PRS
ḳ'e uŋḳ'e V;PL;1+INCL;PRS
akaṡtaŋ ayakaṡtaŋ V;SG;2;PRS
naġiyeye naġiyeyaye V;SG;2;PRS
au ayau V;SG;2;PRS
owa uŋkowapi V;PL;1;PRS
ḣtani i ḣtani uŋki V;PL;1+INCL;PRS
awaŋhdake awaŋuŋhdakapi V;PL;1;PRS
nataŋ nayataŋpi V;PL;2;PRS
icaġe uŋkicaġapi V;PL;1;PRS
yuinaḣni yuinaḣni V;SG;3;PRS
kabdeca uŋkabdeca V;PL;1+INCL;PRS
iṡtohmuze iṡtowahmuze V;SG;1;PRS
ḳ'iŋ ḳ'iŋpi V;PL;3;PRS
ihdake ihdake V;SG;3;PRS
(ob) wóhdake ob wóyahdake V;SG;2;PRS
dus máni dus mayani V;SG;2;PRS
ḳoṗehda ḳoṗehda V;SG;3;PRS
yuhomni yuhomnipi V;PL;3;PRS
oihdake uŋkoihdake V;PL;1+INCL;PRS
épaṭaŋ éwapaṭaŋ V;SG;1;PRS
wic̣ada wic̣auŋda V;PL;1+INCL;PRS
ihdoye nihdoye V;SG;2;PRS
ḣtani ḣtauŋnipi V;PL;1;PRS
pażużu pażużupi V;PL;3;PRS
ye uŋye V;PL;1+INCL;PRS
íṗi íuŋṗipi V;PL;1;PRS
yuwaṡakadaŋ bduwaṡakadaŋ V;SG;1;PRS
iṡtiŋme miṡtiŋme V;SG;1;PRS
katoto yakatoto V;SG;2;PRS
naḣtake nayaḣtaka V;SG;2;PRS
kic̣o uŋkic̣o V;PL;1+INCL;PRS
kaptaŋye yakaptaŋye V;SG;2;PRS
ḣtani ḣtani V;SG;3;PRS
ite icu ite iyacu V;SG;2;PRS
éṭuŋwe eyaṭuŋwaŋpi V;PL;2;PRS
uŋspe uŋkospe V;PL;1+INCL;PRS
hi kpażaża hi kpażaża V;SG;3;PRS
katoto yakatotopi V;PL;2;PRS
ie iapi V;PL;3;PRS
yaŋke uŋyaŋke V;PL;1+INCL;PRS
ṗikiye ṗiuŋkiyapi V;PL;1;PRS
aku akupi V;PL;3;PRS
ksúye ksumaye V;SG;1;PRS
wóḳ'u wóyaḳ'upi V;PL;2;PRS
hoḳuwa ye hoḳuwa uŋyapi V;PL;1;PRS
ḣic̣ahaŋ ḣic̣ahaŋpi V;PL;3;PRS
c̣aŋzeye c̣aŋżeye V;SG;3;PRS
inażiŋ inażiŋpi V;PL;3;PRS
yużipa yużipa V;SG;3;PRS
kasota uŋkasota V;PL;1+INCL;PRS
hiŋhde hiŋhdapi V;PL;3;PRS
anataŋ anayataŋ V;SG;2;PRS
ṭi yaṭipi V;PL;2;PRS
c̣oṗa c̣ouŋṗa V;PL;1+INCL;PRS
wayawa ye wayawa bde V;SG;1;PRS
yużiŋce yużiŋce V;SG;3;PRS
yuḣdoke duḣdoke V;SG;2;PRS
hdúte wahdúte V;SG;1;PRS
pasdohaŋ yapasdohaŋ V;SG;2;PRS
ohiye ohiyaye V;SG;2;PRS
kabubu uŋkabubu V;PL;1+INCL;PRS
okiyake owakiyake V;SG;1;PRS
épaṭaŋ épaṭaŋpi V;PL;3;PRS
ke yake V;SG;2;PRS
naṗe nayaṗapi V;PL;2;PRS
paṭaŋ paṭaŋpi V;PL;3;PRS
ḣuḣnaḣye ḣuḣnaŋuŋye V;PL;1+INCL;PRS
ahde ayahdai V;PL;2;PRS
naḣtake nawaḣtaka V;SG;1;PRS
okicide uŋkokicidepi V;PL;1;PRS
yuṡiŋṡiŋ duṡiŋṡiŋ V;SG;2;PRS
hdi uŋhdi V;PL;1+INCL;PRS
kahde kahdapi V;PL;3;PRS
yuṭ'iŋze duṭ'iŋze V;SG;2;PRS
ḳ'iŋ yaḳ'iŋpi V;PL;2;PRS
eced iyeye eced iyeyapi V;PL;3;PRS
waŋke waŋkapi V;PL;3;PRS
iyowa iyouŋwa V;PL;1+INCL;PRS
ḣic̣ahaŋ ḣic̣ahaŋ V;SG;3;PRS
iyauŋpe iyauŋpapi V;PL;3;PRS
paṭuże wapaṭuża V;SG;1;PRS
ípuze ípuzapi V;PL;3;PRS
yuṭ'iŋze uŋyuṭ'iŋze V;PL;1+INCL;PRS
ptecedaŋ maptecedaŋ V;SG;1;PRS
oḳaŋ ṡni oniḳaŋ ṡni V;SG;2;PRS
kíciyuṡdoka kíciyuṡdoka V;SG;3;PRS
hoḳuwa i hokuwa uŋki V;PL;1+INCL;PRS
pusye pusye V;SG;3;PRS
waṡ'ake waniṡ'akapi V;PL;2;PRS
ḳadhde ḳadyahda V;SG;2;PRS
żo uŋżopi V;PL;1;PRS
hdicu yahdicu V;SG;2;PRS
ic̣apte uŋkic̣aptapi V;PL;1;PRS
oyake odakapi V;PL;2;PRS
iwaŋke imuŋke V;SG;1;PRS
itohomni itomahomni V;SG;1;PRS
yaŋke naŋke V;SG;2;PRS
waṡ'ake ṡni wamaṡ'ake ṡni V;SG;1;PRS
ihduwi nihduwi V;SG;2;PRS
iyoṗeye iyopeye V;SG;3;PRS
bdokiṭ'e bauŋkiṭ'api V;PL;1;PRS
yużuŋ yużuŋ V;SG;3;PRS
iwaṡtedaŋ kaḣapa iwaṡtedaŋ kaḣapapi V;PL;3;PRS
eciŋ ecaŋni V;SG;2;PRS
ṗáhiŋ hdasto ṗáhiŋ yahdastopi V;PL;2;PRS
kíciyuieska wéciyuḣdoka V;SG;1;PRS
iwaṡtedaŋ kaḣapa iwaṡtedaŋ wakaḣapa V;SG;1;PRS
ayuwaṡte uŋkayuwaṡte V;PL;1+INCL;PRS
bakpaŋ bauŋkpaŋpi V;PL;1;PRS
aie ayaiapi V;PL;2;PRS
yaŋke uŋyaŋkapi V;PL;1;PRS
aṗe ayaṗe V;SG;2;PRS
yuṡdoke uŋyuṡdoke V;PL;1+INCL;PRS
ḣtani ye ḣtani ye V;SG;3;PRS
pataŋ pataŋpi V;PL;3;PRS
hi hipi V;PL;3;PRS
ic̣aŋc̣aŋ iuŋc̣aŋc̣aŋpi V;PL;1;PRS
yaḣepe daḣepapi V;PL;2;PRS
waṡpaŋye waṡpaŋyayaŋpi V;PL;2;PRS
uŋspeic̣'ic̣iye uŋspenic̣'ic̣iyapi V;PL;2;PRS
yamnumnuġe damnumnuġe V;SG;2;PRS
ksúye ksuniye V;SG;2;PRS
yuwic̣ake bduwic̣ake V;SG;1;PRS
wóḳ'u wóḳ'u V;SG;3;PRS
ḣba ḣba V;SG;3;PRS
níya waniya V;SG;1;PRS
wayawa hi wayawa yahi V;SG;2;PRS
yukca dukcapi V;PL;2;PRS
ḣuḣnaḣye ḣuḣnaŋyayapi V;PL;2;PRS
kahde wakahde V;SG;1;PRS
ihduhomni uŋkihduhomnipi V;PL;1;PRS
we wepi V;PL;3;PRS
dus íyaŋka dus yaínaŋka V;SG;2;PRS
wayawa i wayawa uŋkipi V;PL;1;PRS
ihdohde uŋkihdohdapi V;PL;1;PRS
yuṡpu uŋyuṡpu V;PL;1+INCL;PRS
hdaḣepe uŋhdaḣepapi V;PL;1;PRS
ṭemni ṭemnipi V;PL;3;PRS
naḣme naḣmapi V;PL;3;PRS
akaṡtaŋ ayakaṡtaŋpi V;PL;2;PRS
ihni iyahnipi V;PL;2;PRS
ahde ayahde V;SG;2;PRS
Daḳota Damaḳota V;SG;1;PRS
waṡpaŋye waṡpaŋyaye V;SG;2;PRS
oḳaŋ oniḳaŋpi V;PL;2;PRS
yuptaŋye duptaŋye V;SG;2;PRS
hdohi uŋhdohipi V;PL;1;PRS
yuoko uŋyuoko V;PL;1+INCL;PRS
wóżu wóuŋżupi V;PL;1;PRS
ṡkate uŋṡkate V;PL;1+INCL;PRS
wiyopeye wíyopewaye V;SG;1;PRS
ahdepe uŋkahdepe V;PL;1+INCL;PRS
ihdoi mihdoi V;SG;1;PRS
akiḣaŋ uŋkakiḣaŋ V;PL;1+INCL;PRS
ihduhomni uŋkihduhomni V;PL;1+INCL;PRS
ayuṡtaŋ uŋkayuṡtaŋpi V;PL;1;PRS
bakse bauŋkse V;PL;1+INCL;PRS
yusdohaŋ uŋyusdohaŋ V;PL;1+INCL;PRS
wic̣ake wic̣auŋke V;PL;1+INCL;PRS
waŋyag ye waŋyag uŋye V;PL;1+INCL;PRS
akiktuŋże akiktuŋże V;SG;3;PRS
yuptaŋye yuptaŋye V;SG;3;PRS
ḳ'e ḳ'e V;SG;3;PRS
akiktuŋże ayektuŋże V;SG;2;PRS
papsuŋ uŋpapsuŋpi V;PL;1;PRS
psic̣e yapsic̣a V;SG;2;PRS
c̣aŋzeye c̣aŋżeyayapi V;PL;2;PRS
iwohdake iwouŋhdakapi V;PL;1;PRS
waṡteda uŋwaṡteda V;PL;1+INCL;PRS
waṗiye waṗiuŋye V;PL;1+INCL;PRS
ḳoyaḣe ḳoyayaḣaŋpi V;PL;2;PRS
yatke datkaŋpi V;PL;2;PRS
c̣iŋ wac̣iŋ V;SG;1;PRS
ic̣aḣtake iyakaḣtake V;SG;2;PRS
iyaye ibdabde V;SG;1;PRS
opeṭuŋ opeṭuŋ V;SG;3;PRS
ṡakiye ṡawakiye V;SG;1;PRS
wac̣i wauŋc̣ipi V;PL;1;PRS
ṡtudye ṡtudwaye V;SG;1;PRS
c̣aŋteṡice c̣aŋteṡicapi V;PL;3;PRS
yuḣdeca duḣdecapi V;PL;2;PRS
ḳte ḳte V;SG;3;PRS
oḳaŋ uŋkoḳaŋpi V;PL;1;PRS
wayawa i wayawa ipi V;PL;3;PRS
wakta ṡni wayakta ṡni V;SG;2;PRS
kakse kakse V;SG;3;PRS
watopa watoyapa V;SG;2;PRS
yuḳ'oġe duḳ'oġapi V;PL;2;PRS
bakpaŋ bayakpaŋpi V;PL;2;PRS
sdaye sdayayapi V;PL;2;PRS
kacoco kacocopi V;PL;3;PRS
ṗiye ṗiye V;SG;3;PRS
ḳ'e ḳ'api V;PL;3;PRS
ṡapkiye ṡapyakiye V;SG;2;PRS
yuide duidepi V;PL;2;PRS
ṡaye ṡawaye V;SG;1;PRS
(kci) wóte kci wóyata V;SG;2;PRS
ṡpaŋkiye ṡpaŋkiye V;SG;3;PRS
oḳuwa oḳuwa V;SG;3;PRS
úŋṡike úŋkuŋṡikapi V;PL;1;PRS
waṡ'agic̣'iye waṡ'agic̣'iyapi V;PL;3;PRS
ṡíce niṡicapi V;PL;2;PRS
wáṗi wáuŋpipi V;PL;1;PRS
dus íyaŋka dus waímnaŋka V;SG;1;PRS
sdipe uŋsdipe V;PL;1+INCL;PRS
níya uŋniyaŋpi V;PL;1;PRS
omaniked uŋ omaniked uŋyakuŋ V;PL;1+INCL;PRS
Daḳotia wóhdake Daḳotia wóhdakapi V;PL;3;PRS
ihdohdi nihdohdi V;SG;2;PRS
(ob) ye ob ye V;SG;3;PRS
yuḣdoke yuḣdoke V;SG;3;PRS
naṭake nauŋṭakapi V;PL;1;PRS
wac̣iŋye wac̣iŋuŋyaŋ V;PL;1+INCL;PRS
kapṡuŋ kapṡuŋpi V;PL;3;PRS
ṡapkiye ṡapkiye V;SG;3;PRS
iṡtakakpa iṡtayakakpa V;SG;2;PRS
ihdoku ihdokupi V;PL;3;PRS
kipazo wakipazo V;SG;1;PRS
c̣eṭi c̣eṭi V;SG;3;PRS
yuṭ'iŋze uŋyuṭ'iŋzapi V;PL;1;PRS
niwe niwaŋpi V;PL;3;PRS
aku ayakupi V;PL;2;PRS
yawa yawapi V;PL;3;PRS
kaḣuġa yakaḣuġa V;SG;2;PRS
asni anisni V;SG;2;PRS
iṡtiŋme niṡtiŋme V;SG;2;PRS
nażiŋ nauŋżiŋpi V;PL;1;PRS
iyauŋpe iywaauŋpe V;SG;1;PRS
yuḳ'oġe uŋyuḳ'oġapi V;PL;1;PRS
yubaze dubaze V;SG;2;PRS
ókiye óuŋkiye V;PL;1+INCL;PRS
pamaŋ uŋpamaŋ V;PL;1+INCL;PRS
úŋṡike úŋniṡikapi V;PL;2;PRS
kaṡda kaṡda V;SG;3;PRS
iyeḣca uŋkiyeḣcapi V;PL;1;PRS
yuṡtaŋ bduṡtaŋ V;SG;1;PRS
awaŋhdake awaŋyahdakapi V;PL;2;PRS
teḣiŋda tewaḣiŋda V;SG;1;PRS
huwe ye huwe dapi V;PL;2;PRS
dus íyaŋka dus íyaŋkapi V;PL;3;PRS
ohiye ohiye V;SG;3;PRS
ayatkaŋ uŋkaytkaŋpi V;PL;1;PRS
ṭ'ehoye ṭ'ehowaye V;SG;1;PRS
iyakaṡke iyauŋkaṡke V;PL;1+INCL;PRS
ic̣aŋc̣aŋ imac̣aŋc̣aŋ V;SG;1;PRS
wíṗi wíniṗi V;SG;2;PRS
úŋṡike úŋkuŋṡika V;PL;1+INCL;PRS
ayupte aduptapi V;PL;2;PRS
ho icu ho iwacu V;SG;1;PRS
kci i kci yaipi V;PL;2;PRS
hdasaŋ yahdasaŋ V;SG;2;PRS
adi adi V;SG;3;PRS
okaṡtaŋ uŋkokaṡtaŋpi V;PL;1;PRS
ṡpaŋkiye ṡpaŋuŋkiyapi V;PL;1;PRS
nakce nakce V;SG;3;PRS
itohomni itohomni V;SG;3;PRS
ṡkaŋ uŋṡkaŋpi V;PL;1;PRS
kapṡuŋ wakapṡuŋ V;SG;1;PRS
teḣiŋda teuŋḣiŋdapi V;PL;1;PRS
naṭ'e nayaṭ'api V;PL;2;PRS
ḳíġe ḳíġe V;SG;3;PRS
hdoku yahdoku V;SG;2;PRS
waṡpaŋye waṡpaŋuŋyaŋpi V;PL;1;PRS
póskid yuze póskid duze V;SG;2;PRS
yaŋke yaŋke V;SG;3;PRS
zani uŋzani V;PL;1+INCL;PRS
ṭ'ehoye ṭ'ehouŋyapi V;PL;1;PRS
opeic̣'iṭuŋ opeuŋic̣'iṭuŋpi V;PL;1;PRS
naḣdoke nawaḣdoke V;SG;1;PRS
każużu uŋkażużupi V;PL;1;PRS
waṡ'ake ṡni wauŋṡ'ake ṡni V;PL;1+INCL;PRS
(kci) wóhdake kci wówahdake V;SG;1;PRS
yac̣eye dac̣eyapi V;PL;2;PRS
okicide oyekicidepi V;PL;2;PRS
éṭi éṭi V;SG;3;PRS
ġiye ġiuŋyapi V;PL;1;PRS
yuonihaŋ bduonihaŋ V;SG;1;PRS
ai ayai V;SG;2;PRS
aohaha uŋkaohaha V;PL;1+INCL;PRS
héc̣a héc̣a V;SG;3;PRS
aohaha aohaha V;SG;3;PRS
waḣpanice niwaḣpanicapi V;PL;2;PRS
yukse yukse V;SG;3;PRS
ayuṡtaŋ abduṡtaŋ V;SG;1;PRS
ṭamaheca ṭamahecapi V;PL;3;PRS
paṭaŋ uŋpaṭaŋpi V;PL;1;PRS
nakseye naksewaye V;SG;1;PRS
ṡkate waṡkate V;SG;1;PRS
hoḣpa hoḣpapi V;PL;3;PRS
éṭi éwaṭi V;SG;1;PRS
anaġoptaŋ anawaġopṭaŋ V;SG;1;PRS
ṭemni ṭemamni V;SG;1;PRS
waṡte uŋwaṡte V;PL;1+INCL;PRS
yac̣eye uŋyac̣eyapi V;PL;1;PRS
ihdou uŋkihdoupi V;PL;1;PRS
hdużaża uŋhdużaża V;PL;1+INCL;PRS
ob i ob wai V;SG;1;PRS
yuwic̣ake uŋyuwic̣akapi V;PL;1;PRS
óṗe óuŋṗapi V;PL;1;PRS
yubdaye yubduyapi V;PL;3;PRS
kci i kci wai V;SG;1;PRS
ihdaco nihdaco V;SG;2;PRS
we uŋwepi V;PL;1;PRS
każaża każażapi V;PL;3;PRS
waŋyag i waŋyag uŋkipi V;PL;1;PRS
yuḣdeca yuḣdecapi V;PL;3;PRS
iyecetu iyenicetupi V;PL;2;PRS
éṭi éyaṭipi V;PL;2;PRS
zani uŋzanipi V;PL;1;PRS
yawa uŋyawapi V;PL;1;PRS
eye eye V;SG;3;PRS
ksápe niksapapi V;PL;2;PRS
iṡtohmuze iṡtohmuze V;SG;3;PRS
hdohi hdohipi V;PL;3;PRS
épazo éuŋpazo V;PL;1+INCL;PRS
hdúte uŋhdútapi V;PL;1;PRS
wótehda wóteuŋhdapi V;PL;1;PRS
apabdu uŋkapabdu V;PL;1+INCL;PRS
hdoye uŋhdoye V;PL;1+INCL;PRS
iyakaṡke iyawakaṡke V;SG;1;PRS
Daḳotia wóhdake Daḳotia wóyahdake V;SG;2;PRS
owapi oniwapi V;SG;2;PRS
kaḣdoke uŋkaḣdokapi V;PL;1;PRS
wayawa hi wayawa uŋhi V;PL;1+INCL;PRS
pasdohaŋ pasdohaŋpi V;PL;3;PRS
wakta ṡni wayaktapi ṡni V;PL;2;PRS
ayupte adupte V;SG;2;PRS
ihaḣni inayaḣni V;SG;2;PRS
kabdeca wakabdeca V;SG;1;PRS
snihda sniyahdapi V;PL;2;PRS
hótada kic̣'uŋ hótada yec̣'uŋpi V;PL;2;PRS
yubaze uŋyubazapi V;PL;1;PRS
yuṡpuṡpu bduṡpuṡpu V;SG;1;PRS
iyuṭe iduṭapi V;PL;2;PRS
ozikiye oziuŋkiyapi V;PL;1;PRS
naṭ'e nayaṭ'e V;SG;2;PRS
kaye kayapi V;PL;3;PRS
kaḣdoke wakaḣdoka V;SG;1;PRS
kíciyuza kíciyuze V;SG;3;PRS
iwohdake iwoyahdake V;SG;2;PRS
ahde ahdapi V;PL;3;PRS
áye ábde V;SG;1;PRS
ṡapye ṡapyayapi V;PL;2;PRS
c̣aŋniye c̣aŋuŋniyapi V;PL;1;PRS
ayuṡtaŋ aduṡtaŋpi V;PL;2;PRS
yuṭ'iŋze yuṭ'iŋzapi V;PL;3;PRS
yasmi yasmipi V;PL;3;PRS
iṡtohmuze iṡtouŋhmuzapi V;PL;1;PRS
ohoda ohowada V;SG;1;PRS
wod hi wod wahi V;SG;1;PRS
wayawa wauŋyawapi V;PL;1;PRS
ptecedaŋ ptecedaŋpi V;PL;3;PRS
ic̣iŋye ic̣iŋuŋye V;PL;1+INCL;PRS
ḳ'u yaḳ'u V;SG;2;PRS
paṭ'iŋze uŋpaṭ'iŋzapi V;PL;1;PRS
kasota yakasotapi V;PL;2;PRS
ihdużaża nihdużażapi V;PL;2;PRS
yazaŋ niyazaŋ V;SG;2;PRS
wac̣i wayac̣i V;SG;2;PRS
kaṡda yakaṡda V;SG;2;PRS
wíhni wíwahni V;SG;1;PRS
yuoko duoko V;SG;2;PRS
iyowa iyowa V;SG;3;PRS
ihdoḳi mihdoḳi V;SG;1;PRS
iyekiciye iyeyeciyapi V;PL;2;PRS
bakpaŋ bawakpaŋ V;SG;1;PRS
ḳiŋhde waḳiyahde V;SG;1;PRS
hdáwa yahdawa V;SG;2;PRS
awaciŋ awaciŋ V;SG;3;PRS
hiyuye hiyuyaye V;SG;2;PRS
katoto katoto V;SG;3;PRS
ic̣apte iwaḳapte V;SG;1;PRS
mas'aṗe mas'ayaṗe V;SG;2;PRS
iyauŋpe iyauŋkuŋpapi V;PL;1;PRS
icaḣye icaḣyaye V;SG;2;PRS
yuhda uŋyuhda V;PL;1+INCL;PRS
ḣa uŋḣapi V;PL;1;PRS
yukape dukape V;SG;2;PRS
yuṭokca bduṭokca V;SG;1;PRS
ihduṡdoke ihduṡdokapi V;PL;3;PRS
póġaŋ uŋpoġaŋpi V;PL;1;PRS
tebkiye tebyakiyapi V;PL;2;PRS
ihdoye uŋkihdoye V;PL;1+INCL;PRS
eyokiya eyokiyayapi V;PL;2;PRS
ahdepe ayahdepapi V;PL;2;PRS
niwe uŋniwe V;PL;1+INCL;PRS
hdusote hdusotapi V;PL;3;PRS
ḳte waḳte V;SG;1;PRS
ite icu ite iyacupi V;PL;2;PRS
okiyake oyakiyakapi V;PL;2;PRS
wíṗi wíṗi V;SG;3;PRS
ṗikiye ṗikiyapi V;PL;3;PRS
opeṭuŋ opeyaṭuŋpi V;PL;2;PRS
pazo yapazopi V;PL;2;PRS
sdodye sdoduŋye V;PL;1+INCL;PRS
aṗe aṗe V;SG;3;PRS
wod i wod yaipi V;PL;2;PRS
yaġope yaġopapi V;PL;3;PRS
yaiyowaza bdaiyowaza V;SG;1;PRS
naḣme nayaḣba V;SG;2;PRS
pamaŋ pamaŋ V;SG;3;PRS
apabdu ayapabdupi V;PL;2;PRS
aie ayaie V;SG;2;PRS
ibotu ibotupi V;PL;3;PRS
waṡteda niwaṡteda V;SG;2;PRS
ímna ínimnapi V;PL;2;PRS
opeic̣'iṭuŋ openic̣'iṭuŋpi V;PL;2;PRS
ḳíze waḳiza V;SG;1;PRS
ec̣uŋ ṡi ec̣uŋ waṡi V;SG;1;PRS
żo yażo V;SG;2;PRS
ṭi ṭi V;SG;3;PRS
kaḳoḳoke wakaḳoḳoka V;SG;1;PRS
i yaipi V;PL;2;PRS
c̣aŋniye c̣aŋniye V;SG;3;PRS
iyekiciye iyekiciye V;SG;3;PRS
yuṡna bduṡna V;SG;1;PRS
c̣eṭi c̣eyaṭipi V;PL;2;PRS
yuḣice yuḣicapi V;PL;3;PRS
icaġe inicaġe V;SG;2;PRS
wayatke wabdatke V;SG;1;PRS
opeic̣'iṭuŋ opeic̣'iṭuŋpi V;PL;3;PRS
dus íyaŋka dus íyaŋka V;SG;3;PRS
c̣epa nic̣epa V;SG;2;PRS
ksápe ksápe V;SG;3;PRS
wac̣ekiye wac̣ekiye V;SG;3;PRS
aḣpeya aeḣpewaye V;SG;1;PRS
psic̣e psic̣api V;PL;3;PRS
(he) wóiġaġe he wóiġaġe V;SG;3;PRS
ihdohdi ihdohdi V;SG;3;PRS
papsuŋ uŋpapsuŋ V;PL;1+INCL;PRS
iyokṗi iyonikṗipi V;PL;2;PRS
yuinina yuinina V;SG;3;PRS
ṡape uŋṡapapi V;PL;1;PRS
c̣aŋnuŋpe c̣aŋnuŋnuŋpe V;SG;2;PRS
yúṭe yútapi V;PL;3;PRS
yuonihaŋ yuonihaŋpi V;PL;3;PRS
hdohdi yahdohdi V;SG;2;PRS
úŋṡike úŋniṡika V;SG;2;PRS
wayawa i wayawa wai V;SG;1;PRS
úŋṡida úŋṡidapi V;PL;3;PRS
kasota wakasota V;SG;1;PRS
ihdake iyahdakapi V;PL;2;PRS
yuwic̣ake duwic̣ake V;SG;2;PRS
wic̣ake wic̣ayake V;SG;2;PRS
spaye maspaye V;SG;1;PRS
naṗe nauŋṗe V;PL;1+INCL;PRS
ke kapi V;PL;3;PRS
ksúye ksuniyapi V;PL;2;PRS
ġuye ġuwaye V;SG;1;PRS
ḣtani hi ḣtani hi V;SG;3;PRS
kaḳi kaḳipi V;PL;3;PRS
au uŋkaupi V;PL;1;PRS
paḣdoke yapaḣdokapi V;PL;2;PRS
kabubu wakabubu V;SG;1;PRS
ṗiye ṗiyapi V;PL;3;PRS
íyotaŋka íbdotaŋka V;SG;1;PRS
ḳ'u yaḳ'upi V;PL;2;PRS
nataŋ nataŋ V;SG;3;PRS
wayazaŋke wayazaŋkapi V;PL;3;PRS
iwaṡtedaŋ kaḣapa iwaṡtedaŋ yakaḣapa V;SG;2;PRS
oṗe uŋkoṗe V;PL;1+INCL;PRS
ho icu ho iyacu V;SG;2;PRS
ihdużaża ihdużażapi V;PL;3;PRS
hdoḳi yahdoḳi V;SG;2;PRS
adi uŋkadipi V;PL;1;PRS
owapi owic̣awapi V;PL;3;PRS
kabdeca kabdeca V;SG;3;PRS
iyecetu iyeuŋcetu V;PL;1+INCL;PRS
ṡakiye ṡayakiye V;SG;2;PRS
okide okide V;SG;3;PRS
ómna uŋkómna V;PL;1+INCL;PRS
ye bde V;SG;1;PRS
iṡtiŋme iṡtiŋme V;SG;3;PRS
icewakte iceuŋwakta V;PL;1+INCL;PRS
íṗi íuŋṗi V;PL;1+INCL;PRS
yuġaŋ yuġaŋpi V;PL;3;PRS
(ho) ḳuyake ho maḳuyake V;SG;1;PRS
icaḣye icaḣwaye V;SG;1;PRS
au ayaupi V;PL;2;PRS
iḳope iḳoyapapi V;PL;2;PRS
ṡkaŋ ṡkaŋpi V;PL;3;PRS
ahiṭuŋwe ahiyaṭuŋwe V;SG;2;PRS
naṭ'e nawaṭ'e V;SG;1;PRS
ḣpaŋye ḣpaŋye V;SG;3;PRS
waŋyake waŋuŋyakapi V;PL;1;PRS
iṡteca iuŋṡtecapi V;PL;1;PRS
ihdohdi mihdohdi V;SG;1;PRS
kipazo uŋkipazopi V;PL;1;PRS
niwe niwe V;SG;3;PRS
ḳ'u ḳ'u V;SG;3;PRS
każużu każużupi V;PL;3;PRS
hde hde V;SG;3;PRS
kakiże kakiżapi V;PL;3;PRS
ohiye ohiuŋye V;PL;1+INCL;PRS
ḣpaŋye ḣpaŋwaye V;SG;1;PRS
ihaḣni inauŋḣni V;PL;1+INCL;PRS
waṡpaŋye waṡpaŋwaye V;SG;1;PRS
patitaŋ patitaŋ V;SG;3;PRS
ayatkaŋ ayatkaŋpi V;PL;3;PRS
yuinaḣni bduinaḣni V;SG;1;PRS
pataŋ yapataŋpi V;PL;2;PRS
hdasaŋ yahdasaŋpi V;PL;2;PRS
yuṭani uŋyuṭani V;PL;1+INCL;PRS
waṡ'agic̣'iye waṡ'agnic̣'iye V;SG;2;PRS
ṡíce niṡice V;SG;2;PRS
iṡtohmuze iṡtoyahmuzapi V;PL;2;PRS
hdusote wahdusote V;SG;1;PRS
yuṡiŋṡiŋ duṡiŋṡiŋpi V;PL;2;PRS
c̣éye wac̣eya V;SG;1;PRS
apabdu ayapabdu V;SG;2;PRS
ḳiŋhde ḳiŋhdapi V;PL;3;PRS
hdicu yahdicupi V;PL;2;PRS
ípuze ínipuzapi V;PL;2;PRS
ożu oyażu V;SG;2;PRS
hinażiŋ yahinażiŋpi V;PL;2;PRS
ḣtani ye ḣtani uŋyapi V;PL;1;PRS
c̣éye uŋc̣eya V;PL;1+INCL;PRS
kahdi kahdipi V;PL;3;PRS
akaṡtaŋ uŋkakaṡtaŋpi V;PL;1;PRS
yuwaṡakadaŋ uŋyuwaṡakadaŋpi V;PL;1;PRS
yutitaŋ bdutitaŋ V;SG;1;PRS
héc̣a hénic̣a V;SG;2;PRS
eced iyeye eced iyeyaye V;SG;2;PRS
hdohi wahdohi V;SG;1;PRS
yuinaḣni uŋyuinaḣnipi V;PL;1;PRS
akaṡtaŋ awakaṡtaŋ V;SG;1;PRS
anataŋ anataŋpi V;PL;3;PRS
yuṡdoke duṡdoke V;SG;2;PRS
iwaṡtedaŋ ec̣uŋ iwaṡtedaŋ ec̣uŋuŋkuŋ V;PL;1+INCL;PRS
iyokṗi iyouŋkṗi V;PL;1+INCL;PRS
(ob) wóta ob wóṭakapi V;PL;3;PRS
okaṡtaŋ okaṡtaŋpi V;PL;3;PRS
otkeye otkeyapi V;PL;3;PRS
akiḣaŋ akiḣaŋpi V;PL;3;PRS
ṗidakiye ṗidakiyapi V;PL;3;PRS
naḣice nauŋḣica V;PL;1+INCL;PRS
yaḣtake uŋyaḣtakapi V;PL;1;PRS
(ob) wóta ob wóyaṭakapi V;PL;2;PRS
au uŋkau V;PL;1+INCL;PRS
pusye puswaye V;SG;1;PRS
ġikiye ġiyakiyapi V;PL;2;PRS
c̣éye yac̣eyapi V;PL;2;PRS
yuze uŋyuzapi V;PL;1;PRS
iḳopehde iḳopeuŋhdapi V;PL;1;PRS
uŋspeḳiye uŋspeyakiyapi V;PL;2;PRS
hiŋhde nihiŋhde V;SG;2;PRS
dus kaḣapa dus wakaḣapa V;SG;1;PRS
snihda sniuŋhdapi V;PL;1;PRS
hoḳuwa ye hoḳuwa bde V;SG;1;PRS
wayawa wadawapi V;PL;2;PRS
otkeye otkeye V;SG;3;PRS
kíciyuhe uŋkiciyuhapi V;PL;1;PRS
ókiye ókiye V;SG;3;PRS
c̣aŋteṡice c̣aŋtemaṡice V;SG;1;PRS
uŋspeḳiye uŋspekiyapi V;PL;3;PRS
yaoṭaŋiŋ yaoṭaŋiŋpi V;PL;3;PRS
yuṭaŋka uŋyuṭaŋka V;PL;1+INCL;PRS
yuwic̣ake duwic̣akapi V;PL;2;PRS
kaṡke yakaṡkapi V;PL;2;PRS
ohdake oyahdake V;SG;2;PRS
yuieska uŋyuieskapi V;PL;1;PRS
okaḣniġe uŋkoḣnigapi V;PL;1;PRS
yaġope bdaġope V;SG;1;PRS
wayazaŋke waniyazaŋkapi V;PL;2;PRS
waŋke uŋwaŋke V;PL;1+INCL;PRS
icaḣye icaḣyapi V;PL;3;PRS
ṡapye ṡapyapi V;PL;3;PRS
íyotaŋka íyotaŋkapi V;PL;3;PRS
napce nayapcapi V;PL;2;PRS
ye yapi V;PL;3;PRS
yaḣepe yaḣepapi V;PL;3;PRS
wayawa hi wayawa uŋhipi V;PL;1;PRS
yubaze dubazapi V;PL;2;PRS
wópeṭuŋ ye wópeṭuŋ ye V;SG;3;PRS
ṭi yaṭi V;SG;2;PRS
c̣aṗe c̣ayaṗe V;SG;2;PRS
kíciyuġaŋ yéciduġaŋ V;SG;2;PRS
paṭ'iŋze yapaṭ'iŋzapi V;PL;2;PRS
omaniked uŋ omaniked yauŋ V;SG;2;PRS
hdoḳi yahdoḳipi V;PL;2;PRS
hdoku hdokupi V;PL;3;PRS
iḣa iyaḣa V;SG;2;PRS
ohdake ohdake V;SG;3;PRS
iyokṗi iyonikṗi V;SG;2;PRS
okaṡtaŋ owakaṡtaŋ V;SG;1;PRS
kaṡda wakaṡda V;SG;1;PRS
ohoda ohouŋdapi V;PL;1;PRS
okiwa okiwa V;SG;3;PRS
yuṡdoke yuṡdoke V;SG;3;PRS
naṗe naṗapi V;PL;3;PRS
wáṗi wámapi V;SG;1;PRS
naṭake naṭakapi V;PL;3;PRS
sdodkiye sdodwakiye V;SG;1;PRS
nice nice V;SG;3;PRS
Daḳota uŋDaḳotapi V;PL;1;PRS
yuhiŋte duhiŋtapi V;PL;2;PRS
ḳte yaḳte V;SG;2;PRS
ihduwi uŋkihduwipi V;PL;1;PRS
c̣aŋnuŋpe c̣aŋnuŋkuŋpe V;PL;1+INCL;PRS
kasota uŋkasotapi V;PL;1;PRS
waŋke núnke V;SG;2;PRS
yuṡkice uŋyuṡkicapi V;PL;1;PRS
hoḳuwa i hokuwa uŋkipi V;PL;1;PRS
ode oyadepi V;PL;2;PRS
hdoye yahdoyapi V;PL;2;PRS
wópeṭuŋ ye wópeṭuŋ uŋyapi V;PL;1;PRS
iḳope iḳopapi V;PL;3;PRS
ḣpaŋye ḣpaŋuŋyapi V;PL;1;PRS
wópeṭuŋ i wópeṭuŋ yaipi V;PL;2;PRS
ḳíze uŋḳiza V;PL;1+INCL;PRS
adi uŋkadi V;PL;1+INCL;PRS
ṗidaye ṗidauŋyapi V;PL;1;PRS
waṡtedake waṡteyadake V;SG;2;PRS
kabdeca yakabdecapi V;PL;2;PRS
ṡpaŋkiye ṡpaŋyakiyapi V;PL;2;PRS
ai ayaipi V;PL;2;PRS
nice ninic̣api V;PL;2;PRS
waŋyag ye waŋyag de V;SG;2;PRS
i ipi V;PL;3;PRS
wópeṭuŋ i wópeṭuŋ uŋki V;PL;1+INCL;PRS
kíciyuhe uŋkiciyuhe V;PL;1+INCL;PRS
yuṡpi yuṡpi V;SG;3;PRS
yubdaye dubduyapi V;PL;2;PRS
óṗe óyaṗe V;SG;2;PRS
kamna kamnapi V;PL;3;PRS
c̣iŋ uŋc̣iŋpi V;PL;1;PRS
kíciyuḣdoke yéciduḣdoka V;SG;2;PRS
ṡ'a uŋṡ'api V;PL;1;PRS
yaoṭaŋiŋ uŋyaoṭaŋiŋpi V;PL;1;PRS
(takuda) wóiġaġe ṡni takuda wóiniġaġa ṡnipi V;PL;2;PRS
ihdou ihdoupi V;PL;3;PRS
yatke yatkaŋpi V;PL;3;PRS
waṡ'agic̣'iye waṡ'aguŋkic̣'iyapi V;PL;1;PRS
yuwaṡakadaŋ duwaṡakadaŋ V;SG;2;PRS
yubdaye dubduye V;SG;2;PRS
ḣtani ye ḣtani bde V;SG;1;PRS
owa oyawapi V;PL;2;PRS
tógeḣpekiye tógeḣpewaye V;SG;1;PRS
ideye idewaye V;SG;1;PRS
ku uŋkupi V;PL;1;PRS
yubdaye bdubduye V;SG;1;PRS
oḳaŋ oḳaŋ V;SG;3;PRS
kíciyuṡdoka kíciyuṡdokapi V;PL;3;PRS
ihdoi ihdoipi V;PL;3;PRS
waḣpanice waḣpanice V;SG;3;PRS
kaġeġe yakaġeġepi V;PL;2;PRS
mazakoza kic̣'uŋ mazakoza uŋkikic̣'uŋpi V;PL;1;PRS
ibotu ibowatu V;SG;1;PRS
kaḳi wakaḳi V;SG;1;PRS
u uŋku V;PL;1+INCL;PRS
wiyopeye wíyopeyaye V;SG;2;PRS
|
3354d3e82e9e73957efeee8200519ebf074d9d9c | 8aff21ee3944bdacbff38a386556c89c38377c6a | /dare.sci | bef39737c44254ec47d3f6c35310cffa7d7003dd | [] | no_license | rutup1595/control-system | bd4704a4aa437a66260301a22adb5e55b49c5c84 | b30d559d8835cd278cc6d6bb81f821cdfcc9ee55 | refs/heads/master | 2021-01-17T10:17:03.192056 | 2019-10-10T05:28:46 | 2019-10-10T05:28:46 | 59,283,553 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 3,516 | sci | dare.sci | function [varargout]=dare(A,B,Q,varargin)
//
//Calling Sequence
//function[X L G]=dare(A,B,Q,R) --- for discrete time systems
//Parameters
//A - Real matrix (n-by-n).
//B - Real symmetric matrix (n-by-m).
//Q - Real symmetric matrix (n-by-n).
//R - Real matrix (m-by-m).
//X - Unique stabilizing solution of the discrete-time Riccati equation (n-by-n).
//L - Closed-loop poles (n-by-1).
//G - Corresponding gain matrix (m-by-n).
//Description
//Solves discrete-time algebraic Riccati equations.
// A'X + XA - XB R^(-1) B'X + Q = 0 (continuous time case)
//Z=(R^-1)*B'*X
//L=eigen values of (A-B*Z)
//however the general dare equation(involving descriptor matrix E)is not predefined in scilab thus in this function generalised DARE is not evaluated.
//Examples:
// 1. a = [ 0.4 1.7;0.9 3.8];
// b = [ 0.8 ;2.1];
// c=[1 -1];
// r=3;
// [x y z]=dare(a,b,c.'*c,r)
//See also
// riccati,schur,stabil,care
//Authors
//Rutuja Moharil
//Bibliography
//https://sourceforge.net/p/octave/control/ci/f7d0ce2cad551ee1dc57af498ff9dcbb94db6ae1/tree/inst/dare.m#l34
[lhs rhs]=argn(0)
if (issquare(A)<>%T)|(issquare(Q)<>%T) then //check if the matrices are square
error('wrong size of matrix')
end
if Q'==Q then //check if the matrices are symmetric
[n1 m1]=size(A);
[n2 m2]=size(B);
else
error('enter the symmetric matrix only')
end
if(n2<>n1) then //number of rows of A and B matricx must be same
error('wrong size')
end
if stabil(A,B)==[] then //check stabilizability
error('wrong input arguments')
end
if rhs==4 then
if length(varargin)==1 & (issquare(varargin(1))==%T) then
r=varargin(1);
[n4 m4]=size(r) // number of columns of B and R must be same
if (m4<>m2) then
error('wrong size')
end
B1=B*inv(r)*B'
x=riccati(A,B1,Q,'d') ; // using riccati command to solve dare
//x=X1/X2
y=inv(B'*x*B+r)*B'*x*A // gain matrix
z=A-B*y
z=spec(z) // eigen values
end
elseif rhs==3 // when R matrix is not present
r=eye(m2,m2);
// B1=B*inv(r)*B'
x=riccati(A,B,Q,'d') ; // using riccati command to solve dare
y=inv(B'*x*B+r)*B'*x*A // gainn matrix
z=A-B*y
z=spec(z) // eigen values
else
error('wrong input arguments')
end
varargout(1)=x;
varargout(3)=y;
varargout(2)=z;
endfunction
|
904176004f69d8be862a39aa055a844721bf9350 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1682/CH10/EX10.4/Exa10_4.sce | e71d7c943547f48c771d1984581298949a77fd21 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,251 | sce | Exa10_4.sce | //Exa 10.4
clc;
clear;
close;
//Cost to the state :
disp("Cost to the state :")
n=20;//in years
P=2500000000;//in Rs.
Agt=10000000;//in Rs.
Ai=1000000;//in Rs.
Com=48000;//in Rs./year/employee
C1=Com*300;//in Rs.
i=10;//in % per annum
//Formula : (A/P,i,n) : ((i/100)*(1+i/100)^n)/(((1+i/100)^n)-1)
C2=P*((i/100)*(1+i/100)^n)/(((1+i/100)^n)-1);//in Rs
disp(C2,"Annual equivalent initial cost in Rs. : ");
CA=C2+C1;//in Rs
disp(CA,"Total Annual equivalent cost of the project in Rs. : ");
//Benefit to the state :
disp("Benefit to the state :")
W=30000000;//in Rs.
//Formula : (A/P,i,n) : ((i/100)*(1+i/100)^n)/(((1+i/100)^n)-1)
A1=W*((i/100)*(1+i/100)^n)/(((1+i/100)^n)-1);//in Rs.
Agpy=10000000;//in ton/year
A2=Agpy*(30-10);//in Rs.
AvgAI=1000000;//in tons Km.
G=20000000;//in Rs.
//Formula : (A/G,i,n) :(((1+i/100)^n)-i*n/100-1)/(((i/100)*(1+i/100)^n)-i/100)
A3=A2+G*(((1+i/100)^n)-i*n/100-1)/(((i/100)*(1+i/100)^n)-i/100) ;//in Rs.
disp(A3,"Annual equivalent average of transport cost saving in Rs. : ");
BA=A1+A3;//in Rs.
disp(BA,"Total annual equivalent benefits to the state : ");
BCratio=BA/CA;//unitless
disp(BCratio,"BCratio : ");
disp("The benefit cost ratio is more than 1,the project is justified."); |
84a770cc44cc1e17f1daa021a21c043be314a1dd | 449d555969bfd7befe906877abab098c6e63a0e8 | /3886/CH15/EX15.8/15_8.sce | 8d8a838f41e8df76a5166e60fad08e73084a0553 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 15_8.sce | //Two incloned planes
//refer fig.15.10 (a),(b) and (c)
//Let the assembly move down the 60 degree plane by an acceleration a m/sec^2
//Consider the block weighing 100 N
//Applying equilibrium conditions
N1=50 //N
mu=1/3
//From law of friction
F1=mu*N1 //N
//T+((100*a)/(9.81))=69.93
//Now consider 50 N block
N2=50*cosd(30) //N
//From the law of friction
F2=mu*N2
//((50*a)/(9.81))-T=-39.43
//Solving we get
a=(69.93-39.43)*9.81/(100+50) //m/sec^2
T=69.93-(100*1.9947/9.81) //N
printf("\na=%.4f m/sec^2\nT=%.2f N",a,T)
|
ef63600e8d92d340558d88982704b1d8e92f6d31 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3755/CH10/EX10.15/Ex10_15.sce | 8e00ce9e022cd5ba3db41880c2d391fdb2bfffc4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 440 | sce | Ex10_15.sce | clear
//
//
//
//Variable declaration
epsilon0=8.85*10^-12; //dielectric constant
Na=6.023*10^26; //number of atoms
M=32; //atomic mass
alphae=3.28*10^-40; //dielectric polarizability(Fm^2)
rho=2.08*10^3; //density(kg/m^3)
//Calculations
x=Na*rho*alphae/(M*3*epsilon0);
epsilonr=(1+(2*x))/(1-x); //dielectric constant
//Result
printf("\n dielectric constant is %0.1f ",epsilonr)
|
635292ec39d274e6b4ddff58d1e6219f8ac81538 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2444/CH6/EX6.2/ex6_2.sce | 504f3fb033627d90d8ea6df1f8f00dd6935cb532 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 244 | sce | ex6_2.sce | // Exa 6.2
clc;
clear;
close;
format('v',7)
// Given data
Beta = 0.01;//feedback fraction
// Voltage gain with negative feedback
A = 3000;// unit less
Af = A/(1+(Beta*A));// unit less
disp(Af,"The voltage gain of the amplifier is");
|
456dbecdd747fda52a1f3b3878869b063d51619f | 218307820851c017df48930a4607586b000dc01d | /Project7-8/BasicTest/BasicTestVME.tst | 7d1ba17ab4672a06d3c6f4e97d872d40d9bdac84 | [] | no_license | catiecook/nand2tetris | 8e51a09488b46ba1b8fd996e32ad45004bb47037 | 4d70f9683ab51283317ff194eece12e52a7901f8 | refs/heads/master | 2021-01-10T13:30:52.798712 | 2016-05-05T15:34:11 | 2016-05-05T15:34:11 | 53,958,856 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 129 | tst | BasicTestVME.tst | //BasicTestVME.tst
set sp 256,
set local 300,
set argument 400,
set this 3000,
set that 3010,
repeat 25 {
vmstep;
}
output; |
f709b6ee8d0eadf0a5402f1d433a9b7ac81caa96 | 449d555969bfd7befe906877abab098c6e63a0e8 | /650/CH5/EX5.2/2.sce | c6616f4b50938e606c9ca318a4a92faf6128bc0a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 476 | sce | 2.sce | clc
r=[0 0.05 0.10 0.15 0.20 0.225 0.25];
v=[19 18.6 17.7 16.3 14.2 12.9 0];
// We define a new variable dQ=v*2*%pi*r. According to the given values of r, v, we get dQ as follows
dQ=[0 5.8 11.1 15.4 17.8 18.2 0];
plot(r,dQ)
xtitle("", "Radius", "v*2*%pi*r")
// From the graph area under the curve comes out to be 2.74
Q=2.74; // m^3/s
disp(" Rate of flow =")
disp(Q)
disp("m^3/s")
d=0.5; // m
v=4*Q/%pi/d^2;
disp("Average velocity =")
disp(v)
disp("m/s") |
d2a57ab2995ab054334887a7ffde6552ab17b4ba | 449d555969bfd7befe906877abab098c6e63a0e8 | /3556/CH12/EX12.10/Ex12_10.sce | d33554222c354827ff001d9d14d344696d7a2068 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 4,588 | sce | Ex12_10.sce | clc
// Fundamental of Electric Circuit
// Charles K. Alexander and Matthew N.O Sadiku
// Mc Graw Hill of New York
// 5th Edition
// Part 2 : AC Circuits
// Chapter 12 : Three Phase Circuit
// Example 12 - 10
clear; clc; close; // Clear the work space and console.
//
// Given data
V1_mag = 120.0000 * sqrt(3);
V1_angle = 30.0000;
V2_mag = 120.0000 * sqrt(3);
V2_angle = -90.000;
Van_mag = 120.0000;
Van_angle = 0.0000;
Vbn_mag = Van_mag;
Vbn_angle = -120.0000;
Vcn_mag = Van_mag;
Vcn_angle = 120.0000;
Zan = complex(0,5);
Zbn = complex(10,0);
Zcn = complex(0,-10);
V1 = complex(V1_mag*cosd(V1_angle),V1_mag*sind(V1_angle));
V2 = complex(V2_mag*cosd(V2_angle),V2_mag*sind(V2_angle));
Z11 = complex(10,5)
Z12 = complex(-10,0);
Z21 = Z12;
Z22 = complex(10,-10);
// Calculations Determinants
delta = det([Z11 Z12; Z21 Z22]);
delta_mag = norm(delta);
delta_real = real(delta);
delta_imag = imag(delta);
delta_angle = atand(delta_imag,delta_real);
// Calculations Determinants For Source Voltage V1
delta1 = det([V1 Z12; V2 Z22]);
delta1_mag = norm(delta1);
delta1_real = real(delta1);
delta1_imag = imag(delta1);
delta1_angle = atand(delta1_imag,delta1_real);
// Calculations Determinants For Source Voltage V2
delta2 = det([Z11 V1; Z12 V2]);
delta2_mag = norm(delta2);
delta2_real = real(delta2);
delta2_imag = imag(delta2);
delta2_angle = atand(delta2_imag,delta2_real);
// Calculations Mesh Current I1
I1_mag = delta1_mag/delta_mag;
I1_angle = delta1_angle - delta_angle
// Calculations Mesh Current I2
I2_mag = delta2_mag/delta_mag;
I2_angle = delta2_angle - delta_angle
// Calculations Line Current a
I_a_mag = I1_mag;
I_a_angle = I1_angle
// Calculations Line Current b
I1 = complex(I1_mag*cosd(I1_angle),I1_mag*sind(I1_angle))
I2 = complex(I2_mag*cosd(I2_angle),I2_mag*sind(I2_angle))
I_b_mag = norm(I2 - I1);
I_b_angle = atand(imag(I2 - I1),real(I2 - I1))
// Calculations Line Current c
I_c_mag = I2_mag
I_c_angle = -180.0000 + I2_angle;
// Calculations Power Absorbed by the Load for Phase A
Sal =(I_a_mag)^2*Zan;
// Calculations Power Absorbed by the Load for Phase B
Sbl =(I_b_mag)^2*Zbn;
// Calculations Power Absorbed by the Load for Phase C
Scl =(I_c_mag)^2*Zcn;
// Calculations Total Complex Power Absorbed by the Load
Stl = Sal + Sbl + Scl;
Stl_real = real(Stl);
Stl_imag = imag(Stl);
// Calculations Power Absorbed by the Source for Phase A
Sas =(complex(Van_mag*cosd(Van_angle),Van_mag*sind(Van_angle)))*conj(complex(I_a_mag*cosd(I_a_angle),I_a_mag*sind(I_a_angle)));
// Calculations Power Absorbed by the Load for Phase B
Sbs =(complex(Vbn_mag*cosd(Vbn_angle),Vbn_mag*sind(Vbn_angle)))*conj(complex(I_b_mag*cosd(I_b_angle),I_b_mag*sind(I_b_angle)));
// Calculations Power Absorbed by the Load for Phase C
Scs =(complex(Vcn_mag*cosd(Vcn_angle),Vcn_mag*sind(Vcn_angle)))*conj(complex(I_c_mag*cosd(I_c_angle),I_c_mag*sind(I_c_angle)));
// Calculations Total Complex Power Absorbed by The Source
Sts = Sas + Sbs + Scs;
Sts_real = -real(Sts);
Sts_imag = -imag(Sts);
//
disp("Example 12-10 Solution : ");
disp("a. The Line Currents: ");
printf(" \n I_a_mag = Magnitude of Line Currents a = %.3f A",I_a_mag)
printf(" \n I_a_angle = Angle of Line Currents a = %.3f degree",I_a_angle)
printf(" \n I_b_mag = Magnitude of Line Currents b = %.3f A",I_b_mag)
printf(" \n I_b_angle = Angle of Line Currents b = %.3f degree",I_b_angle)
printf(" \n I_c_mag = Magnitude of Line Currents c = %.3f A",I_c_mag)
printf(" \n I_c_angle = Angle of Line Currents c = %.3f degree",I_c_angle)
disp("")
disp("b Total Power Complex Absorbed By The Load");
printf(" \n Stl_real = Real Part of Power Complex = %.3f Watt",Stl_real)
printf(" \n Stl_imag = Imaginary Part of Power Complex = %.3f Var",Stl_imag)
disp("")
disp("c. Total Power Complex Absorbed By The Source");
printf(" \n Sts_real = Real Part of Power Complex = %.3f Watt",Sts_real)
printf(" \n Sts_imag = Imaginary Part of Power Complex = %.3f Var",Sts_imag)
|
41d79ae218c9fca5f9575d5b55ae3fc014f8d9bf | 1485852dd59aafc286600126cf832a32e10f117f | /tests/localMaximaFinder/test3.sce | 1373dbf1c0ab5424f846eedb5fc0dc0487eb0f8b | [] | no_license | rg77/Scilab-Image-Processing-And-Computer-Vision-Toolbox | dec9fbbce32cfd1eab3c45ccb29c89aaa1384758 | 8adb116da3a9c29a32e5e0727105aff571e5b374 | refs/heads/master | 2020-12-02T16:14:45.282650 | 2017-07-07T10:12:04 | 2017-07-07T10:12:04 | 96,524,257 | 0 | 0 | null | 2017-07-07T09:43:50 | 2017-07-07T09:43:50 | null | UTF-8 | Scilab | false | false | 126 | sce | test3.sce | src= imread("../images/color2.jpeg");//input is grayscale image
gray = rgb2gray(src);
loc=localMaximaFinder(gray,[1 3],4,1);
|
189840e90853795036b3db458c05f730f167e85e | 449d555969bfd7befe906877abab098c6e63a0e8 | /965/CH7/EX7.48/48.sci | 27cbb7cb91e66a71ab627052b340b6c6eb6dffac | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 598 | sci | 48.sci | clc;
clear all;
disp("heat transfer rate")
d=300/1000;//m diameter
L=3.5;//m
delT=40;//degree C =ts-ti
f=0.022;// friction factor
St=f/2;
disp("The energy balance yields Q=h*A*(ts-ta)=m*cp*(to-ti)")
disp("h*(%pi*D*L)*(ts-(to+ti)/2)=rho*(%pi*D^2*U/4)*cp(to-ti)")
disp("(h/(rho*U*cp))*L*(ts-to+ts-ti)/2=D/4*(to-ti)")
disp("St*L/2*(ts-to+ts-ti)=D/4*((ts-ti)-(ts-to))")
disp("f/8*L/2*(ts-to+ts-ti)=D/4*((ts-ti)-(ts-to))")
disp("thus by putting the values, ")
t1=(d/4-f/8*L/2)*delT/(f/8*L/2+d/4)// ts-to
t=delT-t1;
disp("degree C",t,"Rise in the temperature of fluid at the end =")
|
ca8660f117e170b7fd65a4200e3d469ff164e035 | 1db0a7f58e484c067efa384b541cecee64d190ab | /macros/diffpara.sci | c36ae7cfbd817dba5e5f3d2ebb8ab8376101c86c | [] | no_license | sonusharma55/Signal-Toolbox | 3eff678d177633ee8aadca7fb9782b8bd7c2f1ce | 89bfeffefc89137fe3c266d3a3e746a749bbc1e9 | refs/heads/master | 2020-03-22T21:37:22.593805 | 2018-07-12T12:35:54 | 2018-07-12T12:35:54 | 140,701,211 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,524 | sci | diffpara.sci | function [D,DD] = diffpara(X,varargin)
//Return the estimator D for the differencing parameter of an integrated time series
//Calling Sequence
// [D, DD] = diffpara (X)
// [D, DD] = diffpara (X, A)
// [D, DD] = diffpara (X, A, B)
//Parameters
//X: Input scalar or vector.
//DD:The estimators for all frequencies in the intervals described above.
//D:The mean of DD
//Description
//Return the estimator D for the differencing parameter of an integrated time series.
//
//The frequencies from [2*pi*a/t, 2*pi*b/T] are used for the estimation. If B is omitted, the interval [2*pi/T, 2*pi*a/T] is used. If both B and A are omitted then a = 0.5 * sqrt (T) and b = 1.5 * sqrt (T) is used, where T is the sample size. If X is a matrix, the differencing parameter of each column is estimated.
//
//The estimators for all frequencies in the intervals described above is returned in DD.
//
//The value of D is simply the mean of DD.
lhs= argn(1);
rhs= argn(2);
if(rhs <1 | rhs> 3)
error("Wrong number of input parameters");
end
if(lhs<1 | lhs>2)
error("Wrong number of output parameters");
end
select(rhs)
case 1 then
select(lhs)
case 1 then
D= diffpara(X);
case 2 then
[D, DD]= diffpara(X);
end
case 2 then
select(lhs)
case 1 then
D= diffpara(X, varargin(1));
case 2 then
[D, DD]= diffpara(X, varargin(1));
end
case 3 then
select(lhs)
case 1 then
D= diffpara(X, varargin(1), varargin(2));
case 2 then
[D, DD]= diffpara(X, varargin(1), varargin(2));
end
end
endfunction
|
989b3c859c18ba9ec25d1337b7d744f4b2211c17 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1484/CH6/EX6.13/6_13.sce | 4666cf3618fe02346edfa8ab3d28b144cd35cc29 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 240 | sce | 6_13.sce | clc
//initialisation of variables
f= 0.01
l= 2000 //ft
d= 6 //in
g= 32.2 //ft/sec^2
Q= 10 //cuses
//CALUCLATIONS
v= sqrt(2*g*(d/12)*Q/(4*f*l))
Q1= v*%pi*(d/12)^2/4
//RESULTS
printf ('Discharge through the pipe= %.3f cuses',Q1)
|
9ae98c58f34f7df75a0f61457fbc50d0c3ec7110 | 4007d5ac6efaf1f2cc139e7b92e59cebf0f7a1bf | /requirements.tst | 055a102aed727721d5bb428f637d4cdd9b8991a2 | [] | no_license | codekidX/omi_pi | 5daedc024e77844c4685856428b0322082815665 | cb3264e1271e2b229d264b1223e1c47d2e9a775b | refs/heads/master | 2020-03-28T09:38:01.301752 | 2018-09-09T17:37:20 | 2018-09-09T17:37:20 | 148,047,639 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 322 | tst | requirements.tst | astroid==1.6.5
backports.functools-lru-cache==1.5
click==6.7
configparser==3.5.0
enum34==1.1.6
Flask==1.0.2
futures==3.2.0
gunicorn==19.9.0
isort==4.3.4
itsdangerous==0.24
Jinja2==2.10
lazy-object-proxy==1.3.1
MarkupSafe==1.0
mccabe==0.6.1
pylint==1.9.3
singledispatch==3.4.0.3
six==1.11.0
Werkzeug==0.14.1
wrapt==1.10.11
|
b5328cad2004c7c17f8a36c3bb681fb5f446a77a | 97135f725c599527ba0fd95a5289373c755daf3b | /Examples/test-suite/scilab/overload_extend2_runme.sci | 9b1fd46dcefc8c642b6770b9b98d8ea923e8134b | [] | no_license | maqalaqil/swag-c- | b8880cfc92424d5bbca1fe15ed98663a41063f27 | 6fd1ba2bf1d353f24c116a3c89a8540292b86a7d | refs/heads/master | 2020-07-06T21:02:08.949652 | 2019-09-01T07:56:55 | 2019-09-01T07:56:55 | 203,137,066 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 451 | sci | overload_extend2_runme.sci | exec("alaqiltest.start", -1);
try
x = new_Foo();
catch
alaqiltesterror();
end
if Foo_test(x, 1) <> 1 then alaqiltesterror(); end
if Foo_test(x, "Hello alaqil!") <> 2 then alaqiltesterror(); end
if Foo_test(x, 2, 3) <> 3 then alaqiltesterror(); end
if Foo_test(x, x) <> 30 then alaqiltesterror(); end
if Foo_test(x, x, 4) <> 24 then alaqiltesterror(); end
if Foo_test(x, x, 4, 5) <> 9 then alaqiltesterror(); end
exec("alaqiltest.quit", -1);
|
533fd2807ca924f6d7ccdf70410898e4f155328a | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/macros/util/halt.sci | 356bd46af5416232be18058c7635717dd45fc9e9 | [
"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 | 163 | sci | halt.sci | function []=halt()
//halt() stops execution until something is entered in the keyboard.
//!
// Copyright INRIA
write(%io(2),'halt'),read(%io(1),1,1,'(a1)');
|
1f9ccc99b4913bf71318dbf74d540f68020b8e67 | b55b3f4ecb80cc7d4e6ccad7124adeae711f42f7 | /Digital_communication/Lab_2/Lab_2.sce | 4ec39c6cc115494ec9c85a309e76e1fb5a9dab49 | [] | no_license | shivamchopra99/Lab-Works | 9ada57e2093be3290be18ed21289e4bd6fc68df2 | 0dbb533ca502c2256089970acfd3420f43568801 | refs/heads/master | 2020-09-21T04:52:25.548472 | 2019-11-18T09:23:18 | 2019-11-18T09:23:18 | 224,683,152 | 1 | 0 | null | 2019-11-28T15:35:53 | 2019-11-28T15:35:52 | null | UTF-8 | Scilab | false | false | 658 | sce | Lab_2.sce | //Aim to perform sampling of a given signal and plot it's waveform using SciLab
//Function Used sin wave
//Conditions for Sampling:-
//fs>2fm [Over Sampling]
//fs=2fm [Critical Sampling]
//fs<2fm [Under Sampling]
clc
clear all
fm = input("Enter the MAXIMUM frequency : - ")
fs = input("Enter the SAMPLING frequency : - ")
nyc = 4 // Numbver of cycles
t = 0:1/fs:nyc*1/fm
x = sin(2*%pi*fm*t)
y = squarewave(3*%pi*fm*t, 100)
z = x.*y
subplot(3,1,1)
plot(t,x)
xtitle("Message Signal","F(x)","Amp")
//
subplot(3,1,2)
plot2d3(t,y)
xtitle("Impulse Signal","F(x)","Amp")
//
subplot(3,1,3)
plot2d3(t,z)
xtitle("Sampled Signal [Over Sampling]","F(x)","Amp")
|
f4350ef922cd701c2a18b8ff1bb10435b899e79f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1958/CH4/EX4.4/Chapter4_example4.sce | aff4696301365c10313c661f3d1a5f4fc7173dd0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 242 | sce | Chapter4_example4.sce | clc
clear
//Input data
r=0.2//Radius of uniform disc in m
d=0.15//Distance from the centre in m
//Calculations
T=2*3.14*sqrt((17*r)/(12*9.8))//Period of oscillations in s
//Output
printf('The period of oscillation is %3.2f s',T)
|
a44f6d932bd00bd66106d45bfc530cd4e1c2c55d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3415/CH1/EX1.2/Ex1_2.sce | e2b6997cc0ecd4e01889da924a05b05cec27e5f6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 276 | sce | Ex1_2.sce | //fiber optic communications by joseph c. palais
//example 1.2
//OS=Windows XP sp3
//Scilab version 5.4.1
clc
clear all
//given
Loss=-23// total loss in dB
//to find
P2byP1=10^(Loss/10)//P2/P1 gives efficiency
mprintf(" System Efficiency=%fpercent",P2byP1*100)
|
c45ba79883f457c56f627e9d8054e4a8ea0b8a6b | 60942a0ce55fe4c61fa78aebb849b3a352611edd | /higher order/third order higher V.sci | 3c9b5cfa89eee5249ad36e7076f4f4a59f0b55ee | [] | no_license | lalithDupathi/EIL-lab-IITB | 7a7d3232368546b5cbc5d3aa32bf5d74fbc91c98 | cac01a81a92e2d8444996a710325634a20b4b942 | refs/heads/master | 2022-08-22T23:42:48.202385 | 2017-10-17T16:27:26 | 2017-10-17T16:27:26 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 382 | sci | third order higher V.sci |
V.a3=input('coeff of third differential of y')
V.a2=input('coeff of second differential of y')
V.a1=input('coeff of first differential of y')
V.a0=input('coeff of zeroth differential of y')
V.b3=input('coeff of third differential of x')
V.b2=input('coeff of second differential of x')
V.b1=input('coeff of first differential of x')
V.b0=input('coeff of zeroth differential of x')
|
e70e118795505b3dab4183965936384652ad689f | dabaa151dd30205dd92a6844c0cd61cf046fb8fe | /CSA/CSA.tst | dcc2c750ec6ef9ee3979e1d6e23d43f3338a3515 | [] | no_license | hakesh729/Project_hack | 627ef8260f81dbc971bb5371839523daac4a2646 | a1ea76fa612bbe4515863495922167bb4c65c418 | refs/heads/main | 2023-01-13T13:37:09.828021 | 2020-11-27T06:05:39 | 2020-11-27T06:05:39 | 316,411,714 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 778 | tst | CSA.tst | load CSA.hdl,
output-file CSA.out,
output-list a%B1.16.1 b%B1.16.1 c%B1.16.1 carry%B1.16.1 sum%B1.16.1;
// 10 + 20 = 30
set a %B0000000000000000, set b %B0000000000001010, set c %B0000000000010100,
eval, output;
// 65,535 + 65,534 + 65,532 = 196,610(out of bound)
set a %B1111111111111111, set b %B1111111111111110, set c %B1111111111111100,
eval, output;
// 43,690 + 21,485 + 65535 = 131,070(out of bound)
set a %B1010101010101010, set b %B0101010101010101, set c %B1111111111111111,
eval, output;
// 65,280 + 43,971 + 58,063 = 167,314
set a %B1111111100000000, set b %B1010101111000011, set c %B1110001011001111,
eval, output;
// 15 + 100 + 49,155 = 49,270
set a %B0000000000001111, set b %B0000000001100100, set c %B1100000000000011,
eval, output; |
3129d246a0fcdf92ffc95576fc4276d9484323cb | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set13/s_Introductory_Methods_Of_Numerical_Analysis_S._S._Sastry_1673.zip/Introductory_Methods_Of_Numerical_Analysis_S._S._Sastry_1673/CH1/EX1.5/1_5.sce | faee016d157c1cfcb80cf9a8f1f9521ba5c1aced | [] | 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 | 249 | sce | 1_5.sce | errcatch(-1,"stop");mode(2);//relative error
//example 1.5
//page 10
;;
n=8.6;// the corrected number
N=1;//the no is rounded to one decimal places
E_A=(10^-N)/2;
E_R=E_A/n;
printf('the relative error of the number is:%0.4f',E_R);
exit();
|
4343de86138aa5993e5121935fc1e2e8e1d5313b | 857f7516c898df1639b27c209cf85ba30f76f696 | /QuadraticDistortion.sce | 66e7b17a3dcce0458cacab1cb5c63f22a79a2797 | [] | no_license | pracheejaviya1/signals-and-systems | ba72429fc1022d72245c2b2305e341fc9faea7c7 | 604aa7a71a858c03f816702f689ea05dc139ecf4 | refs/heads/master | 2022-02-25T23:54:46.695092 | 2019-11-16T12:41:14 | 2019-11-16T12:41:14 | 222,097,028 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 183 | sce | QuadraticDistortion.sce | clear;
clf;
dt = 1/10000;
t = -0.01:dt:0.01;
x = sin(200.*(%pi).*t);
a = 3;
b = 5;
y = a.*x + b.*x.*x;
subplot(2,1,1);
plot(t,x);
xgrid(1);
subplot(2,1,2);
plot(t,y);
xgrid(1);
|
565d1579254c99643df9a1eedf65cc6fda499f79 | 0e637a0e41450cddb847e0328eaebb9365cefdd4 | /1st assignment/demo.sce | 95d4c0b6acf20abe95e5d2bb7f7c688e4fe483c2 | [] | no_license | mehtasankets/CASP | 32c7ea00fca072e85d664f4acd050edee5f26a5f | 5dbdd3c14b1b2620c29ab5bfdad640f4529d779c | refs/heads/master | 2020-04-28T09:20:00.026745 | 2011-11-03T08:33:12 | 2011-11-03T08:33:12 | 2,700,756 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,951 | sce | demo.sce | // x initialisation
x=[0:0.1:2*%pi]';
//simple plot
plot(sin(x))
clf()
plot(x,sin(x))
//multiple plot
/*
clf()
plot(x,[sin(x) sin(2*x) sin(3*x)])
clf()
// axis on the right
plot(x,sin(x))
a=gca(); // Handle on current axes entity
a.y_location ="right";
clf()
// axis centered at (0,0)
plot(x-4,sin(x),x+2,cos(x))
a=gca(); // Handle on axes entity
a.x_location = "origin";
a.y_location = "origin";
// Some operations on entities created by plot ...
a=gca();
a.isoview='on';
a.children // list the children of the axes : here it is an Compound child composed of 2 entities
poly1= a.children.children(2); //store polyline handle into poly1
poly1.foreground = 4; // another way to change the style...
poly1.thickness = 3; // ...and the tickness of a curve.
poly1.clip_state='off' // clipping control
a.isoview='off';
//LineSpec and GlobalProperty examples:
clf();
t=0:%pi/20:2*%pi;
plot(t,sin(t),'ro-.',t,cos(t),'cya+',t,abs(sin(t)),'--mo')
scf(2)
plot([t ;t],[sin(t) ;cos(t)],'xdat',[1:2])
scf(3)
axfig3 = gca();
scf(4) // should remain blank
plot(axfig3,[t ;t],[sin(t) ;cos(t)],'zdat',[1:2],'marker','d','markerfac','green','markeredg','yel')
xdel(winsid())
//Data specification
t=-%pi:0.1:%pi;
size(t)
plot(t) // simply plots y versus t vector size
clf(); // clear figure
plot(t,sin(t)); // plots sin(t) versus t
clf();
t=[1 1 1 1
2 3 4 5
3 4 5 6
4 5 6 7];
plot(t) // plots each t column versus row size
clf();
subplot(221)
plot(t,sin(t)); // plots sin(t) versus t column by column this time
xtitle("sin(t) versus t")
subplot(222)
plot(t,sin(t)')
xtitle("sin(t)'' versus t")
subplot(223)
plot(t',sin(t))
a=gca();
a.data_bounds=[0 -1;7 1]; // to see the vertical line hiddden by the y axis
xtitle("sin(t) versus t''")
subplot(224)
plot(t',sin(t)')
xtitle("sin(t)'' versus t''")
clf();
//Special case 1
//x : vector ([5 6 7 8]) and y : matrix (t)
x=[5 6 7 8]
plot(x,t);
plot(x',t); // idem, x is automatically transposed to match t (here the columns)
clf()
// Only one matching possibility case : how to make 4 identical plots in 4 manners...
// x is 1x4 (vector) and y is 4x5 (non square matrix)
subplot(221);
plot(x,[t [8;9;10;12]]');
subplot(222);
plot(x',[t [8;9;10;12]]');
subplot(223);
plot(x,[t [8;9;10;12]]');
subplot(224);
plot(x',[t [8;9;10;12]]');
clf()
//Special case 2
// Case where only x or y is a square matrix
//x : matrix (t) and y : vector ([1 2 3 4])
plot(t,[1 2 3 4]) // equivalent to plot(t,[1 1 1 1;2 2 2 2;3 3 3 3;4 4 4 4])
plot(t,[1;2;3;4]) // the same plot
clf();
// t is transposed : notice the priority given to the columns treatment
plot(t',[1 2 3 4]) // equivalent to plot(t',[1 1 1 1;2 2 2 2;3 3 3 3;4 4 4 4])
plot(t',[1 2 3 4]') // the same plot
clf();
// y is a function defined by..
// ..a primitive
plot(1:0.1:10,sin) // equivalent to plot(1:0.1:10,sin(1:0.1:10))
clf();
// ..a macro:
deff('[y]=toto(x)','y=x.*x')
plot(1:10,toto)*/ |
800799bc476648481c6aed46f26ae1d8cc8db71c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2498/CH5/EX5.15/ex5_15.sce | b5278d585b4445e17b28499d9af49ca1af86f2e1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 281 | sce | ex5_15.sce | // Exa 5.15
clc;
clear;
close;
format('v',6)
// Given data
Af = 100;
Vi = 0.6;// in V
Vo =Af*Vi;// in V
Vi = 50;// in mV
Vi = Vi * 10^-3;// in V
// Internal gain of amplifier,
A = Vo/Vi;
disp(A,"The value of A is : ");
B= ((A/Af)-1)/A;
disp(B,"The value of B is");
|
6f798c0cd6ee5fa5d2ade18778aa688c26b66114 | ea4cf3aee5b04d1e41192e211d6a41f7ef08ed3f | /loop.tst | f33f8f5a74bc406d889a26773d7f5014a010f7d9 | [] | no_license | 0xsanchit/HackComputer | dfb97c3ce29de6c6b9b472f9ecf4971914e21221 | 7912f1091fabd2c8a671732c16db7529c8e5ab82 | refs/heads/master | 2023-06-17T17:28:37.319421 | 2021-07-18T11:40:15 | 2021-07-18T11:40:15 | 387,161,569 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 702 | tst | loop.tst | /*
PROGRAM 3 :
//HLL
int i = 1 ;
int sum = 0 ;
while (i < 100) {
sum = sum + i ;
i = i + 1 ;
}
//endHLL
i : RAM16K[16]
sum : RAM16K[17]
*/
load HackComputer.hdl, //loading hdl file
output-file loop.out, //declaring output file
output-list RAM64[16]%D1.10.1 RAM64[17]%D1.10.1 ; //output list format
ROM32K load loop.hack ;
set reset 1, //reset is set to 1
tick, tock , output ;
set reset 0, //reset is now set to 0
repeat 1420 { //min clock cycles required=1400 (divided into 100 iterations of 14 clock cycles each) n>1400 will do
tick, tock,
}
output;
|
b7b2bf550486c83a2931e119b6b3661bff00ba27 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1034/CH6/EX6.3/6s3.sce | 15cd9748bc19c676f47060ca0e3371748ffca43b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 661 | sce | 6s3.sce | clear;
clc;
disp("Example 6.3");
//Warshall's Algorithm
clc;
clear;
funcprot(0)
function[path]=transclose(adj,n)
for i=1:n
for j=1:n
path((i-1)*n+j)=adj((i-1)*n+j);
end
end
for k=1:n
for i=1:n
if(path((i-1)*n+k)==1)
for j=1:n
path((i-1)*n+j)=path((i-1)*n+j)|path((k-1)*n+j);
end
end
end
end
printf("Transitive closure for the given graph is:\n");
for i=1:n
printf("For vertex %d \n",i);
for j=1:n
printf("%d %d is %d\n",i,j,path((i-1)*n+j));
end
end
endfunction
//Calling Routine:
n=3;
adj=[0 1 0 0 0 1 0 0 0]
path=transclose(adj,n) |
62f18ecb7cc3b7b878be5e30d21331a5b3063e6b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3673/CH8/EX8.9/Ex8_9.sce | 6e394be01d5783fd91ed0579ee3e7c1260f2c80d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 319 | sce | Ex8_9.sce | //Example 8_9 page no:319
clc;
R=50;
Xl=25;
V=200;
f=50;
Imax=V/Xl;
Imin=V/(sqrt(R^2+Xl^2));
Pmax=V^2/(2*Xl);
disp(Imax,"the maximum value of current is (in A)");
disp(Imin,"the minimum value of current is (in A)");
disp(Pmax,"the maximum power is (in watts)");
//In text book calculation in Imin is wrong
|
25de69c092d47a04f1c3cced24352a78a7fae20b | e3c27edbd2f0a8e733cee84b90a906c0a6d7c176 | /sem_3/c/ljudge/4.2.tst | 13a9240e0fda7c96f2d5f298aa308714915684a5 | [] | no_license | dmitryhd/dmitryhd_code | c32223da5506156a068bbb0f20ad4cd06fdf2166 | 5173f6f74d4fa1c9c5fba9ffc4fc9134c56f4b0c | refs/heads/master | 2021-01-17T11:56:50.221745 | 2011-04-26T18:31:58 | 2011-04-26T18:31:58 | 1,650,576 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 22 | tst | 4.2.tst | 5
#
-#
-+#
+++#
---+#
|
e157c06751ccb39617c70320c2d59199fce08e8b | 1effec70f42dbf473f60b45855c2902a9c162d63 | /scripts/exercice7.sce | 2f5236e2191bd00e24295774d3585ecd20157054 | [] | no_license | OlKakine/TP-Scilab-Analyse | fd7abdc2698e2f1344ddb8e4b0c5904653e76da1 | d99e1947127a05a6ff2c98e99f9e56cfa1afb29e | refs/heads/master | 2020-04-09T00:35:39.797674 | 2016-11-23T12:16:37 | 2016-11-23T12:16:37 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 495 | sce | exercice7.sce | clc; clf; clear;
A = [1+%i, %i, 2; 3, 2+%i, 1; 1, %i, 6]
n = size(A, "r")
d = diag(A)
B = A - diag(d)
a = linspace(0, 2*%pi, 100)
figure(0);
//Disques
for i = 1:n
cx = real(d(i))
cy = imag(d(i))
radius = sum(abs(B(i,:)))
x = cx + radius * cos(a)
y = cy + radius * sin(a)
plot(x, y, "r")
end
//Valeurs propres
for j = spec(A)
plot(real(j), imag(j), ".b")
end
title('Disques de Gerschgörin dans le plan complexe')
xlabel('Axe réel')
ylabel('Axe imaginaire');
|
5ef6934e06a5efb54f4017dd6fccec518397cc48 | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/midcross/midcross10.sce | 12c19333a0ef66b5ba658cb89c7c5111fde223ab | [] | no_license | deecube/fosseetesting | ce66f691121021fa2f3474497397cded9d57658c | e353f1c03b0c0ef43abf44873e5e477b6adb6c7e | refs/heads/master | 2021-01-20T11:34:43.535019 | 2016-09-27T05:12:48 | 2016-09-27T05:12:48 | 59,456,386 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 323 | sce | midcross10.sce | x=['a','b','c'];
midcross(x);
//output
// !--error 10000
//X must be a vector with more than one element.
//at line 45 of function midcross called by :
//midcross(x);
//matlab
//Error using midcross (line 61)
//Expected X to be one of these types:
//
//double
//
//Instead its type was char.
//
|
c6bbcb75e5194958083cf791dafcb3a01e7a215b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1301/CH11/EX11.4/ex11_4.sce | 0e4cb3f18a9b817b537c8de130a9126342f55213 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 177 | sce | ex11_4.sce | clc;
lf=335; //heat of fusion in kJ/kg
g=9.8; //gravitational constant in m/sec square
h=lf/g; //height in km
disp(h,"Height in km = "); //displaying result |
78b68ed536cd797ceafa55a9576fb24ebf69426b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2294/CH7/EX7.22/EX7_22.sce | 9fa938870115882810f75a15ee78e17957ae0ce3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 586 | sce | EX7_22.sce | //Example 7.22
//Find the laplace transform .
clc;
t=-10:.01:10;
for i=1:length(t)
y(i)=exp(-t(i))-2*exp(-2*t(i))+exp(-3*t(i));
x(i)=exp(-0.5*t(i));
end
s=%s;
numfs1=1;
denfs1=s+0.5;
fs=syslin('c',numfs1/denfs1);
numfs2=2;
denfs2=(s+1)*(s+2)*(s+3);
fs1=syslin('c',numfs2/denfs2);
hs=fs1/fs;
hs1=csim('impulse',t,hs);
subplot(3,1,1);
plot2d(t,x,2);
xtitle('Phrasing');
xgrid;
subplot(3,1,2);
plot2d(t,y,3);
xtitle('Phrasing');
xgrid;
subplot(3,1,3);
plot2d(t,hs1,1);
xtitle('Solution');
xgrid;
disp(fs,'fs=:');
disp(fs1,'fs1=:');
disp(hs,'hs=:');
|
0d1dd7f8d5012fee29a0e042f05d7cb29e217ab1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /797/CH2/EX2.7.e/2_07_example.sci | ac015937cda18cb6243048f8241bf689d46b37e3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | sci | 2_07_example.sci | //Example 2-7 Using Capillary Rise to Generate Power in a Hydraulic Turbine
h = 5 //rise of water column due to capillary effect [cm]
g = 9.81 //gravitational acceleration [m/s^2]
rho = 1000 //density of water [kg/m^3] |
444fefbbe65b4f364246fd9f18f9635631bd5365 | 3592fbcb99d08024f46089ba28a6123aeb81ff3c | /src/transformation/homogeneousMatrixFromPose.sci | bfb2a76dd915c2e68707d7f9086ecc365ac2398a | [] | no_license | clairedune/sciGaitanLib | a29ab61206b726c6f0ac36785ea556adc9ef03b9 | 7498b0d707a24c170fc390f7413359ad1bfefe9f | refs/heads/master | 2020-12-11T01:51:13.640472 | 2015-01-28T13:52:26 | 2015-01-28T13:52:26 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 158 | sci | homogeneousMatrixFromPose.sci | function [M] = homogeneousMatrixFromPos(pose)
M = homogeneousMatrix(pose(1),pose(2),pose(3),pose(4),pose(5),pose(6));
M = M.* (abs(M)>%eps);
endfunction
|
b0204f5005161a820523cdb814a3338e46340047 | d8c4bf9ddb7db18c69e9e5e543d546b8dd4338d2 | /userland/bin/utils/e/expr/test/backup/parse-bignums.tst | 92cd56774ff472237c5a01b39de8d9079c1e2ea8 | [] | no_license | r-tty/QRV | aac7bb7167f8dc630be54c041169a4867e8e963f | 87d22fc3c3b8e14902643fa987af8ba06bda2a8a | refs/heads/master | 2022-07-27T13:40:02.469769 | 2021-12-09T12:57:19 | 2021-12-09T12:57:19 | 322,424,788 | 2 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 549 | tst | parse-bignums.tst | expr 111 + 111
expr 1111 + 1111
expr 11111 + 11111
expr 111 + 111
expr 1111 + 1111
expr 11111 + 11111
expr 111 + 111
expr 1111 + 1111
expr 11111 + 11111
expr +111 + +111
expr +1111 + +1111
expr +11111 + +11111
expr + 111 + + 111
expr + 1111 + + 1111
expr + 11111 + + 11111
expr + 111 + + 111
expr + 1111 + + 1111
expr + 11111 + + 11111
expr -111 + -111
expr -1111 + -1111
expr -11111 + -11111
expr - 111 + - 111
expr - 1111 + - 1111
expr - 11111 + - 11111
expr - 111 + - 111
expr - 1111 + - 1111
expr - 11111 + - 11111
|
0fa0feb0217394545ca78a80f33f46a4f7fb5d03 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1580/CH5/EX5.12/Ch05Ex12.sce | 1d4c2b1e93b6fef213dd26c503773d1a9f86b292 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 555 | sce | Ch05Ex12.sce | // Scilab Code Ex5.12 : Page-5.25 (2004)
clc;clear;
h = 6.626e-34; // Planck's const in Js
m = 9.1e-31; // Mass of the electron in kg
lam = 1.66e-10; // de Broglie wavelength, m
e = 1.6e-19; // Charge on electron, C
v = h/(m*lam); // Velocity of electron, m/s
E = (m*v^2)/(2*e); // Kinetic energy of the electron in eV
printf("\nVelocity of electron = %d km/s", v/1000);
printf("\nKinetic energy of the electron = %5.2f eV", E);
// Result
// Velocity of electron = 4386 km/s
// Kinetic energy of the electron = 54.71 eV
|
2659b3aa192e58c494434f40b69e423d86606f9c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2381/CH8/EX8.5/ex_5.sce | eaea2f771bee2fcad15a53eb3568922cb2165d50 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 162 | sce | ex_5.sce | //Example 5 // initial tension
clc;
clear;
close;
rt=2/3;//ratio
mi=5;//kg wt
M=((1/rt)^2)-1;//
mo=mi/M;//kg wt
disp(mo,"initial tension in string is ,(kg-wt)=")
|
11693c13922f47f41e59590e24848d669c89d4f0 | 6e257f133dd8984b578f3c9fd3f269eabc0750be | /ScilabFromTheoryToPractice/Programming/testcdlsstring.sce | e4facc7c98c9ee6d3b7ad353cbbea2f5a23ba936 | [] | no_license | markusmorawitz77/Scilab | 902ef1b9f356dd38ea2dbadc892fe50d32b44bd0 | 7c98963a7d80915f66a3231a2235010e879049aa | refs/heads/master | 2021-01-19T23:53:52.068010 | 2017-04-22T12:39:21 | 2017-04-22T12:39:21 | 89,051,705 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 244 | sce | testcdlsstring.sce | cd SCI // here SCI is interpreted as a Scilab variable!
ls *.txt // *.txt is viewed as '*.txt'
cd contrib // contrib is interpreted as 'contrib'
cd .. // waiting for end of command
// equivalent to 'cd home'
home
|
4a0ccf339bbbe3c35175416ca7ace171f09cc347 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1748/CH1/EX1.16.p/prob1_16.sce | 61560c5bed5386fbcb8a433dc47c2d3e7f265a7b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 337 | sce | prob1_16.sce | // Prob 1.16
clc;
clear;
close;
format('v',7);
// Given data :
EP=6000;//in volt
Em=EP;//in Volt
Xs=1.5;//in ohm/phase
IL=1000;//in Ampere
VT=Em-IL*Xs;//in volt
disp(VT,"Terminal voltage in volt : ");
VL=sqrt(3)*VT;//in volt
sinfi=1;
Preactive=sqrt(3)*VL*IL*sinfi;//in VAR
disp(Preactive/10^6,"Reactive Power(MVAR) : ");
|
1d5b33d70461ad585c474c21cabf291a28363f3c | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/RDE2.prev.tst | 056483da0454c6095fa62a3e6baba87d5edd6788 | [
"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 | 71 | tst | RDE2.prev.tst | (x^3 + x^2*y + y^2; x^4 - y^4).derivative("x", 2) = 12*x^2; 6*x + 2*y
|
9cc7ece3cc97403602af16f009cb1578f28c195c | 1db0a7f58e484c067efa384b541cecee64d190ab | /macros/fir1.sci | 70c95b70b5a31956e4fbb03422c41cec3c2857b6 | [] | no_license | sonusharma55/Signal-Toolbox | 3eff678d177633ee8aadca7fb9782b8bd7c2f1ce | 89bfeffefc89137fe3c266d3a3e746a749bbc1e9 | refs/heads/master | 2020-03-22T21:37:22.593805 | 2018-07-12T12:35:54 | 2018-07-12T12:35:54 | 140,701,211 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,843 | sci | fir1.sci | function B = fir1(N, W, varargin)
//Produce an order N FIR filter with the given frequency cutoff, returning the N+1 filter coefficients in B.
//Calling Sequence
//B = fir1(N, W)
//B = fir1(N, W, TYPE)
//B = fir1(N, W, TYPE, WINDOW)
//B = fir1(N, W, TYPE, WINDOW, NOSCALE)
//Parameters
//N: Integer
//W: Integer or Vector
//Description
// Produce an order N FIR filter with the given frequency cutoff W, returning the N+1 filter coefficients in B. If W is a scalar, it specifies the frequency cutoff for a lowpass or highpass filter. If W is a two-element vector, the two values specify the edges of a bandpass or bandstop filter. If W is an N-element vector, each value specifies a band edge of a multiband pass/stop filter.
//
//The filter TYPE can be specified with one of the following strings: "low", "high", "stop", "pass", "bandpass", "DC-0", or "DC-1". The default is "low" is W is a scalar, "pass" if W is a pair, or "DC-0" if W is a vector with more than 2 elements.
//
//An optional shaping WINDOW can be given as a vector with length N+1. If not specified, a Hamming window of length N+1 is used.
//
//With the option "noscale", the filter coefficients are not normalized. The default is to normalize the filter such that the magnitude response of the center of the first passband is 1.
//Examples
// fir1 (5, 0.4)
//ans =
// 9.2762e-05 9.5482e-02 4.0443e-01 4.0443e-01 9.5482e-02 9.2762e-05
funcprot(0);
rhs = argn(2);
if(rhs<2 | rhs>5)
error("Wrong number of input arguments.");
end
select(rhs)
case 2 then
B = callOctave("fir1", N, W);
case 3 then
B = callOctave("fir1", N, W, varargin(1));
case 4 then
B = callOctave("fir1", N, W, varargin(1), varargin(2));
case 5 then
B = callOctave("fir1", N, W, varargin(1), varargin(2), varargin(3));
end
endfunction
|
d6fcd3b2ce7d65452deb7c885c2020101a3dc520 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3554/CH15/EX15.5/Ex15_5.sce | 5e95c3259fab5b290c2535ad037fa2a56ae41190 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,022 | sce | Ex15_5.sce | // Exa 15.5
clc;
clear all;
// Given data
Fl=100;// lower cutoff frequency in Hz
Fh=1000;// higher cutoff frequency in Hz
Af=4;// pass band gain
// Solution
// Wide bandpass filter design
// 1. For a low pass filter Fh=1 KHz =1/(2*%pi*R*C);
disp(" For a low pass filter section");
disp(" Let C1=0.01 micro farads ");
C1=0.01;// micro farads
R1=1/(2*%pi*Fh*C1*10^-6);
printf('The value of resistor = %.1f K ohms \n',R1/1000);
// 2. For a high pass filter Fl=100 Hz=1/(2*%pi*R*C);
disp(" For a high pass filter section");
disp(" Let C2=0.01 micro farads ");
C2=0.01;// micro farads
R2=1/(2*%pi*Fl*C2*10^-6);
printf(' The value of resistor = %d K ohms \n',R2/1000);
disp(" Since the pass band gain is 4, the gain of the high pass and low pass filter sections are set each equal to 2. Therefore, R1=Rf=10 K ohms for both sections.");
// Q for filter
Fc=sqrt(Fl*Fh);
Q=Fc/(Fh-Fl);
printf(' The value of Q =%.2f which is less than 10, as expected for a wide band pass filter\n',Q);
|
fd5da4bfd7d6b13b69007240bbf33507f1f18bfa | 449d555969bfd7befe906877abab098c6e63a0e8 | /2699/CH9/EX9.2/Ex9_2.sce | 2b3a25464b5ce051d392ca4fcb41950547c76987 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 392 | sce | Ex9_2.sce | //EX9_2 PG-9.13
clc
f=900e3;//frequency of oscillation
C=1e-12;//each capacitance of the RC phase shift oscillator
R=1/(2*%pi*sqrt(6)*f*C);
printf("\n each resistance of the RC phase shift oscillator is %.3f kohm \n",R*1e-3)
G=29;//opamp gain Rf/R1=29
R1=1e3;
printf("\n R1=%.0f kohm \n",R1*1e-3)
Rf=G*R1;
printf("\n Rf=%.0f kohm \n",Rf*1e-3)
disp("the design circuit is shown ")
|
ccbadc3dc9c898e4d46fb39a3f8eecc31221d612 | f6223fa28b65208fb0a3d61cee2e0db4e1dacb79 | /pointstab.tst | 5a796b06671972d6cb5a510aa9291bdfdf37e478 | [] | no_license | ssiccha/aut-semigroup | a2eba2b31646ab0016d51082a438b682d7345dc6 | 66125c9ea250c2a14d1cda4bd482002e0cede3d4 | refs/heads/master | 2021-03-24T12:12:03.936564 | 2018-06-05T16:47:15 | 2018-06-06T11:15:56 | 73,397,409 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 429 | tst | pointstab.tst |
BruteForcePointStabilizer := function( S, pnt )
local l;
l := AsList( S );
return SortedList( Filtered( l, x -> pnt^x = pnt ) );
end;
test := function( S, pnt )
local res, bf;
if not pnt in MovedPoints(S) then
return true;
fi;
res := PointStabilizer( S, pnt );
bf := BruteForcePointStabilizer( S, pnt );
res := AsSortedList( res );
Print(Size(S), ",");
return bf = res;
end;
|
86509d4b2622d32d582b29a8228809bd5c1437a0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /104/CH5/EX5.7/5_7.sce | 18106c0f19e4aeb0385007bba77ad9cccad8134c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 139 | sce | 5_7.sce | //characteristic equation from transfer function
s=%s
sys=syslin('c',1/(s^3+5*s^2+s+2))
c=denom(sys)
disp(c,"characteristic equation=") |
1814eea8fc91b6a5b01ec7f7f4ab4e2756e1c8c2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1826/CH14/EX14.2/ex14_2.sce | 74d83482de0a9313c25d88c28a5e49d8cdaf98be | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 230 | sce | ex14_2.sce | // Example 14.2, page no-386
clear
clc
ed=0.4//eV
e=1.6*10^-19//C
kT=0.025//eV
q=10^8
r=q*%e^(-(ed/kT))
printf("The escape rate per unit time = %2.1f per sec\n Therefore, the luminescent lifetime is nearly %.0f sec",r,r)
|
c0e7792a8a32afb934852a281d44612a0a523a11 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1670/CH7/EX7.8/7_8.sce | 1ca7401abfe099ef4302137bf6cf3a0ac6a6d08b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,153 | sce | 7_8.sce | //Example 7.8
//Stirlings Central Difference Derivatives
//Page no. 242
clc;close;clear;
printf(' x\t\t y\t\t d\t\t d2\t\t d3\t\t d4\n')
printf('------------------------------------------------------------------------------------------')
h=0.01;
a=poly(0,'n');
deff('y=f3(x)','y=z(x,1)^2*y2(x)+z(x,1)*y1(x)+(z(x,1)^2-a^2)*z(x,2)')
deff('y=f1(x)','y=(z(x+1,2)-z(x-1,2)-(z(x,4)-z(x-2,4))/factorial(3))/(2*h)')
deff('y=f2(x)','y=(z(x-1,4)-2*(z(x-2,6))/factorial(4))/h^2')
z=[85,0.0353878892;85.01,0.0346198696;85.02,0.0338490002;85.03,0.0330753467;85.04,0.032298975];
for i=3:6
for j=1:7-i
z(j,i)=z(j+1,i-1)-z(j,i-1)
end
end
printf('\n')
for i=1:5
for j=1:6
if z(i,j)==0 then
printf(' \t')
elseif j==1
printf(' %.2f\t',z(i,j))
else
printf('%.10f\t',z(i,j))
end
end
printf('\n')
end
y1(3)=f1(3);
y2(3)=f2(3);
printf('\n\ny`(85.02) = %g\n\ny``(85.02) = %.7g\n\n',y1(3),y2(3))
n=f3(3)
disp(n,"0 =")
n=roots(n)
for i=1:2
if abs(n(i))==n(i) then
n1=n(i)
end
end
printf('\n\nn = %.2g',n1) |
ec48438486c4b66b24135eb3a0a0010be596d5c7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3784/CH4/EX4.10/Ex4_10.sce | c4631e04126ad39df40aa213aa1f2fe790273b43 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 743 | sce | Ex4_10.sce | clc
//Variable Initialisation
V=230//Input Voltage of motor in volts
f=300//Chopper Frequency
Tl=40//Load Torque in N-m
N1=900//Rated Speed of Motor in rpm
Ra=0//Armature resistance in ohm
La=12e-3//Inductance in Henry
k=2//Motor Constant
//Solution
Ia=Tl/k
W=2*%pi*N1/60
Eb=k*W
d=(Eb+(Ia*Ra))/V
t1=1/f
ton=d*t1
toff=(1-d)*t1
Z1=(V-Eb)/La
Z2=-Eb/La
A=Z1*ton //A=Imax-Imin
B=2*Ia //B=Imax+Imin
Imax=(A+B)/2
Imin=(B-A)/2
t=poly(0,'t');
x=Imin+Z1*t
y=Imax+Z2*t
disp (Imax ,"Maximum Armature Current in Amp is")
disp (Imin ,"Minimum Armature Current in Amp is")
disp (A ,"Armature Current Excursion in Amp is")
disp (x ,"Armature Current During Ton in Amp is")
disp (y ,"Armature Current During Toff in Amp is")
|
14b27cdbaa1ce2e66c49705aacdbc509ea1824ca | 449d555969bfd7befe906877abab098c6e63a0e8 | /3681/CH4/EX4.27/Ex4_27.sce | c9d752c53b168b518f462f0544869fdae99a1894 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,543 | sce | Ex4_27.sce | // Calculating the amount of water required per second, area of water duct and pumping power
clc;
disp('Example 4.27, Page No. = 4.52')
// Given Data
Q = 800;// Stator copper losses (in kW)
Ti = 38;// Temperature of water inlet (in degree celsius)
To = 68;// Temperature of water outlet (in degree celsius)
Ns = 48;// Number of slots
v = 1;// velocity (in meter per second)
p = 300*10^(3);// Pumping pressure (in N per meter square)
n = 0.6;// Efficiency
// Calculation of the volume of water required per second
T = To-Ti;// Temperature rise of water (in degree celsius)
Vwl = 0.24*Q/T;// Amount of water (in litre per second)
Vwm = Vwl*10^(-3);// Amount of water (in meter cube per second)
N_cond = 2*Ns;// Since each slot has two conductors Total number of stator conductors
N_sub_cond = 32*N_cond;// Since each conductor is subdivided into 32 sub-conductors
Vw_sub_cond = Vwl/N_sub_cond;// Volume of water required for each sub-conductors (in litre per second)
disp(Vw_sub_cond,'Volume of water required for each sub-conductors (litre per second)=');
A = Vw_sub_cond*10^(-3)/v;// Area of each duct (in meter square)
A = A*10^(6);// Area of each duct (in mm square)
disp(A,'Area of each duct (mm square)=');
Q = 800-500;// Since it ia a 500 KW direct cooled turbo-alternator (in kW)
P = (Q*10^(3)*Vwm/n)*10^(-3);// Pumping power (in kW)
disp(P,'Pumping power (kW)=');
//in book Vwl is equal to 0.00208 (litre per second), A is 2 (mm square) and pumping power is 3.2 (kW). The answers vary due to round off error
|
ce2a21a90dd35752c1364c8d0867615c51f45594 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1938/CH6/EX6.32/6_32.sce | fdbca2b8d637b0b7ed5e782cc21f2db6705dab83 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,039 | sce | 6_32.sce | clc,clear
printf('Example 6.32\n\n')
V_L=11*10^3
V_ph=V_L/sqrt(3)
VA=700*10^3
I_FL=VA/(sqrt(3)*V_L)
IX_s=(14/100)*V_ph //product of I and X_s
X_s=IX_s/I_FL
//X_s=complex(0,IX_s/I_FL)
IR_a=(1.5/100)*V_ph //product of I and R_a
R_a=IR_a/I_FL
I=I_FL,phi=acos(0.8)
V=complex(V_ph*cos(phi),V_ph*sin(phi))
E_ph=sqrt( (V_ph*cos(phi)+IR_a)^2 +(V_ph*sin(phi)+IX_s)^2 )
delta=asin((V_ph*sin(phi)+IX_s)/E_ph) -phi
Poles=4,f=50
delta_dash_mech=(%pi/180) //phase displacemnt in degree mechanical
delta_dash_elec=delta_dash_mech*(Poles/2)//phase displacemnt in degree electrical
P_SY=abs(V_ph)*abs(E_ph)*cos(delta)*sin(delta_dash_elec)/abs(X_s) //synchronising power per phase
P_SY_total=3*P_SY //total synchronising power
ns=120*f/(60*Poles) //in r.p.s
T_SY=P_SY_total/(2*%pi*ns) //Synchronising torque
printf('Synchronising power per phase is %.3f kW\n',P_SY/1000)
printf('Synchronising power is %.3f kW ; ',P_SY/1000)
printf('Total Synchronising power is %.3f kW',P_SY_total/1000)
printf('\nSynchronising torque is %.2f N-m',T_SY)
|
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 |
deaf45b9dc853b7fd5b555396818f3f6756cf1e8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1370/CH1/EX1.25/chapter1_25.sce | e2d69bdce3dacd09a1d5851246e57e51400aef82 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 255 | sce | chapter1_25.sce | //example1.25
clc
disp("The arrangement is shown in the fig 1.97.")
x=110/10
disp(x,"X_L(in ohm)=V/I=")
disp("THe inductive reactance is 11 ohm")
disp("X_L=2*pi*f*L")
disp("Therefore, 11=2*pi*50*L")
l=11/(2*%pi*50)
format(9)
disp(l,"L(in H)=")
|
9776ad948c09320497b346a0bce748791054e7a7 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/bow/bow.17_9.tst | ed156da0396f72afa522930110c7c7dd8403c797 | [] | no_license | mandar15/NLP_Project | 3142cda82d49ba0ea30b580c46bdd0e0348fe3ec | 1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2 | refs/heads/master | 2020-05-20T13:36:05.842840 | 2013-07-31T06:53:59 | 2013-07-31T06:53:59 | 6,534,406 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 5,103 | tst | bow.17_9.tst | 17 122:1.5 198:0.09090909090909091 209:0.4 317:1.0 401:1.0 479:1.0 1255:1.0
17 4:0.6666666666666666 17:0.25 19:0.6666666666666666 40:0.5 51:1.0 69:0.3333333333333333 76:0.16666666666666666 93:0.05 156:1.0 209:0.6 372:0.5 395:1.0 472:1.0 479:1.0 506:2.0 1079:1.0 1386:1.0 1731:1.0
17 17:0.25 19:0.3333333333333333 53:0.2 62:0.25 93:0.05 96:1.0 114:0.25 209:0.2 228:1.0 259:1.0 347:1.0 479:2.0 647:1.0 1134:1.0 1151:1.0 1255:1.0
17 4:0.3333333333333333 10:0.08333333333333333 17:0.25 19:0.3333333333333333 40:0.5 51:0.5 62:0.25 93:0.05 114:0.5 123:1.0 209:0.4 347:1.0 479:1.0 491:1.0 935:1.0 1586:1.0
17 4:0.3333333333333333 17:0.25 19:0.3333333333333333 36:0.25 114:0.25 135:1.0 148:0.2 178:1.0 198:0.09090909090909091 209:0.2 228:1.0 233:1.0 259:1.0 479:3.0 647:1.0 1151:1.0 1244:2.0 1255:2.0
17 17:0.25 40:0.5 93:0.1 136:1.0 221:1.0 228:1.0 262:1.0 317:1.0 933:1.0 1255:1.0
17 17:0.25 109:1.0 209:0.2 479:1.0 612:0.3333333333333333 1255:1.0 1501:1.0 1784:1.0
17 4:0.6666666666666666 93:0.05 221:1.0 228:1.0 243:1.0 259:1.0 479:1.0 1011:1.0 1255:1.0
17 4:0.3333333333333333 17:0.25 44:1.0 93:0.05 109:1.0 114:0.25 209:0.2 217:0.5 479:1.0 506:1.0 1539:1.0
17 4:0.6666666666666666 17:0.25 36:0.25 51:0.5 62:0.25 93:0.1 114:0.25 135:1.0 148:0.2 198:0.09090909090909091 209:0.2 210:1.0 220:1.0 479:2.0 491:1.0 701:1.0 1244:1.0 1255:1.0
17 4:0.6666666666666666 36:0.25 85:1.0 148:0.4 209:0.2 479:1.0 506:1.0 1255:1.0
17 2:1.0 4:0.3333333333333333 17:0.25 40:0.5 53:0.2 93:0.15 114:0.25 148:0.2 158:0.16666666666666666 164:1.0 228:2.0 231:0.5 267:0.5 353:1.0 392:1.0 512:1.0 612:0.3333333333333333 900:1.0
17 4:0.3333333333333333 93:0.05 109:1.0 122:0.5 178:1.0 208:0.3333333333333333 209:0.4 259:1.0 401:1.0 479:1.0 480:1.0 582:1.0
17 4:0.6666666666666666 36:0.25 40:0.5 44:0.5 93:0.05 148:0.4 171:1.0 198:0.09090909090909091 209:0.4 221:1.0 228:1.0 259:1.0 315:1.0 400:0.2 479:1.0 936:1.0 1063:1.0 1255:1.0 1403:1.0
17 17:0.25 36:0.25 44:0.5 154:1.0 193:1.0 209:0.2 259:1.0 479:1.0 595:1.0 684:0.5
17 2:1.0 4:0.3333333333333333 17:0.5 36:0.5 40:1.5 57:0.5 62:0.25 93:0.05 240:0.5 314:1.0 321:1.0 330:3.0 347:1.0 620:1.0 827:1.0 911:1.0 1038:1.0 1110:1.0
17 93:0.1 114:0.25 413:0.3333333333333333 787:1.0 847:1.0
17 1079:1.0
17 1:0.041666666666666664 4:0.6666666666666666 17:0.25 36:0.25 38:0.5 60:0.25 62:0.25 81:1.0 95:0.5 126:2.0 148:0.2 158:0.16666666666666666 170:1.0 193:1.0 235:2.0 315:1.0 446:1.0 574:1.0 611:1.0 1059:1.0 1203:1.0
17 1:0.020833333333333332 2:1.0 4:0.3333333333333333 60:0.08333333333333333 158:0.16666666666666666 262:1.0 587:1.0 684:0.5
17 1:0.020833333333333332 4:0.3333333333333333 10:0.08333333333333333 36:0.25 40:0.5 60:0.08333333333333333 76:0.16666666666666666 93:0.05 247:1.0 372:1.0 587:1.0 609:1.0 748:1.0 1006:1.0
17 1:0.020833333333333332 17:0.25 40:0.5 44:0.5 60:0.08333333333333333 93:0.05 243:1.0 272:1.0 611:1.0 797:0.5 1515:1.0
17 4:0.3333333333333333 34:1.0 36:0.25 60:0.08333333333333333 62:0.25 76:0.16666666666666666 93:0.05 95:1.0 231:0.5 245:1.0 252:0.5 272:1.0 317:1.0 338:1.0 372:0.5 587:1.0 679:0.5 847:1.0 1000:1.0 1511:1.0
17 126:1.0 158:0.16666666666666666 773:1.0
17 1:0.020833333333333332 2:1.0 36:0.25 40:1.5 60:0.08333333333333333 62:0.25 92:0.3333333333333333 93:0.05 165:1.0 171:1.0 181:1.0 208:0.3333333333333333 240:0.5 282:1.0 330:1.0 372:0.5 383:1.0 420:1.0 612:0.3333333333333333 796:1.0 1139:1.0
17 2:1.0 11:0.3333333333333333 76:0.16666666666666666 165:1.0 208:0.3333333333333333 282:1.0 298:0.3333333333333333 352:1.0 393:1.0 400:0.2 420:1.0 424:0.5 1784:1.0
17 4:0.3333333333333333 17:0.25 60:0.08333333333333333 62:0.75 69:0.3333333333333333 76:0.3333333333333333 93:0.15 96:1.0 116:1.0 148:0.4 164:1.0 192:0.2 240:0.5 264:1.0 330:1.0 383:1.0 754:1.0 796:1.0 921:1.0
17 11:0.3333333333333333 15:1.0 17:0.25 36:0.25 38:0.5 40:0.5 76:0.5 93:0.2 95:0.5 240:0.5 252:0.5 330:2.0 568:1.0 706:1.0 754:1.0 1038:1.0 1064:1.0 1079:1.0 1200:1.0
17 53:0.2 76:0.16666666666666666 158:0.16666666666666666 240:0.5 587:1.0 889:1.0
17 10:0.08333333333333333 17:0.25 93:0.05 192:0.2 252:0.5 330:1.0 847:1.0
17 4:0.3333333333333333 44:0.5 60:0.08333333333333333 114:0.25 544:1.0 556:1.0 647:1.0 679:0.5 911:1.0 1134:1.0
17 1:0.020833333333333332 4:0.3333333333333333 40:0.5 53:0.2 93:0.05 158:0.16666666666666666 170:1.0 173:1.0 481:0.5 574:1.0 1000:1.0 1114:1.0
17 2:1.0 4:0.3333333333333333 53:0.2 60:0.16666666666666666 62:0.25 92:0.3333333333333333 126:1.0 192:0.4 202:0.5 228:1.0 252:1.5 264:1.0 568:1.0 620:1.0 900:1.0 1066:1.0
17 11:0.3333333333333333 921:1.0
17 1:0.020833333333333332 2:1.0 4:0.3333333333333333 10:0.08333333333333333 17:0.25 40:0.5 44:0.5 60:0.16666666666666666 76:0.3333333333333333 93:0.1 124:1.0 125:0.5 126:1.0 158:0.16666666666666666 243:1.0 914:0.3333333333333333 1670:1.0
17 2:1.0 4:0.3333333333333333 62:0.5 508:1.0 587:1.0
17 1:0.020833333333333332 4:0.3333333333333333 17:0.75 40:1.0 44:0.5 55:2.0 60:0.16666666666666666 76:0.16666666666666666 118:1.0 148:0.2 209:0.4 231:0.5 372:0.5 876:1.0 950:1.0 1171:1.0 1373:1.0
17 4:0.3333333333333333 17:0.5 55:1.0 60:0.08333333333333333 209:0.2 283:1.0 317:1.0 946:1.0 1031:1.0
|
ff3f2b76a0e098aa51c41e967feeed9e843bfe65 | 71fc0b80f29bd03d097bc45e07b3184189b6445c | /nand2tetris/proj3/a/RAM8.tst | 5c406275ff8de74ac33c5d71c4f5b2c7f17696ed | [
"MIT"
] | permissive | ethull/university | 05441b4a74833dd9ae2f904017bfe5140461f4af | 80e00400cf06e5574f4654f51d78544a5d7f66bb | refs/heads/main | 2023-06-08T00:52:03.533293 | 2023-05-25T15:37:21 | 2023-05-25T15:37:21 | 313,761,541 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,847 | tst | RAM8.tst | // This file is BASED ON part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: project03starter/a/RAM8.tst
load RAM8.hdl,
output-file RAM8.out,
compare-to RAM8.cmp,
output-list time%S1.4.1 in%X1.2.1 load%B2.1.2 address%D3.1.3 out%X1.2.1;
set in 0,
set load 0,
set address 0,
tick,
output;
tock,
output;
set load 1,
tick,
output;
tock,
output;
set in 111,
set load 0,
tick,
output;
tock,
output;
set load 1,
set address 1,
tick,
output;
tock,
output;
set load 0,
set address 0,
tick,
output;
tock,
output;
set in 33,
set address 3,
tick,
output;
tock,
output;
set load 1,
tick,
output;
tock,
output;
set load 0,
tick,
output;
tock,
output;
set address 1,
eval,
output;
set in 77,
tick,
output;
tock,
output;
set load 1,
set address 7,
tick,
output;
tock,
output;
set load 0,
tick,
output;
tock,
output;
set address 3,
eval,
output;
set address 7,
eval,
output;
set load 0,
set address 0,
tick,
output;
tock,
output;
set address 1,
eval,
output;
set address 2,
eval,
output;
set address 3,
eval,
output;
set address 4,
eval,
output;
set address 5,
eval,
output;
set address 6,
eval,
output;
set address 7,
eval,
output;
set load 1,
set in %B01010101,
set address 0,
tick,
output;
tock,
output;
set address 1,
tick,
output,
tock,
output;
set address 2,
tick,
output,
tock,
output;
set address 3,
tick,
output,
tock,
output;
set address 4,
tick,
output,
tock,
output;
set address 5,
tick,
output,
tock,
output;
set address 6,
tick,
output,
tock,
output;
set address 7,
tick,
output,
tock,
output;
set load 0,
set address 0,
tick,
output;
tock,
output;
set address 1,
eval,
output;
set address 2,
eval,
output;
set address 3,
eval,
output;
set address 4,
eval,
output;
set address 5,
eval,
output;
set address 6,
eval,
output;
set address 7,
eval,
output;
set load 1,
set address 0,
set in %B10101010,
tick,
output;
tock,
output;
set load 0,
set address 0,
tick,
output;
tock,
output;
set address 1,
eval,
output;
set address 2,
eval,
output;
set address 3,
eval,
output;
set address 4,
eval,
output;
set address 5,
eval,
output;
set address 6,
eval,
output;
set address 7,
eval,
output;
set load 1,
set address 0,
set in %B01010101,
tick,
output,
tock,
output;
set address 1,
set in %B10101010,
tick,
output;
tock,
output;
set load 0,
set address 0,
tick,
output;
tock,
output;
set address 1,
eval,
output;
set address 2,
eval,
output;
set address 3,
eval,
output;
set address 4,
eval,
output;
set address 5,
eval,
output;
set address 6,
eval,
output;
set address 7,
eval,
output;
set load 1,
set address 1,
set in %B01010101,
tick,
output,
tock,
output;
set address 2,
set in %B10101010,
tick,
output;
tock,
output;
set load 0,
set address 0,
tick,
output;
tock,
output;
set address 1,
eval,
output;
set address 2,
eval,
output;
set address 3,
eval,
output;
set address 4,
eval,
output;
set address 5,
eval,
output;
set address 6,
eval,
output;
set address 7,
eval,
output;
set load 1,
set address 2,
set in %B01010101,
tick,
output,
tock,
output;
set address 3,
set in %B10101010,
tick,
output;
tock,
output;
set load 0,
set address 0,
tick,
output;
tock,
output;
set address 1,
eval,
output;
set address 2,
eval,
output;
set address 3,
eval,
output;
set address 4,
eval,
output;
set address 5,
eval,
output;
set address 6,
eval,
output;
set address 7,
eval,
output;
set load 1,
set address 3,
set in %B01010101,
tick,
output,
tock,
output;
set address 4,
set in %B10101010,
tick,
output;
tock,
output;
set load 0,
set address 0,
tick,
output;
tock,
output;
set address 1,
eval,
output;
set address 2,
eval,
output;
set address 3,
eval,
output;
set address 4,
eval,
output;
set address 5,
eval,
output;
set address 6,
eval,
output;
set address 7,
eval,
output;
set load 1,
set address 4,
set in %B01010101,
tick,
output,
tock,
output;
set address 5,
set in %B10101010,
tick,
output;
tock,
output;
set load 0,
set address 0,
tick,
output;
tock,
output;
set address 1,
eval,
output;
set address 2,
eval,
output;
set address 3,
eval,
output;
set address 4,
eval,
output;
set address 5,
eval,
output;
set address 6,
eval,
output;
set address 7,
eval,
output;
set load 1,
set address 5,
set in %B01010101,
tick,
output,
tock,
output;
set address 6,
set in %B10101010,
tick,
output;
tock,
output;
set load 0,
set address 0,
tick,
output;
tock,
output;
set address 1,
eval,
output;
set address 2,
eval,
output;
set address 3,
eval,
output;
set address 4,
eval,
output;
set address 5,
eval,
output;
set address 6,
eval,
output;
set address 7,
eval,
output;
set load 1,
set address 6,
set in %B01010101,
tick,
output,
tock,
output;
set address 7,
set in %B10101010,
tick,
output;
tock,
output;
set load 0,
set address 0,
tick,
output;
tock,
output;
set address 1,
eval,
output;
set address 2,
eval,
output;
set address 3,
eval,
output;
set address 4,
eval,
output;
set address 5,
eval,
output;
set address 6,
eval,
output;
set address 7,
eval,
output;
set load 1,
set address 7,
set in %B01010101,
tick,
output,
tock,
output;
set load 0,
set address 0,
tick,
output;
tock,
output;
set address 1,
eval,
output;
set address 2,
eval,
output;
set address 3,
eval,
output;
set address 4,
eval,
output;
set address 5,
eval,
output;
set address 6,
eval,
output;
set address 7,
eval,
output;
|
e50bbd9925f53373afa5547f151afc65ac7573a6 | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects - Kopie/CONT/WK47ZQE/ATWM1_Working_Memory_MEG_WK47ZQE_Session2/ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run2.sce | e2844fc22fa001a74219e16ed7496c7e202dad02 | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 48,620 | sce | ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run2.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_cued_run2";
#scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
scenario_type = trials; # for MEG
#scan_period = 2000; # TR
#pulses_per_scan = 1;
#pulse_code = 1;
pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 28;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 300; width = 300; color = 0, 0, 0;} frame1;
box { height = 290; width = 290; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 290; width = 290; color = 128, 128, 128;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# Start of experiment (MEG only) - sync with CTF software
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
} expStart;
time = 0;
duration = 1000;
code = "ExpStart";
port_code = 80;
};
# baselinePre (at the beginning of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
}default;
time = 0;
duration = 10000;
#mri_pulse = 1;
code = "BaselinePre";
port_code = 91;
};
TEMPLATE "ATWM1_Working_Memory_MEG.tem" {
trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
44 61 292 292 399 125 2092 2992 1942 fixation_cross gabor_069 gabor_159 gabor_040 gabor_101 gabor_069 gabor_159 gabor_040_alt gabor_101_alt "2_1_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_1950_gabor_patch_orientation_069_159_040_101_target_position_1_2_retrieval_position_2" gabor_circ gabor_023_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_1_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_023_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2192 2992 2492 fixation_cross gabor_011 gabor_096 gabor_140 gabor_075 gabor_011 gabor_096_alt gabor_140 gabor_075_alt "2_2_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2500_gabor_patch_orientation_011_096_140_075_target_position_1_3_retrieval_position_1" gabor_056_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_2_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_056_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1992 2992 2592 fixation_cross gabor_014 gabor_036 gabor_052 gabor_096 gabor_014 gabor_036_alt gabor_052_alt gabor_096 "2_3_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2600_gabor_patch_orientation_014_036_052_096_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_096_framed blank blank blank blank fixation_cross_white "2_3_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_096_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1742 2992 1942 fixation_cross gabor_033 gabor_150 gabor_103 gabor_167 gabor_033_alt gabor_150 gabor_103 gabor_167_alt "2_4_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_1950_gabor_patch_orientation_033_150_103_167_target_position_2_3_retrieval_position_2" gabor_circ gabor_014_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_4_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_014_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 63 292 292 399 125 1842 2992 2592 fixation_cross gabor_123 gabor_177 gabor_070 gabor_008 gabor_123 gabor_177_alt gabor_070_alt gabor_008 "2_5_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1850_3000_2600_gabor_patch_orientation_123_177_070_008_target_position_1_4_retrieval_position_2" gabor_circ gabor_037_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_5_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_037_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1942 2992 2292 fixation_cross gabor_082 gabor_066 gabor_106 gabor_027 gabor_082_alt gabor_066_alt gabor_106 gabor_027 "2_6_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2300_gabor_patch_orientation_082_066_106_027_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_151_framed gabor_circ blank blank blank blank fixation_cross_white "2_6_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_151_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1892 2992 2392 fixation_cross gabor_024 gabor_080 gabor_152 gabor_168 gabor_024_alt gabor_080_alt gabor_152 gabor_168 "2_7_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2400_gabor_patch_orientation_024_080_152_168_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_105_framed gabor_circ blank blank blank blank fixation_cross_white "2_7_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_105_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2042 2992 2092 fixation_cross gabor_035 gabor_093 gabor_169 gabor_009 gabor_035_alt gabor_093_alt gabor_169 gabor_009 "2_8_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2100_gabor_patch_orientation_035_093_169_009_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_169_framed gabor_circ blank blank blank blank fixation_cross_white "2_8_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_169_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1842 2992 2092 fixation_cross gabor_027 gabor_007 gabor_077 gabor_151 gabor_027 gabor_007_alt gabor_077 gabor_151_alt "2_9_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2100_gabor_patch_orientation_027_007_077_151_target_position_1_3_retrieval_position_1" gabor_027_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_9_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_027_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 63 292 292 399 125 1992 2992 2242 fixation_cross gabor_013 gabor_036 gabor_141 gabor_161 gabor_013 gabor_036_alt gabor_141 gabor_161_alt "2_10_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2000_3000_2250_gabor_patch_orientation_013_036_141_161_target_position_1_3_retrieval_position_2" gabor_circ gabor_084_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_10_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_084_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2142 2992 2042 fixation_cross gabor_169 gabor_083 gabor_117 gabor_154 gabor_169 gabor_083 gabor_117_alt gabor_154_alt "2_11_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2050_gabor_patch_orientation_169_083_117_154_target_position_1_2_retrieval_position_2" gabor_circ gabor_083_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_11_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_083_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1992 2992 2292 fixation_cross gabor_174 gabor_136 gabor_020 gabor_094 gabor_174_alt gabor_136 gabor_020_alt gabor_094 "2_12_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2300_gabor_patch_orientation_174_136_020_094_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_094_framed blank blank blank blank fixation_cross_white "2_12_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_094_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1792 2992 2242 fixation_cross gabor_145 gabor_066 gabor_121 gabor_031 gabor_145 gabor_066_alt gabor_121 gabor_031_alt "2_13_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2250_gabor_patch_orientation_145_066_121_031_target_position_1_3_retrieval_position_1" gabor_145_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_13_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_145_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2242 2992 2592 fixation_cross gabor_077 gabor_107 gabor_049 gabor_028 gabor_077 gabor_107 gabor_049_alt gabor_028_alt "2_14_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2600_gabor_patch_orientation_077_107_049_028_target_position_1_2_retrieval_position_2" gabor_circ gabor_107_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_14_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_107_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2042 2992 1992 fixation_cross gabor_062 gabor_035 gabor_105 gabor_152 gabor_062_alt gabor_035 gabor_105_alt gabor_152 "2_15_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2000_gabor_patch_orientation_062_035_105_152_target_position_2_4_retrieval_position_2" gabor_circ gabor_035_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_15_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_035_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1742 2992 2542 fixation_cross gabor_019 gabor_056 gabor_170 gabor_106 gabor_019 gabor_056_alt gabor_170 gabor_106_alt "2_16_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2550_gabor_patch_orientation_019_056_170_106_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_170_framed gabor_circ blank blank blank blank fixation_cross_white "2_16_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_170_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 64 292 292 399 125 2242 2992 2442 fixation_cross gabor_089 gabor_124 gabor_065 gabor_140 gabor_089_alt gabor_124 gabor_065 gabor_140_alt "2_17_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2250_3000_2450_gabor_patch_orientation_089_124_065_140_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_140_framed blank blank blank blank fixation_cross_white "2_17_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_140_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2242 2992 2542 fixation_cross gabor_143 gabor_110 gabor_165 gabor_035 gabor_143 gabor_110 gabor_165_alt gabor_035_alt "2_18_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2550_gabor_patch_orientation_143_110_165_035_target_position_1_2_retrieval_position_1" gabor_094_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_18_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_094_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2142 2992 2242 fixation_cross gabor_054 gabor_021 gabor_087 gabor_129 gabor_054_alt gabor_021 gabor_087_alt gabor_129 "2_19_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2250_gabor_patch_orientation_054_021_087_129_target_position_2_4_retrieval_position_2" gabor_circ gabor_021_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_19_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_021_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1892 2992 1892 fixation_cross gabor_032 gabor_121 gabor_095 gabor_048 gabor_032 gabor_121_alt gabor_095_alt gabor_048 "2_20_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_1900_gabor_patch_orientation_032_121_095_048_target_position_1_4_retrieval_position_1" gabor_032_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_20_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_032_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 64 292 292 399 125 1942 2992 2592 fixation_cross gabor_075 gabor_107 gabor_001 gabor_090 gabor_075 gabor_107_alt gabor_001 gabor_090_alt "2_21_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1950_3000_2600_gabor_patch_orientation_075_107_001_090_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_090_framed blank blank blank blank fixation_cross_white "2_21_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_090_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1992 2992 1942 fixation_cross gabor_021 gabor_109 gabor_093 gabor_143 gabor_021 gabor_109_alt gabor_093_alt gabor_143 "2_22_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_1950_gabor_patch_orientation_021_109_093_143_target_position_1_4_retrieval_position_1" gabor_067_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_22_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_067_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1942 2992 2342 fixation_cross gabor_141 gabor_060 gabor_015 gabor_124 gabor_141_alt gabor_060 gabor_015_alt gabor_124 "2_23_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2350_gabor_patch_orientation_141_060_015_124_target_position_2_4_retrieval_position_2" gabor_circ gabor_060_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_23_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_060_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2092 2992 2292 fixation_cross gabor_109 gabor_089 gabor_173 gabor_052 gabor_109 gabor_089_alt gabor_173 gabor_052_alt "2_24_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2300_gabor_patch_orientation_109_089_173_052_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_034_framed gabor_circ blank blank blank blank fixation_cross_white "2_24_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_034_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2242 2992 1992 fixation_cross gabor_058 gabor_032 gabor_098 gabor_180 gabor_058 gabor_032_alt gabor_098 gabor_180_alt "2_25_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2000_gabor_patch_orientation_058_032_098_180_target_position_1_3_retrieval_position_1" gabor_058_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_25_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_058_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1792 2992 2042 fixation_cross gabor_173 gabor_064 gabor_033 gabor_014 gabor_173_alt gabor_064 gabor_033_alt gabor_014 "2_26_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2050_gabor_patch_orientation_173_064_033_014_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_014_framed blank blank blank blank fixation_cross_white "2_26_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_014_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2192 2992 2242 fixation_cross gabor_170 gabor_039 gabor_154 gabor_024 gabor_170_alt gabor_039 gabor_154 gabor_024_alt "2_27_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2250_gabor_patch_orientation_170_039_154_024_target_position_2_3_retrieval_position_2" gabor_circ gabor_084_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_27_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_084_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 64 292 292 399 125 1792 2992 2192 fixation_cross gabor_026 gabor_149 gabor_089 gabor_108 gabor_026 gabor_149 gabor_089_alt gabor_108_alt "2_28_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1800_3000_2200_gabor_patch_orientation_026_149_089_108_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_108_framed blank blank blank blank fixation_cross_white "2_28_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_108_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1742 2992 2392 fixation_cross gabor_066 gabor_178 gabor_007 gabor_092 gabor_066 gabor_178 gabor_007_alt gabor_092_alt "2_29_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2400_gabor_patch_orientation_066_178_007_092_target_position_1_2_retrieval_position_1" gabor_066_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_29_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_066_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1742 2992 2142 fixation_cross gabor_047 gabor_172 gabor_102 gabor_133 gabor_047_alt gabor_172 gabor_102_alt gabor_133 "2_30_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_047_172_102_133_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_133_framed blank blank blank blank fixation_cross_white "2_30_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_133_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 64 292 292 399 125 1792 2992 2492 fixation_cross gabor_017 gabor_050 gabor_098 gabor_125 gabor_017_alt gabor_050 gabor_098 gabor_125_alt "2_31_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1800_3000_2500_gabor_patch_orientation_017_050_098_125_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_125_framed blank blank blank blank fixation_cross_white "2_31_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_125_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1942 2992 2142 fixation_cross gabor_123 gabor_038 gabor_013 gabor_080 gabor_123_alt gabor_038_alt gabor_013 gabor_080 "2_32_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2150_gabor_patch_orientation_123_038_013_080_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_148_framed gabor_circ blank blank blank blank fixation_cross_white "2_32_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_148_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2092 2992 2192 fixation_cross gabor_022 gabor_133 gabor_004 gabor_064 gabor_022_alt gabor_133 gabor_004 gabor_064_alt "2_33_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2200_gabor_patch_orientation_022_133_004_064_target_position_2_3_retrieval_position_2" gabor_circ gabor_133_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_33_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_133_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2042 2992 2042 fixation_cross gabor_128 gabor_108 gabor_048 gabor_164 gabor_128 gabor_108_alt gabor_048 gabor_164_alt "2_34_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2050_gabor_patch_orientation_128_108_048_164_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_048_framed gabor_circ blank blank blank blank fixation_cross_white "2_34_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_048_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 63 292 292 399 125 2042 2992 2042 fixation_cross gabor_156 gabor_090 gabor_051 gabor_033 gabor_156_alt gabor_090_alt gabor_051 gabor_033 "2_35_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2050_3000_2050_gabor_patch_orientation_156_090_051_033_target_position_3_4_retrieval_position_1" gabor_111_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_35_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_111_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2192 2992 2142 fixation_cross gabor_110 gabor_092 gabor_050 gabor_072 gabor_110 gabor_092 gabor_050_alt gabor_072_alt "2_36_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2150_gabor_patch_orientation_110_092_050_072_target_position_1_2_retrieval_position_2" gabor_circ gabor_092_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_36_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_092_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1792 2992 1942 fixation_cross gabor_028 gabor_104 gabor_062 gabor_174 gabor_028_alt gabor_104 gabor_062_alt gabor_174 "2_37_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_1950_gabor_patch_orientation_028_104_062_174_target_position_2_4_retrieval_position_2" gabor_circ gabor_150_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_37_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_150_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2092 2992 2292 fixation_cross gabor_180 gabor_163 gabor_009 gabor_052 gabor_180_alt gabor_163 gabor_009_alt gabor_052 "2_38_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2300_gabor_patch_orientation_180_163_009_052_target_position_2_4_retrieval_position_2" gabor_circ gabor_117_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_38_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_117_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1942 2992 1992 fixation_cross gabor_138 gabor_117 gabor_027 gabor_083 gabor_138_alt gabor_117 gabor_027_alt gabor_083 "2_39_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2000_gabor_patch_orientation_138_117_027_083_target_position_2_4_retrieval_position_2" gabor_circ gabor_067_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_39_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_067_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1992 2992 2142 fixation_cross gabor_054 gabor_069 gabor_141 gabor_035 gabor_054_alt gabor_069_alt gabor_141 gabor_035 "2_40_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2150_gabor_patch_orientation_054_069_141_035_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_141_framed gabor_circ blank blank blank blank fixation_cross_white "2_40_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_141_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 63 292 292 399 125 2242 2992 2392 fixation_cross gabor_063 gabor_143 gabor_090 gabor_036 gabor_063 gabor_143_alt gabor_090 gabor_036_alt "2_41_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2250_3000_2400_gabor_patch_orientation_063_143_090_036_target_position_1_3_retrieval_position_2" gabor_circ gabor_005_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_41_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_005_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1892 2992 2192 fixation_cross gabor_037 gabor_060 gabor_114 gabor_005 gabor_037 gabor_060_alt gabor_114_alt gabor_005 "2_42_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2200_gabor_patch_orientation_037_060_114_005_target_position_1_4_retrieval_position_1" gabor_177_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_42_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_177_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1892 2992 2042 fixation_cross gabor_089 gabor_013 gabor_059 gabor_043 gabor_089 gabor_013_alt gabor_059_alt gabor_043 "2_43_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2050_gabor_patch_orientation_089_013_059_043_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_043_framed blank blank blank blank fixation_cross_white "2_43_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_043_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 64 292 292 399 125 2192 2992 2492 fixation_cross gabor_071 gabor_105 gabor_134 gabor_177 gabor_071_alt gabor_105_alt gabor_134 gabor_177 "2_44_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2200_3000_2500_gabor_patch_orientation_071_105_134_177_target_position_3_4_retrieval_position_2" gabor_circ gabor_105_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_44_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_105_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2242 2992 2342 fixation_cross gabor_095 gabor_034 gabor_053 gabor_161 gabor_095 gabor_034_alt gabor_053 gabor_161_alt "2_45_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2350_gabor_patch_orientation_095_034_053_161_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_008_framed gabor_circ blank blank blank blank fixation_cross_white "2_45_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_008_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2142 2992 2242 fixation_cross gabor_093 gabor_176 gabor_062 gabor_041 gabor_093_alt gabor_176 gabor_062_alt gabor_041 "2_46_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2250_gabor_patch_orientation_093_176_062_041_target_position_2_4_retrieval_position_2" gabor_circ gabor_176_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_46_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_176_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1892 2992 2342 fixation_cross gabor_069 gabor_101 gabor_037 gabor_144 gabor_069 gabor_101_alt gabor_037 gabor_144_alt "2_47_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2350_gabor_patch_orientation_069_101_037_144_target_position_1_3_retrieval_position_1" gabor_118_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_47_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_118_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1742 2992 2142 fixation_cross gabor_096 gabor_051 gabor_066 gabor_136 gabor_096_alt gabor_051_alt gabor_066 gabor_136 "2_48_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_096_051_066_136_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_116_framed gabor_circ blank blank blank blank fixation_cross_white "2_48_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_116_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 63 292 292 399 125 1892 2992 2442 fixation_cross gabor_118 gabor_005 gabor_046 gabor_134 gabor_118 gabor_005_alt gabor_046_alt gabor_134 "2_49_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1900_3000_2450_gabor_patch_orientation_118_005_046_134_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_091_framed gabor_circ blank blank blank blank fixation_cross_white "2_49_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_091_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1842 2992 1892 fixation_cross gabor_139 gabor_107 gabor_024 gabor_050 gabor_139 gabor_107_alt gabor_024 gabor_050_alt "2_50_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_1900_gabor_patch_orientation_139_107_024_050_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_161_framed gabor_circ blank blank blank blank fixation_cross_white "2_50_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_161_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1842 2992 2092 fixation_cross gabor_091 gabor_006 gabor_124 gabor_162 gabor_091_alt gabor_006 gabor_124 gabor_162_alt "2_51_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2100_gabor_patch_orientation_091_006_124_162_target_position_2_3_retrieval_position_2" gabor_circ gabor_006_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_51_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_006_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2192 2992 1892 fixation_cross gabor_005 gabor_045 gabor_160 gabor_071 gabor_005_alt gabor_045_alt gabor_160 gabor_071 "2_52_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_1900_gabor_patch_orientation_005_045_160_071_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_071_framed blank blank blank blank fixation_cross_white "2_52_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_071_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1842 2992 1892 fixation_cross gabor_131 gabor_018 gabor_097 gabor_167 gabor_131 gabor_018_alt gabor_097_alt gabor_167 "2_53_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_1900_gabor_patch_orientation_131_018_097_167_target_position_1_4_retrieval_position_1" gabor_081_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_53_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_081_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 63 292 292 399 125 1992 2992 2092 fixation_cross gabor_064 gabor_141 gabor_031 gabor_111 gabor_064_alt gabor_141 gabor_031_alt gabor_111 "2_54_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2000_3000_2100_gabor_patch_orientation_064_141_031_111_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_080_framed gabor_circ blank blank blank blank fixation_cross_white "2_54_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_080_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2142 2992 2442 fixation_cross gabor_052 gabor_171 gabor_092 gabor_107 gabor_052 gabor_171 gabor_092_alt gabor_107_alt "2_55_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2450_gabor_patch_orientation_052_171_092_107_target_position_1_2_retrieval_position_2" gabor_circ gabor_171_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_55_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_171_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2092 2992 2542 fixation_cross gabor_093 gabor_033 gabor_139 gabor_118 gabor_093 gabor_033_alt gabor_139 gabor_118_alt "2_56_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2550_gabor_patch_orientation_093_033_139_118_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_004_framed gabor_circ blank blank blank blank fixation_cross_white "2_56_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_004_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2142 2992 2292 fixation_cross gabor_125 gabor_176 gabor_037 gabor_154 gabor_125_alt gabor_176 gabor_037 gabor_154_alt "2_57_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2300_gabor_patch_orientation_125_176_037_154_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_037_framed gabor_circ blank blank blank blank fixation_cross_white "2_57_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_037_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1842 2992 2392 fixation_cross gabor_015 gabor_131 gabor_176 gabor_095 gabor_015_alt gabor_131 gabor_176_alt gabor_095 "2_58_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2400_gabor_patch_orientation_015_131_176_095_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_047_framed blank blank blank blank fixation_cross_white "2_58_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_047_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1742 2992 1992 fixation_cross gabor_001 gabor_078 gabor_034 gabor_058 gabor_001_alt gabor_078 gabor_034_alt gabor_058 "2_59_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_001_078_034_058_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_107_framed blank blank blank blank fixation_cross_white "2_59_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_107_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1792 2992 2492 fixation_cross gabor_151 gabor_035 gabor_089 gabor_067 gabor_151 gabor_035_alt gabor_089_alt gabor_067 "2_60_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2500_gabor_patch_orientation_151_035_089_067_target_position_1_4_retrieval_position_1" gabor_106_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_60_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_106_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1942 2992 2342 fixation_cross gabor_103 gabor_156 gabor_133 gabor_172 gabor_103_alt gabor_156 gabor_133 gabor_172_alt "2_61_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2350_gabor_patch_orientation_103_156_133_172_target_position_2_3_retrieval_position_2" gabor_circ gabor_021_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_61_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_021_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2192 2992 2342 fixation_cross gabor_118 gabor_142 gabor_086 gabor_164 gabor_118_alt gabor_142 gabor_086_alt gabor_164 "2_62_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2350_gabor_patch_orientation_118_142_086_164_target_position_2_4_retrieval_position_2" gabor_circ gabor_002_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_62_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_002_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 63 292 292 399 125 1792 2992 2542 fixation_cross gabor_038 gabor_104 gabor_170 gabor_126 gabor_038 gabor_104_alt gabor_170 gabor_126_alt "2_63_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1800_3000_2550_gabor_patch_orientation_038_104_170_126_target_position_1_3_retrieval_position_2" gabor_circ gabor_059_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_63_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_059_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2042 2992 2192 fixation_cross gabor_080 gabor_096 gabor_037 gabor_162 gabor_080 gabor_096_alt gabor_037_alt gabor_162 "2_64_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2200_gabor_patch_orientation_080_096_037_162_target_position_1_4_retrieval_position_1" gabor_126_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_64_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_126_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 2092 2992 2192 fixation_cross gabor_124 gabor_095 gabor_068 gabor_178 gabor_124_alt gabor_095_alt gabor_068 gabor_178 "2_65_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2200_gabor_patch_orientation_124_095_068_178_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_068_framed gabor_circ blank blank blank blank fixation_cross_white "2_65_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_068_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 2042 2992 1942 fixation_cross gabor_147 gabor_037 gabor_008 gabor_123 gabor_147_alt gabor_037 gabor_008_alt gabor_123 "2_66_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_1950_gabor_patch_orientation_147_037_008_123_target_position_2_4_retrieval_position_2" gabor_circ gabor_086_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_66_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_086_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 64 292 292 399 125 2142 2992 1892 fixation_cross gabor_033 gabor_075 gabor_144 gabor_162 gabor_033 gabor_075 gabor_144_alt gabor_162_alt "2_67_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2150_3000_1900_gabor_patch_orientation_033_075_144_162_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_144_framed gabor_circ blank blank blank blank fixation_cross_white "2_67_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_144_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 61 292 292 399 125 1842 2992 2092 fixation_cross gabor_173 gabor_009 gabor_092 gabor_125 gabor_173_alt gabor_009 gabor_092_alt gabor_125 "2_68_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2100_gabor_patch_orientation_173_009_092_125_target_position_2_4_retrieval_position_2" gabor_circ gabor_148_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_68_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_148_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 62 292 292 399 125 1742 2992 1992 fixation_cross gabor_016 gabor_053 gabor_105 gabor_136 gabor_016_alt gabor_053 gabor_105_alt gabor_136 "2_69_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_016_053_105_136_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_136_framed blank blank blank blank fixation_cross_white "2_69_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_136_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 64 292 292 399 125 1892 2992 2442 fixation_cross gabor_094 gabor_124 gabor_169 gabor_149 gabor_094 gabor_124 gabor_169_alt gabor_149_alt "2_70_Encoding_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1900_3000_2450_gabor_patch_orientation_094_124_169_149_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_149_framed blank blank blank blank fixation_cross_white "2_70_Retrieval_Working_Memory_MEG_P4_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_149_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 5000;
code = "BaselinePost";
port_code = 92;
}; |
5e35c4d00012fdcf6ca3c7a89379ad888602de49 | d422d2bd9c82ca6a247ec578514ee6d3b5fa48b7 | /local/lctrs/step_distribution.sce | 5232817efe38fcac2b5f3a961a83fc36374e7752 | [] | no_license | kirillin/python_ev3 | bee3d9682f848b188d6c3b967f37dfc5a4aa3080 | 58c34ad11588bdc05e53a8466d6a12fe2c1a6ab2 | refs/heads/master | 2020-08-04T22:52:07.665251 | 2017-01-06T15:17:10 | 2017-01-06T15:17:10 | 67,629,534 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 884 | sce | step_distribution.sce | clear;
function e = G(a, z)
e = z(2) - a(1)*z(1) - a(1)*a(2)*exp(-z(1)/a(2)) + a(1)*a(2);
endfunction
function [tm, speed] = plt(data, color_real, color_model)
time = data(:,1);
time = time -time(1);
data(:,2) = data(:,2) * %pi / 180;
angle = data(:,2);
a0 = [0; 10];
[aa, er] = datafit(G, data', a0);
tm = aa(2);
speed = aa(1);
model = aa(1)*time + aa(1)*aa(2)*exp(-time / aa(2)) - aa(1)*aa(2);
disp(aa);
plot(time, angle, color_real);
plot(time, model, color_model);
endfunction
scf(0);
path_black = "/media/data/evo/python_ev3/local/lctrs/lssn_3/data.txt";
for i = 0:20
data = read(path + "dataLargeMotor_black_" + string(i * 5) + + "pwr_1000sec.txt", -1, 2);
disp("Power = " + string(i * 5));
[Tm(i+1), w(i+1)] = plt(data, "k", "m--");
end
x = 0:5:100;
scf();
plot(x, Tm);
scf();
plot(x, w);
|
ecea83ca86f319532883bcebbf541a65cbe4ef5d | 449d555969bfd7befe906877abab098c6e63a0e8 | /869/CH2/EX2.6/2_6.sce | a04b597636cb5ca78c36ef463cc7ef9f97f69a24 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 304 | sce | 2_6.sce | clc
//initialisation of variables
F= 100 //lb
x1= 6 //in
x2= 8 //in
x3= 2 //in
//CALCULATIONS
xab= sqrt(x1^2+x2^2)
d= x3*x1/xab
M1= F*d
Fx= F*x2/xab
Fy= F*x1/xab
M2= Fy*xab-Fx*x1
M3= Fy*x3
//RESULTS
printf ('M1 = %.f lb.in',M1)
printf (' \M2=%.f lb.in',M2)
printf (' \M3=%.f lb.in',M3)
|
340afad81b7e78be88941ec800f9037363ff3806 | 79a9b8e61be2b6f6982c748002a7eb60ebe61e94 | /scilabCode/timeshift.sci | d8750c735ace55e6db3648c34dc15d2bfcf2ee4b | [] | no_license | kavyamanohar/DSPlab | 2537afda78992bf9fc2e60d93ef95849c40c23e9 | eca8a02bbac243a61db8db89f3e05ea2e6485c39 | refs/heads/master | 2021-01-21T13:53:00.373606 | 2016-06-05T08:27:51 | 2016-06-05T08:27:51 | 54,376,427 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 508 | sci | timeshift.sci | clear all
clf;
x=[1 2 3 4 5];
n=-2:1:2;
subplot(2,3,1);
plot2d3(n,x);
title('original sequence');
k=n-2;// advanced seq
subplot(2,3,2)
plot2d3(k,x);
title('advanced sequence');
l=n+3;//delayed sequence
subplot(2,3,3)
plot2d3(l,x);
title('delayed sequence');
t=0:0.0005:0.01;
f=100;
s=0.5*sin(2*%pi*f*t);
subplot(2,3,4)
plot(t,s);
title('orginal sequence');
ta=t-2
subplot(2,3,5)
plot(ta,s)
title('advanced sequence');
td=t+3
subplot(2,3,6)
plot(td,s);
title('delayed sequence');
xs2pdf(0,'timeshift.pdf');
|
646e621df504369dcb1dbb750f0ccce5abdd2879 | 449d555969bfd7befe906877abab098c6e63a0e8 | /48/CH1/EX1.4/eg_1_4.sce | d2fd429f572471a668192c8f74d42b3019e994a0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 641 | sce | eg_1_4.sce | clc;//clears the command window
clear;//clears all the variables
format('v',8);//making the default precision to 8 significant digits
i=1;
dec=0.3125;//given decimal number which should be expressed in base 8
temp=modulo(0.3125,1);//separating decimal part from the given number
while(temp~=0) //storing each decimal digit in vector for convenience
temp=temp*8;
p(i)=floor(temp);
i=i+1;
temp=modulo(temp,1);
end
temp1=0; //flag bit
for j=1:length(p)
//multipliying bits of decimal part with their position values and adding
temp1=temp1+(10^(-1*j)*p(j))
end
disp(temp1);//displays the final output |
7264edcf1578c5f03e53664ea7ce5fed22fad6e0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1076/CH11/EX11.2/11_2.sce | b533dcfd389547c308f20c158303a839a5f8e464 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 820 | sce | 11_2.sce | clear;
clc;
n=5;
Z=0;
z=[ 0 1 .25*%i 1; 1 2 .06*%i 2; 2 3 .05*%i 2;3 4 .07*%i 2; 0 4 .2*%i 3];
for(i=1:n)
mcase=z(i,4)
znew=z(i,3)
n1=real(z(i,1))
n2=real(z(i,2))
dim=max(size(Z))
select mcase
case 1 then
if Z(1,1)==0 then
dim=dim-1
end
Z(dim+1, dim+1)=znew
case 2 then
Z(dim+1,dim+1)=znew+Z(n1,n1)
Z(1:dim,dim+1)=Z(1:dim, n1)
Z(dim+1,1:dim)=Z(n1,1:dim)
case 3 then
Z=Z-((Z(1:dim, n2)*Z(n2,1:dim))/(znew+Z(n2,n2)))
case 4 then
Z=Z-(((Z(1:dim, n1)-Z(1:dim, n2))*(Z(n1,1:dim)-Z(n2,1:dim)))/(znew+Z(n2,n2)+Z(n1,n1)-(2*+Z(n1,n2))))
else
break
end
end
mprintf("Z1bus=Z2bus=");
disp(Z)
|
96cbc357adcb6914f6d356e3f126933b36bcf728 | 6e257f133dd8984b578f3c9fd3f269eabc0750be | /ScilabFromTheoryToPractice/Computing/testzeros.sce | bb7320cc530b67c829df0a407e27f62c1d865a1c | [] | no_license | markusmorawitz77/Scilab | 902ef1b9f356dd38ea2dbadc892fe50d32b44bd0 | 7c98963a7d80915f66a3231a2235010e879049aa | refs/heads/master | 2021-01-19T23:53:52.068010 | 2017-04-22T12:39:21 | 2017-04-22T12:39:21 | 89,051,705 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 131 | sce | testzeros.sce | A=rand(2,2)
// creates a zero matrix of the same size as A
zeros(A)
// zeros(2) does not create a vector with two entries
zeros(2)
|
1b0ec02055fee8c4675f549785a74a367d29baf0 | e9d5f5cf984c905c31f197577d633705e835780a | /data_reconciliation/linear/scilab/P1/P1.sce | 96cd70723d47ce96d7e0840f43a7e99622ab4e4f | [] | no_license | faiz-hub/dr-ged-benchmarks | 1ad57a69ed90fe7595c006efdc262d703e22d6c0 | 98b250db9e9f09d42b3413551ce7a346dd99400c | refs/heads/master | 2021-05-18T23:12:18.631904 | 2020-03-30T21:12:16 | 2020-03-30T21:12:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,639 | sce | P1.sce | // Data Reconciliation Benchmark Problems From Lietrature Review
// Author: Edson Cordeiro do Valle
// Contact - edsoncv@{gmail.com}{vrtech.com.br}
// Skype: edson.cv
//Rao, R Ramesh, and Shankar Narasimhan. 1996.
//“Comparison of Techniques for Data Reconciliation of Multicomponent Processes.”
//Industrial & Engineering Chemistry Research 35:1362-1368.
//http://dx.doi.org/10.1021/ie940538b.
//Bibtex Citation
//@article{Rao1996,
//author = {Rao, R Ramesh and Narasimhan, Shankar},
//isbn = {0888-5885},
//journal = {Industrial \& Engineering Chemistry Research},
//month = apr,
//number = {4},
//pages = {1362--1368},
//publisher = {American Chemical Society},
//title = {{Comparison of Techniques for Data Reconciliation of Multicomponent Processes}},
//url = {http://dx.doi.org/10.1021/ie940538b},
//volume = {35},
//year = {1996}
//}
// 3 Streams
// 1 Equipment
clear xm var jac nc nv i1 i2 nnzeros sparse_dg sparse_dh lower upper var_lin_type constr_lin_type constr_lhs constr_rhs
getd('../functions');
xm =[9.22
4.83
3.22
];
//the variance proposed by the original author
//var = 0.0001*ones(11,1).^2;
//the variance proposed by this work
var = (0.03*xm).^2;
// gross error
gerror = zeros(length(xm),1);
// to setup gross errors, select the stream and magnitude as the line bellow
//gerror(2) = 9*sqrt(var(2));
xm = xm + gerror;
//The jacobian of the constraints
// 1 2 3
jac = [ 1 -1 -1 ];
// 1 2 3
//observability/redundancy tests
umeas_P1 = [];
[red_P1, just_measured_P1, observ_P1, non_obs_P1, spec_cand_P1] = qrlinclass(jac,umeas_P1)
// reconcile with all measured. To reconcile with only redundant variables, uncomment the "red" assignments
measured_P1 = setdiff([1:length(xm)], umeas_P1);
red = measured_P1;//
// to reconcile with all variables, comment the line above and uncomment bellow
//red = [1:length(xm)];
// to run robust reconciliation,, one must choose between the folowing objective functions to set up the functions path and function parameters:
//WLS = 0
// Absolute sum of squares = 1
//Cauchy = 2
//Contamined Normal = 3
//Fair = 4
//Hampel = 5
//Logistic = 6
//Lorenztian = 7
//Quasi Weighted = 8
// run the configuration functions with the desired objective function type
obj_function_type = 0;
exec ../functions/setup_DR.sce
// to run robust reconciliation, it is also necessary to choose the function to return the problem structure
if obj_function_type > 0 then
[nc_eq, n_non_lin_eq, nv, nnzjac_ineq, nnzjac_eq, nnz_hess, sparse_dg, sparse_dh, lower, upper, var_lin_type, constr_lin_type, constr_lhs, constr_rhs] = robust_structure(jac, 0, xm, objfun, res_eq, res_ineq);
else
// for WLS, only the line bellow must be choosen and comment the 3 lines above
[nc, nv, i1, i2, nnzeros, sparse_dg, sparse_dh, lower, upper, var_lin_type, constr_lin_type, constr_lhs, constr_rhs] = wls_structure(jac);
end
params = init_param();
// We use the given Hessian
params = add_param(params,"hessian_approximation","exact");
params = add_param(params,"derivative_test","second-order");
params = add_param(params,"tol",1e-8);
params = add_param(params,"acceptable_tol",1e-8);
params = add_param(params,"mu_strategy","adaptive");
params = add_param(params,"journal_level",5);
[x_sol, f_sol, extra] = ipopt(xm, objfun, gradf, confun, dg, sparse_dg, dh, sparse_dh, var_lin_type, constr_lin_type, constr_rhs, constr_lhs, lower, upper, params);
mprintf("\n\nSolution: , x\n");
for i = 1 : nv
mprintf("x[%d] = %e\n", i, x_sol(i));
end
mprintf("\n\nObjective value at optimal point\n");
mprintf("f(x*) = %e\n", f_sol);
|
4502d9204a5624735ebd496a06267c04fe3eb8c3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1332/CH15/EX15.8/15_8.sce | 49c24e8288fa3663bab0083b4d109cecfa368054 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 209 | sce | 15_8.sce | //Example 15.8
//Euler Method
//Page no. 513
clc;clear;close;
deff('y=f(x,y)','y=x+y')
y(1)=1;
h=0.1;
for i=1:6
printf('\ny(%g) = %g\n',(i-1)/10,y(i))
y(i+1)=y(i)+h*f((i-1)/10,y(i))
end |
8c8b39923af37441c6250d73425fb3ef21adf54e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1928/CH1/EX1.15.3/ex1_15_3.sce | caf682f56f530ad60881d67979c0b02245dc18aa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 717 | sce | ex1_15_3.sce | //Chapter-1,Example1_15_3,pg 1-69
n1=1 //for 1st order
n2=2 //for 2nd order
t=3.4 //angle where 1st order reflection done
t1=t*%pi/180 //convert degree to radian
m=sin(t1)
//but from Bragg's law
//n*l=2*d*sin(t)
//for for constant distance(d) and wavelength(l)
//order(n) is directly proportionl to sine of angle i.e (sin(t))
//n1/n2=sin(t1)/sin(t2)
//assume sin(t2)=a
a=n2/n1*m
t2=asind(a) //taking sin inverese in degree
printf("second order reflection take place at an angle=")
disp(t2)
printf("degree")
|
be6d39f1553a7e3bfe98f0b8d3f460edd23d45af | 449d555969bfd7befe906877abab098c6e63a0e8 | /1067/CH57/EX57.14/57_14.sce | 0d353cc9b04510cc4db08d33174ee374afdf9fd0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 330 | sce | 57_14.sce | clear;
clc;
ud1=510;
ud2=490;
ud=(ud1+ud2)/2;
id=1;
p=ud*id;
b=2*p;
r=(ud1-ud2)/id;
pl=r;
pbl=2*pl;
pdr=ud1;
pdi=ud2;
pz=pdr-pdi;
mprintf("power flow per pole=%dMW\nbipolar line flow=%dMW\nthe line loss per pole in bipolat line=%dMW\nbipolar line loss=%dMW\nreactive power flow through DC link=%dMW",p,b,pl,pbl,0);
|
0dbfe16c8d0446d27740493521c78cc915fad9bb | c09855a0cffb60bbb6dbdd0327339516e88fb7a7 | /test.tst | 48455c36afffe5cb3d20c0a58acb4e904974e731 | [] | no_license | Ratnam113/Second | 9c4682f40cb133bd087b8b0fecd78796d4c02a55 | 9eb813f2bbd90529c117e734f23872bedbee89aa | refs/heads/main | 2023-02-26T23:40:11.723160 | 2021-02-08T11:51:00 | 2021-02-08T11:58:10 | 336,959,132 | 0 | 0 | null | 2021-02-08T11:58:12 | 2021-02-08T04:24:15 | null | UTF-8 | Scilab | false | false | 24 | tst | test.tst | This is test for rebase
|
77dfe7309eaeb303209d7a60afe3a3c01004e15e | 449d555969bfd7befe906877abab098c6e63a0e8 | /167/CH7/EX7.19/ex19.sce | 87e16c27306ed6a020454f512950482e0774576c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 838 | sce | ex19.sce | //ques19
//Entropy Generated when a Hot Block Is Dropped in a Lake
clear
clc
//(a) The entropy change of the iron block
m=50;//mass in kg
Cavg=0.45;//average specific heat in kJ/kg
T2=285;//final temp in K
T1=500;//initial temp in K
Siron=m*Cavg*log(T2/T1);
printf('(a) Entropy change of iron block = %.2f kJ/K \n',Siron);
//(b)
//The temperature of the lake water remains constant during this process at 285 K
Qout=m*Cavg*(T1-T2);//heat transfer from iron to lake in kJ
S=Qout/T2;//Entropy change of lake in kJ/K
printf(' (b) Entropy change of the lake = %.2f kJ/K \n',S);
//(c)
//The entropy generated during this process is determined by applying an entropy balance on the system
Tb=285;//temp of block in K
Sgen=Qout/Tb+Siron;//Entropy generation in kJ/K
printf(' (c) Entropy generated = %.2f kJ/K \n',Sgen);
|
acfb851b55229c82aba6eba27fcc5be1c3e799cb | 449d555969bfd7befe906877abab098c6e63a0e8 | /1970/CH6/EX6.14/Ch06Exa14.sce | bcd1155cca62d55a9ff2585ce029b7cdc2c9c564 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 651 | sce | Ch06Exa14.sce | // Scilab code Exa6.14: : Page-246 (2011)
clc; clear;
t_half = 12.5*365*24; // Half life of hydrogen 3, hour
lambda = log(2)/t_half; // Decay constant, per hour
N_0 = 6.023e+26; // Avogadro's number, per mole
m = 0.1e-03; // Mass of tritium, Kg
dN_by_dt = lambda*m*N_0/3; // Decay rate, per hour
H = 21*4.18; // Heat produed, joule
E = H/dN_by_dt; // The average energy of the beta particle, joule
printf("\nThe average energy of beta particles = %4.2e joule = %3.1f keV", E, E/1.6e-016);
// Result
// The average energy of beta particles = 6.91e-016 joule = 4.3 keV
|
4c60f2830e5bceee3ae99a53e36c496e1545a13c | 151e9d9a47b8c4098e67f5ecc974b3a811d91a95 | /brofist/scicos_32/bro_sensor_enc.sci | 24cae0e7f5a01a075ec5fdc6071bb232cfd4ce61 | [] | no_license | AliaksandrSiarohin/AppliedRobotics | a81c568be77962723b6b17394d1a42a4e76d8a69 | 5d79e537dd6926738ffc59eff18a78fd42c44417 | refs/heads/master | 2021-01-13T00:49:45.571990 | 2016-01-26T22:22:40 | 2016-01-26T22:22:40 | 45,112,715 | 2 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 4,207 | sci | bro_sensor_enc.sci | function [x,y,typ] = SPAM_Sensor(job,arg1,arg2)
x=[];y=[];typ=[];
sensor = '';
port_no = '';
select job
case 'plot' then
graphics=arg1.graphics;
ierr=execstr('(evstr(graphics.exprs(1))==1)','errcatch')
if ierr<>0 then
sensor = 'Custom Sensor';
end
printf("INIT Sensor: %s, port: %s\n", graphics.exprs(1), graphics.exprs(2));
select evstr(graphics.exprs(1))
case 1 then
sensor = 'Tacho Count'
case 2 then
sensor = 'AVG Speed'
case 3 then
sensor = 'Light Sensor'
case 4 then
sensor = 'Touch Sensor'
case 5 then
sensor = 'Sound Sensor'
case 6 then
sensor = 'Ultrasonic Sensor'
else
sensor = '?'
end
select evstr(graphics.exprs(2))
case 1 then
port_no = '1'
case 2 then
port_no = '2'
case 3 then
port_no = '3'
case 4 then
port_no = '4'
case 5 then
port_no = 'A'
case 6 then
port_no = 'B'
case 7 then
port_no = 'C'
else
port_no = '?'
end
standard_draw(arg1)
case 'getinputs' then
[x,y,typ]=standard_inputs(arg1)
case 'getoutputs' then
[x,y,typ]=standard_outputs(arg1)
case 'getorigin' then
[x,y]=standard_origin(arg1)
case 'set' then
x = arg1;
graphics = arg1.graphics;
exprs = graphics.exprs;
model = arg1.model;
while %t do
[ok,sensor_typ,port,exprs]=getvalue('Set Sensors Parameters',..
['Sensor Type (1~6)';'Port (1~4 for Sensors Port, 5~7 for A->C)'],..
list('vec',1,'vec',1),exprs)
if ~ok then
break
end
sensor_typ = int(sensor_typ);
port = int(port);
printf("Sensor: %d, port: %d\n", sensor_typ, port);
if (((sensor_typ < 1) | (sensor_typ > 6)) | ((port < 1) | (port > 7)) ) then
printf("Numero sensore NON ok\n");
message('Sensor Type can only be a number between 1 and 6');
elseif (((sensor_typ >= 3) & (sensor_typ <= 6)) & ((port < 1) | (port > 4))) then
printf("Sensore settato sulla porta sbagliata\n");
message ('Port number should be 1 to 4 for sensors');
elseif (((port < 5) | (port > 7)) & ((sensor_typ == 1) | (sensor_typ == 2))) then
printf("Sensore di motore settato sulle porte 1~4!\n");
message ('Port number should be 5 to 7 for motor ports A to C');
else
printf("Post if: %d, port: %d\n", sensor_typ, port);
graphics.exprs = exprs;
model.dstate = 0;
model.ipar = [sensor_typ; port];
x.graphics = graphics;
x.model = model;
break
end
end
case 'define' then
sensor_typ = 1;
port = 5;
model=scicos_model()
model.sim=list('bro_sensor_enc',4)
model.out = [3];
model.out2 = [1];
model.outtyp = [1];
model.in=[]
model.evtin=[]
model.rpar=[]
model.ipar = [sensor_typ; port];
model.dstate=[1];
model.blocktype='c'
model.dep_ut=[%t %f]
exprs = [string(sensor_typ);string(port)];
gr_i=['xstringb(orig(1),orig(2),[sensor+'' on Port ''+port_no],sz(1),sz(2),''fill'');']
x=standard_define([3 2],model,exprs,gr_i)
end
endfunction
|
263abdd79826158899c45ab764818270f20dbf67 | eec0cb8a9a3987d4e28fc22c89750a158a00ea84 | /Assignment1_team8/Project_01/Assignment1_team8/Q2/Enc4to2.tst | ba3295cf82d2314149a8c0e412d6a31b7e9728e3 | [] | no_license | Archaic-Mage/CS2310_LAB_Assignments | 8ac90e0123de95f5cf8db709cd7761962bf8cef2 | e922b59fc1350db3f23b07b8f5986ac54f197c8d | refs/heads/main | 2023-08-29T23:42:07.913682 | 2021-11-16T14:00:05 | 2021-11-16T14:00:05 | 401,640,543 | 1 | 1 | null | 2021-10-01T05:55:36 | 2021-08-31T09:10:15 | Scilab | UTF-8 | Scilab | false | false | 233 | tst | Enc4to2.tst | load Enc4to2.hdl,
output-file Enc4to2.out,
compare-to Enc4to2.cmp,
output-list x%B3.4.3 y%B3.2.3;
set x %B1000,
eval,
output;
set x %B0100,
eval,
output;
set x %B0010,
eval,
output;
set x %B0001,
eval,
output; |
2c3e4369aa20be85d6c71a2293272978cdad965e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2300/CH3/EX3.11.7/Ex3_7.sce | aa477e259fd4f19da173def3f2db65cbff9ff3fb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex3_7.sce |
//scilab 5.4.1
//windows 8 operating system
//chapter 3:Properties of Semiconductors
clc
clear
//given
c=3*(10^8);//c=velocity of light in vacuum in m/s
h=6.6*(10^-34);//h=Planck's constant in J.s
Eg=1.98*1.6*(10^-19)//Eg=band gap in J
//calculating Y=required wavelength
Y=((c*h)/Eg)/(10^-9)
disp("nm",Y,"Y=")
|
b4c1c64a27074d0bd1aa98030a51384899fa1d10 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1748/CH4/EX4.1/Exa4_1.sce | 4ee9bcadd74d9c6db7eeb2a5166bd8d70e14d4ed | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 236 | sce | Exa4_1.sce | //Exa 4.1
clc;
clear;
close;
//Given data :
P=8;//no. of poles
T=5;//no. of teeteh in each pole
Nr=50;//no. of teeth in rotor
Ns=P*T;//no. of teeth
Beta=(Nr-Ns)*360/(Nr*Ns);//in degree
disp(Beta,"Stepping Angle(in degree) :"); |
9ae93c4d66abb69a82a2a4162904fec59c209efc | 449d555969bfd7befe906877abab098c6e63a0e8 | /599/CH2/EX2.14/example2_14.sce | f78cb66c7fd286f740d212a04c6e9c9d859cb66a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 987 | sce | example2_14.sce |
clear;
clc;
printf("\t Example 2.14\n");
ya1=0.2; //molefraction at pos.1
ya2=0.1; //molefraction at pos.2
T=(293); //temperature in kelvin
pt=1*1.013*10^5; //total pressure in pascal
z=0.2*10^-2; //gas film thickness in m
Dab=.206*10^-4; //diffusion coefficient in m^2/s
R=8314; //universal gas constant
//for ideal gases volume fraction =mole fraction
//part (i)when N2 is non diffusing
Na=Dab*pt*log((1-ya2)/(1-ya1))/(z*R*T); //diffusion flux in kmol/m^2*s
printf("\n diffusion flux if N2 is non diffusing :%f *10^-5 kmol/m^2*s ",Na/10^-5);
//part (ii) equimolar counter diffusion
Na=Dab*pt*(ya1-ya2)/(z*R*T) //diffusion flux in kmol/m^2*s
printf("\n diffusion flux of nitrogen during equimolar counter-diffusion :%f *10^-5 kmol/m^2*s ",Na/10^-5);
//end |
e480796feebb7ed2891d1775b23da23e6664453c | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.20_14.tst | 32b54353e4ffa39460160ee9c48779417f234bfe | [] | 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 | 499,985 | tst | 5.20_14.tst | 20 25:1 240:1 967:1 1094:1 1108:1 1208:1 1241:1 1510:1 1641:1 1663:1 1766:1 1775:1 1961:1 2164:1 2507:1 3237:1 3801:1 4107:2 4192:1 4234:1 4323:1 4394:1 4409:2 4450:1 4498:2 4654:1 4872:1 5187:2 5322:1 5347:1 5592:1 6183:1 6429:1 6451:1 6460:1 6497:1 6619:1 6859:1 6926:1 7038:1 7068:1 7177:1 7400:1 7451:1 7573:1 7604:1 7805:1 7810:1 7988:1 8532:1 8700:1 8778:2 8814:1 9202:1 9222:1 9282:1 9488:2 9563:2 9695:1 9710:1 9723:1 9918:1 9974:2 10851:1 11163:1 11301:1 11376:1 11777:1 12045:1 12060:1 12105:1 12383:1 12584:1 13069:1 13295:1 13363:1 13378:1 13437:1 13835:1 14077:1 14398:1 14539:1 14719:1 14844:1 15129:1 15307:1 15480:63 15583:1 15929:1 16042:1 16387:1 16733:1 16782:1 16815:1 17014:1 17311:1 17362:1 17491:1 17851:1 18037:1 18567:1 18727:1 18739:1 18941:1 18946:1 18990:1 19438:2 19470:1 19480:1 19493:1 19562:1 19832:1 20013:1 20076:1 20268:1 20318:1 20332:1 20378:1 20447:1 20469:1 21632:1 21760:1 21923:1 22027:1 22193:1 22693:1 22831:1 23385:1 23430:1 23758:1 24469:1
20 25:1 37:1 76:1 216:1 240:1 407:1 489:1 568:1 960:1 967:1 1094:1 1108:1 1208:1 1241:1 1274:2 1293:1 1301:1 1332:1 1343:1 1436:1 1507:1 1510:1 1629:1 1641:1 1663:1 1731:1 1766:1 1775:1 1945:1 1961:1 1963:1 1968:1 1973:1 1981:1 2164:1 2325:1 2434:1 2500:1 2507:2 2645:2 2745:1 2753:1 2802:1 3063:1 3090:1 3234:1 3237:1 3678:1 3801:1 4107:3 4192:1 4234:1 4323:1 4384:1 4394:1 4409:2 4450:2 4498:2 4633:1 4654:1 4872:1 4958:1 5075:1 5187:2 5322:1 5337:1 5347:1 5592:1 5609:1 5674:1 5874:1 5970:1 6084:1 6183:1 6429:6 6449:1 6451:2 6460:1 6497:1 6619:1 6655:1 6669:1 6789:1 6859:2 6926:1 7038:1 7068:1 7177:1 7325:1 7400:1 7443:1 7451:1 7461:1 7526:1 7573:1 7581:1 7604:1 7615:1 7787:1 7790:1 7805:1 7810:1 7988:1 8070:1 8222:1 8392:1 8532:1 8700:1 8778:2 8814:1 8828:1 8914:1 8916:1 9001:1 9102:1 9202:1 9215:1 9222:1 9252:1 9282:1 9317:1 9359:1 9488:4 9563:2 9621:1 9682:1 9695:1 9710:1 9723:2 9822:1 9904:1 9918:2 9974:2 9989:1 10079:1 10089:1 10151:1 10225:1 10513:1 10754:1 10851:2 10874:1 10901:1 11163:1 11301:1 11376:1 11447:1 11614:1 11777:1 11833:1 11990:2 12035:1 12045:1 12060:1 12105:1 12383:1 12437:1 12582:2 12584:1 12778:1 12950:1 13069:1 13259:1 13295:1 13363:1 13378:1 13405:1 13410:1 13437:1 13444:1 13746:1 13758:1 13819:1 13835:1 13837:1 13846:1 13979:1 14035:1 14077:1 14094:1 14223:1 14398:1 14403:1 14516:1 14539:2 14677:1 14719:1 14768:1 14844:1 14864:1 14929:1 14981:1 15070:1 15129:1 15142:1 15205:1 15307:2 15480:140 15496:2 15583:2 15723:1 15929:1 15990:1 16042:1 16159:1 16380:1 16387:1 16432:1 16548:1 16650:1 16717:1 16724:1 16733:1 16735:2 16753:1 16782:1 16815:2 16945:1 17014:1 17043:1 17058:1 17109:1 17188:1 17275:1 17311:1 17329:1 17362:1 17491:2 17558:1 17706:1 17747:1 17812:1 17813:1 17835:1 17851:1 17916:1 17943:1 17965:1 18037:1 18093:1 18296:1 18511:1 18567:1 18727:2 18739:1 18807:1 18877:1 18893:1 18894:1 18941:1 18946:1 18976:1 18990:1 19193:1 19438:2 19470:1 19480:1 19493:1 19523:1 19562:1 19832:1 20013:1 20051:1 20063:1 20076:1 20084:1 20268:1 20270:1 20274:1 20318:1 20332:1 20343:1 20378:2 20441:1 20447:1 20469:2 20659:1 20742:1 20785:1 20970:1 21512:1 21561:1 21632:1 21703:1 21760:2 21831:1 21923:1 22027:1 22080:1 22193:1 22693:1 22740:1 22831:1 22846:1 22894:1 23089:1 23248:2 23305:2 23385:1 23430:1 23558:2 23610:1 23740:1 23758:1 23797:1 23966:1 24153:1 24409:1 24469:1 24535:1
20 25:1 37:1 76:1 216:1 240:1 296:1 339:1 407:1 489:1 568:1 814:1 833:1 834:1 888:1 889:1 960:1 967:1 989:1 1094:1 1108:1 1158:1 1208:1 1241:1 1274:2 1293:1 1301:1 1332:2 1343:1 1436:1 1507:1 1510:1 1619:1 1629:1 1641:1 1663:1 1731:2 1766:2 1775:1 1889:1 1891:1 1912:1 1945:2 1961:1 1963:1 1968:1 1973:1 1981:1 2164:1 2272:1 2325:1 2434:1 2461:1 2480:1 2500:1 2507:3 2597:2 2645:2 2745:1 2753:1 2764:1 2802:2 3002:1 3059:1 3063:1 3090:1 3234:1 3237:1 3328:1 3369:1 3678:1 3737:1 3801:1 3878:1 3902:1 4046:1 4047:1 4107:4 4192:1 4234:1 4323:1 4384:1 4394:1 4409:2 4450:2 4498:2 4561:1 4621:2 4633:1 4654:1 4673:1 4703:1 4854:1 4872:1 4958:1 5075:1 5187:2 5205:1 5322:1 5337:1 5347:1 5352:1 5396:1 5592:1 5609:1 5665:1 5674:1 5807:1 5808:1 5823:1 5837:1 5874:1 5947:1 5970:1 6035:1 6084:1 6116:1 6183:2 6237:1 6269:1 6365:1 6382:1 6429:7 6449:1 6451:3 6460:1 6497:1 6619:1 6655:1 6669:2 6677:1 6789:1 6859:2 6926:1 7038:1 7068:2 7170:2 7172:1 7177:1 7325:1 7400:1 7443:1 7451:1 7461:1 7526:1 7573:1 7581:1 7604:1 7615:1 7787:1 7790:1 7805:1 7810:1 7988:1 8070:1 8162:1 8189:1 8222:1 8285:1 8382:1 8392:1 8532:1 8684:1 8700:1 8769:1 8778:2 8789:1 8802:1 8814:1 8828:1 8841:1 8914:2 8916:1 9001:1 9101:2 9102:1 9193:1 9202:1 9215:1 9222:1 9252:1 9282:1 9317:1 9359:1 9488:4 9563:2 9621:1 9682:1 9695:1 9710:1 9716:1 9723:2 9763:1 9822:1 9823:2 9881:1 9904:1 9918:2 9949:1 9974:2 9989:1 10079:1 10089:1 10151:1 10225:1 10281:1 10513:1 10550:1 10621:1 10754:1 10787:1 10836:1 10851:2 10874:1 10901:1 10942:1 10985:1 11046:1 11065:1 11159:1 11163:1 11301:1 11376:1 11407:1 11432:2 11447:1 11614:1 11697:1 11777:1 11825:1 11833:1 11990:2 12006:1 12035:1 12045:1 12060:1 12105:1 12263:1 12303:1 12383:1 12437:2 12582:2 12583:1 12584:1 12741:2 12778:1 12950:1 12988:1 13069:1 13094:1 13207:1 13225:1 13259:1 13270:1 13295:1 13363:1 13378:1 13405:1 13410:1 13430:1 13437:1 13444:1 13482:1 13746:1 13758:1 13819:1 13835:2 13837:1 13846:1 13979:1 14008:1 14035:1 14077:1 14094:1 14122:1 14207:1 14223:1 14398:1 14403:1 14516:1 14539:2 14677:1 14719:1 14762:2 14768:1 14844:1 14856:1 14864:1 14929:1 14975:1 14981:1 15070:1 15129:1 15142:1 15205:1 15307:2 15370:1 15480:273 15496:2 15575:1 15583:2 15723:1 15883:1 15929:1 15990:1 16042:2 16054:1 16159:1 16239:1 16380:1 16387:2 16432:1 16485:1 16495:1 16548:1 16650:1 16717:1 16724:1 16733:1 16735:2 16750:1 16753:1 16782:1 16815:3 16945:1 17014:1 17043:1 17058:1 17109:1 17188:1 17223:1 17275:1 17311:1 17329:1 17362:1 17491:2 17510:1 17550:1 17558:1 17564:1 17706:1 17747:1 17812:1 17813:1 17835:1 17851:1 17916:1 17943:1 17965:1 17993:1 18037:1 18093:1 18131:1 18296:1 18378:1 18491:1 18511:1 18567:1 18693:1 18727:2 18739:1 18807:1 18874:1 18877:1 18893:1 18894:1 18925:1 18941:2 18946:1 18949:1 18976:1 18990:1 19096:1 19193:1 19218:1 19438:2 19470:1 19480:1 19493:1 19523:1 19562:1 19637:1 19832:1 20013:1 20051:1 20055:1 20063:1 20068:1 20076:1 20084:2 20268:1 20270:1 20274:1 20318:1 20332:1 20343:1 20378:2 20441:1 20447:1 20469:2 20480:1 20485:1 20651:1 20659:1 20686:1 20742:1 20762:1 20785:1 20786:1 20928:1 20962:1 20970:1 21134:1 21512:1 21559:1 21561:1 21586:1 21632:1 21663:1 21703:1 21760:2 21773:1 21831:1 21869:1 21923:1 21998:1 22027:1 22080:1 22193:1 22548:1 22593:1 22611:2 22693:1 22740:1 22831:1 22846:1 22894:1 23089:1 23248:2 23305:2 23385:1 23430:4 23466:1 23558:2 23586:1 23610:1 23645:1 23719:1 23740:1 23758:1 23796:1 23797:1 23966:1 23971:2 24153:1 24409:1 24455:1 24469:1 24504:1 24525:1 24535:1
20 25:1 37:1 76:1 216:1 240:1 296:1 339:1 407:1 489:1 510:1 568:1 814:2 833:1 834:1 888:1 889:1 960:1 967:1 989:1 1015:1 1094:1 1108:1 1158:1 1208:1 1241:1 1274:2 1293:1 1301:1 1311:2 1332:3 1343:1 1381:2 1436:1 1507:1 1510:1 1619:2 1629:1 1641:1 1644:1 1663:1 1731:2 1766:2 1775:1 1826:1 1877:1 1889:1 1891:1 1912:1 1945:2 1961:1 1963:1 1968:2 1973:1 1976:1 1981:1 2055:1 2115:1 2164:1 2188:1 2272:1 2282:1 2308:1 2325:1 2434:1 2451:1 2461:1 2462:1 2480:1 2500:1 2507:3 2597:2 2645:2 2745:1 2753:1 2764:1 2802:2 3002:1 3059:1 3063:1 3090:1 3234:1 3237:1 3328:1 3367:1 3369:1 3678:1 3681:1 3737:1 3801:1 3878:1 3902:1 4003:1 4046:1 4047:1 4107:4 4192:1 4211:1 4234:1 4323:1 4384:1 4394:1 4409:2 4450:2 4498:2 4561:1 4621:2 4633:1 4654:1 4662:1 4673:1 4703:1 4854:1 4872:1 4958:1 5075:1 5187:2 5205:1 5322:1 5337:1 5347:1 5352:1 5396:1 5592:1 5609:1 5665:1 5674:1 5689:1 5807:1 5808:1 5823:1 5837:1 5874:1 5947:1 5970:1 6035:1 6039:1 6040:1 6084:1 6116:1 6183:2 6237:1 6269:1 6365:2 6382:1 6429:9 6449:2 6451:3 6460:1 6497:1 6619:1 6655:1 6669:2 6677:1 6680:1 6789:1 6810:2 6859:4 6908:1 6926:1 7038:2 7068:2 7170:2 7172:1 7177:1 7325:1 7384:1 7400:1 7443:1 7451:1 7461:1 7526:1 7573:2 7581:1 7594:1 7604:1 7615:1 7787:1 7790:1 7805:1 7810:1 7964:1 7988:1 8070:1 8162:1 8189:1 8222:1 8285:1 8382:1 8392:1 8532:1 8684:1 8700:1 8769:1 8778:2 8789:1 8802:1 8814:1 8828:1 8841:1 8891:1 8910:1 8914:2 8916:1 8975:1 9001:1 9101:2 9102:1 9193:1 9202:1 9215:1 9222:1 9252:1 9282:1 9317:1 9359:1 9488:4 9563:2 9621:1 9668:1 9682:1 9695:1 9710:1 9716:1 9723:2 9763:1 9822:1 9823:4 9881:1 9904:1 9918:2 9949:1 9974:2 9989:1 10079:1 10089:1 10151:1 10225:1 10281:2 10480:1 10513:1 10550:2 10621:1 10754:1 10787:1 10836:1 10851:2 10871:2 10874:1 10901:1 10942:1 10970:1 10985:2 11046:1 11065:1 11159:1 11163:1 11280:1 11301:1 11368:1 11375:1 11376:1 11407:1 11432:2 11447:1 11509:1 11614:1 11657:1 11697:1 11704:1 11777:1 11825:1 11833:1 11855:1 11990:2 12006:1 12035:1 12045:1 12050:1 12060:1 12105:1 12173:1 12263:2 12303:1 12383:1 12437:2 12582:2 12583:1 12584:1 12630:1 12741:3 12770:1 12778:1 12950:1 12988:1 12995:1 13031:1 13069:1 13094:1 13207:1 13225:1 13259:1 13270:1 13295:1 13363:1 13378:1 13405:1 13410:1 13430:1 13431:1 13437:1 13444:1 13459:1 13482:1 13637:1 13670:1 13719:1 13746:1 13758:1 13819:1 13835:2 13837:1 13846:1 13928:2 13979:1 14008:1 14035:1 14077:1 14094:1 14122:1 14207:1 14223:1 14398:1 14403:1 14516:1 14539:2 14570:1 14677:1 14719:1 14762:2 14768:1 14844:1 14856:1 14864:1 14903:1 14929:1 14975:1 14981:1 15070:1 15129:1 15142:1 15205:1 15307:2 15312:1 15370:1 15480:352 15482:1 15496:2 15575:1 15583:2 15655:1 15723:1 15834:1 15883:1 15929:1 15949:1 15990:1 16019:1 16042:2 16054:1 16117:1 16159:1 16206:1 16239:1 16380:1 16387:2 16416:1 16432:1 16443:1 16485:1 16495:1 16548:1 16650:1 16717:1 16724:1 16733:1 16735:2 16750:1 16753:2 16782:1 16815:3 16945:1 16981:1 17014:1 17043:1 17058:1 17109:1 17144:1 17188:1 17223:1 17275:1 17311:1 17329:1 17362:1 17485:1 17491:2 17510:1 17550:1 17558:1 17562:1 17564:1 17706:1 17738:1 17747:1 17812:1 17813:1 17835:1 17851:1 17916:1 17929:1 17943:1 17965:1 17993:1 18037:1 18093:1 18131:1 18186:1 18197:1 18296:1 18378:1 18491:1 18511:1 18565:1 18567:1 18693:1 18727:2 18739:1 18776:1 18807:1 18874:1 18877:1 18893:1 18894:1 18925:1 18941:2 18946:1 18949:1 18965:1 18976:1 18990:1 19096:1 19156:1 19193:1 19218:1 19438:2 19470:1 19480:1 19493:1 19523:1 19532:1 19562:1 19615:1 19637:1 19832:1 19902:1 20013:1 20051:1 20055:1 20063:1 20068:1 20076:1 20083:1 20084:3 20102:1 20139:1 20268:1 20270:1 20274:1 20318:1 20327:1 20332:1 20343:1 20360:1 20366:1 20378:2 20441:1 20447:1 20469:2 20480:1 20485:1 20651:1 20659:1 20686:1 20742:1 20751:1 20762:1 20785:1 20786:1 20847:1 20928:1 20962:1 20970:1 21134:1 21512:1 21551:1 21559:1 21561:1 21586:1 21632:1 21637:1 21663:1 21703:1 21760:2 21773:1 21831:1 21869:1 21923:1 21998:1 22027:1 22065:1 22080:1 22193:1 22548:1 22593:1 22611:2 22693:1 22740:1 22755:1 22801:1 22831:1 22846:1 22894:1 22916:1 23089:1 23248:2 23305:2 23385:1 23405:1 23430:4 23466:1 23558:2 23586:2 23610:1 23645:1 23719:1 23740:1 23758:1 23796:1 23797:1 23966:1 23971:3 24153:1 24162:1 24225:1 24393:1 24409:1 24418:1 24455:1 24469:1 24504:1 24525:1 24535:1
20 25:1 37:1 76:1 216:1 218:1 240:1 296:1 339:1 407:1 489:1 510:1 568:1 814:2 833:1 834:1 888:1 889:1 960:1 967:1 989:1 1015:1 1094:1 1108:1 1158:1 1208:1 1241:1 1274:2 1293:1 1301:1 1311:2 1332:3 1343:1 1381:3 1436:1 1506:1 1507:2 1510:1 1619:2 1629:1 1641:1 1644:1 1663:1 1731:3 1766:2 1775:1 1826:1 1877:2 1889:1 1891:1 1912:1 1945:3 1961:1 1963:1 1968:2 1973:1 1976:1 1981:1 2055:1 2115:1 2164:1 2188:1 2272:1 2282:1 2308:1 2325:1 2434:1 2451:1 2461:1 2462:2 2480:1 2500:1 2507:3 2597:2 2645:2 2745:1 2753:1 2764:1 2802:2 3002:1 3059:1 3063:1 3090:1 3234:1 3237:1 3328:1 3367:1 3369:1 3678:1 3681:1 3737:1 3801:1 3878:1 3902:1 4003:1 4046:1 4047:1 4107:4 4192:1 4211:2 4234:1 4323:1 4384:1 4394:1 4409:2 4450:2 4498:2 4561:1 4621:2 4633:1 4654:1 4662:1 4673:1 4703:1 4854:1 4872:1 4958:1 5075:1 5187:2 5205:1 5263:1 5322:1 5337:1 5347:1 5352:1 5396:1 5592:1 5609:1 5616:1 5665:1 5672:1 5674:1 5689:1 5807:1 5808:1 5823:1 5837:1 5874:1 5947:2 5959:1 5970:1 6035:1 6039:1 6040:1 6084:1 6116:1 6183:2 6237:1 6269:1 6365:2 6382:1 6429:10 6449:2 6451:3 6460:1 6497:1 6619:1 6655:1 6669:2 6677:1 6680:1 6789:1 6810:3 6859:4 6908:1 6926:1 7038:2 7068:2 7170:2 7172:1 7177:1 7325:1 7384:1 7400:1 7443:1 7451:1 7461:1 7526:1 7573:2 7581:3 7594:1 7604:1 7615:1 7686:1 7787:1 7790:1 7805:1 7810:1 7964:1 7988:1 8070:3 8162:1 8189:1 8222:1 8285:1 8382:1 8392:1 8532:1 8684:1 8700:1 8736:1 8769:1 8778:2 8789:1 8802:1 8807:1 8814:1 8822:1 8828:1 8841:1 8891:1 8910:1 8914:2 8916:1 8975:1 8981:1 9001:1 9101:2 9102:1 9193:1 9202:1 9215:1 9222:1 9252:3 9282:1 9317:1 9359:1 9488:4 9563:2 9621:1 9668:1 9682:1 9695:1 9710:1 9716:1 9723:2 9763:1 9822:1 9823:5 9881:1 9904:1 9918:2 9949:1 9974:2 9989:1 10079:1 10089:1 10151:1 10225:1 10281:2 10480:2 10513:1 10550:3 10621:1 10754:1 10787:1 10836:1 10851:2 10871:3 10874:1 10901:1 10942:1 10970:2 10985:3 11046:1 11065:1 11159:1 11163:1 11280:1 11301:1 11368:2 11375:1 11376:1 11407:1 11432:2 11447:1 11509:1 11614:1 11657:1 11697:1 11704:1 11777:1 11825:1 11833:1 11855:1 11990:2 12006:1 12035:1 12045:1 12050:1 12060:1 12105:1 12173:1 12263:2 12303:1 12383:1 12437:2 12582:2 12583:1 12584:1 12630:1 12741:4 12770:1 12778:1 12950:1 12961:1 12988:1 12995:1 13031:1 13069:1 13094:1 13207:1 13225:1 13259:1 13270:1 13295:1 13363:1 13378:1 13405:1 13410:1 13430:1 13431:1 13437:1 13444:1 13459:1 13482:1 13637:1 13670:1 13719:1 13746:1 13758:1 13819:1 13835:2 13837:1 13846:1 13928:3 13979:1 14008:1 14035:1 14077:1 14094:1 14122:1 14125:1 14207:1 14223:1 14240:1 14398:1 14403:1 14516:1 14539:2 14570:1 14677:3 14719:1 14762:2 14768:1 14844:2 14856:1 14864:1 14903:2 14929:1 14975:1 14981:1 15070:1 15129:1 15142:1 15205:1 15307:2 15312:1 15370:1 15480:367 15482:1 15496:2 15575:1 15583:2 15646:1 15655:1 15658:1 15723:1 15834:1 15883:1 15929:1 15949:1 15990:1 16019:1 16042:2 16054:1 16117:1 16159:1 16177:1 16206:2 16239:1 16380:1 16387:2 16416:1 16432:1 16443:1 16485:1 16495:1 16548:1 16650:1 16661:1 16717:1 16724:1 16733:1 16735:2 16750:1 16753:2 16782:1 16815:3 16945:1 16981:1 17014:1 17043:1 17058:1 17109:1 17144:1 17188:1 17223:1 17275:1 17311:1 17329:1 17362:1 17380:1 17437:1 17485:2 17491:2 17510:1 17550:1 17558:1 17562:1 17564:1 17706:1 17738:1 17747:1 17812:1 17813:1 17835:1 17851:1 17916:1 17929:1 17943:1 17965:1 17993:1 18037:1 18093:1 18131:1 18186:1 18197:2 18296:1 18378:1 18479:1 18491:1 18511:1 18565:1 18567:1 18641:1 18693:1 18727:2 18739:1 18776:1 18807:1 18874:1 18877:1 18893:1 18894:1 18925:1 18941:2 18946:1 18949:1 18965:1 18976:1 18990:1 19096:1 19156:1 19193:1 19218:1 19425:1 19438:2 19470:1 19480:1 19493:1 19523:1 19532:1 19562:1 19615:1 19637:1 19832:1 19902:2 20013:1 20051:1 20055:1 20063:1 20068:1 20076:1 20083:1 20084:3 20102:1 20139:1 20268:1 20270:1 20274:1 20276:1 20318:1 20327:1 20332:1 20343:1 20360:1 20366:1 20378:2 20441:1 20447:1 20469:2 20480:1 20485:1 20651:1 20659:1 20686:1 20742:3 20751:1 20762:1 20785:1 20786:1 20847:1 20928:1 20962:1 20970:2 21134:1 21512:1 21551:1 21559:1 21561:1 21586:1 21612:1 21632:1 21637:1 21663:1 21697:1 21703:1 21760:2 21773:1 21787:1 21831:1 21869:1 21923:1 21998:1 22027:1 22065:1 22080:1 22193:1 22548:1 22593:1 22611:2 22693:1 22740:1 22755:1 22801:1 22815:1 22831:1 22846:1 22894:1 22916:1 23089:3 23248:2 23305:2 23385:1 23405:1 23430:4 23431:1 23466:1 23558:2 23586:2 23610:1 23645:1 23719:1 23740:1 23758:1 23796:1 23797:1 23966:1 23971:4 24153:1 24162:1 24225:1 24393:1 24409:1 24418:1 24455:1 24469:1 24473:1 24504:1 24525:1 24535:1
20 25:1 37:1 76:1 216:1 218:1 240:1 296:1 339:1 407:1 441:1 489:1 510:1 568:1 805:1 814:2 833:1 834:1 888:1 889:1 960:1 967:1 989:1 1015:1 1094:1 1108:1 1158:1 1208:1 1241:1 1274:2 1293:1 1301:1 1311:2 1332:3 1343:1 1381:3 1436:1 1476:1 1506:1 1507:3 1510:1 1619:2 1629:1 1641:1 1644:1 1663:1 1731:3 1763:1 1766:2 1775:1 1826:1 1875:1 1877:2 1889:1 1891:1 1912:1 1945:3 1961:1 1963:1 1968:2 1973:1 1976:1 1981:1 2038:1 2055:1 2115:1 2164:1 2188:1 2272:1 2282:1 2308:1 2325:1 2434:1 2451:1 2461:1 2462:2 2480:1 2500:1 2507:4 2597:2 2645:2 2745:1 2753:1 2764:1 2802:2 3002:1 3059:1 3063:1 3090:1 3131:1 3183:1 3221:1 3234:1 3237:1 3328:1 3367:1 3369:1 3678:1 3681:1 3737:1 3801:1 3878:1 3902:1 4003:1 4046:1 4047:1 4107:4 4192:1 4211:2 4234:1 4323:1 4384:1 4394:1 4409:2 4450:2 4498:2 4561:1 4621:2 4633:1 4654:1 4662:1 4673:1 4703:1 4854:1 4872:1 4958:1 5075:1 5187:2 5192:1 5205:1 5263:1 5322:1 5337:1 5347:1 5352:1 5396:1 5592:1 5609:1 5616:1 5665:1 5672:1 5674:1 5689:1 5807:1 5808:1 5823:1 5837:1 5874:1 5947:2 5959:1 5970:1 6035:1 6039:1 6040:1 6084:1 6116:1 6183:2 6237:1 6269:1 6365:2 6382:1 6429:10 6449:2 6451:4 6460:1 6497:1 6619:1 6655:1 6669:2 6677:1 6680:1 6789:1 6810:3 6859:4 6908:1 6926:1 7038:2 7068:2 7170:2 7172:1 7177:1 7325:1 7384:1 7400:1 7443:1 7451:1 7461:1 7526:1 7573:2 7581:4 7594:1 7604:1 7615:1 7686:1 7787:1 7790:1 7805:1 7810:1 7964:1 7988:1 8070:4 8162:1 8189:1 8222:1 8285:1 8348:1 8382:1 8392:1 8532:1 8684:1 8700:1 8736:1 8769:1 8778:2 8789:1 8802:1 8807:1 8814:1 8822:1 8828:1 8841:1 8891:1 8910:1 8914:2 8916:1 8975:1 8981:1 9001:1 9101:2 9102:1 9193:1 9202:1 9215:1 9222:1 9252:4 9282:1 9317:1 9346:1 9359:1 9488:4 9563:2 9621:1 9668:1 9682:1 9695:1 9710:1 9716:1 9723:2 9763:1 9822:1 9823:5 9881:1 9904:1 9918:2 9949:1 9974:2 9989:1 10079:1 10089:1 10151:1 10225:1 10281:2 10480:2 10513:1 10550:3 10621:1 10754:1 10787:1 10836:1 10851:2 10871:3 10874:1 10901:1 10942:1 10970:2 10985:3 11046:1 11065:1 11159:1 11163:1 11280:1 11301:1 11368:2 11375:1 11376:1 11407:1 11432:2 11447:1 11509:1 11614:1 11657:1 11697:1 11704:1 11777:1 11825:1 11833:1 11855:1 11990:2 12006:1 12035:1 12045:1 12050:1 12060:1 12105:1 12173:1 12263:2 12303:1 12341:1 12383:1 12437:2 12582:2 12583:1 12584:1 12630:1 12689:1 12741:5 12770:1 12778:1 12950:1 12961:1 12988:1 12995:1 13031:1 13069:1 13094:1 13207:1 13225:1 13259:1 13270:1 13295:1 13328:1 13363:1 13378:1 13405:1 13410:1 13430:1 13431:1 13437:1 13444:1 13459:1 13482:1 13637:1 13670:1 13719:1 13746:1 13758:1 13819:1 13835:2 13837:2 13846:1 13925:1 13928:3 13979:1 14008:1 14035:1 14077:1 14094:1 14122:1 14125:1 14207:1 14223:1 14240:1 14398:1 14403:1 14516:1 14539:2 14570:1 14677:4 14719:1 14762:2 14768:1 14844:2 14856:1 14864:1 14903:2 14929:1 14975:1 14981:1 15070:1 15129:1 15142:1 15205:1 15307:2 15312:1 15370:1 15480:461 15482:1 15496:2 15575:1 15583:2 15646:1 15655:1 15658:1 15723:1 15834:1 15883:1 15898:1 15929:1 15949:1 15990:1 16019:1 16042:2 16054:1 16117:1 16159:1 16177:1 16206:2 16239:1 16380:1 16387:2 16416:1 16432:2 16443:1 16479:1 16485:1 16495:1 16538:1 16548:1 16650:1 16661:1 16717:1 16724:1 16733:1 16735:2 16750:1 16753:2 16782:1 16815:4 16945:1 16981:1 17014:1 17043:1 17058:1 17109:1 17144:1 17188:1 17223:1 17275:1 17311:2 17329:1 17362:1 17380:1 17437:1 17452:1 17485:2 17491:2 17510:1 17550:1 17558:1 17562:1 17564:1 17706:1 17738:1 17747:1 17812:1 17813:1 17835:1 17851:1 17916:1 17929:1 17943:1 17965:1 17993:1 18037:1 18093:1 18131:1 18186:1 18197:2 18296:1 18360:1 18378:1 18479:1 18491:1 18511:1 18565:1 18567:1 18641:1 18693:1 18727:2 18739:1 18776:1 18807:1 18874:1 18877:1 18893:1 18894:1 18925:1 18941:2 18946:1 18949:1 18965:1 18975:1 18976:1 18990:1 19096:1 19145:1 19156:1 19193:1 19201:1 19213:1 19218:1 19233:1 19425:1 19438:2 19470:1 19480:1 19493:1 19523:1 19532:1 19559:1 19562:1 19615:1 19637:1 19832:1 19902:2 20013:1 20051:1 20055:1 20063:1 20068:1 20076:1 20083:1 20084:3 20102:1 20139:1 20268:1 20270:1 20274:1 20276:1 20318:1 20327:1 20332:1 20343:1 20360:1 20366:1 20378:2 20412:1 20441:1 20447:1 20469:2 20480:1 20485:1 20651:1 20659:1 20686:1 20742:4 20751:1 20762:1 20785:1 20786:1 20847:1 20928:1 20962:1 20970:2 21134:1 21205:1 21208:1 21512:1 21551:1 21559:1 21561:1 21576:1 21586:1 21612:1 21632:1 21637:1 21663:1 21697:1 21703:1 21760:2 21773:1 21787:1 21831:1 21869:1 21923:1 21998:1 22027:1 22065:1 22080:1 22193:1 22548:1 22593:1 22611:2 22669:1 22693:1 22740:1 22755:1 22801:1 22815:1 22831:1 22846:1 22894:1 22916:1 23039:1 23088:1 23089:4 23248:2 23305:2 23385:1 23405:1 23430:4 23431:1 23466:1 23558:2 23586:2 23610:1 23645:1 23719:1 23740:1 23758:1 23796:1 23797:1 23966:1 23971:4 24000:1 24153:1 24162:1 24225:1 24393:1 24409:1 24418:1 24455:1 24469:1 24473:1 24504:1 24525:1 24535:1
20 25:1 37:1 76:1 105:1 216:1 218:1 240:1 296:1 339:1 407:1 441:1 489:1 510:1 568:1 805:1 814:2 828:1 833:1 834:1 857:1 888:1 889:1 960:1 967:1 989:1 1015:1 1044:1 1094:1 1108:1 1158:1 1208:1 1241:1 1274:2 1293:1 1301:1 1311:2 1332:3 1343:1 1381:4 1436:1 1476:1 1506:1 1507:3 1510:1 1619:2 1629:1 1641:1 1644:1 1663:1 1731:3 1763:1 1766:2 1775:1 1826:1 1856:1 1875:1 1877:3 1889:1 1891:1 1912:1 1945:3 1961:1 1963:1 1968:2 1973:1 1976:1 1981:1 2034:1 2038:1 2055:1 2115:1 2164:1 2188:1 2222:1 2272:1 2282:1 2308:1 2325:1 2434:1 2451:1 2461:1 2462:3 2464:1 2480:1 2500:1 2507:4 2597:2 2645:2 2745:1 2753:1 2764:1 2802:2 2807:1 3002:1 3059:1 3063:1 3090:1 3131:1 3183:1 3221:1 3234:1 3237:1 3328:1 3367:1 3369:1 3442:1 3678:1 3681:1 3737:1 3770:1 3801:1 3878:1 3902:1 3939:1 3992:1 4003:1 4046:1 4047:1 4107:4 4192:1 4198:1 4211:2 4234:1 4319:1 4323:1 4384:1 4394:1 4409:2 4450:2 4498:2 4546:1 4561:1 4621:2 4633:1 4654:1 4662:1 4673:1 4681:1 4703:1 4768:1 4823:1 4854:1 4872:1 4958:1 4959:1 5075:1 5100:1 5127:1 5187:2 5192:1 5205:1 5263:1 5322:2 5337:1 5347:1 5352:1 5396:1 5592:1 5609:1 5616:1 5665:1 5672:1 5674:1 5689:1 5807:1 5808:1 5823:1 5837:1 5874:1 5947:2 5959:1 5970:1 6035:1 6039:1 6040:1 6084:1 6116:1 6147:1 6183:2 6201:1 6237:1 6269:1 6324:1 6365:3 6382:1 6429:10 6449:2 6451:4 6460:1 6497:1 6619:1 6655:1 6669:2 6677:1 6680:1 6700:1 6789:1 6810:4 6859:5 6908:1 6926:1 7038:2 7068:2 7084:1 7170:2 7172:1 7177:1 7305:1 7325:1 7384:1 7400:1 7409:1 7443:1 7451:1 7461:1 7526:1 7573:2 7581:4 7594:1 7604:1 7615:1 7686:1 7787:1 7790:1 7805:1 7810:1 7944:1 7964:1 7988:1 8070:4 8080:1 8118:1 8162:1 8189:1 8222:1 8226:1 8285:1 8304:1 8348:1 8382:1 8392:1 8532:1 8684:1 8700:1 8736:1 8769:1 8778:2 8789:1 8802:1 8807:1 8814:1 8822:1 8828:1 8841:1 8891:1 8910:1 8914:2 8916:1 8975:1 8981:1 9001:1 9080:1 9101:2 9102:1 9193:1 9202:1 9215:1 9222:1 9252:4 9282:1 9317:1 9346:1 9359:1 9488:4 9563:2 9621:1 9668:1 9682:1 9695:1 9710:1 9716:1 9723:2 9763:1 9822:1 9823:6 9881:1 9904:1 9918:2 9949:1 9974:2 9989:1 10079:1 10089:1 10105:1 10151:1 10225:1 10281:2 10480:3 10513:1 10550:4 10598:1 10621:1 10754:1 10787:1 10836:1 10851:2 10871:4 10874:1 10901:1 10942:1 10970:3 10985:5 11046:1 11065:1 11159:1 11163:1 11280:1 11301:1 11340:1 11368:4 11375:1 11376:1 11407:1 11432:2 11447:1 11509:1 11531:1 11614:1 11657:1 11697:1 11704:1 11777:1 11825:1 11833:1 11855:1 11861:2 11990:2 12006:1 12035:1 12045:1 12050:1 12060:1 12089:1 12099:1 12105:1 12173:1 12263:2 12303:1 12341:1 12383:1 12437:2 12550:2 12582:2 12583:1 12584:1 12630:1 12689:1 12739:1 12741:6 12770:1 12778:1 12828:1 12950:1 12961:1 12988:1 12995:1 13031:1 13069:1 13094:1 13207:1 13225:1 13259:1 13270:1 13295:1 13328:1 13363:1 13378:1 13390:1 13405:1 13410:1 13430:1 13431:2 13437:1 13444:1 13459:1 13482:1 13637:1 13670:1 13719:1 13746:1 13758:1 13767:1 13819:1 13835:2 13837:2 13846:1 13876:1 13925:1 13928:4 13979:1 14008:1 14035:1 14046:1 14077:1 14094:1 14114:1 14122:1 14125:1 14178:1 14207:1 14223:1 14240:1 14398:1 14403:1 14516:1 14539:2 14570:1 14677:4 14719:1 14740:1 14762:2 14768:1 14844:2 14856:1 14864:1 14885:1 14903:3 14929:1 14975:1 14981:1 15070:1 15129:1 15142:1 15205:1 15282:1 15307:2 15312:2 15370:1 15480:532 15482:1 15496:2 15564:1 15575:1 15583:2 15646:1 15655:1 15658:1 15663:1 15723:1 15834:1 15883:1 15898:1 15929:1 15936:1 15949:1 15990:1 16009:1 16019:1 16042:2 16054:1 16117:1 16159:1 16170:1 16177:1 16206:3 16239:1 16362:1 16380:1 16387:2 16416:1 16432:2 16443:1 16479:1 16485:1 16495:1 16538:1 16548:1 16650:1 16661:1 16669:1 16717:1 16724:1 16733:1 16735:2 16750:1 16753:2 16782:1 16815:4 16945:1 16981:1 17014:1 17043:1 17058:1 17109:1 17144:1 17188:1 17223:1 17275:1 17305:1 17311:2 17329:1 17362:1 17380:1 17437:1 17452:1 17485:4 17491:2 17510:1 17550:1 17558:1 17562:1 17564:1 17610:1 17706:1 17738:1 17747:1 17812:1 17813:1 17835:1 17851:1 17916:1 17929:1 17943:1 17965:1 17993:1 17996:1 18037:1 18093:1 18131:1 18186:1 18197:2 18296:1 18360:1 18366:1 18378:1 18479:1 18491:1 18498:1 18511:1 18537:1 18565:1 18567:1 18641:1 18693:1 18727:2 18739:1 18776:1 18807:1 18874:1 18877:1 18893:1 18894:1 18925:1 18941:2 18946:1 18949:1 18965:1 18975:2 18976:1 18990:1 19096:1 19145:1 19156:1 19193:1 19201:1 19213:1 19218:1 19233:1 19406:1 19425:1 19438:2 19470:1 19480:1 19493:1 19523:1 19532:1 19559:1 19562:1 19615:1 19637:1 19832:1 19902:3 20013:1 20051:1 20055:1 20063:1 20068:1 20076:1 20083:1 20084:3 20102:1 20139:1 20268:1 20270:1 20274:1 20276:1 20318:1 20327:1 20332:1 20343:1 20360:1 20366:1 20378:2 20412:1 20441:1 20447:1 20469:2 20480:1 20485:1 20490:1 20567:1 20651:1 20659:1 20686:1 20742:4 20751:1 20762:1 20785:1 20786:1 20847:1 20928:1 20962:1 20964:1 20970:2 21007:1 21134:1 21139:1 21205:1 21208:1 21512:1 21551:1 21559:1 21561:1 21576:1 21586:1 21612:1 21632:1 21637:1 21663:1 21671:1 21697:1 21703:1 21707:1 21760:2 21773:1 21787:1 21831:1 21869:1 21923:1 21998:1 22027:1 22058:1 22065:1 22080:1 22193:1 22247:1 22548:1 22593:1 22611:2 22669:1 22693:1 22740:2 22755:1 22801:1 22815:2 22831:1 22846:1 22894:1 22916:1 23039:1 23088:1 23089:4 23138:1 23248:2 23305:2 23385:1 23405:1 23430:4 23431:1 23466:1 23558:2 23586:3 23610:1 23645:1 23719:1 23740:1 23758:1 23796:1 23797:1 23853:1 23956:1 23966:1 23971:5 24000:1 24153:1 24162:1 24225:1 24384:1 24393:1 24409:1 24418:1 24455:1 24469:1 24473:1 24476:1 24504:1 24525:1 24535:1
20 25:1 37:1 76:1 105:1 112:1 216:1 218:1 240:1 296:1 339:1 407:1 441:1 489:1 510:1 568:1 805:1 814:2 828:1 833:1 834:1 857:1 888:1 889:1 952:1 960:1 967:1 989:1 1009:1 1015:1 1044:1 1094:1 1108:1 1158:1 1208:1 1241:1 1258:1 1274:3 1293:1 1301:1 1311:2 1332:3 1343:1 1381:5 1436:1 1476:1 1506:1 1507:4 1510:1 1568:1 1619:2 1629:1 1641:1 1644:1 1663:1 1703:1 1731:3 1763:1 1766:2 1775:1 1826:1 1846:1 1856:1 1875:1 1877:4 1879:1 1889:1 1891:1 1912:1 1942:1 1945:3 1961:1 1963:1 1968:2 1973:1 1976:1 1981:1 2034:1 2038:1 2055:1 2115:1 2164:1 2188:1 2222:1 2272:1 2282:1 2308:1 2321:1 2325:1 2383:1 2434:1 2451:1 2461:1 2462:3 2464:1 2480:1 2500:1 2507:4 2589:1 2597:2 2645:2 2745:1 2753:1 2764:1 2802:2 2807:1 2948:1 3002:1 3059:1 3063:1 3090:1 3131:1 3183:1 3221:1 3234:1 3237:1 3326:1 3328:1 3367:1 3369:1 3442:1 3678:1 3681:1 3737:1 3770:1 3801:1 3878:1 3902:1 3939:1 3992:1 4003:1 4046:1 4047:1 4091:1 4107:4 4192:1 4198:1 4211:2 4212:1 4234:1 4248:1 4319:1 4323:1 4351:1 4384:1 4394:1 4409:2 4412:1 4420:1 4450:2 4498:2 4546:1 4561:1 4621:2 4633:1 4654:1 4662:1 4673:1 4681:1 4703:1 4768:1 4823:1 4854:1 4872:1 4958:1 4959:1 5049:1 5075:1 5100:1 5127:1 5187:2 5192:1 5205:1 5263:1 5289:1 5308:1 5322:2 5337:1 5347:1 5349:1 5350:2 5352:1 5396:1 5451:1 5592:1 5609:1 5615:1 5616:1 5665:1 5672:1 5674:1 5689:1 5807:1 5808:1 5823:1 5837:1 5874:1 5947:2 5948:1 5959:1 5970:1 6021:1 6035:1 6039:1 6040:1 6084:1 6116:1 6147:1 6183:2 6201:1 6237:1 6269:1 6286:1 6324:1 6359:1 6365:3 6382:1 6429:11 6449:2 6451:4 6460:1 6497:1 6619:1 6655:1 6669:2 6677:1 6680:1 6700:1 6789:1 6810:5 6859:6 6908:1 6926:1 7020:1 7038:2 7068:2 7084:1 7170:2 7172:1 7177:1 7305:1 7325:1 7384:1 7400:1 7409:1 7443:1 7451:1 7461:1 7526:1 7573:2 7581:5 7594:1 7604:1 7615:1 7665:1 7686:1 7712:1 7731:1 7787:1 7790:1 7803:1 7805:1 7810:1 7912:1 7944:1 7964:1 7988:1 8070:5 8080:2 8118:1 8162:1 8177:1 8189:1 8222:1 8226:1 8285:1 8304:1 8348:1 8352:1 8382:1 8392:1 8532:1 8566:1 8684:1 8700:1 8736:1 8769:1 8778:2 8789:1 8802:1 8807:1 8814:1 8822:1 8828:1 8832:1 8841:1 8891:1 8910:1 8914:2 8916:1 8975:1 8981:1 9001:1 9080:1 9101:2 9102:1 9193:1 9202:1 9215:1 9222:1 9252:5 9282:1 9317:1 9346:1 9359:1 9442:1 9488:5 9563:2 9621:1 9668:1 9682:1 9695:1 9710:1 9716:1 9723:2 9730:1 9763:1 9778:1 9810:1 9822:1 9823:7 9881:1 9904:1 9918:2 9949:1 9974:2 9989:1 10037:1 10079:1 10089:1 10105:1 10151:1 10225:1 10281:2 10391:1 10480:3 10513:1 10531:1 10550:5 10598:1 10621:1 10725:1 10754:1 10787:1 10836:1 10851:2 10871:5 10874:1 10901:1 10942:1 10970:4 10985:6 11046:1 11065:1 11159:1 11163:1 11168:1 11280:1 11287:1 11301:1 11340:1 11368:5 11375:1 11376:1 11407:1 11432:2 11447:1 11459:1 11509:1 11531:1 11614:1 11657:1 11697:1 11704:1 11777:1 11808:1 11825:1 11833:1 11855:1 11861:2 11910:1 11927:1 11990:2 12006:1 12035:1 12045:1 12050:1 12060:1 12089:1 12099:1 12105:1 12173:1 12176:1 12229:1 12263:2 12303:1 12341:1 12372:1 12383:1 12387:1 12437:2 12550:2 12582:2 12583:1 12584:1 12630:1 12689:1 12739:1 12741:8 12770:1 12778:1 12828:1 12950:2 12961:1 12988:2 12995:1 13031:1 13069:1 13094:1 13207:1 13225:1 13259:1 13270:1 13295:1 13328:1 13363:1 13378:1 13390:1 13405:1 13410:1 13430:1 13431:2 13437:1 13444:1 13453:1 13459:1 13482:1 13637:1 13670:1 13719:1 13746:1 13758:1 13765:1 13767:1 13819:1 13835:2 13837:2 13846:1 13876:1 13925:2 13928:5 13979:1 13994:1 14008:1 14031:1 14035:1 14046:1 14077:1 14094:1 14101:1 14114:1 14122:1 14125:1 14178:1 14207:1 14223:1 14240:2 14398:1 14403:1 14516:1 14539:2 14570:1 14677:5 14719:1 14740:1 14762:2 14764:1 14768:1 14837:1 14844:3 14856:1 14864:1 14877:1 14885:1 14903:4 14929:1 14975:1 14981:1 15035:1 15070:1 15116:1 15129:1 15142:1 15147:1 15205:1 15282:2 15307:2 15312:2 15370:1 15389:1 15480:611 15482:1 15496:2 15564:1 15575:1 15583:2 15646:1 15655:1 15658:1 15663:1 15723:1 15834:1 15883:1 15898:1 15929:1 15936:1 15949:1 15990:1 16009:1 16019:1 16042:2 16054:1 16074:1 16117:1 16152:1 16159:1 16170:1 16177:1 16206:4 16239:1 16332:1 16362:1 16380:1 16387:2 16416:1 16432:2 16443:1 16479:1 16482:1 16485:1 16495:1 16538:1 16548:1 16650:1 16661:1 16669:1 16717:1 16718:1 16724:1 16733:1 16735:2 16750:1 16753:2 16782:1 16815:4 16945:1 16981:1 17014:1 17043:1 17050:1 17058:1 17109:1 17144:1 17163:1 17188:1 17221:1 17223:1 17275:1 17305:1 17311:2 17329:1 17362:1 17380:1 17437:2 17452:1 17485:5 17491:2 17510:1 17550:1 17558:1 17562:1 17564:1 17610:1 17706:2 17735:1 17738:1 17747:2 17806:1 17812:1 17813:1 17835:2 17851:1 17916:1 17929:1 17943:1 17965:1 17993:1 17996:1 18037:1 18043:1 18093:1 18130:1 18131:1 18186:1 18197:2 18204:1 18296:1 18360:1 18366:1 18378:1 18479:1 18491:1 18498:1 18511:1 18537:1 18565:1 18567:1 18573:1 18641:1 18686:1 18693:1 18727:2 18739:1 18776:1 18784:1 18803:1 18807:1 18874:1 18877:1 18893:1 18894:1 18900:1 18925:1 18930:1 18941:2 18946:1 18948:1 18949:1 18965:1 18975:2 18976:1 18985:1 18990:1 19096:1 19145:1 19156:1 19193:1 19201:1 19213:1 19218:1 19225:1 19229:1 19233:1 19365:1 19406:1 19425:2 19438:2 19470:1 19480:1 19493:1 19523:1 19532:1 19559:1 19562:1 19615:1 19637:1 19832:1 19902:4 20013:1 20051:1 20055:1 20063:1 20068:1 20076:1 20083:1 20084:3 20102:1 20109:1 20139:1 20266:1 20268:1 20270:1 20274:1 20276:1 20318:1 20327:1 20332:2 20343:1 20344:1 20360:1 20366:1 20378:3 20412:1 20441:1 20447:1 20469:2 20480:1 20485:1 20490:1 20567:1 20651:1 20659:1 20686:1 20742:5 20751:1 20762:1 20769:1 20785:1 20786:1 20847:1 20928:1 20958:1 20962:1 20964:1 20970:2 21007:1 21099:1 21134:1 21139:1 21205:1 21208:1 21319:1 21337:1 21361:1 21512:1 21551:1 21559:1 21561:1 21576:1 21586:1 21612:2 21632:1 21637:1 21663:1 21671:1 21697:2 21703:1 21707:1 21760:2 21773:2 21787:1 21831:1 21857:1 21869:1 21923:1 21998:1 22027:1 22043:1 22058:1 22065:1 22080:1 22193:1 22247:1 22548:1 22593:1 22611:3 22669:1 22693:1 22740:2 22755:1 22786:1 22801:1 22815:2 22831:1 22846:1 22894:2 22912:1 22916:1 22939:1 23007:1 23039:1 23088:1 23089:5 23138:1 23248:2 23284:1 23305:2 23385:1 23405:1 23430:4 23431:1 23466:1 23476:1 23541:1 23558:2 23586:3 23610:1 23623:1 23645:1 23647:1 23719:1 23740:1 23758:1 23796:1 23797:1 23849:1 23852:1 23853:1 23956:1 23966:1 23971:6 24000:1 24042:1 24049:1 24101:1 24153:1 24162:1 24225:1 24384:1 24393:1 24409:1 24418:1 24455:1 24469:1 24473:1 24476:1 24491:1 24504:1 24525:1 24535:1
20 25:1 37:1 76:1 88:1 105:1 112:1 216:1 218:1 240:2 296:1 314:1 339:1 407:1 441:1 489:1 510:1 565:1 568:1 778:1 805:1 814:2 828:1 833:1 834:1 857:1 888:2 889:2 948:2 952:1 960:1 967:1 989:1 1009:1 1015:1 1044:1 1094:1 1108:1 1158:1 1208:1 1241:1 1258:1 1274:3 1293:1 1297:1 1301:1 1311:2 1332:3 1343:1 1381:6 1436:1 1476:1 1506:1 1507:4 1510:1 1568:1 1619:2 1629:1 1641:1 1644:1 1663:1 1703:1 1719:1 1731:3 1763:1 1766:2 1775:1 1826:2 1846:1 1856:1 1875:1 1877:4 1879:1 1889:1 1891:1 1898:1 1912:1 1942:1 1945:3 1961:1 1963:1 1968:2 1973:1 1976:1 1981:2 2034:1 2038:1 2055:1 2115:1 2140:1 2164:1 2188:1 2222:1 2272:1 2282:1 2308:1 2321:1 2325:1 2383:1 2434:1 2451:1 2461:1 2462:4 2464:1 2480:1 2500:1 2507:4 2589:1 2597:2 2645:3 2745:1 2753:1 2764:1 2802:2 2807:1 2941:1 2948:1 3002:1 3059:1 3063:1 3090:1 3118:1 3131:1 3183:1 3221:1 3222:1 3234:1 3237:2 3301:1 3326:1 3328:1 3367:1 3369:1 3399:1 3408:1 3442:1 3572:1 3622:1 3653:1 3678:1 3681:1 3737:1 3770:1 3801:1 3878:1 3889:1 3902:1 3939:1 3992:1 4003:1 4046:1 4047:1 4091:1 4107:4 4192:2 4198:1 4211:2 4212:1 4229:1 4230:2 4234:1 4248:1 4319:1 4323:1 4351:1 4384:1 4394:1 4409:2 4412:1 4420:1 4450:2 4498:2 4546:1 4561:1 4621:2 4633:1 4654:1 4662:1 4673:1 4681:1 4689:2 4703:1 4768:1 4823:1 4854:1 4872:1 4958:1 4959:1 5049:1 5054:1 5075:1 5100:1 5127:1 5187:2 5192:1 5205:1 5263:1 5289:1 5308:1 5322:2 5337:1 5347:1 5349:1 5350:2 5352:1 5396:1 5451:1 5592:1 5609:1 5615:1 5616:1 5665:1 5672:2 5674:1 5686:1 5689:1 5807:1 5808:1 5823:1 5837:1 5874:1 5890:1 5947:3 5948:1 5959:1 5970:1 6021:1 6035:1 6039:1 6040:1 6084:1 6116:1 6147:1 6175:2 6183:2 6201:1 6237:1 6255:1 6269:1 6286:1 6324:1 6359:1 6365:3 6382:1 6429:12 6449:2 6451:4 6460:1 6497:1 6551:1 6619:1 6655:1 6669:2 6677:1 6680:1 6700:1 6789:1 6810:6 6859:7 6908:1 6926:1 7020:1 7038:2 7068:2 7084:1 7156:1 7170:2 7172:1 7177:1 7305:1 7325:1 7384:1 7400:1 7409:1 7443:1 7451:1 7461:1 7526:1 7573:2 7581:5 7594:1 7604:2 7615:1 7665:1 7686:1 7712:1 7731:1 7787:1 7790:1 7803:1 7805:1 7810:1 7912:1 7944:1 7964:2 7988:1 8064:2 8070:5 8080:3 8118:1 8162:1 8177:1 8189:1 8222:1 8226:1 8285:1 8304:1 8348:1 8352:1 8382:1 8392:1 8480:1 8532:1 8566:1 8684:1 8700:1 8736:1 8769:1 8778:2 8789:1 8802:1 8807:1 8814:1 8818:1 8822:1 8828:1 8832:1 8840:1 8841:1 8891:2 8910:1 8914:2 8916:1 8975:1 8981:1 9001:2 9080:1 9101:2 9102:1 9193:1 9200:1 9202:1 9215:1 9222:1 9252:5 9282:1 9317:1 9346:1 9359:2 9442:1 9488:5 9561:1 9563:2 9621:1 9653:3 9668:1 9682:1 9695:1 9710:1 9716:1 9723:2 9730:1 9763:3 9778:2 9810:1 9822:1 9823:8 9881:1 9904:1 9918:2 9949:1 9974:2 9989:1 10037:1 10079:1 10089:1 10105:1 10151:1 10225:1 10281:2 10391:1 10480:4 10513:1 10531:1 10550:7 10598:1 10621:1 10724:1 10725:1 10754:1 10787:1 10836:3 10851:2 10870:1 10871:5 10874:1 10901:1 10942:1 10970:5 10985:9 11046:1 11065:1 11159:1 11163:1 11168:1 11280:2 11287:1 11301:1 11340:1 11368:6 11375:1 11376:1 11407:1 11408:1 11432:2 11447:1 11459:1 11509:2 11531:1 11614:1 11657:1 11697:1 11704:1 11777:1 11808:1 11825:1 11833:1 11855:1 11861:2 11910:1 11927:2 11990:3 12006:1 12020:1 12035:1 12045:1 12050:1 12054:1 12060:1 12089:1 12099:1 12105:1 12141:1 12173:1 12176:1 12229:1 12263:2 12303:1 12341:1 12372:1 12383:2 12387:1 12437:2 12550:2 12582:3 12583:1 12584:1 12630:1 12689:1 12739:1 12741:9 12770:1 12778:1 12828:1 12950:2 12961:1 12988:2 12995:1 13000:1 13031:1 13069:1 13094:1 13173:1 13207:1 13225:1 13259:1 13270:1 13295:1 13328:1 13363:1 13378:1 13390:1 13405:1 13410:1 13430:1 13431:2 13437:1 13444:1 13453:1 13459:2 13482:2 13495:1 13637:1 13670:1 13719:1 13746:1 13752:2 13758:1 13765:1 13767:1 13819:1 13835:2 13837:2 13846:1 13876:1 13924:1 13925:2 13928:6 13965:2 13979:1 13994:1 14008:1 14031:1 14035:1 14039:2 14046:1 14077:1 14094:1 14101:1 14114:1 14122:1 14125:1 14154:1 14178:1 14207:1 14210:1 14223:1 14240:2 14307:1 14398:1 14403:1 14516:1 14539:2 14570:1 14677:5 14719:1 14740:1 14762:2 14764:1 14768:2 14837:1 14844:3 14856:1 14864:1 14877:1 14885:1 14903:4 14929:1 14975:1 14981:1 15035:1 15070:1 15116:1 15129:1 15142:1 15147:1 15205:1 15282:2 15307:2 15312:2 15370:1 15389:1 15480:703 15482:1 15496:3 15564:1 15575:1 15583:2 15646:2 15655:1 15658:2 15663:1 15684:1 15723:1 15834:1 15883:1 15898:1 15929:1 15936:1 15949:1 15990:1 16009:1 16019:1 16042:2 16054:1 16074:1 16117:1 16152:1 16159:1 16170:1 16177:1 16206:5 16212:1 16239:1 16332:1 16362:1 16380:1 16387:2 16416:1 16432:2 16443:1 16479:1 16482:1 16485:1 16495:1 16538:1 16548:1 16650:1 16661:1 16669:1 16717:1 16718:1 16724:1 16733:1 16735:2 16750:1 16753:2 16782:1 16795:1 16815:4 16823:2 16945:1 16981:1 17014:1 17043:1 17046:1 17050:1 17058:2 17109:1 17144:1 17163:1 17188:1 17221:1 17223:1 17275:1 17305:1 17311:2 17329:1 17362:1 17380:1 17437:2 17452:1 17485:6 17491:2 17510:3 17550:1 17558:1 17562:1 17564:1 17610:1 17706:2 17735:1 17738:1 17747:2 17806:1 17812:1 17813:1 17835:2 17851:1 17916:1 17929:1 17943:1 17965:1 17993:1 17996:1 18037:1 18043:1 18093:1 18130:1 18131:1 18186:1 18196:1 18197:2 18199:2 18204:1 18234:2 18244:1 18285:1 18296:1 18360:1 18366:1 18378:1 18479:1 18491:1 18498:1 18511:1 18537:1 18565:1 18567:1 18573:1 18641:1 18686:1 18693:1 18727:2 18739:2 18742:1 18776:1 18784:1 18803:1 18807:1 18874:2 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:1 18941:2 18946:1 18948:1 18949:1 18965:1 18975:2 18976:1 18985:1 18990:2 19096:1 19145:1 19156:1 19193:1 19201:1 19213:1 19218:1 19225:1 19229:1 19233:1 19365:1 19406:1 19425:2 19438:2 19446:1 19470:1 19480:1 19493:1 19523:1 19525:1 19532:1 19559:1 19562:1 19573:1 19615:1 19637:1 19832:2 19902:5 20013:1 20051:1 20055:1 20063:1 20068:1 20076:1 20083:1 20084:3 20102:1 20107:1 20109:1 20139:1 20266:1 20268:1 20270:1 20274:1 20276:1 20318:1 20327:1 20332:2 20343:1 20344:1 20360:1 20366:1 20378:3 20412:1 20441:1 20447:1 20469:2 20480:1 20485:1 20490:1 20567:1 20651:1 20659:1 20686:1 20738:1 20742:5 20751:1 20753:1 20762:1 20769:1 20785:1 20786:1 20847:1 20928:1 20930:3 20958:1 20962:1 20964:1 20970:2 21007:1 21099:1 21134:1 21139:1 21205:1 21208:1 21319:1 21337:1 21361:1 21503:1 21512:1 21551:1 21556:1 21559:1 21561:1 21576:1 21586:1 21612:2 21632:1 21637:1 21663:1 21671:1 21697:2 21703:1 21707:1 21716:1 21760:2 21773:2 21787:1 21831:1 21857:1 21869:1 21923:1 21952:1 21998:1 22027:1 22043:1 22058:1 22065:1 22080:1 22114:1 22193:1 22247:1 22419:1 22548:1 22593:1 22611:3 22669:1 22693:1 22740:3 22755:1 22786:1 22801:1 22815:2 22817:1 22822:1 22831:1 22846:1 22894:2 22912:1 22916:1 22939:1 23006:1 23007:1 23039:1 23088:1 23089:5 23113:1 23138:1 23248:3 23284:1 23305:3 23385:1 23405:1 23430:5 23431:1 23466:1 23476:1 23541:1 23558:3 23586:3 23610:1 23623:1 23645:1 23647:1 23719:1 23740:1 23758:1 23796:1 23797:1 23849:1 23852:1 23853:1 23956:1 23966:1 23971:7 24000:1 24042:1 24049:1 24101:1 24153:1 24162:1 24170:1 24225:1 24384:1 24393:1 24409:1 24418:1 24421:1 24455:1 24469:1 24473:1 24476:1 24479:1 24491:1 24504:1 24523:1 24525:1 24535:1
20 25:1 37:1 76:1 88:1 105:1 112:1 216:1 218:1 240:3 276:1 296:1 314:1 339:1 407:1 441:1 489:1 510:1 565:1 568:1 778:1 805:1 814:2 828:1 833:1 834:1 857:1 888:2 889:2 948:2 952:1 960:1 967:1 989:1 1009:1 1015:1 1044:1 1094:1 1108:1 1158:1 1208:1 1241:1 1258:1 1274:3 1293:1 1297:1 1301:1 1311:2 1332:3 1343:1 1381:7 1436:1 1476:1 1506:1 1507:4 1510:1 1568:1 1619:2 1629:1 1641:1 1644:1 1663:1 1703:1 1719:1 1731:3 1763:1 1766:3 1775:1 1826:2 1846:1 1856:1 1875:1 1877:5 1879:1 1889:1 1891:1 1898:1 1912:1 1942:1 1945:3 1961:1 1963:1 1968:2 1973:1 1976:1 1981:2 2034:1 2038:1 2055:1 2115:1 2140:1 2164:1 2188:1 2222:1 2272:1 2282:1 2308:1 2321:1 2325:1 2383:1 2434:1 2451:1 2461:1 2462:5 2464:1 2480:2 2500:1 2507:4 2589:1 2597:2 2645:3 2678:1 2718:1 2745:1 2753:1 2764:1 2802:2 2807:1 2941:1 2948:1 3002:1 3059:1 3063:1 3090:1 3118:1 3131:1 3183:1 3221:1 3222:1 3234:1 3237:3 3301:1 3326:1 3328:1 3367:1 3369:1 3399:1 3408:1 3442:1 3481:1 3572:1 3622:1 3653:1 3661:1 3666:1 3678:1 3681:1 3737:1 3770:1 3801:1 3878:1 3889:1 3902:1 3939:1 3992:1 4003:1 4046:1 4047:1 4091:1 4107:4 4192:3 4198:1 4211:2 4212:1 4229:1 4230:2 4231:1 4234:1 4248:1 4319:1 4323:1 4351:1 4384:1 4394:1 4409:2 4412:1 4420:1 4450:2 4498:2 4529:1 4546:1 4561:1 4621:2 4633:2 4654:1 4662:1 4673:1 4681:1 4689:2 4703:1 4768:1 4823:1 4854:1 4872:1 4958:1 4959:1 5016:1 5049:2 5054:1 5075:1 5100:1 5127:1 5187:2 5192:1 5205:1 5263:1 5289:1 5308:1 5322:2 5337:1 5347:1 5349:1 5350:2 5352:1 5396:1 5451:1 5592:1 5609:1 5615:1 5616:1 5663:1 5665:1 5672:2 5674:1 5686:1 5689:1 5783:1 5807:1 5808:1 5823:1 5837:1 5874:1 5890:1 5947:4 5948:1 5959:1 5970:1 6021:1 6035:1 6039:1 6040:1 6084:1 6116:1 6147:1 6175:2 6183:3 6201:1 6237:1 6255:1 6269:1 6286:1 6324:1 6359:1 6365:3 6382:1 6429:12 6449:2 6451:4 6460:1 6497:1 6501:1 6551:1 6619:1 6655:1 6669:2 6677:1 6680:1 6700:1 6789:1 6810:7 6859:7 6908:1 6926:1 7020:1 7038:2 7068:3 7084:1 7156:1 7166:1 7170:2 7172:1 7177:1 7305:1 7325:1 7384:1 7400:1 7409:1 7443:1 7451:1 7461:1 7526:1 7573:2 7581:5 7594:1 7604:3 7615:1 7665:1 7686:1 7712:1 7731:1 7787:1 7790:1 7803:1 7805:1 7810:1 7912:1 7944:1 7964:2 7988:1 8048:1 8064:3 8067:1 8070:5 8080:3 8118:1 8162:1 8177:1 8189:1 8222:1 8226:1 8285:1 8304:1 8348:1 8352:1 8382:1 8392:1 8480:1 8532:1 8566:1 8684:1 8700:1 8736:1 8769:1 8778:2 8789:1 8802:2 8807:1 8814:1 8818:1 8822:1 8828:1 8832:1 8840:1 8841:1 8891:2 8910:1 8914:2 8916:1 8975:1 8981:1 9001:2 9080:1 9101:2 9102:1 9193:1 9200:1 9202:1 9215:1 9222:1 9252:5 9282:1 9317:1 9346:1 9359:2 9442:1 9488:5 9561:1 9563:2 9621:1 9653:3 9668:1 9682:1 9695:1 9710:1 9716:1 9723:2 9730:1 9763:3 9778:3 9810:1 9822:1 9823:9 9881:1 9904:1 9918:2 9949:1 9974:2 9989:1 10037:1 10079:1 10089:1 10105:1 10151:2 10225:1 10281:2 10391:1 10480:5 10513:1 10531:1 10550:8 10598:1 10621:1 10724:1 10725:1 10754:1 10787:1 10836:3 10851:2 10870:1 10871:6 10874:1 10901:1 10942:1 10970:6 10985:10 11046:1 11065:1 11159:1 11163:1 11168:1 11280:2 11287:1 11301:1 11311:1 11340:1 11368:7 11375:1 11376:1 11407:2 11408:1 11432:2 11447:1 11459:1 11509:2 11531:1 11614:1 11657:1 11697:2 11704:1 11718:1 11777:1 11808:1 11825:1 11833:1 11855:1 11861:2 11910:1 11927:3 11990:3 12006:1 12020:1 12035:1 12045:1 12050:1 12054:1 12060:1 12089:1 12099:1 12105:1 12141:1 12157:1 12173:1 12176:1 12229:1 12263:2 12303:1 12341:1 12372:1 12383:2 12387:1 12437:2 12550:2 12582:3 12583:1 12584:1 12630:1 12689:1 12732:1 12739:1 12741:10 12770:1 12778:1 12828:1 12950:2 12961:1 12988:2 12995:1 12997:1 13000:1 13030:1 13031:1 13069:1 13094:1 13173:1 13207:1 13225:1 13259:1 13270:1 13295:1 13328:1 13363:1 13378:1 13390:1 13405:1 13410:1 13430:1 13431:2 13437:1 13444:1 13453:1 13459:2 13482:2 13495:1 13637:1 13670:1 13719:1 13746:1 13752:2 13758:1 13765:1 13767:1 13819:1 13835:2 13837:2 13846:1 13876:1 13924:1 13925:2 13928:7 13965:2 13979:1 13994:1 14008:1 14031:1 14035:1 14039:2 14046:1 14077:1 14094:1 14101:1 14114:1 14122:1 14125:1 14154:1 14178:1 14207:1 14210:1 14223:1 14240:2 14307:1 14398:1 14403:1 14516:1 14539:2 14570:1 14677:5 14719:1 14740:1 14762:2 14764:1 14768:2 14837:1 14844:3 14856:1 14864:1 14877:1 14885:1 14903:5 14929:1 14975:1 14981:1 15035:1 15070:1 15116:1 15129:1 15139:1 15142:1 15147:1 15205:1 15282:2 15307:2 15312:2 15370:1 15389:1 15480:772 15482:1 15496:3 15564:1 15575:1 15583:2 15646:3 15655:1 15658:3 15663:1 15684:1 15723:1 15834:1 15883:1 15898:1 15929:1 15936:1 15949:1 15990:1 16009:1 16019:1 16042:2 16054:1 16074:2 16110:1 16117:1 16152:1 16159:1 16170:1 16177:1 16206:6 16212:1 16239:1 16332:1 16362:1 16380:1 16387:2 16416:1 16432:2 16443:1 16479:1 16482:1 16485:1 16495:1 16522:2 16538:1 16548:1 16650:1 16661:1 16669:1 16717:1 16718:1 16724:1 16731:1 16733:1 16735:2 16750:1 16753:2 16782:1 16795:1 16815:4 16823:2 16945:1 16981:1 17014:1 17043:1 17046:1 17050:1 17058:2 17109:1 17144:1 17163:1 17188:1 17221:1 17223:1 17275:1 17305:1 17311:2 17329:1 17362:1 17380:1 17429:1 17437:2 17452:1 17485:7 17491:2 17510:3 17550:1 17558:1 17562:1 17564:1 17610:1 17706:2 17735:1 17738:1 17747:2 17806:1 17812:1 17813:1 17835:2 17851:1 17916:1 17929:1 17943:1 17965:1 17993:1 17996:1 18037:1 18043:1 18093:1 18130:1 18131:1 18186:1 18196:1 18197:2 18199:2 18204:1 18228:1 18234:2 18244:1 18285:1 18296:1 18360:1 18366:1 18378:1 18479:1 18491:1 18498:1 18511:1 18537:1 18565:1 18567:1 18573:2 18641:1 18644:1 18686:1 18693:2 18727:2 18739:2 18742:1 18776:1 18784:1 18803:1 18807:1 18874:2 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:1 18941:2 18946:1 18948:1 18949:1 18965:1 18975:2 18976:1 18985:1 18990:3 19029:1 19033:1 19096:1 19145:1 19156:1 19187:1 19193:1 19201:1 19213:1 19218:1 19225:1 19229:1 19233:1 19365:1 19406:1 19425:3 19438:2 19446:1 19470:1 19480:1 19493:1 19523:1 19525:1 19532:1 19559:1 19562:1 19573:1 19615:1 19637:1 19832:3 19902:6 20013:1 20051:1 20055:1 20063:1 20068:1 20076:1 20083:1 20084:3 20102:1 20107:1 20109:1 20139:1 20266:1 20268:1 20270:1 20274:1 20276:1 20318:1 20327:1 20332:2 20343:1 20344:1 20360:1 20366:1 20378:3 20412:1 20441:1 20447:1 20469:2 20480:1 20485:1 20490:1 20508:1 20567:1 20651:1 20659:1 20686:1 20738:1 20742:5 20751:1 20753:1 20762:1 20769:1 20785:1 20786:1 20847:1 20928:1 20930:3 20955:1 20958:1 20962:1 20964:1 20970:2 21007:1 21099:1 21134:1 21139:1 21205:1 21208:1 21319:1 21337:1 21361:1 21413:1 21503:1 21512:1 21551:1 21556:1 21557:1 21559:1 21561:1 21576:1 21586:1 21612:3 21632:1 21637:1 21663:1 21671:1 21697:3 21703:1 21707:1 21716:1 21760:2 21773:2 21787:1 21831:1 21857:1 21869:1 21923:1 21952:1 21998:1 22027:1 22043:1 22058:1 22065:1 22080:1 22114:1 22193:1 22247:1 22419:1 22548:1 22593:1 22611:3 22669:1 22693:1 22740:3 22755:1 22786:1 22801:1 22815:2 22817:1 22822:1 22831:1 22846:1 22894:2 22912:1 22916:1 22939:1 23006:2 23007:1 23039:1 23088:1 23089:5 23113:1 23138:1 23248:3 23284:1 23305:3 23385:1 23404:1 23405:1 23430:6 23431:1 23466:1 23476:1 23518:1 23541:1 23558:3 23586:3 23610:1 23623:1 23645:2 23647:1 23719:1 23740:1 23758:1 23796:1 23797:1 23849:1 23852:1 23853:1 23956:1 23961:1 23966:1 23971:8 24000:1 24042:1 24049:1 24101:1 24153:1 24162:1 24170:1 24225:1 24307:1 24384:1 24393:1 24409:1 24418:1 24421:1 24455:1 24469:1 24473:1 24476:1 24479:1 24491:1 24504:1 24523:1 24525:1 24535:1
20 25:1 34:1 37:1 76:1 88:1 105:1 112:1 162:1 216:1 218:1 240:3 276:1 296:1 314:1 339:1 407:1 441:1 489:1 510:1 565:1 568:1 778:1 805:1 814:2 828:1 833:1 834:1 838:2 857:1 888:2 889:2 948:2 952:1 960:1 967:1 989:1 1009:1 1015:1 1044:1 1078:1 1094:1 1108:1 1158:1 1208:1 1241:1 1258:1 1274:3 1293:1 1296:1 1297:1 1301:1 1311:2 1332:4 1343:1 1360:1 1381:8 1436:1 1476:1 1506:1 1507:4 1510:1 1568:1 1619:2 1629:1 1641:1 1644:1 1663:1 1703:1 1719:1 1731:3 1763:1 1766:3 1775:1 1826:3 1846:1 1856:1 1875:1 1877:6 1879:1 1889:1 1891:1 1898:1 1912:1 1942:1 1945:3 1961:1 1963:1 1968:2 1973:1 1976:1 1981:2 2034:1 2038:1 2055:1 2115:1 2140:1 2164:1 2188:1 2222:1 2254:1 2272:1 2282:1 2308:1 2321:1 2325:1 2383:1 2405:1 2434:1 2451:3 2461:2 2462:5 2464:1 2480:2 2500:1 2507:5 2589:1 2597:2 2645:3 2678:1 2700:1 2718:1 2745:1 2753:1 2764:1 2802:2 2807:1 2826:1 2831:1 2941:1 2948:1 3002:1 3059:1 3063:1 3090:1 3118:1 3131:1 3183:1 3221:1 3222:1 3234:1 3237:3 3288:1 3301:1 3326:1 3328:1 3367:1 3369:1 3399:1 3408:1 3442:1 3481:1 3572:1 3622:1 3653:1 3661:1 3666:1 3678:1 3681:1 3737:1 3770:1 3801:1 3878:1 3889:1 3902:1 3939:1 3992:1 4003:1 4046:1 4047:1 4091:1 4107:4 4192:3 4198:2 4211:2 4212:1 4229:1 4230:2 4231:1 4234:2 4248:1 4319:1 4323:1 4351:1 4384:1 4394:1 4409:2 4412:1 4420:1 4450:2 4464:1 4498:2 4529:1 4546:2 4561:1 4621:2 4633:2 4654:1 4662:1 4673:1 4681:1 4689:2 4703:1 4768:1 4823:1 4826:1 4854:1 4872:1 4958:1 4959:1 5016:1 5049:2 5054:1 5075:1 5100:1 5127:1 5187:2 5189:1 5192:1 5205:1 5263:1 5289:1 5308:1 5322:2 5337:1 5347:1 5349:1 5350:2 5352:2 5396:1 5451:1 5488:1 5592:1 5609:1 5615:1 5616:1 5663:1 5665:1 5672:2 5674:1 5686:1 5689:1 5783:1 5807:1 5808:1 5819:1 5823:1 5837:1 5874:1 5890:1 5947:4 5948:1 5959:1 5970:1 6021:1 6035:1 6039:1 6040:1 6084:1 6116:1 6147:1 6175:2 6183:3 6201:1 6237:1 6255:1 6269:1 6286:1 6324:1 6359:1 6365:3 6382:1 6384:1 6429:12 6449:4 6451:5 6460:1 6497:1 6501:1 6551:1 6619:1 6655:1 6669:2 6677:1 6680:1 6700:1 6789:1 6810:8 6859:9 6906:1 6908:1 6926:1 7020:1 7038:2 7068:3 7084:1 7156:1 7166:1 7170:2 7172:1 7177:1 7305:1 7325:1 7384:1 7400:1 7409:1 7443:1 7451:1 7461:1 7505:1 7521:1 7526:1 7535:1 7573:2 7581:5 7594:1 7604:3 7615:1 7665:1 7686:1 7712:1 7731:1 7787:1 7790:1 7803:1 7805:1 7810:1 7912:1 7944:1 7964:2 7988:1 8048:1 8064:3 8067:1 8070:5 8080:3 8118:1 8162:1 8177:1 8189:1 8215:1 8222:1 8226:1 8285:1 8304:1 8348:1 8352:1 8382:1 8392:1 8444:1 8480:1 8532:1 8566:1 8574:1 8684:1 8700:1 8736:1 8769:1 8778:2 8789:1 8802:2 8807:1 8814:1 8818:1 8822:1 8828:1 8829:1 8832:1 8833:1 8840:1 8841:1 8891:2 8910:1 8914:2 8916:1 8975:1 8981:1 9001:2 9080:1 9101:2 9102:1 9193:1 9200:1 9202:1 9215:1 9222:1 9252:5 9282:1 9317:1 9346:1 9359:2 9442:1 9472:1 9488:5 9536:1 9561:1 9563:2 9621:1 9653:4 9668:1 9682:1 9695:1 9710:1 9716:1 9723:2 9730:1 9763:3 9778:3 9810:1 9822:1 9823:10 9881:1 9904:1 9918:2 9949:1 9974:2 9989:1 10037:1 10079:1 10089:1 10105:1 10151:2 10225:1 10281:2 10364:1 10391:1 10480:6 10513:1 10531:1 10550:10 10598:1 10621:2 10724:1 10725:1 10754:1 10787:1 10836:4 10851:2 10870:1 10871:7 10874:1 10901:1 10942:1 10969:1 10970:7 10982:1 10985:12 11046:1 11065:1 11159:1 11163:1 11168:1 11280:2 11287:1 11301:1 11311:1 11340:1 11368:8 11375:1 11376:1 11407:2 11408:1 11432:2 11447:1 11459:1 11509:2 11531:2 11564:1 11614:1 11638:1 11657:1 11697:2 11704:1 11718:1 11744:1 11777:1 11808:1 11825:1 11833:1 11855:1 11861:2 11910:1 11927:3 11990:3 12006:1 12020:1 12035:1 12045:1 12050:1 12054:1 12060:1 12089:1 12099:1 12105:1 12141:1 12157:1 12173:1 12176:1 12229:1 12263:2 12303:1 12341:1 12372:1 12383:2 12387:1 12437:2 12550:2 12582:3 12583:1 12584:1 12586:1 12630:1 12633:1 12689:1 12732:1 12739:1 12741:11 12770:1 12778:1 12828:1 12950:2 12961:1 12984:1 12988:2 12995:1 12997:1 13000:1 13030:1 13031:1 13069:1 13094:1 13173:1 13207:1 13225:1 13259:1 13270:1 13295:1 13328:1 13363:1 13373:1 13378:1 13390:1 13405:1 13410:1 13430:1 13431:2 13437:1 13442:1 13444:1 13448:1 13453:1 13459:2 13482:2 13495:1 13570:1 13637:1 13670:1 13719:1 13746:1 13752:2 13758:1 13765:1 13767:1 13812:1 13819:1 13835:2 13837:3 13846:1 13868:1 13876:1 13906:1 13924:2 13925:2 13928:8 13965:2 13979:1 13994:1 14008:1 14031:1 14035:1 14039:2 14046:1 14077:1 14094:1 14101:1 14114:1 14122:1 14125:1 14142:1 14154:1 14178:1 14207:1 14210:1 14223:1 14240:2 14307:1 14393:1 14398:1 14403:1 14516:1 14539:2 14553:1 14570:1 14677:5 14719:2 14740:1 14762:2 14764:1 14768:2 14837:1 14844:3 14856:1 14864:1 14877:1 14885:1 14903:6 14929:1 14975:1 14981:1 15035:1 15070:1 15116:1 15129:1 15139:1 15142:1 15147:1 15205:1 15282:2 15307:3 15312:2 15370:1 15389:1 15480:841 15482:2 15496:3 15514:1 15543:1 15564:1 15575:1 15583:2 15587:1 15633:1 15646:3 15655:1 15658:3 15662:1 15663:1 15684:1 15723:1 15834:2 15883:1 15898:1 15929:1 15936:1 15949:1 15990:1 16009:1 16019:1 16042:2 16054:2 16074:2 16095:1 16110:1 16117:1 16152:1 16159:1 16170:1 16177:1 16206:7 16212:1 16239:1 16332:1 16362:1 16380:1 16387:2 16408:1 16416:1 16432:2 16434:1 16443:1 16479:1 16482:1 16485:1 16495:1 16522:2 16538:1 16548:1 16650:1 16661:1 16669:1 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:2 16782:1 16795:1 16815:5 16823:3 16945:1 16965:1 16981:1 17001:1 17014:1 17043:1 17046:1 17050:1 17058:2 17109:1 17138:1 17144:1 17163:1 17188:1 17221:1 17223:1 17238:1 17275:1 17305:1 17311:2 17329:1 17362:1 17380:1 17429:1 17437:2 17443:1 17452:1 17485:8 17491:2 17510:4 17542:1 17550:1 17558:1 17562:1 17564:1 17570:1 17610:1 17706:2 17735:1 17738:2 17747:2 17806:1 17812:1 17813:1 17835:2 17851:1 17916:1 17929:1 17943:1 17965:1 17993:1 17995:1 17996:2 18037:1 18043:1 18091:1 18093:1 18130:1 18131:1 18186:1 18196:2 18197:2 18199:3 18204:1 18210:1 18228:1 18234:2 18244:1 18285:1 18296:1 18360:1 18366:1 18378:1 18479:1 18491:1 18498:1 18511:1 18537:1 18565:1 18567:1 18573:2 18619:1 18641:1 18644:1 18686:1 18693:2 18727:2 18739:2 18742:1 18776:1 18784:1 18803:1 18807:1 18874:2 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:1 18941:2 18946:1 18948:1 18949:1 18965:1 18975:2 18976:1 18985:1 18990:3 19029:1 19033:1 19036:1 19096:1 19145:1 19156:1 19187:1 19193:1 19201:1 19213:1 19218:1 19225:1 19229:1 19233:1 19365:1 19376:1 19406:1 19425:3 19431:1 19438:2 19446:1 19470:1 19480:1 19493:1 19508:1 19523:1 19525:1 19532:1 19559:1 19562:1 19573:1 19580:1 19587:1 19615:2 19637:1 19718:1 19832:3 19902:7 20013:1 20040:1 20051:1 20055:1 20063:1 20068:1 20076:1 20083:1 20084:4 20102:1 20107:1 20109:1 20139:1 20266:1 20268:1 20270:1 20274:1 20276:1 20318:1 20327:1 20332:2 20343:1 20344:1 20360:1 20366:1 20378:3 20412:1 20441:1 20447:1 20469:2 20480:1 20485:1 20490:1 20508:1 20567:1 20651:1 20659:1 20663:1 20686:1 20738:1 20742:5 20751:1 20753:1 20762:1 20769:1 20785:1 20786:1 20847:1 20928:1 20930:4 20955:1 20958:1 20962:1 20964:1 20970:2 21007:1 21099:1 21134:1 21139:1 21159:1 21205:1 21208:1 21319:1 21337:1 21361:1 21363:1 21413:1 21503:1 21512:1 21551:1 21556:1 21557:1 21559:1 21561:1 21576:1 21586:1 21612:3 21632:1 21637:2 21663:1 21671:1 21695:1 21697:3 21703:1 21707:1 21716:1 21760:3 21773:2 21787:1 21831:1 21844:1 21857:1 21869:1 21905:1 21923:1 21952:1 21998:1 22027:1 22043:1 22058:1 22065:1 22068:1 22080:1 22114:1 22193:1 22242:1 22247:1 22379:1 22419:1 22462:1 22528:1 22548:1 22593:1 22611:3 22669:1 22693:1 22740:3 22755:1 22786:1 22801:1 22815:2 22817:1 22822:1 22831:1 22846:1 22894:2 22912:1 22916:1 22939:1 23006:2 23007:1 23039:1 23088:1 23089:5 23113:1 23138:1 23248:3 23284:1 23305:3 23314:1 23385:1 23404:1 23405:1 23430:6 23431:1 23432:1 23466:1 23476:1 23481:1 23490:1 23518:1 23541:1 23558:3 23586:3 23610:1 23623:1 23645:2 23647:1 23719:1 23740:1 23758:1 23796:2 23797:1 23849:1 23852:1 23853:1 23956:2 23961:1 23966:1 23971:9 24000:1 24042:1 24049:1 24101:1 24153:1 24162:1 24170:1 24225:1 24307:1 24353:1 24379:1 24384:1 24393:1 24409:1 24411:1 24418:1 24421:1 24455:1 24469:1 24473:1 24476:1 24479:1 24491:1 24504:1 24523:1 24525:1 24535:1
20 25:1 34:1 37:1 76:1 88:1 105:1 112:1 162:1 216:1 218:1 240:3 276:1 296:1 314:1 339:1 407:1 441:1 489:1 510:1 565:1 568:1 778:1 805:1 814:2 828:1 833:1 834:1 838:2 857:1 888:3 889:3 946:1 948:2 952:1 960:1 967:1 989:1 1009:1 1015:1 1044:1 1078:1 1094:1 1108:1 1158:1 1208:1 1241:1 1258:1 1274:3 1293:1 1296:1 1297:1 1301:1 1311:2 1332:5 1343:1 1360:1 1381:9 1429:1 1436:1 1476:1 1506:1 1507:4 1510:1 1546:1 1552:2 1568:1 1619:2 1629:1 1641:1 1644:1 1663:1 1703:1 1719:1 1731:3 1763:1 1766:3 1775:1 1826:3 1846:1 1856:1 1875:1 1877:7 1879:1 1889:1 1891:1 1898:1 1912:1 1942:1 1945:3 1960:1 1961:1 1963:1 1968:2 1973:1 1976:1 1981:2 2034:1 2038:1 2055:1 2115:1 2140:1 2164:1 2188:1 2222:1 2241:1 2254:1 2272:1 2282:1 2308:1 2321:1 2325:1 2383:1 2405:1 2434:1 2451:3 2461:2 2462:5 2464:1 2480:2 2500:1 2507:5 2589:1 2597:2 2645:3 2678:1 2700:1 2718:1 2745:1 2753:1 2764:1 2802:2 2807:1 2826:1 2831:1 2941:1 2948:1 3002:1 3059:1 3063:1 3090:1 3118:1 3131:1 3183:1 3221:1 3222:1 3234:1 3237:3 3288:1 3301:1 3306:1 3326:1 3328:1 3367:1 3369:1 3399:1 3408:1 3442:1 3481:1 3514:1 3572:1 3598:1 3622:1 3653:1 3661:1 3666:1 3678:1 3681:1 3710:1 3737:1 3770:1 3801:1 3878:1 3889:1 3902:1 3939:1 3992:1 4003:1 4046:1 4047:1 4091:1 4107:4 4192:3 4198:3 4211:2 4212:1 4229:1 4230:2 4231:1 4234:2 4248:1 4319:1 4323:1 4351:1 4384:1 4394:1 4409:2 4412:1 4420:1 4450:2 4464:1 4498:2 4506:1 4529:1 4546:2 4561:1 4621:2 4633:2 4654:1 4662:1 4673:1 4681:1 4689:2 4703:1 4768:1 4823:1 4826:1 4854:1 4872:1 4958:1 4959:1 5016:1 5049:2 5054:1 5075:1 5090:2 5100:2 5127:1 5187:2 5189:1 5192:1 5205:1 5263:1 5289:1 5308:1 5322:3 5337:1 5347:1 5349:1 5350:2 5352:3 5396:1 5451:1 5488:1 5592:1 5609:1 5615:1 5616:1 5663:1 5665:1 5672:2 5674:1 5686:1 5689:1 5783:1 5807:1 5808:1 5819:1 5823:1 5837:1 5874:1 5890:1 5947:4 5948:1 5959:1 5970:1 6021:1 6035:1 6039:1 6040:1 6084:1 6116:1 6147:1 6175:2 6183:3 6201:1 6237:1 6241:1 6255:1 6269:1 6285:1 6286:1 6324:1 6359:1 6365:4 6382:1 6384:1 6429:13 6449:4 6451:5 6460:1 6497:1 6501:1 6551:1 6619:1 6655:1 6669:2 6677:1 6680:1 6700:1 6771:1 6789:1 6810:9 6859:9 6906:1 6908:1 6926:1 7020:1 7038:2 7068:3 7084:1 7156:1 7166:1 7170:2 7172:1 7177:1 7305:1 7325:1 7384:1 7400:1 7409:2 7443:1 7451:1 7461:2 7505:1 7521:1 7526:1 7535:1 7573:2 7581:5 7594:1 7604:3 7615:1 7665:1 7686:1 7712:1 7731:1 7787:1 7790:1 7803:1 7805:1 7810:1 7912:1 7944:1 7964:2 7988:1 8048:1 8064:3 8067:1 8070:5 8080:3 8118:1 8138:1 8162:1 8177:1 8189:1 8215:1 8222:1 8226:1 8285:1 8296:2 8304:2 8348:1 8352:1 8382:1 8392:1 8444:1 8480:1 8532:1 8566:1 8574:1 8575:1 8684:1 8700:1 8736:1 8769:1 8778:2 8789:2 8802:2 8807:1 8814:1 8815:1 8818:1 8822:1 8828:1 8829:1 8832:1 8833:1 8840:1 8841:1 8891:2 8910:1 8914:2 8916:2 8975:1 8981:1 9001:2 9080:1 9101:2 9102:1 9193:1 9200:1 9202:1 9215:1 9222:1 9252:5 9282:1 9317:1 9346:1 9359:2 9389:1 9442:1 9472:1 9488:5 9536:1 9561:1 9563:2 9621:1 9653:4 9668:1 9682:1 9695:1 9710:1 9716:1 9723:2 9730:1 9762:1 9763:3 9778:3 9810:1 9822:1 9823:11 9881:1 9904:1 9918:2 9949:1 9974:2 9989:1 10037:1 10046:1 10079:1 10089:1 10105:1 10151:2 10225:1 10281:2 10364:1 10391:1 10480:6 10513:1 10531:1 10550:11 10598:1 10621:2 10724:1 10725:1 10754:1 10787:1 10836:4 10851:2 10870:1 10871:8 10874:1 10901:1 10942:1 10969:1 10970:8 10982:1 10985:13 11046:1 11065:1 11159:1 11163:1 11168:1 11280:2 11287:1 11301:1 11311:1 11340:1 11368:9 11375:1 11376:1 11407:2 11408:1 11432:2 11447:1 11449:1 11459:1 11509:2 11531:2 11564:1 11614:1 11638:1 11657:1 11697:2 11704:1 11718:1 11744:1 11777:1 11808:1 11813:1 11825:1 11833:1 11855:1 11861:2 11910:1 11927:3 11990:3 12006:1 12020:1 12035:1 12045:1 12050:1 12054:1 12060:1 12089:1 12099:1 12105:1 12114:1 12141:1 12157:1 12173:1 12176:1 12218:1 12229:1 12263:2 12303:1 12341:1 12372:1 12383:3 12387:1 12437:2 12550:2 12582:3 12583:1 12584:1 12586:1 12630:1 12633:1 12689:1 12732:1 12739:1 12741:12 12770:1 12778:1 12828:1 12950:2 12956:1 12961:1 12981:1 12983:1 12984:1 12988:2 12995:1 12997:1 13000:1 13030:1 13031:1 13069:1 13094:1 13173:1 13207:1 13225:1 13259:1 13270:1 13292:1 13295:2 13328:1 13363:1 13373:1 13378:1 13390:1 13405:1 13410:1 13430:1 13431:2 13437:1 13442:1 13444:1 13448:1 13453:1 13459:2 13469:1 13482:3 13495:1 13570:1 13637:1 13670:1 13719:1 13746:1 13752:2 13758:1 13765:1 13767:1 13812:1 13819:1 13835:2 13837:3 13846:1 13868:1 13876:1 13906:1 13924:2 13925:2 13928:9 13931:1 13965:2 13966:1 13972:2 13979:1 13994:1 14008:1 14031:1 14035:1 14039:2 14046:1 14077:1 14094:1 14101:1 14114:1 14122:1 14125:1 14142:1 14154:1 14178:1 14207:1 14210:1 14223:1 14240:2 14307:1 14368:1 14393:1 14398:1 14403:1 14516:1 14539:2 14553:1 14570:1 14575:1 14677:5 14719:2 14740:1 14762:2 14764:1 14768:2 14803:1 14837:1 14844:3 14856:1 14864:1 14877:1 14885:1 14903:7 14929:1 14975:1 14981:1 15035:1 15070:1 15116:1 15129:1 15139:1 15142:1 15147:1 15205:1 15282:2 15307:3 15312:2 15370:1 15389:1 15480:890 15482:2 15496:3 15514:1 15543:1 15564:1 15575:1 15583:2 15587:1 15633:1 15646:3 15655:1 15658:3 15662:1 15663:1 15684:1 15723:1 15834:2 15883:1 15898:1 15929:2 15936:1 15949:1 15990:1 16009:1 16019:1 16042:2 16054:2 16074:2 16095:1 16110:1 16117:1 16152:1 16159:1 16170:1 16177:1 16206:8 16212:1 16239:1 16332:1 16362:1 16380:1 16387:2 16408:1 16416:1 16432:2 16434:1 16443:1 16479:1 16482:1 16485:1 16495:1 16522:2 16538:1 16548:1 16650:1 16661:1 16669:1 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:3 16763:2 16782:1 16795:1 16815:5 16823:3 16945:1 16965:1 16981:1 17001:1 17014:1 17043:1 17046:1 17050:1 17058:2 17109:1 17138:1 17144:1 17163:1 17188:1 17221:1 17223:1 17238:1 17275:1 17305:1 17311:2 17329:1 17362:1 17380:1 17429:1 17437:2 17443:1 17452:1 17485:9 17491:2 17510:4 17542:1 17550:1 17558:1 17562:1 17564:1 17570:1 17610:1 17648:1 17706:2 17735:1 17738:3 17747:2 17806:1 17812:1 17813:1 17835:2 17851:1 17916:1 17929:1 17943:1 17965:1 17993:2 17995:1 17996:2 18037:1 18043:1 18091:1 18092:1 18093:1 18130:1 18131:1 18186:1 18196:2 18197:2 18199:3 18204:1 18210:1 18228:1 18234:2 18244:1 18285:1 18296:1 18360:1 18366:2 18378:1 18479:1 18491:1 18498:2 18511:1 18537:1 18565:1 18567:2 18573:2 18619:1 18641:1 18644:1 18686:1 18693:2 18727:2 18739:2 18742:1 18776:1 18784:1 18803:1 18807:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:1 18941:2 18946:1 18948:1 18949:1 18965:1 18975:2 18976:1 18985:1 18990:3 19029:2 19033:1 19036:1 19096:1 19145:1 19156:2 19187:2 19193:1 19201:1 19213:1 19218:1 19225:1 19229:1 19233:1 19365:1 19376:1 19406:1 19425:3 19431:1 19438:2 19446:1 19470:1 19480:1 19493:1 19508:1 19523:1 19525:1 19532:1 19559:1 19562:1 19573:1 19580:1 19587:1 19615:3 19637:1 19718:1 19832:3 19902:8 20013:1 20040:1 20051:1 20055:1 20063:1 20068:1 20076:1 20083:1 20084:5 20102:1 20107:1 20109:1 20139:1 20204:1 20266:1 20268:1 20270:1 20274:1 20275:1 20276:1 20318:1 20327:1 20332:2 20343:1 20344:1 20360:1 20366:1 20378:3 20412:1 20441:1 20447:1 20469:2 20480:1 20485:1 20490:1 20508:1 20567:1 20599:2 20651:1 20659:1 20663:1 20686:1 20738:1 20742:5 20751:1 20753:1 20762:1 20769:1 20785:1 20786:1 20847:1 20928:1 20930:4 20955:1 20958:1 20962:1 20964:1 20970:2 21007:1 21099:1 21134:1 21139:1 21154:1 21159:1 21205:1 21208:1 21319:1 21337:1 21361:1 21363:1 21371:1 21413:1 21441:1 21503:1 21512:1 21551:1 21556:1 21557:1 21559:1 21561:1 21576:1 21586:1 21612:3 21628:1 21630:1 21632:1 21637:3 21663:1 21671:1 21695:1 21697:3 21703:1 21707:1 21716:1 21760:3 21773:2 21787:1 21831:2 21844:1 21857:1 21869:1 21905:1 21923:1 21934:1 21952:1 21998:1 22027:2 22043:1 22058:1 22065:1 22068:1 22080:1 22114:1 22193:1 22242:1 22247:1 22379:1 22419:1 22462:1 22528:1 22548:1 22585:2 22593:1 22611:3 22669:1 22693:1 22740:3 22755:1 22786:1 22801:1 22815:2 22817:1 22822:1 22831:1 22846:1 22894:2 22912:1 22916:1 22939:1 23006:2 23007:1 23039:1 23074:2 23088:1 23089:5 23113:1 23138:1 23248:3 23284:1 23305:3 23314:1 23324:1 23385:1 23404:1 23405:1 23430:6 23431:1 23432:1 23466:1 23476:1 23481:1 23490:1 23518:2 23541:1 23558:3 23586:3 23587:1 23610:1 23623:1 23645:2 23647:1 23719:1 23740:1 23758:1 23796:2 23797:2 23847:1 23849:1 23852:1 23853:1 23956:2 23961:1 23966:1 23971:10 24000:1 24042:1 24049:1 24101:1 24153:1 24162:1 24170:1 24225:1 24307:1 24315:1 24353:1 24379:1 24384:1 24393:1 24409:1 24411:1 24418:1 24421:1 24440:1 24455:1 24469:1 24473:1 24476:1 24479:1 24491:1 24504:1 24523:1 24525:1 24535:1
20 25:1 34:1 37:1 76:1 88:1 105:1 112:1 162:1 216:1 218:1 240:3 276:1 296:1 314:1 339:1 407:1 441:1 489:1 510:1 565:1 568:1 778:1 805:1 814:2 828:1 833:1 834:1 838:2 857:1 888:3 889:3 946:1 948:2 952:1 960:1 967:1 989:1 1009:1 1015:1 1044:1 1078:1 1094:1 1108:1 1158:1 1208:1 1241:1 1258:1 1274:3 1293:1 1296:1 1297:1 1301:1 1311:2 1332:6 1343:1 1360:1 1381:9 1429:1 1436:1 1476:1 1506:1 1507:4 1510:1 1546:1 1552:2 1568:1 1612:1 1619:2 1629:1 1641:1 1644:1 1663:1 1703:1 1719:1 1731:4 1763:1 1766:3 1775:1 1826:3 1846:1 1856:1 1875:1 1877:8 1879:1 1889:1 1891:1 1892:1 1898:1 1912:1 1942:1 1945:4 1960:1 1961:1 1963:1 1965:1 1968:2 1973:1 1976:1 1981:2 2034:1 2038:1 2055:1 2115:1 2140:1 2164:1 2188:1 2222:1 2241:1 2254:1 2272:1 2282:1 2308:1 2321:1 2325:1 2383:1 2405:1 2434:1 2451:3 2461:2 2462:5 2464:1 2480:2 2500:1 2507:6 2589:1 2597:2 2645:3 2678:1 2700:1 2718:1 2745:1 2753:1 2764:1 2802:2 2807:1 2826:2 2831:1 2941:1 2948:1 3002:1 3059:1 3063:1 3090:1 3118:1 3131:1 3183:1 3184:1 3221:2 3222:1 3234:1 3237:3 3288:1 3301:1 3306:1 3326:1 3328:1 3367:1 3369:1 3399:1 3408:1 3442:1 3481:1 3514:1 3572:1 3598:1 3622:1 3653:1 3661:1 3666:1 3678:1 3681:1 3710:1 3737:1 3770:1 3801:1 3845:1 3878:1 3889:1 3902:1 3911:1 3939:1 3992:1 4003:1 4046:1 4047:1 4091:1 4107:5 4159:1 4160:1 4192:3 4198:3 4211:2 4212:1 4229:1 4230:2 4231:1 4234:2 4248:1 4319:1 4323:1 4351:1 4384:1 4394:1 4409:2 4412:1 4420:1 4450:2 4464:1 4470:1 4498:2 4506:1 4529:1 4546:2 4561:1 4621:2 4633:2 4654:1 4662:1 4673:1 4681:1 4689:2 4703:1 4768:1 4823:1 4826:1 4854:1 4872:1 4958:1 4959:1 5016:1 5049:2 5054:1 5075:1 5090:2 5100:2 5127:1 5187:2 5189:1 5192:1 5205:1 5263:1 5289:1 5308:1 5322:3 5337:1 5347:1 5349:1 5350:2 5352:3 5396:1 5451:1 5488:1 5520:1 5592:1 5609:1 5615:1 5616:2 5656:1 5663:1 5665:1 5672:2 5674:1 5686:1 5689:1 5783:1 5807:1 5808:1 5818:1 5819:1 5823:1 5837:1 5874:1 5890:1 5947:4 5948:1 5959:1 5970:1 6021:1 6035:1 6039:1 6040:1 6084:1 6096:1 6116:1 6147:1 6175:3 6183:3 6201:1 6237:1 6241:1 6255:1 6269:1 6285:1 6286:1 6324:1 6359:1 6365:4 6382:1 6384:1 6429:14 6449:4 6451:6 6460:1 6497:1 6501:1 6551:1 6619:1 6655:1 6669:2 6677:1 6680:1 6700:1 6771:1 6789:1 6810:9 6859:10 6906:1 6908:1 6926:1 7020:1 7038:2 7068:3 7084:1 7156:1 7166:1 7170:2 7172:1 7177:1 7305:1 7325:1 7384:1 7400:1 7409:2 7443:1 7451:1 7461:2 7505:1 7521:1 7526:1 7535:1 7573:2 7581:5 7594:1 7604:3 7615:1 7665:1 7686:1 7712:1 7731:1 7787:1 7790:1 7803:1 7805:1 7810:1 7878:1 7912:1 7944:1 7964:2 7988:1 8048:1 8061:1 8064:3 8067:1 8070:5 8080:3 8118:1 8138:1 8162:1 8177:1 8189:1 8215:1 8222:1 8226:1 8285:1 8296:2 8304:2 8348:1 8352:1 8363:1 8382:1 8392:1 8444:1 8480:1 8532:1 8566:1 8574:1 8575:1 8684:1 8700:1 8736:1 8769:1 8778:2 8789:2 8802:2 8807:1 8814:1 8815:1 8818:1 8822:1 8828:1 8829:1 8832:1 8833:1 8840:1 8841:1 8881:1 8891:2 8910:1 8914:3 8916:2 8975:1 8981:1 9001:3 9080:1 9101:2 9102:1 9193:1 9200:1 9202:1 9215:1 9222:1 9252:5 9282:1 9317:1 9346:1 9359:3 9389:1 9433:1 9442:1 9472:1 9488:5 9536:1 9561:1 9563:2 9621:1 9653:4 9668:1 9682:1 9687:1 9695:1 9710:1 9716:1 9723:2 9730:1 9762:1 9763:3 9778:3 9810:1 9822:1 9823:11 9881:1 9904:1 9918:2 9949:1 9974:2 9989:1 10001:1 10037:1 10046:1 10079:1 10089:1 10095:1 10105:1 10151:2 10169:1 10225:1 10281:2 10364:2 10391:1 10480:6 10502:1 10513:1 10531:1 10550:11 10556:1 10571:1 10598:1 10621:2 10724:1 10725:1 10754:1 10787:1 10836:4 10847:1 10851:2 10870:1 10871:8 10874:1 10901:1 10942:1 10969:1 10970:8 10982:1 10985:14 11046:1 11065:1 11159:1 11163:1 11168:1 11280:2 11287:1 11301:1 11311:1 11340:1 11368:10 11375:1 11376:1 11406:1 11407:2 11408:1 11432:2 11447:1 11449:1 11459:1 11509:2 11531:2 11564:1 11612:1 11613:1 11614:1 11638:1 11657:1 11697:2 11704:1 11718:1 11744:1 11777:1 11808:1 11813:1 11816:1 11825:1 11833:1 11855:1 11861:2 11910:1 11927:3 11942:1 11990:3 12006:1 12020:1 12035:1 12045:1 12050:1 12054:1 12060:1 12089:1 12099:1 12105:1 12114:1 12141:1 12157:1 12173:1 12176:1 12218:1 12229:1 12263:2 12303:1 12341:1 12372:1 12383:3 12387:1 12437:2 12525:1 12550:2 12582:3 12583:1 12584:1 12586:1 12630:1 12633:1 12689:1 12732:1 12739:1 12741:14 12766:1 12770:1 12778:1 12828:1 12950:2 12956:1 12961:1 12981:1 12983:1 12984:1 12988:2 12995:1 12997:1 13000:1 13030:2 13031:1 13069:1 13094:1 13173:1 13207:1 13225:1 13259:1 13270:1 13292:1 13295:2 13328:2 13363:1 13371:1 13373:1 13378:1 13390:1 13405:1 13410:1 13430:1 13431:2 13437:2 13442:1 13444:1 13448:1 13453:1 13459:2 13469:1 13482:3 13495:1 13570:1 13637:1 13670:1 13719:1 13746:1 13752:2 13758:1 13765:1 13767:1 13812:1 13819:1 13835:2 13837:3 13846:1 13868:1 13876:2 13906:1 13924:2 13925:2 13928:9 13931:1 13965:2 13966:1 13972:2 13979:1 13994:1 14008:1 14031:1 14035:1 14039:2 14046:1 14077:1 14094:1 14100:1 14101:1 14114:1 14122:1 14125:1 14142:1 14154:1 14156:1 14178:1 14207:1 14210:1 14223:1 14240:2 14307:1 14368:1 14393:1 14398:1 14403:1 14491:1 14516:1 14539:2 14553:1 14570:1 14575:1 14677:5 14719:2 14740:1 14762:3 14764:1 14768:2 14774:1 14775:1 14803:1 14837:1 14844:3 14856:1 14864:1 14877:1 14885:1 14903:8 14929:1 14975:1 14981:1 15024:1 15035:1 15070:1 15116:1 15129:1 15139:1 15142:1 15147:1 15184:1 15205:1 15282:2 15307:3 15312:2 15370:1 15389:1 15480:1024 15482:2 15496:3 15514:1 15543:1 15564:1 15575:1 15583:2 15587:1 15633:1 15646:3 15655:1 15658:3 15662:1 15663:1 15684:1 15708:1 15723:1 15725:1 15834:2 15883:1 15898:1 15929:2 15936:1 15949:1 15990:1 16009:1 16019:1 16042:2 16054:2 16074:2 16095:1 16110:1 16117:1 16152:1 16159:1 16170:1 16177:1 16206:8 16212:1 16239:1 16332:1 16362:1 16380:1 16387:2 16408:1 16416:1 16432:2 16434:1 16443:1 16479:1 16482:1 16485:1 16495:1 16522:2 16538:1 16548:1 16650:1 16661:1 16669:2 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:3 16763:2 16782:1 16795:1 16815:5 16823:3 16861:1 16945:1 16965:1 16981:1 17001:1 17014:1 17043:1 17046:1 17050:1 17058:2 17109:1 17138:1 17144:1 17163:1 17188:1 17221:1 17223:1 17238:1 17275:1 17305:1 17311:2 17329:1 17362:1 17380:1 17429:1 17437:3 17443:1 17452:1 17485:10 17491:2 17510:4 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17610:2 17648:1 17706:3 17735:1 17738:3 17747:2 17806:1 17812:1 17813:1 17835:2 17851:1 17916:1 17929:1 17943:1 17965:2 17993:2 17995:1 17996:2 18037:1 18043:1 18091:1 18092:1 18093:1 18130:1 18131:1 18186:1 18196:2 18197:2 18199:3 18204:1 18210:1 18228:1 18234:2 18244:1 18285:1 18296:1 18360:1 18366:2 18378:1 18479:1 18491:1 18498:2 18511:1 18537:1 18565:1 18567:2 18573:2 18616:1 18619:1 18641:1 18643:1 18644:1 18686:1 18693:2 18727:2 18729:1 18739:2 18742:1 18776:1 18784:1 18803:1 18807:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:1 18939:1 18941:2 18946:1 18948:1 18949:1 18965:1 18975:3 18976:1 18985:1 18990:3 19029:2 19033:1 19036:1 19096:1 19145:1 19156:2 19187:2 19193:1 19201:1 19213:1 19218:1 19225:1 19229:1 19233:1 19249:1 19365:1 19376:1 19406:1 19425:3 19431:1 19438:2 19446:1 19470:1 19480:1 19493:1 19508:1 19523:1 19525:1 19532:1 19559:2 19562:1 19573:1 19580:1 19587:1 19615:3 19637:1 19718:1 19810:1 19832:3 19901:1 19902:8 20013:1 20040:1 20051:1 20055:1 20063:1 20068:1 20076:1 20083:1 20084:6 20102:1 20107:1 20109:1 20139:1 20204:1 20266:1 20268:1 20270:1 20274:1 20275:1 20276:1 20318:1 20327:1 20332:2 20343:1 20344:1 20360:1 20366:1 20378:3 20412:1 20441:1 20447:1 20469:2 20480:1 20485:1 20490:1 20508:1 20567:1 20599:2 20651:1 20659:1 20663:1 20686:1 20738:1 20742:5 20751:1 20753:1 20762:1 20769:1 20785:1 20786:1 20847:1 20928:1 20930:4 20955:1 20958:1 20962:2 20964:1 20970:2 21007:1 21099:1 21111:1 21134:1 21139:1 21154:1 21159:1 21205:1 21208:1 21279:1 21319:1 21337:1 21361:1 21363:1 21371:1 21413:1 21441:1 21503:1 21512:1 21551:1 21556:1 21557:1 21559:1 21561:1 21576:1 21586:1 21612:3 21628:1 21630:1 21632:1 21637:3 21663:1 21671:1 21695:1 21697:3 21703:1 21707:1 21716:1 21760:3 21773:2 21787:1 21831:2 21844:1 21857:1 21869:1 21905:1 21923:1 21926:1 21934:1 21952:1 21998:1 22027:2 22043:1 22058:1 22065:1 22068:1 22080:1 22114:1 22173:1 22193:1 22242:1 22247:1 22379:1 22419:1 22462:1 22528:1 22548:1 22585:2 22593:1 22611:4 22669:2 22672:1 22693:1 22740:4 22755:1 22786:1 22801:1 22815:2 22817:1 22822:1 22831:1 22846:1 22894:2 22912:1 22916:1 22939:1 23006:2 23007:1 23039:1 23074:2 23088:1 23089:5 23113:1 23138:1 23248:3 23284:1 23305:3 23314:1 23324:1 23385:1 23404:1 23405:1 23430:6 23431:1 23432:1 23466:1 23476:1 23481:1 23490:1 23518:2 23541:1 23558:3 23586:3 23587:1 23610:1 23623:1 23645:2 23647:1 23719:1 23740:1 23758:1 23796:2 23797:2 23847:1 23849:1 23852:1 23853:1 23956:2 23961:1 23966:1 23967:1 23971:10 24000:1 24042:1 24049:1 24057:1 24101:1 24153:1 24162:1 24170:1 24225:1 24307:1 24315:1 24353:1 24379:1 24384:1 24393:1 24409:1 24411:1 24418:1 24421:1 24440:1 24455:1 24469:1 24473:1 24476:1 24479:1 24487:1 24491:1 24504:1 24523:1 24525:1 24535:1
20 25:1 34:1 37:1 76:1 88:1 105:1 112:1 162:1 216:1 218:1 240:3 276:1 296:1 314:1 339:1 407:2 441:1 489:1 510:1 565:1 568:1 778:1 795:1 805:1 814:2 828:1 833:1 834:1 838:2 857:1 888:3 889:3 946:1 948:2 952:1 960:1 967:1 989:1 1009:1 1015:1 1044:1 1078:1 1094:1 1108:1 1158:1 1208:1 1241:1 1258:1 1274:3 1293:1 1296:1 1297:1 1301:1 1311:2 1332:6 1343:1 1360:1 1381:9 1429:1 1436:1 1460:1 1476:1 1506:1 1507:4 1510:1 1546:1 1552:2 1568:1 1612:1 1619:2 1629:1 1641:1 1644:1 1663:1 1703:1 1719:1 1731:4 1763:1 1766:3 1775:1 1826:3 1846:1 1856:1 1875:1 1877:8 1879:1 1889:1 1891:1 1892:1 1898:1 1912:1 1942:1 1945:4 1952:1 1960:1 1961:1 1963:2 1965:2 1968:2 1973:1 1976:1 1981:2 2034:1 2038:1 2055:1 2115:1 2140:1 2164:1 2188:1 2222:1 2241:1 2253:1 2254:1 2272:1 2282:1 2308:1 2321:1 2325:2 2383:1 2405:1 2434:1 2451:3 2461:2 2462:5 2464:1 2480:2 2500:1 2507:7 2589:1 2597:2 2645:3 2678:1 2700:1 2718:1 2745:1 2753:1 2764:1 2802:2 2807:1 2826:2 2831:1 2898:1 2941:1 2948:1 3002:1 3059:1 3063:1 3090:1 3093:1 3118:1 3131:1 3135:1 3147:1 3183:1 3184:2 3221:3 3222:1 3234:1 3237:3 3288:1 3301:1 3306:1 3326:1 3328:1 3367:1 3369:1 3399:1 3408:1 3442:1 3481:1 3514:1 3572:1 3598:1 3622:1 3653:1 3661:1 3666:1 3678:1 3681:1 3710:1 3737:1 3770:1 3801:1 3845:1 3878:1 3889:1 3902:1 3904:1 3911:1 3939:1 3992:1 4003:1 4046:1 4047:1 4073:1 4091:1 4107:5 4159:1 4160:1 4192:3 4198:4 4211:2 4212:1 4229:1 4230:2 4231:1 4234:2 4248:1 4319:1 4323:1 4351:1 4384:1 4394:1 4409:2 4412:1 4420:1 4450:2 4464:1 4470:1 4498:2 4506:1 4529:1 4546:2 4561:1 4621:2 4633:2 4654:1 4662:1 4667:1 4673:1 4681:1 4689:3 4703:1 4757:1 4768:1 4823:1 4826:1 4854:1 4872:1 4958:1 4959:1 4986:1 5016:1 5049:2 5054:1 5075:1 5090:2 5100:2 5127:1 5187:2 5189:1 5192:1 5205:1 5263:1 5289:1 5308:1 5322:3 5337:1 5340:1 5347:1 5349:1 5350:2 5352:3 5396:1 5451:1 5488:1 5520:1 5592:1 5604:1 5609:1 5615:1 5616:2 5656:1 5663:1 5665:1 5668:1 5672:2 5674:1 5686:1 5689:1 5726:1 5783:1 5807:1 5808:1 5818:1 5819:1 5823:1 5837:1 5874:1 5890:1 5947:4 5948:1 5959:1 5970:1 6021:1 6035:1 6039:1 6040:1 6084:1 6096:1 6116:1 6130:1 6147:1 6175:3 6183:3 6201:1 6237:1 6241:1 6255:1 6269:1 6285:1 6286:1 6324:1 6359:1 6365:4 6382:1 6384:1 6387:1 6429:15 6449:4 6451:6 6460:1 6497:1 6501:1 6551:1 6619:1 6655:1 6669:2 6677:1 6680:1 6700:1 6771:1 6789:1 6806:1 6810:9 6841:1 6859:11 6906:1 6908:1 6926:1 7020:1 7038:2 7068:3 7084:1 7121:1 7156:1 7166:1 7170:2 7172:1 7177:1 7263:1 7305:1 7325:1 7384:1 7400:1 7409:2 7443:1 7451:1 7461:2 7505:1 7521:1 7526:1 7535:1 7573:2 7581:5 7594:1 7604:3 7615:1 7665:1 7686:1 7712:1 7731:1 7787:1 7790:1 7803:1 7805:1 7810:1 7878:1 7912:1 7944:1 7964:2 7988:1 8048:1 8061:1 8064:3 8067:1 8070:5 8080:3 8118:1 8138:1 8139:1 8162:1 8177:1 8189:1 8215:1 8222:1 8226:1 8285:1 8296:2 8304:2 8348:1 8352:1 8363:2 8382:1 8392:1 8444:1 8480:1 8532:1 8566:1 8574:1 8575:1 8684:1 8700:1 8736:1 8769:1 8778:2 8789:2 8802:2 8807:1 8814:1 8815:1 8818:1 8822:1 8828:1 8829:1 8832:1 8833:1 8840:1 8841:1 8881:1 8891:2 8897:1 8910:1 8914:3 8916:3 8975:1 8981:1 9001:3 9070:1 9080:1 9101:2 9102:1 9145:1 9193:1 9200:1 9202:1 9215:1 9222:1 9225:1 9252:5 9260:1 9282:1 9313:1 9317:1 9346:1 9359:3 9389:1 9433:1 9442:1 9472:1 9488:5 9536:1 9561:1 9563:2 9621:1 9653:4 9668:1 9682:1 9687:1 9695:1 9710:1 9716:1 9723:2 9727:1 9730:1 9762:1 9763:3 9778:3 9810:1 9822:1 9823:11 9881:1 9904:1 9918:2 9949:1 9974:2 9989:1 10001:1 10018:1 10037:1 10046:1 10053:1 10054:1 10079:1 10089:1 10095:1 10105:1 10118:1 10130:1 10151:2 10169:1 10225:1 10281:2 10364:2 10391:1 10430:1 10480:6 10502:1 10513:1 10531:1 10550:11 10556:1 10571:1 10598:1 10621:2 10652:1 10724:1 10725:1 10754:1 10787:1 10836:4 10847:1 10851:2 10870:1 10871:8 10874:1 10901:1 10942:1 10969:1 10970:8 10982:1 10985:14 11046:1 11065:1 11159:1 11163:1 11168:1 11277:1 11280:2 11287:1 11301:1 11311:1 11322:1 11340:1 11368:10 11375:1 11376:1 11406:1 11407:2 11408:1 11432:2 11447:1 11449:1 11459:1 11509:2 11531:2 11564:1 11607:1 11612:1 11613:1 11614:1 11638:1 11657:1 11697:2 11704:1 11718:1 11744:1 11777:1 11808:1 11813:1 11816:1 11825:1 11833:1 11855:1 11861:2 11910:1 11927:3 11942:1 11990:3 12006:1 12020:1 12035:1 12036:1 12045:1 12050:1 12054:1 12060:1 12089:1 12099:1 12105:1 12114:1 12141:1 12157:1 12173:1 12176:1 12218:1 12229:1 12263:2 12276:1 12303:1 12341:1 12372:1 12383:3 12387:1 12437:2 12525:1 12550:2 12582:3 12583:1 12584:1 12586:1 12630:1 12633:1 12689:1 12732:1 12739:1 12741:14 12766:1 12770:1 12778:1 12828:1 12877:1 12950:2 12956:1 12961:1 12981:1 12983:1 12984:1 12988:2 12995:1 12997:1 13000:1 13012:1 13030:2 13031:1 13069:1 13094:1 13095:1 13173:1 13207:1 13225:1 13259:1 13270:1 13292:1 13295:2 13328:3 13363:1 13371:1 13373:1 13378:1 13390:1 13405:1 13410:1 13430:1 13431:2 13437:2 13442:1 13444:1 13448:1 13453:1 13455:1 13459:2 13469:1 13482:3 13495:1 13570:1 13637:1 13670:1 13703:1 13719:1 13743:1 13746:1 13752:2 13758:1 13765:1 13767:1 13812:1 13819:1 13835:2 13837:3 13846:1 13868:1 13876:2 13895:1 13906:1 13924:2 13925:2 13928:9 13931:1 13965:2 13966:1 13972:2 13979:1 13994:1 14008:1 14031:1 14035:1 14039:2 14046:1 14077:1 14094:1 14100:1 14101:1 14114:1 14122:1 14125:1 14142:1 14154:1 14156:1 14178:1 14189:1 14207:1 14210:1 14223:1 14240:2 14307:1 14368:1 14393:1 14398:1 14403:1 14491:1 14516:1 14539:2 14553:1 14570:1 14575:1 14637:1 14677:5 14719:2 14740:1 14762:3 14764:1 14768:2 14774:1 14775:1 14803:1 14837:1 14844:3 14856:1 14864:1 14877:1 14885:1 14903:8 14929:1 14975:1 14981:1 15024:1 15035:1 15070:1 15116:1 15129:1 15139:1 15142:1 15147:1 15184:1 15205:1 15215:1 15282:2 15307:3 15312:2 15370:1 15389:1 15480:1063 15482:2 15496:3 15514:1 15543:1 15564:1 15575:1 15577:1 15583:2 15587:1 15633:1 15646:3 15655:1 15658:3 15662:1 15663:1 15684:1 15708:1 15723:1 15725:2 15834:2 15883:1 15898:1 15929:2 15936:1 15944:1 15949:1 15990:1 16009:1 16019:1 16042:2 16054:2 16074:2 16095:1 16102:1 16110:1 16117:1 16152:1 16159:1 16170:1 16177:1 16206:8 16212:1 16239:1 16332:1 16362:1 16380:1 16387:2 16408:1 16416:1 16432:2 16434:1 16443:1 16449:1 16479:1 16482:1 16485:1 16495:1 16522:2 16538:1 16548:1 16650:1 16661:1 16669:2 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:3 16763:2 16782:1 16795:1 16815:5 16823:3 16856:1 16861:1 16945:1 16965:1 16981:1 17001:1 17014:1 17043:1 17046:1 17050:1 17056:1 17058:2 17109:1 17138:1 17144:1 17163:1 17188:1 17221:1 17223:1 17238:1 17275:1 17305:1 17311:2 17329:1 17362:1 17380:1 17429:1 17437:3 17443:1 17452:1 17485:10 17491:2 17510:4 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17610:2 17648:1 17706:3 17735:1 17738:3 17747:2 17806:1 17812:1 17813:1 17835:2 17839:1 17851:1 17852:1 17916:1 17929:1 17943:1 17965:2 17993:2 17995:1 17996:2 18037:1 18043:1 18091:1 18092:1 18093:1 18130:1 18131:1 18186:1 18196:2 18197:2 18199:3 18204:1 18210:1 18228:1 18234:2 18244:1 18285:1 18296:1 18360:1 18366:2 18378:1 18434:1 18479:1 18491:1 18498:2 18511:1 18537:1 18565:1 18567:2 18573:2 18616:1 18619:1 18641:1 18643:1 18644:1 18686:1 18693:2 18727:2 18729:1 18739:2 18742:1 18776:1 18784:1 18803:1 18807:1 18843:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:1 18939:1 18941:2 18946:1 18948:1 18949:1 18965:1 18975:3 18976:1 18985:1 18990:3 19029:2 19033:1 19036:1 19096:1 19145:1 19156:2 19187:2 19193:1 19201:1 19213:1 19218:1 19225:1 19229:1 19233:1 19249:1 19365:1 19376:1 19406:1 19425:3 19431:1 19438:2 19446:1 19470:1 19480:1 19486:1 19493:1 19508:1 19523:1 19525:1 19532:1 19559:3 19562:1 19573:1 19580:1 19587:1 19615:3 19637:1 19638:1 19718:1 19810:1 19832:3 19901:1 19902:8 20013:1 20040:1 20051:1 20055:1 20063:1 20068:1 20076:1 20083:1 20084:6 20102:1 20107:1 20109:1 20139:1 20204:1 20266:1 20268:1 20270:1 20274:1 20275:1 20276:1 20287:1 20318:1 20327:1 20332:2 20343:1 20344:1 20360:1 20366:1 20378:3 20411:1 20412:1 20441:1 20447:1 20469:2 20480:1 20485:1 20490:1 20508:1 20567:1 20599:2 20651:1 20659:1 20663:1 20686:1 20738:1 20742:5 20751:1 20753:1 20762:1 20769:1 20785:1 20786:1 20847:1 20928:1 20930:4 20955:1 20958:1 20962:2 20964:1 20970:2 21007:1 21099:1 21111:1 21134:1 21139:1 21154:1 21159:1 21205:1 21208:1 21279:1 21319:1 21337:1 21361:1 21363:1 21371:1 21413:1 21441:1 21480:1 21503:1 21512:1 21551:1 21556:1 21557:1 21559:1 21561:1 21576:1 21586:1 21612:3 21628:1 21630:1 21632:1 21637:3 21663:1 21671:1 21693:1 21695:1 21697:3 21703:1 21707:1 21716:1 21760:3 21773:2 21787:1 21831:3 21844:1 21857:1 21869:1 21905:1 21923:1 21926:1 21934:1 21952:1 21974:1 21998:1 22027:2 22043:1 22058:1 22065:1 22068:1 22080:1 22108:1 22114:1 22173:1 22193:1 22242:1 22247:1 22379:1 22419:1 22462:1 22528:1 22548:1 22585:2 22593:1 22602:1 22611:4 22669:3 22672:1 22693:1 22740:4 22755:1 22760:1 22786:1 22801:1 22815:2 22817:1 22822:1 22831:1 22846:1 22894:2 22912:1 22916:1 22939:1 23006:2 23007:1 23039:1 23074:2 23088:1 23089:5 23113:1 23138:1 23248:3 23284:1 23305:3 23314:1 23324:1 23341:1 23385:1 23404:1 23405:1 23430:6 23431:1 23432:1 23466:1 23476:1 23481:1 23490:1 23518:2 23541:1 23546:1 23558:3 23586:3 23587:1 23610:1 23623:1 23645:2 23647:1 23719:1 23740:1 23758:1 23796:2 23797:3 23847:1 23849:1 23852:1 23853:1 23956:2 23961:1 23966:1 23967:1 23971:10 24000:1 24042:1 24049:1 24057:1 24101:1 24117:1 24153:1 24162:1 24170:1 24225:1 24307:1 24315:1 24341:1 24353:1 24379:1 24384:1 24393:1 24409:1 24411:1 24418:1 24421:1 24440:1 24455:1 24469:1 24473:1 24476:1 24479:1 24487:1 24491:1 24504:1 24523:1 24525:1 24535:1
20 25:1 30:1 34:1 37:1 76:1 88:1 105:1 112:1 162:1 216:1 218:1 240:3 276:1 296:1 314:1 339:1 407:2 441:1 489:1 510:1 565:1 568:1 752:1 762:1 778:1 795:1 805:1 814:2 828:1 833:1 834:2 838:2 857:1 888:3 889:3 946:1 948:2 952:1 960:1 967:1 989:1 1009:1 1015:1 1044:1 1078:1 1094:1 1108:1 1158:1 1208:1 1230:1 1241:1 1258:1 1274:3 1293:1 1296:1 1297:1 1301:1 1311:2 1332:6 1340:1 1343:1 1345:1 1352:1 1360:1 1381:9 1420:1 1429:1 1436:1 1460:1 1476:1 1506:1 1507:4 1510:1 1546:1 1552:2 1568:1 1612:1 1619:2 1629:1 1641:1 1644:1 1663:1 1703:1 1719:1 1731:4 1763:1 1766:3 1775:1 1782:1 1826:3 1846:1 1853:1 1856:1 1875:1 1877:8 1879:1 1889:1 1891:1 1892:1 1898:1 1909:1 1912:2 1942:1 1945:4 1948:1 1949:1 1952:1 1960:2 1961:1 1963:2 1965:2 1968:2 1973:1 1976:1 1981:2 2034:1 2038:1 2045:1 2055:1 2115:1 2140:1 2164:1 2188:1 2222:1 2241:1 2253:1 2254:1 2272:1 2282:1 2308:1 2321:1 2325:2 2383:1 2405:1 2409:1 2434:1 2451:3 2461:2 2462:6 2464:1 2480:2 2500:1 2507:7 2589:1 2597:2 2645:3 2678:1 2700:1 2718:1 2745:1 2753:1 2764:1 2802:2 2807:1 2826:2 2831:1 2853:1 2898:1 2941:1 2948:1 3002:1 3059:1 3063:1 3090:1 3093:1 3118:1 3131:1 3135:1 3147:1 3173:1 3183:1 3184:2 3221:3 3222:1 3234:1 3237:4 3288:1 3301:1 3306:1 3312:1 3326:1 3328:1 3367:1 3369:1 3399:1 3407:1 3408:1 3442:1 3481:1 3514:1 3572:1 3598:1 3622:1 3653:1 3661:1 3666:1 3678:1 3681:1 3710:1 3737:1 3770:1 3801:1 3845:1 3868:1 3878:1 3889:1 3902:1 3904:1 3911:1 3939:1 3992:1 4003:1 4046:1 4047:1 4073:1 4091:1 4107:5 4159:1 4160:1 4192:3 4198:4 4211:2 4212:1 4229:1 4230:2 4231:1 4234:2 4248:1 4319:1 4323:1 4351:1 4384:1 4391:1 4394:1 4409:2 4412:1 4420:1 4450:2 4464:1 4470:1 4498:2 4506:1 4529:1 4546:2 4561:1 4621:2 4633:2 4654:1 4662:1 4667:1 4673:1 4681:1 4689:3 4703:1 4729:1 4757:1 4768:1 4823:1 4826:1 4854:1 4872:1 4950:1 4953:1 4958:1 4959:1 4986:1 5016:1 5049:2 5054:1 5075:1 5090:2 5100:2 5127:1 5142:1 5187:2 5189:1 5192:1 5205:1 5263:1 5289:1 5308:1 5322:3 5337:1 5340:1 5347:1 5349:1 5350:2 5352:3 5396:1 5451:1 5488:1 5520:1 5592:1 5604:1 5609:1 5615:1 5616:2 5629:1 5656:1 5663:1 5665:1 5668:1 5672:2 5674:1 5686:1 5689:1 5703:1 5726:1 5783:2 5807:1 5808:1 5818:1 5819:1 5823:1 5837:1 5874:1 5878:1 5890:1 5947:4 5948:1 5959:1 5970:1 6021:1 6035:1 6039:1 6040:1 6084:1 6096:1 6116:1 6130:1 6147:1 6175:3 6183:3 6194:1 6201:1 6237:1 6241:1 6255:1 6261:1 6269:1 6285:1 6286:1 6289:1 6324:1 6332:1 6359:1 6365:4 6382:1 6384:1 6387:1 6429:17 6449:4 6451:6 6460:1 6497:2 6501:1 6551:1 6619:1 6655:1 6669:2 6677:1 6680:1 6700:1 6771:1 6785:1 6789:1 6806:1 6810:9 6816:1 6841:1 6859:13 6906:1 6908:1 6918:1 6926:1 7020:1 7038:2 7054:1 7068:3 7084:1 7121:1 7156:1 7157:1 7166:2 7170:2 7172:1 7177:1 7182:1 7263:1 7305:1 7325:1 7384:1 7400:1 7409:2 7443:1 7451:1 7461:2 7505:1 7521:1 7526:1 7535:1 7573:2 7581:5 7590:2 7594:1 7604:3 7615:1 7665:1 7686:1 7712:1 7731:1 7787:2 7790:1 7803:1 7805:1 7810:1 7878:1 7912:1 7944:1 7964:2 7988:1 8048:1 8061:1 8064:3 8067:1 8070:5 8080:3 8118:1 8121:1 8138:1 8139:1 8162:1 8177:1 8189:1 8215:1 8222:1 8226:1 8285:1 8296:2 8304:2 8348:1 8352:1 8363:2 8382:1 8392:1 8444:1 8480:1 8532:2 8566:1 8574:1 8575:1 8581:1 8684:1 8700:1 8736:1 8769:1 8778:2 8785:1 8789:2 8801:1 8802:2 8807:1 8814:1 8815:1 8818:1 8822:1 8824:1 8828:1 8829:1 8832:1 8833:1 8840:1 8841:1 8857:1 8881:1 8891:2 8897:1 8907:1 8910:1 8914:3 8916:3 8975:1 8981:1 8989:2 9001:3 9070:1 9080:1 9101:2 9102:1 9145:1 9193:1 9200:1 9202:1 9215:1 9222:1 9225:1 9252:5 9260:1 9282:1 9289:1 9313:1 9317:1 9346:1 9359:3 9363:1 9389:1 9433:1 9442:1 9459:1 9472:1 9486:1 9488:6 9536:1 9561:1 9563:2 9621:1 9653:4 9668:1 9682:1 9687:1 9695:1 9710:1 9716:1 9723:2 9727:1 9730:1 9762:1 9763:3 9778:3 9810:1 9822:1 9823:11 9880:1 9881:1 9904:1 9918:2 9923:1 9949:1 9974:2 9989:1 10001:1 10018:1 10037:1 10046:1 10053:1 10054:1 10074:1 10079:1 10089:1 10095:1 10105:1 10118:1 10130:1 10151:2 10169:1 10225:1 10281:2 10363:1 10364:2 10391:1 10413:1 10430:1 10480:6 10483:1 10487:1 10502:1 10513:1 10531:1 10550:11 10556:1 10571:1 10598:1 10621:2 10637:1 10652:1 10724:1 10725:1 10754:1 10787:1 10836:4 10847:1 10851:2 10870:1 10871:8 10874:1 10901:1 10942:1 10943:1 10969:1 10970:8 10982:1 10985:14 11046:1 11065:1 11087:1 11159:1 11163:1 11168:1 11275:1 11277:1 11280:2 11287:1 11301:2 11311:1 11322:1 11340:1 11368:10 11375:1 11376:1 11406:1 11407:2 11408:1 11432:2 11439:1 11447:1 11449:1 11459:1 11509:2 11512:1 11531:2 11564:1 11607:1 11612:1 11613:1 11614:1 11638:1 11657:1 11697:2 11704:1 11717:1 11718:1 11744:1 11777:1 11808:1 11813:1 11816:1 11825:1 11833:1 11855:1 11861:2 11910:1 11927:3 11942:1 11990:3 12006:1 12020:1 12035:1 12036:1 12045:1 12050:1 12054:1 12060:1 12089:1 12099:1 12105:1 12114:1 12141:1 12157:1 12173:1 12176:1 12218:1 12229:1 12263:2 12276:1 12303:1 12341:1 12372:1 12383:3 12387:1 12437:2 12525:1 12550:2 12582:3 12583:1 12584:1 12586:1 12630:1 12633:1 12667:1 12689:1 12732:1 12739:1 12741:15 12766:1 12770:1 12778:1 12822:1 12828:1 12877:1 12897:1 12950:2 12956:1 12958:1 12961:1 12981:1 12983:1 12984:1 12988:2 12995:1 12997:1 13000:1 13012:1 13030:2 13031:1 13069:1 13094:2 13095:1 13173:1 13207:1 13225:1 13259:1 13270:1 13292:1 13295:2 13328:3 13352:1 13363:1 13371:1 13373:1 13378:1 13390:1 13405:1 13410:1 13425:1 13430:1 13431:2 13435:1 13437:2 13442:1 13444:1 13448:1 13453:1 13455:1 13459:3 13469:1 13482:3 13495:1 13525:1 13570:1 13637:1 13670:1 13703:1 13719:1 13743:1 13746:1 13752:2 13758:1 13765:1 13767:1 13812:1 13819:1 13835:2 13837:3 13846:1 13868:1 13876:2 13895:1 13906:1 13924:2 13925:2 13928:9 13931:1 13965:2 13966:1 13972:2 13977:1 13979:2 13994:1 14003:1 14008:1 14031:1 14035:1 14039:2 14046:1 14052:1 14077:1 14094:1 14100:1 14101:1 14108:1 14114:1 14122:1 14124:1 14125:1 14142:1 14154:1 14156:1 14178:1 14189:1 14207:1 14210:1 14223:1 14240:2 14307:1 14368:1 14393:1 14398:1 14403:1 14491:1 14516:1 14539:2 14553:1 14570:1 14574:1 14575:1 14637:1 14677:5 14719:2 14740:1 14762:3 14764:1 14768:2 14774:1 14775:1 14781:1 14803:1 14833:1 14837:1 14844:3 14856:1 14864:1 14877:1 14885:1 14903:8 14929:1 14975:1 14981:1 15024:1 15035:1 15070:1 15116:1 15129:1 15139:1 15142:1 15147:1 15184:1 15205:1 15215:1 15282:2 15307:3 15312:2 15370:1 15389:1 15480:1133 15482:2 15496:3 15514:1 15543:1 15564:1 15575:1 15577:1 15583:2 15587:1 15602:1 15633:1 15646:3 15655:1 15658:3 15662:1 15663:1 15684:1 15708:1 15723:1 15725:2 15800:1 15834:2 15883:1 15898:1 15929:2 15936:1 15944:1 15949:1 15990:1 16009:1 16019:1 16042:2 16054:2 16074:3 16095:1 16102:2 16110:1 16117:1 16152:1 16159:1 16170:1 16177:1 16206:8 16212:1 16239:1 16332:1 16362:1 16380:1 16387:2 16402:1 16408:1 16416:1 16432:2 16434:1 16443:1 16449:1 16479:1 16482:1 16485:1 16495:1 16522:2 16538:1 16541:1 16548:1 16618:1 16650:1 16661:1 16669:3 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:3 16763:2 16768:1 16782:1 16795:1 16815:5 16823:3 16856:1 16861:1 16908:1 16945:1 16947:1 16965:1 16981:1 17001:1 17014:2 17043:1 17046:1 17050:1 17056:1 17058:2 17109:1 17138:1 17144:1 17163:1 17188:1 17221:1 17223:1 17238:1 17275:1 17305:1 17311:2 17329:1 17362:1 17380:1 17429:1 17437:3 17443:1 17452:1 17485:10 17491:2 17510:4 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17610:2 17648:1 17706:3 17735:1 17738:3 17747:2 17806:1 17812:1 17813:1 17835:2 17839:1 17851:1 17852:1 17893:1 17916:1 17929:1 17943:1 17965:2 17993:2 17995:1 17996:2 18037:1 18043:1 18091:1 18092:1 18093:1 18130:1 18131:1 18186:1 18196:2 18197:2 18199:3 18204:1 18210:1 18228:1 18234:2 18244:1 18249:1 18285:1 18296:1 18339:1 18360:1 18366:2 18378:1 18421:1 18434:1 18479:1 18491:1 18498:2 18511:1 18537:1 18565:1 18567:2 18573:2 18616:1 18619:1 18641:1 18643:1 18644:1 18686:1 18693:2 18727:2 18729:1 18739:2 18742:1 18776:1 18784:1 18803:1 18807:1 18820:1 18843:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:1 18939:1 18941:2 18943:1 18946:1 18948:1 18949:1 18965:1 18975:3 18976:1 18985:1 18990:3 19029:2 19033:1 19036:1 19070:1 19096:1 19134:1 19145:1 19156:2 19187:2 19193:1 19201:1 19213:1 19218:1 19225:1 19229:1 19233:1 19249:1 19278:1 19365:1 19376:1 19406:1 19425:3 19427:1 19431:1 19438:2 19446:1 19470:1 19480:1 19486:1 19493:1 19508:1 19523:1 19525:1 19532:1 19559:3 19562:1 19573:1 19580:1 19587:1 19615:3 19637:1 19638:1 19644:1 19718:1 19810:1 19832:3 19901:1 19902:8 20013:1 20040:1 20051:1 20055:1 20063:1 20068:1 20076:1 20083:1 20084:6 20087:1 20102:1 20107:1 20109:1 20126:1 20139:1 20204:1 20266:1 20268:1 20270:1 20274:1 20275:1 20276:1 20281:1 20287:1 20318:1 20327:1 20332:2 20337:1 20343:1 20344:1 20360:1 20366:1 20378:3 20411:1 20412:1 20441:1 20447:1 20469:2 20480:1 20485:1 20490:1 20508:1 20567:1 20599:2 20651:1 20659:1 20663:1 20686:2 20738:1 20742:5 20751:1 20753:1 20755:1 20762:1 20769:1 20785:1 20786:1 20847:1 20928:1 20930:4 20955:1 20958:1 20962:2 20964:1 20970:2 20993:1 21007:1 21099:1 21111:1 21134:1 21139:1 21154:1 21159:1 21205:1 21208:1 21279:1 21319:1 21337:1 21361:1 21363:1 21371:1 21413:1 21441:1 21480:2 21503:1 21512:1 21551:1 21556:1 21557:1 21559:1 21561:1 21576:1 21586:1 21612:3 21628:1 21630:1 21632:1 21637:3 21663:1 21671:1 21693:1 21695:1 21697:3 21703:1 21707:1 21716:1 21760:3 21761:1 21773:2 21787:1 21831:3 21844:1 21857:1 21869:2 21905:1 21923:1 21926:1 21934:1 21952:1 21974:1 21998:1 22001:1 22027:2 22043:1 22058:1 22065:1 22068:1 22080:1 22108:1 22114:1 22124:1 22138:1 22173:1 22193:1 22208:1 22242:1 22247:1 22379:1 22390:1 22419:1 22462:1 22511:1 22528:1 22548:1 22562:1 22585:2 22593:1 22602:1 22611:4 22669:3 22672:1 22693:1 22740:4 22755:1 22760:1 22786:1 22801:2 22815:2 22817:1 22822:1 22831:1 22846:1 22894:2 22912:1 22916:1 22939:1 22942:1 23006:2 23007:1 23039:1 23050:1 23074:2 23088:1 23089:5 23113:1 23138:1 23206:1 23248:3 23284:1 23305:3 23314:1 23324:1 23341:1 23360:1 23385:1 23404:1 23405:1 23430:9 23431:1 23432:1 23466:1 23476:1 23481:1 23490:1 23518:2 23541:1 23546:1 23558:3 23586:3 23587:1 23610:1 23623:1 23645:2 23647:1 23719:1 23740:1 23758:1 23796:3 23797:3 23847:1 23849:1 23852:1 23853:1 23956:2 23961:1 23966:1 23967:1 23971:10 24000:1 24042:1 24049:1 24057:1 24101:1 24117:1 24153:1 24162:1 24170:1 24225:1 24307:1 24315:1 24341:1 24353:1 24379:1 24384:1 24393:1 24409:1 24411:1 24418:1 24421:1 24440:1 24449:1 24455:1 24469:1 24473:1 24476:1 24479:1 24480:1 24487:1 24491:1 24504:1 24523:1 24525:1 24535:1
20 25:1 29:1 30:1 34:1 37:1 76:1 88:1 105:1 112:1 162:1 216:1 218:1 240:3 276:1 296:1 314:1 339:1 407:2 441:1 489:1 510:1 565:1 568:1 752:1 762:1 778:1 785:1 795:1 805:1 814:2 828:1 833:1 834:3 838:2 857:1 869:2 888:3 889:3 906:1 946:1 948:2 952:1 960:1 967:1 989:1 1009:1 1015:1 1044:1 1078:1 1094:1 1095:1 1108:1 1158:1 1208:1 1230:1 1241:1 1257:1 1258:1 1274:3 1293:1 1296:1 1297:1 1301:1 1311:3 1328:1 1332:6 1340:1 1343:1 1345:1 1352:1 1353:1 1360:1 1381:9 1420:1 1429:1 1436:1 1460:1 1476:1 1506:1 1507:4 1510:1 1517:1 1546:1 1552:2 1568:1 1612:1 1619:2 1629:1 1641:1 1644:1 1661:1 1663:1 1703:1 1719:1 1731:4 1763:1 1766:3 1775:1 1782:1 1826:3 1846:1 1853:1 1856:1 1875:1 1877:8 1879:1 1889:1 1891:1 1892:2 1898:1 1909:1 1912:2 1942:1 1945:4 1948:1 1949:1 1952:1 1960:2 1961:1 1963:2 1965:2 1968:2 1973:1 1976:1 1981:2 2034:1 2038:1 2045:1 2055:1 2115:1 2140:1 2164:1 2188:1 2222:1 2241:1 2253:1 2254:1 2272:1 2282:1 2308:1 2321:1 2325:2 2383:1 2393:1 2405:1 2409:1 2434:1 2451:3 2461:2 2462:6 2464:1 2480:2 2491:1 2500:1 2507:7 2589:1 2597:2 2645:3 2678:1 2700:1 2718:1 2745:1 2753:1 2764:1 2802:2 2807:1 2826:2 2831:1 2853:1 2876:1 2898:1 2941:1 2948:1 3002:1 3059:1 3063:1 3090:1 3093:1 3118:1 3129:1 3131:1 3135:1 3136:1 3147:1 3173:1 3183:1 3184:2 3221:3 3222:1 3234:1 3237:4 3288:1 3301:1 3306:1 3312:2 3326:1 3328:1 3355:1 3367:1 3369:1 3399:1 3407:1 3408:1 3442:1 3481:1 3495:1 3514:1 3572:1 3598:1 3622:1 3653:1 3661:1 3666:1 3678:1 3681:1 3710:1 3737:1 3770:1 3801:1 3845:1 3868:1 3878:1 3889:1 3902:1 3904:1 3911:1 3939:1 3992:1 4003:1 4046:1 4047:1 4073:1 4091:1 4107:5 4159:1 4160:1 4192:3 4198:4 4211:2 4212:1 4228:1 4229:1 4230:2 4231:2 4234:2 4248:1 4319:1 4323:1 4351:1 4384:1 4391:1 4394:1 4409:2 4412:1 4420:1 4450:2 4464:1 4470:1 4498:2 4506:1 4529:1 4546:2 4561:1 4621:2 4633:2 4654:1 4662:1 4667:1 4673:1 4681:1 4689:3 4703:1 4729:1 4757:1 4768:1 4823:1 4826:1 4854:1 4872:1 4950:1 4953:1 4958:1 4959:1 4986:1 5016:1 5049:2 5054:1 5075:1 5090:2 5100:2 5127:1 5130:1 5142:1 5187:2 5189:1 5192:1 5205:1 5247:1 5263:1 5276:1 5289:1 5308:1 5322:3 5337:1 5340:1 5342:1 5347:1 5349:1 5350:2 5352:3 5396:1 5451:1 5488:1 5520:1 5592:1 5604:1 5609:1 5615:1 5616:2 5625:1 5629:1 5656:1 5663:1 5665:1 5668:1 5672:2 5674:1 5686:1 5688:1 5689:1 5703:1 5726:1 5783:2 5807:1 5808:1 5818:1 5819:1 5823:1 5837:1 5874:1 5878:1 5890:1 5917:1 5947:4 5948:1 5959:1 5970:1 6021:1 6035:1 6039:1 6040:1 6084:1 6096:1 6116:1 6130:1 6147:1 6175:3 6183:3 6192:1 6194:1 6201:1 6237:1 6241:1 6255:1 6261:1 6269:1 6285:1 6286:1 6289:1 6324:1 6332:1 6359:1 6365:4 6382:1 6384:1 6386:2 6387:1 6429:17 6449:4 6451:6 6460:1 6497:2 6501:1 6551:1 6619:1 6655:1 6669:2 6677:1 6680:1 6700:1 6771:1 6785:1 6789:1 6806:1 6810:9 6816:1 6841:1 6859:13 6882:1 6906:1 6908:1 6918:1 6926:1 7020:1 7030:1 7038:2 7054:1 7068:3 7084:1 7121:1 7125:1 7156:1 7157:1 7166:2 7170:2 7172:1 7177:1 7182:2 7263:1 7305:1 7325:1 7384:1 7400:1 7409:2 7443:1 7451:1 7461:2 7505:1 7521:1 7526:1 7535:1 7573:2 7581:5 7590:2 7594:1 7604:3 7615:1 7665:1 7686:1 7712:1 7731:1 7787:2 7790:1 7803:1 7805:1 7810:1 7878:1 7912:1 7944:1 7964:2 7988:1 8048:1 8061:1 8064:3 8067:1 8070:5 8080:3 8118:1 8121:1 8138:1 8139:1 8162:2 8177:1 8189:1 8215:1 8222:1 8226:1 8285:1 8296:2 8304:2 8348:1 8352:1 8363:2 8382:1 8392:1 8443:1 8444:1 8480:1 8532:2 8566:1 8574:1 8575:1 8581:1 8617:1 8684:1 8700:1 8736:2 8760:1 8769:1 8778:2 8785:1 8789:2 8801:1 8802:2 8807:1 8814:1 8815:1 8818:1 8822:1 8824:1 8828:1 8829:1 8832:1 8833:1 8840:1 8841:1 8857:1 8881:1 8891:2 8897:1 8907:1 8910:1 8914:3 8916:3 8949:1 8975:1 8981:1 8989:2 9001:3 9070:1 9080:1 9101:2 9102:1 9145:1 9193:1 9200:1 9202:1 9215:1 9222:1 9225:1 9252:5 9260:1 9282:1 9289:1 9313:1 9317:1 9346:1 9359:3 9363:1 9389:1 9411:1 9433:1 9442:1 9459:1 9472:1 9486:1 9488:6 9536:1 9561:1 9563:2 9621:1 9653:4 9668:1 9682:1 9687:1 9695:1 9710:1 9716:1 9723:2 9727:1 9730:1 9762:1 9763:3 9772:1 9778:3 9810:1 9822:1 9823:11 9880:1 9881:1 9904:1 9918:2 9923:2 9949:1 9974:2 9989:1 10001:1 10018:1 10037:1 10046:1 10053:1 10054:1 10074:1 10079:1 10089:1 10095:1 10105:1 10118:1 10130:1 10146:1 10151:2 10169:1 10225:1 10233:1 10265:1 10281:2 10337:1 10363:1 10364:2 10391:1 10413:1 10430:1 10480:6 10483:1 10487:1 10502:1 10513:1 10531:1 10550:11 10556:1 10571:1 10598:1 10621:2 10637:1 10652:1 10724:1 10725:1 10754:1 10787:1 10836:4 10844:1 10846:1 10847:1 10851:2 10861:1 10870:1 10871:8 10874:1 10901:1 10923:1 10942:1 10943:1 10969:1 10970:8 10982:1 10985:14 11046:1 11065:1 11087:1 11159:1 11163:1 11168:1 11275:1 11277:1 11280:2 11287:1 11301:2 11311:1 11322:1 11340:1 11368:10 11375:1 11376:1 11406:1 11407:2 11408:1 11432:2 11439:1 11447:1 11449:1 11459:1 11509:3 11512:1 11531:2 11564:1 11607:1 11612:1 11613:1 11614:1 11638:1 11657:1 11697:2 11704:1 11717:1 11718:1 11744:1 11777:1 11788:1 11806:1 11808:1 11813:1 11816:1 11825:1 11833:1 11855:1 11861:2 11910:1 11927:3 11942:1 11990:3 12006:1 12020:1 12035:1 12036:1 12045:1 12050:1 12054:1 12060:1 12089:1 12099:1 12105:1 12114:1 12141:1 12157:1 12173:1 12176:1 12218:1 12229:1 12263:2 12276:1 12303:1 12341:1 12372:1 12383:3 12387:1 12437:2 12525:1 12550:2 12582:3 12583:1 12584:1 12586:1 12630:1 12633:1 12667:1 12689:1 12732:1 12739:1 12741:16 12766:1 12770:1 12778:1 12822:1 12828:1 12877:1 12897:1 12950:2 12956:1 12958:1 12959:1 12961:1 12981:1 12983:1 12984:1 12988:2 12995:1 12997:1 13000:1 13012:1 13030:2 13031:1 13069:1 13094:2 13095:1 13113:1 13173:1 13207:1 13225:1 13246:1 13259:1 13270:1 13292:1 13295:2 13328:3 13352:1 13363:1 13371:1 13373:1 13378:1 13390:1 13405:1 13410:1 13425:1 13430:1 13431:2 13435:1 13437:2 13442:1 13444:1 13448:1 13453:1 13455:1 13459:3 13469:1 13482:3 13495:1 13525:1 13570:1 13637:1 13670:1 13703:1 13719:1 13743:1 13746:1 13752:2 13758:1 13765:1 13767:1 13812:1 13819:1 13826:1 13835:2 13837:3 13846:1 13868:1 13876:2 13895:1 13906:1 13924:2 13925:2 13928:9 13931:1 13965:2 13966:1 13970:1 13972:2 13977:1 13979:2 13994:1 14003:1 14008:1 14031:1 14035:1 14039:2 14046:1 14052:1 14077:1 14094:1 14100:1 14101:1 14108:1 14114:1 14122:1 14124:1 14125:1 14142:1 14154:1 14156:1 14178:1 14189:1 14200:1 14207:1 14210:1 14223:1 14240:2 14307:1 14368:1 14393:1 14398:1 14403:1 14491:1 14516:1 14539:2 14553:1 14570:1 14574:1 14575:1 14585:1 14637:1 14677:5 14719:2 14740:1 14762:3 14764:1 14768:2 14774:1 14775:1 14781:1 14803:1 14830:1 14833:1 14837:1 14844:3 14853:1 14856:1 14864:1 14877:1 14885:1 14903:8 14929:1 14975:1 14981:1 15024:1 15035:1 15070:1 15080:1 15116:1 15129:1 15139:1 15142:1 15147:2 15184:1 15205:1 15215:1 15282:2 15307:3 15312:2 15370:1 15389:1 15480:1224 15482:2 15496:3 15514:1 15543:1 15564:1 15575:1 15577:1 15583:2 15587:1 15602:1 15633:1 15646:3 15655:1 15658:3 15662:1 15663:1 15684:1 15708:1 15723:1 15725:2 15800:1 15834:3 15883:1 15898:1 15929:2 15936:1 15944:1 15949:1 15990:1 16009:1 16019:1 16042:2 16054:2 16074:3 16095:1 16102:2 16110:1 16117:1 16152:1 16159:1 16170:1 16177:1 16206:8 16212:1 16239:1 16332:1 16362:1 16380:1 16387:2 16402:1 16408:1 16416:1 16432:2 16434:1 16443:1 16449:1 16479:1 16482:1 16485:1 16495:1 16522:2 16538:1 16541:1 16548:1 16618:1 16650:1 16661:1 16669:3 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:3 16763:2 16768:1 16782:1 16795:1 16797:1 16815:5 16823:3 16856:1 16861:1 16908:1 16945:1 16947:1 16965:2 16981:1 17001:1 17014:2 17027:1 17043:1 17046:1 17050:1 17056:1 17058:2 17109:1 17138:1 17144:1 17163:1 17188:1 17221:1 17223:1 17238:1 17275:1 17305:1 17311:2 17329:1 17352:1 17362:1 17380:1 17429:1 17437:3 17443:1 17452:1 17485:10 17491:2 17510:4 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17610:2 17648:1 17706:3 17735:1 17738:3 17747:2 17806:1 17812:1 17813:1 17835:2 17839:1 17851:1 17852:1 17884:1 17893:1 17916:1 17929:1 17943:1 17965:2 17993:2 17995:1 17996:2 18037:1 18043:1 18091:1 18092:1 18093:1 18130:1 18131:1 18186:1 18196:2 18197:2 18199:3 18204:1 18210:1 18228:1 18231:1 18234:2 18244:1 18249:1 18264:1 18285:1 18296:1 18339:1 18360:1 18366:2 18378:1 18421:1 18434:1 18479:1 18491:1 18498:2 18506:1 18511:1 18537:1 18565:1 18567:2 18573:2 18616:1 18619:1 18641:1 18643:1 18644:1 18666:1 18686:1 18693:2 18727:2 18729:1 18739:2 18742:1 18776:1 18784:1 18803:1 18807:1 18820:1 18843:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:1 18939:1 18941:2 18943:1 18946:1 18948:1 18949:1 18965:1 18975:3 18976:1 18978:1 18985:1 18990:3 19029:2 19033:1 19036:1 19070:1 19096:1 19134:1 19145:1 19156:2 19187:2 19193:1 19201:1 19213:1 19218:1 19225:1 19229:1 19233:1 19249:1 19278:1 19365:1 19376:1 19406:1 19425:3 19427:1 19431:1 19438:2 19446:1 19470:1 19480:1 19486:1 19493:1 19508:1 19523:1 19525:1 19532:1 19559:3 19562:1 19573:1 19580:1 19587:1 19615:3 19637:1 19638:1 19644:1 19718:1 19746:1 19810:1 19832:3 19901:1 19902:8 19974:1 20013:1 20040:1 20051:1 20055:1 20063:1 20068:1 20076:1 20083:2 20084:6 20087:1 20102:1 20107:1 20109:1 20126:1 20139:1 20204:1 20266:1 20268:1 20270:1 20274:1 20275:1 20276:1 20281:1 20287:1 20318:1 20327:1 20332:2 20337:1 20343:1 20344:1 20360:1 20366:1 20378:3 20393:1 20411:1 20412:1 20441:1 20447:1 20469:2 20480:1 20485:1 20490:1 20493:1 20508:1 20567:1 20599:2 20651:1 20659:1 20663:1 20686:2 20738:1 20742:5 20751:1 20753:1 20755:1 20762:1 20769:1 20785:1 20786:1 20847:1 20928:1 20930:4 20955:1 20958:1 20962:2 20964:1 20970:2 20993:1 21007:1 21099:1 21111:1 21134:1 21139:1 21154:1 21159:1 21205:1 21208:1 21245:1 21279:1 21319:1 21337:1 21361:1 21363:1 21364:1 21371:1 21413:1 21441:1 21480:2 21503:1 21512:1 21551:1 21556:1 21557:1 21559:1 21561:1 21576:1 21586:1 21612:3 21628:1 21630:1 21632:1 21637:3 21663:1 21665:1 21671:1 21693:1 21695:1 21697:3 21703:1 21707:1 21716:1 21760:3 21761:1 21773:2 21787:1 21831:3 21844:1 21857:1 21869:2 21905:1 21923:1 21926:1 21934:1 21952:1 21974:1 21998:1 22001:1 22013:1 22027:2 22043:1 22058:1 22065:1 22068:1 22080:1 22108:1 22114:1 22124:1 22138:1 22173:1 22193:1 22208:1 22242:1 22247:1 22379:1 22390:1 22394:1 22419:1 22429:1 22462:1 22511:1 22528:1 22548:1 22562:1 22585:2 22593:1 22602:1 22611:4 22669:3 22672:1 22693:1 22740:4 22755:1 22760:1 22786:1 22801:2 22815:2 22817:1 22822:1 22831:1 22846:1 22894:2 22912:1 22916:1 22939:1 22942:1 23006:2 23007:1 23039:1 23050:1 23074:2 23088:1 23089:5 23113:1 23138:1 23206:1 23248:3 23284:1 23305:3 23314:1 23324:1 23341:1 23360:1 23385:1 23404:1 23405:1 23430:10 23431:1 23432:1 23466:2 23476:1 23481:1 23490:1 23518:2 23527:1 23541:1 23546:1 23558:3 23586:3 23587:1 23610:1 23623:1 23645:2 23647:1 23719:1 23740:1 23758:1 23784:1 23796:3 23797:3 23847:1 23849:1 23852:1 23853:2 23956:2 23961:1 23966:1 23967:1 23971:10 24000:1 24042:1 24049:1 24057:1 24101:1 24117:1 24139:1 24153:1 24162:1 24170:1 24225:1 24307:1 24315:1 24341:1 24347:1 24353:1 24379:1 24384:1 24393:1 24409:1 24411:1 24418:1 24421:1 24438:1 24440:1 24449:1 24455:1 24469:1 24473:1 24476:1 24479:1 24480:1 24487:1 24491:1 24504:1 24523:1 24525:2 24535:1
20 25:1 29:1 30:1 34:1 37:1 76:1 88:1 105:1 112:1 162:1 216:1 218:1 240:3 276:1 296:1 314:1 339:1 407:2 441:1 489:1 510:1 565:1 566:1 568:1 752:2 762:1 778:1 785:1 795:1 805:1 814:2 828:1 833:1 834:3 838:2 857:1 869:2 888:3 889:3 906:1 946:1 948:2 952:1 960:1 967:1 989:1 1009:1 1015:1 1044:1 1078:1 1094:1 1095:1 1108:1 1158:1 1208:1 1230:2 1241:1 1257:1 1258:1 1259:2 1274:3 1293:1 1296:1 1297:1 1301:1 1311:3 1328:1 1330:2 1332:6 1340:1 1343:1 1345:1 1352:1 1353:1 1360:1 1381:9 1420:1 1429:1 1436:1 1460:1 1476:1 1506:1 1507:4 1510:1 1517:1 1546:1 1552:2 1568:1 1612:1 1619:2 1629:1 1641:1 1644:1 1661:1 1663:1 1703:1 1719:1 1731:4 1763:1 1766:3 1775:1 1782:1 1826:3 1846:1 1853:2 1856:1 1875:1 1877:8 1879:1 1889:1 1891:1 1892:2 1898:1 1909:1 1912:2 1942:1 1945:4 1948:2 1949:1 1952:1 1960:2 1961:1 1963:2 1965:2 1968:2 1973:1 1976:1 1981:2 2034:1 2038:1 2045:1 2055:1 2115:1 2140:1 2164:1 2188:1 2222:1 2241:1 2253:1 2254:1 2272:1 2282:1 2308:1 2321:1 2325:2 2383:1 2393:1 2405:1 2409:1 2434:1 2451:3 2461:2 2462:7 2464:1 2480:2 2491:1 2500:1 2507:7 2589:1 2597:2 2645:3 2678:1 2700:1 2718:1 2745:1 2753:1 2764:1 2802:2 2807:1 2826:2 2831:1 2853:1 2876:1 2898:1 2941:1 2948:1 3002:1 3059:1 3063:1 3090:1 3093:1 3095:1 3118:1 3129:1 3131:1 3135:1 3136:1 3147:1 3173:2 3183:1 3184:2 3221:3 3222:1 3234:1 3237:4 3288:1 3301:1 3306:1 3312:2 3326:1 3328:1 3355:1 3367:1 3369:1 3399:1 3407:2 3408:1 3442:1 3481:1 3495:1 3514:1 3572:1 3598:1 3622:1 3653:1 3661:1 3666:1 3678:1 3681:1 3710:1 3737:1 3770:1 3801:1 3832:1 3845:1 3868:1 3878:1 3889:1 3902:1 3904:1 3911:1 3939:1 3992:1 4003:1 4046:1 4047:1 4073:1 4091:1 4107:5 4159:1 4160:1 4192:3 4198:4 4211:2 4212:1 4228:1 4229:1 4230:2 4231:2 4234:2 4248:1 4319:1 4323:1 4351:1 4364:1 4368:1 4384:1 4391:1 4394:1 4409:2 4412:1 4420:1 4450:2 4464:1 4470:1 4498:2 4506:1 4529:1 4546:2 4561:1 4621:2 4633:2 4654:1 4662:1 4667:1 4673:1 4681:1 4689:3 4703:1 4729:1 4741:1 4757:1 4768:1 4823:1 4826:1 4836:2 4854:1 4872:1 4950:2 4953:2 4958:1 4959:1 4986:1 4994:1 5016:1 5049:2 5054:1 5075:1 5090:2 5100:2 5127:1 5130:1 5142:1 5187:2 5189:1 5192:1 5205:1 5217:1 5247:1 5263:1 5276:1 5289:1 5308:1 5310:1 5322:3 5337:1 5340:2 5342:1 5347:2 5349:1 5350:2 5352:3 5396:1 5426:1 5437:1 5451:1 5488:1 5520:1 5592:1 5604:1 5609:1 5615:1 5616:2 5625:1 5629:2 5656:1 5663:1 5665:1 5668:1 5672:2 5674:1 5686:1 5688:1 5689:1 5703:1 5726:1 5783:3 5807:1 5808:1 5818:1 5819:1 5823:1 5837:1 5874:1 5878:2 5890:1 5917:1 5930:1 5947:5 5948:1 5959:1 5970:1 6021:1 6035:1 6039:1 6040:1 6084:1 6096:1 6116:1 6130:1 6147:1 6175:3 6183:3 6192:1 6194:1 6201:1 6237:2 6241:1 6255:1 6261:1 6269:1 6285:1 6286:1 6289:1 6324:1 6332:1 6359:1 6365:4 6382:1 6384:1 6386:2 6387:1 6429:17 6449:4 6451:6 6460:1 6486:1 6497:2 6501:1 6551:1 6619:1 6655:1 6669:2 6677:1 6680:1 6700:1 6771:1 6785:1 6789:1 6806:1 6810:9 6816:1 6841:1 6859:14 6882:1 6906:1 6908:1 6918:1 6926:1 7020:1 7030:1 7038:2 7054:1 7068:3 7084:1 7121:1 7125:1 7156:1 7157:2 7166:3 7170:2 7172:1 7177:1 7182:3 7263:1 7305:1 7325:1 7384:1 7400:1 7409:2 7443:1 7451:1 7461:2 7505:1 7521:1 7526:1 7535:1 7573:2 7581:5 7590:4 7594:1 7604:3 7615:1 7665:1 7686:1 7712:1 7731:1 7787:2 7790:1 7803:1 7805:1 7810:1 7878:1 7912:1 7943:1 7944:1 7964:2 7988:1 8048:1 8061:1 8064:3 8067:1 8070:5 8080:3 8118:1 8121:1 8138:1 8139:1 8162:4 8177:1 8189:1 8215:1 8222:1 8226:1 8285:1 8296:2 8304:2 8348:1 8352:1 8363:2 8382:1 8392:1 8443:1 8444:1 8480:1 8532:2 8566:1 8574:1 8575:1 8581:2 8617:1 8679:1 8684:1 8700:1 8736:2 8760:1 8769:1 8778:2 8785:1 8789:2 8801:2 8802:2 8807:1 8809:1 8814:1 8815:1 8818:1 8822:1 8824:1 8828:1 8829:1 8832:1 8833:1 8840:1 8841:1 8857:1 8881:1 8891:2 8897:1 8907:1 8910:1 8914:3 8916:3 8949:1 8975:1 8981:1 8989:4 9001:3 9070:1 9080:1 9101:2 9102:1 9145:1 9193:1 9200:1 9202:1 9215:1 9222:1 9225:1 9252:5 9260:1 9282:1 9289:1 9313:1 9317:1 9346:1 9359:3 9363:2 9389:1 9411:1 9424:1 9433:1 9442:1 9459:1 9472:1 9486:2 9488:6 9536:1 9543:1 9561:1 9563:2 9621:1 9653:4 9668:1 9682:1 9687:1 9695:1 9710:1 9716:1 9723:2 9727:1 9730:1 9762:1 9763:3 9772:1 9778:4 9810:1 9822:1 9823:11 9880:1 9881:1 9904:1 9918:2 9923:3 9949:1 9974:2 9989:1 10001:1 10018:1 10037:1 10046:1 10053:1 10054:1 10074:1 10079:1 10089:1 10095:1 10105:1 10118:1 10130:1 10146:1 10151:2 10169:1 10225:1 10233:1 10265:1 10281:2 10337:1 10363:1 10364:2 10391:1 10413:1 10430:1 10480:6 10483:1 10487:2 10502:1 10513:1 10531:1 10550:11 10556:1 10571:1 10576:2 10598:1 10621:2 10637:1 10652:1 10724:1 10725:1 10733:1 10739:1 10754:1 10787:1 10836:4 10844:1 10846:1 10847:1 10851:2 10861:1 10870:1 10871:8 10874:1 10901:1 10923:1 10942:1 10943:1 10969:1 10970:8 10982:1 10985:14 11046:1 11065:1 11087:1 11101:1 11159:2 11163:1 11168:1 11275:1 11277:1 11280:2 11287:1 11301:2 11311:1 11322:1 11340:1 11342:1 11368:10 11375:1 11376:1 11406:1 11407:2 11408:1 11432:2 11439:1 11447:1 11449:1 11459:1 11509:3 11512:2 11531:2 11564:1 11607:1 11612:1 11613:1 11614:1 11638:1 11657:1 11697:2 11704:1 11717:1 11718:1 11744:1 11777:1 11788:1 11806:1 11808:1 11813:1 11816:1 11825:1 11833:1 11855:1 11861:2 11902:1 11910:1 11927:3 11942:1 11990:3 12006:1 12020:1 12035:1 12036:1 12045:1 12050:1 12054:1 12060:1 12089:1 12099:1 12105:1 12114:1 12141:1 12157:1 12173:1 12176:1 12218:1 12229:1 12263:2 12276:1 12303:1 12341:1 12372:1 12383:3 12387:1 12437:2 12525:1 12550:2 12582:3 12583:1 12584:1 12586:1 12630:1 12633:1 12667:1 12689:1 12732:1 12739:1 12741:16 12766:1 12770:1 12778:1 12822:1 12828:1 12877:1 12897:1 12950:2 12956:1 12958:2 12959:1 12961:1 12981:1 12983:1 12984:1 12988:2 12995:1 12997:1 13000:1 13012:1 13030:2 13031:1 13069:1 13094:3 13095:1 13113:1 13173:1 13207:1 13225:1 13246:1 13259:1 13270:1 13292:1 13295:2 13328:3 13352:1 13363:1 13371:1 13373:1 13378:1 13390:1 13405:1 13410:1 13425:1 13430:1 13431:2 13435:1 13437:2 13442:1 13444:1 13448:1 13453:1 13455:1 13459:4 13469:1 13482:3 13495:1 13525:2 13570:1 13637:1 13670:1 13703:1 13719:1 13743:1 13746:1 13752:2 13758:1 13765:1 13766:1 13767:1 13812:1 13819:1 13826:1 13835:2 13837:3 13846:1 13868:1 13876:2 13895:1 13906:1 13924:2 13925:2 13928:9 13931:1 13965:2 13966:1 13970:1 13972:2 13977:2 13979:2 13994:1 14003:2 14008:1 14031:1 14035:1 14039:2 14046:1 14052:2 14077:1 14094:1 14100:1 14101:1 14108:1 14114:1 14118:1 14122:1 14124:1 14125:1 14142:1 14154:1 14156:1 14178:1 14189:1 14200:1 14207:1 14210:1 14223:1 14240:2 14307:1 14368:1 14393:1 14398:1 14403:1 14491:1 14516:1 14539:2 14544:1 14553:1 14570:1 14574:1 14575:1 14585:1 14637:1 14677:5 14719:2 14740:1 14762:3 14764:1 14768:2 14774:1 14775:1 14781:1 14803:1 14830:1 14833:1 14837:1 14844:3 14853:1 14856:1 14864:1 14877:1 14885:1 14903:8 14929:1 14975:1 14981:1 15024:1 15035:1 15070:1 15080:1 15116:1 15129:1 15139:1 15142:1 15147:2 15184:1 15205:1 15215:1 15227:1 15282:2 15307:3 15312:2 15370:1 15389:1 15480:1267 15482:2 15496:3 15514:1 15543:1 15564:1 15575:1 15577:1 15583:2 15587:1 15602:1 15633:1 15646:3 15655:1 15658:3 15662:1 15663:1 15684:1 15708:1 15723:1 15725:2 15800:2 15834:3 15883:1 15898:1 15929:2 15936:1 15944:1 15949:1 15990:1 16009:1 16019:1 16042:2 16054:2 16074:4 16095:1 16102:2 16110:1 16117:1 16152:1 16159:1 16170:1 16177:1 16206:8 16212:1 16239:1 16332:1 16362:1 16380:1 16387:2 16402:1 16408:1 16416:1 16432:2 16434:1 16443:1 16449:1 16479:1 16482:1 16485:1 16495:1 16522:2 16538:1 16541:1 16548:1 16618:2 16650:1 16661:1 16669:3 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:3 16763:2 16768:1 16782:1 16795:1 16797:1 16815:5 16823:3 16856:1 16861:1 16908:1 16945:1 16947:1 16965:2 16981:1 17001:1 17014:2 17027:1 17043:1 17046:1 17050:1 17056:1 17058:2 17109:1 17138:1 17144:1 17163:1 17188:1 17221:1 17223:1 17238:1 17275:1 17305:1 17311:2 17329:1 17352:1 17362:1 17380:1 17429:1 17437:3 17443:1 17452:1 17485:10 17491:2 17510:4 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17610:2 17648:1 17706:3 17735:1 17738:3 17747:2 17806:1 17812:1 17813:1 17835:3 17837:1 17839:1 17851:1 17852:1 17884:1 17893:1 17916:1 17929:1 17943:1 17965:2 17993:2 17995:1 17996:2 18035:1 18037:1 18043:1 18091:1 18092:1 18093:1 18130:1 18131:1 18186:1 18196:2 18197:2 18199:3 18204:1 18210:1 18228:1 18231:1 18234:2 18244:1 18249:1 18264:1 18285:1 18296:1 18339:1 18360:1 18366:2 18378:1 18421:1 18434:1 18479:1 18491:1 18498:2 18506:2 18511:1 18537:1 18565:1 18567:2 18573:2 18616:1 18619:1 18641:1 18643:1 18644:1 18666:1 18686:1 18693:2 18727:2 18729:1 18739:2 18742:1 18776:1 18784:1 18803:1 18807:1 18820:2 18843:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:1 18939:1 18941:2 18943:1 18946:1 18948:1 18949:1 18965:1 18975:3 18976:1 18978:1 18985:1 18990:3 19029:2 19033:1 19036:1 19070:1 19096:1 19134:1 19145:1 19156:2 19187:2 19193:1 19201:1 19213:1 19218:1 19225:1 19229:1 19233:1 19249:1 19278:1 19365:1 19371:1 19376:1 19406:1 19425:3 19427:1 19431:1 19438:2 19446:1 19470:1 19480:1 19486:1 19493:1 19508:1 19523:1 19525:1 19532:1 19559:3 19562:1 19573:1 19580:1 19587:1 19615:3 19637:1 19638:1 19644:1 19718:1 19746:1 19810:1 19832:3 19870:1 19901:1 19902:8 19974:1 20013:1 20040:1 20051:1 20055:1 20063:1 20068:1 20076:1 20083:2 20084:6 20087:1 20102:1 20107:1 20109:1 20126:2 20139:1 20204:1 20266:1 20268:1 20270:1 20274:1 20275:1 20276:1 20281:1 20287:1 20318:1 20327:1 20332:2 20337:1 20343:1 20344:1 20360:1 20366:1 20378:3 20393:1 20411:1 20412:1 20441:1 20447:1 20469:2 20480:1 20485:1 20490:1 20493:1 20508:1 20567:1 20599:2 20651:1 20659:1 20663:1 20686:3 20738:1 20742:5 20751:1 20753:1 20755:1 20762:1 20769:1 20785:1 20786:1 20847:1 20928:1 20930:4 20955:1 20958:1 20962:2 20964:1 20970:2 20993:1 21007:1 21099:1 21111:1 21134:1 21139:1 21154:1 21159:1 21205:1 21208:1 21245:1 21279:1 21319:1 21337:1 21361:1 21363:1 21364:2 21371:1 21413:1 21441:1 21480:3 21503:1 21512:1 21551:1 21556:1 21557:1 21559:1 21561:1 21576:1 21586:1 21612:3 21628:1 21630:1 21632:1 21637:3 21663:1 21665:1 21671:1 21693:1 21695:1 21697:3 21703:1 21707:1 21716:1 21738:1 21760:3 21761:1 21773:2 21787:1 21831:3 21844:1 21857:1 21869:2 21905:1 21923:1 21926:1 21934:1 21952:1 21974:1 21977:1 21998:1 22001:1 22013:2 22027:2 22043:1 22058:1 22065:1 22068:1 22080:1 22108:1 22114:1 22124:1 22138:1 22173:1 22193:1 22208:1 22242:1 22247:1 22379:1 22390:1 22394:1 22419:1 22429:1 22462:1 22511:1 22528:1 22548:1 22562:1 22585:2 22593:1 22602:1 22611:4 22669:3 22672:1 22690:1 22693:1 22740:4 22755:1 22760:1 22786:1 22801:2 22815:2 22817:1 22822:1 22831:1 22846:1 22894:2 22912:1 22916:1 22925:1 22939:1 22942:1 23006:2 23007:1 23022:1 23039:1 23050:2 23074:2 23088:1 23089:5 23113:1 23138:1 23206:1 23248:3 23284:1 23305:3 23314:1 23324:1 23341:1 23360:1 23385:1 23404:1 23405:1 23430:13 23431:1 23432:1 23466:4 23476:1 23481:1 23490:1 23518:2 23527:1 23541:1 23546:1 23558:3 23586:3 23587:1 23610:1 23623:1 23645:2 23647:1 23719:1 23740:1 23758:1 23784:1 23796:3 23797:3 23847:1 23849:1 23852:1 23853:2 23956:2 23961:1 23966:1 23967:1 23971:10 23985:1 24000:1 24006:1 24042:1 24049:1 24057:1 24101:1 24117:1 24139:1 24153:1 24162:1 24170:1 24225:1 24307:1 24315:1 24341:1 24347:1 24353:1 24379:1 24384:1 24393:1 24409:1 24410:1 24411:1 24418:1 24421:1 24438:1 24440:1 24449:1 24455:1 24469:1 24473:1 24476:1 24479:1 24480:1 24487:1 24491:1 24504:1 24523:1 24525:2 24535:1
20 25:1 29:1 30:1 34:1 37:1 76:1 88:1 105:1 112:1 150:1 162:1 186:1 216:1 218:1 240:3 276:1 296:1 314:1 339:1 407:2 441:1 489:1 510:1 565:1 566:1 568:1 752:2 762:1 766:1 778:1 785:2 795:1 805:1 814:2 828:1 833:1 834:3 838:2 857:1 869:2 888:3 889:3 892:1 906:1 946:1 948:2 952:1 960:1 967:1 989:1 1009:1 1015:1 1044:1 1078:1 1094:1 1095:1 1108:1 1131:1 1158:1 1208:1 1230:2 1241:1 1257:1 1258:1 1259:2 1274:3 1293:1 1296:1 1297:1 1301:1 1311:3 1328:2 1330:2 1332:7 1340:1 1343:1 1345:1 1352:1 1353:1 1360:1 1376:1 1381:9 1420:1 1429:1 1436:1 1460:1 1476:1 1506:1 1507:5 1510:1 1517:1 1546:1 1552:2 1568:1 1612:1 1619:2 1629:1 1641:1 1644:1 1661:1 1663:1 1703:1 1719:1 1731:4 1763:1 1766:3 1775:1 1782:1 1826:3 1846:1 1853:2 1856:1 1875:1 1877:8 1879:1 1889:1 1891:1 1892:2 1894:1 1898:1 1909:1 1912:2 1930:1 1942:1 1945:4 1948:2 1949:1 1952:1 1960:2 1961:1 1963:2 1965:2 1968:2 1973:1 1976:1 1981:2 2034:1 2038:1 2045:1 2055:1 2102:1 2115:1 2140:1 2164:1 2188:1 2222:1 2241:1 2253:1 2254:1 2272:1 2282:1 2308:1 2321:1 2325:2 2383:1 2393:1 2405:1 2409:1 2434:1 2451:3 2461:2 2462:8 2464:1 2478:1 2480:2 2491:1 2500:1 2507:7 2589:1 2597:2 2645:3 2678:1 2700:1 2718:1 2745:1 2753:1 2764:1 2802:2 2807:1 2826:2 2831:1 2853:1 2876:1 2898:1 2941:1 2948:1 3002:1 3059:1 3063:1 3068:1 3090:1 3093:1 3095:1 3118:1 3129:1 3131:1 3135:1 3136:1 3147:1 3173:2 3183:1 3184:2 3221:3 3222:1 3234:1 3237:5 3288:1 3301:1 3306:1 3312:2 3326:1 3328:1 3355:1 3358:1 3367:1 3369:1 3399:1 3407:2 3408:1 3442:1 3481:1 3495:1 3514:1 3537:1 3572:1 3598:1 3622:1 3653:1 3661:1 3666:1 3678:1 3681:1 3710:1 3737:1 3770:1 3801:1 3832:1 3845:1 3868:1 3878:1 3889:1 3902:1 3904:1 3911:1 3938:1 3939:1 3992:1 4003:1 4046:1 4047:1 4073:1 4091:1 4107:5 4159:1 4160:1 4192:3 4198:4 4211:2 4212:1 4228:1 4229:1 4230:2 4231:2 4234:2 4238:1 4248:1 4319:1 4323:1 4351:1 4364:1 4368:1 4384:1 4391:1 4394:1 4409:2 4412:1 4420:1 4450:2 4464:1 4470:1 4498:2 4506:1 4529:1 4546:2 4561:1 4621:2 4633:2 4654:1 4662:1 4667:1 4673:1 4681:1 4689:3 4703:1 4729:1 4741:1 4757:1 4768:1 4823:1 4826:1 4836:2 4854:1 4861:1 4872:1 4876:1 4950:2 4953:2 4958:1 4959:1 4986:1 4994:1 5016:1 5049:2 5054:1 5075:1 5090:2 5100:2 5127:1 5130:1 5142:1 5187:2 5189:1 5192:1 5205:1 5217:1 5247:1 5263:1 5276:1 5289:1 5308:1 5310:1 5322:3 5337:1 5340:2 5342:1 5347:2 5349:1 5350:2 5352:3 5396:1 5426:1 5437:1 5451:1 5488:1 5520:1 5592:1 5604:1 5609:1 5615:1 5616:2 5625:1 5629:2 5656:1 5663:1 5665:1 5668:1 5672:2 5674:1 5686:1 5688:1 5689:1 5702:1 5703:1 5726:1 5783:3 5807:3 5808:1 5818:1 5819:1 5823:1 5837:1 5874:1 5878:2 5890:1 5917:1 5930:1 5947:5 5948:1 5959:1 5970:1 5998:2 6021:1 6035:1 6039:1 6040:1 6084:1 6096:1 6116:1 6130:1 6147:1 6175:3 6183:3 6192:1 6194:1 6201:1 6209:1 6237:2 6241:1 6255:1 6261:1 6269:1 6276:1 6285:1 6286:1 6289:1 6324:1 6332:1 6359:2 6365:5 6382:1 6384:1 6386:2 6387:1 6429:17 6449:4 6451:6 6460:1 6486:1 6497:2 6501:1 6551:1 6619:1 6655:1 6669:3 6677:1 6680:1 6700:1 6771:1 6785:1 6789:1 6806:1 6810:9 6816:1 6841:1 6859:14 6882:1 6906:1 6908:1 6918:1 6926:1 7020:1 7030:1 7038:2 7054:1 7068:3 7084:1 7121:1 7125:1 7156:1 7157:2 7166:3 7170:4 7172:1 7177:1 7182:3 7263:1 7305:1 7325:1 7384:1 7400:1 7409:2 7443:1 7451:1 7461:2 7488:1 7505:1 7521:1 7526:1 7535:1 7573:2 7581:6 7590:4 7594:1 7604:3 7615:1 7665:1 7686:1 7712:1 7731:1 7787:2 7790:1 7803:1 7805:1 7810:1 7878:1 7912:1 7943:1 7944:1 7964:2 7975:1 7988:1 8048:1 8061:1 8064:3 8067:1 8070:6 8071:1 8080:3 8118:1 8121:1 8138:1 8139:1 8162:6 8177:1 8189:1 8215:1 8222:1 8226:1 8285:1 8296:2 8304:2 8348:1 8352:1 8363:2 8379:1 8382:1 8392:1 8443:1 8444:1 8480:1 8532:2 8566:1 8574:1 8575:1 8581:2 8617:2 8679:1 8684:1 8700:1 8736:2 8760:1 8769:1 8778:2 8785:1 8789:2 8801:2 8802:2 8807:1 8809:1 8814:1 8815:1 8817:1 8818:1 8822:1 8824:1 8828:1 8829:1 8832:1 8833:1 8840:1 8841:1 8857:1 8867:1 8881:1 8891:3 8897:1 8907:1 8910:1 8914:3 8916:3 8949:1 8975:1 8981:1 8989:4 9001:3 9070:1 9080:1 9101:2 9102:1 9145:1 9193:1 9200:1 9202:1 9215:1 9222:1 9225:1 9252:6 9260:1 9282:1 9289:1 9313:1 9317:1 9338:1 9346:1 9359:3 9363:2 9389:1 9411:1 9424:1 9433:1 9442:1 9459:1 9472:1 9486:2 9488:6 9536:1 9542:1 9543:1 9561:1 9563:2 9621:1 9639:1 9653:5 9668:1 9682:1 9687:1 9695:1 9710:1 9716:1 9723:2 9727:1 9730:1 9743:1 9762:1 9763:4 9772:2 9778:4 9810:1 9822:1 9823:11 9880:1 9881:1 9904:1 9918:2 9923:4 9949:1 9974:2 9989:1 10001:1 10018:1 10037:1 10046:1 10053:1 10054:1 10061:1 10074:2 10079:1 10089:1 10095:1 10105:1 10118:1 10130:1 10146:1 10151:2 10169:1 10179:1 10225:1 10233:1 10265:1 10281:2 10337:1 10363:1 10364:2 10391:1 10413:1 10430:1 10480:7 10483:1 10487:2 10502:1 10513:1 10531:1 10550:11 10556:1 10571:1 10576:2 10598:1 10621:2 10637:1 10652:1 10724:1 10725:1 10733:1 10739:1 10754:1 10787:1 10836:4 10844:1 10846:1 10847:1 10851:2 10861:1 10870:1 10871:8 10874:1 10901:1 10923:1 10942:2 10943:1 10969:1 10970:8 10982:1 10985:14 11046:3 11065:1 11087:1 11101:1 11159:2 11163:1 11168:1 11275:1 11277:1 11280:2 11287:1 11301:2 11311:1 11322:1 11340:1 11342:1 11368:10 11375:1 11376:1 11406:1 11407:2 11408:1 11432:2 11439:1 11447:1 11449:1 11459:1 11509:3 11512:2 11531:2 11564:1 11607:1 11612:1 11613:1 11614:1 11638:1 11657:1 11697:2 11704:1 11717:1 11718:1 11744:1 11777:1 11788:1 11806:1 11808:1 11813:1 11816:1 11825:1 11833:1 11855:1 11861:2 11902:1 11910:1 11927:3 11942:1 11990:3 12006:1 12020:1 12035:1 12036:1 12045:1 12050:1 12054:1 12060:1 12089:1 12099:1 12105:1 12114:1 12141:1 12157:1 12173:1 12176:1 12218:1 12229:1 12263:2 12276:1 12287:1 12303:1 12341:1 12372:1 12383:3 12387:1 12437:2 12525:1 12550:2 12582:3 12583:1 12584:1 12586:1 12630:1 12633:1 12667:1 12689:1 12732:1 12739:1 12741:17 12766:1 12770:1 12778:1 12816:1 12822:1 12828:1 12877:1 12897:1 12950:2 12956:1 12958:2 12959:1 12961:1 12981:1 12983:1 12984:1 12988:2 12995:1 12997:1 13000:1 13012:1 13030:2 13031:1 13069:1 13094:3 13095:1 13113:1 13173:1 13207:2 13225:1 13246:1 13259:1 13270:1 13292:1 13295:2 13328:3 13352:1 13363:1 13371:1 13373:1 13378:1 13390:1 13405:1 13410:1 13425:1 13430:1 13431:2 13435:1 13437:2 13442:1 13444:1 13448:1 13453:1 13455:1 13459:4 13469:1 13482:3 13495:1 13525:2 13570:1 13637:1 13670:1 13703:1 13719:1 13743:1 13746:1 13752:2 13758:1 13765:1 13766:1 13767:1 13775:1 13812:1 13819:1 13826:1 13835:2 13837:3 13846:1 13868:1 13876:2 13895:1 13906:1 13924:2 13925:2 13928:9 13931:1 13965:2 13966:1 13970:1 13972:2 13977:2 13979:2 13994:1 14003:2 14008:1 14031:1 14035:1 14039:2 14046:1 14052:2 14071:1 14077:1 14094:1 14097:1 14100:1 14101:1 14108:1 14114:1 14118:1 14122:1 14124:1 14125:1 14142:1 14154:1 14156:1 14178:1 14189:1 14200:1 14207:1 14210:1 14223:1 14240:2 14246:1 14307:1 14368:1 14393:1 14398:1 14403:1 14491:1 14516:1 14539:2 14544:1 14553:1 14570:1 14574:1 14575:1 14585:1 14596:1 14637:1 14677:6 14719:2 14740:1 14762:3 14764:1 14768:2 14774:1 14775:1 14781:1 14803:1 14825:1 14830:1 14833:1 14837:1 14844:3 14853:2 14856:1 14864:1 14877:1 14885:1 14903:8 14929:1 14975:1 14981:1 15024:1 15035:1 15070:1 15080:1 15116:1 15129:1 15139:1 15142:1 15147:2 15184:1 15205:1 15215:1 15227:1 15282:2 15307:3 15312:2 15370:1 15371:1 15389:1 15480:1314 15482:2 15496:3 15514:1 15543:1 15564:1 15575:1 15577:1 15583:2 15587:1 15602:1 15633:1 15646:3 15655:1 15658:3 15661:1 15662:1 15663:1 15684:1 15708:1 15723:1 15725:2 15800:2 15834:3 15883:1 15887:1 15898:1 15929:2 15936:1 15944:1 15949:1 15990:1 16009:1 16019:1 16042:2 16046:1 16054:2 16074:4 16095:1 16102:2 16110:1 16117:1 16129:1 16152:1 16159:1 16170:1 16177:1 16206:8 16212:1 16239:1 16268:1 16332:1 16362:1 16380:1 16387:2 16402:1 16408:1 16416:1 16432:2 16434:1 16443:1 16449:1 16479:1 16482:1 16485:1 16495:1 16522:2 16538:1 16541:1 16548:1 16593:1 16611:1 16618:2 16650:1 16661:1 16669:3 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:3 16763:2 16768:1 16782:1 16795:2 16797:1 16815:5 16823:3 16856:1 16861:1 16908:1 16945:1 16947:1 16965:2 16981:1 17001:1 17014:2 17027:1 17043:1 17046:1 17050:1 17056:1 17058:2 17101:1 17109:1 17138:1 17144:1 17163:1 17188:1 17221:1 17223:1 17234:1 17238:1 17261:1 17275:1 17305:1 17311:2 17329:1 17352:1 17362:1 17380:1 17429:1 17437:3 17443:1 17452:1 17485:10 17491:2 17510:4 17535:1 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17571:1 17601:1 17610:2 17648:1 17706:3 17735:1 17738:3 17747:2 17806:1 17812:1 17813:1 17827:1 17835:3 17837:1 17839:1 17851:1 17852:1 17884:1 17893:1 17916:1 17929:1 17943:1 17965:2 17993:2 17995:1 17996:2 18035:1 18037:1 18043:1 18091:1 18092:1 18093:1 18130:1 18131:1 18186:1 18196:3 18197:2 18199:3 18204:1 18210:1 18228:1 18231:1 18234:2 18244:1 18249:1 18264:1 18285:1 18296:1 18339:1 18360:1 18366:2 18378:3 18406:1 18421:1 18434:1 18479:1 18491:1 18498:2 18506:2 18511:1 18537:1 18565:1 18567:2 18573:2 18616:1 18619:1 18641:1 18643:1 18644:1 18666:1 18686:1 18693:2 18727:2 18729:1 18739:2 18742:1 18776:1 18784:1 18803:1 18807:1 18820:2 18843:1 18854:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:1 18939:1 18941:2 18943:1 18946:1 18948:1 18949:1 18965:1 18975:3 18976:1 18978:1 18985:1 18990:3 19029:2 19033:1 19036:1 19070:1 19096:1 19123:1 19134:2 19145:1 19156:2 19187:2 19193:1 19201:1 19213:1 19218:1 19225:1 19229:1 19233:1 19249:1 19278:1 19365:1 19371:1 19376:1 19406:1 19425:3 19427:1 19431:1 19438:2 19446:1 19470:1 19480:1 19486:1 19493:1 19508:1 19523:1 19525:1 19532:1 19559:3 19562:1 19573:1 19580:1 19587:1 19615:3 19637:1 19638:1 19644:1 19718:1 19746:1 19810:1 19832:3 19870:1 19901:1 19902:8 19974:2 20013:1 20040:1 20051:1 20055:1 20063:1 20068:1 20076:1 20083:2 20084:7 20087:1 20102:1 20107:1 20109:1 20126:2 20139:1 20152:1 20204:1 20266:1 20268:1 20270:1 20274:1 20275:1 20276:1 20281:1 20287:1 20305:1 20318:1 20327:1 20332:2 20337:2 20343:1 20344:1 20360:1 20366:1 20378:3 20393:1 20411:1 20412:1 20441:1 20447:1 20469:2 20480:1 20485:1 20490:1 20493:1 20508:1 20567:1 20595:1 20599:2 20630:1 20651:1 20659:1 20663:1 20686:3 20738:1 20742:6 20751:1 20753:1 20755:1 20762:1 20769:1 20785:1 20786:1 20847:1 20928:2 20930:5 20955:1 20958:1 20962:2 20964:1 20970:2 20993:1 21007:1 21099:1 21111:1 21134:1 21136:1 21139:1 21154:1 21159:1 21205:1 21208:1 21245:1 21279:1 21319:1 21337:1 21361:1 21363:1 21364:2 21371:1 21413:1 21441:1 21480:3 21503:1 21512:1 21551:1 21556:1 21557:1 21559:1 21561:1 21576:1 21586:1 21612:3 21628:1 21630:1 21632:1 21637:3 21663:1 21665:1 21671:1 21693:1 21695:1 21697:3 21703:1 21707:1 21716:1 21738:1 21760:3 21761:1 21773:2 21787:1 21831:3 21844:1 21857:1 21869:2 21905:1 21923:1 21926:1 21934:1 21952:1 21974:1 21977:1 21998:1 22001:1 22010:1 22013:3 22027:2 22043:1 22058:1 22065:1 22068:1 22080:1 22108:1 22114:1 22124:1 22138:1 22173:1 22186:1 22193:1 22208:1 22242:1 22247:1 22379:1 22390:1 22394:1 22419:1 22425:1 22429:1 22462:1 22511:1 22527:1 22528:1 22548:1 22562:1 22585:2 22593:1 22602:1 22611:4 22669:3 22672:1 22690:1 22693:1 22740:4 22755:1 22760:1 22786:1 22801:2 22815:2 22817:1 22822:1 22831:1 22846:1 22854:1 22894:2 22912:1 22916:1 22925:1 22939:1 22942:1 23006:2 23007:1 23022:1 23039:1 23050:2 23074:2 23088:1 23089:6 23113:1 23138:1 23206:1 23248:3 23284:1 23305:3 23314:1 23324:1 23341:1 23360:2 23385:1 23404:1 23405:1 23430:14 23431:1 23432:1 23466:6 23476:1 23481:1 23490:1 23518:2 23527:1 23541:1 23546:1 23558:3 23586:4 23587:1 23610:1 23623:1 23645:2 23647:1 23719:1 23740:1 23758:1 23784:1 23796:3 23797:3 23847:1 23849:1 23852:1 23853:2 23868:1 23956:2 23961:1 23966:1 23967:1 23971:10 23985:1 24000:1 24006:1 24042:1 24049:1 24057:1 24101:1 24117:1 24139:1 24153:1 24162:1 24170:2 24225:1 24307:1 24315:1 24341:1 24347:2 24353:1 24379:1 24384:1 24393:1 24401:1 24409:1 24410:1 24411:1 24418:1 24421:1 24438:1 24440:1 24449:1 24455:1 24469:1 24473:1 24476:2 24479:1 24480:1 24487:1 24491:1 24504:1 24523:1 24525:2 24535:1
20 25:1 29:1 30:1 34:1 37:1 76:1 88:1 96:1 105:1 112:1 150:1 162:1 186:1 216:1 218:1 240:3 276:1 296:2 298:1 314:1 339:1 407:2 441:1 489:1 510:1 541:1 565:1 566:1 568:1 640:1 720:1 752:2 762:2 766:1 778:1 785:3 795:1 805:1 814:3 828:1 831:1 833:1 834:3 838:2 846:1 857:1 869:3 888:3 889:3 892:1 906:1 937:1 946:1 948:2 952:1 960:1 967:1 989:1 1009:1 1015:1 1044:1 1078:1 1080:1 1094:1 1095:1 1108:1 1110:1 1131:1 1158:1 1208:1 1230:2 1241:1 1257:1 1258:1 1259:2 1274:3 1293:1 1296:1 1297:1 1301:1 1311:3 1328:5 1330:2 1332:7 1340:1 1343:1 1345:1 1352:1 1353:1 1360:1 1372:1 1376:1 1381:9 1395:1 1396:1 1420:1 1429:1 1436:1 1460:1 1476:1 1506:1 1507:5 1510:1 1517:1 1546:1 1552:2 1568:1 1612:1 1619:2 1629:1 1641:1 1644:1 1661:1 1663:1 1703:1 1719:1 1731:4 1745:1 1763:1 1766:3 1775:1 1782:1 1826:3 1828:1 1846:1 1853:2 1856:1 1875:1 1877:8 1879:1 1889:1 1891:1 1892:2 1894:1 1898:1 1909:1 1912:2 1930:1 1942:1 1945:4 1948:2 1949:1 1952:1 1960:2 1961:1 1963:3 1965:2 1968:2 1973:1 1976:2 1981:2 2034:1 2038:1 2045:1 2055:1 2074:1 2077:1 2102:1 2115:1 2140:1 2164:1 2169:1 2188:1 2222:1 2241:1 2253:1 2254:1 2272:1 2282:1 2287:1 2308:1 2321:1 2325:2 2328:1 2383:1 2393:1 2405:1 2409:1 2434:1 2451:3 2461:2 2462:8 2464:1 2478:1 2480:2 2491:1 2500:1 2507:7 2589:1 2597:2 2636:1 2645:3 2678:1 2700:1 2718:1 2745:1 2753:1 2764:1 2802:2 2807:1 2826:3 2831:1 2853:1 2876:1 2898:1 2941:1 2948:1 3002:1 3059:1 3063:1 3068:1 3090:1 3093:1 3095:1 3118:1 3129:1 3131:1 3135:1 3136:1 3147:1 3173:2 3183:1 3184:2 3221:3 3222:1 3234:1 3237:6 3288:1 3301:1 3306:1 3312:3 3326:1 3328:1 3355:1 3358:1 3367:1 3369:2 3399:1 3407:2 3408:1 3428:1 3442:1 3481:1 3495:1 3514:1 3537:1 3572:1 3598:1 3622:1 3653:1 3661:1 3666:1 3678:1 3681:1 3710:2 3737:1 3770:1 3801:1 3803:1 3832:1 3845:1 3868:1 3878:1 3889:1 3902:2 3904:1 3911:1 3938:1 3939:1 3992:1 4003:1 4019:1 4046:1 4047:1 4073:1 4091:1 4107:5 4143:1 4159:1 4160:1 4192:3 4198:4 4211:3 4212:1 4228:1 4229:1 4230:2 4231:2 4234:2 4238:1 4248:1 4319:1 4323:1 4351:1 4364:1 4368:1 4384:1 4391:1 4394:1 4409:3 4412:1 4420:1 4450:2 4464:1 4470:1 4498:2 4506:1 4529:1 4546:2 4561:1 4621:2 4633:2 4654:1 4662:1 4667:1 4673:1 4681:1 4689:3 4703:1 4729:1 4741:1 4757:1 4768:1 4818:1 4823:1 4826:1 4836:2 4854:1 4861:1 4872:1 4876:1 4926:3 4950:2 4953:2 4958:1 4959:1 4986:1 4994:1 5016:1 5049:2 5054:1 5075:1 5090:2 5100:2 5127:1 5130:1 5142:1 5187:3 5189:1 5192:1 5205:1 5217:1 5247:3 5248:1 5263:1 5276:1 5289:1 5308:1 5310:1 5322:3 5337:1 5340:2 5342:1 5347:2 5349:1 5350:2 5352:3 5396:1 5426:1 5437:1 5451:1 5488:1 5520:1 5535:1 5592:1 5604:1 5609:1 5615:1 5616:2 5625:1 5629:2 5656:1 5663:1 5665:1 5668:1 5672:2 5674:1 5686:1 5688:1 5689:1 5702:1 5703:1 5726:1 5783:3 5807:3 5808:1 5818:1 5819:1 5823:1 5837:1 5874:1 5878:2 5890:1 5917:1 5930:1 5947:5 5948:1 5959:1 5970:1 5998:2 6021:1 6035:1 6039:1 6040:1 6052:1 6071:1 6084:1 6096:1 6116:1 6130:1 6147:1 6175:3 6183:3 6192:1 6194:1 6201:1 6209:1 6231:1 6237:2 6241:1 6255:1 6261:1 6269:1 6276:1 6285:2 6286:1 6289:1 6324:1 6332:1 6359:2 6365:6 6382:1 6384:1 6386:3 6387:1 6429:19 6449:4 6451:6 6460:1 6486:1 6497:2 6501:1 6551:1 6619:1 6655:1 6669:3 6677:1 6680:1 6700:1 6771:1 6785:1 6789:1 6806:1 6810:9 6816:1 6818:1 6841:1 6859:16 6882:1 6906:1 6908:1 6918:1 6926:1 7020:1 7030:1 7038:2 7054:1 7068:3 7084:1 7121:1 7125:1 7156:1 7157:2 7166:3 7170:4 7172:1 7177:1 7182:3 7263:1 7305:1 7325:1 7384:1 7400:1 7409:2 7443:1 7451:1 7457:1 7461:2 7488:1 7505:1 7521:1 7526:1 7535:1 7573:2 7581:6 7590:4 7594:1 7604:3 7615:1 7665:1 7686:1 7712:1 7731:1 7787:2 7790:1 7803:1 7805:1 7810:1 7878:1 7912:1 7943:1 7944:1 7964:2 7975:1 7988:1 8048:1 8061:1 8064:3 8067:1 8070:6 8071:1 8080:3 8118:1 8121:1 8138:2 8139:1 8143:1 8162:6 8177:1 8189:1 8195:1 8215:1 8222:1 8226:1 8285:2 8296:2 8304:2 8348:1 8352:1 8363:2 8379:1 8382:1 8392:1 8443:1 8444:1 8480:1 8532:2 8566:1 8574:1 8575:1 8581:2 8617:2 8679:1 8684:1 8700:1 8736:2 8760:1 8769:1 8778:3 8785:1 8789:2 8801:2 8802:2 8807:1 8809:1 8814:1 8815:1 8817:1 8818:1 8822:1 8824:1 8828:1 8829:1 8832:1 8833:1 8840:1 8841:1 8856:1 8857:1 8867:1 8881:1 8891:3 8897:1 8907:1 8910:1 8914:3 8916:4 8949:1 8975:1 8981:1 8989:4 9001:3 9070:1 9080:1 9101:3 9102:1 9145:1 9193:1 9200:1 9202:1 9205:1 9215:1 9222:1 9225:1 9252:6 9260:1 9282:1 9289:1 9313:1 9317:1 9338:1 9346:1 9359:3 9363:2 9389:1 9411:1 9424:1 9433:1 9442:1 9459:1 9472:1 9486:2 9488:6 9536:1 9542:1 9543:1 9561:1 9563:2 9621:1 9639:1 9653:5 9668:1 9682:1 9687:1 9695:1 9710:1 9716:1 9723:2 9727:1 9730:1 9743:1 9762:1 9763:4 9772:2 9778:4 9810:1 9822:1 9823:11 9880:1 9881:1 9904:1 9918:2 9923:4 9949:1 9974:3 9989:1 10001:1 10018:1 10037:1 10046:1 10053:1 10054:1 10061:1 10074:3 10079:1 10089:1 10095:1 10105:1 10118:1 10130:1 10146:1 10151:2 10169:1 10179:1 10225:1 10233:1 10265:1 10281:2 10337:1 10363:1 10364:2 10391:1 10413:1 10430:1 10480:7 10483:1 10487:2 10502:1 10513:1 10531:1 10550:11 10556:1 10571:1 10576:2 10598:1 10621:2 10637:1 10652:1 10695:1 10724:1 10725:1 10733:1 10739:1 10754:1 10787:1 10836:4 10844:1 10846:1 10847:2 10851:2 10861:1 10870:1 10871:8 10872:1 10874:1 10901:1 10923:1 10942:2 10943:1 10969:1 10970:8 10974:1 10982:1 10985:14 11046:3 11065:1 11087:1 11101:1 11156:1 11159:2 11163:1 11168:1 11275:1 11277:1 11280:2 11287:1 11301:2 11311:1 11322:1 11340:1 11342:1 11368:10 11375:1 11376:1 11406:1 11407:2 11408:1 11415:1 11419:1 11432:2 11439:1 11447:1 11449:1 11459:1 11509:3 11512:2 11531:2 11564:1 11607:1 11612:1 11613:1 11614:1 11638:1 11657:1 11697:2 11704:1 11717:1 11718:1 11744:1 11747:1 11777:1 11788:1 11806:1 11808:1 11813:1 11816:1 11825:1 11833:1 11855:1 11856:1 11861:2 11881:1 11902:1 11910:1 11927:3 11942:1 11990:3 12006:1 12020:1 12035:1 12036:1 12045:1 12050:1 12054:1 12060:1 12089:1 12099:1 12105:1 12114:1 12123:1 12141:1 12157:1 12173:1 12176:1 12218:1 12229:1 12263:2 12276:1 12287:1 12303:1 12341:1 12372:1 12383:3 12387:1 12437:2 12473:1 12525:1 12550:2 12582:3 12583:1 12584:1 12586:1 12630:1 12633:1 12667:1 12689:1 12732:1 12739:1 12741:17 12766:1 12770:1 12778:1 12816:1 12822:1 12828:1 12877:1 12897:1 12911:1 12950:2 12956:1 12958:2 12959:1 12961:2 12981:1 12983:1 12984:1 12988:2 12995:1 12997:1 13000:1 13012:1 13030:2 13031:1 13069:1 13094:3 13095:1 13113:1 13173:1 13207:2 13221:1 13225:1 13246:1 13259:1 13270:1 13292:2 13295:2 13328:3 13352:1 13363:1 13371:1 13373:1 13378:1 13383:3 13390:1 13405:1 13410:1 13425:1 13430:1 13431:2 13435:1 13437:2 13442:1 13444:1 13445:1 13448:1 13453:1 13455:1 13459:5 13469:1 13482:3 13495:1 13525:2 13570:1 13622:1 13637:1 13670:1 13675:1 13703:1 13719:1 13743:1 13746:1 13752:2 13758:1 13765:1 13766:1 13767:1 13775:1 13812:1 13819:1 13826:1 13835:2 13837:3 13846:1 13868:1 13876:2 13895:1 13906:1 13907:1 13924:2 13925:3 13928:9 13931:1 13965:2 13966:1 13970:1 13972:2 13977:2 13979:2 13994:1 14003:2 14008:1 14031:1 14035:1 14039:2 14046:1 14052:2 14071:1 14077:1 14094:1 14097:1 14100:1 14101:1 14108:1 14114:1 14118:1 14122:1 14124:1 14125:1 14142:1 14154:1 14156:1 14178:1 14189:1 14200:1 14207:1 14210:1 14223:1 14240:2 14246:1 14307:1 14368:1 14393:1 14398:1 14403:1 14443:1 14491:1 14516:1 14539:2 14544:1 14553:1 14570:1 14574:1 14575:1 14577:1 14585:1 14596:1 14637:1 14677:6 14719:2 14740:1 14762:3 14764:1 14768:2 14774:1 14775:1 14781:1 14803:1 14825:1 14830:1 14833:1 14837:1 14844:3 14853:2 14856:1 14864:1 14877:1 14885:1 14903:8 14929:1 14975:1 14981:1 15024:1 15035:1 15070:1 15080:1 15116:1 15129:1 15139:1 15142:1 15147:2 15184:1 15205:1 15215:1 15227:1 15282:2 15307:3 15312:2 15370:1 15371:1 15389:1 15480:1355 15482:2 15496:3 15503:1 15514:1 15532:1 15543:1 15564:1 15575:1 15577:1 15583:2 15587:1 15602:1 15633:1 15646:3 15655:1 15658:3 15661:1 15662:1 15663:1 15684:1 15708:1 15723:1 15725:2 15800:2 15834:3 15883:1 15887:2 15898:1 15929:2 15936:1 15944:1 15949:1 15990:1 16009:1 16019:1 16042:2 16046:1 16054:2 16074:4 16095:1 16102:2 16110:1 16117:1 16129:1 16152:1 16159:1 16170:1 16176:1 16177:1 16206:8 16212:1 16239:1 16268:1 16332:1 16362:1 16380:1 16387:2 16402:1 16408:1 16414:1 16416:1 16432:2 16434:1 16443:1 16449:1 16462:1 16479:1 16482:1 16485:1 16495:1 16522:2 16538:1 16541:1 16548:1 16593:1 16611:1 16618:2 16650:1 16661:1 16669:3 16681:1 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:3 16763:2 16768:1 16782:1 16795:2 16797:1 16815:5 16823:3 16856:1 16861:1 16908:1 16945:1 16947:1 16965:2 16981:1 17001:1 17014:2 17027:1 17043:1 17046:1 17050:1 17056:1 17058:2 17101:1 17109:1 17138:1 17144:1 17163:1 17188:1 17221:1 17223:1 17234:1 17238:1 17255:1 17261:1 17275:1 17305:1 17311:2 17329:1 17352:1 17362:1 17380:1 17429:1 17437:3 17443:1 17452:1 17485:10 17491:2 17510:4 17532:1 17535:1 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17571:1 17601:1 17604:1 17610:2 17648:1 17706:3 17735:1 17738:3 17747:2 17806:1 17812:1 17813:1 17827:1 17835:3 17837:1 17839:1 17851:1 17852:1 17884:1 17893:1 17916:1 17929:1 17943:1 17965:2 17993:2 17995:1 17996:2 18035:1 18037:1 18043:1 18091:1 18092:1 18093:1 18130:1 18131:1 18186:1 18196:3 18197:3 18199:3 18204:1 18210:1 18228:1 18231:1 18234:2 18244:1 18249:1 18264:1 18285:1 18296:1 18339:1 18360:1 18366:2 18378:3 18406:1 18421:1 18434:1 18479:1 18491:1 18498:2 18506:2 18511:1 18537:1 18565:1 18567:2 18573:2 18616:1 18619:1 18641:1 18643:1 18644:1 18658:1 18666:1 18676:1 18686:1 18693:2 18727:2 18729:1 18732:1 18739:2 18742:1 18776:1 18784:1 18803:1 18807:1 18820:2 18843:1 18854:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:1 18939:1 18941:2 18943:1 18946:1 18948:1 18949:1 18965:1 18975:3 18976:1 18978:1 18985:1 18990:3 19029:2 19033:1 19036:1 19070:1 19096:1 19123:1 19134:3 19145:1 19156:2 19187:2 19193:1 19201:1 19213:1 19218:1 19225:1 19229:1 19233:1 19237:1 19249:1 19278:1 19349:1 19365:1 19371:1 19376:1 19406:1 19425:3 19427:1 19431:1 19438:2 19446:1 19470:1 19474:1 19480:1 19486:1 19493:1 19508:1 19523:1 19525:1 19532:1 19540:1 19559:3 19562:1 19573:1 19580:1 19587:1 19615:3 19637:1 19638:2 19644:1 19716:1 19718:1 19746:1 19810:2 19823:1 19832:3 19870:1 19901:1 19902:8 19974:2 20013:1 20040:1 20051:1 20055:1 20063:1 20068:1 20076:1 20083:2 20084:7 20087:1 20102:1 20107:1 20109:1 20122:1 20126:2 20139:1 20152:1 20204:1 20266:1 20268:1 20270:1 20274:1 20275:1 20276:1 20281:1 20287:1 20305:1 20318:1 20327:1 20332:2 20337:2 20343:1 20344:1 20360:1 20366:1 20378:3 20393:1 20411:1 20412:1 20441:1 20447:1 20448:1 20469:2 20480:2 20485:1 20490:1 20493:1 20508:1 20567:1 20595:1 20599:2 20630:1 20651:2 20659:1 20663:1 20686:3 20734:1 20738:1 20742:6 20750:1 20751:1 20753:1 20755:1 20762:1 20769:1 20785:1 20786:1 20847:1 20928:2 20930:5 20955:1 20958:1 20962:2 20964:1 20970:2 20993:1 21007:1 21099:1 21111:1 21112:1 21134:1 21136:1 21139:1 21154:1 21159:1 21205:1 21208:1 21245:1 21279:1 21319:1 21337:1 21361:1 21363:1 21364:2 21371:1 21413:1 21441:2 21480:3 21503:1 21512:1 21551:1 21556:1 21557:1 21559:1 21561:1 21576:1 21586:1 21612:3 21628:1 21630:1 21632:1 21637:3 21642:1 21663:1 21665:1 21671:1 21693:1 21695:1 21697:3 21703:1 21707:1 21716:1 21738:1 21760:3 21761:1 21773:2 21787:1 21831:3 21844:1 21857:1 21869:2 21905:1 21923:1 21926:1 21934:1 21952:1 21974:1 21977:1 21998:1 22001:1 22010:1 22013:3 22027:2 22043:1 22058:1 22065:1 22068:1 22080:1 22108:1 22114:1 22124:1 22138:1 22173:1 22186:1 22193:1 22208:1 22242:1 22247:1 22379:1 22390:1 22394:1 22419:1 22423:1 22425:1 22429:1 22462:1 22511:1 22527:1 22528:1 22548:2 22553:1 22562:1 22585:2 22593:1 22602:1 22611:4 22657:1 22669:3 22672:1 22690:1 22693:1 22740:4 22755:1 22760:1 22786:1 22801:2 22815:2 22817:1 22822:1 22823:1 22831:1 22846:1 22854:1 22894:2 22912:1 22916:1 22925:1 22939:1 22942:1 23006:2 23007:1 23022:1 23039:1 23050:2 23074:2 23088:1 23089:6 23113:1 23138:1 23151:1 23206:1 23248:3 23284:1 23305:3 23314:1 23324:1 23341:1 23360:3 23385:1 23404:1 23405:1 23430:14 23431:1 23432:1 23466:6 23476:1 23481:1 23490:1 23518:2 23527:1 23541:1 23546:1 23558:3 23586:5 23587:1 23610:1 23623:1 23645:2 23647:1 23694:1 23719:1 23740:1 23758:1 23784:1 23796:3 23797:3 23847:1 23849:1 23852:1 23853:2 23868:1 23956:2 23961:1 23966:1 23967:1 23971:10 23985:1 24000:1 24005:1 24006:1 24028:1 24042:1 24049:1 24057:1 24101:1 24117:1 24139:1 24153:1 24162:1 24170:2 24225:1 24306:1 24307:1 24315:1 24341:1 24347:2 24353:1 24362:1 24370:1 24379:1 24384:1 24393:1 24401:1 24409:1 24410:1 24411:1 24418:1 24421:1 24438:1 24440:1 24449:1 24455:1 24469:2 24473:1 24476:2 24479:1 24480:1 24487:1 24491:1 24504:1 24523:1 24525:3 24535:1
20 25:1 29:1 30:1 34:1 37:1 76:1 88:1 96:1 105:1 112:1 150:1 162:1 186:1 216:1 218:1 240:3 276:1 296:2 298:1 314:1 339:1 407:2 441:1 489:1 492:1 510:1 527:1 541:1 565:2 566:1 568:1 640:1 720:1 752:2 762:2 766:1 778:1 785:3 788:1 795:1 805:1 814:3 828:1 831:2 833:1 834:3 838:2 846:1 857:1 869:3 888:3 889:3 892:1 906:1 912:1 937:1 946:1 948:2 952:1 960:1 967:1 989:1 1009:1 1015:1 1044:1 1078:1 1080:1 1094:1 1095:1 1108:1 1110:1 1114:1 1131:1 1158:1 1208:1 1230:2 1241:1 1257:1 1258:1 1259:2 1274:3 1293:1 1296:1 1297:1 1301:1 1311:3 1328:6 1330:2 1332:7 1340:1 1343:1 1345:1 1352:1 1353:1 1360:1 1372:1 1376:1 1381:9 1395:1 1396:1 1420:1 1429:1 1435:1 1436:1 1460:1 1476:1 1506:1 1507:5 1510:1 1517:1 1526:1 1546:1 1552:2 1568:1 1612:1 1619:2 1629:1 1641:1 1644:1 1661:1 1663:1 1703:1 1719:1 1731:4 1745:1 1763:1 1766:3 1775:1 1782:1 1826:3 1828:1 1846:1 1853:2 1856:1 1875:1 1877:8 1879:2 1889:1 1891:1 1892:2 1894:1 1898:1 1909:1 1912:2 1930:1 1942:1 1945:4 1948:2 1949:1 1952:1 1960:2 1961:1 1963:3 1965:2 1968:2 1973:1 1976:2 1981:2 2000:1 2034:1 2038:1 2045:1 2055:1 2074:1 2077:1 2102:1 2115:1 2140:1 2164:1 2169:1 2188:1 2222:1 2241:1 2253:1 2254:1 2272:1 2282:1 2287:1 2308:1 2321:1 2325:2 2328:1 2383:1 2393:1 2405:1 2409:1 2434:1 2451:3 2461:2 2462:8 2464:1 2478:1 2480:2 2491:1 2500:1 2507:8 2589:1 2597:2 2636:1 2645:3 2678:1 2700:1 2718:1 2745:1 2753:1 2764:1 2770:1 2802:2 2807:1 2826:3 2831:1 2853:1 2876:1 2898:1 2941:1 2948:1 3002:1 3059:1 3063:1 3068:1 3090:1 3093:1 3095:1 3118:1 3129:1 3131:1 3135:1 3136:1 3147:2 3173:2 3183:1 3184:2 3221:3 3222:1 3234:1 3237:6 3288:1 3301:1 3306:1 3312:3 3326:1 3328:1 3355:1 3358:1 3367:1 3369:2 3399:1 3407:2 3408:1 3428:1 3442:1 3481:1 3495:1 3514:1 3537:1 3572:1 3598:1 3622:1 3653:1 3661:1 3666:1 3678:1 3681:1 3710:2 3737:1 3770:1 3777:1 3801:1 3803:1 3832:1 3845:1 3868:1 3878:1 3889:1 3902:2 3904:1 3911:1 3938:1 3939:1 3992:1 4003:1 4019:1 4046:1 4047:1 4073:1 4091:1 4107:5 4116:1 4143:1 4159:1 4160:1 4192:3 4198:4 4211:3 4212:1 4228:1 4229:1 4230:2 4231:2 4234:2 4238:1 4248:1 4319:1 4323:1 4351:1 4364:2 4368:1 4384:1 4391:1 4394:1 4409:3 4412:1 4420:1 4450:2 4464:1 4470:1 4498:2 4506:1 4529:1 4546:3 4561:1 4621:2 4633:2 4654:1 4662:1 4667:1 4673:1 4681:1 4689:3 4703:1 4729:1 4741:1 4757:1 4768:1 4818:1 4823:1 4826:1 4836:2 4854:1 4861:1 4872:1 4876:1 4926:3 4927:1 4950:2 4953:2 4958:1 4959:1 4986:1 4994:1 5016:1 5049:2 5054:1 5075:1 5090:2 5100:2 5103:1 5127:1 5130:1 5142:1 5187:3 5189:1 5192:1 5205:1 5217:1 5247:3 5248:1 5263:1 5276:1 5289:1 5308:1 5310:1 5322:3 5337:1 5340:2 5342:1 5347:2 5349:1 5350:2 5352:3 5396:1 5426:2 5437:2 5451:1 5488:1 5520:1 5535:1 5592:1 5604:1 5609:1 5615:1 5616:2 5625:1 5629:2 5656:1 5663:1 5665:1 5668:1 5672:2 5674:4 5686:1 5688:1 5689:1 5702:1 5703:1 5726:1 5774:1 5783:3 5807:3 5808:1 5818:1 5819:1 5823:1 5837:1 5874:1 5878:2 5890:1 5917:1 5930:1 5947:5 5948:1 5959:1 5970:1 5998:2 6021:1 6035:1 6039:1 6040:1 6052:2 6071:1 6084:1 6096:1 6116:1 6130:1 6147:1 6175:3 6183:3 6192:1 6194:1 6201:1 6209:1 6231:1 6237:2 6241:1 6255:1 6261:1 6269:1 6276:1 6285:2 6286:1 6289:1 6324:1 6332:1 6359:2 6365:7 6382:1 6384:1 6386:3 6387:1 6429:19 6449:4 6451:7 6460:1 6486:1 6497:2 6501:1 6551:1 6619:1 6655:1 6669:3 6677:1 6680:1 6700:1 6771:1 6785:1 6789:1 6806:1 6810:9 6816:1 6818:1 6841:1 6859:16 6882:1 6906:1 6908:1 6918:1 6926:1 7020:1 7030:1 7038:2 7054:1 7068:3 7077:1 7084:1 7121:1 7125:1 7156:1 7157:2 7164:1 7166:3 7170:4 7172:1 7177:1 7182:3 7193:1 7263:1 7305:1 7325:1 7364:1 7384:1 7400:1 7409:2 7443:1 7451:1 7457:1 7461:2 7488:1 7505:1 7521:1 7526:1 7535:1 7573:2 7581:6 7590:4 7594:1 7604:3 7615:1 7665:1 7686:1 7712:1 7731:1 7787:2 7790:1 7803:1 7805:1 7810:1 7878:1 7912:1 7943:1 7944:1 7964:2 7975:1 7988:1 8048:1 8061:1 8064:3 8067:1 8070:6 8071:1 8080:3 8118:1 8121:1 8138:2 8139:1 8143:1 8162:8 8177:1 8189:1 8195:1 8215:1 8222:1 8226:1 8285:2 8296:2 8304:2 8348:1 8352:1 8363:2 8379:1 8382:1 8392:1 8443:1 8444:1 8480:1 8532:2 8566:1 8574:1 8575:1 8581:2 8617:2 8679:2 8684:1 8700:1 8736:2 8760:1 8769:1 8778:3 8785:1 8789:2 8801:2 8802:2 8807:1 8809:1 8814:1 8815:1 8817:1 8818:1 8822:1 8824:1 8828:1 8829:1 8832:1 8833:1 8840:1 8841:1 8856:1 8857:1 8867:1 8881:1 8891:3 8897:1 8907:1 8910:1 8914:4 8916:4 8949:1 8975:1 8981:1 8989:4 9001:3 9070:1 9080:1 9090:1 9101:3 9102:1 9145:1 9193:1 9200:1 9202:1 9205:1 9215:1 9222:1 9225:1 9252:6 9260:1 9282:1 9289:1 9313:1 9317:1 9338:1 9346:1 9359:3 9363:2 9389:1 9411:1 9424:1 9433:1 9442:1 9459:1 9472:1 9486:2 9488:6 9536:1 9542:1 9543:2 9561:1 9563:2 9586:1 9621:1 9624:1 9639:1 9653:5 9668:1 9682:1 9687:1 9695:1 9710:1 9716:1 9723:2 9727:1 9730:1 9743:1 9762:1 9763:5 9772:2 9778:5 9810:1 9822:1 9823:11 9880:1 9881:1 9904:1 9911:1 9918:2 9923:4 9949:1 9974:3 9989:1 10001:1 10018:1 10037:1 10046:1 10053:2 10054:2 10061:1 10074:3 10079:1 10089:1 10095:1 10105:1 10118:1 10130:1 10146:1 10151:2 10169:1 10179:1 10225:1 10233:1 10265:1 10281:2 10337:1 10363:1 10364:2 10391:1 10413:1 10430:1 10480:7 10483:1 10487:2 10502:1 10505:1 10513:1 10531:1 10550:11 10556:1 10571:1 10576:2 10598:1 10621:2 10637:1 10652:1 10695:1 10724:1 10725:1 10733:1 10739:2 10754:1 10787:1 10836:4 10844:1 10846:1 10847:2 10851:2 10861:1 10870:1 10871:8 10872:1 10874:1 10897:1 10901:1 10923:1 10942:2 10943:1 10969:1 10970:8 10974:1 10982:1 10985:14 11001:1 11046:3 11065:1 11087:1 11101:1 11156:1 11159:2 11163:1 11168:1 11275:1 11277:1 11280:2 11287:1 11301:2 11311:1 11322:1 11340:1 11342:1 11368:10 11375:1 11376:1 11406:1 11407:2 11408:1 11415:1 11419:1 11432:2 11439:1 11447:1 11449:1 11459:1 11509:3 11512:2 11531:2 11564:1 11607:1 11612:1 11613:1 11614:1 11638:1 11657:1 11697:2 11704:1 11717:1 11718:1 11744:1 11747:1 11777:1 11788:1 11806:1 11808:1 11813:1 11816:1 11825:1 11833:1 11855:1 11856:1 11861:2 11881:1 11902:2 11910:1 11927:3 11942:1 11990:3 12006:1 12020:1 12035:1 12036:1 12045:1 12050:2 12054:1 12060:1 12089:1 12099:1 12100:1 12105:1 12114:1 12123:1 12141:1 12157:1 12173:1 12176:1 12218:1 12229:1 12263:2 12276:2 12287:1 12303:1 12341:1 12372:1 12383:3 12387:1 12389:1 12437:2 12473:1 12525:1 12550:3 12582:3 12583:1 12584:1 12586:1 12630:1 12633:1 12667:1 12689:1 12732:1 12739:1 12741:18 12766:1 12770:1 12778:1 12816:1 12822:1 12828:1 12863:1 12877:1 12897:1 12911:1 12950:2 12956:1 12958:2 12959:1 12961:2 12981:1 12983:1 12984:1 12988:2 12995:1 12997:1 13000:1 13012:1 13030:2 13031:1 13069:1 13094:4 13095:1 13113:1 13173:1 13207:2 13221:1 13225:1 13246:1 13259:1 13270:1 13292:2 13295:2 13328:3 13352:1 13363:1 13371:1 13373:1 13378:1 13383:3 13390:1 13405:1 13410:1 13425:1 13430:1 13431:2 13435:1 13437:2 13442:1 13444:1 13445:1 13448:1 13453:1 13455:1 13459:5 13469:1 13482:3 13495:1 13525:2 13570:1 13622:1 13637:1 13670:1 13675:1 13703:1 13719:1 13743:1 13746:1 13752:2 13758:1 13765:1 13766:1 13767:1 13775:1 13812:1 13819:1 13826:1 13835:2 13837:4 13843:1 13846:1 13868:1 13876:2 13895:1 13906:1 13907:1 13924:2 13925:3 13928:9 13931:1 13965:2 13966:1 13970:1 13972:2 13977:2 13979:2 13994:1 14003:2 14008:1 14031:1 14035:1 14039:2 14046:1 14052:2 14071:1 14077:1 14094:1 14097:1 14100:1 14101:1 14108:1 14114:1 14118:1 14122:1 14124:1 14125:1 14142:1 14154:1 14156:1 14178:1 14189:1 14200:1 14207:1 14210:1 14223:1 14240:2 14246:1 14275:1 14307:1 14368:1 14393:1 14398:1 14403:1 14443:1 14462:1 14491:1 14516:1 14539:2 14544:1 14553:1 14570:1 14574:1 14575:1 14577:1 14585:1 14596:1 14627:1 14637:1 14677:6 14719:2 14740:1 14762:3 14764:1 14768:2 14774:1 14775:1 14781:1 14803:1 14825:1 14830:1 14833:1 14837:1 14844:3 14853:2 14856:1 14864:1 14877:1 14885:1 14887:1 14903:8 14929:1 14975:1 14981:1 15024:1 15035:1 15070:1 15080:1 15116:1 15129:1 15139:1 15142:1 15147:2 15184:1 15205:1 15215:1 15227:1 15282:2 15307:3 15312:2 15367:1 15370:1 15371:1 15389:1 15480:1407 15482:2 15496:3 15503:1 15514:1 15532:1 15543:1 15564:1 15575:1 15577:1 15583:2 15587:1 15602:1 15633:1 15646:3 15655:1 15658:3 15661:1 15662:1 15663:1 15684:1 15708:1 15723:4 15725:2 15800:2 15834:3 15883:1 15887:2 15898:1 15929:2 15936:1 15944:1 15949:1 15990:1 16002:1 16009:1 16019:1 16042:2 16046:1 16054:2 16074:4 16095:1 16102:2 16110:1 16117:1 16129:1 16152:1 16159:1 16170:1 16176:1 16177:1 16206:8 16212:1 16239:1 16268:1 16307:1 16331:1 16332:1 16362:1 16380:1 16387:2 16402:1 16408:1 16414:1 16416:1 16432:2 16434:2 16443:1 16449:1 16462:1 16479:1 16482:1 16485:1 16495:1 16522:2 16538:1 16541:1 16548:1 16593:1 16611:1 16618:2 16650:1 16661:1 16669:4 16681:1 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:3 16763:2 16768:1 16782:1 16795:2 16797:1 16815:6 16823:3 16856:1 16861:1 16908:1 16945:1 16947:1 16965:2 16981:1 17001:1 17014:2 17027:1 17043:1 17046:3 17050:1 17056:1 17058:2 17101:1 17109:1 17138:1 17144:1 17163:1 17188:4 17221:1 17223:1 17234:1 17238:1 17255:1 17261:1 17275:1 17305:1 17311:2 17329:1 17352:1 17362:1 17380:1 17429:1 17437:3 17443:1 17452:1 17485:10 17491:2 17510:4 17532:1 17535:1 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17571:1 17601:1 17604:1 17610:2 17648:1 17706:3 17735:1 17738:3 17747:2 17806:1 17812:1 17813:1 17827:1 17835:3 17837:1 17839:1 17851:1 17852:1 17884:1 17893:1 17916:1 17929:1 17943:1 17965:2 17993:2 17995:1 17996:2 18035:1 18037:1 18043:1 18087:1 18091:1 18092:1 18093:1 18130:1 18131:1 18186:1 18196:3 18197:3 18199:3 18204:1 18210:1 18228:1 18231:1 18234:2 18244:1 18249:1 18264:1 18285:1 18296:1 18339:1 18360:2 18366:2 18378:3 18406:1 18421:1 18434:1 18479:1 18491:1 18498:2 18506:2 18511:1 18537:1 18565:1 18567:2 18573:2 18616:1 18619:1 18641:1 18643:1 18644:1 18658:1 18666:1 18676:1 18686:1 18693:2 18727:2 18729:1 18732:1 18739:2 18742:1 18776:1 18784:1 18803:1 18807:1 18820:2 18843:1 18854:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:1 18939:1 18941:2 18943:1 18946:1 18948:1 18949:1 18961:1 18965:1 18975:3 18976:3 18978:1 18985:1 18990:3 19029:2 19033:1 19036:1 19053:1 19070:1 19080:1 19096:1 19123:1 19134:4 19145:1 19156:2 19187:2 19193:1 19201:1 19213:1 19218:1 19225:1 19229:1 19233:1 19237:1 19249:1 19278:1 19349:1 19365:1 19371:1 19376:1 19406:1 19425:3 19427:1 19431:1 19438:2 19444:1 19446:1 19470:1 19474:1 19480:1 19486:1 19493:1 19508:1 19523:1 19525:1 19532:1 19540:1 19559:3 19562:1 19573:1 19580:1 19587:1 19615:3 19637:1 19638:2 19644:1 19716:1 19718:1 19746:1 19748:1 19810:2 19823:1 19832:3 19870:1 19901:1 19902:8 19974:2 20013:1 20040:1 20051:1 20055:1 20063:1 20068:1 20076:1 20083:2 20084:7 20087:1 20102:1 20107:1 20109:1 20122:1 20126:2 20139:1 20152:1 20204:1 20266:1 20268:1 20270:1 20273:1 20274:1 20275:1 20276:1 20281:1 20287:1 20305:1 20318:1 20327:1 20332:2 20337:2 20343:1 20344:1 20360:1 20366:1 20378:3 20393:1 20411:1 20412:1 20441:1 20447:1 20448:1 20460:1 20469:2 20480:2 20485:1 20490:1 20493:1 20508:1 20567:1 20595:1 20599:2 20630:1 20651:2 20659:1 20663:1 20686:4 20723:1 20734:1 20738:1 20742:6 20750:1 20751:1 20753:1 20755:1 20762:1 20769:1 20785:1 20786:1 20847:1 20878:1 20928:2 20930:5 20955:1 20958:1 20962:2 20964:1 20965:1 20970:2 20993:1 21007:1 21099:1 21111:1 21112:1 21134:1 21136:1 21137:1 21139:1 21154:1 21159:1 21205:1 21208:1 21245:1 21279:1 21319:1 21337:1 21361:1 21363:1 21364:2 21371:1 21413:1 21441:2 21480:3 21503:1 21512:1 21551:1 21556:1 21557:1 21559:1 21561:1 21576:1 21586:1 21612:3 21628:1 21630:1 21632:1 21637:3 21642:1 21663:1 21665:1 21671:1 21693:1 21695:1 21697:3 21703:1 21707:1 21716:1 21738:1 21760:3 21761:1 21773:2 21787:1 21831:3 21844:1 21857:1 21869:2 21905:1 21923:1 21926:1 21934:1 21952:1 21974:1 21977:2 21996:1 21998:1 22001:1 22010:1 22013:3 22014:1 22027:2 22043:1 22058:1 22065:1 22068:1 22080:3 22108:1 22114:1 22124:1 22138:1 22173:1 22186:1 22193:1 22208:1 22242:1 22247:1 22379:1 22386:1 22390:1 22394:1 22419:1 22423:1 22425:1 22429:1 22462:1 22511:1 22527:1 22528:2 22548:2 22553:1 22562:1 22585:2 22593:1 22602:1 22611:4 22657:1 22666:1 22669:3 22672:1 22690:1 22693:1 22740:4 22755:1 22760:2 22786:1 22801:2 22815:2 22817:1 22822:1 22823:1 22831:1 22846:1 22854:1 22894:2 22912:1 22916:1 22925:1 22939:1 22942:1 23006:2 23007:1 23022:2 23039:1 23050:2 23074:2 23088:1 23089:6 23113:1 23138:1 23151:1 23206:1 23248:3 23284:1 23305:3 23314:1 23324:1 23341:1 23360:4 23385:1 23404:1 23405:1 23430:15 23431:1 23432:1 23466:8 23476:1 23481:1 23490:1 23518:2 23527:1 23541:1 23546:1 23558:3 23586:6 23587:1 23610:1 23623:1 23645:2 23647:1 23694:1 23719:1 23740:1 23758:1 23784:1 23796:3 23797:3 23847:1 23849:1 23852:1 23853:2 23868:1 23956:3 23961:1 23966:1 23967:1 23971:10 23985:1 24000:1 24005:1 24006:1 24028:1 24042:1 24049:1 24057:1 24101:1 24108:1 24117:1 24139:1 24153:1 24162:1 24170:2 24225:1 24306:1 24307:1 24315:1 24320:1 24341:1 24347:2 24353:1 24362:1 24370:1 24379:1 24384:1 24393:1 24401:1 24409:1 24410:1 24411:1 24418:1 24421:1 24438:1 24440:1 24449:1 24455:1 24463:1 24469:2 24473:1 24476:2 24479:1 24480:1 24487:1 24491:1 24504:1 24523:1 24525:3 24535:1
20 13:1 25:1 29:1 30:1 34:1 37:1 53:1 76:1 88:1 96:1 105:1 112:1 150:1 162:1 175:1 186:1 216:1 218:2 240:3 276:1 296:2 298:1 314:1 339:1 341:1 407:2 441:1 489:1 492:1 510:2 527:1 541:2 565:2 566:1 568:1 640:1 720:1 752:2 762:2 766:1 778:1 785:3 788:1 795:1 805:1 814:3 828:1 831:2 833:1 834:3 838:2 846:1 857:1 869:3 888:3 889:3 892:1 906:1 912:1 937:1 946:1 948:2 952:1 960:1 967:1 989:1 1009:1 1015:2 1044:1 1078:1 1080:1 1094:1 1095:1 1108:1 1110:1 1112:1 1114:1 1131:1 1158:1 1208:1 1212:1 1230:2 1241:1 1257:1 1258:1 1259:2 1274:3 1293:1 1296:1 1297:1 1301:1 1311:3 1328:7 1330:2 1332:7 1340:1 1343:1 1345:1 1352:1 1353:1 1360:1 1372:1 1376:1 1381:9 1395:1 1396:1 1420:1 1429:1 1435:1 1436:1 1460:1 1476:1 1506:1 1507:5 1510:2 1517:1 1526:1 1546:1 1552:2 1568:1 1612:1 1617:1 1619:2 1629:1 1639:1 1641:1 1644:1 1661:1 1663:1 1703:1 1719:1 1731:4 1745:1 1763:1 1766:3 1775:1 1782:1 1815:1 1826:3 1828:1 1846:1 1853:2 1856:1 1875:2 1877:8 1879:2 1889:1 1891:1 1892:2 1894:1 1898:1 1909:1 1912:2 1930:1 1942:1 1945:4 1948:2 1949:1 1952:1 1960:2 1961:1 1963:3 1965:2 1968:2 1973:1 1976:2 1981:2 2000:1 2034:1 2038:1 2045:1 2055:1 2074:1 2077:1 2102:1 2115:1 2140:1 2164:1 2169:1 2188:1 2222:1 2241:1 2253:1 2254:1 2272:1 2282:1 2287:1 2308:1 2321:1 2325:2 2328:1 2383:1 2393:1 2405:1 2409:1 2434:1 2451:3 2461:2 2462:8 2464:1 2478:1 2480:2 2481:1 2491:1 2500:1 2507:8 2589:1 2597:2 2636:1 2645:3 2678:1 2700:1 2718:1 2745:1 2753:1 2764:1 2770:1 2779:1 2802:2 2807:1 2826:3 2831:1 2853:1 2876:1 2898:1 2941:1 2948:1 3002:1 3059:1 3063:1 3068:1 3090:1 3093:1 3095:1 3118:1 3129:1 3131:1 3135:1 3136:1 3147:2 3173:2 3183:1 3184:2 3221:3 3222:1 3234:1 3237:6 3288:1 3301:1 3306:1 3312:3 3326:1 3328:1 3355:1 3358:1 3367:1 3369:2 3399:1 3407:2 3408:1 3428:1 3442:1 3481:1 3495:1 3514:1 3537:1 3572:1 3598:1 3622:1 3653:1 3661:1 3666:1 3678:1 3681:1 3710:2 3737:1 3770:1 3777:1 3801:1 3803:1 3832:1 3845:1 3868:1 3878:1 3889:1 3902:2 3904:1 3911:1 3938:1 3939:1 3992:1 4003:1 4019:1 4046:1 4047:1 4073:1 4091:1 4107:6 4116:1 4143:1 4159:1 4160:1 4192:3 4198:4 4211:3 4212:1 4228:1 4229:1 4230:2 4231:2 4234:2 4238:1 4248:1 4319:1 4323:1 4351:1 4364:3 4368:1 4384:1 4391:1 4394:1 4409:3 4412:1 4420:1 4450:2 4464:1 4470:1 4498:2 4506:1 4529:1 4546:3 4561:1 4621:2 4633:2 4654:1 4662:2 4667:1 4673:1 4675:1 4681:1 4689:3 4703:1 4729:1 4741:1 4757:1 4768:1 4818:1 4823:1 4826:1 4836:2 4854:1 4861:1 4872:1 4876:2 4926:3 4927:1 4950:2 4953:2 4958:1 4959:1 4986:1 4994:1 5016:1 5049:2 5054:1 5075:1 5090:2 5100:2 5103:1 5127:1 5130:1 5142:1 5187:3 5189:1 5192:1 5205:1 5217:1 5247:3 5248:1 5263:1 5276:1 5282:1 5289:1 5308:2 5310:2 5322:3 5337:1 5340:2 5342:1 5347:2 5349:1 5350:2 5352:3 5396:1 5426:3 5437:3 5451:1 5488:1 5489:1 5520:1 5535:1 5592:1 5604:1 5609:1 5615:1 5616:2 5625:1 5629:2 5656:1 5663:1 5665:1 5668:1 5672:2 5674:4 5686:1 5688:1 5689:1 5702:1 5703:1 5726:2 5774:1 5783:3 5807:3 5808:1 5818:1 5819:1 5823:1 5837:1 5874:1 5878:2 5890:1 5917:1 5930:1 5947:6 5948:1 5959:1 5970:1 5998:2 6021:1 6035:1 6039:1 6040:1 6052:2 6071:1 6084:1 6096:1 6116:1 6130:1 6147:1 6175:3 6183:3 6192:1 6194:1 6201:1 6209:1 6231:1 6237:2 6241:1 6255:1 6261:1 6269:1 6276:1 6285:2 6286:1 6289:1 6324:1 6332:1 6359:2 6365:7 6382:1 6384:1 6386:3 6387:1 6429:19 6449:4 6451:8 6460:1 6486:1 6497:2 6501:1 6508:1 6551:1 6619:1 6655:1 6669:3 6677:1 6680:1 6700:1 6771:1 6785:1 6789:1 6806:1 6810:9 6816:1 6818:1 6841:1 6859:16 6882:1 6906:1 6908:1 6918:1 6926:1 6981:1 7020:1 7030:1 7038:2 7054:1 7068:3 7077:1 7084:1 7121:1 7125:1 7156:1 7157:2 7164:1 7166:3 7170:4 7172:1 7177:1 7182:3 7193:1 7194:1 7262:1 7263:1 7305:1 7325:1 7364:1 7384:1 7400:1 7409:2 7443:1 7451:1 7457:1 7461:2 7488:1 7505:1 7521:1 7526:1 7535:1 7571:1 7573:2 7581:6 7590:4 7594:1 7604:3 7615:1 7665:1 7686:1 7712:1 7731:1 7787:2 7790:1 7798:1 7803:1 7805:1 7810:1 7878:1 7896:1 7912:2 7943:1 7944:1 7964:2 7975:1 7988:1 8036:1 8048:1 8061:1 8064:3 8067:1 8070:6 8071:1 8080:3 8099:1 8118:1 8121:1 8138:2 8139:1 8143:1 8162:9 8177:1 8189:1 8195:1 8212:1 8215:1 8222:1 8226:1 8285:2 8296:2 8304:2 8317:1 8348:1 8352:1 8363:2 8379:1 8382:1 8392:1 8443:1 8444:1 8480:1 8532:2 8566:1 8574:1 8575:1 8581:2 8617:2 8679:3 8684:1 8700:1 8736:2 8760:1 8769:1 8778:3 8785:1 8789:2 8801:2 8802:2 8807:1 8809:1 8814:1 8815:1 8817:1 8818:1 8822:1 8824:1 8828:1 8829:1 8832:1 8833:1 8840:1 8841:1 8856:1 8857:1 8867:1 8881:1 8891:3 8897:1 8907:1 8910:1 8914:4 8916:4 8949:1 8975:1 8981:1 8989:4 9001:3 9070:1 9080:1 9090:1 9101:3 9102:1 9145:1 9193:1 9200:1 9202:1 9205:1 9215:1 9222:1 9225:1 9252:6 9260:1 9282:1 9289:1 9313:1 9317:1 9338:1 9346:1 9359:3 9363:2 9388:1 9389:1 9411:1 9424:1 9433:1 9442:1 9459:1 9472:1 9486:2 9488:6 9536:1 9542:1 9543:2 9561:1 9563:2 9586:1 9610:1 9621:1 9624:1 9639:1 9653:5 9659:1 9668:1 9682:1 9687:1 9695:1 9698:1 9710:1 9716:1 9723:2 9727:1 9730:1 9743:1 9762:1 9763:5 9772:2 9778:6 9810:1 9822:1 9823:11 9880:1 9881:1 9904:1 9911:1 9918:2 9923:4 9949:1 9974:3 9989:1 10001:1 10018:1 10022:1 10037:1 10046:1 10053:2 10054:2 10061:1 10074:3 10079:1 10089:1 10095:1 10105:1 10118:1 10130:1 10146:1 10151:2 10169:1 10179:1 10225:1 10233:1 10265:1 10281:2 10337:1 10363:1 10364:2 10391:1 10413:1 10430:1 10480:7 10483:1 10487:2 10502:1 10505:1 10513:1 10531:1 10550:11 10556:1 10571:1 10576:2 10598:1 10621:2 10637:1 10652:1 10695:1 10724:1 10725:1 10733:1 10739:2 10754:1 10787:1 10818:1 10836:4 10844:1 10846:1 10847:3 10851:2 10861:1 10870:1 10871:8 10872:1 10874:1 10897:1 10901:1 10923:1 10942:2 10943:1 10969:1 10970:8 10974:1 10982:1 10985:14 11001:1 11016:1 11046:3 11065:1 11087:1 11101:2 11156:1 11159:2 11163:1 11168:1 11273:1 11275:1 11277:1 11280:2 11287:1 11301:2 11311:1 11322:1 11340:1 11342:1 11368:10 11375:1 11376:1 11406:1 11407:2 11408:1 11415:1 11419:1 11432:2 11439:1 11447:1 11449:1 11459:1 11509:3 11512:2 11531:2 11564:1 11607:1 11612:1 11613:1 11614:2 11638:1 11657:1 11697:2 11704:1 11717:1 11718:1 11744:1 11747:1 11777:1 11788:1 11806:1 11808:1 11813:1 11816:1 11825:1 11833:1 11855:1 11856:1 11861:2 11881:1 11900:1 11902:3 11910:1 11927:3 11942:1 11990:3 12006:1 12020:1 12035:1 12036:1 12045:1 12050:2 12054:1 12060:1 12089:1 12099:1 12100:1 12105:1 12114:1 12123:1 12141:1 12157:1 12173:1 12176:1 12218:1 12229:1 12263:2 12276:2 12287:1 12303:1 12341:1 12372:1 12383:3 12387:1 12389:1 12408:1 12437:2 12473:1 12525:1 12550:3 12582:3 12583:1 12584:1 12586:1 12630:1 12633:1 12667:1 12689:1 12732:1 12739:1 12741:19 12766:1 12770:1 12778:1 12816:1 12822:1 12828:1 12863:1 12877:1 12897:1 12911:1 12950:2 12956:1 12958:2 12959:1 12961:2 12981:1 12983:1 12984:1 12988:2 12995:1 12997:1 13000:1 13012:1 13030:2 13031:1 13069:1 13094:5 13095:2 13113:1 13173:1 13207:2 13221:1 13225:1 13246:1 13259:1 13270:1 13292:2 13295:2 13328:3 13352:1 13363:1 13371:1 13373:1 13378:1 13383:3 13390:1 13405:1 13410:1 13425:1 13430:1 13431:2 13435:1 13437:2 13442:1 13444:1 13445:1 13448:1 13453:1 13455:1 13459:5 13469:1 13482:3 13495:1 13525:2 13545:1 13570:1 13622:1 13637:1 13670:1 13675:1 13703:1 13719:1 13739:1 13743:1 13746:1 13752:2 13758:1 13765:1 13766:1 13767:1 13775:1 13812:1 13819:1 13826:1 13835:2 13837:4 13843:2 13846:1 13868:1 13876:2 13895:1 13906:1 13907:1 13924:2 13925:3 13928:9 13931:1 13965:2 13966:1 13970:1 13972:2 13977:2 13979:2 13994:1 14003:2 14008:1 14031:1 14035:1 14039:2 14046:1 14052:2 14071:1 14077:1 14094:1 14097:1 14100:1 14101:1 14108:1 14114:1 14118:1 14122:1 14124:1 14125:1 14142:1 14154:1 14156:1 14178:1 14189:1 14200:1 14207:1 14210:1 14223:1 14240:2 14246:1 14262:1 14275:2 14307:1 14368:1 14393:1 14398:1 14403:1 14443:1 14462:1 14468:1 14491:1 14516:1 14539:2 14544:2 14553:1 14570:1 14574:1 14575:1 14577:1 14585:1 14596:2 14627:1 14637:1 14677:6 14713:1 14719:2 14740:1 14762:3 14764:1 14768:2 14774:1 14775:1 14781:1 14803:1 14820:1 14825:1 14830:1 14833:1 14837:1 14844:3 14853:2 14856:1 14864:1 14877:1 14885:1 14887:1 14903:8 14929:1 14975:1 14981:1 15024:1 15035:1 15070:1 15080:1 15116:1 15129:1 15139:1 15142:1 15147:2 15184:1 15205:1 15215:1 15227:1 15282:2 15307:3 15312:2 15367:1 15370:1 15371:1 15389:1 15480:1453 15482:2 15496:3 15503:1 15514:1 15532:1 15543:1 15564:1 15575:1 15577:1 15583:2 15587:1 15602:1 15633:1 15646:4 15655:1 15658:3 15661:1 15662:1 15663:1 15672:1 15684:1 15708:1 15723:4 15725:2 15800:2 15834:3 15883:1 15887:2 15898:1 15929:2 15936:1 15944:1 15949:1 15990:1 16002:1 16009:1 16019:1 16042:2 16046:1 16054:2 16074:4 16095:1 16102:2 16110:1 16117:1 16129:1 16152:1 16159:1 16170:1 16176:1 16177:1 16206:8 16212:1 16235:1 16239:1 16268:1 16307:1 16331:1 16332:1 16362:1 16380:1 16387:2 16402:1 16408:1 16414:1 16416:1 16432:2 16434:2 16443:2 16449:1 16462:1 16479:1 16482:1 16485:1 16495:1 16522:2 16538:1 16541:1 16548:1 16593:1 16611:1 16618:2 16650:1 16661:1 16669:4 16679:1 16681:1 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:3 16763:2 16768:1 16782:1 16795:2 16797:1 16815:6 16823:3 16856:1 16861:1 16908:1 16945:1 16947:1 16965:2 16981:1 17001:1 17014:2 17027:1 17043:1 17046:4 17050:1 17056:1 17058:2 17101:1 17109:1 17138:1 17144:1 17163:1 17188:4 17219:1 17221:1 17223:1 17234:1 17238:1 17255:1 17261:1 17275:1 17305:1 17311:2 17329:1 17352:1 17358:1 17362:1 17380:1 17429:1 17437:3 17443:1 17452:1 17485:10 17491:2 17496:1 17510:4 17532:1 17535:1 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17571:1 17601:1 17604:1 17610:2 17648:1 17706:3 17735:1 17738:3 17747:2 17806:1 17812:1 17813:1 17827:1 17835:3 17837:1 17839:1 17851:1 17852:1 17884:1 17893:1 17916:1 17929:1 17943:1 17965:2 17993:2 17995:1 17996:2 18035:1 18037:1 18043:1 18087:1 18091:1 18092:1 18093:1 18130:1 18131:1 18186:1 18196:3 18197:3 18199:3 18204:1 18210:1 18228:1 18231:1 18234:2 18244:1 18249:1 18264:1 18285:1 18296:1 18339:1 18360:2 18366:2 18378:3 18406:1 18421:1 18434:1 18479:1 18491:1 18498:2 18505:1 18506:2 18511:1 18537:1 18565:1 18567:2 18573:2 18616:1 18619:1 18631:1 18641:1 18643:1 18644:1 18658:1 18666:1 18676:1 18686:1 18693:2 18727:2 18729:1 18732:2 18739:2 18742:1 18776:1 18784:1 18803:1 18807:1 18820:2 18843:1 18854:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:1 18939:1 18941:2 18943:1 18946:1 18948:1 18949:1 18961:1 18965:1 18975:3 18976:3 18978:1 18985:1 18990:3 19029:2 19033:1 19036:1 19053:1 19070:1 19080:1 19096:1 19123:1 19134:4 19145:1 19156:2 19187:2 19193:1 19201:1 19213:1 19218:1 19225:1 19229:1 19233:1 19237:1 19249:1 19278:1 19349:1 19365:1 19371:1 19376:1 19406:1 19425:3 19427:1 19431:1 19438:2 19444:1 19446:1 19470:1 19474:1 19480:1 19486:1 19493:1 19508:1 19523:1 19525:1 19532:1 19540:1 19559:3 19562:1 19573:1 19580:1 19587:1 19615:3 19637:1 19638:2 19644:1 19666:1 19716:2 19718:1 19746:1 19748:1 19810:2 19823:1 19832:3 19870:1 19901:1 19902:8 19974:2 20013:1 20040:1 20051:1 20055:1 20063:1 20068:1 20076:1 20083:2 20084:7 20087:1 20102:1 20107:1 20109:1 20122:1 20126:2 20139:1 20152:1 20204:1 20266:1 20268:1 20270:1 20273:1 20274:1 20275:1 20276:1 20281:1 20287:1 20305:1 20318:1 20327:1 20332:2 20334:1 20337:2 20343:1 20344:1 20360:1 20366:2 20378:3 20379:1 20393:1 20411:1 20412:1 20441:1 20447:1 20448:1 20460:1 20469:2 20480:2 20485:1 20490:1 20493:1 20508:1 20567:1 20595:1 20599:2 20630:1 20651:2 20659:1 20663:1 20686:5 20723:1 20734:1 20738:1 20742:6 20750:1 20751:1 20753:1 20755:1 20762:1 20769:1 20785:1 20786:1 20847:1 20878:1 20928:2 20930:5 20955:1 20958:1 20962:2 20964:1 20965:1 20970:2 20989:1 20993:1 21007:1 21099:1 21111:1 21112:1 21134:1 21136:1 21137:1 21139:1 21154:1 21159:1 21205:1 21208:1 21209:1 21245:1 21267:1 21279:1 21319:1 21337:1 21361:1 21363:1 21364:3 21371:1 21413:1 21441:2 21480:3 21503:1 21512:1 21551:1 21556:1 21557:1 21559:1 21561:1 21576:1 21586:1 21612:3 21628:1 21630:1 21632:1 21637:3 21642:1 21663:1 21665:1 21671:1 21693:1 21695:1 21697:3 21703:1 21707:1 21716:1 21738:1 21760:3 21761:1 21773:2 21787:1 21831:3 21844:1 21857:1 21869:2 21905:1 21923:1 21926:1 21934:1 21952:1 21974:1 21977:2 21996:1 21998:1 22001:1 22010:2 22013:3 22014:1 22027:2 22043:1 22048:1 22058:1 22065:1 22068:1 22080:3 22108:1 22114:1 22124:1 22138:1 22173:1 22186:1 22193:1 22195:1 22208:1 22242:1 22247:1 22379:1 22386:1 22390:1 22394:1 22419:1 22423:1 22425:1 22429:1 22462:1 22511:1 22527:1 22528:2 22547:1 22548:2 22550:1 22553:1 22562:1 22585:2 22593:1 22601:1 22602:1 22611:4 22657:1 22666:1 22669:3 22672:1 22690:1 22693:1 22740:4 22755:1 22760:2 22786:1 22801:2 22815:2 22817:1 22822:1 22823:1 22825:1 22831:1 22846:1 22854:1 22894:2 22897:1 22912:1 22916:1 22925:1 22939:1 22942:1 22957:1 23006:2 23007:1 23022:3 23039:1 23050:2 23074:2 23088:1 23089:6 23109:1 23113:1 23138:1 23151:1 23206:1 23248:3 23284:1 23305:3 23314:1 23324:1 23341:1 23360:4 23385:1 23404:1 23405:1 23430:15 23431:1 23432:1 23466:10 23476:1 23481:1 23490:1 23518:2 23527:1 23541:1 23546:1 23551:1 23558:3 23586:6 23587:1 23610:1 23623:1 23645:2 23647:1 23694:1 23719:1 23740:1 23758:1 23784:1 23796:3 23797:3 23847:1 23849:1 23852:1 23853:2 23868:1 23956:3 23961:1 23966:1 23967:1 23970:1 23971:10 23985:1 24000:1 24005:1 24006:2 24028:1 24042:1 24049:1 24057:1 24101:1 24108:1 24117:1 24126:1 24139:1 24153:1 24162:1 24170:2 24225:1 24306:1 24307:1 24315:1 24320:1 24341:1 24347:2 24353:1 24362:1 24370:1 24379:1 24384:1 24393:1 24401:1 24409:1 24410:1 24411:1 24418:1 24421:1 24438:1 24440:1 24449:1 24455:1 24463:1 24469:2 24473:2 24476:2 24479:1 24480:1 24487:1 24491:1 24504:1 24523:1 24525:3 24535:1
20 13:1 25:1 29:1 30:1 34:1 37:1 53:1 76:1 88:1 96:1 105:1 112:1 150:1 162:1 175:1 186:1 216:1 218:2 240:3 276:1 296:2 298:1 314:1 339:1 341:2 407:2 441:1 489:1 492:1 510:2 527:2 541:2 565:2 566:1 568:2 640:1 720:1 752:2 762:2 766:1 778:1 785:3 788:1 795:1 805:1 814:3 828:1 831:2 833:1 834:5 838:2 846:1 857:1 869:4 888:3 889:3 892:1 899:1 906:1 912:1 937:1 946:1 948:2 952:1 960:1 967:1 989:1 1005:1 1009:1 1015:2 1044:1 1074:1 1078:1 1080:1 1094:1 1095:1 1108:1 1110:1 1112:1 1114:1 1131:1 1158:1 1208:1 1212:1 1220:1 1230:2 1236:1 1241:1 1257:1 1258:1 1259:2 1274:3 1293:1 1296:1 1297:1 1301:1 1311:3 1328:8 1330:2 1332:7 1340:1 1343:1 1345:1 1352:1 1353:1 1360:1 1372:1 1376:1 1381:9 1395:1 1396:1 1420:1 1429:1 1435:1 1436:1 1460:1 1476:1 1506:1 1507:5 1510:2 1517:2 1526:1 1546:1 1552:2 1568:1 1612:1 1617:1 1619:2 1629:1 1639:1 1641:1 1644:1 1661:1 1663:1 1703:1 1719:1 1731:4 1745:1 1763:1 1766:3 1775:1 1782:1 1815:1 1826:3 1828:1 1838:1 1846:1 1853:2 1856:1 1875:2 1877:8 1879:3 1889:1 1891:1 1892:2 1894:1 1898:1 1909:1 1912:2 1930:1 1942:1 1945:4 1948:2 1949:1 1952:1 1959:1 1960:2 1961:1 1963:3 1965:2 1968:2 1973:1 1976:2 1981:2 2000:1 2034:1 2038:1 2045:1 2055:1 2074:1 2077:1 2102:1 2110:1 2115:1 2140:1 2157:1 2164:1 2169:1 2188:1 2222:1 2241:1 2253:1 2254:1 2272:1 2282:1 2287:1 2308:1 2321:1 2325:2 2328:1 2374:1 2383:1 2393:1 2405:1 2409:1 2434:1 2451:3 2461:2 2462:8 2464:1 2478:1 2480:2 2481:1 2491:1 2500:1 2507:8 2589:1 2597:2 2636:1 2645:3 2678:1 2700:1 2718:1 2745:1 2753:1 2764:1 2770:1 2779:1 2802:2 2807:1 2826:3 2831:1 2842:1 2853:1 2876:1 2898:1 2941:1 2948:1 3002:1 3059:1 3063:1 3068:1 3090:1 3093:1 3095:1 3118:1 3129:1 3131:1 3135:1 3136:1 3139:1 3147:2 3173:2 3183:1 3184:2 3221:3 3222:1 3234:1 3237:6 3288:1 3301:1 3306:1 3312:4 3326:1 3328:1 3355:1 3358:1 3367:1 3369:2 3399:1 3407:2 3408:1 3428:1 3442:1 3467:1 3481:1 3495:1 3514:1 3537:1 3572:1 3598:1 3622:1 3653:1 3661:1 3666:1 3678:1 3681:1 3710:2 3737:1 3770:1 3777:1 3801:1 3803:2 3831:1 3832:1 3845:1 3868:1 3878:1 3889:1 3902:2 3904:1 3911:1 3928:1 3938:1 3939:1 3992:1 4003:1 4019:1 4046:1 4047:1 4073:1 4091:1 4107:8 4116:1 4143:1 4159:1 4160:1 4192:3 4198:5 4211:3 4212:1 4228:1 4229:1 4230:2 4231:2 4234:2 4237:1 4238:1 4248:1 4319:1 4323:1 4351:1 4364:4 4368:1 4384:1 4391:1 4394:1 4409:3 4412:1 4420:1 4450:2 4464:1 4470:1 4498:2 4506:1 4529:1 4546:3 4561:1 4621:2 4633:2 4654:1 4662:2 4667:1 4673:1 4675:1 4681:1 4689:3 4703:2 4729:1 4741:1 4757:1 4768:1 4818:1 4821:1 4823:1 4826:1 4836:2 4854:1 4861:1 4872:1 4876:2 4926:3 4927:1 4950:2 4953:2 4958:1 4959:1 4986:1 4994:1 5016:1 5049:2 5054:1 5075:1 5090:2 5100:2 5103:1 5127:1 5130:1 5142:1 5187:3 5189:1 5192:1 5205:1 5217:1 5247:3 5248:1 5260:1 5263:1 5276:1 5282:2 5289:1 5308:2 5310:2 5322:3 5325:1 5337:1 5340:2 5342:1 5347:2 5349:1 5350:2 5352:3 5396:1 5426:4 5437:4 5451:1 5488:1 5489:1 5520:1 5535:1 5592:1 5604:1 5609:1 5615:1 5616:2 5625:1 5629:2 5656:1 5663:1 5665:1 5668:1 5672:2 5674:4 5686:1 5688:1 5689:1 5702:1 5703:1 5726:2 5774:1 5783:3 5807:3 5808:1 5818:1 5819:1 5823:1 5837:1 5874:1 5878:2 5890:1 5917:1 5930:1 5947:6 5948:1 5959:1 5970:1 5998:2 6021:1 6035:1 6039:1 6040:1 6052:2 6071:1 6084:1 6096:1 6116:1 6130:1 6147:1 6175:3 6183:3 6192:1 6194:1 6201:1 6209:1 6231:1 6237:2 6241:1 6248:1 6255:1 6261:1 6269:1 6276:1 6285:2 6286:1 6289:1 6324:1 6332:1 6354:1 6359:2 6365:7 6382:1 6384:1 6386:4 6387:1 6429:20 6449:4 6451:8 6460:1 6486:1 6497:2 6501:1 6508:1 6551:1 6619:1 6655:1 6669:3 6677:2 6680:1 6700:1 6771:1 6785:1 6789:1 6806:1 6810:9 6816:1 6818:1 6841:1 6859:16 6882:1 6906:1 6908:1 6918:1 6926:1 6981:1 7020:1 7030:1 7038:2 7054:1 7056:1 7068:3 7077:1 7084:1 7121:1 7125:1 7156:1 7157:2 7164:1 7166:3 7170:4 7172:1 7177:1 7182:3 7193:1 7194:1 7262:1 7263:1 7305:1 7325:1 7364:1 7384:1 7400:1 7409:2 7434:1 7443:1 7451:1 7457:1 7461:2 7488:1 7505:1 7521:1 7526:1 7535:1 7571:1 7573:2 7581:6 7590:4 7594:1 7604:3 7615:1 7665:1 7686:1 7712:1 7731:1 7787:2 7790:1 7798:1 7803:1 7805:1 7810:1 7878:1 7896:1 7912:2 7930:1 7932:1 7943:1 7944:1 7964:2 7975:1 7988:2 8036:1 8048:1 8061:1 8064:3 8067:1 8070:6 8071:1 8080:3 8099:1 8118:1 8121:1 8138:2 8139:1 8143:1 8162:9 8177:1 8189:1 8195:1 8212:1 8215:1 8222:1 8226:1 8285:2 8296:2 8304:2 8317:1 8348:1 8352:1 8363:2 8379:1 8382:1 8392:1 8443:1 8444:1 8480:1 8532:2 8566:1 8574:1 8575:1 8581:2 8617:2 8679:4 8684:1 8700:1 8736:2 8753:1 8760:1 8769:1 8778:3 8785:1 8789:2 8801:2 8802:2 8807:1 8809:1 8814:2 8815:1 8817:1 8818:1 8822:1 8824:1 8828:1 8829:1 8832:1 8833:1 8840:1 8841:1 8856:1 8857:1 8867:1 8881:1 8891:3 8897:1 8907:1 8910:1 8914:4 8916:4 8949:1 8975:1 8981:1 8989:4 9001:3 9070:1 9080:1 9090:1 9101:3 9102:1 9106:1 9108:1 9145:1 9173:1 9193:1 9200:1 9202:1 9205:1 9215:1 9222:1 9225:1 9252:6 9260:1 9282:1 9289:1 9313:1 9317:1 9338:1 9346:1 9359:3 9363:2 9388:1 9389:1 9411:1 9424:1 9433:1 9442:1 9459:1 9472:1 9486:2 9488:6 9536:1 9542:1 9543:2 9545:1 9561:1 9563:2 9586:1 9587:1 9610:1 9621:1 9624:2 9639:1 9653:5 9656:1 9659:1 9668:1 9682:1 9687:1 9695:1 9698:1 9707:1 9710:1 9716:1 9723:2 9727:1 9730:1 9743:1 9762:1 9763:5 9772:2 9778:7 9810:1 9822:1 9823:11 9880:1 9881:1 9904:1 9911:1 9918:2 9923:4 9949:1 9974:3 9989:1 10001:1 10018:1 10022:1 10037:1 10046:1 10053:2 10054:2 10061:1 10074:3 10079:1 10089:1 10095:1 10105:1 10118:1 10130:1 10146:1 10151:2 10169:1 10179:1 10225:1 10233:1 10265:1 10281:2 10337:1 10363:1 10364:2 10391:1 10413:1 10430:1 10480:7 10483:1 10487:2 10502:1 10505:1 10513:1 10531:1 10550:11 10556:1 10571:1 10576:2 10598:1 10621:2 10637:1 10652:1 10695:1 10724:1 10725:1 10733:1 10739:3 10754:1 10787:1 10818:1 10836:4 10844:1 10846:1 10847:3 10851:2 10861:1 10870:1 10871:8 10872:1 10874:1 10897:1 10901:1 10923:1 10942:2 10943:1 10969:1 10970:8 10974:1 10982:1 10985:14 11001:1 11016:1 11046:3 11065:1 11087:1 11101:2 11156:1 11159:2 11163:1 11168:1 11273:1 11275:1 11277:1 11280:2 11287:1 11301:2 11311:1 11322:1 11340:1 11342:1 11368:10 11375:1 11376:1 11406:1 11407:2 11408:1 11415:1 11419:1 11432:2 11439:1 11447:1 11449:1 11451:1 11459:1 11509:3 11512:2 11531:2 11564:1 11607:1 11612:1 11613:1 11614:2 11638:1 11657:1 11697:2 11704:1 11717:1 11718:1 11744:1 11747:1 11777:1 11788:1 11806:1 11808:1 11813:1 11816:1 11818:1 11825:1 11833:1 11855:1 11856:1 11861:2 11881:1 11900:1 11902:4 11910:1 11927:3 11942:1 11985:1 11990:3 12006:1 12016:2 12020:1 12035:1 12036:1 12045:1 12050:2 12054:1 12060:1 12089:1 12091:1 12099:1 12100:1 12105:1 12114:1 12123:1 12141:1 12144:1 12157:1 12173:1 12176:1 12218:1 12229:1 12263:2 12269:1 12276:2 12287:1 12303:2 12341:1 12372:1 12383:3 12387:1 12389:1 12408:1 12437:2 12473:1 12525:1 12550:3 12582:3 12583:1 12584:1 12586:1 12602:1 12630:1 12633:1 12667:1 12689:1 12732:1 12739:1 12741:20 12766:1 12770:1 12778:1 12816:1 12822:1 12828:1 12863:1 12872:1 12877:1 12897:1 12911:1 12950:2 12956:1 12958:2 12959:1 12961:2 12981:1 12983:1 12984:1 12988:3 12995:1 12997:1 13000:1 13012:1 13030:2 13031:1 13069:1 13070:1 13094:5 13095:2 13113:1 13173:1 13207:2 13221:1 13225:1 13246:1 13259:1 13270:1 13292:2 13295:2 13328:3 13339:1 13352:1 13363:1 13371:1 13373:1 13378:1 13383:3 13390:1 13405:1 13410:1 13425:1 13430:1 13431:2 13435:1 13437:2 13442:1 13444:1 13445:1 13448:1 13453:1 13455:1 13459:5 13469:1 13482:3 13495:1 13525:2 13545:1 13554:1 13570:1 13622:1 13637:1 13670:1 13675:1 13703:1 13719:1 13739:1 13743:1 13746:1 13752:2 13758:1 13765:1 13766:1 13767:1 13775:1 13812:1 13819:1 13826:1 13835:2 13837:4 13843:2 13846:1 13868:1 13876:2 13895:1 13906:1 13907:1 13924:2 13925:3 13928:9 13931:1 13965:2 13966:1 13970:1 13972:2 13977:2 13979:2 13994:1 14000:1 14003:2 14008:1 14031:1 14035:1 14039:2 14046:1 14052:2 14071:1 14077:1 14094:1 14097:1 14100:1 14101:1 14108:1 14114:1 14118:1 14122:1 14124:1 14125:1 14142:1 14154:1 14156:1 14178:1 14189:1 14200:1 14207:1 14210:1 14223:1 14240:2 14246:1 14262:1 14275:2 14307:1 14368:1 14372:1 14393:1 14398:1 14403:1 14443:1 14462:1 14468:1 14491:1 14516:1 14518:1 14539:2 14544:2 14553:1 14570:1 14574:1 14575:1 14577:1 14585:1 14596:2 14627:1 14637:1 14677:6 14713:1 14719:2 14740:1 14762:3 14764:1 14768:2 14774:1 14775:1 14781:1 14803:1 14820:1 14825:1 14830:1 14833:1 14837:1 14844:3 14853:2 14856:1 14864:1 14877:1 14885:1 14887:1 14889:1 14903:8 14929:1 14931:2 14975:1 14981:1 15024:1 15035:1 15070:1 15080:1 15116:1 15129:1 15139:1 15142:1 15147:2 15184:1 15205:1 15215:1 15227:1 15282:2 15307:4 15312:2 15315:1 15367:1 15370:1 15371:1 15389:1 15480:1526 15482:2 15496:3 15503:1 15514:1 15532:1 15543:1 15564:1 15575:1 15577:1 15583:2 15587:1 15602:1 15633:1 15646:4 15655:1 15658:3 15661:1 15662:1 15663:1 15672:1 15684:1 15708:1 15723:4 15725:2 15800:2 15834:3 15883:1 15887:2 15898:1 15929:2 15936:1 15944:1 15949:1 15990:1 16002:1 16009:1 16019:1 16042:2 16046:1 16054:2 16074:4 16095:1 16102:2 16110:1 16117:1 16129:1 16152:1 16159:1 16170:1 16176:1 16177:1 16206:8 16212:1 16235:1 16239:1 16268:1 16271:1 16307:1 16331:1 16332:1 16362:1 16380:1 16387:2 16402:1 16408:1 16414:1 16416:1 16432:2 16434:2 16443:2 16449:1 16462:1 16479:1 16482:1 16485:1 16495:1 16522:2 16538:1 16541:1 16548:1 16593:1 16611:1 16618:2 16650:1 16661:1 16669:4 16679:1 16681:1 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:3 16763:2 16768:1 16782:1 16795:2 16797:1 16811:1 16815:6 16823:3 16856:1 16861:1 16908:1 16945:1 16947:1 16965:2 16981:1 17001:1 17014:2 17027:1 17043:1 17046:4 17050:1 17056:1 17058:2 17101:1 17109:1 17138:1 17144:1 17163:1 17188:4 17219:1 17221:1 17223:1 17234:1 17238:1 17255:1 17261:1 17275:1 17305:1 17311:2 17329:1 17352:1 17358:1 17362:1 17380:1 17429:1 17437:3 17443:1 17452:1 17485:10 17491:2 17496:1 17510:4 17532:1 17535:1 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17571:1 17601:1 17604:1 17610:2 17648:1 17706:3 17735:1 17738:3 17747:2 17774:1 17806:1 17812:1 17813:1 17827:1 17835:3 17837:1 17839:1 17851:1 17852:1 17884:1 17893:1 17916:1 17929:1 17943:1 17965:2 17980:1 17993:2 17995:1 17996:2 18035:1 18037:1 18043:1 18066:1 18087:1 18091:1 18092:1 18093:1 18130:1 18131:1 18186:1 18196:3 18197:3 18199:3 18204:1 18210:1 18228:1 18231:1 18234:2 18244:1 18249:1 18261:1 18264:1 18285:1 18296:1 18339:1 18360:2 18366:2 18378:3 18392:1 18406:1 18421:1 18434:1 18479:1 18491:1 18498:2 18505:1 18506:2 18511:1 18537:1 18565:1 18567:2 18573:2 18575:2 18578:1 18616:1 18619:1 18631:1 18641:1 18643:1 18644:1 18658:1 18666:1 18676:1 18686:1 18693:2 18727:2 18729:1 18732:2 18739:2 18742:1 18776:1 18784:1 18803:1 18807:1 18820:2 18843:1 18854:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:1 18939:1 18941:2 18943:1 18946:1 18948:1 18949:1 18961:1 18965:1 18975:3 18976:3 18978:1 18985:1 18990:3 19029:2 19033:1 19036:1 19053:1 19070:1 19080:1 19096:2 19123:1 19134:4 19145:1 19156:2 19187:2 19193:1 19201:1 19212:1 19213:1 19218:1 19225:1 19229:1 19233:1 19237:1 19249:1 19278:1 19349:1 19365:1 19371:1 19376:1 19406:1 19425:3 19427:1 19431:1 19438:2 19443:1 19444:1 19446:1 19470:1 19474:1 19480:1 19486:1 19493:1 19508:1 19523:1 19525:1 19532:1 19540:1 19559:3 19562:1 19573:1 19580:1 19587:1 19615:3 19637:1 19638:2 19644:1 19666:1 19716:2 19718:1 19746:1 19748:1 19810:2 19823:1 19832:3 19870:1 19901:1 19902:8 19974:2 20013:1 20040:1 20051:1 20055:1 20063:1 20068:2 20076:1 20083:2 20084:7 20087:1 20102:1 20107:1 20109:1 20122:1 20126:2 20139:1 20152:1 20204:1 20266:1 20268:1 20270:1 20273:1 20274:1 20275:1 20276:1 20281:1 20287:1 20305:1 20318:1 20327:1 20332:2 20334:1 20337:2 20343:1 20344:1 20360:1 20366:2 20378:3 20379:1 20393:1 20411:1 20412:1 20441:1 20447:1 20448:1 20460:1 20469:2 20480:2 20485:1 20490:1 20493:1 20508:1 20567:1 20595:1 20599:2 20630:1 20651:2 20659:1 20663:1 20686:6 20723:1 20734:1 20738:1 20742:6 20750:1 20751:1 20753:1 20755:1 20762:1 20769:1 20785:1 20786:1 20847:1 20878:1 20928:2 20930:5 20955:1 20958:1 20962:2 20964:1 20965:1 20970:2 20989:1 20993:1 21007:1 21099:1 21111:1 21112:1 21134:1 21136:1 21137:1 21139:1 21154:1 21159:1 21205:1 21208:1 21209:1 21245:1 21267:1 21279:1 21319:1 21337:1 21361:1 21363:1 21364:3 21371:1 21413:1 21441:2 21480:3 21503:1 21512:1 21551:1 21556:1 21557:1 21559:1 21561:1 21576:1 21586:1 21594:1 21612:3 21628:1 21630:1 21632:1 21637:3 21642:1 21663:1 21665:1 21671:1 21693:1 21695:1 21697:3 21703:1 21707:1 21716:1 21738:1 21760:3 21761:1 21773:2 21787:1 21831:3 21844:1 21857:1 21869:2 21887:1 21905:1 21923:1 21926:1 21934:1 21952:1 21974:1 21977:2 21996:1 21998:1 22001:1 22010:2 22013:3 22014:1 22027:2 22043:1 22048:1 22058:1 22065:1 22068:1 22080:3 22108:1 22114:1 22124:1 22138:1 22173:1 22186:1 22193:1 22195:1 22208:1 22242:1 22247:1 22379:1 22386:1 22390:1 22394:1 22419:1 22423:1 22425:1 22429:1 22462:1 22511:1 22527:1 22528:2 22547:1 22548:2 22550:1 22553:1 22562:1 22585:2 22593:1 22601:1 22602:1 22611:4 22657:1 22666:1 22669:3 22672:1 22690:1 22693:1 22740:4 22749:1 22755:1 22760:2 22786:1 22801:2 22815:2 22817:1 22822:1 22823:1 22825:1 22831:1 22837:1 22846:1 22854:1 22894:2 22897:1 22912:1 22916:1 22925:1 22939:1 22942:1 22957:1 23006:2 23007:1 23022:4 23039:1 23050:2 23074:2 23088:1 23089:6 23109:1 23113:1 23138:1 23151:1 23206:1 23248:3 23284:1 23305:3 23314:1 23324:1 23339:1 23341:1 23360:4 23385:1 23404:1 23405:1 23430:15 23431:1 23432:1 23446:1 23466:10 23476:1 23481:1 23490:1 23518:2 23527:1 23541:1 23546:1 23551:1 23558:3 23586:6 23587:1 23610:1 23623:1 23645:2 23647:1 23694:1 23719:1 23740:1 23758:1 23784:1 23796:3 23797:3 23840:1 23847:1 23849:1 23852:1 23853:2 23868:1 23956:3 23961:1 23966:1 23967:1 23970:1 23971:10 23985:1 24000:1 24005:1 24006:2 24028:1 24042:1 24049:1 24057:1 24101:1 24108:1 24117:1 24126:1 24139:1 24153:1 24162:1 24170:2 24223:1 24225:1 24293:1 24301:1 24306:1 24307:1 24315:1 24320:1 24341:1 24347:2 24353:1 24362:1 24370:1 24379:1 24384:1 24393:1 24401:1 24409:1 24410:1 24411:1 24418:1 24421:1 24438:1 24440:1 24449:1 24455:1 24463:1 24469:3 24473:2 24476:2 24479:1 24480:1 24483:1 24487:1 24491:1 24504:1 24523:1 24525:3 24535:1 24536:1 24552:1
20 13:1 25:1 29:1 30:1 34:1 37:1 53:1 76:1 88:1 96:1 105:1 112:1 150:1 162:1 175:1 186:1 216:1 218:2 240:3 276:1 296:2 298:1 314:1 339:1 341:2 407:2 441:1 489:1 492:1 510:2 527:2 541:2 565:2 566:1 568:2 640:1 720:1 752:2 754:1 762:2 766:1 778:1 785:3 788:1 795:1 805:1 814:3 828:1 831:2 833:1 834:5 838:2 846:1 857:1 869:4 888:3 889:3 892:1 899:1 906:1 912:1 937:1 946:1 948:2 952:1 960:1 967:1 989:1 1005:1 1009:2 1015:2 1044:1 1074:1 1078:1 1080:1 1094:1 1095:1 1108:1 1110:1 1112:1 1114:1 1131:1 1142:1 1158:1 1208:1 1212:1 1220:1 1230:2 1236:1 1241:1 1257:1 1258:1 1259:2 1274:3 1293:1 1296:1 1297:1 1301:1 1311:3 1328:9 1330:2 1332:7 1340:1 1343:1 1345:1 1352:1 1353:1 1360:1 1372:1 1376:1 1381:9 1395:1 1396:1 1420:1 1429:1 1435:1 1436:1 1460:1 1476:1 1506:1 1507:5 1510:2 1517:2 1526:1 1546:1 1552:2 1568:1 1591:1 1612:1 1617:2 1619:2 1629:1 1639:2 1641:1 1644:1 1661:1 1663:1 1703:1 1719:1 1731:4 1745:1 1763:1 1766:3 1774:1 1775:1 1782:1 1815:1 1826:3 1828:1 1838:1 1846:1 1853:2 1856:1 1875:2 1877:8 1879:3 1889:1 1891:1 1892:2 1894:1 1898:1 1909:1 1912:2 1930:1 1942:1 1945:4 1948:2 1949:1 1952:1 1954:1 1959:1 1960:2 1961:1 1963:3 1965:2 1968:2 1973:1 1976:2 1981:2 1992:1 2000:1 2034:1 2038:1 2045:1 2055:1 2074:1 2077:1 2102:1 2110:1 2115:1 2140:1 2157:1 2164:1 2167:1 2169:1 2188:1 2222:1 2241:1 2253:1 2254:1 2272:1 2282:1 2287:1 2308:1 2321:1 2325:2 2328:1 2329:1 2365:1 2374:1 2383:1 2393:1 2405:1 2409:1 2434:1 2451:3 2461:2 2462:8 2464:1 2478:1 2480:2 2481:1 2491:1 2500:1 2507:8 2535:1 2589:1 2597:2 2636:1 2645:3 2678:1 2700:1 2718:1 2745:1 2753:1 2764:1 2770:1 2779:1 2802:2 2807:1 2826:3 2831:1 2842:1 2853:1 2876:1 2898:1 2941:1 2948:1 3002:1 3059:1 3063:1 3068:1 3090:1 3093:1 3095:1 3118:1 3129:1 3131:1 3135:1 3136:1 3139:1 3147:2 3173:2 3183:1 3184:2 3221:3 3222:1 3234:1 3237:6 3288:1 3301:1 3306:1 3312:4 3326:1 3328:1 3355:1 3358:1 3367:1 3369:2 3377:1 3399:1 3407:2 3408:1 3428:1 3442:1 3467:1 3481:1 3495:1 3514:1 3537:1 3572:1 3598:1 3622:1 3653:1 3661:1 3666:1 3678:1 3681:1 3710:2 3737:1 3770:1 3773:1 3777:1 3801:1 3803:2 3831:1 3832:1 3845:1 3868:1 3878:1 3889:1 3902:2 3904:1 3911:1 3928:1 3938:1 3939:1 3992:1 4003:1 4019:1 4046:1 4047:1 4073:1 4091:1 4107:8 4116:1 4143:1 4159:1 4160:1 4192:3 4198:5 4211:3 4212:1 4223:1 4228:1 4229:1 4230:2 4231:3 4234:2 4237:1 4238:1 4248:1 4319:1 4323:1 4351:1 4364:4 4368:1 4384:1 4391:1 4394:1 4409:3 4412:1 4420:1 4450:2 4464:1 4470:1 4498:2 4506:1 4529:1 4546:3 4561:1 4621:2 4633:2 4654:1 4662:2 4667:1 4673:1 4675:1 4681:1 4689:3 4703:2 4729:1 4741:1 4757:2 4768:1 4818:1 4821:1 4823:1 4826:1 4831:1 4836:2 4854:1 4861:1 4872:1 4876:2 4926:3 4927:1 4950:2 4953:2 4958:1 4959:2 4986:1 4994:1 5016:1 5049:2 5054:1 5075:1 5090:2 5100:2 5103:1 5127:1 5130:1 5142:1 5146:1 5187:3 5189:1 5192:1 5205:1 5217:1 5225:1 5247:3 5248:1 5260:1 5263:1 5276:1 5282:2 5289:1 5308:2 5310:2 5322:3 5325:1 5337:1 5338:1 5340:2 5342:1 5347:2 5349:2 5350:2 5352:3 5396:1 5426:4 5437:4 5451:1 5488:1 5489:1 5520:1 5535:1 5592:2 5604:1 5609:1 5615:1 5616:2 5625:1 5629:2 5656:1 5663:1 5665:1 5668:1 5672:2 5674:4 5686:1 5688:1 5689:1 5693:1 5702:1 5703:1 5726:2 5774:1 5783:3 5807:3 5808:1 5818:1 5819:1 5823:1 5837:1 5874:1 5878:2 5890:1 5914:1 5917:1 5930:1 5947:6 5948:1 5959:1 5970:1 5998:2 6021:1 6035:1 6039:1 6040:1 6052:2 6071:1 6084:1 6096:1 6116:1 6130:1 6147:1 6175:3 6183:3 6192:1 6194:1 6201:1 6209:1 6231:1 6237:2 6241:1 6248:1 6255:1 6261:1 6269:1 6276:1 6285:2 6286:1 6289:1 6305:1 6324:1 6332:1 6354:1 6359:2 6365:7 6382:1 6384:1 6386:4 6387:1 6429:20 6449:4 6451:8 6460:1 6486:1 6497:2 6501:1 6508:1 6551:1 6619:1 6655:1 6669:3 6677:2 6680:1 6700:1 6771:1 6785:1 6789:1 6806:1 6810:9 6816:1 6818:1 6841:1 6859:17 6882:1 6906:1 6908:1 6918:1 6926:1 6981:1 7020:1 7030:1 7038:2 7054:1 7056:1 7068:3 7077:1 7084:1 7121:1 7125:1 7156:1 7157:2 7164:1 7166:3 7169:1 7170:4 7172:1 7177:2 7182:3 7193:1 7194:2 7262:2 7263:1 7305:1 7325:1 7364:1 7384:1 7400:1 7409:2 7434:1 7443:1 7451:1 7457:1 7461:2 7488:1 7505:1 7521:1 7526:1 7535:1 7571:1 7573:2 7581:6 7590:4 7594:1 7604:3 7615:1 7656:1 7665:1 7686:1 7712:1 7731:1 7787:2 7790:1 7798:1 7803:1 7805:1 7810:1 7878:1 7896:1 7912:2 7930:1 7932:1 7943:1 7944:1 7964:2 7975:1 7988:2 8036:1 8048:1 8049:1 8061:1 8064:3 8067:1 8070:6 8071:1 8080:3 8099:1 8118:1 8121:1 8138:2 8139:1 8143:1 8162:9 8174:1 8177:1 8189:1 8195:1 8212:1 8215:1 8222:1 8226:1 8285:2 8293:1 8296:2 8304:2 8317:1 8348:1 8352:1 8363:2 8379:1 8382:1 8387:1 8392:1 8437:1 8443:1 8444:1 8480:1 8532:2 8566:1 8574:1 8575:1 8581:2 8617:2 8679:4 8684:1 8700:1 8736:2 8746:1 8753:1 8760:1 8769:1 8778:3 8785:1 8789:2 8801:2 8802:2 8807:1 8809:1 8814:2 8815:1 8817:1 8818:1 8822:1 8824:1 8828:1 8829:1 8832:1 8833:1 8840:1 8841:1 8856:1 8857:1 8867:1 8881:1 8891:3 8897:1 8907:1 8910:1 8914:4 8916:4 8949:1 8975:1 8981:1 8989:4 9001:3 9070:1 9080:1 9090:1 9101:3 9102:1 9106:1 9108:1 9145:1 9173:1 9193:1 9200:1 9202:1 9205:1 9215:1 9222:1 9225:1 9252:6 9260:1 9282:1 9289:1 9313:1 9317:1 9321:1 9338:1 9346:1 9359:3 9363:2 9388:1 9389:1 9411:1 9416:1 9424:1 9433:1 9442:1 9459:1 9472:1 9486:2 9488:6 9536:1 9542:1 9543:2 9545:1 9561:1 9563:2 9586:1 9587:1 9610:1 9621:1 9624:2 9639:1 9653:5 9656:1 9659:1 9668:1 9682:1 9687:1 9695:1 9698:1 9707:1 9710:1 9716:1 9723:2 9727:1 9730:1 9743:1 9762:1 9763:5 9772:2 9778:8 9810:1 9815:1 9822:1 9823:11 9880:1 9881:1 9899:1 9904:1 9911:1 9918:2 9923:4 9949:1 9974:3 9989:1 10001:1 10018:1 10022:2 10037:1 10046:1 10053:2 10054:2 10061:1 10074:3 10079:1 10089:1 10095:1 10105:1 10118:1 10130:1 10146:1 10151:2 10169:1 10179:1 10225:1 10233:1 10265:1 10281:2 10337:1 10363:1 10364:2 10391:1 10413:1 10430:1 10480:7 10483:1 10487:2 10502:1 10505:1 10513:1 10531:1 10550:11 10556:1 10571:1 10576:2 10598:1 10621:2 10637:1 10652:1 10695:1 10724:1 10725:1 10733:1 10739:3 10754:1 10787:1 10818:2 10836:4 10844:1 10846:1 10847:3 10851:2 10861:2 10870:1 10871:8 10872:1 10874:1 10897:1 10901:1 10923:1 10942:2 10943:1 10969:1 10970:8 10974:1 10982:1 10985:14 11001:1 11016:1 11046:3 11065:1 11087:1 11101:2 11156:1 11159:2 11163:1 11168:1 11220:1 11273:1 11275:1 11277:1 11280:3 11287:1 11301:2 11311:1 11322:1 11340:1 11342:1 11368:10 11375:1 11376:2 11406:1 11407:2 11408:1 11415:1 11419:1 11432:2 11439:1 11447:1 11449:1 11451:1 11459:1 11509:3 11512:2 11531:2 11564:1 11607:1 11612:1 11613:1 11614:2 11638:1 11657:1 11697:2 11699:1 11704:1 11712:1 11717:1 11718:1 11744:1 11747:1 11777:1 11788:1 11806:1 11808:1 11813:1 11816:1 11818:1 11825:1 11833:1 11855:1 11856:1 11861:2 11881:1 11900:1 11902:4 11910:1 11927:4 11942:1 11985:1 11990:3 12006:1 12016:2 12020:1 12035:1 12036:1 12045:1 12050:2 12054:1 12060:1 12089:1 12091:1 12099:1 12100:1 12105:1 12114:1 12123:1 12141:1 12144:1 12157:1 12173:1 12176:1 12218:1 12229:1 12263:2 12269:1 12276:2 12287:1 12303:2 12341:1 12372:1 12383:3 12387:1 12389:1 12408:1 12437:2 12473:1 12525:1 12550:3 12582:3 12583:1 12584:1 12586:1 12602:1 12630:1 12633:1 12667:1 12689:1 12732:1 12739:1 12741:20 12766:1 12770:1 12778:1 12816:1 12822:1 12828:1 12863:1 12872:1 12877:1 12897:1 12911:1 12950:2 12956:1 12958:2 12959:1 12961:2 12981:1 12983:1 12984:1 12988:3 12995:1 12997:1 13000:1 13012:1 13030:2 13031:1 13069:1 13070:1 13094:5 13095:3 13113:1 13173:1 13207:2 13221:1 13225:1 13246:1 13259:1 13270:1 13292:2 13295:2 13328:3 13339:1 13352:1 13363:1 13371:1 13373:1 13378:1 13383:3 13390:1 13405:1 13410:1 13425:1 13430:1 13431:2 13435:1 13437:2 13442:1 13444:1 13445:1 13448:1 13453:2 13455:1 13459:5 13469:1 13482:3 13495:1 13525:2 13545:1 13554:1 13570:1 13622:1 13637:1 13641:1 13670:1 13675:1 13703:2 13719:1 13739:1 13743:1 13746:1 13752:2 13758:1 13765:1 13766:1 13767:1 13775:1 13812:1 13819:1 13826:1 13835:2 13837:4 13843:2 13846:1 13868:1 13876:2 13895:1 13906:1 13907:1 13924:2 13925:3 13928:9 13931:1 13965:2 13966:1 13970:1 13972:2 13977:2 13979:2 13994:1 14000:1 14003:2 14008:1 14031:1 14035:1 14039:2 14046:1 14052:2 14071:1 14077:1 14094:1 14097:1 14100:1 14101:1 14108:1 14114:1 14118:1 14122:1 14124:1 14125:1 14142:1 14154:1 14156:1 14178:1 14189:1 14200:1 14207:1 14210:1 14223:1 14240:2 14246:1 14262:1 14275:2 14307:1 14368:1 14372:1 14393:1 14398:1 14403:1 14443:1 14462:1 14468:1 14491:1 14516:1 14518:1 14539:2 14544:2 14550:1 14553:1 14570:1 14574:1 14575:1 14577:1 14585:1 14596:2 14627:1 14637:1 14677:6 14713:1 14719:2 14721:1 14740:1 14744:1 14762:3 14764:1 14768:2 14774:1 14775:1 14781:1 14803:1 14820:1 14825:1 14830:1 14833:1 14837:1 14844:3 14853:2 14856:1 14864:1 14877:1 14885:1 14887:1 14889:1 14903:8 14929:1 14931:2 14975:1 14981:1 15024:1 15035:1 15070:1 15080:1 15112:1 15116:1 15129:1 15139:1 15142:1 15147:2 15184:1 15205:1 15215:1 15227:1 15282:2 15283:1 15307:4 15312:2 15315:1 15328:1 15367:1 15370:1 15371:1 15389:1 15480:1576 15482:2 15496:3 15503:1 15514:1 15532:1 15543:1 15564:1 15575:1 15577:1 15583:2 15587:1 15602:1 15633:1 15646:4 15655:1 15658:3 15661:1 15662:1 15663:1 15672:1 15684:1 15708:1 15723:4 15725:2 15800:2 15834:3 15883:1 15887:2 15898:1 15929:2 15936:1 15944:1 15949:1 15990:1 16002:1 16009:1 16019:1 16042:2 16046:1 16054:2 16074:4 16095:1 16102:2 16110:1 16117:1 16129:1 16152:1 16159:1 16170:1 16171:1 16176:1 16177:1 16206:8 16212:1 16235:1 16239:1 16268:1 16271:1 16307:1 16331:1 16332:1 16362:1 16380:1 16387:2 16402:1 16408:1 16414:1 16416:1 16432:2 16434:2 16443:2 16449:1 16462:1 16479:1 16482:1 16485:1 16495:1 16522:2 16538:1 16541:1 16548:1 16593:1 16611:1 16618:2 16650:1 16661:1 16669:4 16679:1 16681:1 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:3 16763:2 16768:1 16782:1 16795:2 16797:1 16811:1 16815:6 16823:3 16856:1 16861:1 16908:1 16945:1 16947:1 16965:2 16981:1 17001:1 17014:2 17027:1 17043:1 17046:5 17050:2 17056:1 17058:2 17101:1 17109:1 17138:1 17144:1 17163:1 17168:1 17188:4 17197:1 17219:1 17221:1 17223:1 17234:1 17238:1 17255:1 17261:1 17275:1 17305:1 17311:2 17329:1 17352:1 17358:1 17362:1 17380:1 17400:1 17429:1 17437:3 17443:1 17452:1 17485:10 17491:2 17496:1 17510:4 17532:1 17535:1 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17571:1 17601:1 17604:1 17610:2 17648:1 17649:1 17706:3 17735:1 17738:3 17747:2 17774:1 17806:1 17812:1 17813:1 17827:1 17835:3 17837:1 17839:1 17851:1 17852:1 17884:1 17893:1 17916:1 17929:1 17943:1 17965:2 17980:2 17993:2 17995:1 17996:2 18035:1 18037:1 18043:1 18053:1 18066:1 18087:1 18091:1 18092:1 18093:1 18130:1 18131:1 18166:1 18186:1 18196:3 18197:3 18199:3 18204:1 18210:1 18228:1 18231:2 18234:2 18244:1 18249:1 18261:1 18264:1 18285:1 18296:1 18339:1 18360:2 18366:2 18378:3 18392:1 18406:1 18421:1 18425:1 18434:2 18479:1 18491:1 18498:2 18505:1 18506:4 18511:1 18537:1 18565:1 18567:2 18573:2 18575:2 18578:1 18616:1 18619:1 18631:1 18641:1 18643:1 18644:1 18658:1 18666:1 18676:1 18686:1 18693:2 18727:2 18729:1 18732:2 18739:2 18742:1 18776:1 18784:1 18803:1 18807:1 18820:2 18843:1 18854:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:1 18939:1 18941:2 18943:1 18946:1 18948:1 18949:1 18961:1 18965:1 18975:3 18976:3 18978:1 18985:1 18990:3 19029:2 19033:1 19036:1 19053:1 19070:1 19080:1 19096:2 19123:1 19134:4 19145:1 19156:2 19187:2 19193:1 19201:1 19212:1 19213:1 19218:1 19225:1 19229:1 19233:1 19237:1 19249:1 19278:1 19325:1 19349:1 19365:2 19371:1 19376:1 19406:1 19425:3 19427:1 19431:1 19438:2 19443:1 19444:1 19446:1 19470:1 19474:1 19480:1 19486:1 19493:1 19508:1 19523:1 19525:1 19532:1 19540:1 19559:3 19562:1 19573:1 19580:1 19587:1 19611:1 19615:3 19637:1 19638:2 19644:1 19666:1 19716:2 19718:1 19746:1 19748:1 19810:2 19823:1 19832:3 19870:1 19901:1 19902:8 19974:2 20000:1 20013:1 20022:1 20040:1 20051:1 20055:1 20063:1 20068:2 20076:1 20083:2 20084:7 20087:1 20102:1 20107:1 20109:1 20122:1 20126:2 20139:1 20152:1 20155:1 20196:1 20204:1 20266:1 20268:1 20270:1 20273:1 20274:1 20275:1 20276:1 20281:1 20287:1 20305:1 20318:1 20327:1 20331:1 20332:2 20334:1 20337:2 20343:1 20344:1 20360:1 20366:2 20378:5 20379:1 20393:1 20411:1 20412:1 20432:1 20441:1 20447:1 20448:1 20460:1 20469:2 20480:2 20485:1 20490:1 20493:1 20508:1 20567:1 20595:1 20599:2 20630:1 20651:2 20659:1 20663:1 20686:6 20723:1 20734:1 20738:1 20742:6 20750:1 20751:1 20753:1 20755:1 20762:1 20769:1 20785:1 20786:1 20847:1 20878:1 20928:2 20930:5 20955:1 20958:1 20962:2 20964:1 20965:1 20970:2 20989:1 20993:1 21007:1 21099:1 21111:1 21112:1 21134:1 21136:1 21137:1 21139:1 21154:1 21159:1 21205:1 21208:1 21209:1 21245:1 21267:1 21279:1 21319:1 21337:1 21361:2 21363:1 21364:5 21371:1 21413:1 21441:2 21480:3 21503:1 21512:1 21551:1 21556:1 21557:1 21559:1 21561:1 21576:1 21586:1 21594:1 21612:3 21628:1 21630:1 21632:1 21637:3 21642:1 21663:1 21665:1 21671:1 21693:1 21695:1 21697:4 21703:1 21707:1 21716:1 21738:1 21760:3 21761:1 21773:2 21787:1 21831:3 21844:1 21857:1 21869:2 21887:1 21905:1 21923:1 21926:1 21934:1 21952:1 21974:1 21977:2 21996:1 21998:1 22001:1 22010:2 22013:3 22014:1 22027:2 22043:1 22048:2 22058:1 22065:1 22068:1 22080:3 22108:1 22114:1 22124:1 22138:1 22173:1 22186:1 22193:1 22195:1 22208:1 22242:1 22247:1 22379:1 22386:1 22390:1 22394:1 22419:1 22423:1 22425:1 22429:1 22462:1 22511:1 22515:1 22527:1 22528:2 22547:1 22548:2 22550:1 22553:1 22562:1 22585:2 22593:1 22601:1 22602:1 22611:4 22657:1 22666:1 22669:3 22672:1 22690:1 22693:1 22740:4 22749:1 22755:1 22760:2 22786:1 22801:2 22815:2 22817:1 22822:1 22823:1 22825:1 22831:1 22837:1 22846:1 22854:1 22874:1 22894:2 22897:1 22912:1 22916:1 22925:1 22939:1 22942:1 22957:1 23006:2 23007:1 23022:4 23039:1 23050:2 23074:2 23088:1 23089:6 23109:1 23113:1 23138:1 23151:1 23206:1 23248:3 23284:1 23305:3 23314:1 23324:1 23339:1 23341:1 23360:4 23385:1 23404:1 23405:1 23430:17 23431:1 23432:1 23446:1 23466:10 23476:1 23481:1 23490:1 23518:2 23527:1 23541:1 23546:1 23551:3 23558:3 23586:6 23587:1 23610:1 23623:1 23645:2 23647:1 23694:1 23719:1 23740:1 23758:1 23784:1 23796:3 23797:3 23840:1 23847:1 23849:1 23852:1 23853:2 23868:1 23956:3 23961:1 23966:1 23967:1 23970:1 23971:10 23985:1 24000:1 24005:1 24006:2 24028:1 24042:1 24049:1 24057:1 24101:1 24108:1 24117:1 24126:1 24139:1 24145:1 24153:1 24162:1 24170:2 24223:1 24225:1 24293:1 24301:1 24306:1 24307:1 24315:1 24317:1 24320:1 24341:1 24347:2 24353:1 24362:1 24370:1 24379:1 24384:1 24393:1 24401:1 24409:1 24410:1 24411:1 24418:1 24421:1 24438:1 24440:1 24449:1 24455:1 24463:1 24469:3 24473:2 24476:2 24479:1 24480:1 24483:1 24487:1 24491:1 24504:1 24523:1 24525:3 24535:1 24536:1 24552:1
20 13:1 25:1 29:1 30:1 34:1 37:1 53:1 76:1 88:1 96:1 105:1 112:1 150:1 162:1 175:1 186:1 216:1 218:2 240:3 276:1 296:2 298:1 314:1 339:1 341:2 407:2 441:1 489:1 492:1 510:3 527:2 541:2 565:2 566:1 568:2 640:1 713:1 720:1 752:2 754:1 762:2 766:1 778:1 785:3 788:1 795:1 805:1 814:3 828:1 831:2 833:1 834:5 838:2 846:1 857:1 869:4 888:3 889:3 892:1 899:1 906:1 912:1 937:1 946:1 948:2 952:1 960:1 967:1 989:1 1005:1 1009:3 1015:3 1044:1 1074:1 1078:1 1080:1 1094:1 1095:1 1108:1 1110:1 1112:1 1114:1 1131:1 1142:1 1158:1 1208:1 1212:1 1220:1 1230:2 1236:1 1241:1 1257:1 1258:1 1259:2 1274:3 1293:1 1296:1 1297:1 1301:1 1311:3 1328:9 1330:2 1332:7 1340:1 1343:1 1345:1 1352:1 1353:1 1360:1 1372:1 1376:1 1381:9 1395:1 1396:1 1420:1 1429:1 1435:1 1436:1 1460:1 1476:1 1506:1 1507:5 1510:2 1517:2 1526:1 1546:1 1552:2 1568:1 1591:1 1612:1 1617:2 1619:2 1629:1 1639:2 1641:1 1644:1 1661:1 1663:1 1666:1 1703:1 1719:1 1731:4 1745:1 1763:1 1766:3 1774:1 1775:1 1782:1 1815:1 1826:4 1828:1 1838:1 1846:1 1853:2 1856:1 1875:2 1877:8 1879:3 1889:1 1891:1 1892:2 1894:1 1898:1 1909:1 1912:2 1930:1 1942:1 1945:4 1948:2 1949:1 1952:1 1954:1 1959:1 1960:2 1961:1 1963:3 1965:2 1968:2 1973:1 1976:2 1981:2 1992:1 2000:1 2034:1 2038:1 2045:1 2055:1 2074:1 2077:1 2102:1 2110:1 2115:1 2140:1 2157:1 2164:1 2167:1 2169:1 2188:1 2222:1 2241:1 2253:1 2254:1 2272:1 2282:1 2287:1 2308:1 2321:1 2325:2 2328:1 2329:1 2365:1 2374:1 2383:1 2393:1 2405:1 2409:1 2434:1 2451:3 2461:2 2462:8 2464:1 2478:1 2480:2 2481:1 2491:1 2500:1 2507:8 2535:1 2589:1 2597:2 2636:1 2645:3 2678:1 2700:1 2718:1 2745:1 2753:1 2764:1 2770:1 2779:1 2802:3 2807:1 2826:3 2831:1 2842:1 2853:1 2876:1 2898:1 2941:1 2948:1 3002:1 3059:1 3063:1 3068:1 3090:1 3093:1 3095:1 3118:1 3129:1 3131:1 3135:1 3136:1 3139:1 3147:2 3173:2 3183:1 3184:2 3221:3 3222:1 3234:1 3237:6 3288:1 3301:1 3306:1 3312:4 3326:1 3328:1 3355:1 3358:1 3367:1 3369:2 3377:1 3399:1 3407:2 3408:1 3416:1 3428:1 3442:1 3467:1 3481:1 3495:1 3514:1 3537:1 3572:1 3596:1 3598:1 3622:1 3653:1 3661:1 3666:1 3678:1 3681:1 3710:2 3729:1 3737:1 3770:1 3773:1 3777:1 3801:1 3803:2 3831:1 3832:1 3845:1 3868:1 3878:1 3889:1 3902:2 3904:1 3911:1 3928:1 3938:1 3939:1 3992:1 4003:1 4019:1 4046:1 4047:1 4073:1 4091:1 4107:8 4116:1 4143:1 4159:1 4160:1 4192:3 4198:5 4211:3 4212:1 4216:1 4223:1 4228:1 4229:1 4230:2 4231:3 4234:2 4237:1 4238:1 4248:1 4319:1 4323:1 4351:1 4364:4 4368:1 4384:1 4391:1 4394:1 4409:3 4412:1 4420:1 4450:2 4464:1 4470:1 4498:2 4506:1 4529:1 4539:1 4546:3 4561:1 4621:2 4633:2 4654:1 4658:1 4662:2 4667:1 4673:1 4675:1 4681:1 4689:3 4703:2 4729:1 4741:1 4757:2 4768:1 4818:1 4821:1 4823:1 4826:1 4831:1 4836:2 4854:1 4861:1 4872:1 4876:2 4926:3 4927:1 4950:2 4953:2 4958:1 4959:2 4986:1 4994:1 5016:1 5049:2 5054:1 5075:1 5090:2 5100:2 5103:1 5127:1 5130:1 5142:1 5146:2 5187:3 5189:1 5192:1 5205:1 5215:1 5217:1 5225:1 5247:3 5248:1 5260:1 5263:1 5276:1 5282:2 5289:1 5308:2 5310:2 5314:1 5322:3 5325:1 5337:1 5338:1 5340:3 5342:1 5347:2 5349:2 5350:2 5352:3 5396:1 5426:4 5437:4 5451:1 5488:1 5489:1 5520:1 5535:1 5592:2 5604:1 5609:1 5615:1 5616:2 5625:1 5629:2 5655:1 5656:1 5663:1 5665:1 5668:1 5672:2 5674:4 5686:1 5688:1 5689:1 5693:1 5702:1 5703:1 5726:2 5774:1 5783:3 5807:3 5808:1 5818:1 5819:1 5823:1 5837:1 5874:1 5878:2 5890:1 5914:1 5917:1 5930:1 5947:6 5948:1 5959:1 5970:1 5998:2 6021:1 6035:1 6039:1 6040:1 6052:2 6071:1 6084:1 6096:1 6116:1 6130:1 6147:1 6175:3 6183:3 6192:1 6194:1 6201:1 6209:1 6231:1 6232:1 6237:2 6241:1 6248:1 6255:1 6261:1 6269:1 6276:1 6285:2 6286:1 6289:1 6305:1 6324:1 6332:1 6354:1 6359:2 6365:7 6382:1 6384:1 6386:4 6387:1 6429:20 6449:4 6451:8 6460:1 6486:1 6497:2 6501:1 6508:1 6551:1 6619:1 6655:1 6669:3 6677:2 6680:1 6700:1 6771:1 6785:1 6789:1 6806:1 6810:9 6816:1 6818:1 6841:1 6859:18 6882:1 6906:1 6908:1 6918:1 6926:1 6981:1 7020:1 7030:1 7038:2 7054:1 7056:1 7068:3 7077:1 7084:1 7121:1 7125:1 7156:1 7157:2 7164:1 7166:3 7169:1 7170:4 7172:1 7173:1 7177:2 7182:3 7193:1 7194:2 7262:2 7263:1 7280:1 7303:1 7305:1 7325:1 7364:1 7384:1 7400:1 7409:2 7423:1 7432:1 7434:1 7443:1 7451:1 7457:1 7461:2 7488:1 7505:1 7521:1 7526:1 7535:1 7571:1 7573:2 7581:6 7590:4 7594:1 7604:3 7615:1 7656:1 7665:1 7686:1 7712:1 7731:1 7787:2 7790:1 7798:1 7803:1 7804:1 7805:1 7810:1 7878:1 7896:1 7912:2 7930:1 7932:1 7943:1 7944:1 7964:2 7975:1 7988:2 8036:1 8048:1 8049:2 8061:1 8064:3 8067:1 8070:6 8071:1 8080:3 8099:1 8118:1 8121:1 8138:2 8139:1 8143:1 8162:9 8174:1 8177:1 8189:1 8195:1 8196:1 8212:1 8215:1 8222:2 8226:1 8285:2 8293:1 8296:2 8304:2 8317:1 8348:1 8352:1 8363:2 8379:1 8382:1 8387:1 8392:1 8437:2 8443:1 8444:1 8480:1 8532:2 8566:1 8574:1 8575:1 8581:2 8617:2 8679:4 8684:1 8700:1 8736:2 8746:1 8753:1 8760:1 8769:1 8778:3 8785:1 8789:2 8801:2 8802:2 8807:1 8809:1 8814:2 8815:1 8817:1 8818:1 8822:1 8824:1 8828:1 8829:1 8832:1 8833:1 8840:1 8841:1 8856:1 8857:1 8867:1 8881:1 8891:3 8897:1 8907:1 8910:1 8914:4 8916:4 8949:1 8975:1 8977:1 8981:1 8989:4 9001:3 9070:1 9080:1 9090:1 9101:3 9102:2 9106:1 9108:1 9145:1 9173:1 9193:1 9200:1 9202:1 9205:1 9215:1 9222:1 9225:1 9252:6 9260:1 9282:1 9289:1 9313:1 9317:1 9321:1 9338:1 9346:1 9359:3 9363:2 9388:1 9389:1 9411:1 9416:1 9424:1 9433:1 9442:1 9459:1 9472:1 9486:2 9488:6 9536:2 9542:1 9543:2 9545:1 9561:1 9563:2 9586:1 9587:1 9610:1 9621:1 9624:2 9639:1 9653:5 9656:1 9659:1 9668:1 9682:1 9687:1 9695:1 9698:1 9707:1 9710:1 9716:1 9723:2 9727:1 9730:1 9743:1 9762:1 9763:5 9772:2 9778:8 9810:1 9815:1 9822:1 9823:11 9880:1 9881:1 9899:1 9904:1 9911:1 9918:2 9923:4 9949:1 9974:3 9989:1 10001:1 10018:1 10022:2 10037:2 10046:1 10053:2 10054:2 10061:1 10074:3 10079:1 10089:1 10095:1 10105:1 10118:1 10130:1 10146:1 10151:2 10169:1 10179:1 10225:1 10233:1 10265:1 10281:2 10337:1 10363:1 10364:2 10391:1 10413:1 10416:1 10430:1 10480:7 10483:1 10487:2 10502:1 10505:1 10513:1 10531:1 10550:11 10556:1 10571:1 10576:2 10598:1 10621:2 10637:1 10652:1 10687:1 10695:1 10724:1 10725:1 10733:1 10739:3 10754:1 10787:1 10818:2 10836:4 10844:1 10846:1 10847:3 10851:2 10861:2 10870:1 10871:8 10872:1 10874:1 10897:1 10901:1 10923:1 10942:2 10943:1 10962:1 10969:1 10970:8 10974:1 10982:1 10985:14 11001:1 11016:1 11046:3 11065:1 11087:1 11101:2 11118:1 11156:1 11159:2 11163:1 11168:1 11220:1 11273:1 11275:1 11277:1 11280:3 11287:1 11297:1 11301:2 11311:1 11322:1 11340:1 11342:1 11368:10 11375:1 11376:2 11406:1 11407:2 11408:1 11415:1 11419:1 11432:2 11439:1 11447:1 11449:1 11451:1 11459:1 11509:3 11512:2 11531:2 11564:1 11607:1 11612:1 11613:1 11614:2 11638:1 11657:1 11697:2 11699:1 11704:1 11712:1 11717:1 11718:1 11744:1 11747:1 11777:1 11788:1 11806:1 11808:1 11813:1 11816:1 11818:1 11825:1 11833:1 11855:1 11856:1 11861:2 11881:1 11900:1 11902:4 11910:1 11927:4 11942:1 11985:1 11990:3 12006:1 12016:2 12020:1 12035:1 12036:1 12045:1 12050:2 12054:1 12060:1 12069:1 12089:1 12091:1 12099:1 12100:1 12105:1 12114:1 12123:1 12141:1 12144:1 12157:1 12173:1 12176:1 12218:1 12229:1 12263:2 12269:1 12276:2 12287:1 12303:2 12341:1 12372:1 12383:3 12387:1 12389:1 12408:1 12437:2 12473:1 12525:1 12550:3 12582:3 12583:1 12584:1 12586:1 12602:1 12630:1 12633:1 12667:1 12689:1 12706:1 12732:1 12739:1 12741:20 12766:1 12770:1 12778:1 12816:1 12822:1 12828:1 12863:1 12872:1 12877:1 12897:1 12911:1 12950:2 12956:1 12958:2 12959:1 12961:2 12975:1 12981:1 12983:1 12984:1 12988:3 12995:1 12997:1 13000:1 13012:1 13030:2 13031:1 13069:1 13070:1 13082:1 13094:5 13095:3 13113:1 13121:1 13173:1 13207:2 13221:1 13225:1 13246:1 13259:1 13270:1 13292:2 13295:2 13300:1 13328:3 13339:1 13352:1 13363:1 13371:1 13373:1 13378:1 13383:3 13390:1 13405:1 13410:1 13425:1 13430:1 13431:2 13435:1 13437:2 13442:1 13444:1 13445:1 13448:1 13453:3 13455:1 13459:5 13469:1 13482:3 13495:1 13525:2 13545:1 13554:1 13570:1 13622:1 13637:1 13641:1 13670:1 13675:1 13703:2 13719:1 13739:1 13743:1 13746:1 13752:2 13758:1 13765:1 13766:1 13767:1 13775:1 13812:1 13819:1 13826:1 13835:2 13837:4 13843:2 13846:1 13868:1 13876:2 13895:1 13906:1 13907:1 13924:2 13925:3 13928:9 13931:1 13965:2 13966:1 13970:1 13972:2 13977:2 13979:2 13994:1 14000:1 14003:2 14008:1 14031:1 14035:1 14039:2 14046:1 14052:2 14071:1 14077:1 14094:1 14097:1 14100:1 14101:1 14108:1 14114:1 14118:1 14122:1 14124:1 14125:1 14142:1 14154:1 14156:1 14178:1 14189:1 14200:1 14207:1 14210:1 14223:1 14240:2 14246:1 14262:1 14275:2 14307:1 14368:1 14372:1 14393:1 14398:1 14403:1 14443:1 14462:1 14465:1 14468:1 14491:1 14516:1 14518:1 14539:2 14544:2 14550:1 14553:1 14570:1 14574:1 14575:1 14577:1 14585:1 14596:2 14627:1 14637:1 14677:6 14713:1 14719:2 14721:1 14740:1 14744:2 14762:3 14764:1 14768:2 14774:1 14775:1 14781:1 14803:1 14820:1 14825:1 14830:1 14833:1 14837:1 14844:3 14853:2 14856:1 14864:1 14877:1 14880:1 14885:1 14887:1 14889:1 14903:8 14929:2 14931:2 14975:1 14981:1 15024:1 15035:1 15067:1 15070:1 15080:1 15112:1 15116:1 15129:1 15139:1 15142:1 15147:2 15184:1 15191:1 15205:1 15215:1 15227:1 15282:2 15283:1 15307:4 15312:2 15315:1 15328:1 15367:1 15370:1 15371:1 15389:1 15477:1 15480:1638 15482:2 15496:3 15503:1 15514:1 15532:1 15543:1 15564:1 15575:1 15577:1 15583:2 15587:1 15602:1 15633:1 15635:1 15646:4 15655:1 15658:3 15661:1 15662:1 15663:1 15672:1 15684:1 15708:1 15723:4 15725:2 15800:2 15834:3 15883:1 15887:2 15898:1 15929:2 15936:1 15944:1 15949:1 15990:1 16002:1 16009:1 16019:1 16042:2 16046:1 16054:2 16074:4 16095:1 16102:2 16110:1 16117:1 16129:1 16151:1 16152:2 16159:1 16170:1 16171:2 16176:1 16177:1 16206:8 16212:1 16235:1 16239:1 16268:1 16271:1 16307:1 16331:1 16332:1 16362:1 16380:1 16387:2 16402:1 16408:1 16414:1 16416:1 16432:2 16434:2 16443:3 16449:1 16462:1 16479:1 16482:1 16485:1 16495:1 16522:2 16538:1 16541:1 16548:1 16593:1 16611:1 16618:2 16650:1 16661:1 16669:4 16679:1 16681:1 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:3 16763:2 16768:1 16782:1 16787:1 16795:2 16797:1 16811:1 16815:6 16823:3 16856:1 16861:1 16908:1 16945:1 16947:1 16965:2 16981:1 17001:2 17014:2 17027:1 17043:1 17046:5 17050:3 17056:1 17058:2 17101:1 17109:1 17138:1 17144:1 17163:1 17168:1 17188:4 17197:1 17219:1 17221:1 17223:1 17234:1 17238:1 17255:1 17261:1 17275:1 17305:1 17311:2 17329:1 17352:1 17358:1 17362:1 17380:1 17400:1 17429:1 17437:3 17443:1 17452:1 17485:10 17491:2 17496:1 17510:4 17532:1 17535:1 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17571:1 17601:1 17604:1 17610:2 17648:1 17649:1 17706:3 17735:1 17738:3 17747:2 17774:1 17806:1 17812:1 17813:1 17827:1 17835:3 17837:1 17838:1 17839:1 17851:1 17852:1 17884:1 17893:1 17916:1 17929:1 17943:1 17965:2 17980:2 17993:2 17995:1 17996:2 18035:1 18037:1 18043:1 18053:1 18066:1 18087:1 18091:1 18092:1 18093:1 18130:1 18131:1 18166:1 18186:1 18196:3 18197:3 18199:3 18204:1 18210:1 18228:1 18231:2 18234:2 18244:1 18249:1 18261:1 18264:1 18285:1 18296:1 18339:1 18360:2 18366:2 18378:3 18392:1 18406:1 18421:1 18425:1 18434:2 18479:1 18491:1 18498:2 18505:1 18506:4 18509:1 18511:1 18537:1 18565:1 18567:2 18573:2 18575:2 18578:1 18616:1 18619:1 18631:1 18641:1 18643:1 18644:1 18658:1 18666:1 18676:1 18686:1 18693:2 18727:2 18729:1 18732:2 18739:3 18742:1 18776:1 18784:1 18803:1 18807:1 18820:2 18843:1 18854:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:2 18939:1 18941:2 18943:1 18946:1 18948:1 18949:1 18961:1 18965:1 18975:3 18976:3 18978:1 18985:1 18990:3 19029:2 19033:1 19036:1 19053:1 19070:1 19080:1 19096:2 19123:1 19134:4 19145:1 19156:2 19187:2 19193:1 19201:1 19212:1 19213:1 19218:1 19225:1 19229:1 19233:1 19237:1 19249:1 19278:1 19325:1 19349:1 19365:3 19371:1 19376:1 19406:1 19425:3 19427:1 19431:1 19438:2 19443:1 19444:1 19446:1 19470:1 19474:1 19480:1 19486:1 19493:1 19508:1 19523:1 19525:1 19532:1 19540:1 19559:3 19562:1 19573:1 19580:1 19587:1 19611:1 19615:3 19637:1 19638:2 19644:1 19666:1 19716:2 19718:1 19730:1 19746:1 19748:1 19810:2 19823:1 19832:3 19870:1 19901:1 19902:8 19974:2 20000:1 20013:1 20022:1 20040:1 20051:1 20055:1 20063:1 20068:2 20076:1 20083:2 20084:7 20087:1 20102:1 20107:1 20109:1 20122:1 20126:2 20139:1 20152:1 20155:1 20196:1 20204:1 20266:1 20268:1 20270:1 20273:1 20274:1 20275:1 20276:1 20281:1 20287:1 20305:1 20318:1 20327:2 20331:1 20332:2 20334:1 20337:2 20343:1 20344:1 20360:1 20366:3 20378:5 20379:1 20393:1 20411:1 20412:1 20432:1 20441:1 20447:1 20448:1 20460:1 20469:2 20473:1 20480:2 20485:1 20490:1 20493:1 20508:1 20567:1 20595:1 20599:2 20630:1 20651:2 20659:1 20663:1 20686:6 20722:1 20723:1 20734:1 20738:1 20742:6 20750:1 20751:1 20753:1 20755:1 20762:1 20769:1 20785:1 20786:1 20847:1 20878:1 20928:2 20930:5 20955:1 20958:1 20962:2 20964:1 20965:1 20970:2 20989:1 20993:1 21007:1 21099:1 21111:1 21112:1 21134:1 21136:1 21137:1 21139:1 21154:1 21159:1 21189:1 21205:1 21208:1 21209:1 21245:1 21267:1 21279:1 21319:1 21337:1 21361:3 21363:1 21364:5 21371:1 21413:1 21441:2 21480:3 21486:1 21503:1 21512:1 21551:1 21556:1 21557:1 21559:1 21561:2 21576:1 21586:1 21594:1 21612:3 21628:1 21630:1 21632:1 21637:3 21642:1 21663:1 21665:1 21671:1 21693:1 21695:1 21697:4 21703:1 21707:1 21716:1 21738:1 21760:3 21761:1 21773:2 21787:1 21831:3 21844:1 21857:1 21869:2 21887:1 21905:1 21914:1 21923:1 21926:1 21934:1 21952:1 21974:1 21977:2 21996:1 21998:1 22001:1 22010:2 22013:3 22014:1 22027:2 22043:1 22048:2 22058:1 22065:1 22068:1 22080:3 22108:1 22114:1 22124:1 22138:1 22173:1 22186:1 22193:1 22195:1 22208:1 22242:1 22247:1 22379:1 22386:1 22390:1 22394:1 22419:1 22423:1 22425:1 22429:1 22462:1 22511:1 22515:1 22527:1 22528:2 22547:1 22548:2 22550:1 22553:1 22562:1 22585:2 22593:1 22601:1 22602:1 22611:4 22657:1 22666:1 22669:3 22672:1 22690:1 22693:1 22740:4 22749:1 22755:1 22760:2 22769:1 22786:1 22801:2 22815:2 22817:1 22822:1 22823:1 22825:1 22831:1 22837:1 22846:1 22854:1 22874:1 22894:2 22897:1 22912:1 22916:2 22925:1 22939:1 22942:1 22957:1 23005:1 23006:2 23007:1 23022:4 23039:1 23050:2 23074:2 23088:1 23089:6 23109:2 23113:1 23138:1 23151:1 23206:1 23248:3 23284:1 23305:3 23314:1 23324:1 23339:1 23341:1 23360:4 23385:1 23404:1 23405:1 23430:17 23431:1 23432:1 23446:1 23466:10 23476:2 23481:1 23490:1 23518:2 23527:1 23541:1 23546:1 23551:3 23558:3 23586:6 23587:1 23610:1 23623:1 23645:2 23647:1 23655:1 23694:1 23719:1 23739:1 23740:1 23758:1 23784:1 23796:3 23797:3 23840:1 23847:1 23849:1 23852:1 23853:2 23868:1 23956:3 23961:1 23966:1 23967:1 23970:1 23971:10 23985:1 24000:1 24005:1 24006:2 24012:1 24028:1 24042:1 24049:1 24057:1 24101:1 24108:1 24117:1 24126:1 24139:1 24145:1 24153:1 24162:2 24170:2 24223:1 24225:1 24293:1 24301:1 24302:1 24306:1 24307:1 24315:1 24317:1 24320:1 24341:1 24347:2 24353:1 24362:1 24370:1 24379:1 24384:1 24393:1 24401:1 24409:1 24410:1 24411:1 24418:1 24421:1 24438:1 24440:1 24449:1 24455:1 24463:1 24469:3 24473:2 24476:2 24479:1 24480:1 24483:1 24487:1 24491:1 24504:1 24523:1 24525:3 24535:1 24536:1 24552:1
20 13:1 25:1 29:1 30:1 34:1 37:1 53:1 76:1 88:1 96:1 105:1 112:1 150:1 162:1 172:1 175:1 186:1 216:1 218:2 240:3 241:1 276:1 296:2 298:1 314:1 339:1 341:2 407:2 441:1 489:1 492:1 509:1 510:3 527:2 541:2 565:2 566:1 568:2 640:1 713:1 720:1 752:2 754:1 762:2 766:1 778:1 785:3 788:1 795:1 805:1 814:3 828:1 831:3 833:1 834:5 838:2 846:1 857:1 869:4 888:3 889:3 892:1 899:1 906:1 912:1 937:1 946:1 948:2 952:1 960:1 967:1 989:1 1005:1 1009:3 1015:4 1044:1 1074:1 1078:1 1080:1 1094:1 1095:1 1108:1 1110:1 1112:1 1114:1 1131:1 1142:1 1158:1 1208:1 1212:1 1220:1 1230:2 1236:1 1241:1 1257:1 1258:1 1259:3 1274:3 1293:1 1296:1 1297:1 1301:1 1311:3 1328:9 1330:2 1332:7 1340:1 1343:1 1345:1 1352:1 1353:1 1360:1 1372:1 1376:1 1381:9 1395:1 1396:1 1420:1 1429:1 1435:1 1436:1 1460:1 1476:1 1506:1 1507:5 1510:2 1517:2 1526:1 1546:1 1552:2 1568:1 1591:1 1612:1 1617:2 1619:2 1629:1 1639:2 1641:1 1644:1 1661:1 1663:1 1666:1 1703:1 1719:1 1731:4 1745:1 1763:1 1766:3 1774:1 1775:1 1782:1 1815:1 1826:4 1828:1 1838:1 1846:1 1853:2 1856:1 1875:2 1877:8 1879:3 1882:1 1889:1 1891:1 1892:3 1894:1 1898:1 1909:1 1912:2 1930:1 1942:1 1945:4 1948:2 1949:1 1952:1 1954:1 1959:1 1960:2 1961:1 1963:3 1965:2 1968:2 1973:1 1976:2 1981:2 1992:1 2000:1 2034:1 2038:1 2045:1 2055:1 2074:1 2077:1 2102:1 2110:1 2115:1 2140:1 2157:1 2164:1 2167:1 2169:1 2173:1 2188:1 2222:1 2241:1 2253:1 2254:1 2272:1 2282:1 2287:1 2308:1 2321:1 2325:2 2328:1 2329:1 2365:1 2374:1 2383:1 2393:1 2405:1 2409:1 2434:1 2451:3 2461:2 2462:9 2464:1 2478:1 2480:2 2481:1 2491:1 2500:1 2507:8 2535:1 2589:1 2597:2 2636:1 2645:3 2678:1 2700:1 2718:1 2745:1 2753:1 2764:1 2770:1 2779:2 2802:3 2807:1 2826:3 2831:1 2842:1 2853:1 2876:1 2898:1 2941:1 2948:1 3002:1 3059:1 3063:1 3068:1 3090:1 3093:1 3095:1 3118:1 3129:1 3131:1 3135:1 3136:1 3139:1 3147:2 3173:2 3183:1 3184:2 3221:3 3222:1 3234:1 3237:6 3288:1 3301:1 3306:1 3312:4 3326:1 3328:1 3355:1 3358:1 3367:1 3369:2 3377:1 3399:1 3407:2 3408:1 3416:1 3428:1 3442:1 3467:1 3481:1 3495:1 3514:1 3537:1 3572:1 3596:1 3598:1 3622:1 3653:1 3661:1 3666:1 3678:1 3681:1 3710:2 3729:1 3737:1 3770:1 3773:1 3777:1 3801:1 3803:2 3831:1 3832:1 3845:1 3868:1 3878:1 3889:1 3902:2 3904:1 3911:1 3928:1 3938:1 3939:1 3992:1 4003:1 4019:1 4046:1 4047:1 4073:1 4091:1 4107:9 4116:1 4143:1 4159:1 4160:1 4192:3 4197:1 4198:5 4211:3 4212:1 4216:1 4223:1 4228:1 4229:1 4230:2 4231:3 4234:2 4237:1 4238:1 4248:1 4319:1 4323:1 4351:1 4364:4 4368:1 4384:1 4391:1 4394:1 4409:3 4412:1 4420:1 4436:1 4450:2 4464:1 4470:1 4498:2 4506:1 4529:1 4539:1 4546:3 4561:1 4621:2 4633:2 4644:1 4654:1 4658:1 4662:2 4667:1 4673:1 4675:1 4681:1 4689:3 4703:2 4729:1 4741:1 4757:2 4768:1 4818:1 4821:1 4823:1 4826:1 4831:1 4836:2 4854:1 4861:1 4872:1 4876:2 4926:3 4927:1 4950:2 4953:2 4958:1 4959:2 4986:1 4994:1 5016:1 5049:2 5054:1 5075:1 5090:2 5100:2 5103:1 5127:1 5130:1 5142:1 5146:2 5187:3 5189:1 5192:1 5205:1 5215:1 5217:1 5225:1 5247:3 5248:1 5260:1 5263:1 5276:1 5282:2 5289:1 5308:2 5310:2 5314:1 5322:3 5325:1 5332:1 5337:1 5338:1 5340:3 5342:1 5347:2 5349:2 5350:2 5352:3 5396:1 5426:4 5437:4 5451:1 5488:1 5489:1 5520:1 5535:1 5592:2 5604:1 5609:1 5615:1 5616:2 5625:1 5629:2 5655:1 5656:1 5663:1 5665:1 5668:1 5672:2 5674:4 5686:1 5688:1 5689:1 5693:1 5702:1 5703:1 5726:2 5774:1 5783:3 5807:3 5808:1 5818:1 5819:1 5823:1 5837:1 5874:1 5878:2 5890:1 5914:1 5917:1 5930:1 5947:6 5948:1 5959:1 5970:1 5998:2 6021:1 6035:1 6039:1 6040:1 6052:2 6071:1 6084:1 6096:1 6116:1 6130:1 6147:1 6175:3 6183:3 6192:1 6194:1 6201:1 6209:1 6223:1 6231:1 6232:1 6237:2 6241:1 6248:1 6255:1 6261:1 6269:1 6276:1 6285:2 6286:1 6289:1 6305:1 6324:1 6332:1 6354:1 6359:3 6365:8 6382:1 6384:1 6386:4 6387:1 6429:20 6449:4 6451:8 6460:1 6486:1 6497:2 6501:1 6508:1 6551:1 6619:1 6655:1 6669:3 6677:2 6680:1 6700:1 6771:1 6785:1 6789:1 6806:1 6810:9 6816:1 6818:1 6841:1 6859:18 6882:1 6906:1 6908:1 6918:1 6926:1 6981:1 7017:1 7020:1 7030:1 7038:2 7054:1 7056:1 7068:3 7077:1 7084:1 7121:1 7125:1 7156:1 7157:2 7164:1 7166:3 7169:1 7170:4 7172:1 7173:1 7177:2 7182:3 7193:1 7194:2 7262:2 7263:1 7280:1 7303:1 7305:1 7325:1 7364:1 7384:1 7400:1 7409:2 7423:1 7432:1 7434:1 7443:1 7451:1 7457:1 7461:2 7488:1 7505:1 7519:1 7521:1 7526:1 7535:1 7571:1 7573:2 7581:6 7590:4 7594:1 7604:3 7615:1 7656:1 7665:1 7686:1 7712:1 7731:1 7787:2 7790:1 7798:1 7803:1 7804:1 7805:1 7810:1 7878:1 7896:1 7912:2 7930:1 7932:1 7943:1 7944:1 7964:2 7975:1 7988:2 8036:1 8048:1 8049:2 8061:1 8064:3 8067:1 8070:6 8071:1 8080:3 8099:1 8118:1 8121:1 8138:2 8139:1 8143:1 8162:9 8174:1 8177:1 8189:1 8195:1 8196:1 8212:1 8215:1 8222:2 8226:1 8285:2 8293:1 8296:2 8304:2 8317:1 8348:1 8352:1 8363:2 8379:1 8382:1 8387:1 8392:1 8437:2 8443:1 8444:1 8480:1 8532:2 8566:1 8574:1 8575:1 8581:2 8617:2 8679:4 8684:1 8700:1 8736:2 8746:1 8753:1 8760:1 8769:1 8778:3 8785:1 8789:2 8801:2 8802:2 8807:1 8809:2 8814:2 8815:1 8817:1 8818:1 8822:1 8824:1 8828:1 8829:1 8832:1 8833:1 8840:1 8841:1 8856:1 8857:1 8867:1 8881:1 8891:3 8897:1 8907:1 8910:1 8914:4 8916:4 8949:1 8975:1 8977:1 8981:1 8989:4 9001:3 9070:1 9080:1 9090:1 9101:3 9102:2 9106:1 9108:1 9145:1 9167:1 9173:1 9193:1 9200:1 9202:1 9205:1 9215:1 9222:1 9225:1 9252:6 9260:1 9282:1 9289:1 9313:1 9317:1 9321:1 9338:1 9346:1 9359:3 9363:2 9388:1 9389:1 9411:1 9416:1 9424:1 9433:1 9442:1 9459:1 9472:1 9486:2 9488:6 9536:2 9542:1 9543:2 9545:1 9561:1 9563:2 9586:1 9587:1 9610:1 9621:1 9624:2 9639:1 9653:5 9656:1 9659:1 9668:1 9682:1 9687:1 9695:1 9698:1 9703:1 9707:1 9710:1 9716:1 9723:2 9727:1 9730:1 9743:1 9762:1 9763:5 9772:2 9778:8 9810:1 9815:1 9822:1 9823:11 9880:1 9881:1 9899:1 9904:1 9911:1 9918:2 9923:4 9949:1 9974:3 9989:1 10001:1 10018:1 10022:2 10037:2 10046:1 10053:2 10054:2 10061:1 10074:3 10079:1 10089:1 10095:1 10105:1 10118:1 10130:1 10146:1 10151:2 10169:1 10179:1 10225:1 10233:1 10265:1 10281:3 10337:1 10363:1 10364:2 10391:1 10413:1 10416:1 10430:1 10480:8 10483:1 10487:2 10502:1 10505:1 10513:1 10531:1 10550:11 10556:1 10571:1 10576:2 10598:1 10621:2 10637:1 10652:1 10687:1 10695:1 10724:1 10725:1 10733:1 10739:3 10754:1 10787:1 10818:2 10836:4 10844:1 10846:1 10847:3 10851:2 10861:2 10870:1 10871:8 10872:1 10874:1 10897:1 10901:1 10923:1 10942:2 10943:1 10962:1 10969:1 10970:8 10974:1 10982:1 10985:14 11001:1 11016:1 11046:3 11065:1 11087:1 11101:2 11118:1 11156:1 11159:2 11163:1 11168:1 11220:1 11273:1 11275:1 11277:1 11280:3 11287:1 11297:1 11301:2 11311:1 11322:1 11340:1 11342:1 11368:10 11375:1 11376:2 11406:1 11407:2 11408:1 11415:1 11419:1 11432:2 11439:1 11447:1 11449:1 11451:1 11459:1 11509:3 11512:2 11531:2 11564:1 11607:1 11612:1 11613:1 11614:2 11638:1 11657:1 11697:2 11699:1 11704:1 11712:1 11717:1 11718:1 11744:1 11747:1 11777:1 11788:1 11806:1 11808:1 11813:1 11816:1 11818:1 11825:1 11833:1 11855:1 11856:1 11861:2 11881:1 11900:1 11902:4 11910:1 11927:4 11942:1 11979:1 11985:1 11990:3 12006:1 12016:2 12020:1 12035:1 12036:1 12045:1 12050:2 12054:1 12060:1 12069:1 12089:1 12091:1 12099:1 12100:1 12105:1 12114:1 12123:1 12141:1 12144:1 12157:1 12173:1 12176:1 12218:1 12229:1 12263:3 12269:1 12276:2 12287:1 12303:2 12341:1 12372:1 12383:3 12387:1 12389:1 12408:1 12437:2 12473:1 12525:1 12550:3 12582:3 12583:1 12584:1 12586:1 12602:1 12630:1 12633:1 12667:1 12689:1 12706:1 12732:1 12739:1 12741:22 12766:1 12770:1 12778:1 12816:1 12822:1 12828:1 12863:1 12872:1 12877:1 12897:1 12911:1 12950:2 12956:1 12958:2 12959:1 12961:2 12975:1 12981:1 12983:1 12984:1 12988:3 12995:1 12997:1 13000:1 13012:1 13030:2 13031:1 13069:1 13070:1 13082:1 13094:5 13095:3 13113:1 13121:1 13173:1 13202:1 13207:2 13221:1 13225:1 13246:1 13259:1 13270:1 13292:2 13295:2 13300:1 13328:3 13339:1 13352:1 13363:1 13371:1 13373:1 13378:1 13383:3 13390:1 13405:1 13410:1 13425:1 13430:1 13431:2 13435:1 13437:2 13442:1 13444:1 13445:1 13448:1 13453:3 13455:1 13459:5 13469:1 13482:3 13495:1 13525:2 13545:1 13554:1 13570:1 13622:1 13637:1 13641:1 13670:1 13675:1 13703:2 13719:1 13739:1 13743:1 13746:1 13752:2 13758:1 13765:1 13766:1 13767:1 13775:1 13812:1 13819:1 13826:1 13835:2 13837:4 13843:2 13846:1 13868:1 13876:2 13895:1 13906:1 13907:1 13924:2 13925:3 13928:9 13931:1 13965:2 13966:1 13970:1 13972:2 13977:2 13979:2 13994:1 14000:1 14003:2 14008:1 14031:1 14035:1 14039:2 14046:1 14052:2 14071:1 14077:1 14094:1 14097:1 14100:1 14101:1 14108:1 14114:1 14118:1 14122:1 14124:1 14125:1 14142:1 14154:1 14156:1 14178:1 14189:1 14200:1 14207:1 14210:1 14223:1 14240:2 14246:1 14262:1 14275:2 14307:1 14332:1 14368:1 14372:1 14393:1 14398:1 14403:1 14443:1 14462:1 14465:1 14468:1 14491:1 14516:1 14518:1 14539:2 14544:2 14550:1 14553:1 14570:1 14574:1 14575:1 14577:1 14585:1 14596:2 14627:1 14637:1 14677:6 14696:1 14713:1 14719:2 14721:1 14740:1 14744:2 14762:3 14764:1 14768:2 14774:1 14775:1 14781:1 14803:1 14820:1 14825:1 14830:1 14833:1 14837:1 14844:3 14853:2 14856:1 14864:1 14877:1 14880:1 14885:1 14887:1 14889:1 14903:8 14929:2 14931:2 14975:1 14981:1 15024:1 15035:1 15067:1 15070:1 15080:1 15112:1 15116:1 15129:1 15139:1 15142:1 15147:2 15184:1 15191:1 15205:1 15215:1 15227:1 15251:1 15282:2 15283:1 15307:4 15312:2 15315:1 15328:1 15367:1 15370:1 15371:1 15389:1 15477:1 15480:1661 15482:2 15496:3 15503:1 15514:1 15532:1 15543:1 15564:1 15575:1 15577:1 15583:2 15587:1 15602:1 15633:1 15635:1 15646:4 15655:1 15658:3 15661:1 15662:2 15663:1 15672:1 15684:1 15708:1 15723:4 15725:2 15800:2 15834:3 15883:1 15887:2 15898:1 15929:2 15936:1 15944:1 15949:1 15990:1 16002:1 16009:1 16019:1 16042:2 16046:1 16054:3 16074:4 16095:1 16102:2 16110:1 16117:1 16129:1 16151:1 16152:2 16159:1 16170:1 16171:2 16176:1 16177:1 16206:8 16212:1 16235:1 16239:1 16268:1 16271:1 16307:1 16331:1 16332:1 16341:1 16362:1 16380:1 16387:2 16402:1 16408:1 16414:1 16416:1 16432:2 16434:2 16443:4 16449:1 16462:1 16479:1 16482:1 16485:1 16495:1 16522:2 16538:1 16541:1 16548:1 16593:1 16611:1 16618:2 16650:1 16661:1 16669:4 16679:1 16681:1 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:3 16763:2 16768:1 16782:1 16787:1 16795:2 16797:1 16811:1 16815:6 16823:3 16856:1 16861:1 16908:1 16945:1 16947:1 16965:2 16981:1 17001:2 17014:2 17027:1 17043:1 17046:5 17050:3 17056:1 17058:2 17101:1 17109:1 17138:1 17144:1 17163:1 17168:1 17188:4 17197:1 17219:1 17221:1 17223:1 17234:1 17238:1 17255:1 17261:1 17275:1 17305:1 17311:2 17329:1 17352:1 17358:1 17362:1 17380:1 17400:1 17429:1 17437:3 17443:1 17452:1 17485:10 17491:2 17496:1 17510:4 17532:1 17535:1 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17571:1 17601:1 17604:1 17610:2 17648:1 17649:1 17685:1 17706:3 17724:1 17735:1 17738:3 17747:2 17774:1 17806:1 17812:1 17813:1 17827:1 17835:3 17837:1 17838:1 17839:1 17851:1 17852:1 17884:1 17893:1 17916:1 17929:1 17943:1 17965:2 17980:2 17993:2 17995:1 17996:2 18035:1 18037:1 18043:1 18053:1 18066:1 18087:1 18091:1 18092:1 18093:1 18130:1 18131:1 18166:1 18186:1 18196:3 18197:3 18199:3 18204:1 18210:1 18228:1 18231:2 18234:2 18244:1 18249:1 18261:1 18264:1 18285:1 18296:1 18339:1 18360:2 18366:2 18378:3 18392:1 18406:1 18421:1 18425:1 18434:2 18479:1 18491:1 18498:2 18505:1 18506:4 18509:1 18511:1 18537:1 18565:1 18567:2 18573:2 18575:2 18578:1 18616:1 18619:1 18631:1 18641:1 18643:1 18644:1 18658:1 18666:1 18676:1 18686:1 18693:2 18727:2 18729:1 18732:2 18739:3 18742:1 18776:1 18784:1 18803:1 18807:1 18820:2 18843:1 18854:1 18856:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:2 18939:1 18941:2 18943:1 18946:1 18948:1 18949:1 18961:1 18965:1 18975:3 18976:3 18978:1 18985:1 18990:3 19029:2 19033:1 19036:1 19053:1 19070:1 19080:1 19096:2 19123:1 19134:4 19145:1 19156:2 19187:2 19193:1 19201:1 19212:1 19213:1 19218:1 19225:1 19229:1 19233:1 19237:1 19249:1 19278:1 19325:1 19349:1 19365:3 19371:1 19376:1 19406:1 19425:3 19427:1 19431:1 19438:2 19443:1 19444:1 19446:1 19470:1 19474:1 19480:1 19486:1 19493:1 19508:1 19523:1 19525:1 19532:1 19540:1 19559:3 19562:1 19573:1 19580:1 19587:1 19611:1 19615:3 19637:1 19638:2 19644:1 19666:1 19716:2 19718:1 19730:1 19746:1 19748:1 19810:2 19823:1 19832:3 19870:1 19901:1 19902:8 19974:2 20000:1 20013:1 20022:1 20040:1 20051:1 20055:1 20063:1 20068:2 20076:1 20083:2 20084:7 20087:1 20102:1 20107:1 20109:1 20122:1 20126:2 20139:1 20152:1 20155:1 20196:1 20204:1 20266:1 20268:1 20270:1 20273:1 20274:1 20275:1 20276:1 20281:1 20287:1 20305:1 20318:1 20327:3 20331:1 20332:2 20334:1 20337:2 20343:1 20344:1 20360:1 20366:4 20378:5 20379:1 20393:1 20411:1 20412:1 20432:1 20441:1 20447:1 20448:1 20460:1 20469:2 20473:1 20480:2 20485:1 20490:1 20493:1 20508:1 20567:1 20595:1 20599:2 20630:1 20651:2 20659:1 20663:1 20686:6 20722:1 20723:1 20734:1 20738:1 20742:6 20750:1 20751:1 20753:1 20755:1 20762:1 20769:1 20785:1 20786:1 20847:1 20878:1 20928:2 20930:5 20955:1 20958:1 20962:2 20964:1 20965:1 20970:2 20989:1 20993:1 21007:1 21099:1 21100:1 21111:1 21112:1 21134:1 21136:1 21137:1 21139:1 21154:1 21159:1 21189:1 21205:1 21208:1 21209:1 21245:1 21267:1 21279:1 21319:1 21337:1 21361:3 21363:1 21364:5 21371:1 21413:1 21441:2 21480:3 21486:1 21503:1 21512:1 21551:1 21556:1 21557:1 21559:1 21561:2 21576:1 21586:1 21594:1 21612:3 21628:1 21630:1 21632:1 21637:3 21642:1 21663:1 21665:1 21671:1 21693:1 21695:1 21697:4 21703:1 21707:1 21716:1 21738:1 21760:3 21761:1 21773:2 21787:1 21831:3 21844:1 21857:1 21869:2 21887:1 21905:1 21914:1 21923:1 21926:1 21934:1 21952:1 21974:1 21977:2 21996:1 21998:1 22001:1 22010:2 22013:3 22014:1 22027:2 22043:1 22048:2 22058:1 22065:1 22068:1 22080:3 22108:1 22114:1 22124:1 22138:1 22173:1 22186:1 22193:1 22195:1 22208:1 22242:1 22247:1 22379:1 22386:1 22390:1 22394:1 22419:1 22423:1 22425:1 22429:1 22462:1 22511:1 22515:1 22527:1 22528:2 22547:1 22548:2 22550:1 22553:1 22562:1 22585:2 22593:1 22601:1 22602:1 22611:4 22657:1 22666:1 22669:3 22672:1 22690:2 22693:1 22740:4 22749:1 22755:1 22760:2 22769:1 22786:1 22801:2 22815:2 22817:1 22822:1 22823:1 22825:1 22831:1 22837:1 22846:1 22854:1 22874:1 22894:2 22897:1 22912:1 22916:3 22925:1 22939:1 22942:1 22957:1 23005:1 23006:2 23007:1 23022:4 23039:1 23050:2 23074:2 23088:1 23089:6 23109:2 23113:1 23138:1 23151:1 23206:1 23248:3 23284:1 23305:3 23314:1 23324:1 23339:1 23341:1 23360:4 23385:1 23404:1 23405:1 23430:17 23431:1 23432:1 23446:1 23466:10 23476:2 23481:1 23490:1 23518:2 23527:1 23541:1 23546:1 23551:3 23558:3 23586:7 23587:1 23610:1 23623:1 23645:2 23647:1 23655:1 23694:1 23719:1 23739:1 23740:1 23758:1 23784:1 23796:3 23797:3 23840:1 23847:1 23849:1 23852:1 23853:2 23868:1 23956:3 23961:1 23966:1 23967:1 23970:1 23971:10 23985:1 24000:1 24005:1 24006:2 24012:1 24028:1 24042:1 24049:1 24057:1 24101:1 24108:1 24117:1 24126:1 24139:1 24145:1 24153:1 24162:3 24170:2 24223:1 24225:1 24293:1 24301:1 24302:1 24306:1 24307:1 24315:1 24317:1 24320:1 24341:1 24347:2 24353:1 24362:1 24370:1 24379:1 24384:1 24393:1 24401:1 24409:1 24410:1 24411:1 24418:1 24421:1 24438:1 24440:1 24449:1 24455:1 24463:1 24469:3 24473:2 24476:2 24479:1 24480:1 24483:1 24487:1 24491:1 24504:1 24523:1 24525:3 24535:1 24536:1 24552:1 24563:1
20 13:1 25:1 29:1 30:1 34:1 37:1 53:1 76:1 88:1 96:1 105:1 112:1 150:1 162:1 172:1 175:1 186:1 216:1 218:2 240:3 241:1 276:1 296:2 298:1 314:1 339:1 341:2 407:2 441:1 489:1 492:1 509:1 510:3 527:2 541:2 565:2 566:1 568:2 640:1 713:1 720:1 752:2 754:1 762:2 766:1 778:1 785:3 788:1 795:1 805:1 814:3 828:1 831:3 833:1 834:5 838:3 846:1 857:1 869:4 888:3 889:3 892:2 899:1 906:1 912:1 937:1 946:1 948:2 952:1 960:1 967:1 989:1 1005:1 1009:3 1015:4 1044:1 1074:1 1078:1 1080:1 1094:1 1095:1 1108:1 1110:1 1112:1 1114:1 1131:1 1142:1 1158:1 1208:1 1212:1 1220:1 1230:2 1236:1 1241:1 1257:1 1258:1 1259:3 1274:3 1293:1 1296:1 1297:1 1301:1 1311:3 1328:11 1330:2 1332:7 1340:1 1343:1 1345:1 1352:1 1353:2 1360:1 1372:1 1376:1 1381:9 1395:1 1396:1 1420:1 1429:1 1435:1 1436:1 1460:2 1476:1 1506:1 1507:5 1510:2 1517:2 1526:1 1546:1 1552:2 1568:1 1591:1 1612:1 1617:2 1619:2 1629:1 1639:2 1641:1 1644:1 1661:1 1663:1 1666:1 1703:1 1719:1 1731:4 1745:1 1763:1 1766:3 1774:1 1775:1 1782:1 1815:1 1826:4 1828:1 1838:1 1846:1 1853:2 1856:1 1875:2 1877:8 1879:3 1882:1 1883:1 1889:1 1891:1 1892:3 1894:1 1898:1 1908:1 1909:1 1912:2 1930:1 1942:1 1945:4 1948:2 1949:1 1952:1 1954:1 1959:1 1960:2 1961:1 1963:3 1965:2 1968:2 1973:1 1976:2 1981:2 1992:1 2000:1 2034:1 2038:1 2045:1 2055:1 2074:1 2077:1 2102:1 2110:1 2115:1 2140:1 2157:1 2164:1 2167:1 2169:1 2173:1 2188:1 2222:1 2241:1 2253:1 2254:1 2272:1 2282:1 2287:1 2308:1 2321:1 2325:2 2328:1 2329:1 2365:1 2374:1 2383:1 2390:1 2393:1 2405:1 2409:1 2434:1 2451:3 2461:2 2462:9 2464:1 2478:1 2480:2 2481:2 2491:1 2500:1 2507:8 2535:1 2589:1 2597:2 2636:1 2645:3 2678:1 2700:1 2718:1 2745:1 2753:1 2764:1 2770:1 2779:2 2802:3 2807:1 2826:3 2831:1 2842:1 2853:1 2876:1 2898:1 2941:1 2948:1 3002:1 3059:1 3063:1 3068:1 3090:1 3093:1 3095:1 3118:1 3129:1 3131:1 3135:1 3136:1 3139:1 3147:2 3173:2 3183:1 3184:2 3221:3 3222:1 3234:1 3237:6 3288:1 3301:1 3306:1 3312:5 3326:1 3328:1 3355:1 3358:1 3367:1 3369:2 3377:1 3399:1 3407:2 3408:1 3416:1 3428:1 3442:1 3467:1 3481:1 3495:1 3514:1 3537:1 3572:1 3596:1 3598:1 3622:1 3653:1 3655:1 3661:1 3666:1 3678:1 3681:1 3710:2 3729:1 3737:1 3770:1 3773:1 3777:1 3801:1 3803:2 3831:1 3832:1 3837:1 3845:1 3868:1 3878:1 3889:1 3902:2 3904:1 3911:1 3928:3 3938:1 3939:1 3992:1 4003:1 4019:1 4046:1 4047:1 4073:1 4091:1 4107:9 4116:1 4143:1 4159:1 4160:1 4192:3 4197:1 4198:6 4211:3 4212:1 4216:1 4223:1 4228:1 4229:1 4230:2 4231:3 4234:2 4237:1 4238:1 4248:1 4319:1 4323:1 4351:1 4364:4 4368:1 4384:1 4391:1 4394:1 4409:3 4412:1 4420:1 4436:1 4450:2 4464:1 4470:1 4498:2 4506:1 4529:1 4539:1 4546:3 4561:1 4621:2 4633:2 4644:1 4654:1 4658:1 4662:2 4667:1 4673:1 4675:1 4681:1 4689:3 4703:2 4729:1 4741:1 4757:2 4768:1 4818:1 4821:1 4823:1 4826:1 4831:1 4836:2 4854:1 4861:1 4872:1 4876:2 4926:3 4927:1 4950:2 4953:2 4958:1 4959:2 4986:1 4994:1 5016:1 5049:2 5054:1 5075:1 5090:2 5100:2 5103:1 5127:1 5130:1 5142:1 5146:2 5187:3 5189:1 5192:2 5205:1 5215:1 5217:1 5225:1 5247:3 5248:1 5260:1 5263:1 5276:1 5282:2 5289:1 5308:2 5310:2 5314:1 5322:3 5324:1 5325:1 5332:1 5337:1 5338:1 5340:3 5342:1 5347:2 5349:2 5350:2 5352:3 5396:1 5409:1 5426:4 5437:4 5451:1 5488:1 5489:1 5520:1 5535:1 5592:2 5604:1 5609:1 5615:1 5616:2 5625:1 5629:2 5655:1 5656:1 5663:1 5665:1 5668:1 5672:2 5674:4 5686:1 5688:1 5689:1 5693:1 5702:1 5703:1 5726:2 5774:1 5783:3 5807:3 5808:1 5818:1 5819:1 5823:1 5837:1 5874:1 5878:2 5890:1 5914:1 5917:1 5930:1 5947:6 5948:1 5959:1 5970:1 5998:2 6021:1 6035:1 6039:1 6040:1 6052:2 6071:1 6084:1 6096:1 6116:1 6130:1 6147:1 6175:3 6183:3 6192:1 6194:1 6201:1 6209:1 6223:1 6231:1 6232:1 6237:2 6241:1 6248:1 6255:1 6261:1 6269:1 6276:1 6285:2 6286:1 6289:1 6305:1 6324:1 6332:1 6354:1 6359:3 6365:8 6382:1 6384:1 6386:4 6387:1 6429:20 6449:4 6451:9 6460:1 6486:1 6497:2 6501:1 6508:1 6551:1 6619:1 6655:1 6669:3 6677:2 6680:1 6700:1 6771:1 6785:1 6789:1 6806:1 6810:9 6816:2 6818:1 6824:1 6841:1 6859:19 6882:1 6906:1 6908:1 6918:1 6926:1 6981:1 7017:1 7020:1 7030:1 7038:2 7054:1 7056:1 7068:3 7077:1 7084:1 7121:1 7125:1 7156:1 7157:2 7164:1 7166:3 7169:1 7170:4 7172:1 7173:1 7177:2 7182:3 7192:1 7193:1 7194:2 7262:2 7263:1 7280:1 7303:1 7305:1 7325:1 7364:1 7384:1 7400:1 7409:2 7423:1 7432:1 7434:1 7443:1 7451:1 7457:1 7461:2 7488:1 7505:1 7519:1 7521:1 7526:1 7535:1 7571:1 7573:2 7581:6 7590:4 7594:1 7604:3 7615:1 7656:1 7665:1 7686:1 7712:1 7731:1 7777:1 7787:2 7790:1 7798:1 7803:1 7804:1 7805:1 7810:1 7878:1 7896:1 7912:2 7930:1 7932:1 7943:1 7944:1 7950:1 7964:2 7975:1 7988:2 8036:1 8048:1 8049:3 8061:1 8064:3 8067:1 8070:6 8071:1 8080:3 8099:1 8118:1 8121:1 8138:2 8139:1 8143:1 8162:9 8166:1 8174:1 8177:1 8189:1 8195:1 8196:1 8212:1 8215:1 8222:2 8226:1 8285:2 8293:1 8296:2 8304:2 8317:1 8348:1 8352:1 8363:2 8379:1 8382:1 8387:1 8392:1 8437:2 8443:1 8444:1 8480:1 8532:2 8566:1 8574:1 8575:1 8581:2 8617:2 8679:4 8684:1 8700:1 8736:2 8746:1 8753:1 8760:1 8769:1 8778:3 8785:1 8789:2 8801:2 8802:2 8807:1 8809:2 8814:2 8815:1 8817:1 8818:1 8822:1 8824:1 8828:1 8829:1 8832:1 8833:1 8840:1 8841:1 8856:1 8857:1 8867:1 8881:1 8891:3 8897:1 8907:1 8910:1 8914:4 8916:4 8949:1 8960:1 8975:1 8977:1 8981:1 8989:4 9001:3 9070:1 9080:1 9090:1 9101:4 9102:2 9106:1 9108:1 9145:1 9167:1 9173:1 9192:1 9193:1 9200:1 9202:1 9205:1 9215:1 9222:1 9225:1 9252:6 9260:1 9282:1 9289:1 9313:1 9317:1 9321:1 9338:1 9346:1 9359:3 9363:2 9388:1 9389:1 9411:1 9416:1 9424:1 9433:1 9442:1 9459:1 9472:1 9486:2 9488:6 9536:2 9542:1 9543:2 9545:1 9547:1 9561:1 9563:2 9586:1 9587:1 9610:1 9621:1 9624:2 9639:1 9653:5 9656:1 9659:1 9668:1 9682:1 9687:1 9695:1 9698:1 9703:1 9707:1 9710:1 9716:1 9723:2 9727:1 9730:1 9743:1 9762:1 9763:5 9772:2 9778:8 9810:1 9815:1 9822:1 9823:11 9880:1 9881:1 9899:1 9904:1 9911:1 9918:2 9923:4 9949:1 9974:3 9989:1 10001:1 10018:1 10022:2 10037:2 10046:1 10053:2 10054:2 10061:1 10074:3 10079:1 10089:1 10095:1 10105:1 10118:1 10130:1 10146:1 10151:2 10169:1 10179:1 10225:1 10233:1 10265:1 10281:3 10337:1 10363:1 10364:2 10391:1 10413:1 10416:1 10430:1 10480:8 10483:1 10487:2 10502:1 10505:1 10513:1 10531:1 10550:11 10556:1 10571:1 10576:2 10598:1 10621:2 10637:1 10652:1 10687:1 10695:1 10724:1 10725:1 10733:1 10739:4 10754:1 10787:1 10818:2 10836:4 10844:1 10846:1 10847:3 10851:2 10861:2 10870:1 10871:8 10872:1 10874:1 10897:1 10901:1 10923:1 10942:2 10943:1 10962:1 10969:1 10970:8 10974:1 10982:1 10985:14 11001:1 11016:1 11046:3 11065:1 11087:1 11101:2 11118:1 11156:1 11159:2 11163:1 11168:1 11187:1 11220:1 11273:1 11275:1 11277:1 11280:3 11287:1 11289:1 11297:1 11301:2 11311:1 11322:1 11340:1 11342:1 11368:10 11375:1 11376:2 11406:1 11407:2 11408:1 11415:1 11419:1 11432:2 11439:1 11447:1 11449:1 11451:1 11459:1 11509:3 11512:2 11531:2 11564:1 11607:1 11612:1 11613:1 11614:2 11638:1 11657:1 11697:2 11699:1 11704:1 11712:1 11717:1 11718:1 11744:1 11747:1 11777:1 11788:1 11806:1 11808:1 11813:1 11816:1 11818:1 11825:1 11833:1 11855:1 11856:1 11861:2 11881:1 11900:1 11902:4 11910:1 11927:4 11942:1 11979:1 11985:1 11990:3 12006:1 12016:2 12020:1 12035:1 12036:1 12045:1 12050:2 12054:1 12060:1 12069:1 12089:1 12091:1 12099:1 12100:1 12105:1 12114:1 12123:1 12141:1 12144:1 12157:1 12173:1 12175:1 12176:1 12218:1 12229:1 12263:3 12269:1 12276:2 12287:1 12303:2 12341:1 12372:1 12383:3 12387:1 12389:1 12408:1 12437:2 12473:1 12525:1 12550:3 12582:3 12583:1 12584:1 12586:1 12602:1 12630:1 12633:1 12667:1 12689:1 12706:1 12716:1 12723:1 12732:1 12739:1 12741:24 12766:1 12770:1 12778:1 12816:1 12822:1 12828:1 12863:1 12872:1 12877:1 12897:1 12911:1 12950:2 12956:1 12958:2 12959:1 12961:2 12975:1 12981:1 12983:1 12984:1 12988:3 12995:1 12997:1 13000:1 13012:1 13030:2 13031:1 13069:1 13070:1 13082:1 13094:5 13095:3 13113:1 13121:1 13173:1 13202:1 13207:2 13221:1 13225:1 13246:1 13259:1 13270:1 13292:2 13295:2 13300:1 13328:3 13339:1 13352:1 13363:1 13371:1 13373:1 13378:1 13383:3 13390:1 13405:1 13410:1 13425:1 13430:1 13431:2 13435:1 13437:2 13442:1 13444:1 13445:1 13448:1 13453:3 13455:1 13456:1 13459:5 13469:1 13482:3 13495:1 13525:2 13545:1 13554:1 13570:1 13622:1 13637:1 13641:1 13670:1 13675:1 13703:2 13719:1 13739:1 13743:1 13746:1 13752:2 13758:1 13765:1 13766:1 13767:1 13775:1 13812:1 13819:1 13826:1 13835:2 13837:4 13843:2 13846:1 13868:1 13876:2 13895:1 13906:1 13907:1 13924:2 13925:3 13928:9 13931:1 13965:2 13966:1 13970:1 13972:2 13977:2 13979:2 13994:1 14000:1 14003:2 14008:1 14031:1 14035:1 14039:2 14046:1 14052:2 14071:1 14077:1 14094:1 14097:1 14100:1 14101:1 14108:1 14114:1 14118:1 14122:1 14124:1 14125:1 14142:1 14154:1 14156:1 14178:1 14189:1 14200:1 14207:1 14210:1 14223:1 14240:2 14246:1 14262:1 14275:2 14307:1 14325:1 14332:1 14368:1 14372:1 14393:1 14398:1 14403:1 14443:1 14462:1 14465:1 14468:1 14491:1 14516:1 14518:1 14539:2 14544:2 14550:1 14553:1 14570:1 14574:1 14575:1 14577:1 14585:1 14596:2 14627:1 14637:1 14645:1 14677:6 14696:1 14713:1 14714:1 14719:2 14721:1 14740:1 14744:2 14762:3 14764:1 14768:2 14774:1 14775:1 14781:1 14803:1 14820:1 14825:1 14830:1 14833:1 14837:1 14844:3 14853:2 14856:1 14864:1 14877:1 14880:1 14885:1 14887:1 14889:1 14903:8 14929:2 14931:2 14963:1 14975:1 14981:1 15024:1 15035:1 15067:1 15070:1 15080:1 15112:1 15116:1 15129:1 15139:1 15142:1 15147:2 15184:1 15191:1 15205:1 15215:1 15227:1 15251:1 15282:2 15283:1 15307:4 15312:2 15315:1 15328:1 15367:1 15370:1 15371:1 15389:1 15477:1 15480:1713 15482:2 15496:3 15503:1 15514:1 15532:1 15543:1 15564:1 15575:1 15577:1 15583:2 15587:1 15602:1 15633:1 15635:1 15646:4 15655:1 15658:3 15661:1 15662:2 15663:1 15672:1 15684:1 15708:1 15723:4 15725:2 15800:2 15834:3 15883:1 15887:2 15898:1 15929:2 15936:1 15944:1 15949:1 15990:1 16002:1 16009:1 16019:1 16042:2 16046:1 16054:3 16074:4 16095:1 16102:2 16110:1 16117:1 16129:1 16151:1 16152:2 16159:1 16170:1 16171:2 16176:1 16177:1 16206:8 16212:1 16235:1 16239:1 16268:1 16271:1 16307:1 16331:1 16332:1 16341:1 16362:1 16380:1 16387:2 16402:1 16408:1 16414:1 16416:1 16432:2 16434:2 16443:4 16449:1 16462:1 16479:1 16482:1 16485:1 16495:1 16522:2 16538:1 16541:1 16548:1 16573:1 16593:1 16611:1 16618:2 16650:1 16661:1 16669:4 16679:1 16681:1 16706:1 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:3 16763:2 16768:1 16782:1 16787:1 16795:2 16797:1 16811:1 16815:6 16823:3 16856:1 16861:1 16908:1 16945:1 16947:1 16965:2 16981:1 17001:2 17014:2 17027:1 17043:1 17046:5 17050:4 17056:1 17058:2 17101:1 17109:1 17138:1 17144:1 17163:1 17168:1 17188:4 17197:1 17219:1 17221:1 17223:1 17234:1 17238:1 17255:1 17261:1 17275:1 17305:1 17311:2 17329:1 17352:1 17358:1 17362:1 17380:1 17400:1 17429:1 17437:3 17443:1 17452:1 17485:10 17491:2 17496:1 17501:1 17510:4 17532:1 17535:1 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17571:1 17601:1 17604:1 17610:2 17648:1 17649:1 17685:1 17706:3 17724:1 17735:1 17738:3 17747:2 17774:1 17806:1 17812:1 17813:1 17827:1 17835:3 17837:1 17838:1 17839:1 17851:1 17852:1 17884:1 17893:1 17916:1 17929:1 17943:1 17965:2 17980:2 17993:2 17995:1 17996:2 18035:1 18037:1 18043:1 18053:1 18066:1 18087:1 18088:1 18091:1 18092:1 18093:1 18130:1 18131:1 18166:1 18186:1 18196:3 18197:3 18199:3 18204:1 18210:1 18228:1 18231:2 18234:2 18244:1 18249:1 18261:1 18264:1 18285:1 18296:1 18339:1 18360:2 18366:2 18378:3 18392:1 18406:1 18421:1 18425:1 18434:2 18479:1 18491:1 18498:2 18505:1 18506:4 18509:1 18511:1 18537:1 18565:1 18567:2 18573:2 18575:2 18578:1 18616:1 18619:1 18631:1 18641:1 18643:1 18644:1 18658:1 18666:1 18676:1 18686:1 18693:2 18727:2 18729:1 18732:2 18739:3 18742:1 18776:1 18784:1 18803:1 18807:1 18820:2 18843:1 18854:1 18856:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:2 18939:1 18941:2 18943:1 18946:1 18948:1 18949:1 18961:1 18965:1 18975:3 18976:3 18978:1 18985:1 18990:3 19029:2 19033:1 19036:1 19053:1 19070:1 19080:1 19096:2 19123:1 19134:4 19145:1 19156:2 19187:2 19193:1 19201:1 19212:1 19213:1 19218:1 19225:1 19229:1 19233:1 19237:1 19249:1 19278:1 19325:1 19336:1 19349:1 19365:3 19371:1 19376:1 19406:1 19425:3 19427:1 19431:1 19438:2 19443:1 19444:1 19446:1 19470:1 19474:1 19480:1 19486:1 19493:1 19508:1 19523:1 19525:1 19532:1 19540:1 19559:3 19562:1 19573:1 19580:1 19587:1 19611:1 19615:3 19637:1 19638:2 19644:1 19666:1 19716:2 19718:1 19730:1 19746:1 19748:1 19789:1 19810:2 19823:1 19832:3 19870:1 19901:1 19902:8 19974:2 20000:1 20013:1 20022:1 20040:1 20051:1 20055:1 20063:1 20068:2 20076:1 20083:2 20084:7 20087:1 20102:1 20107:1 20109:1 20122:1 20126:2 20139:1 20152:1 20155:1 20196:1 20204:1 20266:1 20268:1 20270:1 20273:1 20274:1 20275:1 20276:1 20281:1 20287:1 20305:1 20318:1 20327:3 20331:1 20332:2 20334:1 20337:2 20343:1 20344:1 20360:1 20366:4 20378:5 20379:1 20393:1 20411:1 20412:1 20432:1 20441:1 20447:1 20448:1 20460:1 20469:2 20473:1 20480:2 20485:1 20490:1 20493:1 20508:1 20567:1 20595:1 20599:2 20630:1 20651:2 20659:1 20663:1 20686:6 20722:1 20723:1 20734:1 20738:1 20742:6 20750:1 20751:1 20753:1 20755:1 20762:1 20769:1 20785:1 20786:1 20847:1 20878:1 20928:2 20930:5 20955:1 20958:1 20962:2 20964:1 20965:1 20970:2 20989:1 20993:1 21007:1 21099:1 21100:1 21111:1 21112:1 21134:1 21136:1 21137:1 21139:1 21154:1 21159:1 21189:1 21204:1 21205:1 21208:1 21209:1 21245:1 21267:1 21279:1 21319:1 21337:1 21361:4 21363:1 21364:5 21371:1 21413:1 21438:1 21441:2 21480:3 21486:1 21503:1 21512:1 21551:1 21556:1 21557:1 21559:1 21561:2 21576:1 21586:1 21594:1 21612:3 21628:1 21630:1 21632:1 21637:3 21642:1 21663:1 21665:1 21671:1 21693:1 21695:1 21697:4 21703:1 21707:1 21716:1 21738:1 21760:3 21761:1 21773:2 21787:1 21831:3 21844:1 21857:1 21869:2 21887:1 21905:1 21914:1 21923:1 21926:1 21934:1 21952:1 21974:1 21977:2 21996:1 21998:1 22001:1 22010:2 22013:3 22014:1 22027:2 22043:1 22048:2 22058:1 22065:1 22068:1 22080:3 22108:2 22114:1 22124:1 22138:1 22173:1 22186:1 22193:1 22195:1 22208:1 22242:1 22247:1 22379:1 22386:1 22390:1 22394:1 22419:1 22423:1 22425:1 22429:1 22462:1 22511:1 22515:1 22527:1 22528:2 22547:1 22548:2 22550:1 22553:1 22562:1 22585:2 22593:1 22601:1 22602:1 22611:4 22657:1 22666:1 22669:3 22672:1 22690:2 22693:1 22740:4 22749:1 22755:1 22760:2 22769:1 22786:1 22801:2 22815:2 22817:1 22822:1 22823:1 22825:1 22831:1 22837:1 22846:1 22854:1 22874:1 22894:2 22897:1 22912:1 22916:3 22925:1 22939:1 22942:1 22957:1 23005:1 23006:2 23007:1 23022:4 23039:1 23050:2 23074:2 23088:1 23089:6 23109:2 23113:1 23138:1 23151:1 23206:1 23248:3 23284:1 23305:3 23314:1 23324:1 23339:1 23341:1 23360:4 23385:1 23404:1 23405:1 23430:17 23431:1 23432:1 23446:1 23459:1 23466:10 23476:2 23481:1 23490:1 23518:2 23527:1 23541:1 23546:1 23551:3 23558:3 23586:7 23587:1 23610:1 23623:1 23645:2 23647:1 23655:1 23694:1 23719:1 23739:1 23740:1 23758:1 23784:1 23796:3 23797:3 23840:1 23847:1 23849:1 23852:1 23853:2 23868:1 23951:1 23956:3 23961:1 23966:1 23967:1 23970:1 23971:10 23985:1 24000:1 24005:1 24006:2 24012:1 24028:1 24042:1 24049:1 24057:1 24101:1 24108:1 24117:1 24126:1 24139:1 24145:1 24153:1 24162:3 24170:2 24223:1 24225:1 24293:1 24301:1 24302:1 24306:1 24307:1 24315:1 24317:1 24320:1 24324:1 24341:1 24347:2 24353:1 24362:1 24370:1 24379:1 24384:1 24393:1 24401:2 24409:1 24410:1 24411:1 24418:1 24421:1 24438:1 24440:1 24449:1 24455:1 24463:1 24469:3 24473:2 24476:2 24479:1 24480:1 24483:2 24487:1 24491:1 24504:1 24523:1 24525:3 24535:1 24536:1 24552:1 24563:1
20 13:1 25:1 29:1 30:1 34:1 37:1 53:1 76:1 88:1 96:1 105:1 112:1 150:1 162:1 172:1 175:1 186:1 216:2 218:2 240:3 241:1 276:1 296:2 298:1 314:1 339:1 341:2 407:2 441:1 489:1 492:1 509:1 510:3 527:2 541:2 565:2 566:1 568:3 640:1 713:1 720:1 752:2 754:1 762:2 766:1 778:1 785:3 788:1 795:1 805:1 814:3 828:1 831:3 833:1 834:5 838:3 846:1 857:1 862:1 869:4 888:3 889:3 892:2 899:1 906:1 912:1 937:1 946:1 948:2 952:1 960:1 967:1 989:1 1005:1 1009:3 1015:4 1044:1 1074:1 1078:1 1080:1 1094:1 1095:1 1108:1 1110:1 1112:1 1114:1 1131:1 1142:1 1158:1 1208:1 1212:1 1220:2 1230:2 1236:1 1241:1 1257:1 1258:1 1259:3 1274:3 1293:1 1296:1 1297:1 1301:1 1311:3 1328:12 1330:2 1332:7 1340:1 1343:1 1345:1 1352:1 1353:2 1360:1 1372:1 1376:1 1381:9 1395:1 1396:1 1418:1 1420:1 1429:1 1435:1 1436:1 1460:2 1476:1 1506:1 1507:5 1510:2 1517:2 1526:1 1546:1 1552:2 1568:1 1591:1 1612:1 1617:2 1619:2 1629:1 1639:2 1641:1 1644:1 1661:1 1663:1 1666:1 1703:1 1719:1 1731:4 1745:1 1763:1 1766:3 1774:1 1775:1 1782:1 1815:1 1826:4 1828:1 1838:1 1846:1 1853:2 1856:1 1875:2 1877:8 1879:3 1882:1 1883:1 1889:1 1891:2 1892:3 1894:1 1898:1 1908:1 1909:1 1912:2 1930:1 1942:1 1945:4 1948:2 1949:1 1952:1 1954:1 1959:1 1960:2 1961:1 1963:3 1965:2 1968:2 1973:1 1976:2 1981:2 1992:1 1999:1 2000:1 2034:1 2038:1 2045:1 2055:1 2074:1 2077:1 2102:1 2110:1 2115:1 2140:1 2157:1 2164:1 2167:1 2169:1 2173:1 2188:1 2222:1 2241:1 2253:1 2254:1 2272:1 2282:1 2287:1 2308:1 2321:1 2325:2 2328:1 2329:1 2365:1 2374:1 2383:1 2390:1 2393:1 2405:1 2409:1 2434:1 2451:3 2461:2 2462:9 2464:2 2478:1 2480:2 2481:2 2491:1 2500:1 2507:8 2535:1 2589:1 2597:2 2636:1 2645:3 2678:1 2685:1 2700:1 2718:1 2745:1 2753:1 2764:1 2770:1 2779:3 2802:3 2807:1 2826:3 2831:1 2842:1 2843:1 2849:1 2853:1 2876:1 2898:1 2941:1 2948:1 2993:1 3002:1 3059:1 3063:1 3068:1 3090:1 3093:1 3095:1 3118:1 3129:1 3131:1 3135:1 3136:1 3139:1 3147:2 3173:2 3183:2 3184:2 3221:4 3222:1 3234:1 3237:6 3288:1 3301:1 3306:1 3312:5 3326:1 3328:1 3355:1 3358:1 3367:1 3369:2 3377:1 3399:1 3407:2 3408:1 3416:1 3428:1 3442:1 3467:1 3481:1 3495:1 3514:1 3519:1 3537:1 3572:1 3596:1 3598:1 3622:1 3653:1 3655:1 3660:1 3661:1 3666:1 3678:1 3681:1 3710:2 3729:1 3737:1 3770:1 3773:1 3777:1 3801:1 3803:2 3831:1 3832:1 3837:1 3845:1 3868:1 3878:1 3889:1 3902:2 3904:1 3911:1 3928:3 3938:1 3939:1 3992:1 4003:1 4019:1 4046:1 4047:1 4073:1 4091:1 4107:10 4116:1 4143:1 4159:1 4160:1 4192:3 4197:1 4198:6 4211:3 4212:1 4216:1 4223:1 4228:1 4229:1 4230:2 4231:3 4234:2 4237:1 4238:1 4248:1 4319:1 4323:1 4351:1 4364:4 4368:1 4384:1 4391:1 4394:1 4403:1 4409:3 4412:1 4420:1 4436:1 4450:2 4464:1 4470:1 4498:2 4506:1 4529:1 4539:1 4546:3 4561:1 4621:2 4633:2 4644:1 4654:1 4658:1 4662:2 4667:1 4673:1 4675:1 4681:1 4689:3 4703:3 4729:1 4741:1 4757:2 4768:1 4818:1 4821:1 4823:1 4826:1 4831:1 4836:2 4854:1 4861:1 4872:1 4876:2 4926:4 4927:1 4950:2 4953:2 4958:1 4959:2 4986:1 4994:1 5016:1 5049:2 5054:1 5075:1 5090:2 5100:2 5103:1 5127:1 5130:1 5142:1 5146:2 5187:3 5189:1 5192:2 5205:1 5215:1 5217:1 5225:1 5247:3 5248:1 5260:1 5263:1 5264:1 5276:1 5282:2 5289:1 5308:2 5310:2 5314:1 5322:3 5324:1 5325:1 5332:2 5337:1 5338:1 5340:3 5342:1 5347:2 5349:2 5350:2 5352:4 5396:1 5398:1 5409:1 5426:4 5437:4 5451:1 5488:1 5489:1 5520:1 5535:1 5592:2 5604:1 5609:1 5615:1 5616:2 5625:1 5629:2 5655:1 5656:1 5663:1 5665:1 5668:1 5672:2 5674:4 5686:1 5688:1 5689:1 5693:1 5702:1 5703:1 5726:2 5774:1 5783:3 5807:3 5808:1 5818:1 5819:1 5823:1 5837:1 5874:1 5878:2 5890:1 5914:1 5917:1 5930:1 5947:6 5948:1 5959:1 5970:1 5998:2 6021:1 6035:1 6039:1 6040:1 6052:2 6071:1 6084:1 6096:1 6116:1 6130:1 6147:1 6175:3 6183:3 6192:1 6194:1 6201:1 6209:1 6223:1 6231:1 6232:1 6237:2 6241:1 6248:1 6255:1 6261:1 6269:1 6276:1 6285:2 6286:1 6289:1 6305:1 6324:1 6332:1 6354:1 6359:3 6365:8 6382:1 6384:1 6386:4 6387:1 6429:20 6449:4 6451:9 6460:1 6486:1 6497:2 6501:1 6508:1 6551:1 6619:1 6655:1 6669:3 6677:3 6680:1 6700:1 6771:1 6785:1 6789:1 6806:1 6810:9 6816:2 6818:1 6824:1 6841:1 6854:1 6859:20 6882:1 6906:1 6908:1 6918:1 6926:1 6981:1 7017:1 7020:1 7030:1 7038:2 7054:1 7056:1 7068:3 7077:1 7084:1 7121:1 7125:1 7156:1 7157:2 7164:1 7166:3 7169:1 7170:4 7172:1 7173:1 7174:1 7177:2 7182:3 7192:1 7193:1 7194:2 7257:1 7262:2 7263:1 7280:1 7303:1 7305:1 7325:1 7364:1 7384:1 7400:1 7409:2 7423:1 7432:2 7434:1 7443:1 7451:1 7457:1 7459:1 7461:2 7488:1 7505:1 7519:1 7521:1 7526:1 7535:1 7571:1 7573:2 7581:6 7590:4 7594:1 7604:3 7615:1 7656:1 7665:1 7686:1 7712:1 7731:1 7777:1 7787:2 7790:1 7798:1 7803:1 7804:1 7805:1 7810:1 7868:1 7878:1 7896:1 7912:2 7930:2 7932:1 7943:1 7944:1 7950:1 7964:2 7975:1 7988:2 8036:1 8048:1 8049:3 8061:1 8064:3 8067:1 8070:6 8071:1 8080:3 8099:1 8118:1 8121:1 8138:2 8139:1 8143:2 8162:9 8166:1 8174:1 8177:1 8189:1 8195:1 8196:1 8212:1 8215:1 8222:2 8226:1 8285:2 8293:1 8296:2 8304:2 8317:1 8348:2 8352:1 8363:2 8379:1 8382:1 8387:1 8392:1 8437:2 8443:1 8444:1 8480:1 8532:2 8566:1 8574:1 8575:1 8581:2 8617:2 8679:4 8684:1 8700:1 8736:2 8746:1 8753:1 8760:1 8769:1 8778:3 8785:1 8789:2 8801:2 8802:2 8807:1 8809:2 8814:3 8815:1 8817:1 8818:1 8822:1 8824:1 8828:1 8829:1 8832:1 8833:2 8840:1 8841:1 8856:1 8857:1 8867:1 8881:1 8891:3 8897:1 8907:1 8910:1 8914:4 8916:4 8949:1 8960:1 8975:1 8977:1 8981:1 8989:4 9001:3 9070:1 9080:1 9090:1 9101:4 9102:2 9106:1 9108:1 9145:1 9167:1 9173:2 9192:1 9193:1 9200:1 9202:1 9205:1 9215:1 9222:1 9225:1 9252:6 9260:2 9282:1 9289:1 9313:1 9317:1 9321:1 9338:1 9346:1 9359:3 9363:2 9388:1 9389:1 9411:1 9416:1 9424:1 9433:1 9442:1 9459:1 9472:1 9486:2 9488:6 9536:2 9542:1 9543:2 9545:1 9547:1 9561:1 9563:2 9586:1 9587:1 9610:1 9621:1 9624:2 9639:1 9653:5 9656:1 9659:1 9668:1 9682:1 9687:1 9695:1 9696:1 9698:1 9703:1 9707:1 9710:1 9716:1 9723:2 9727:1 9730:1 9743:1 9762:1 9763:5 9772:2 9778:8 9810:1 9815:1 9822:1 9823:11 9880:1 9881:1 9899:1 9904:1 9911:1 9918:2 9923:4 9949:1 9974:3 9989:1 10001:1 10018:1 10022:2 10037:2 10046:1 10053:2 10054:2 10061:1 10074:3 10079:1 10089:1 10095:1 10105:1 10118:1 10130:1 10146:1 10151:2 10169:1 10179:1 10225:1 10233:1 10265:1 10281:3 10337:1 10363:1 10364:2 10391:1 10413:1 10416:1 10430:1 10480:8 10483:1 10487:2 10502:1 10505:1 10513:1 10531:1 10550:11 10556:1 10571:1 10576:2 10598:2 10621:2 10637:1 10652:1 10687:1 10695:1 10724:1 10725:1 10733:1 10739:4 10754:1 10787:1 10818:2 10836:4 10844:1 10846:1 10847:3 10851:2 10861:2 10870:1 10871:8 10872:1 10874:1 10897:1 10901:1 10923:1 10942:2 10943:1 10962:1 10969:1 10970:8 10974:1 10982:1 10985:14 11001:1 11016:1 11046:3 11065:1 11087:1 11101:2 11118:1 11156:1 11159:2 11163:1 11168:1 11187:1 11220:1 11273:1 11275:1 11277:1 11280:3 11287:1 11289:1 11297:1 11301:2 11311:1 11322:1 11340:1 11342:1 11368:10 11375:1 11376:2 11406:1 11407:2 11408:1 11415:1 11419:1 11432:2 11439:1 11447:1 11449:1 11451:2 11459:1 11509:3 11512:2 11531:2 11564:1 11607:1 11612:1 11613:1 11614:2 11638:1 11657:1 11697:2 11699:1 11704:1 11712:1 11717:1 11718:1 11744:1 11747:1 11777:1 11788:1 11806:1 11808:1 11813:1 11816:1 11818:1 11825:1 11833:1 11855:1 11856:1 11861:2 11881:1 11900:1 11902:4 11910:1 11927:4 11942:1 11979:1 11985:1 11990:3 12006:1 12016:2 12020:1 12035:1 12036:1 12045:1 12050:2 12054:1 12060:1 12069:1 12089:1 12091:1 12099:1 12100:1 12105:1 12114:1 12123:1 12141:1 12144:1 12157:1 12173:1 12175:1 12176:1 12218:1 12229:1 12263:3 12269:1 12276:2 12287:1 12303:3 12341:1 12372:1 12383:3 12387:1 12389:1 12408:1 12437:2 12473:1 12525:1 12550:3 12582:3 12583:1 12584:1 12586:1 12602:1 12630:1 12633:1 12667:1 12689:1 12706:1 12716:1 12723:1 12732:1 12739:1 12741:25 12766:1 12770:1 12778:1 12816:1 12822:1 12828:1 12859:1 12863:1 12872:2 12877:1 12897:1 12911:1 12950:2 12956:1 12958:2 12959:1 12961:2 12975:1 12981:1 12983:1 12984:1 12988:3 12995:1 12997:1 13000:1 13012:1 13030:2 13031:1 13069:1 13070:1 13082:1 13094:5 13095:4 13113:1 13121:1 13173:1 13202:1 13207:2 13221:1 13225:1 13246:1 13259:1 13270:1 13292:2 13295:2 13300:1 13328:4 13339:1 13352:1 13363:1 13371:1 13373:1 13378:1 13383:4 13390:1 13405:1 13410:1 13425:1 13430:1 13431:2 13435:1 13437:2 13442:1 13444:2 13445:1 13448:1 13453:3 13455:1 13456:1 13459:5 13462:1 13469:1 13482:3 13495:1 13525:2 13545:1 13554:1 13570:1 13622:1 13637:1 13641:1 13670:1 13675:1 13703:2 13719:1 13739:1 13743:1 13746:1 13752:2 13758:1 13765:1 13766:1 13767:1 13775:1 13812:1 13819:1 13826:1 13835:2 13837:4 13843:2 13846:1 13868:1 13876:2 13895:1 13906:1 13907:1 13924:2 13925:3 13928:9 13931:2 13965:2 13966:1 13970:1 13972:2 13977:2 13979:2 13994:1 14000:1 14003:2 14008:1 14031:1 14035:1 14039:2 14046:1 14052:2 14071:1 14077:1 14094:1 14097:1 14100:1 14101:1 14108:1 14114:1 14118:1 14122:1 14124:1 14125:1 14142:1 14154:1 14156:1 14178:1 14189:1 14200:1 14207:1 14210:1 14223:1 14240:2 14246:1 14262:1 14275:2 14307:1 14325:1 14332:1 14368:1 14371:1 14372:1 14393:1 14398:1 14403:1 14443:1 14446:1 14462:1 14465:1 14468:1 14491:1 14516:1 14518:2 14539:2 14544:2 14550:1 14553:1 14570:1 14574:1 14575:1 14577:1 14585:1 14596:2 14627:1 14637:1 14645:1 14665:1 14677:6 14696:1 14713:1 14714:1 14719:2 14721:1 14740:1 14744:2 14762:3 14764:1 14768:2 14774:1 14775:1 14781:1 14783:1 14803:1 14820:1 14825:1 14830:1 14833:1 14837:1 14844:3 14853:2 14856:1 14864:1 14877:1 14880:1 14885:1 14887:1 14889:1 14903:8 14929:2 14931:2 14963:1 14975:1 14976:1 14981:1 15024:1 15035:1 15067:1 15070:1 15080:1 15112:1 15116:1 15129:1 15139:1 15142:1 15147:2 15184:1 15191:1 15205:1 15215:1 15227:1 15251:1 15282:3 15283:1 15307:5 15312:2 15315:1 15328:1 15367:1 15370:1 15371:1 15389:1 15477:1 15480:1733 15482:2 15496:3 15503:1 15514:1 15532:1 15543:1 15564:1 15575:1 15577:1 15583:2 15587:1 15602:1 15633:1 15635:1 15646:4 15655:1 15658:3 15661:1 15662:2 15663:1 15672:1 15684:1 15708:1 15723:4 15725:2 15800:2 15834:3 15883:1 15887:2 15898:1 15929:2 15936:1 15944:1 15949:1 15990:1 16002:1 16009:1 16019:1 16037:1 16042:2 16046:1 16054:3 16074:4 16095:1 16102:2 16110:1 16117:1 16121:1 16129:1 16151:1 16152:3 16159:1 16170:1 16171:2 16176:1 16177:1 16206:8 16212:1 16235:1 16239:1 16268:1 16271:1 16307:1 16331:1 16332:1 16341:1 16362:1 16380:1 16387:2 16402:1 16408:1 16414:1 16416:1 16432:2 16434:2 16443:4 16449:1 16462:1 16479:1 16482:1 16485:1 16495:1 16522:2 16538:1 16541:1 16548:1 16573:1 16593:1 16596:1 16611:1 16618:2 16630:1 16650:1 16661:1 16669:4 16679:1 16681:1 16706:1 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:3 16763:2 16768:1 16782:1 16787:1 16795:2 16797:1 16811:1 16815:6 16823:3 16855:1 16856:1 16861:1 16908:1 16945:1 16947:1 16965:2 16981:1 17001:2 17014:2 17027:1 17043:1 17046:5 17050:4 17056:1 17058:2 17101:1 17109:1 17138:1 17144:1 17163:1 17168:1 17188:4 17197:1 17219:1 17221:1 17223:1 17234:1 17238:1 17255:1 17261:1 17275:1 17305:1 17311:2 17329:1 17352:1 17358:1 17362:2 17380:1 17400:1 17429:1 17437:3 17443:1 17452:1 17485:10 17491:2 17496:1 17501:1 17510:4 17532:1 17535:1 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17571:1 17601:1 17604:1 17610:2 17648:1 17649:1 17685:1 17706:3 17724:2 17735:1 17738:3 17747:2 17774:1 17806:1 17812:1 17813:1 17827:1 17835:3 17837:1 17838:1 17839:1 17851:1 17852:1 17884:1 17893:1 17916:1 17929:1 17943:1 17958:1 17965:2 17980:2 17993:2 17995:2 17996:2 18035:1 18037:1 18043:1 18053:1 18066:1 18087:1 18088:1 18091:1 18092:1 18093:1 18130:1 18131:1 18166:1 18176:1 18186:1 18196:3 18197:3 18199:3 18204:1 18210:1 18228:1 18231:2 18234:2 18244:1 18249:1 18261:1 18264:1 18285:1 18296:1 18339:1 18360:2 18366:2 18378:3 18392:1 18406:1 18421:1 18425:1 18434:2 18479:1 18491:1 18498:2 18505:1 18506:4 18509:1 18511:1 18537:1 18565:1 18567:2 18573:2 18575:2 18578:1 18616:1 18619:1 18631:1 18641:1 18643:1 18644:1 18658:1 18666:1 18676:1 18686:1 18693:2 18704:1 18727:2 18729:1 18732:2 18739:3 18742:1 18776:1 18784:1 18803:1 18807:1 18820:2 18843:1 18854:1 18856:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:2 18939:1 18941:2 18943:1 18946:1 18948:1 18949:1 18961:1 18965:1 18975:3 18976:3 18978:1 18985:1 18990:3 19029:2 19033:1 19036:1 19053:1 19070:1 19080:1 19096:3 19123:1 19134:4 19145:1 19156:2 19187:2 19193:1 19201:1 19212:1 19213:1 19218:1 19225:1 19229:1 19233:1 19237:1 19249:1 19278:1 19325:1 19336:1 19349:1 19365:3 19371:1 19376:1 19406:1 19425:3 19427:1 19431:1 19438:2 19443:1 19444:1 19446:1 19470:1 19474:1 19480:1 19486:1 19493:1 19494:1 19508:1 19523:1 19525:1 19532:1 19540:1 19559:4 19562:1 19573:1 19580:1 19587:1 19611:1 19615:3 19637:1 19638:2 19644:1 19666:1 19716:2 19718:1 19730:1 19746:1 19748:1 19789:1 19810:2 19823:1 19832:3 19870:1 19901:1 19902:8 19974:2 20000:1 20013:1 20022:1 20040:1 20051:1 20055:1 20063:1 20068:3 20076:1 20083:2 20084:7 20087:1 20102:1 20107:1 20109:1 20122:1 20126:2 20139:1 20152:1 20155:1 20196:1 20204:1 20252:1 20266:1 20268:1 20270:1 20273:1 20274:1 20275:1 20276:1 20281:1 20287:1 20305:1 20318:1 20327:3 20331:1 20332:2 20334:1 20337:2 20343:1 20344:1 20360:1 20366:4 20378:5 20379:1 20393:1 20411:1 20412:1 20432:1 20441:1 20447:1 20448:1 20460:1 20469:2 20473:1 20480:2 20485:1 20490:1 20493:1 20508:1 20567:1 20595:1 20599:2 20630:1 20651:2 20659:1 20663:1 20686:6 20722:1 20723:1 20734:1 20738:1 20742:6 20750:1 20751:1 20753:1 20755:1 20762:1 20769:1 20785:1 20786:1 20847:1 20878:1 20928:2 20930:5 20955:1 20958:1 20962:2 20964:1 20965:1 20970:2 20989:1 20993:1 21007:1 21099:1 21100:1 21111:1 21112:1 21134:1 21136:1 21137:1 21139:1 21154:1 21159:1 21189:1 21204:1 21205:1 21208:1 21209:1 21245:1 21267:1 21279:1 21319:1 21337:1 21361:4 21363:1 21364:5 21371:1 21413:1 21438:1 21441:2 21480:3 21486:1 21503:1 21512:1 21551:1 21556:1 21557:1 21559:1 21561:2 21576:1 21586:1 21594:1 21602:1 21612:3 21628:1 21630:1 21632:1 21637:3 21642:1 21663:1 21665:1 21671:1 21693:1 21695:1 21697:4 21703:1 21707:1 21716:1 21738:1 21760:4 21761:1 21773:2 21787:1 21831:3 21844:1 21857:1 21869:2 21887:1 21905:1 21914:1 21923:1 21926:1 21934:1 21952:1 21974:1 21977:2 21984:1 21996:1 21998:1 22001:1 22010:2 22013:3 22014:1 22027:2 22043:1 22048:2 22058:1 22065:1 22068:1 22080:3 22108:2 22114:1 22124:1 22138:1 22173:1 22186:1 22193:1 22195:1 22208:1 22242:1 22247:1 22379:1 22386:1 22390:1 22394:1 22419:1 22423:1 22425:1 22429:1 22462:1 22511:1 22515:1 22527:1 22528:2 22547:1 22548:2 22550:1 22553:1 22562:1 22585:2 22593:1 22601:1 22602:1 22611:4 22657:1 22666:1 22669:4 22672:1 22690:2 22693:1 22740:4 22749:1 22755:1 22760:2 22769:1 22779:1 22786:1 22801:2 22815:2 22817:1 22822:1 22823:1 22825:1 22831:1 22837:1 22846:1 22854:1 22874:1 22894:2 22897:1 22912:1 22916:3 22925:1 22939:1 22942:1 22957:1 23005:1 23006:2 23007:1 23022:4 23039:1 23050:2 23074:2 23088:1 23089:6 23109:2 23113:1 23138:1 23151:1 23206:1 23248:3 23284:1 23305:3 23314:1 23324:1 23325:1 23339:1 23341:1 23360:4 23385:1 23404:1 23405:1 23430:17 23431:1 23432:1 23446:1 23459:1 23466:10 23476:2 23481:1 23490:1 23518:2 23527:1 23541:1 23546:1 23551:3 23558:3 23586:7 23587:1 23610:1 23623:1 23645:2 23647:1 23655:1 23694:1 23719:1 23739:1 23740:1 23758:1 23784:1 23796:3 23797:3 23840:1 23847:1 23849:1 23852:1 23853:2 23858:1 23868:1 23951:1 23956:3 23961:1 23966:1 23967:1 23970:1 23971:10 23985:1 24000:1 24005:1 24006:2 24012:1 24028:1 24042:1 24049:1 24057:1 24101:1 24108:1 24117:1 24126:1 24139:1 24145:1 24153:1 24162:3 24170:2 24223:1 24225:1 24293:1 24301:1 24302:1 24306:1 24307:1 24315:1 24317:1 24320:1 24324:1 24341:1 24347:2 24353:1 24362:1 24370:1 24379:1 24384:1 24392:1 24393:1 24401:2 24409:1 24410:1 24411:1 24418:1 24421:1 24438:1 24440:1 24449:1 24455:1 24463:1 24469:3 24473:2 24476:2 24479:1 24480:1 24483:2 24487:1 24491:1 24504:1 24523:1 24525:3 24535:1 24536:1 24552:1 24563:1
20 13:1 25:1 29:1 30:1 34:1 37:1 53:1 61:1 72:1 76:1 85:1 88:1 96:1 105:1 112:1 150:1 162:1 172:1 175:1 186:1 216:2 218:2 240:3 241:1 276:1 296:2 298:1 314:1 339:1 341:2 407:2 441:1 489:1 492:1 509:1 510:3 527:2 541:2 565:2 566:1 568:3 640:1 713:1 720:1 752:2 754:1 762:2 766:1 778:1 785:3 788:1 795:1 805:1 814:3 828:1 831:3 833:1 834:5 838:3 846:1 857:1 862:1 869:4 888:3 889:3 892:2 899:1 906:1 912:1 937:1 946:1 948:2 952:1 960:1 967:1 989:1 1005:1 1009:3 1015:4 1043:1 1044:1 1065:1 1074:1 1078:1 1080:1 1094:1 1095:1 1108:1 1110:1 1112:1 1114:1 1131:1 1142:1 1158:1 1208:1 1212:1 1220:2 1230:2 1236:1 1241:1 1257:1 1258:1 1259:3 1274:3 1293:1 1296:1 1297:1 1301:1 1311:3 1328:13 1330:2 1332:7 1340:1 1343:1 1345:1 1352:1 1353:2 1360:1 1372:1 1376:1 1381:9 1395:1 1396:1 1418:1 1420:1 1429:1 1435:1 1436:1 1460:2 1476:1 1484:1 1506:1 1507:5 1510:2 1517:2 1526:1 1546:1 1552:2 1568:1 1591:1 1612:1 1617:2 1619:2 1629:1 1639:2 1641:1 1644:1 1661:1 1663:1 1666:1 1703:1 1719:1 1731:4 1745:1 1763:1 1766:3 1774:1 1775:1 1782:1 1815:1 1826:5 1828:1 1838:1 1846:1 1853:2 1856:1 1875:2 1877:8 1879:3 1882:1 1883:1 1889:1 1891:2 1892:3 1894:1 1898:1 1908:1 1909:1 1912:2 1930:1 1941:1 1942:1 1945:4 1948:2 1949:1 1952:1 1954:1 1959:1 1960:2 1961:1 1963:3 1965:2 1968:2 1973:1 1976:2 1978:1 1981:2 1992:1 1999:1 2000:1 2034:1 2038:1 2045:1 2055:1 2074:1 2077:1 2102:1 2110:1 2115:1 2140:1 2157:1 2164:1 2167:1 2169:1 2173:1 2188:1 2218:1 2222:1 2241:1 2253:1 2254:1 2272:1 2282:1 2287:1 2308:1 2321:1 2325:2 2328:1 2329:1 2353:1 2365:1 2374:1 2383:1 2390:1 2393:1 2405:1 2409:1 2434:1 2451:3 2461:2 2462:9 2464:2 2478:1 2480:2 2481:2 2491:1 2500:1 2507:8 2535:1 2589:1 2597:2 2636:1 2645:3 2678:1 2685:1 2689:1 2700:1 2718:1 2745:1 2753:1 2764:1 2770:1 2779:3 2802:3 2807:1 2826:3 2831:1 2842:1 2843:1 2849:1 2853:1 2876:1 2898:1 2941:1 2948:1 2993:2 2999:1 3002:1 3049:1 3059:1 3063:1 3068:1 3090:1 3093:1 3095:1 3118:1 3129:1 3131:1 3135:1 3136:1 3139:1 3147:2 3173:2 3183:2 3184:2 3221:4 3222:1 3234:1 3237:6 3288:1 3301:1 3306:1 3312:5 3326:1 3328:1 3355:1 3358:1 3367:1 3369:2 3377:1 3391:1 3399:2 3407:2 3408:1 3416:1 3428:1 3442:1 3467:1 3481:1 3495:1 3514:1 3519:1 3537:1 3572:1 3596:1 3598:1 3622:1 3628:1 3653:1 3655:1 3660:1 3661:1 3666:1 3678:1 3681:1 3710:2 3729:1 3737:1 3770:1 3773:1 3777:1 3801:1 3803:2 3831:1 3832:1 3837:1 3845:1 3856:1 3868:1 3878:1 3889:1 3902:2 3904:1 3911:1 3928:4 3938:1 3939:1 3992:1 4003:1 4019:1 4046:1 4047:1 4073:1 4091:1 4107:11 4116:1 4143:1 4159:1 4160:1 4192:3 4197:1 4198:6 4211:3 4212:2 4216:1 4218:1 4223:1 4228:1 4229:1 4230:2 4231:3 4234:3 4237:1 4238:1 4248:1 4275:1 4319:1 4323:1 4351:1 4364:4 4368:1 4384:1 4391:1 4394:1 4403:1 4409:3 4412:1 4420:1 4436:1 4450:2 4464:1 4470:1 4498:2 4506:1 4529:1 4539:1 4546:3 4561:1 4621:2 4628:1 4633:2 4644:1 4654:1 4658:1 4662:2 4667:1 4673:1 4675:1 4681:1 4689:3 4703:3 4729:1 4741:1 4757:2 4768:1 4771:1 4818:1 4821:1 4823:1 4826:1 4831:1 4836:2 4854:1 4861:1 4872:1 4876:2 4926:4 4927:2 4950:2 4953:2 4958:1 4959:2 4986:1 4994:1 5016:1 5025:1 5049:2 5054:1 5075:1 5090:2 5096:1 5100:2 5103:1 5127:1 5130:1 5142:1 5146:2 5187:3 5189:1 5192:3 5205:1 5215:1 5217:1 5225:1 5247:3 5248:1 5260:1 5263:1 5264:1 5276:1 5282:2 5289:1 5308:2 5310:2 5314:1 5322:3 5324:1 5325:1 5332:2 5337:1 5338:1 5340:3 5342:1 5347:2 5349:3 5350:2 5352:4 5396:1 5398:1 5409:1 5426:4 5437:4 5451:1 5488:1 5489:1 5520:1 5535:1 5592:2 5604:1 5609:1 5615:1 5616:2 5625:1 5629:2 5655:1 5656:1 5663:1 5665:1 5668:1 5672:2 5674:4 5686:1 5688:1 5689:1 5693:1 5702:1 5703:1 5726:2 5774:1 5783:3 5807:3 5808:1 5818:1 5819:1 5823:1 5837:1 5874:1 5878:2 5890:1 5914:1 5917:1 5930:1 5947:6 5948:1 5959:1 5970:1 5998:2 6021:1 6035:1 6039:1 6040:1 6052:2 6071:1 6084:1 6096:1 6116:1 6130:1 6147:1 6175:3 6183:3 6192:1 6194:1 6201:1 6209:1 6223:1 6231:1 6232:1 6237:2 6241:1 6248:1 6255:1 6260:1 6261:1 6269:1 6276:1 6285:2 6286:1 6289:1 6305:1 6324:1 6332:1 6354:1 6359:3 6365:8 6375:1 6382:1 6384:1 6386:4 6387:1 6429:22 6436:1 6449:4 6451:9 6460:1 6486:1 6497:2 6501:1 6508:1 6551:1 6619:1 6655:1 6669:3 6677:3 6680:1 6700:1 6771:1 6781:1 6785:1 6789:1 6806:1 6810:9 6816:2 6818:1 6824:1 6841:1 6854:1 6859:21 6882:1 6906:1 6908:1 6918:1 6926:1 6981:1 7017:1 7020:1 7030:1 7038:2 7054:1 7056:1 7068:3 7077:1 7084:1 7110:1 7121:1 7125:1 7156:1 7157:2 7164:1 7166:3 7169:1 7170:4 7172:1 7173:1 7174:1 7177:2 7182:3 7192:1 7193:1 7194:2 7222:1 7257:2 7262:2 7263:1 7280:1 7303:1 7305:1 7325:1 7364:1 7384:1 7400:1 7409:2 7423:1 7425:1 7432:3 7434:1 7443:1 7451:1 7457:1 7459:1 7461:3 7488:1 7505:1 7519:1 7521:1 7526:1 7535:1 7539:1 7571:1 7573:2 7581:6 7590:4 7594:1 7604:3 7615:1 7649:1 7656:1 7665:1 7686:1 7712:1 7731:1 7777:1 7787:2 7790:1 7798:1 7803:1 7804:1 7805:1 7810:1 7821:1 7868:1 7878:1 7896:1 7912:2 7927:1 7930:2 7932:1 7943:1 7944:1 7950:1 7964:2 7975:1 7988:2 8036:1 8048:1 8049:3 8061:1 8064:3 8067:1 8070:6 8071:1 8080:3 8099:1 8118:1 8121:1 8138:2 8139:1 8143:2 8162:9 8166:1 8174:1 8177:1 8189:1 8195:1 8196:1 8200:1 8205:1 8212:1 8215:1 8222:2 8226:1 8285:2 8293:1 8296:3 8304:2 8317:1 8348:2 8352:1 8363:2 8379:1 8382:1 8387:2 8392:1 8437:2 8443:1 8444:1 8480:1 8532:2 8566:1 8574:1 8575:1 8581:2 8617:2 8679:4 8682:1 8684:1 8700:1 8736:2 8746:1 8753:1 8760:1 8769:1 8778:3 8785:1 8789:2 8801:2 8802:2 8807:1 8809:2 8814:3 8815:1 8817:1 8818:1 8822:1 8824:1 8828:1 8829:1 8832:1 8833:2 8840:1 8841:1 8856:1 8857:1 8867:1 8881:1 8891:3 8897:1 8903:1 8907:1 8910:1 8914:4 8916:6 8949:1 8960:1 8975:1 8977:1 8981:1 8989:4 9001:3 9070:1 9080:1 9090:1 9101:4 9102:2 9106:1 9108:1 9145:2 9167:1 9173:2 9192:1 9193:1 9200:1 9202:1 9205:1 9215:1 9222:1 9225:1 9252:6 9260:2 9282:1 9289:1 9313:1 9317:1 9321:1 9338:1 9346:1 9359:3 9363:2 9388:1 9389:1 9411:1 9416:1 9424:1 9433:1 9442:1 9459:1 9472:1 9486:2 9488:6 9536:2 9542:1 9543:2 9545:1 9547:1 9561:1 9563:2 9586:1 9587:1 9610:1 9621:1 9624:2 9639:1 9653:5 9656:1 9659:1 9668:1 9682:1 9687:1 9695:1 9696:1 9698:1 9703:1 9707:1 9710:1 9716:1 9723:2 9727:1 9730:1 9743:1 9762:1 9763:5 9772:2 9778:8 9810:1 9815:1 9822:1 9823:11 9852:1 9880:1 9881:1 9899:1 9904:1 9911:1 9918:2 9923:4 9949:1 9974:3 9989:1 10001:1 10018:1 10022:2 10037:2 10046:1 10053:2 10054:2 10061:1 10070:1 10074:3 10079:1 10089:1 10095:1 10105:1 10118:1 10130:1 10146:1 10151:2 10169:1 10179:1 10225:1 10233:1 10265:1 10281:3 10337:1 10363:1 10364:2 10391:1 10413:1 10416:1 10430:1 10480:8 10483:1 10487:2 10502:1 10505:1 10513:1 10531:1 10550:11 10556:1 10571:1 10576:2 10598:2 10621:2 10637:1 10652:1 10687:1 10695:1 10724:1 10725:1 10733:1 10739:4 10754:1 10787:1 10818:2 10836:4 10844:1 10846:1 10847:3 10851:2 10861:2 10870:1 10871:8 10872:1 10874:1 10897:1 10901:1 10923:1 10942:2 10943:1 10962:1 10969:1 10970:8 10974:1 10982:1 10985:14 11001:1 11016:1 11046:3 11065:1 11087:1 11101:2 11118:1 11123:1 11156:1 11159:2 11163:1 11168:1 11187:1 11220:1 11273:1 11275:1 11277:1 11280:3 11281:1 11287:1 11289:1 11297:1 11301:2 11311:1 11322:1 11329:1 11340:1 11342:1 11368:10 11375:1 11376:2 11406:1 11407:2 11408:1 11415:1 11419:1 11432:2 11439:1 11447:1 11449:1 11451:2 11459:1 11509:3 11512:2 11531:2 11564:1 11607:1 11612:1 11613:1 11614:2 11638:1 11657:1 11697:2 11699:1 11704:1 11712:1 11717:1 11718:1 11744:1 11747:1 11777:1 11788:1 11806:1 11808:1 11813:2 11816:1 11818:1 11825:1 11833:1 11855:1 11856:1 11861:2 11881:1 11900:1 11902:4 11910:1 11927:4 11942:1 11958:1 11979:1 11985:1 11990:3 12006:2 12016:2 12020:1 12035:1 12036:1 12045:1 12050:2 12054:1 12060:1 12069:1 12089:1 12091:1 12099:1 12100:1 12105:1 12114:1 12123:1 12141:1 12144:1 12157:1 12173:1 12175:1 12176:1 12218:1 12229:1 12263:3 12269:1 12276:2 12287:1 12303:3 12341:1 12366:1 12372:1 12383:4 12387:1 12389:1 12408:1 12432:1 12437:2 12472:1 12473:1 12525:1 12550:3 12559:1 12582:3 12583:1 12584:1 12586:1 12602:1 12630:1 12633:1 12667:1 12689:1 12706:1 12716:1 12723:1 12732:1 12739:1 12741:26 12766:1 12770:1 12778:1 12816:1 12822:1 12828:1 12859:1 12863:1 12872:2 12877:1 12897:1 12911:1 12950:3 12956:1 12958:2 12959:1 12961:2 12969:1 12975:1 12981:1 12983:1 12984:1 12988:3 12989:1 12995:1 12997:1 13000:1 13012:1 13030:2 13031:1 13069:1 13070:1 13082:1 13094:5 13095:5 13113:1 13121:1 13140:1 13173:1 13202:1 13207:2 13221:1 13225:1 13246:1 13259:1 13270:1 13292:2 13295:2 13300:1 13328:4 13339:1 13352:1 13363:1 13371:1 13373:1 13378:1 13383:4 13390:1 13405:1 13410:1 13418:1 13425:1 13430:1 13431:2 13434:1 13435:1 13437:2 13442:1 13444:2 13445:1 13448:1 13453:3 13455:1 13456:1 13459:5 13462:1 13469:1 13482:3 13495:1 13525:2 13545:1 13554:1 13570:1 13622:1 13637:1 13641:1 13670:1 13675:1 13703:2 13719:1 13739:1 13743:1 13746:1 13752:2 13758:1 13765:1 13766:1 13767:1 13775:1 13812:1 13819:1 13826:1 13835:2 13837:4 13843:2 13846:1 13867:1 13868:1 13876:2 13895:1 13906:2 13907:1 13924:2 13925:3 13928:9 13931:2 13965:2 13966:1 13970:1 13972:2 13977:2 13979:2 13994:1 14000:1 14003:2 14008:1 14031:1 14035:1 14039:2 14046:1 14052:2 14071:1 14074:1 14077:1 14094:1 14097:1 14100:1 14101:1 14108:1 14114:1 14118:1 14122:1 14124:1 14125:1 14142:1 14154:1 14156:1 14178:1 14189:1 14200:1 14207:1 14210:1 14223:1 14240:2 14246:1 14262:1 14275:2 14307:1 14325:1 14332:1 14368:1 14371:1 14372:1 14393:1 14398:1 14403:1 14443:1 14446:1 14462:1 14465:1 14468:1 14491:1 14516:1 14518:2 14539:2 14544:2 14550:1 14553:1 14570:1 14574:1 14575:1 14577:1 14585:1 14593:1 14596:2 14627:1 14637:1 14645:1 14665:1 14677:6 14696:1 14713:1 14714:1 14719:2 14721:1 14740:1 14744:2 14762:3 14764:1 14768:2 14774:1 14775:1 14781:1 14783:1 14803:1 14820:1 14825:1 14830:1 14833:1 14837:1 14844:3 14853:2 14856:1 14864:1 14877:1 14880:1 14885:1 14887:1 14889:1 14903:8 14929:2 14931:2 14963:1 14975:1 14976:1 14981:1 15024:1 15035:1 15056:1 15067:1 15070:1 15080:1 15112:1 15116:1 15129:1 15139:1 15142:1 15147:2 15179:1 15184:1 15191:1 15205:1 15215:1 15227:1 15251:1 15282:3 15283:1 15307:5 15312:2 15315:1 15328:1 15367:1 15370:1 15371:1 15389:1 15477:1 15480:1804 15482:2 15496:3 15503:1 15514:1 15532:1 15543:1 15564:1 15575:1 15577:1 15583:2 15587:1 15602:1 15633:1 15635:1 15646:4 15655:1 15658:3 15661:1 15662:2 15663:1 15672:1 15684:1 15708:1 15723:4 15725:2 15800:2 15834:3 15883:1 15887:2 15898:1 15929:2 15936:1 15944:1 15949:1 15990:1 16002:1 16009:1 16019:1 16037:1 16042:2 16046:1 16054:3 16074:4 16095:1 16102:2 16110:1 16117:1 16121:1 16129:1 16151:1 16152:4 16159:1 16170:1 16171:2 16176:1 16177:1 16206:8 16212:1 16235:1 16239:1 16268:1 16271:1 16307:1 16331:1 16332:1 16341:1 16362:1 16380:1 16387:2 16402:1 16408:1 16414:1 16416:1 16432:2 16434:2 16443:4 16449:1 16462:1 16479:1 16482:1 16485:1 16495:1 16500:1 16522:2 16538:1 16541:1 16548:1 16573:1 16593:1 16596:1 16611:1 16618:2 16630:1 16650:1 16661:1 16669:5 16679:1 16681:1 16706:1 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:4 16763:2 16768:1 16782:1 16787:1 16795:2 16797:1 16811:1 16815:6 16823:3 16855:1 16856:1 16861:1 16908:1 16945:1 16947:1 16965:2 16981:1 17001:3 17014:2 17017:1 17027:1 17043:1 17046:5 17050:4 17056:1 17058:2 17101:1 17109:1 17130:1 17138:1 17144:1 17163:1 17168:1 17188:4 17197:1 17219:1 17221:1 17223:1 17234:1 17238:1 17255:1 17261:1 17275:1 17305:1 17311:2 17329:1 17352:1 17358:1 17362:2 17380:1 17400:1 17429:1 17437:3 17443:1 17452:1 17485:10 17491:2 17496:2 17501:1 17510:4 17532:1 17535:1 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17571:1 17601:1 17604:1 17610:2 17648:1 17649:1 17685:1 17706:3 17724:2 17735:1 17738:3 17745:1 17747:2 17774:1 17806:1 17812:1 17813:1 17827:1 17835:3 17837:1 17838:1 17839:1 17851:1 17852:1 17867:1 17879:1 17884:1 17893:1 17916:1 17921:1 17929:1 17943:1 17958:1 17965:2 17980:2 17993:2 17995:2 17996:2 18035:1 18037:1 18043:1 18053:2 18066:1 18087:1 18088:1 18091:1 18092:1 18093:1 18130:1 18131:1 18166:1 18176:1 18186:1 18196:3 18197:3 18199:3 18204:1 18207:1 18210:1 18228:1 18231:2 18234:2 18244:1 18249:1 18261:1 18264:1 18285:1 18296:1 18339:1 18347:1 18360:2 18366:2 18378:3 18392:1 18406:1 18421:1 18425:1 18434:2 18474:1 18479:1 18491:1 18498:2 18505:1 18506:4 18509:1 18511:1 18537:1 18542:1 18565:1 18567:2 18573:2 18575:2 18578:1 18616:1 18619:1 18631:1 18641:1 18643:1 18644:1 18658:1 18666:1 18676:1 18686:1 18693:2 18704:1 18727:2 18729:1 18732:2 18739:3 18742:1 18776:1 18784:1 18803:1 18807:1 18820:2 18843:1 18854:1 18856:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:2 18939:1 18941:2 18943:1 18946:1 18948:1 18949:1 18961:1 18965:1 18975:3 18976:3 18978:1 18985:1 18990:3 19029:2 19033:1 19036:1 19053:1 19070:1 19080:1 19096:3 19123:1 19134:4 19145:1 19156:2 19187:2 19193:1 19201:1 19212:1 19213:1 19218:1 19225:1 19229:1 19233:1 19237:1 19249:1 19278:1 19325:1 19336:1 19349:1 19365:3 19371:1 19376:1 19406:1 19425:3 19427:1 19431:1 19438:2 19443:1 19444:1 19446:1 19470:1 19474:1 19480:1 19486:1 19493:1 19494:1 19507:1 19508:1 19523:1 19525:1 19532:1 19540:1 19559:4 19562:1 19573:1 19580:1 19587:1 19611:1 19615:3 19637:1 19638:2 19644:1 19666:1 19716:2 19718:1 19730:1 19746:1 19748:1 19789:1 19810:2 19823:1 19832:3 19870:1 19901:1 19902:8 19974:2 20000:1 20007:1 20013:1 20022:1 20040:1 20051:1 20055:1 20063:1 20068:3 20076:1 20083:2 20084:7 20087:1 20102:1 20107:1 20109:1 20122:1 20126:2 20139:1 20152:1 20155:1 20173:1 20196:1 20204:1 20252:1 20266:1 20268:1 20270:1 20273:1 20274:1 20275:1 20276:1 20281:1 20287:1 20305:1 20318:1 20327:3 20331:1 20332:2 20334:1 20337:2 20343:1 20344:1 20360:1 20366:4 20378:5 20379:1 20393:1 20411:1 20412:1 20432:1 20441:1 20447:1 20448:1 20460:1 20469:2 20473:1 20480:2 20485:1 20490:1 20493:1 20508:1 20563:1 20567:1 20595:1 20599:2 20630:1 20651:2 20659:1 20663:1 20686:6 20722:1 20723:1 20734:1 20738:1 20742:6 20750:1 20751:1 20753:1 20755:1 20762:1 20769:1 20785:1 20786:1 20847:1 20878:1 20928:2 20930:5 20955:1 20958:1 20962:2 20964:1 20965:1 20970:2 20989:1 20993:1 21007:1 21099:1 21100:1 21111:1 21112:1 21134:1 21136:1 21137:1 21139:1 21154:1 21159:1 21189:1 21190:1 21204:1 21205:1 21208:1 21209:1 21245:1 21267:1 21279:1 21319:1 21337:1 21361:4 21363:1 21364:5 21371:1 21413:1 21438:1 21441:2 21480:3 21486:1 21503:1 21512:1 21522:1 21551:1 21556:1 21557:1 21559:1 21561:2 21576:1 21586:1 21594:1 21602:1 21612:3 21628:1 21630:1 21632:1 21637:3 21642:1 21663:1 21665:1 21671:1 21693:1 21695:1 21697:4 21703:1 21707:1 21716:1 21738:1 21748:1 21760:4 21761:1 21773:2 21787:1 21831:3 21844:1 21857:1 21869:2 21887:1 21905:1 21914:1 21923:1 21926:1 21934:1 21952:1 21974:1 21977:2 21984:1 21996:1 21998:1 22001:1 22010:2 22013:3 22014:1 22027:2 22043:1 22048:2 22058:1 22062:1 22065:1 22068:1 22080:3 22108:2 22114:2 22124:1 22138:1 22173:1 22186:1 22193:1 22195:1 22208:1 22242:1 22247:1 22322:1 22379:1 22386:1 22390:1 22394:1 22419:1 22423:1 22425:1 22429:1 22462:1 22511:1 22515:1 22527:1 22528:2 22547:1 22548:2 22550:1 22553:1 22562:1 22572:1 22585:3 22593:1 22601:1 22602:1 22611:4 22657:1 22666:1 22669:4 22672:1 22690:2 22693:1 22740:4 22749:2 22755:1 22759:1 22760:2 22769:1 22779:1 22786:1 22801:2 22815:2 22817:1 22822:1 22823:1 22825:1 22831:1 22837:1 22846:1 22854:1 22874:1 22894:2 22897:1 22912:1 22916:3 22925:1 22939:1 22942:1 22957:1 22991:1 23005:1 23006:2 23007:1 23022:4 23039:1 23050:2 23074:2 23088:1 23089:6 23109:2 23113:1 23138:1 23151:1 23206:1 23248:3 23284:1 23305:3 23314:1 23324:1 23325:1 23339:1 23341:1 23360:4 23363:1 23385:1 23404:1 23405:1 23430:17 23431:1 23432:1 23446:1 23459:1 23466:10 23476:2 23481:1 23490:1 23518:2 23527:1 23541:1 23546:1 23551:3 23558:3 23586:7 23587:1 23610:1 23623:1 23645:2 23647:1 23655:1 23694:1 23698:1 23719:1 23739:1 23740:1 23758:1 23784:1 23796:3 23797:3 23840:1 23847:1 23849:1 23852:1 23853:2 23858:1 23868:1 23951:1 23956:3 23961:1 23966:1 23967:1 23970:1 23971:10 23985:1 23990:1 24000:1 24005:1 24006:2 24012:1 24028:1 24042:1 24049:1 24057:1 24101:1 24108:1 24117:1 24126:1 24139:1 24145:1 24153:1 24162:3 24170:2 24196:1 24223:1 24225:1 24253:1 24293:1 24301:1 24302:1 24306:1 24307:1 24315:1 24317:1 24320:1 24324:1 24341:1 24347:2 24353:1 24362:1 24370:1 24376:1 24379:1 24384:1 24392:1 24393:1 24401:2 24409:1 24410:1 24411:1 24418:1 24421:1 24438:1 24440:1 24449:1 24455:1 24463:1 24466:1 24469:3 24473:2 24476:2 24479:1 24480:1 24483:2 24487:1 24491:1 24504:1 24523:1 24525:3 24535:1 24536:1 24552:1 24563:1
20 13:1 25:1 29:1 30:1 34:1 37:1 53:1 61:1 72:1 76:1 85:1 88:1 96:1 105:1 112:1 150:1 162:1 172:1 175:1 186:1 216:3 218:2 240:3 241:1 276:1 296:2 298:1 314:1 339:1 341:2 407:2 441:1 489:1 492:1 509:1 510:3 527:2 541:2 565:2 566:1 568:3 640:1 713:1 720:1 752:2 754:1 762:2 766:1 778:1 784:1 785:3 788:1 795:1 805:1 814:3 828:1 831:3 833:1 834:5 838:4 846:1 857:1 862:1 869:4 888:3 889:3 892:2 899:1 906:1 912:1 937:1 946:1 948:2 952:1 960:1 967:1 989:1 1005:1 1009:3 1015:4 1043:1 1044:1 1047:1 1065:1 1074:1 1078:1 1080:1 1094:1 1095:1 1108:1 1110:1 1112:1 1114:1 1131:1 1142:1 1158:1 1172:1 1208:1 1212:1 1220:2 1230:2 1236:1 1241:1 1257:1 1258:1 1259:3 1274:3 1293:1 1296:1 1297:1 1301:1 1311:3 1328:13 1330:2 1332:7 1340:2 1343:1 1345:1 1352:1 1353:2 1360:1 1372:1 1376:1 1381:9 1395:1 1396:1 1418:1 1420:1 1429:1 1435:1 1436:1 1460:2 1476:1 1484:1 1506:1 1507:5 1510:2 1517:2 1526:1 1546:1 1552:2 1568:1 1591:1 1612:2 1617:3 1619:2 1629:1 1639:2 1641:1 1644:1 1661:1 1663:1 1666:1 1670:1 1703:1 1719:1 1731:4 1745:1 1763:1 1766:3 1774:1 1775:1 1782:1 1815:1 1826:5 1828:1 1838:1 1846:1 1853:2 1856:1 1875:2 1877:8 1879:3 1882:1 1883:1 1889:1 1891:2 1892:3 1894:2 1895:1 1898:1 1908:1 1909:2 1912:2 1930:1 1941:1 1942:1 1945:4 1948:2 1949:1 1952:1 1954:2 1959:1 1960:2 1961:1 1963:3 1965:2 1968:2 1973:1 1976:2 1978:1 1981:2 1992:1 1994:1 1999:1 2000:1 2034:1 2038:1 2045:1 2055:1 2074:1 2076:1 2077:1 2102:1 2110:1 2115:1 2140:1 2157:1 2164:1 2167:1 2169:1 2173:1 2188:1 2218:1 2222:1 2241:1 2253:1 2254:1 2272:1 2273:1 2282:1 2287:1 2308:1 2321:1 2325:2 2328:1 2329:1 2353:1 2365:1 2374:1 2383:1 2390:1 2393:1 2405:1 2409:2 2434:1 2451:3 2461:2 2462:9 2464:2 2478:1 2480:2 2481:3 2491:1 2500:1 2507:9 2535:1 2589:1 2597:2 2636:1 2645:3 2678:1 2685:1 2689:1 2700:1 2718:1 2745:1 2753:1 2764:1 2770:1 2779:3 2802:3 2807:1 2826:3 2831:1 2842:1 2843:1 2849:1 2853:1 2876:1 2898:1 2941:1 2948:1 2993:2 2999:1 3002:1 3049:2 3059:1 3063:1 3068:1 3090:1 3093:1 3095:1 3118:1 3129:1 3131:1 3135:1 3136:1 3139:1 3147:2 3173:2 3183:2 3184:2 3221:4 3222:1 3234:1 3237:6 3288:1 3301:1 3306:1 3312:6 3326:2 3328:1 3355:1 3358:1 3367:1 3369:2 3377:1 3391:1 3399:2 3407:2 3408:1 3416:1 3428:1 3442:1 3450:1 3467:1 3481:1 3495:1 3514:1 3519:1 3537:1 3572:1 3596:1 3598:1 3622:1 3628:1 3653:1 3655:1 3660:1 3661:1 3666:1 3678:1 3681:1 3710:2 3729:1 3737:1 3770:1 3773:1 3777:1 3801:1 3803:2 3831:1 3832:1 3837:1 3840:1 3845:1 3856:1 3868:1 3878:1 3889:1 3902:2 3904:1 3911:1 3928:4 3938:2 3939:1 3992:1 4003:1 4019:1 4046:1 4047:1 4073:1 4091:1 4107:12 4116:1 4143:1 4159:1 4160:1 4192:3 4197:1 4198:6 4211:3 4212:2 4216:1 4218:1 4223:1 4228:1 4229:1 4230:2 4231:3 4234:3 4237:1 4238:1 4248:1 4275:1 4319:1 4323:1 4351:1 4364:4 4368:1 4384:1 4391:1 4394:1 4403:1 4409:3 4412:1 4420:1 4436:1 4450:2 4464:1 4470:1 4498:3 4506:1 4529:1 4539:1 4546:4 4561:1 4621:2 4628:1 4633:2 4644:1 4650:1 4654:1 4658:1 4662:2 4667:1 4673:1 4675:1 4681:1 4689:3 4703:3 4729:1 4741:1 4757:2 4768:1 4771:1 4787:1 4794:1 4818:1 4821:1 4823:1 4826:1 4831:1 4836:2 4854:1 4861:1 4872:1 4876:2 4926:4 4927:2 4950:2 4953:2 4958:1 4959:2 4986:1 4994:1 5016:1 5025:1 5049:2 5054:1 5075:1 5090:2 5096:1 5100:2 5103:1 5127:1 5130:1 5142:1 5146:2 5187:3 5189:1 5192:3 5205:1 5215:1 5217:1 5225:1 5247:3 5248:1 5260:1 5263:1 5264:1 5276:1 5282:2 5289:1 5308:2 5310:2 5314:1 5322:3 5324:1 5325:1 5332:2 5337:1 5338:1 5340:3 5342:1 5347:2 5349:4 5350:2 5352:4 5396:1 5398:1 5409:1 5426:4 5437:4 5451:2 5488:1 5489:1 5520:1 5535:1 5592:2 5604:1 5609:1 5615:1 5616:2 5625:1 5629:2 5655:1 5656:1 5663:1 5665:1 5668:1 5672:2 5674:4 5686:1 5688:1 5689:1 5693:1 5702:1 5703:1 5726:2 5774:1 5783:3 5807:3 5808:1 5818:1 5819:1 5823:1 5837:1 5874:1 5878:2 5890:1 5914:1 5917:1 5930:1 5947:6 5948:1 5959:1 5970:1 5998:2 6021:1 6035:1 6039:1 6040:1 6052:2 6071:1 6084:1 6096:1 6116:1 6124:1 6130:1 6147:1 6175:3 6183:3 6192:1 6194:1 6201:1 6209:1 6223:1 6231:1 6232:1 6237:2 6241:1 6248:1 6255:1 6260:1 6261:1 6269:1 6276:1 6285:2 6286:1 6289:1 6305:1 6324:1 6332:1 6354:1 6359:3 6365:8 6375:1 6382:1 6384:1 6386:4 6387:1 6410:1 6416:1 6429:24 6436:1 6449:4 6451:11 6460:1 6486:1 6497:2 6501:1 6508:1 6551:1 6599:1 6619:1 6655:1 6669:3 6677:3 6680:1 6700:1 6771:1 6781:1 6785:1 6789:1 6806:1 6810:9 6816:2 6818:1 6824:1 6841:1 6854:1 6859:22 6882:1 6906:1 6908:1 6918:1 6926:1 6981:1 7017:1 7020:1 7030:1 7038:2 7054:1 7056:1 7068:3 7077:1 7084:1 7110:1 7121:1 7125:1 7156:1 7157:2 7164:1 7166:3 7169:1 7170:4 7172:1 7173:1 7174:1 7177:2 7182:3 7192:1 7193:1 7194:2 7222:1 7257:2 7262:2 7263:1 7280:1 7303:1 7305:1 7325:1 7364:1 7384:1 7400:1 7409:2 7423:1 7425:1 7432:3 7434:1 7437:1 7443:1 7451:1 7457:1 7459:1 7461:3 7488:1 7505:1 7519:1 7521:1 7526:1 7535:1 7539:1 7571:1 7573:2 7581:6 7590:4 7594:1 7604:3 7615:1 7649:1 7656:1 7665:1 7678:1 7686:1 7712:1 7731:1 7777:1 7787:2 7790:1 7798:1 7803:1 7804:1 7805:1 7810:1 7821:1 7868:1 7878:1 7896:1 7912:2 7927:1 7930:2 7932:1 7943:1 7944:1 7950:1 7964:4 7975:1 7980:1 7988:3 8036:1 8048:1 8049:3 8061:1 8064:3 8067:1 8070:6 8071:1 8080:3 8099:1 8118:1 8121:1 8138:2 8139:1 8143:2 8162:9 8166:1 8174:1 8177:1 8189:1 8195:1 8196:1 8200:1 8205:1 8212:1 8215:1 8222:2 8226:1 8285:2 8293:1 8296:3 8297:1 8304:2 8317:1 8348:2 8352:2 8363:2 8379:1 8382:1 8387:2 8392:1 8437:2 8443:1 8444:1 8480:1 8532:2 8536:1 8566:1 8574:1 8575:1 8581:2 8617:2 8679:4 8682:2 8684:1 8700:1 8736:2 8746:1 8753:1 8760:1 8769:1 8778:3 8785:1 8789:2 8801:2 8802:2 8807:1 8809:2 8814:3 8815:1 8817:1 8818:1 8822:1 8824:1 8828:1 8829:1 8832:1 8833:2 8840:1 8841:1 8856:1 8857:1 8867:1 8881:1 8891:3 8897:1 8903:1 8905:1 8907:1 8910:1 8914:4 8916:6 8949:1 8960:2 8975:1 8977:1 8981:1 8989:4 9001:3 9070:1 9080:1 9090:1 9101:4 9102:2 9106:1 9108:1 9145:2 9162:1 9167:1 9173:2 9192:1 9193:1 9200:1 9202:1 9205:1 9215:1 9222:1 9225:1 9252:6 9260:2 9282:1 9289:1 9313:1 9317:1 9321:1 9338:1 9346:1 9359:3 9363:2 9388:1 9389:1 9399:1 9411:1 9416:1 9424:1 9433:1 9442:1 9459:1 9472:1 9486:2 9488:6 9525:1 9536:2 9542:1 9543:2 9545:1 9547:2 9561:1 9563:3 9586:1 9587:1 9610:1 9621:1 9624:2 9639:1 9653:5 9656:1 9659:1 9668:1 9682:2 9687:1 9695:1 9696:1 9698:1 9703:1 9707:1 9710:1 9716:1 9723:2 9727:1 9730:1 9743:1 9760:1 9762:1 9763:5 9772:2 9778:8 9810:1 9815:1 9822:1 9823:11 9852:1 9880:1 9881:1 9899:1 9904:1 9911:1 9918:2 9923:4 9949:1 9974:3 9989:1 10001:1 10018:1 10022:3 10037:2 10046:1 10053:2 10054:2 10061:1 10070:1 10074:3 10079:1 10089:1 10095:1 10105:1 10118:1 10130:1 10146:1 10151:2 10169:1 10179:1 10225:1 10233:1 10265:1 10281:3 10337:1 10363:1 10364:2 10391:1 10413:1 10416:1 10430:1 10480:8 10483:1 10487:2 10502:1 10505:1 10513:1 10531:1 10550:11 10556:1 10571:1 10576:2 10598:2 10621:2 10637:1 10652:1 10687:1 10695:1 10724:1 10725:1 10733:1 10739:4 10754:1 10787:1 10818:2 10836:4 10844:1 10846:1 10847:3 10851:2 10861:2 10870:1 10871:8 10872:1 10874:1 10897:1 10901:1 10923:1 10942:2 10943:1 10962:1 10969:1 10970:8 10974:1 10982:1 10985:14 11001:1 11016:1 11046:3 11065:1 11087:1 11101:2 11118:1 11123:1 11156:1 11159:2 11163:1 11168:1 11187:1 11220:1 11224:1 11273:1 11275:1 11277:1 11280:5 11281:1 11287:1 11289:1 11297:1 11301:2 11311:1 11322:1 11329:1 11340:1 11342:1 11368:10 11375:1 11376:2 11406:1 11407:2 11408:1 11415:1 11419:1 11432:2 11439:1 11447:1 11449:1 11451:2 11459:1 11509:5 11512:2 11531:2 11554:1 11564:1 11607:1 11612:1 11613:1 11614:2 11638:2 11657:1 11697:2 11699:1 11704:1 11712:1 11717:1 11718:1 11744:1 11747:1 11777:1 11788:1 11806:1 11808:1 11813:2 11816:1 11818:1 11825:1 11833:1 11855:1 11856:1 11861:2 11881:1 11900:1 11902:4 11910:1 11927:4 11942:1 11958:1 11979:1 11985:1 11990:3 12006:2 12016:2 12020:1 12025:1 12035:1 12036:1 12045:1 12050:2 12054:1 12060:1 12069:1 12089:1 12091:1 12099:1 12100:1 12105:1 12114:1 12123:1 12141:1 12144:1 12157:1 12173:1 12175:1 12176:1 12218:1 12229:1 12251:1 12263:3 12269:1 12276:2 12287:1 12303:3 12341:1 12346:1 12366:1 12368:1 12372:1 12383:4 12387:1 12389:1 12408:1 12432:1 12437:2 12472:1 12473:1 12490:1 12525:1 12550:3 12559:1 12582:3 12583:1 12584:1 12586:1 12602:1 12630:1 12633:1 12667:1 12689:1 12706:1 12716:1 12723:1 12732:1 12739:1 12741:27 12766:1 12770:1 12778:1 12816:1 12822:1 12828:1 12859:1 12863:1 12872:2 12877:1 12897:1 12911:1 12950:3 12956:1 12958:2 12959:1 12961:2 12969:1 12975:1 12981:1 12983:1 12984:1 12988:3 12989:1 12995:1 12997:1 13000:1 13012:1 13030:2 13031:1 13069:1 13070:1 13082:1 13094:5 13095:5 13113:1 13121:1 13140:1 13173:1 13202:1 13207:2 13221:1 13225:1 13246:1 13259:1 13270:1 13292:2 13295:2 13300:1 13328:4 13339:1 13352:1 13363:1 13371:1 13373:1 13378:1 13382:1 13383:4 13390:1 13405:1 13410:1 13418:1 13425:1 13430:1 13431:2 13434:1 13435:1 13437:2 13442:1 13444:2 13445:1 13448:1 13449:1 13453:3 13455:1 13456:1 13459:5 13462:1 13469:1 13482:3 13495:1 13525:2 13545:1 13554:1 13570:1 13622:1 13637:1 13641:1 13670:1 13675:1 13703:2 13719:1 13739:1 13743:1 13746:1 13752:2 13758:1 13765:1 13766:1 13767:1 13775:1 13812:1 13818:1 13819:2 13826:1 13835:2 13837:5 13843:2 13846:1 13867:1 13868:1 13876:2 13895:1 13906:2 13907:1 13924:2 13925:3 13928:9 13931:2 13965:2 13966:1 13970:1 13972:2 13977:2 13979:2 13994:2 14000:1 14003:2 14008:1 14031:2 14035:1 14039:2 14046:1 14052:2 14071:1 14074:1 14077:1 14094:1 14097:1 14100:1 14101:1 14108:1 14114:1 14118:1 14122:1 14124:1 14125:1 14142:1 14154:1 14156:1 14178:1 14189:1 14200:1 14207:1 14210:1 14223:1 14240:2 14246:1 14254:1 14262:1 14275:2 14307:1 14325:1 14332:1 14368:1 14371:1 14372:1 14393:1 14398:1 14403:1 14443:1 14446:1 14449:1 14462:1 14465:1 14468:1 14491:1 14516:1 14518:2 14539:2 14544:2 14550:1 14553:1 14570:1 14574:1 14575:1 14577:1 14585:1 14593:1 14596:2 14627:1 14637:1 14640:1 14645:1 14665:1 14677:6 14696:1 14713:1 14714:1 14719:3 14721:1 14740:1 14744:2 14762:3 14764:1 14768:2 14774:1 14775:1 14781:1 14783:1 14803:1 14820:1 14825:1 14830:1 14833:1 14837:1 14844:4 14853:2 14856:1 14864:1 14877:1 14880:1 14885:1 14887:1 14889:1 14903:8 14929:2 14931:2 14963:1 14975:1 14976:1 14981:1 15024:1 15035:1 15056:1 15067:1 15070:1 15080:1 15112:1 15116:1 15129:1 15139:1 15142:1 15147:2 15179:1 15184:1 15191:1 15205:2 15215:1 15227:1 15251:1 15282:3 15283:1 15307:5 15312:2 15315:1 15328:1 15367:1 15370:1 15371:1 15389:1 15477:1 15480:1862 15482:2 15496:3 15503:1 15514:1 15532:1 15543:1 15564:1 15575:1 15577:1 15583:2 15587:1 15602:1 15633:1 15635:1 15646:4 15655:1 15658:3 15661:1 15662:2 15663:1 15672:2 15684:1 15708:1 15723:4 15725:2 15800:2 15834:3 15883:1 15887:2 15898:1 15929:2 15936:1 15944:1 15949:1 15990:1 16002:1 16009:1 16019:1 16037:1 16042:2 16046:1 16054:3 16074:4 16095:1 16102:2 16110:1 16117:1 16121:1 16129:1 16151:1 16152:4 16159:1 16170:1 16171:2 16176:1 16177:1 16206:8 16212:1 16235:1 16239:1 16268:1 16271:1 16307:1 16331:1 16332:1 16341:1 16361:1 16362:1 16380:1 16387:2 16402:1 16408:1 16414:1 16416:1 16432:2 16434:3 16443:4 16449:1 16462:1 16479:1 16482:1 16485:1 16495:1 16500:1 16514:1 16522:2 16538:1 16541:1 16548:1 16573:1 16593:1 16596:1 16611:1 16618:2 16630:1 16650:1 16661:1 16669:7 16679:1 16681:1 16706:1 16712:1 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:4 16763:2 16768:1 16782:1 16787:1 16795:2 16797:1 16811:1 16815:7 16823:3 16844:1 16855:1 16856:1 16861:1 16908:1 16945:1 16947:1 16965:2 16981:1 17001:3 17014:2 17017:1 17027:1 17043:1 17046:5 17050:4 17056:1 17058:2 17090:1 17101:1 17109:1 17130:1 17138:1 17144:1 17163:1 17168:1 17188:4 17197:1 17219:1 17221:1 17223:1 17234:1 17238:1 17255:1 17261:1 17275:1 17305:1 17311:3 17329:1 17352:1 17358:2 17362:2 17380:1 17400:1 17429:1 17437:3 17443:1 17452:1 17485:10 17491:2 17496:2 17501:1 17510:4 17532:1 17535:1 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17571:1 17590:1 17601:1 17604:1 17610:2 17648:1 17649:1 17685:1 17706:3 17724:2 17735:1 17738:3 17745:1 17747:2 17774:1 17806:1 17812:1 17813:1 17827:1 17835:3 17837:1 17838:1 17839:1 17851:1 17852:1 17867:1 17879:1 17884:1 17893:1 17916:2 17921:1 17929:1 17943:1 17958:1 17965:2 17980:2 17993:2 17995:2 17996:2 18035:1 18037:1 18043:2 18053:2 18066:1 18087:1 18088:2 18091:1 18092:1 18093:1 18130:1 18131:1 18166:1 18176:1 18186:1 18196:3 18197:3 18199:3 18204:1 18207:1 18210:1 18228:1 18231:2 18234:2 18244:1 18249:1 18261:1 18264:1 18285:1 18296:1 18339:1 18347:1 18360:2 18366:2 18378:3 18392:1 18406:1 18421:1 18425:1 18434:2 18474:1 18479:1 18491:1 18498:2 18505:1 18506:4 18509:1 18511:1 18537:1 18542:1 18565:1 18567:2 18573:2 18575:2 18578:1 18616:1 18619:1 18631:1 18641:1 18643:1 18644:1 18658:1 18666:1 18676:1 18686:1 18693:2 18704:1 18727:2 18729:1 18732:2 18739:3 18742:1 18776:1 18784:1 18803:1 18807:1 18820:2 18843:1 18854:1 18856:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:2 18939:1 18941:2 18943:1 18946:1 18948:1 18949:1 18961:1 18965:1 18975:3 18976:3 18978:1 18985:1 18990:3 19029:2 19033:1 19036:1 19053:1 19070:1 19080:1 19096:3 19123:1 19134:4 19145:1 19156:2 19187:2 19193:1 19201:1 19212:1 19213:1 19218:1 19225:1 19229:1 19233:1 19237:1 19249:1 19278:1 19325:1 19336:1 19349:1 19365:3 19371:1 19376:1 19406:1 19425:3 19427:1 19431:1 19438:3 19443:1 19444:1 19446:1 19470:1 19474:1 19480:1 19486:1 19493:1 19494:1 19507:1 19508:1 19523:1 19525:1 19532:1 19540:1 19559:4 19562:1 19573:1 19580:1 19587:1 19611:1 19615:3 19637:1 19638:2 19644:1 19666:1 19716:2 19718:1 19730:1 19746:1 19748:1 19789:1 19810:2 19823:1 19832:3 19870:1 19901:1 19902:8 19974:2 20000:1 20007:1 20013:1 20022:1 20040:2 20051:1 20055:1 20063:1 20068:3 20076:1 20083:2 20084:7 20087:1 20102:1 20107:1 20109:1 20122:1 20126:2 20139:1 20152:1 20155:1 20173:1 20196:1 20204:1 20252:1 20266:1 20268:1 20270:1 20273:1 20274:1 20275:1 20276:1 20281:1 20287:1 20305:1 20318:1 20327:3 20331:1 20332:2 20334:1 20337:2 20343:1 20344:1 20360:1 20366:4 20378:5 20379:1 20393:1 20411:1 20412:1 20432:1 20441:1 20442:1 20447:1 20448:1 20460:1 20469:2 20473:1 20480:2 20485:1 20490:2 20493:1 20508:1 20545:1 20563:1 20567:1 20595:1 20599:2 20630:1 20638:1 20651:2 20659:1 20663:1 20686:6 20718:1 20722:1 20723:1 20734:1 20738:1 20742:6 20750:1 20751:1 20753:1 20755:1 20762:1 20769:1 20785:2 20786:1 20847:1 20878:1 20909:1 20928:2 20930:5 20949:1 20955:1 20958:1 20962:2 20964:1 20965:1 20970:2 20989:1 20993:1 21007:1 21099:1 21100:1 21111:1 21112:1 21134:1 21136:1 21137:1 21139:1 21154:1 21159:1 21189:1 21190:1 21204:1 21205:1 21208:1 21209:1 21245:1 21267:1 21279:1 21319:1 21337:1 21361:4 21363:1 21364:5 21371:1 21413:1 21438:1 21441:2 21480:3 21486:1 21503:1 21512:1 21520:1 21522:1 21551:1 21556:1 21557:1 21559:1 21561:2 21576:1 21586:1 21594:1 21602:1 21612:3 21628:1 21630:1 21632:1 21637:3 21642:1 21663:1 21665:1 21671:1 21693:1 21695:1 21697:4 21703:1 21707:1 21716:1 21738:1 21748:1 21760:4 21761:1 21773:2 21787:1 21831:3 21841:1 21844:1 21857:1 21869:2 21887:1 21905:1 21914:1 21923:1 21926:1 21934:1 21952:1 21974:1 21977:2 21984:1 21996:1 21998:1 22001:1 22010:2 22013:3 22014:1 22027:2 22043:1 22048:2 22058:1 22062:1 22065:1 22068:1 22080:3 22108:2 22114:2 22124:1 22138:1 22173:1 22186:1 22193:1 22195:1 22208:1 22242:1 22247:1 22322:1 22379:1 22386:1 22390:1 22394:1 22419:1 22423:1 22425:1 22429:1 22462:1 22511:1 22515:1 22527:1 22528:3 22547:1 22548:2 22550:1 22553:1 22562:1 22572:1 22585:3 22593:1 22601:1 22602:1 22611:4 22657:1 22666:1 22669:4 22672:1 22690:2 22693:1 22699:1 22740:4 22749:2 22755:1 22759:1 22760:2 22769:1 22779:1 22786:1 22801:2 22804:1 22815:2 22817:1 22822:1 22823:1 22825:1 22831:1 22837:1 22846:1 22854:1 22874:1 22894:2 22897:1 22912:1 22916:3 22925:1 22939:1 22942:1 22951:1 22957:1 22990:1 22991:1 23005:1 23006:2 23007:1 23022:4 23039:1 23050:2 23074:2 23088:1 23089:6 23109:2 23113:1 23138:1 23151:1 23206:1 23248:3 23284:1 23305:3 23314:2 23324:1 23325:1 23339:1 23341:1 23360:4 23363:1 23385:1 23404:1 23405:1 23430:17 23431:1 23432:1 23446:1 23459:1 23466:10 23476:2 23481:1 23490:1 23518:2 23527:1 23541:1 23546:1 23551:3 23558:3 23586:7 23587:1 23610:1 23623:1 23639:1 23645:2 23647:1 23655:1 23694:1 23698:1 23719:1 23739:1 23740:1 23758:1 23784:1 23796:3 23797:3 23840:1 23847:1 23849:1 23852:1 23853:2 23858:1 23868:1 23951:1 23956:4 23961:1 23966:1 23967:1 23970:1 23971:10 23985:1 23990:1 24000:1 24005:1 24006:2 24012:1 24028:1 24042:1 24049:1 24057:1 24101:1 24108:1 24117:1 24126:1 24139:1 24145:1 24153:1 24162:3 24170:2 24196:1 24223:1 24225:1 24253:1 24293:1 24301:1 24302:1 24306:1 24307:1 24315:1 24317:1 24320:1 24324:1 24341:1 24347:2 24353:1 24362:1 24370:1 24376:1 24379:1 24384:1 24392:1 24393:1 24401:2 24409:1 24410:1 24411:2 24418:1 24421:1 24438:1 24440:1 24449:1 24455:1 24463:1 24466:1 24469:3 24473:2 24476:3 24479:1 24480:1 24483:2 24487:1 24491:1 24504:1 24523:1 24525:3 24535:1 24536:1 24552:1 24563:1
20 13:1 25:1 29:1 30:1 34:2 37:1 53:1 61:1 72:1 76:1 85:2 88:1 96:1 105:1 112:1 113:1 150:1 162:1 164:1 172:1 175:1 186:1 216:3 218:2 240:3 241:1 276:1 296:2 298:1 314:1 339:1 341:2 348:1 377:1 407:3 441:1 489:1 492:1 509:1 510:3 527:2 541:2 565:2 566:1 568:3 640:1 713:1 720:1 752:2 754:1 762:2 766:1 778:1 784:1 785:3 788:1 795:1 805:1 814:3 828:1 831:3 833:1 834:5 838:4 846:1 857:1 862:1 869:4 888:3 889:3 892:2 899:1 906:1 912:1 937:1 946:1 948:2 952:1 960:1 967:1 989:1 1005:1 1009:3 1015:4 1043:1 1044:1 1047:1 1065:1 1074:1 1078:1 1080:1 1094:1 1095:1 1108:1 1110:1 1112:1 1114:1 1131:1 1142:1 1158:1 1172:1 1208:1 1212:1 1220:2 1230:2 1236:1 1241:1 1242:1 1257:1 1258:1 1259:3 1274:3 1293:1 1296:1 1297:1 1301:1 1311:3 1328:13 1330:2 1332:7 1340:2 1343:1 1345:1 1352:1 1353:2 1360:1 1372:1 1376:1 1381:9 1395:1 1396:1 1418:1 1420:1 1429:1 1435:1 1436:1 1460:2 1476:1 1484:1 1506:1 1507:5 1510:2 1517:2 1526:1 1546:1 1552:2 1568:1 1591:1 1612:2 1617:3 1619:2 1629:1 1639:2 1641:1 1644:1 1661:1 1663:1 1666:1 1670:1 1703:1 1719:1 1731:4 1745:1 1763:1 1766:3 1771:1 1774:1 1775:1 1782:1 1815:1 1826:5 1828:1 1838:1 1846:1 1853:2 1854:2 1856:1 1875:2 1877:8 1879:4 1882:1 1883:1 1889:1 1891:2 1892:3 1894:2 1895:1 1898:1 1908:1 1909:2 1912:2 1930:1 1939:2 1941:1 1942:1 1945:4 1948:2 1949:1 1952:1 1954:2 1959:1 1960:2 1961:1 1963:3 1965:2 1968:2 1970:2 1973:1 1976:2 1978:1 1981:2 1992:1 1994:1 1999:1 2000:1 2034:1 2038:1 2045:1 2055:1 2074:1 2076:1 2077:1 2102:1 2110:1 2115:1 2140:1 2157:1 2164:1 2167:1 2169:1 2173:1 2188:1 2218:1 2222:1 2241:1 2253:1 2254:1 2272:1 2273:1 2282:1 2287:1 2308:1 2317:1 2319:2 2321:1 2325:2 2328:1 2329:1 2353:1 2359:1 2365:1 2374:1 2383:1 2390:1 2393:1 2405:1 2409:2 2434:1 2451:3 2461:2 2462:9 2464:2 2478:1 2480:2 2481:3 2491:1 2500:1 2507:9 2535:1 2589:1 2597:2 2606:1 2636:1 2645:3 2678:1 2685:1 2689:1 2700:1 2718:1 2745:1 2753:1 2754:1 2764:1 2770:1 2779:3 2802:3 2807:1 2826:3 2831:1 2839:1 2842:1 2843:1 2849:1 2853:1 2876:1 2898:1 2941:1 2948:1 2993:2 2999:1 3002:1 3049:2 3059:2 3063:2 3068:1 3090:1 3093:1 3095:1 3103:1 3118:1 3129:1 3131:1 3135:1 3136:1 3139:1 3147:2 3173:2 3183:2 3184:2 3221:4 3222:1 3234:1 3237:6 3288:1 3301:1 3306:1 3312:6 3323:1 3326:2 3328:1 3355:1 3358:1 3367:1 3369:2 3377:1 3391:1 3399:2 3407:2 3408:1 3416:1 3428:1 3442:1 3450:1 3467:1 3481:1 3495:1 3514:1 3519:1 3537:1 3572:1 3596:1 3598:1 3620:1 3622:1 3628:1 3653:1 3655:1 3660:1 3661:1 3666:1 3678:1 3681:1 3710:2 3729:1 3737:1 3770:1 3773:1 3777:1 3801:1 3803:2 3831:1 3832:1 3837:1 3840:1 3845:1 3856:1 3868:1 3878:1 3889:1 3902:2 3904:1 3911:1 3928:4 3938:2 3939:1 3992:1 4003:1 4019:1 4046:1 4047:1 4073:1 4091:1 4099:1 4107:12 4116:1 4143:1 4159:1 4160:1 4192:3 4197:1 4198:7 4211:3 4212:2 4214:1 4216:1 4218:1 4223:1 4228:1 4229:1 4230:2 4231:3 4234:3 4237:1 4238:1 4248:1 4275:1 4319:1 4323:1 4351:1 4364:4 4368:1 4384:1 4391:1 4394:1 4403:1 4409:3 4412:1 4420:1 4436:1 4450:2 4464:1 4470:1 4498:3 4506:1 4529:1 4539:1 4546:4 4561:1 4621:2 4625:1 4628:1 4633:2 4644:1 4650:1 4654:1 4658:1 4662:2 4667:1 4673:1 4675:1 4681:1 4689:3 4703:3 4729:1 4741:1 4757:2 4768:1 4771:1 4787:1 4794:1 4818:1 4821:1 4823:1 4826:1 4831:1 4836:2 4854:1 4861:1 4872:1 4876:2 4926:4 4927:2 4950:2 4953:2 4958:1 4959:2 4986:1 4994:1 5016:1 5025:1 5049:3 5054:1 5075:1 5090:2 5096:1 5100:2 5103:1 5127:1 5130:1 5142:1 5146:2 5187:3 5189:1 5192:3 5205:1 5215:1 5217:1 5225:1 5247:3 5248:1 5260:1 5263:1 5264:1 5276:1 5282:2 5289:1 5308:2 5310:2 5314:1 5322:3 5324:1 5325:1 5332:2 5335:1 5337:1 5338:1 5340:3 5342:1 5347:2 5349:4 5350:2 5352:4 5396:1 5398:1 5409:1 5426:4 5437:4 5451:2 5488:1 5489:1 5520:1 5535:1 5592:2 5604:1 5609:1 5615:1 5616:2 5625:1 5629:2 5630:1 5634:1 5655:1 5656:1 5663:1 5665:1 5668:1 5672:2 5674:4 5686:1 5688:1 5689:1 5693:1 5702:1 5703:1 5726:2 5774:1 5783:3 5807:3 5808:1 5818:1 5819:1 5823:1 5837:1 5874:1 5878:2 5890:1 5914:1 5917:1 5930:1 5947:6 5948:1 5959:1 5968:1 5970:1 5998:2 6021:1 6035:1 6039:1 6040:1 6052:2 6071:1 6084:1 6096:1 6116:1 6124:1 6130:1 6147:1 6175:3 6183:3 6192:1 6194:1 6201:1 6209:1 6223:1 6231:1 6232:1 6237:2 6241:1 6248:1 6255:1 6260:1 6261:1 6269:1 6276:1 6285:2 6286:1 6289:1 6305:1 6324:1 6332:1 6354:1 6359:4 6365:8 6375:1 6382:1 6384:1 6386:4 6387:1 6410:1 6416:1 6429:28 6436:1 6449:5 6451:11 6460:1 6486:1 6497:2 6501:1 6508:1 6545:1 6551:1 6599:1 6619:1 6655:1 6669:3 6677:3 6680:1 6700:1 6771:1 6781:1 6785:1 6789:1 6806:1 6810:9 6816:2 6818:1 6821:1 6824:1 6841:1 6854:1 6859:23 6882:1 6906:1 6908:1 6918:1 6926:1 6981:1 7017:1 7020:1 7030:1 7038:2 7054:1 7056:1 7068:3 7077:1 7084:1 7110:1 7115:1 7121:1 7125:1 7156:1 7157:2 7164:1 7166:3 7169:1 7170:4 7172:1 7173:1 7174:1 7177:2 7182:4 7192:1 7193:1 7194:2 7222:1 7257:2 7262:2 7263:1 7280:1 7303:1 7305:1 7325:1 7364:1 7384:1 7400:1 7409:2 7423:1 7425:1 7432:3 7434:1 7437:1 7443:1 7451:1 7457:1 7459:1 7461:3 7488:1 7505:1 7519:1 7521:1 7526:1 7535:1 7539:1 7571:1 7573:2 7581:6 7590:4 7594:1 7604:3 7615:1 7628:1 7649:1 7656:1 7665:1 7678:1 7686:1 7712:1 7731:1 7753:1 7777:1 7787:3 7790:1 7798:1 7803:1 7804:1 7805:1 7810:1 7821:1 7868:1 7878:1 7896:1 7912:2 7922:1 7927:1 7930:2 7932:1 7943:1 7944:1 7950:1 7964:4 7975:1 7980:1 7988:3 8013:1 8036:1 8048:1 8049:3 8061:1 8064:3 8067:1 8070:6 8071:1 8080:3 8099:1 8118:1 8121:1 8138:2 8139:1 8143:2 8162:9 8166:1 8174:1 8177:1 8189:1 8195:1 8196:1 8200:1 8205:1 8212:1 8215:1 8222:2 8226:1 8285:2 8293:1 8296:3 8297:1 8304:2 8317:1 8348:2 8352:2 8363:2 8379:1 8382:1 8387:2 8392:1 8437:2 8443:1 8444:1 8480:1 8508:2 8532:2 8536:1 8566:1 8574:1 8575:1 8581:2 8617:3 8679:4 8682:2 8684:1 8700:1 8736:2 8746:1 8753:1 8759:1 8760:1 8769:1 8778:3 8785:1 8789:2 8801:2 8802:2 8807:1 8809:2 8814:3 8815:1 8817:1 8818:1 8822:1 8824:1 8828:1 8829:1 8832:1 8833:2 8840:1 8841:1 8843:1 8856:1 8857:1 8867:1 8881:1 8891:3 8897:1 8903:1 8905:1 8907:1 8910:1 8914:4 8916:7 8949:1 8960:2 8975:1 8977:1 8981:1 8989:4 8997:1 9001:3 9070:1 9080:1 9090:1 9101:4 9102:2 9106:1 9108:1 9145:3 9162:1 9167:1 9173:2 9192:1 9193:1 9200:1 9202:1 9205:1 9215:1 9222:1 9225:1 9252:6 9260:2 9282:1 9289:1 9313:1 9317:1 9321:1 9338:1 9346:1 9359:3 9363:2 9388:1 9389:1 9399:1 9411:1 9416:1 9424:1 9433:1 9442:1 9459:1 9472:1 9486:2 9488:7 9525:1 9536:2 9542:1 9543:2 9545:1 9547:2 9548:1 9561:1 9563:3 9586:1 9587:1 9610:1 9621:1 9624:2 9639:1 9653:5 9656:1 9659:1 9668:1 9682:2 9687:1 9695:1 9696:1 9698:1 9703:1 9707:1 9710:1 9716:1 9723:2 9727:1 9730:1 9743:1 9760:1 9762:1 9763:5 9772:3 9778:8 9810:1 9815:1 9822:1 9823:11 9852:1 9880:1 9881:1 9899:1 9904:1 9911:1 9918:2 9923:4 9949:1 9974:3 9989:1 10001:1 10018:1 10022:3 10037:2 10046:1 10053:2 10054:2 10061:1 10070:1 10074:3 10079:1 10089:1 10095:1 10105:1 10118:1 10130:1 10144:1 10146:1 10151:2 10163:1 10169:1 10179:1 10225:1 10233:1 10265:1 10281:3 10304:1 10337:1 10363:1 10364:2 10391:1 10413:1 10416:1 10430:1 10477:1 10480:8 10483:1 10487:2 10494:1 10502:1 10505:1 10513:1 10531:1 10550:11 10556:1 10571:1 10576:2 10598:2 10621:2 10637:1 10652:1 10687:1 10695:1 10724:1 10725:1 10733:1 10739:4 10753:1 10754:1 10787:1 10818:2 10836:4 10844:1 10846:1 10847:3 10851:2 10861:2 10870:1 10871:8 10872:1 10874:1 10897:1 10901:1 10923:2 10942:2 10943:1 10962:1 10969:1 10970:8 10974:1 10982:1 10985:14 11001:1 11016:1 11046:3 11065:1 11087:2 11101:2 11118:1 11123:1 11143:1 11156:1 11159:2 11163:2 11168:1 11187:1 11191:1 11220:1 11224:1 11273:1 11275:1 11277:1 11280:5 11281:1 11287:1 11289:1 11297:1 11301:2 11311:1 11322:1 11329:1 11332:1 11340:1 11342:1 11368:10 11375:1 11376:2 11406:1 11407:2 11408:1 11415:1 11419:1 11432:2 11439:1 11447:2 11449:1 11451:2 11459:1 11509:5 11512:2 11531:2 11554:1 11564:2 11607:1 11612:1 11613:1 11614:2 11638:2 11657:1 11665:1 11697:2 11699:1 11704:1 11712:1 11717:1 11718:1 11744:1 11747:1 11777:1 11788:1 11806:1 11808:1 11813:2 11816:1 11818:1 11825:1 11833:1 11855:1 11856:1 11861:2 11881:1 11900:1 11902:4 11910:1 11927:4 11942:1 11958:1 11979:1 11985:1 11990:3 11997:1 12006:2 12016:2 12020:1 12025:1 12035:1 12036:1 12045:1 12050:2 12054:1 12060:1 12069:1 12089:1 12091:1 12099:1 12100:1 12105:1 12114:1 12123:1 12141:1 12144:1 12151:1 12157:1 12173:1 12175:1 12176:1 12218:1 12229:1 12251:1 12263:3 12269:1 12276:2 12287:1 12303:3 12341:1 12346:1 12366:1 12368:1 12372:1 12383:4 12387:1 12389:1 12408:1 12432:1 12437:2 12472:1 12473:1 12490:1 12525:1 12550:3 12559:1 12582:3 12583:1 12584:1 12586:1 12602:1 12630:1 12633:1 12667:1 12689:1 12706:1 12716:1 12723:1 12732:1 12739:1 12741:28 12766:1 12770:1 12778:1 12816:1 12822:1 12828:1 12859:1 12863:1 12872:2 12877:1 12897:1 12911:1 12929:1 12948:1 12950:3 12956:1 12958:2 12959:1 12961:2 12969:1 12975:1 12981:1 12983:1 12984:1 12988:4 12989:1 12995:1 12997:1 13000:1 13012:1 13030:2 13031:1 13069:1 13070:1 13082:1 13094:5 13095:5 13113:1 13121:1 13140:1 13173:1 13202:1 13207:2 13221:1 13225:1 13246:1 13259:1 13270:1 13292:2 13295:2 13300:1 13328:4 13339:1 13352:1 13363:1 13371:1 13373:1 13378:1 13382:1 13383:4 13390:1 13405:1 13410:2 13418:1 13424:1 13425:1 13430:1 13431:2 13434:1 13435:1 13437:2 13442:1 13444:3 13445:1 13448:1 13449:1 13453:3 13455:1 13456:1 13459:5 13462:1 13469:1 13482:3 13495:1 13525:2 13545:1 13554:1 13570:1 13622:1 13637:1 13641:1 13670:1 13675:1 13703:2 13719:1 13739:1 13743:1 13746:1 13752:2 13758:2 13765:1 13766:1 13767:1 13775:1 13812:1 13818:1 13819:2 13826:1 13835:2 13837:5 13843:2 13846:1 13867:1 13868:1 13876:2 13895:1 13906:2 13907:1 13924:2 13925:3 13928:9 13931:2 13965:2 13966:1 13970:1 13972:2 13977:2 13979:3 13994:2 14000:1 14003:2 14008:1 14031:2 14035:1 14039:2 14046:1 14052:2 14071:1 14074:1 14077:1 14094:1 14097:1 14100:1 14101:1 14108:1 14114:1 14118:1 14122:1 14124:1 14125:1 14142:1 14154:1 14156:1 14178:1 14189:1 14200:1 14207:1 14210:1 14223:1 14240:2 14246:1 14254:1 14262:1 14275:2 14307:1 14325:1 14330:1 14332:1 14368:1 14371:1 14372:1 14393:1 14398:1 14403:2 14443:1 14446:1 14449:1 14462:1 14465:1 14468:1 14491:1 14516:1 14518:2 14539:2 14544:2 14550:1 14553:1 14570:1 14574:1 14575:1 14577:1 14585:1 14593:1 14596:2 14627:1 14637:1 14640:1 14645:1 14665:1 14677:6 14696:1 14713:1 14714:1 14719:3 14721:1 14740:1 14744:2 14762:3 14764:1 14768:2 14774:1 14775:1 14781:1 14783:1 14803:1 14820:1 14825:1 14830:1 14833:1 14837:1 14844:4 14853:3 14856:1 14864:1 14877:1 14880:1 14885:1 14887:1 14889:1 14903:8 14929:2 14931:2 14963:1 14975:1 14976:1 14981:1 15024:1 15035:1 15056:1 15067:1 15070:1 15080:1 15112:1 15116:1 15129:1 15139:1 15142:1 15147:2 15179:1 15184:1 15191:1 15205:2 15215:1 15227:1 15251:1 15282:3 15283:1 15307:6 15312:2 15315:1 15328:1 15367:1 15370:1 15371:1 15389:1 15446:1 15477:1 15480:1925 15482:2 15496:3 15503:1 15514:1 15532:1 15543:1 15564:1 15575:1 15577:1 15583:2 15587:1 15602:1 15633:1 15635:1 15646:4 15655:1 15658:3 15661:1 15662:2 15663:1 15672:2 15684:1 15708:1 15723:4 15725:2 15742:1 15762:1 15800:2 15834:3 15883:1 15887:2 15898:1 15929:2 15936:1 15944:1 15949:1 15990:1 16002:1 16009:1 16019:1 16037:1 16042:2 16046:1 16054:3 16074:4 16095:2 16102:2 16110:1 16117:1 16121:1 16129:1 16151:1 16152:4 16159:1 16170:1 16171:2 16176:1 16177:1 16206:8 16212:1 16219:1 16235:1 16239:1 16268:1 16271:1 16307:1 16331:1 16332:1 16341:1 16361:1 16362:1 16380:1 16387:2 16402:1 16408:1 16414:1 16416:1 16432:2 16434:3 16443:4 16449:1 16462:1 16479:1 16482:1 16485:2 16495:1 16500:1 16514:1 16522:2 16538:1 16541:1 16548:1 16573:1 16593:1 16596:1 16611:1 16618:2 16630:1 16650:1 16661:1 16669:7 16679:1 16681:1 16706:1 16712:1 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:4 16763:2 16768:2 16782:1 16787:1 16795:2 16797:1 16811:1 16815:7 16823:3 16844:1 16855:1 16856:1 16861:1 16908:1 16945:1 16947:1 16965:3 16981:1 17001:3 17014:2 17017:1 17027:1 17043:1 17046:5 17050:4 17056:1 17058:2 17090:1 17101:1 17109:1 17130:1 17138:2 17144:1 17163:1 17168:1 17188:4 17197:1 17210:1 17219:1 17221:1 17223:1 17234:1 17238:1 17255:1 17261:1 17275:1 17305:1 17311:4 17329:1 17352:1 17358:2 17362:2 17380:1 17400:1 17429:1 17437:3 17443:1 17452:1 17485:10 17491:2 17496:2 17501:1 17510:4 17532:1 17535:1 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17571:1 17590:1 17601:1 17604:1 17610:2 17648:1 17649:1 17685:1 17706:3 17724:2 17735:1 17738:3 17745:1 17747:2 17750:1 17774:1 17806:1 17807:1 17812:1 17813:1 17827:1 17835:3 17837:1 17838:1 17839:1 17851:1 17852:1 17867:1 17879:1 17884:1 17893:1 17908:1 17916:2 17921:1 17929:1 17943:1 17958:1 17965:2 17980:2 17993:2 17995:2 17996:2 18035:1 18037:1 18043:2 18053:2 18066:1 18087:1 18088:2 18091:1 18092:1 18093:1 18130:1 18131:1 18166:1 18176:1 18186:1 18196:3 18197:3 18199:3 18204:1 18207:1 18210:1 18228:1 18231:2 18234:2 18237:1 18244:1 18249:2 18261:1 18264:1 18285:1 18296:1 18339:1 18341:1 18347:1 18360:3 18366:2 18378:3 18392:1 18406:1 18421:1 18425:1 18434:2 18474:1 18479:1 18491:1 18498:2 18505:1 18506:4 18509:1 18511:1 18537:1 18542:1 18565:1 18567:2 18573:2 18575:2 18577:1 18578:1 18581:1 18616:1 18619:1 18631:1 18641:1 18643:1 18644:1 18658:1 18666:1 18676:1 18686:1 18693:2 18704:1 18715:1 18727:2 18729:1 18732:2 18739:3 18742:1 18776:1 18784:1 18803:1 18807:1 18820:2 18843:1 18854:1 18856:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:2 18939:1 18941:2 18943:1 18946:1 18948:1 18949:1 18961:1 18965:1 18975:3 18976:3 18978:1 18985:1 18990:3 19007:1 19029:2 19033:1 19036:1 19053:1 19070:1 19080:1 19096:3 19123:1 19134:4 19145:1 19156:2 19187:2 19193:1 19201:1 19212:1 19213:1 19218:1 19225:1 19229:1 19233:1 19237:1 19249:1 19278:1 19289:1 19325:1 19336:1 19349:1 19365:3 19369:1 19371:1 19376:1 19406:1 19417:1 19425:3 19427:1 19431:1 19438:3 19443:1 19444:1 19446:1 19470:1 19474:1 19480:1 19486:1 19493:1 19494:2 19507:1 19508:1 19523:1 19525:1 19532:1 19540:1 19559:4 19562:1 19573:1 19580:1 19587:1 19611:1 19615:3 19637:1 19638:2 19644:1 19666:1 19716:2 19718:1 19730:1 19746:1 19748:1 19789:1 19810:2 19823:1 19832:3 19870:1 19901:1 19902:8 19974:2 20000:1 20007:1 20013:1 20022:1 20031:1 20040:2 20051:1 20055:1 20063:1 20068:3 20076:1 20083:2 20084:7 20087:1 20102:1 20107:1 20109:1 20122:1 20126:2 20139:1 20152:1 20155:1 20173:1 20196:1 20204:1 20252:1 20266:1 20268:1 20270:1 20273:1 20274:1 20275:1 20276:1 20281:1 20287:1 20305:1 20318:1 20327:3 20331:1 20332:2 20334:1 20337:3 20343:1 20344:1 20360:1 20366:4 20378:5 20379:1 20393:1 20411:1 20412:1 20432:1 20441:1 20442:1 20447:1 20448:1 20460:1 20469:2 20473:1 20480:2 20485:1 20490:2 20493:1 20508:1 20512:1 20545:1 20563:1 20567:1 20595:1 20599:2 20630:1 20638:1 20651:2 20659:1 20663:1 20686:6 20718:1 20722:1 20723:1 20734:1 20738:1 20742:6 20750:1 20751:1 20753:1 20755:1 20762:1 20769:1 20785:2 20786:1 20847:1 20878:1 20909:1 20928:2 20930:5 20949:2 20955:1 20958:1 20962:2 20964:1 20965:1 20970:2 20989:1 20993:1 21007:1 21099:1 21100:1 21111:1 21112:1 21134:1 21136:1 21137:1 21139:1 21154:1 21159:1 21189:1 21190:1 21204:1 21205:1 21208:1 21209:1 21245:1 21267:1 21279:1 21319:1 21337:1 21361:4 21363:1 21364:5 21371:1 21413:1 21438:1 21441:2 21480:4 21486:1 21503:1 21512:1 21520:1 21522:1 21551:1 21556:1 21557:1 21559:1 21561:2 21576:1 21586:1 21587:1 21594:1 21602:1 21612:3 21628:1 21630:1 21632:1 21637:3 21642:1 21663:1 21665:1 21671:1 21693:1 21695:1 21697:4 21703:1 21707:1 21716:1 21738:1 21748:1 21760:5 21761:1 21773:2 21787:1 21831:3 21841:1 21844:2 21857:1 21869:2 21887:1 21905:1 21914:1 21923:1 21926:1 21934:1 21952:1 21974:1 21977:2 21984:1 21996:1 21998:1 22001:1 22010:2 22013:3 22014:1 22027:2 22043:1 22048:2 22058:1 22062:1 22065:1 22068:1 22080:3 22108:2 22114:2 22124:1 22138:1 22173:1 22186:1 22193:1 22195:1 22208:1 22242:1 22247:1 22322:1 22379:1 22386:1 22390:1 22394:1 22419:1 22423:1 22425:1 22429:1 22462:1 22511:1 22515:1 22527:1 22528:3 22547:1 22548:2 22550:1 22553:1 22562:1 22572:1 22585:3 22593:1 22601:1 22602:1 22611:4 22657:1 22666:1 22669:4 22672:1 22690:2 22693:1 22699:1 22740:4 22749:2 22755:1 22759:1 22760:2 22769:1 22779:1 22786:1 22801:2 22804:1 22815:2 22817:1 22822:1 22823:1 22825:1 22831:1 22837:1 22846:1 22854:1 22874:1 22894:2 22897:1 22912:1 22916:3 22925:1 22939:1 22942:1 22951:1 22957:1 22990:1 22991:1 23005:1 23006:2 23007:1 23022:4 23039:1 23048:1 23050:2 23074:2 23088:1 23089:6 23109:2 23113:1 23138:1 23151:1 23206:1 23248:3 23284:1 23305:3 23314:2 23324:1 23325:1 23339:1 23341:1 23360:4 23363:1 23385:1 23404:1 23405:1 23430:18 23431:1 23432:1 23446:1 23459:1 23466:10 23472:1 23474:1 23476:2 23481:1 23490:1 23518:2 23527:1 23541:1 23546:1 23551:3 23558:3 23586:7 23587:1 23610:1 23623:1 23639:1 23645:2 23647:1 23655:1 23694:1 23698:1 23719:1 23739:1 23740:1 23758:1 23784:1 23796:4 23797:3 23840:1 23847:1 23849:1 23852:1 23853:2 23858:1 23868:1 23939:1 23951:1 23956:4 23961:1 23966:1 23967:1 23970:1 23971:10 23985:1 23990:1 24000:1 24005:1 24006:2 24012:1 24028:1 24042:1 24049:1 24057:1 24101:1 24108:1 24117:1 24126:1 24139:1 24145:1 24153:1 24162:3 24170:2 24196:1 24223:1 24225:1 24253:1 24293:1 24301:1 24302:1 24306:1 24307:1 24315:1 24317:1 24320:1 24324:1 24341:1 24347:2 24353:1 24362:1 24370:1 24376:1 24379:1 24384:1 24392:1 24393:1 24401:2 24409:1 24410:1 24411:2 24418:1 24421:1 24438:1 24440:1 24449:1 24455:1 24463:1 24466:1 24469:3 24473:2 24476:3 24479:1 24480:1 24483:2 24487:1 24491:1 24504:1 24523:1 24525:3 24535:1 24536:1 24552:1 24563:1
20 13:1 25:1 29:1 30:1 34:2 37:1 45:1 53:1 61:1 72:1 76:1 85:5 88:1 96:1 105:1 112:1 113:1 150:1 162:1 164:1 172:1 175:1 186:1 216:3 218:2 240:3 241:1 276:1 296:2 298:1 314:1 339:1 341:2 348:1 377:1 407:3 441:1 489:1 492:1 509:1 510:3 527:2 541:2 565:2 566:1 568:3 640:1 694:1 713:1 720:1 752:2 754:1 762:2 766:1 778:1 784:1 785:3 788:1 795:1 805:1 814:3 828:1 831:3 833:1 834:5 838:4 846:1 857:1 862:1 869:4 888:3 889:3 892:2 899:1 906:1 912:1 937:1 946:1 948:2 952:1 960:1 967:1 989:1 1005:1 1009:3 1015:4 1043:1 1044:1 1047:1 1065:1 1074:1 1078:1 1080:1 1094:1 1095:1 1108:1 1110:1 1112:1 1114:1 1131:1 1137:1 1142:1 1158:1 1172:1 1208:1 1212:1 1220:2 1230:2 1236:1 1241:1 1242:1 1257:1 1258:1 1259:3 1267:1 1274:4 1293:1 1296:1 1297:1 1301:1 1311:3 1328:13 1330:2 1332:7 1340:2 1343:1 1345:1 1352:1 1353:2 1360:1 1372:1 1376:1 1381:9 1395:1 1396:1 1418:1 1420:1 1429:1 1435:1 1436:1 1460:2 1476:1 1484:1 1506:1 1507:5 1510:2 1517:2 1526:1 1546:1 1552:2 1568:1 1591:1 1612:2 1617:3 1619:2 1629:1 1639:2 1641:1 1644:1 1661:1 1663:1 1666:1 1670:1 1703:1 1719:1 1731:4 1745:1 1763:1 1766:3 1771:1 1774:1 1775:1 1782:1 1815:1 1826:5 1828:1 1838:1 1846:1 1853:2 1854:2 1856:1 1875:2 1877:8 1879:5 1882:1 1883:1 1889:1 1891:2 1892:3 1894:2 1895:1 1898:1 1908:1 1909:2 1912:2 1930:1 1939:2 1941:1 1942:1 1945:4 1948:2 1949:1 1952:1 1954:2 1959:1 1960:2 1961:1 1963:3 1965:2 1968:3 1970:2 1973:1 1976:2 1978:1 1981:2 1992:1 1994:1 1999:1 2000:1 2024:1 2034:1 2038:1 2045:1 2055:1 2074:1 2076:1 2077:1 2102:1 2110:1 2115:1 2140:1 2157:1 2164:1 2167:1 2169:1 2173:1 2188:1 2218:1 2222:1 2241:1 2253:1 2254:1 2267:1 2272:1 2273:1 2282:1 2287:1 2303:1 2308:1 2317:1 2319:2 2321:1 2325:2 2328:1 2329:1 2353:1 2359:1 2365:1 2374:1 2383:1 2390:1 2393:1 2405:1 2409:2 2423:1 2434:1 2451:3 2461:2 2462:9 2464:2 2478:1 2480:2 2481:3 2491:1 2500:1 2507:9 2535:1 2589:1 2597:2 2606:1 2611:1 2636:1 2645:3 2678:1 2685:1 2689:1 2700:1 2718:1 2745:1 2753:1 2754:1 2764:1 2770:1 2779:3 2802:3 2807:1 2826:3 2831:1 2839:1 2842:1 2843:1 2849:1 2853:1 2876:1 2898:1 2941:1 2948:1 2950:1 2993:2 2999:1 3002:1 3049:2 3059:2 3063:2 3068:1 3089:1 3090:1 3093:1 3095:1 3103:3 3118:1 3129:1 3131:1 3135:1 3136:1 3139:1 3147:2 3173:2 3183:2 3184:2 3221:4 3222:1 3234:1 3237:6 3288:1 3301:1 3306:1 3312:6 3323:1 3326:2 3328:1 3355:1 3358:1 3367:1 3369:2 3377:1 3391:1 3399:2 3407:2 3408:1 3416:1 3428:1 3442:1 3450:1 3467:1 3481:1 3495:1 3514:1 3519:1 3537:1 3572:1 3596:1 3598:1 3620:1 3622:1 3628:1 3653:1 3655:1 3660:2 3661:1 3666:1 3678:1 3681:1 3710:2 3729:1 3737:1 3740:1 3770:1 3773:1 3777:1 3801:1 3803:2 3831:1 3832:1 3837:1 3840:1 3845:1 3856:1 3868:1 3878:1 3889:1 3902:2 3904:1 3911:1 3928:4 3938:2 3939:1 3992:1 4003:1 4019:1 4046:1 4047:1 4073:1 4082:1 4091:1 4099:1 4107:13 4116:1 4143:1 4159:1 4160:1 4192:3 4197:1 4198:7 4211:3 4212:2 4214:1 4216:1 4218:1 4222:1 4223:1 4228:1 4229:1 4230:2 4231:3 4234:3 4237:1 4238:1 4248:2 4275:1 4302:1 4319:1 4323:1 4351:1 4364:4 4368:1 4384:1 4391:1 4394:1 4403:1 4409:3 4412:1 4420:1 4436:1 4450:2 4464:1 4470:1 4498:3 4506:1 4529:1 4539:1 4546:4 4561:1 4620:1 4621:2 4625:1 4628:1 4633:2 4644:1 4650:1 4654:1 4658:1 4662:2 4667:1 4673:1 4675:1 4681:1 4689:3 4703:3 4729:1 4741:1 4757:2 4768:1 4771:1 4787:1 4794:1 4818:1 4821:1 4823:1 4826:1 4831:1 4836:2 4854:1 4861:1 4872:1 4876:2 4926:4 4927:2 4950:2 4953:2 4958:1 4959:2 4986:1 4994:1 5016:1 5025:1 5049:3 5054:1 5075:1 5090:2 5096:1 5100:2 5103:1 5127:1 5130:1 5142:1 5146:2 5187:3 5189:1 5192:3 5205:1 5215:1 5217:1 5225:1 5247:3 5248:1 5260:1 5263:1 5264:1 5276:1 5282:2 5289:1 5308:2 5310:2 5314:1 5322:3 5324:1 5325:1 5332:2 5335:1 5337:1 5338:1 5340:3 5342:1 5347:2 5349:4 5350:2 5352:4 5396:1 5398:1 5409:1 5426:4 5437:4 5451:2 5488:1 5489:1 5520:1 5535:1 5592:2 5604:1 5609:1 5615:1 5616:2 5625:1 5629:2 5630:1 5634:1 5655:1 5656:1 5663:1 5665:1 5668:1 5672:2 5674:4 5686:2 5688:1 5689:1 5693:1 5702:1 5703:1 5709:1 5717:1 5726:2 5774:1 5783:3 5797:1 5807:3 5808:1 5818:1 5819:1 5823:1 5837:1 5874:1 5878:2 5890:1 5914:1 5917:1 5930:1 5947:6 5948:1 5959:1 5968:1 5970:1 5998:2 6021:1 6035:1 6039:1 6040:1 6052:2 6071:1 6084:1 6096:1 6116:1 6124:1 6130:1 6147:1 6155:1 6175:3 6183:3 6192:1 6194:1 6200:1 6201:1 6209:1 6223:1 6231:1 6232:1 6237:2 6241:1 6248:1 6255:1 6260:1 6261:1 6269:1 6276:1 6285:2 6286:1 6289:1 6305:1 6324:1 6332:1 6354:1 6359:4 6365:9 6375:1 6382:1 6384:1 6386:4 6387:1 6410:1 6416:1 6429:29 6436:1 6449:5 6451:11 6460:1 6486:1 6497:2 6501:1 6508:1 6545:1 6551:1 6599:1 6619:1 6655:1 6669:3 6677:3 6680:1 6700:1 6771:1 6781:1 6785:1 6789:1 6806:1 6810:9 6816:2 6818:1 6821:1 6824:1 6841:1 6854:1 6859:24 6882:1 6906:1 6908:1 6918:1 6926:1 6981:1 7017:1 7020:1 7030:1 7038:3 7054:2 7056:1 7068:3 7077:1 7084:1 7086:1 7110:1 7115:1 7121:1 7125:1 7156:1 7157:2 7164:1 7166:3 7169:1 7170:4 7172:1 7173:1 7174:1 7177:2 7182:4 7192:1 7193:1 7194:2 7222:1 7257:2 7262:2 7263:1 7280:1 7303:1 7305:1 7325:1 7331:1 7364:1 7371:1 7384:1 7400:1 7409:2 7423:1 7425:1 7432:3 7434:1 7437:1 7443:1 7451:1 7457:1 7459:1 7461:3 7488:1 7505:1 7519:1 7521:1 7526:1 7535:1 7539:1 7541:1 7571:1 7573:2 7581:6 7590:4 7594:1 7596:1 7604:3 7615:1 7628:1 7649:1 7656:1 7665:1 7678:1 7686:1 7712:1 7731:1 7753:1 7777:1 7787:3 7790:1 7798:1 7803:1 7804:1 7805:1 7810:1 7821:1 7868:1 7878:1 7896:1 7912:2 7922:1 7927:1 7930:2 7932:1 7943:1 7944:1 7950:1 7964:4 7975:1 7980:1 7988:3 8013:1 8036:1 8048:1 8049:3 8061:1 8064:3 8067:1 8070:6 8071:1 8080:3 8099:1 8118:1 8121:1 8138:2 8139:1 8143:2 8162:9 8166:1 8174:1 8177:1 8189:1 8195:1 8196:1 8200:1 8205:1 8212:1 8215:1 8222:2 8226:1 8285:2 8293:1 8296:3 8297:1 8304:2 8317:1 8348:2 8352:2 8363:2 8379:1 8382:1 8387:2 8392:1 8437:2 8443:1 8444:2 8480:1 8508:2 8517:1 8532:2 8536:1 8566:1 8570:1 8574:1 8575:1 8581:2 8617:3 8679:4 8682:2 8684:1 8700:1 8736:2 8746:1 8753:1 8759:1 8760:1 8769:1 8778:3 8785:1 8789:2 8801:2 8802:2 8807:1 8809:2 8814:3 8815:1 8817:1 8818:1 8822:1 8824:1 8828:1 8829:1 8832:1 8833:2 8840:1 8841:1 8843:1 8856:2 8857:2 8867:1 8881:1 8891:3 8897:1 8903:1 8905:1 8907:1 8910:1 8914:4 8916:7 8949:1 8960:2 8975:1 8977:1 8981:1 8989:4 8997:1 9001:3 9070:1 9080:1 9090:1 9101:4 9102:2 9106:1 9108:1 9145:3 9162:1 9167:1 9173:2 9192:1 9193:1 9198:1 9200:1 9202:1 9205:1 9215:1 9222:1 9225:1 9252:6 9260:2 9282:1 9289:1 9313:1 9317:1 9321:1 9338:1 9346:1 9359:3 9363:2 9388:1 9389:1 9399:1 9411:1 9416:1 9424:1 9433:1 9440:1 9442:1 9459:1 9472:1 9486:2 9488:7 9525:1 9536:2 9542:1 9543:2 9545:1 9547:2 9548:1 9559:1 9561:1 9563:3 9586:1 9587:1 9610:1 9621:1 9624:2 9639:1 9653:5 9656:2 9659:1 9668:1 9682:2 9687:1 9695:1 9696:1 9698:1 9703:1 9707:1 9710:1 9716:1 9723:2 9727:1 9730:1 9743:1 9745:1 9760:1 9762:1 9763:5 9772:3 9778:8 9810:1 9815:1 9822:1 9823:11 9852:1 9880:1 9881:1 9899:1 9904:1 9911:1 9918:2 9923:4 9949:1 9974:3 9989:1 10001:1 10018:1 10022:3 10037:2 10046:1 10053:2 10054:2 10061:1 10070:1 10074:3 10079:1 10089:1 10095:1 10105:1 10118:1 10130:1 10144:1 10146:1 10151:2 10163:2 10169:1 10179:1 10225:1 10233:1 10265:1 10281:3 10290:1 10304:1 10337:1 10363:1 10364:2 10391:1 10413:1 10416:1 10430:1 10477:1 10480:8 10483:1 10487:2 10494:1 10502:1 10505:1 10513:1 10531:1 10550:11 10556:1 10571:1 10576:2 10598:2 10621:2 10637:1 10652:1 10687:1 10695:1 10724:1 10725:1 10733:1 10739:4 10753:1 10754:1 10787:1 10818:2 10836:4 10844:1 10846:1 10847:3 10851:2 10861:2 10870:1 10871:8 10872:1 10874:1 10897:1 10901:1 10921:1 10923:2 10942:2 10943:1 10962:1 10969:1 10970:8 10974:1 10982:1 10985:14 11001:1 11016:1 11046:3 11065:1 11087:2 11101:2 11118:1 11123:1 11143:1 11156:1 11159:2 11163:2 11168:1 11187:1 11191:1 11220:1 11224:1 11273:1 11275:1 11277:1 11280:5 11281:1 11287:1 11289:1 11297:1 11301:2 11311:1 11322:1 11329:1 11332:1 11340:1 11342:1 11368:10 11375:1 11376:2 11406:1 11407:2 11408:1 11415:1 11419:1 11432:2 11439:1 11447:2 11449:1 11451:2 11459:1 11509:5 11512:2 11531:2 11554:1 11564:2 11607:1 11612:1 11613:1 11614:2 11638:2 11657:1 11665:1 11697:2 11699:1 11704:1 11712:1 11717:1 11718:1 11744:1 11747:1 11777:1 11788:1 11806:1 11808:1 11812:1 11813:2 11816:1 11818:1 11825:1 11833:1 11855:1 11856:1 11861:2 11881:1 11900:1 11902:4 11910:1 11927:4 11942:1 11958:1 11979:1 11985:1 11990:3 11997:1 12006:4 12016:2 12020:1 12025:1 12035:1 12036:1 12045:1 12050:2 12054:1 12060:1 12069:1 12089:1 12091:1 12099:1 12100:1 12105:1 12114:1 12115:1 12123:1 12141:1 12144:1 12151:1 12157:1 12173:1 12175:1 12176:1 12218:1 12229:1 12251:1 12263:3 12269:1 12276:2 12287:1 12303:3 12341:1 12346:1 12366:1 12368:1 12372:1 12383:4 12387:1 12389:1 12408:1 12432:1 12436:1 12437:2 12472:1 12473:1 12474:1 12490:1 12525:1 12550:3 12559:1 12582:3 12583:1 12584:1 12586:1 12602:1 12630:1 12633:1 12667:1 12689:1 12706:1 12716:1 12723:1 12732:1 12739:1 12741:28 12766:1 12770:1 12778:1 12816:1 12822:1 12828:1 12859:1 12863:1 12872:2 12877:1 12897:1 12911:1 12929:1 12948:1 12950:4 12956:1 12958:2 12959:1 12961:2 12969:1 12975:1 12981:1 12983:1 12984:1 12986:1 12988:4 12989:1 12995:1 12997:1 13000:1 13012:1 13030:2 13031:1 13069:1 13070:1 13082:1 13094:5 13095:5 13113:1 13121:1 13140:1 13173:1 13202:1 13207:2 13221:1 13225:1 13246:1 13251:1 13259:1 13270:1 13292:2 13295:2 13300:1 13322:1 13328:4 13339:1 13352:1 13363:1 13371:1 13373:1 13378:1 13382:1 13383:4 13390:1 13405:1 13410:2 13418:1 13424:1 13425:1 13430:1 13431:2 13434:1 13435:2 13437:2 13442:1 13444:3 13445:1 13448:1 13449:1 13453:3 13455:1 13456:1 13459:5 13462:1 13469:1 13482:3 13495:1 13525:2 13545:1 13554:1 13570:1 13622:1 13637:1 13641:1 13670:1 13675:1 13703:2 13719:1 13739:1 13743:1 13746:1 13752:2 13758:2 13765:2 13766:1 13767:1 13775:1 13812:1 13818:1 13819:2 13826:1 13835:2 13837:5 13843:2 13846:1 13867:1 13868:1 13876:2 13895:1 13906:2 13907:1 13924:2 13925:3 13928:9 13931:2 13965:2 13966:1 13970:1 13972:2 13977:2 13979:3 13994:2 14000:1 14003:2 14008:1 14031:2 14035:2 14039:2 14046:1 14052:2 14071:1 14074:1 14077:1 14094:1 14097:1 14100:1 14101:1 14108:1 14114:1 14118:1 14122:1 14124:1 14125:1 14142:1 14154:1 14156:1 14178:1 14189:1 14200:1 14207:1 14210:1 14223:1 14240:2 14245:1 14246:1 14254:1 14262:1 14275:2 14307:1 14325:1 14330:1 14332:1 14344:1 14368:1 14371:1 14372:1 14393:1 14398:1 14403:2 14443:1 14446:1 14449:1 14462:1 14465:1 14468:1 14491:1 14516:1 14518:2 14539:2 14544:2 14550:1 14553:1 14570:1 14574:1 14575:1 14577:1 14585:1 14593:1 14596:2 14627:1 14637:1 14640:1 14645:1 14665:1 14677:6 14696:1 14713:1 14714:1 14719:3 14721:1 14740:1 14744:2 14762:3 14764:1 14768:2 14774:1 14775:1 14781:1 14783:1 14803:1 14806:1 14820:1 14825:1 14830:1 14833:1 14837:1 14844:4 14853:3 14856:1 14864:1 14877:1 14880:1 14885:1 14887:1 14889:1 14903:8 14929:2 14931:2 14963:1 14975:1 14976:1 14981:1 15024:1 15035:1 15056:1 15067:1 15070:1 15080:1 15112:1 15116:1 15129:1 15139:1 15142:1 15147:2 15179:1 15184:1 15191:1 15205:2 15215:1 15227:1 15251:1 15282:3 15283:1 15307:6 15312:2 15315:1 15328:1 15367:1 15370:1 15371:1 15389:1 15446:1 15477:1 15480:2016 15482:2 15496:3 15503:1 15514:1 15532:1 15543:1 15564:1 15575:1 15577:1 15583:2 15587:1 15602:1 15611:1 15623:1 15633:1 15635:1 15646:4 15655:1 15658:3 15661:1 15662:2 15663:1 15672:2 15684:1 15708:1 15723:4 15725:2 15742:1 15762:1 15773:1 15800:2 15834:3 15883:1 15887:2 15898:1 15929:2 15936:1 15944:1 15949:1 15990:1 16002:1 16009:1 16019:1 16037:1 16042:2 16046:1 16054:3 16074:4 16095:2 16102:2 16110:1 16117:1 16121:1 16129:1 16151:1 16152:5 16159:1 16170:1 16171:2 16176:1 16177:1 16206:8 16212:1 16219:1 16235:1 16239:1 16268:1 16271:1 16307:1 16331:1 16332:1 16341:1 16361:1 16362:1 16380:1 16387:2 16402:1 16408:1 16414:1 16416:1 16432:2 16434:3 16443:4 16449:1 16462:1 16479:1 16482:1 16485:2 16495:1 16500:1 16514:1 16522:2 16538:1 16541:1 16548:1 16573:1 16593:1 16596:1 16611:1 16618:2 16630:1 16650:1 16661:1 16669:8 16676:1 16679:1 16681:1 16706:1 16712:1 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:4 16763:2 16768:2 16781:1 16782:1 16787:1 16795:2 16797:1 16811:1 16815:7 16823:3 16826:1 16844:1 16855:1 16856:1 16861:1 16908:1 16945:1 16947:1 16965:3 16981:1 17001:3 17014:2 17017:1 17027:1 17043:1 17046:5 17050:4 17056:1 17058:2 17090:1 17101:1 17109:1 17130:1 17138:2 17144:1 17163:1 17168:1 17188:4 17197:1 17210:1 17219:1 17221:1 17223:1 17234:1 17238:1 17255:1 17261:1 17275:1 17305:1 17311:4 17329:1 17352:1 17358:2 17362:2 17380:1 17400:1 17429:1 17437:3 17443:1 17452:1 17485:10 17491:2 17496:2 17501:1 17510:4 17532:1 17535:1 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17571:1 17590:1 17601:1 17604:1 17610:2 17648:1 17649:1 17685:1 17687:1 17706:4 17724:2 17735:1 17738:3 17745:1 17747:2 17750:1 17774:1 17806:1 17807:1 17812:1 17813:1 17827:1 17835:4 17837:1 17838:1 17839:1 17851:1 17852:1 17857:1 17867:1 17879:1 17884:1 17893:1 17908:1 17916:2 17921:1 17929:1 17943:1 17958:1 17965:2 17980:2 17993:2 17995:2 17996:2 18035:1 18037:1 18043:2 18053:2 18066:1 18087:1 18088:2 18091:1 18092:1 18093:1 18130:1 18131:1 18166:1 18176:1 18186:1 18196:3 18197:3 18199:3 18204:1 18207:1 18210:1 18228:1 18231:2 18234:2 18237:1 18244:1 18249:2 18261:1 18264:1 18285:1 18296:1 18318:1 18339:1 18341:2 18347:1 18360:3 18366:2 18378:3 18392:1 18406:1 18421:1 18425:1 18434:2 18459:1 18474:1 18479:1 18491:1 18498:2 18505:1 18506:4 18509:1 18511:1 18537:1 18542:1 18558:1 18565:1 18567:2 18573:2 18575:2 18577:1 18578:1 18581:1 18616:1 18619:1 18631:1 18641:1 18643:1 18644:1 18658:1 18666:1 18676:1 18686:1 18693:2 18704:1 18715:1 18727:2 18729:1 18732:2 18739:3 18742:1 18776:1 18784:1 18803:1 18807:1 18820:2 18842:1 18843:1 18854:1 18856:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:2 18939:1 18941:2 18943:1 18946:1 18948:1 18949:1 18961:1 18965:1 18975:3 18976:3 18978:1 18985:1 18990:3 19007:1 19029:2 19033:1 19036:1 19053:1 19070:1 19080:1 19096:3 19123:1 19134:4 19145:1 19156:2 19187:2 19193:1 19201:1 19212:1 19213:1 19218:1 19225:1 19229:1 19233:1 19237:1 19249:1 19278:1 19289:1 19325:1 19336:1 19349:2 19360:1 19365:3 19369:1 19371:1 19376:2 19406:1 19417:1 19425:3 19427:1 19431:1 19435:1 19438:3 19443:1 19444:1 19446:1 19470:1 19474:1 19480:1 19486:1 19493:1 19494:2 19507:1 19508:1 19523:1 19525:1 19532:1 19540:1 19559:4 19562:1 19565:1 19573:1 19580:1 19587:1 19611:1 19615:3 19637:1 19638:2 19644:1 19666:1 19716:2 19718:1 19730:1 19744:1 19746:1 19748:1 19789:1 19810:2 19823:1 19832:3 19870:1 19901:1 19902:8 19974:2 20000:1 20007:1 20013:1 20022:1 20031:1 20040:2 20051:1 20055:1 20063:1 20068:3 20076:1 20083:2 20084:7 20087:1 20089:1 20102:1 20107:1 20109:1 20122:1 20126:2 20139:1 20152:1 20155:1 20173:1 20196:1 20204:1 20252:1 20266:1 20268:1 20270:1 20273:1 20274:1 20275:1 20276:1 20281:1 20287:1 20305:1 20318:1 20327:3 20331:1 20332:2 20334:1 20337:4 20343:1 20344:1 20360:1 20366:4 20378:5 20379:1 20393:1 20411:1 20412:1 20432:1 20441:1 20442:1 20447:1 20448:1 20460:1 20469:2 20473:1 20480:2 20485:1 20490:2 20493:1 20508:1 20512:2 20545:1 20563:1 20567:1 20595:1 20599:2 20630:1 20638:1 20651:2 20659:1 20663:1 20670:1 20686:6 20718:1 20722:1 20723:1 20734:1 20738:1 20742:6 20750:1 20751:1 20753:1 20755:1 20762:1 20769:1 20785:2 20786:1 20847:1 20878:1 20909:1 20928:2 20930:5 20949:2 20955:1 20958:1 20962:2 20964:1 20965:1 20970:2 20989:1 20993:1 21007:1 21099:1 21100:1 21104:1 21111:1 21112:1 21134:1 21136:1 21137:1 21139:1 21154:1 21159:1 21189:1 21190:1 21204:1 21205:1 21208:1 21209:1 21245:1 21267:1 21279:1 21319:1 21337:1 21361:4 21363:1 21364:5 21371:1 21413:1 21438:1 21441:2 21480:4 21486:1 21503:1 21512:1 21520:1 21522:1 21551:1 21556:1 21557:1 21559:1 21561:2 21576:1 21586:1 21587:1 21594:1 21602:1 21612:3 21628:1 21630:1 21632:1 21637:3 21642:1 21663:1 21665:1 21671:1 21693:1 21695:1 21697:4 21703:1 21707:1 21716:1 21738:1 21740:1 21748:1 21760:5 21761:1 21773:2 21787:1 21812:1 21831:3 21841:1 21844:2 21857:1 21869:2 21887:1 21905:1 21914:1 21923:1 21926:1 21934:1 21952:1 21974:1 21977:2 21984:1 21996:1 21998:1 22001:1 22010:2 22013:3 22014:1 22027:2 22043:1 22048:2 22058:1 22062:1 22065:1 22068:1 22080:3 22108:2 22114:2 22124:1 22138:1 22152:1 22173:1 22186:1 22193:1 22195:1 22208:1 22242:1 22247:1 22322:1 22379:1 22386:1 22390:1 22394:1 22419:1 22423:1 22425:1 22429:1 22462:1 22511:1 22515:1 22527:1 22528:3 22547:1 22548:2 22550:1 22553:1 22562:1 22571:1 22572:1 22585:3 22593:1 22601:1 22602:1 22611:4 22624:1 22657:1 22666:1 22669:4 22672:1 22690:2 22693:1 22699:1 22740:4 22749:2 22750:1 22755:1 22759:1 22760:2 22769:1 22779:1 22786:1 22801:2 22804:1 22815:2 22817:1 22822:1 22823:1 22825:1 22831:1 22837:1 22846:1 22854:1 22869:1 22874:1 22894:2 22897:1 22912:1 22914:1 22916:3 22925:1 22939:1 22942:1 22951:1 22957:1 22990:1 22991:1 23005:1 23006:2 23007:1 23022:4 23039:1 23048:1 23050:2 23066:1 23074:2 23088:1 23089:6 23109:2 23113:1 23138:1 23151:1 23206:1 23248:3 23284:1 23305:3 23314:2 23324:1 23325:1 23339:1 23341:1 23360:4 23363:1 23385:1 23404:1 23405:1 23430:18 23431:1 23432:1 23446:1 23459:1 23466:10 23472:1 23474:1 23476:2 23481:1 23490:1 23518:2 23527:1 23541:1 23546:1 23551:3 23558:3 23586:8 23587:1 23610:1 23623:1 23639:1 23645:2 23647:1 23655:1 23694:1 23698:1 23719:1 23739:1 23740:1 23754:1 23758:1 23784:1 23796:4 23797:3 23840:1 23847:1 23849:1 23852:1 23853:2 23858:1 23862:1 23868:1 23939:1 23951:1 23956:4 23961:1 23964:1 23966:1 23967:1 23970:1 23971:10 23985:1 23990:1 24000:1 24005:1 24006:2 24012:1 24028:1 24042:1 24049:1 24057:1 24101:1 24108:1 24117:1 24126:1 24139:1 24145:1 24153:1 24162:3 24170:2 24196:1 24223:1 24225:1 24253:1 24261:1 24293:1 24301:1 24302:1 24306:1 24307:1 24315:1 24317:1 24320:1 24324:1 24341:1 24347:2 24353:1 24362:1 24370:1 24376:1 24379:1 24384:1 24392:1 24393:1 24401:3 24409:1 24410:1 24411:2 24418:1 24421:1 24438:1 24440:1 24449:1 24455:1 24463:1 24466:1 24469:3 24470:1 24473:2 24476:3 24479:1 24480:1 24483:2 24487:1 24491:1 24504:1 24523:1 24525:3 24530:1 24535:1 24536:1 24552:1 24563:1
20 13:1 25:1 29:1 30:1 34:2 37:1 45:1 53:1 61:1 72:1 76:1 85:7 88:1 96:1 105:1 112:1 113:1 150:1 162:1 164:1 172:1 175:1 186:1 216:3 218:2 240:3 241:1 276:1 296:2 298:1 314:1 339:1 341:2 348:1 377:1 407:3 441:1 489:1 492:1 509:1 510:3 516:1 527:2 541:2 565:2 566:1 568:3 640:1 694:1 713:1 720:1 752:2 754:1 762:2 766:1 778:1 784:1 785:3 788:1 795:1 805:1 814:3 825:1 828:1 831:3 833:1 834:5 835:1 838:4 846:1 857:1 862:1 869:4 881:1 888:3 889:3 892:2 899:1 906:1 912:1 937:1 946:1 948:2 952:1 960:1 967:1 989:1 994:1 1005:1 1009:4 1015:4 1043:1 1044:1 1047:1 1065:1 1074:1 1078:1 1080:1 1094:1 1095:1 1108:1 1110:1 1112:1 1114:1 1131:1 1137:1 1142:1 1158:1 1172:1 1208:1 1212:1 1220:2 1230:2 1236:1 1241:1 1242:1 1257:1 1258:1 1259:4 1267:2 1274:4 1293:1 1296:1 1297:1 1301:1 1311:3 1328:13 1330:2 1332:7 1340:2 1343:1 1345:1 1352:1 1353:2 1360:1 1372:1 1376:1 1381:9 1395:1 1396:1 1418:1 1420:1 1429:1 1435:1 1436:1 1460:2 1476:1 1484:1 1506:1 1507:5 1510:2 1517:2 1526:1 1546:1 1552:2 1568:1 1591:1 1612:2 1617:3 1619:2 1629:1 1639:2 1641:1 1644:1 1661:1 1663:1 1666:1 1670:1 1700:1 1703:2 1719:1 1731:4 1745:1 1763:1 1766:3 1771:1 1774:1 1775:1 1782:1 1815:1 1826:5 1828:1 1838:1 1846:1 1853:2 1854:2 1856:1 1875:2 1877:8 1879:5 1882:1 1883:1 1889:1 1891:2 1892:3 1894:2 1895:1 1898:1 1908:1 1909:2 1912:2 1930:1 1939:2 1941:1 1942:2 1945:4 1948:2 1949:1 1952:1 1954:2 1959:1 1960:2 1961:1 1963:3 1965:2 1968:3 1970:2 1973:1 1976:2 1978:1 1981:2 1992:1 1994:1 1999:1 2000:1 2024:1 2034:1 2038:1 2045:1 2055:1 2074:1 2076:1 2077:1 2102:1 2110:1 2115:1 2140:1 2157:1 2164:1 2167:1 2169:1 2173:1 2188:1 2218:1 2222:1 2241:1 2253:1 2254:1 2267:2 2272:1 2273:1 2282:1 2287:1 2303:1 2308:1 2317:1 2319:2 2321:1 2325:2 2328:1 2329:1 2353:1 2359:1 2365:1 2374:1 2383:1 2390:1 2393:1 2405:1 2409:2 2423:1 2434:1 2451:3 2461:2 2462:9 2464:2 2478:1 2480:2 2481:3 2491:1 2500:1 2507:9 2535:1 2589:1 2597:2 2606:1 2611:1 2636:1 2645:3 2678:1 2685:1 2689:1 2700:1 2718:1 2745:1 2753:1 2754:1 2764:2 2770:1 2779:3 2802:3 2807:1 2826:3 2831:1 2839:1 2842:1 2843:1 2849:1 2853:1 2876:1 2898:1 2941:1 2948:1 2950:1 2993:2 2999:1 3002:1 3049:2 3059:2 3063:2 3068:1 3089:1 3090:1 3093:1 3095:1 3103:5 3118:1 3129:1 3131:1 3135:1 3136:1 3139:1 3147:2 3173:2 3183:2 3184:3 3221:5 3222:1 3234:1 3237:6 3288:1 3301:1 3306:1 3312:6 3323:1 3326:2 3328:1 3355:1 3358:1 3367:1 3369:2 3377:1 3391:1 3399:2 3407:2 3408:1 3416:1 3428:1 3442:1 3450:1 3467:1 3481:1 3495:1 3514:1 3519:1 3537:1 3572:1 3596:1 3598:1 3620:1 3622:1 3628:1 3653:1 3655:1 3660:2 3661:1 3666:1 3678:1 3681:1 3710:2 3729:1 3737:1 3740:1 3770:1 3773:1 3777:1 3801:1 3803:2 3831:1 3832:1 3837:1 3840:1 3845:1 3856:1 3868:1 3878:1 3889:1 3902:2 3904:1 3911:1 3928:4 3938:2 3939:1 3992:1 4003:1 4019:1 4046:1 4047:1 4073:1 4082:1 4091:1 4099:1 4107:14 4116:1 4136:1 4143:1 4159:1 4160:1 4192:3 4197:1 4198:7 4211:3 4212:2 4214:1 4216:1 4218:1 4222:1 4223:1 4228:1 4229:1 4230:2 4231:3 4234:3 4237:1 4238:1 4248:2 4275:1 4302:1 4319:1 4323:1 4351:1 4364:4 4368:1 4384:1 4391:1 4394:1 4403:1 4409:3 4412:1 4420:1 4436:1 4450:2 4464:1 4470:1 4498:3 4506:1 4529:1 4539:1 4546:4 4561:1 4620:1 4621:2 4625:1 4628:1 4633:2 4644:1 4650:1 4654:1 4658:1 4662:2 4667:1 4673:1 4675:1 4681:1 4689:3 4703:3 4729:1 4741:1 4757:2 4768:1 4771:1 4787:1 4794:1 4818:1 4821:1 4823:1 4826:1 4831:1 4836:2 4854:1 4861:1 4872:1 4876:2 4926:4 4927:2 4950:2 4953:2 4958:1 4959:2 4986:1 4994:1 5016:1 5025:1 5049:3 5054:1 5075:1 5090:2 5096:1 5100:2 5103:1 5127:1 5130:1 5142:1 5146:2 5187:3 5189:1 5192:3 5205:1 5215:1 5217:1 5225:1 5247:3 5248:1 5260:1 5263:1 5264:1 5276:1 5282:2 5289:1 5308:2 5310:2 5314:1 5322:3 5324:1 5325:1 5332:2 5335:1 5337:1 5338:1 5340:4 5342:1 5347:2 5349:4 5350:2 5352:4 5396:1 5398:1 5409:1 5426:4 5437:4 5451:2 5488:1 5489:1 5520:1 5535:1 5592:2 5604:1 5609:1 5615:1 5616:2 5625:1 5629:2 5630:1 5634:1 5655:1 5656:1 5663:1 5665:1 5668:1 5672:2 5674:4 5686:2 5688:1 5689:1 5693:1 5702:1 5703:1 5709:1 5717:1 5726:2 5774:1 5783:3 5797:1 5807:3 5808:1 5818:1 5819:1 5823:1 5837:1 5874:1 5878:2 5890:1 5914:1 5917:1 5930:1 5947:6 5948:1 5959:1 5968:1 5970:1 5998:2 6021:1 6035:1 6039:1 6040:1 6052:2 6057:1 6071:1 6084:1 6096:1 6116:1 6124:1 6130:1 6147:1 6155:2 6175:3 6183:3 6192:1 6194:1 6200:1 6201:1 6209:1 6223:1 6231:1 6232:1 6237:2 6241:1 6248:1 6255:1 6260:1 6261:1 6269:1 6276:1 6285:2 6286:1 6289:1 6305:1 6324:1 6332:1 6354:1 6359:4 6365:9 6375:1 6382:1 6384:1 6386:4 6387:1 6410:1 6416:1 6429:30 6436:1 6449:5 6451:11 6460:1 6486:1 6497:2 6501:1 6508:1 6545:1 6551:1 6599:1 6607:1 6619:1 6655:1 6669:3 6677:3 6680:1 6700:1 6771:1 6781:1 6785:1 6789:1 6797:1 6806:1 6810:9 6816:2 6818:1 6821:1 6824:1 6841:1 6854:1 6859:27 6882:1 6906:1 6908:1 6918:1 6926:1 6981:1 7017:1 7020:1 7030:1 7038:4 7054:2 7056:1 7068:3 7077:1 7084:1 7086:2 7110:1 7115:1 7121:1 7125:1 7156:1 7157:2 7164:1 7166:3 7169:1 7170:4 7172:1 7173:1 7174:1 7177:2 7182:4 7192:1 7193:1 7194:2 7222:1 7257:2 7262:2 7263:1 7280:1 7303:2 7305:1 7325:1 7331:1 7364:1 7371:2 7384:1 7400:1 7409:2 7423:1 7425:1 7432:3 7434:1 7437:1 7443:1 7451:1 7457:1 7459:1 7461:3 7488:1 7505:1 7519:1 7521:1 7526:1 7535:1 7539:1 7541:1 7571:1 7573:2 7581:6 7590:4 7594:1 7596:1 7604:3 7615:1 7628:1 7649:1 7656:1 7665:1 7678:1 7686:1 7712:1 7731:1 7753:1 7777:1 7787:3 7790:1 7798:1 7803:1 7804:1 7805:1 7810:1 7821:1 7865:1 7868:1 7878:1 7896:1 7912:2 7922:1 7927:1 7930:2 7932:1 7943:1 7944:1 7950:1 7964:4 7975:1 7980:1 7988:3 8013:1 8036:1 8048:1 8049:4 8061:1 8064:3 8067:1 8070:6 8071:1 8080:3 8099:1 8118:1 8121:1 8138:2 8139:1 8143:2 8162:9 8166:1 8174:1 8177:1 8189:1 8195:1 8196:1 8200:1 8205:1 8212:1 8215:1 8222:2 8226:1 8285:2 8293:1 8296:3 8297:1 8304:2 8317:1 8348:2 8352:2 8363:2 8379:1 8382:1 8387:2 8392:1 8437:2 8443:1 8444:2 8480:1 8508:2 8517:2 8532:2 8536:1 8566:1 8570:1 8574:1 8575:1 8581:2 8617:3 8663:1 8679:4 8682:2 8684:1 8700:1 8736:2 8746:1 8753:1 8759:1 8760:1 8769:1 8778:3 8783:1 8785:1 8789:2 8801:2 8802:2 8807:1 8809:2 8814:3 8815:1 8817:1 8818:1 8822:1 8824:1 8828:1 8829:1 8832:1 8833:2 8840:1 8841:1 8843:1 8856:3 8857:2 8867:1 8881:1 8891:3 8897:1 8903:1 8905:1 8907:1 8910:1 8914:4 8916:7 8949:1 8960:2 8975:1 8977:1 8981:1 8989:4 8997:1 9001:3 9070:1 9080:1 9090:1 9101:4 9102:2 9106:1 9108:1 9145:3 9162:1 9167:1 9173:2 9192:1 9193:1 9198:1 9200:1 9202:1 9205:1 9215:1 9222:1 9225:1 9252:6 9260:2 9282:1 9289:1 9313:1 9317:1 9321:1 9338:1 9346:1 9359:3 9363:2 9388:1 9389:1 9399:1 9411:1 9416:1 9424:1 9433:1 9440:1 9442:1 9459:1 9472:1 9486:2 9488:7 9525:1 9536:2 9542:1 9543:2 9545:1 9547:2 9548:1 9559:1 9561:1 9563:3 9586:1 9587:1 9610:1 9621:1 9624:2 9639:1 9653:5 9656:3 9659:1 9668:1 9682:2 9687:1 9695:1 9696:1 9698:1 9703:1 9707:1 9710:1 9716:1 9723:2 9727:1 9730:1 9743:1 9745:1 9760:1 9762:1 9763:5 9772:3 9778:8 9810:1 9815:1 9822:1 9823:11 9852:1 9880:1 9881:1 9899:1 9904:1 9911:1 9918:2 9923:4 9949:1 9974:3 9989:1 10001:1 10018:1 10022:3 10037:2 10046:1 10053:2 10054:2 10060:1 10061:1 10070:1 10074:3 10079:1 10089:1 10095:1 10105:1 10118:1 10130:1 10144:1 10146:1 10151:2 10163:3 10169:1 10179:1 10225:1 10233:1 10265:1 10281:3 10290:1 10304:1 10337:1 10363:1 10364:2 10391:1 10413:1 10416:1 10430:1 10477:1 10480:8 10483:1 10487:2 10494:1 10502:1 10505:1 10513:1 10531:1 10550:11 10556:1 10571:1 10576:2 10598:2 10621:2 10637:1 10652:1 10687:1 10695:1 10724:1 10725:1 10733:1 10739:4 10753:1 10754:1 10787:1 10818:2 10836:4 10844:1 10846:1 10847:3 10851:2 10861:2 10870:1 10871:8 10872:1 10874:1 10897:1 10901:1 10921:1 10923:2 10942:2 10943:1 10962:1 10969:1 10970:8 10974:1 10982:1 10985:14 11001:1 11016:1 11046:3 11065:1 11087:2 11101:2 11118:1 11123:1 11143:1 11156:1 11159:2 11163:2 11168:1 11187:1 11191:1 11220:1 11224:1 11273:1 11275:1 11277:1 11280:5 11281:1 11287:1 11289:1 11297:1 11301:2 11311:1 11317:1 11322:1 11329:1 11332:1 11340:1 11342:1 11368:10 11375:1 11376:2 11406:1 11407:2 11408:1 11415:1 11419:1 11432:2 11439:1 11447:2 11449:1 11451:2 11459:1 11509:5 11512:2 11531:2 11554:1 11564:2 11607:1 11612:1 11613:1 11614:2 11638:2 11657:1 11665:1 11697:2 11699:1 11704:1 11712:1 11717:1 11718:1 11744:1 11747:1 11777:1 11788:1 11806:1 11808:1 11812:1 11813:2 11816:1 11818:1 11825:1 11826:1 11833:1 11855:1 11856:1 11861:2 11881:1 11900:1 11902:4 11910:1 11927:4 11942:1 11958:1 11979:1 11985:1 11990:3 11997:1 12006:5 12016:2 12020:1 12025:1 12035:1 12036:1 12045:1 12050:2 12054:1 12060:1 12069:1 12089:1 12091:1 12099:1 12100:1 12105:1 12114:1 12115:1 12123:1 12141:1 12144:1 12151:1 12157:1 12173:1 12175:1 12176:1 12218:1 12229:1 12251:1 12263:3 12269:1 12276:2 12287:1 12303:3 12341:1 12346:1 12366:1 12368:1 12372:1 12383:4 12387:1 12389:1 12408:1 12432:1 12436:2 12437:2 12472:1 12473:1 12474:1 12490:1 12525:1 12550:3 12559:1 12582:3 12583:1 12584:1 12586:1 12602:1 12630:1 12633:1 12667:1 12689:1 12706:1 12716:1 12723:1 12732:1 12739:1 12741:28 12766:1 12770:1 12778:1 12816:1 12822:1 12828:1 12859:1 12863:1 12872:2 12877:1 12897:1 12911:1 12929:1 12948:1 12950:4 12956:1 12958:2 12959:1 12961:2 12969:1 12975:1 12981:1 12983:1 12984:1 12986:1 12988:6 12989:1 12995:1 12997:1 13000:1 13012:1 13030:2 13031:1 13069:1 13070:1 13082:1 13094:5 13095:5 13113:1 13121:1 13140:1 13173:1 13202:1 13207:2 13221:1 13225:1 13246:1 13251:1 13259:1 13270:1 13292:2 13295:2 13300:1 13322:1 13326:1 13328:5 13339:1 13352:1 13363:1 13371:1 13373:1 13378:1 13379:1 13382:1 13383:4 13390:1 13405:1 13409:1 13410:2 13418:1 13424:1 13425:1 13430:1 13431:2 13434:3 13435:2 13437:2 13442:1 13444:3 13445:1 13448:1 13449:1 13453:4 13455:1 13456:1 13459:5 13462:1 13469:1 13482:3 13495:1 13501:1 13525:2 13545:1 13554:1 13570:1 13622:1 13637:1 13641:1 13670:1 13675:1 13703:2 13709:1 13719:1 13739:1 13743:1 13746:1 13752:2 13758:2 13765:2 13766:1 13767:1 13775:1 13812:1 13818:1 13819:2 13826:1 13835:2 13837:5 13843:2 13846:1 13867:1 13868:1 13876:2 13895:1 13906:2 13907:1 13924:2 13925:3 13928:9 13931:2 13965:2 13966:1 13970:1 13972:2 13977:2 13979:3 13994:2 14000:1 14003:2 14008:1 14031:2 14035:2 14039:2 14046:1 14052:2 14071:1 14074:1 14077:1 14094:1 14097:1 14100:1 14101:1 14108:1 14114:1 14118:1 14122:1 14124:1 14125:1 14142:1 14154:1 14156:1 14178:1 14189:1 14200:1 14207:1 14210:1 14223:1 14240:2 14245:1 14246:1 14254:1 14262:1 14275:2 14307:1 14325:1 14330:1 14332:1 14344:1 14349:1 14368:1 14371:1 14372:1 14380:1 14393:1 14398:1 14403:2 14443:1 14446:1 14449:2 14462:1 14465:1 14468:1 14491:1 14516:1 14518:2 14539:2 14544:2 14550:1 14553:1 14570:1 14574:1 14575:1 14577:1 14585:1 14593:1 14596:2 14627:1 14637:1 14640:1 14645:1 14665:1 14677:6 14696:1 14713:1 14714:1 14719:3 14721:1 14740:1 14744:2 14762:3 14764:1 14768:2 14774:1 14775:1 14781:1 14783:1 14803:1 14806:1 14820:1 14825:1 14830:1 14833:1 14837:1 14844:4 14853:3 14856:1 14864:1 14877:1 14880:1 14885:1 14887:1 14889:1 14903:8 14929:2 14931:2 14963:1 14975:1 14976:1 14981:1 15024:1 15035:1 15056:1 15067:1 15070:1 15080:1 15112:1 15116:1 15129:1 15139:1 15142:1 15147:2 15179:1 15184:1 15191:1 15205:2 15215:1 15227:1 15251:1 15282:3 15283:1 15307:7 15312:2 15315:1 15328:1 15367:1 15370:1 15371:1 15389:1 15446:1 15477:1 15480:2081 15482:2 15496:3 15503:1 15514:1 15532:1 15543:1 15564:1 15575:1 15577:1 15583:2 15587:1 15602:1 15611:1 15623:1 15633:1 15635:1 15646:4 15655:1 15658:3 15661:1 15662:2 15663:1 15672:2 15684:1 15708:1 15723:4 15725:2 15742:1 15762:1 15773:1 15800:2 15834:3 15883:1 15887:2 15898:1 15929:2 15936:1 15944:1 15949:1 15990:1 16002:1 16009:1 16019:1 16037:1 16042:2 16046:1 16054:3 16074:4 16095:2 16102:2 16110:1 16117:1 16121:1 16129:1 16151:1 16152:5 16159:1 16170:1 16171:3 16176:1 16177:1 16206:8 16212:1 16219:1 16235:1 16239:1 16268:1 16271:1 16307:1 16331:1 16332:1 16341:1 16361:1 16362:1 16380:1 16387:2 16402:1 16408:1 16414:1 16416:1 16426:1 16432:2 16434:3 16443:4 16449:1 16462:1 16479:2 16482:1 16485:3 16495:1 16500:1 16514:1 16522:2 16538:1 16541:1 16548:1 16573:1 16593:1 16596:1 16611:1 16618:2 16630:1 16650:1 16661:1 16669:8 16676:2 16679:1 16681:1 16706:1 16712:1 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:4 16763:2 16768:2 16781:1 16782:1 16787:1 16795:2 16797:1 16811:1 16815:7 16823:3 16826:1 16844:1 16855:1 16856:1 16861:1 16895:1 16908:1 16945:1 16947:1 16965:3 16981:1 17001:3 17014:2 17017:1 17027:1 17043:1 17046:5 17050:5 17056:1 17058:2 17090:1 17101:1 17109:1 17130:1 17138:2 17144:1 17163:1 17168:1 17188:4 17197:1 17206:1 17210:1 17219:1 17221:1 17223:1 17234:1 17238:1 17255:1 17261:1 17275:1 17305:1 17311:4 17329:1 17352:1 17358:2 17362:2 17380:1 17400:1 17429:1 17437:3 17443:1 17452:1 17485:10 17491:2 17496:2 17501:1 17510:4 17532:1 17535:1 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17571:1 17590:1 17601:1 17604:1 17610:2 17648:1 17649:1 17685:1 17687:1 17706:5 17724:2 17735:1 17738:3 17745:1 17747:2 17750:1 17774:1 17806:1 17807:1 17812:1 17813:1 17827:1 17833:1 17835:4 17837:1 17838:1 17839:1 17851:1 17852:1 17857:1 17867:1 17879:1 17884:1 17893:1 17908:1 17916:2 17921:1 17929:1 17943:1 17958:1 17965:2 17980:2 17993:2 17995:2 17996:2 18035:1 18037:1 18043:2 18053:2 18066:1 18087:1 18088:2 18091:1 18092:1 18093:1 18130:1 18131:1 18166:1 18176:1 18186:1 18196:3 18197:3 18199:3 18204:1 18207:1 18210:1 18228:1 18231:2 18234:2 18237:1 18244:1 18249:2 18261:1 18264:1 18285:1 18296:1 18318:2 18339:1 18341:3 18347:1 18360:3 18366:2 18378:3 18392:1 18406:1 18421:1 18425:1 18434:2 18459:1 18474:1 18479:1 18491:1 18498:2 18505:1 18506:4 18509:1 18511:1 18532:1 18537:1 18542:1 18558:1 18565:1 18567:2 18573:2 18575:2 18577:1 18578:1 18581:1 18616:1 18619:1 18631:1 18641:1 18643:1 18644:1 18658:1 18666:1 18676:1 18686:1 18693:2 18704:1 18715:1 18727:2 18729:1 18732:2 18739:3 18742:1 18776:1 18784:1 18803:1 18807:1 18820:2 18842:1 18843:1 18854:1 18856:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:2 18939:1 18941:2 18943:1 18946:1 18948:1 18949:1 18961:1 18965:1 18975:3 18976:3 18978:1 18985:2 18990:3 19007:1 19029:2 19033:1 19036:1 19053:1 19064:1 19070:1 19080:1 19096:3 19123:1 19134:4 19145:1 19156:2 19187:2 19193:1 19201:1 19212:1 19213:1 19218:1 19225:1 19229:1 19233:1 19237:1 19249:1 19278:1 19289:1 19325:1 19336:1 19349:2 19360:2 19365:4 19369:1 19371:1 19376:2 19406:1 19417:1 19425:3 19427:1 19431:1 19435:2 19438:3 19443:1 19444:1 19446:1 19470:1 19474:1 19480:1 19486:1 19493:1 19494:2 19507:1 19508:1 19523:1 19525:1 19532:1 19540:1 19559:5 19562:1 19565:2 19573:1 19580:1 19587:1 19611:1 19615:3 19637:1 19638:2 19644:1 19666:1 19716:2 19718:1 19730:1 19744:2 19746:1 19748:1 19789:1 19810:2 19823:1 19832:3 19870:1 19901:1 19902:8 19974:2 20000:2 20003:1 20004:1 20007:1 20013:1 20022:1 20031:1 20040:2 20051:1 20055:1 20063:1 20068:3 20076:1 20083:2 20084:7 20087:1 20089:1 20102:1 20107:1 20109:1 20122:1 20126:2 20139:1 20152:1 20155:1 20173:1 20196:1 20204:1 20214:1 20252:1 20266:1 20268:1 20270:1 20273:1 20274:1 20275:1 20276:1 20281:1 20287:1 20305:1 20316:1 20318:1 20327:3 20331:1 20332:2 20334:1 20337:4 20343:1 20344:1 20360:1 20366:4 20378:5 20379:1 20393:1 20411:1 20412:1 20432:1 20441:1 20442:1 20447:1 20448:1 20460:1 20469:2 20473:1 20480:2 20485:1 20490:2 20493:1 20508:1 20512:2 20545:1 20563:1 20567:1 20595:1 20599:2 20630:1 20638:1 20651:2 20659:1 20663:1 20670:2 20686:6 20718:1 20722:1 20723:1 20734:1 20738:1 20742:6 20750:1 20751:1 20753:1 20755:1 20762:1 20769:1 20785:2 20786:1 20847:1 20878:1 20909:1 20928:2 20930:5 20949:3 20955:1 20958:1 20962:2 20964:1 20965:1 20970:2 20989:1 20993:1 21007:1 21099:1 21100:1 21104:1 21111:1 21112:1 21134:1 21136:1 21137:1 21139:1 21154:1 21159:1 21189:1 21190:1 21204:1 21205:1 21208:2 21209:1 21245:1 21267:1 21279:1 21319:1 21337:1 21361:5 21363:1 21364:5 21371:1 21413:1 21438:1 21441:2 21480:4 21486:1 21503:1 21512:1 21520:1 21522:1 21551:1 21556:1 21557:1 21559:1 21561:2 21576:1 21586:1 21587:1 21594:1 21602:1 21612:3 21628:1 21630:1 21632:1 21637:3 21642:1 21663:1 21665:1 21671:1 21693:1 21695:1 21697:4 21703:1 21707:1 21716:1 21738:1 21740:1 21748:1 21760:6 21761:1 21773:2 21787:1 21812:1 21831:3 21841:1 21844:2 21857:1 21869:2 21887:1 21905:1 21914:1 21923:1 21926:1 21934:1 21952:1 21974:1 21977:2 21984:1 21996:1 21998:1 22001:1 22010:2 22013:3 22014:1 22027:2 22043:1 22048:2 22058:1 22062:1 22065:1 22068:1 22080:3 22108:2 22114:2 22124:1 22138:1 22152:1 22173:1 22186:1 22193:1 22195:1 22208:1 22242:1 22247:2 22322:1 22379:1 22386:1 22390:1 22394:1 22419:1 22423:1 22425:1 22429:1 22462:1 22511:1 22515:1 22522:1 22527:1 22528:3 22547:1 22548:2 22550:1 22553:1 22562:1 22571:1 22572:1 22585:3 22593:1 22601:1 22602:1 22611:4 22624:1 22657:1 22666:1 22669:5 22672:1 22690:2 22693:1 22699:1 22740:4 22749:2 22750:2 22755:1 22759:1 22760:2 22769:1 22779:1 22786:1 22798:1 22801:2 22804:1 22815:2 22817:1 22822:1 22823:1 22825:1 22831:1 22837:1 22846:1 22854:1 22869:2 22874:1 22894:2 22897:1 22912:1 22914:1 22916:3 22925:1 22939:1 22942:1 22951:1 22957:1 22990:1 22991:1 23005:1 23006:2 23007:1 23022:4 23039:1 23048:1 23050:2 23066:2 23074:2 23088:1 23089:6 23109:2 23113:1 23138:1 23151:1 23206:1 23248:3 23284:1 23305:3 23314:2 23324:1 23325:1 23339:1 23341:1 23360:4 23363:1 23385:1 23404:1 23405:1 23430:18 23431:1 23432:1 23446:1 23459:1 23466:10 23469:1 23472:1 23474:1 23476:2 23481:1 23490:1 23518:2 23527:1 23541:1 23546:1 23551:3 23558:3 23586:8 23587:1 23610:1 23623:1 23639:1 23645:2 23647:1 23653:1 23655:1 23694:1 23698:1 23719:1 23739:1 23740:1 23754:1 23758:1 23784:1 23796:4 23797:3 23840:1 23847:1 23849:1 23852:1 23853:2 23858:1 23862:1 23868:1 23939:1 23951:1 23956:4 23961:1 23964:1 23966:1 23967:1 23970:1 23971:10 23985:1 23990:1 24000:1 24005:1 24006:2 24012:1 24028:1 24042:1 24049:1 24057:1 24101:1 24108:1 24117:1 24126:1 24139:1 24145:1 24153:1 24162:3 24170:2 24196:1 24223:1 24225:1 24253:1 24261:2 24293:1 24301:1 24302:1 24306:1 24307:1 24315:1 24317:1 24320:1 24324:1 24341:1 24347:2 24353:1 24362:1 24370:1 24376:1 24379:1 24384:1 24392:1 24393:1 24401:3 24409:1 24410:1 24411:2 24418:1 24421:1 24438:1 24440:1 24449:1 24455:1 24463:1 24466:1 24469:3 24470:1 24473:2 24476:3 24479:1 24480:1 24483:2 24487:1 24491:1 24504:1 24523:1 24525:3 24530:1 24535:1 24536:1 24552:1 24563:1
20 13:1 25:1 29:1 30:1 34:2 37:1 45:1 53:1 61:1 72:1 76:1 85:7 88:1 96:1 105:1 112:1 113:1 150:1 162:1 164:1 172:1 175:1 186:1 216:3 218:2 240:3 241:1 254:1 276:1 296:2 298:1 314:1 317:1 339:1 341:2 348:1 377:1 392:1 407:3 441:1 469:1 489:1 492:1 509:1 510:3 516:1 527:2 541:2 565:2 566:1 568:3 640:1 694:1 713:1 720:1 752:2 754:1 762:2 766:1 778:1 784:1 785:3 788:1 795:1 805:1 814:3 825:1 828:1 831:3 833:1 834:5 835:1 838:4 846:1 857:1 862:1 869:4 881:1 888:3 889:3 892:2 899:1 906:1 912:1 937:1 946:1 948:2 952:1 960:1 967:1 989:1 994:1 1005:1 1009:4 1015:4 1043:1 1044:1 1047:1 1064:1 1065:1 1074:1 1078:1 1080:1 1094:1 1095:1 1108:1 1110:1 1112:1 1114:1 1131:1 1137:1 1142:1 1158:1 1172:1 1208:1 1212:1 1220:2 1230:2 1236:1 1241:1 1242:1 1257:1 1258:1 1259:4 1267:3 1274:4 1293:1 1296:1 1297:1 1301:1 1311:3 1328:13 1330:2 1332:7 1340:2 1343:1 1345:1 1352:1 1353:2 1360:1 1372:1 1376:1 1381:9 1395:1 1396:1 1418:1 1420:1 1429:1 1435:1 1436:1 1460:2 1476:1 1484:1 1506:1 1507:5 1510:2 1517:2 1526:1 1546:1 1552:2 1568:1 1591:1 1612:2 1617:3 1619:2 1629:1 1639:2 1641:1 1644:1 1661:1 1663:1 1666:1 1670:1 1700:1 1703:2 1719:1 1731:4 1745:1 1763:1 1766:3 1771:1 1774:1 1775:1 1782:1 1789:1 1815:1 1826:5 1828:1 1838:1 1846:1 1853:2 1854:2 1856:1 1875:2 1877:8 1879:5 1882:1 1883:1 1889:1 1891:2 1892:3 1894:2 1895:1 1898:1 1904:1 1908:1 1909:2 1912:2 1930:1 1938:1 1939:2 1941:1 1942:2 1945:4 1948:2 1949:1 1952:1 1954:2 1959:1 1960:2 1961:1 1963:3 1965:2 1968:3 1970:2 1973:1 1976:2 1978:1 1981:2 1992:1 1994:1 1999:1 2000:1 2024:1 2034:1 2038:1 2045:1 2055:1 2074:1 2076:1 2077:1 2102:1 2110:1 2115:1 2140:1 2157:1 2164:1 2167:1 2169:1 2173:1 2188:1 2218:1 2222:1 2241:1 2253:1 2254:1 2267:3 2272:1 2273:1 2282:1 2287:1 2303:1 2308:1 2317:1 2319:2 2321:1 2325:2 2328:1 2329:1 2353:1 2359:1 2365:1 2374:1 2383:1 2390:1 2393:1 2405:1 2409:2 2423:1 2434:1 2451:3 2461:2 2462:9 2464:2 2478:1 2480:2 2481:3 2491:1 2500:1 2507:9 2535:1 2589:1 2597:2 2606:1 2611:1 2636:1 2645:3 2678:1 2685:1 2689:1 2700:1 2718:1 2745:1 2753:1 2754:1 2764:2 2770:1 2779:3 2802:3 2807:1 2826:3 2831:1 2839:1 2842:1 2843:1 2849:1 2853:1 2876:1 2898:1 2941:1 2948:1 2950:1 2993:2 2999:1 3002:2 3049:2 3059:2 3063:2 3068:1 3076:1 3089:1 3090:1 3093:1 3095:1 3103:6 3118:1 3129:1 3131:1 3135:1 3136:1 3139:1 3147:2 3173:2 3183:2 3184:4 3208:1 3221:6 3222:1 3234:1 3237:6 3288:1 3301:1 3306:1 3312:6 3323:1 3326:2 3328:2 3354:1 3355:1 3358:1 3367:1 3369:2 3377:1 3391:1 3399:2 3404:1 3407:2 3408:1 3416:1 3428:1 3442:1 3450:1 3467:1 3481:1 3495:1 3503:1 3514:1 3519:1 3537:1 3572:1 3596:1 3598:1 3620:1 3622:1 3628:1 3653:1 3655:1 3660:2 3661:1 3666:1 3678:1 3681:1 3710:2 3729:1 3737:1 3740:1 3770:1 3773:1 3777:1 3801:1 3803:2 3831:1 3832:1 3837:1 3840:2 3845:1 3856:1 3868:1 3878:1 3889:1 3902:2 3904:1 3908:1 3911:1 3928:4 3937:1 3938:2 3939:1 3961:1 3992:1 4003:1 4019:1 4046:1 4047:1 4073:1 4082:1 4091:1 4099:1 4107:14 4108:1 4116:1 4136:1 4143:1 4159:1 4160:1 4192:3 4197:1 4198:7 4211:3 4212:2 4214:1 4216:1 4218:1 4222:1 4223:1 4228:1 4229:2 4230:2 4231:3 4234:3 4237:1 4238:1 4248:2 4275:1 4302:1 4319:1 4323:1 4351:1 4364:4 4368:1 4384:1 4391:1 4394:1 4403:1 4409:3 4412:1 4420:1 4436:1 4450:2 4464:1 4470:1 4498:3 4506:1 4529:1 4539:1 4546:4 4561:1 4581:1 4620:1 4621:2 4625:1 4628:1 4633:2 4644:1 4650:1 4654:1 4658:1 4662:2 4667:1 4673:1 4675:1 4681:1 4689:3 4703:3 4729:1 4741:1 4757:2 4768:1 4771:1 4787:1 4794:1 4818:1 4821:1 4823:1 4826:1 4831:1 4836:2 4854:1 4861:1 4872:1 4876:2 4926:4 4927:2 4950:2 4953:2 4958:1 4959:2 4986:1 4994:1 5016:1 5025:1 5049:3 5054:1 5075:1 5090:2 5096:1 5100:2 5103:1 5127:1 5130:1 5142:1 5146:2 5187:3 5189:1 5192:3 5205:1 5215:1 5217:1 5225:1 5236:1 5247:3 5248:1 5260:1 5263:1 5264:1 5276:1 5282:2 5289:1 5308:2 5310:2 5314:1 5322:3 5324:1 5325:1 5332:2 5335:1 5337:1 5338:1 5340:4 5342:2 5347:2 5349:5 5350:2 5352:4 5396:1 5398:1 5409:1 5426:4 5437:4 5451:2 5488:1 5489:1 5520:1 5535:1 5592:2 5604:1 5609:1 5615:1 5616:2 5625:1 5629:2 5630:1 5634:1 5655:1 5656:1 5663:1 5665:1 5668:1 5672:2 5674:4 5686:2 5688:1 5689:1 5693:1 5702:1 5703:1 5709:1 5717:1 5723:1 5726:2 5774:1 5783:3 5785:1 5797:1 5807:3 5808:1 5818:1 5819:1 5823:1 5837:1 5874:1 5878:2 5890:1 5914:1 5917:1 5930:1 5947:6 5948:1 5959:1 5968:2 5970:1 5998:2 6021:1 6035:1 6039:1 6040:1 6052:2 6057:1 6071:1 6084:1 6096:1 6116:1 6124:1 6126:1 6130:1 6147:1 6155:3 6175:3 6183:3 6192:1 6194:1 6200:1 6201:1 6209:1 6223:1 6231:1 6232:1 6237:2 6241:1 6246:1 6248:1 6255:1 6260:1 6261:1 6269:1 6276:1 6285:2 6286:1 6289:1 6305:1 6324:1 6332:1 6354:1 6359:4 6365:9 6375:1 6382:2 6384:1 6386:4 6387:1 6410:1 6416:1 6429:32 6436:1 6449:5 6451:11 6460:1 6486:1 6497:2 6501:1 6508:1 6545:1 6551:1 6599:1 6607:1 6619:1 6655:1 6669:3 6677:3 6680:1 6700:1 6743:1 6771:1 6781:1 6785:1 6789:1 6797:1 6806:1 6810:9 6816:2 6818:1 6821:1 6824:1 6841:1 6854:1 6859:27 6882:1 6906:1 6908:1 6918:1 6926:1 6981:1 7017:1 7020:1 7030:1 7038:5 7054:2 7056:1 7068:3 7077:1 7084:1 7086:3 7110:1 7115:1 7121:1 7125:1 7156:1 7157:2 7164:1 7166:3 7169:1 7170:4 7172:1 7173:1 7174:1 7177:2 7182:4 7192:1 7193:1 7194:2 7222:1 7257:2 7262:2 7263:1 7280:1 7303:3 7305:1 7325:1 7331:1 7364:1 7371:2 7384:1 7400:1 7409:2 7423:1 7425:1 7432:3 7434:1 7437:1 7443:1 7451:1 7457:1 7459:1 7461:4 7488:1 7505:1 7519:1 7521:1 7526:1 7535:1 7539:1 7541:1 7571:1 7573:2 7581:6 7590:4 7594:1 7596:1 7604:3 7615:1 7628:1 7638:1 7649:1 7656:1 7665:1 7678:1 7686:1 7712:1 7731:1 7753:1 7777:1 7787:3 7790:1 7798:1 7803:1 7804:1 7805:1 7810:1 7821:1 7865:1 7868:1 7878:1 7896:1 7912:2 7922:1 7927:1 7930:3 7932:1 7943:1 7944:1 7950:1 7964:4 7975:1 7980:1 7988:3 8013:1 8036:1 8048:1 8049:4 8061:1 8064:3 8067:1 8070:6 8071:1 8080:3 8099:1 8118:1 8121:1 8138:2 8139:1 8143:2 8162:9 8166:1 8174:1 8177:1 8189:1 8195:1 8196:1 8200:1 8205:1 8212:1 8215:1 8222:2 8226:1 8285:2 8293:1 8296:3 8297:1 8304:2 8317:1 8328:1 8348:2 8352:2 8363:2 8379:1 8382:1 8387:2 8392:1 8427:1 8437:2 8443:1 8444:2 8480:1 8508:2 8517:2 8532:2 8536:1 8566:1 8570:1 8574:1 8575:1 8581:2 8617:3 8663:1 8679:4 8682:2 8684:1 8700:1 8705:1 8736:2 8746:1 8753:1 8759:2 8760:1 8769:1 8778:3 8783:1 8785:1 8789:2 8801:2 8802:2 8807:1 8809:2 8814:3 8815:1 8817:1 8818:1 8822:1 8824:1 8828:1 8829:1 8832:1 8833:2 8840:1 8841:1 8843:1 8856:3 8857:2 8867:1 8881:1 8891:3 8897:1 8903:1 8905:1 8907:1 8910:1 8914:4 8916:8 8949:1 8960:2 8975:1 8977:1 8981:1 8989:4 8997:1 9001:3 9070:1 9080:1 9090:1 9101:4 9102:2 9106:1 9108:1 9145:3 9162:2 9167:1 9173:3 9192:1 9193:1 9198:2 9200:1 9202:1 9205:1 9215:1 9222:1 9225:1 9252:6 9260:2 9282:1 9289:1 9313:1 9317:1 9321:1 9338:1 9346:1 9359:3 9363:2 9388:1 9389:1 9399:1 9411:1 9416:1 9424:1 9433:1 9440:1 9442:1 9459:1 9472:1 9486:2 9488:7 9525:1 9536:2 9542:1 9543:2 9545:1 9547:2 9548:1 9559:1 9561:1 9563:3 9586:1 9587:1 9599:1 9610:1 9621:1 9624:2 9639:1 9653:6 9656:3 9659:1 9668:1 9682:2 9687:1 9695:1 9696:1 9698:1 9703:1 9707:1 9710:1 9716:1 9723:2 9727:1 9730:1 9743:1 9745:1 9760:1 9762:1 9763:5 9772:3 9778:8 9810:1 9815:1 9822:1 9823:11 9852:1 9880:1 9881:1 9899:1 9904:1 9911:1 9918:2 9923:4 9949:1 9974:3 9989:1 10001:1 10018:1 10022:3 10037:2 10046:1 10053:2 10054:2 10060:1 10061:1 10070:1 10074:3 10079:1 10089:1 10095:1 10105:1 10118:1 10130:1 10144:1 10146:1 10151:2 10163:3 10169:1 10179:1 10225:1 10233:1 10265:1 10281:3 10290:1 10304:1 10337:1 10360:1 10363:1 10364:2 10391:1 10413:1 10416:1 10430:1 10477:1 10480:8 10483:1 10487:2 10494:1 10502:1 10505:1 10513:1 10531:1 10548:1 10550:11 10556:1 10571:1 10576:2 10598:2 10621:2 10637:1 10652:1 10687:1 10695:1 10724:1 10725:1 10733:1 10739:4 10753:1 10754:1 10755:2 10787:1 10804:1 10818:2 10836:4 10844:1 10846:1 10847:3 10851:3 10861:2 10870:1 10871:8 10872:1 10874:1 10897:1 10901:1 10921:1 10923:2 10942:2 10943:1 10962:1 10969:1 10970:8 10974:1 10982:1 10985:14 10987:1 10993:1 11001:1 11013:1 11016:1 11022:1 11046:3 11065:1 11087:2 11101:2 11118:1 11123:1 11143:1 11156:1 11159:2 11163:2 11168:1 11187:1 11191:1 11220:1 11224:1 11273:1 11275:1 11277:1 11280:5 11281:1 11287:1 11289:2 11297:1 11301:2 11311:1 11317:1 11322:1 11329:1 11332:1 11340:1 11342:1 11368:10 11375:1 11376:2 11392:1 11406:1 11407:2 11408:1 11415:1 11419:1 11432:2 11439:1 11447:2 11449:1 11451:3 11459:1 11509:5 11512:2 11531:2 11554:1 11564:2 11607:1 11612:1 11613:1 11614:2 11638:2 11657:1 11665:1 11689:1 11697:2 11699:1 11704:1 11710:1 11712:1 11717:1 11718:1 11744:1 11747:1 11777:1 11788:1 11806:1 11808:1 11812:1 11813:2 11816:1 11818:2 11825:1 11826:1 11833:1 11841:1 11855:1 11856:1 11861:2 11881:1 11900:1 11902:4 11910:1 11927:4 11942:1 11958:1 11979:1 11985:1 11990:3 11997:1 12006:5 12016:2 12020:1 12025:1 12035:1 12036:1 12045:1 12050:2 12054:1 12060:1 12069:1 12089:1 12091:1 12099:1 12100:1 12105:1 12114:1 12115:1 12123:1 12141:1 12144:1 12151:1 12157:1 12173:1 12175:1 12176:1 12218:1 12229:1 12251:1 12263:3 12269:1 12276:2 12287:1 12303:3 12341:1 12346:1 12366:1 12368:1 12372:1 12383:4 12387:1 12389:1 12408:1 12432:1 12436:2 12437:2 12472:1 12473:1 12474:1 12490:1 12525:1 12550:3 12559:1 12582:3 12583:2 12584:1 12586:1 12602:1 12630:1 12633:1 12667:1 12689:1 12706:1 12716:1 12723:1 12732:1 12739:1 12741:28 12766:1 12770:1 12778:1 12816:1 12822:1 12828:1 12859:1 12863:1 12872:2 12877:1 12897:1 12911:1 12920:1 12929:1 12948:1 12950:4 12956:1 12958:2 12959:1 12961:2 12969:1 12975:1 12981:2 12983:1 12984:1 12986:1 12988:6 12989:1 12995:1 12997:1 13000:1 13007:1 13012:1 13030:2 13031:1 13069:1 13070:1 13082:1 13094:5 13095:5 13113:1 13121:1 13140:1 13173:1 13202:1 13207:2 13221:1 13225:1 13246:1 13251:1 13259:1 13270:1 13292:2 13295:2 13298:1 13300:1 13322:1 13326:1 13328:6 13339:1 13352:1 13363:1 13371:1 13373:1 13378:1 13379:1 13382:1 13383:4 13390:1 13405:1 13409:1 13410:2 13418:1 13424:1 13425:1 13430:1 13431:2 13434:3 13435:2 13437:2 13442:1 13444:3 13445:1 13448:1 13449:1 13453:4 13455:1 13456:1 13459:5 13462:1 13469:1 13482:3 13495:1 13501:1 13525:2 13545:1 13554:1 13570:1 13622:1 13637:1 13641:1 13670:1 13675:1 13703:2 13709:1 13719:1 13739:1 13743:1 13746:1 13752:2 13758:2 13765:2 13766:1 13767:1 13775:1 13812:1 13818:2 13819:2 13826:1 13835:2 13837:5 13843:2 13846:1 13867:1 13868:1 13876:2 13895:1 13906:2 13907:1 13924:2 13925:3 13928:9 13931:2 13965:2 13966:1 13970:1 13972:2 13977:2 13979:3 13994:2 14000:1 14003:2 14008:1 14031:2 14035:2 14039:2 14046:1 14052:2 14071:1 14074:1 14077:1 14094:1 14097:1 14100:1 14101:1 14108:1 14114:1 14118:1 14122:1 14124:1 14125:1 14142:1 14154:1 14156:1 14178:1 14189:1 14200:1 14207:1 14210:1 14223:1 14240:2 14245:1 14246:1 14254:1 14262:1 14275:2 14307:1 14325:1 14330:1 14332:1 14344:1 14349:1 14368:1 14371:1 14372:1 14380:1 14393:1 14398:1 14403:2 14443:1 14446:1 14449:2 14462:1 14465:1 14468:1 14491:1 14516:1 14518:2 14539:2 14544:2 14550:1 14553:1 14570:1 14574:1 14575:1 14577:1 14585:1 14591:2 14593:1 14596:2 14627:1 14637:1 14640:2 14645:1 14665:1 14677:6 14696:1 14713:1 14714:1 14719:3 14721:1 14740:1 14744:2 14762:3 14764:1 14768:2 14774:1 14775:1 14781:1 14783:1 14803:2 14806:1 14820:1 14825:1 14830:1 14833:1 14837:1 14844:4 14853:3 14856:1 14864:1 14877:1 14880:1 14885:1 14887:1 14889:1 14903:8 14929:2 14931:2 14963:1 14975:1 14976:1 14981:1 15001:1 15024:1 15035:1 15056:1 15067:1 15070:1 15080:1 15112:1 15116:1 15129:1 15139:1 15142:1 15147:2 15179:1 15184:1 15191:1 15205:2 15215:1 15227:1 15251:1 15282:3 15283:1 15307:7 15312:2 15315:1 15328:1 15367:1 15370:1 15371:1 15389:1 15396:1 15446:1 15477:1 15480:2153 15482:2 15496:3 15503:1 15514:1 15525:1 15532:1 15543:1 15564:1 15575:1 15577:1 15583:2 15587:1 15602:1 15611:1 15623:1 15633:1 15635:1 15646:4 15655:1 15658:3 15661:1 15662:2 15663:1 15672:2 15684:1 15708:1 15723:4 15725:2 15742:1 15743:1 15762:1 15773:1 15790:1 15800:2 15834:3 15883:1 15887:2 15898:1 15929:2 15936:1 15944:1 15949:1 15990:1 16002:1 16009:1 16019:1 16037:1 16042:2 16046:1 16054:3 16074:4 16095:2 16102:2 16110:1 16117:1 16121:1 16129:1 16151:1 16152:5 16159:1 16170:1 16171:3 16176:1 16177:1 16206:8 16212:1 16219:1 16235:1 16239:1 16268:1 16271:1 16307:1 16331:1 16332:1 16341:1 16361:1 16362:1 16380:1 16387:2 16402:1 16408:1 16414:1 16416:1 16426:1 16432:2 16434:3 16443:4 16449:1 16462:1 16479:2 16482:1 16485:3 16495:1 16500:1 16514:1 16522:2 16538:1 16541:1 16548:1 16573:1 16593:1 16596:1 16611:1 16618:2 16630:1 16650:1 16661:1 16669:8 16676:3 16679:1 16681:1 16706:1 16712:1 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:5 16763:2 16768:2 16781:1 16782:1 16787:1 16795:2 16797:1 16811:1 16815:7 16823:3 16826:1 16832:1 16844:1 16855:1 16856:1 16861:1 16867:1 16895:1 16908:1 16945:1 16947:1 16965:3 16981:1 17001:3 17014:2 17017:1 17027:1 17043:1 17046:6 17050:5 17056:1 17058:2 17090:1 17101:1 17109:1 17130:1 17138:2 17144:1 17163:1 17168:1 17188:4 17197:1 17206:1 17210:1 17219:1 17221:1 17223:1 17234:1 17238:1 17255:1 17261:1 17275:1 17305:1 17311:4 17329:1 17352:1 17358:2 17362:2 17380:1 17400:1 17429:1 17437:3 17443:1 17452:1 17485:10 17491:2 17496:2 17501:1 17510:4 17520:1 17532:1 17535:1 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17571:1 17590:1 17601:1 17604:1 17610:2 17648:1 17649:1 17685:1 17687:1 17706:5 17721:1 17724:2 17735:1 17738:3 17745:1 17747:2 17750:1 17774:1 17806:1 17807:1 17812:1 17813:1 17819:1 17827:1 17833:1 17835:4 17837:1 17838:1 17839:1 17851:1 17852:1 17857:1 17867:1 17879:1 17884:1 17893:1 17908:1 17916:3 17921:1 17929:1 17943:1 17958:1 17965:2 17980:2 17993:2 17995:2 17996:2 18035:1 18037:1 18043:2 18053:3 18066:1 18087:1 18088:2 18091:1 18092:1 18093:1 18130:1 18131:1 18166:1 18176:1 18177:1 18186:1 18196:3 18197:3 18199:3 18204:1 18207:1 18210:1 18228:1 18231:2 18234:2 18237:1 18244:1 18248:1 18249:2 18261:1 18264:1 18285:1 18296:1 18318:2 18339:1 18341:3 18347:1 18360:3 18366:2 18378:3 18392:1 18406:1 18421:1 18425:1 18434:2 18459:1 18474:1 18479:1 18491:2 18498:2 18505:1 18506:4 18509:1 18511:1 18532:1 18537:1 18542:1 18558:1 18565:1 18567:2 18573:2 18575:2 18577:1 18578:1 18581:1 18616:1 18619:1 18631:1 18641:1 18643:1 18644:1 18658:1 18666:1 18676:1 18686:1 18693:2 18704:1 18715:1 18727:3 18729:1 18732:2 18739:3 18742:1 18776:1 18784:1 18803:1 18807:1 18820:2 18842:1 18843:1 18854:1 18856:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:2 18939:1 18941:2 18943:1 18946:1 18948:1 18949:1 18961:1 18965:1 18975:3 18976:3 18978:1 18985:2 18990:3 19007:1 19029:2 19033:1 19036:1 19053:1 19056:1 19064:1 19070:1 19080:1 19096:3 19123:1 19134:4 19145:1 19156:3 19187:2 19193:1 19201:1 19212:1 19213:1 19218:1 19225:1 19229:1 19233:1 19237:1 19249:1 19278:1 19289:1 19325:1 19336:1 19349:2 19360:3 19365:4 19369:1 19371:1 19376:2 19406:1 19417:1 19425:3 19427:1 19431:1 19435:3 19438:3 19443:1 19444:1 19446:1 19470:1 19474:1 19480:1 19486:1 19493:1 19494:2 19507:1 19508:1 19510:2 19523:1 19525:1 19532:1 19540:1 19559:6 19562:1 19565:3 19573:1 19580:1 19582:1 19587:1 19611:1 19615:3 19637:1 19638:2 19644:1 19666:1 19716:2 19718:1 19730:1 19744:3 19746:1 19748:1 19789:1 19810:2 19823:1 19832:3 19870:1 19901:1 19902:8 19960:1 19974:2 20000:2 20003:1 20004:1 20007:1 20013:1 20022:1 20031:1 20040:2 20051:1 20055:1 20063:1 20068:3 20076:1 20083:2 20084:7 20087:1 20089:1 20102:1 20107:1 20109:1 20122:1 20126:2 20139:1 20152:1 20155:1 20173:1 20196:1 20204:1 20214:1 20252:1 20266:1 20268:1 20270:1 20273:1 20274:1 20275:1 20276:1 20281:1 20287:1 20305:1 20316:1 20318:1 20327:3 20331:1 20332:2 20334:1 20337:4 20343:1 20344:1 20360:1 20366:4 20378:5 20379:1 20393:1 20411:1 20412:1 20432:1 20441:1 20442:1 20447:1 20448:1 20460:1 20469:2 20473:1 20480:2 20485:1 20490:2 20493:1 20508:1 20512:2 20545:1 20563:1 20567:1 20595:1 20599:2 20630:1 20638:1 20651:2 20659:1 20663:1 20670:3 20686:6 20718:1 20722:1 20723:1 20734:1 20738:1 20742:6 20750:1 20751:1 20753:1 20755:1 20762:1 20769:1 20785:2 20786:1 20847:1 20878:1 20909:1 20928:2 20930:6 20931:1 20949:3 20955:1 20958:1 20962:2 20964:1 20965:1 20970:2 20989:1 20993:1 21007:1 21023:1 21099:1 21100:1 21104:1 21111:1 21112:1 21134:1 21136:1 21137:1 21139:1 21154:1 21159:1 21189:1 21190:1 21204:1 21205:1 21208:3 21209:1 21245:1 21267:1 21279:1 21319:1 21337:1 21361:5 21363:1 21364:5 21371:1 21413:1 21438:1 21441:2 21455:1 21480:4 21486:1 21503:1 21512:1 21520:1 21522:1 21551:1 21556:1 21557:1 21559:1 21561:2 21576:1 21586:1 21587:1 21594:1 21602:1 21612:3 21628:1 21630:1 21632:1 21637:3 21642:1 21663:1 21665:1 21671:1 21693:1 21695:1 21697:4 21703:1 21707:1 21716:1 21738:1 21740:1 21748:1 21760:6 21761:1 21773:2 21787:1 21812:1 21831:3 21841:1 21844:2 21857:1 21869:2 21872:1 21887:1 21905:1 21914:1 21923:1 21926:1 21934:1 21952:1 21974:1 21977:2 21984:1 21996:1 21998:1 22001:1 22010:2 22013:3 22014:1 22027:2 22043:1 22048:2 22058:1 22062:1 22065:1 22068:1 22080:4 22108:2 22114:2 22124:1 22138:1 22152:1 22173:1 22186:1 22193:1 22195:1 22208:1 22242:1 22247:2 22304:1 22306:1 22322:1 22379:1 22386:1 22390:1 22394:1 22419:1 22423:1 22425:1 22429:1 22462:1 22511:1 22515:1 22522:2 22527:1 22528:3 22547:1 22548:2 22550:1 22553:1 22562:1 22571:1 22572:1 22585:3 22593:1 22601:1 22602:1 22611:4 22616:1 22624:1 22657:1 22666:1 22669:6 22672:1 22690:2 22693:1 22699:1 22740:4 22749:2 22750:2 22755:1 22759:1 22760:2 22762:1 22769:1 22779:1 22786:1 22798:1 22801:2 22804:1 22815:2 22817:1 22822:1 22823:1 22825:1 22831:1 22837:1 22846:1 22854:1 22869:2 22874:1 22894:2 22897:1 22912:1 22914:1 22916:3 22925:1 22939:1 22942:1 22951:1 22957:1 22990:1 22991:1 23005:1 23006:2 23007:1 23022:4 23039:1 23048:1 23050:2 23066:3 23074:2 23088:1 23089:6 23109:2 23113:1 23138:1 23151:1 23206:1 23233:1 23248:3 23284:1 23305:3 23311:1 23314:2 23324:1 23325:1 23339:1 23341:1 23360:4 23363:1 23385:1 23404:1 23405:1 23417:1 23430:18 23431:1 23432:1 23446:1 23459:1 23466:10 23469:1 23472:1 23474:1 23476:2 23481:1 23490:1 23518:2 23527:1 23541:1 23546:1 23551:3 23558:3 23586:8 23587:1 23610:1 23623:1 23639:1 23645:2 23647:1 23653:1 23655:1 23694:1 23698:1 23719:1 23739:1 23740:1 23754:1 23758:1 23784:1 23796:4 23797:3 23840:1 23845:1 23847:1 23849:1 23852:1 23853:2 23858:1 23862:1 23868:1 23939:1 23951:1 23956:4 23961:1 23964:1 23966:1 23967:1 23970:1 23971:10 23985:1 23990:1 24000:1 24005:1 24006:2 24012:1 24028:1 24042:1 24049:1 24057:1 24101:1 24108:1 24117:1 24126:1 24139:1 24145:1 24153:1 24162:3 24170:2 24196:1 24223:1 24225:1 24253:1 24261:2 24293:1 24301:1 24302:1 24306:1 24307:1 24315:1 24317:1 24320:1 24324:1 24341:1 24347:2 24353:1 24362:1 24370:1 24376:1 24379:1 24384:1 24392:1 24393:1 24401:4 24409:1 24410:1 24411:2 24418:1 24421:1 24438:1 24440:1 24449:1 24455:1 24463:1 24466:1 24469:3 24470:1 24473:2 24476:4 24479:1 24480:1 24483:2 24487:1 24491:1 24504:1 24523:1 24525:3 24530:1 24535:1 24536:1 24552:1 24563:1
20 13:1 25:1 29:1 30:1 34:2 37:1 39:1 45:1 53:1 61:1 72:1 76:1 85:7 88:1 96:1 105:1 112:1 113:1 150:1 162:1 164:1 172:1 175:1 186:1 216:3 218:2 240:3 241:1 254:1 256:1 276:1 296:2 298:1 314:1 317:1 339:1 341:2 348:1 377:1 392:1 407:3 441:1 469:1 489:1 492:1 509:1 510:3 516:1 527:2 541:2 545:1 565:2 566:1 568:3 601:1 640:1 694:1 713:1 720:1 752:2 754:1 762:2 766:1 778:1 784:1 785:4 788:1 795:1 805:1 814:3 825:1 828:1 831:3 833:1 834:5 835:1 838:4 846:1 857:1 862:1 869:4 881:1 888:3 889:3 892:2 899:1 906:1 912:1 937:1 946:1 948:2 952:1 960:1 967:1 989:1 994:1 1005:1 1009:4 1015:4 1043:1 1044:1 1047:1 1053:1 1064:1 1065:1 1074:1 1078:1 1080:1 1094:1 1095:1 1108:1 1110:1 1112:1 1114:1 1131:1 1137:1 1142:1 1158:1 1172:1 1208:1 1212:1 1220:2 1230:2 1236:1 1241:1 1242:1 1257:1 1258:1 1259:4 1267:3 1274:4 1293:1 1296:1 1297:1 1301:1 1311:3 1328:14 1330:2 1332:7 1340:2 1343:1 1345:1 1352:1 1353:2 1360:1 1372:1 1376:1 1381:9 1395:1 1396:1 1418:1 1420:1 1429:1 1435:1 1436:1 1460:2 1476:1 1484:1 1506:1 1507:5 1510:2 1517:2 1526:1 1546:1 1552:2 1564:1 1568:1 1591:1 1612:2 1617:3 1619:2 1629:1 1639:2 1641:1 1644:1 1661:1 1663:1 1666:1 1670:1 1700:1 1703:2 1719:1 1731:4 1745:1 1763:1 1766:3 1771:1 1774:1 1775:1 1782:1 1789:1 1815:1 1826:5 1828:1 1838:1 1846:1 1853:2 1854:2 1856:1 1875:2 1877:8 1879:5 1882:1 1883:1 1889:1 1891:2 1892:3 1894:2 1895:1 1898:1 1904:1 1908:1 1909:2 1910:1 1912:2 1930:1 1938:1 1939:2 1941:1 1942:2 1945:4 1948:2 1949:1 1952:1 1954:2 1959:1 1960:2 1961:1 1963:3 1965:2 1968:3 1970:2 1973:1 1976:2 1978:1 1981:2 1992:1 1994:1 1999:1 2000:1 2024:1 2034:1 2038:1 2045:1 2047:1 2055:1 2074:1 2076:1 2077:1 2102:1 2110:1 2115:1 2140:1 2157:1 2164:1 2167:1 2169:1 2173:1 2188:1 2218:1 2222:1 2241:1 2253:1 2254:1 2267:3 2272:1 2273:1 2282:1 2287:1 2303:1 2308:1 2317:1 2319:2 2321:1 2325:2 2328:1 2329:1 2333:1 2353:1 2359:1 2365:1 2374:1 2380:1 2383:1 2390:1 2393:1 2405:1 2409:2 2423:1 2434:1 2451:3 2457:1 2461:2 2462:9 2464:2 2478:1 2480:2 2481:3 2491:1 2496:1 2500:1 2507:9 2535:1 2589:1 2597:2 2606:1 2611:1 2636:1 2645:3 2678:1 2685:1 2689:1 2700:1 2718:1 2745:1 2753:1 2754:1 2764:2 2770:1 2779:3 2802:3 2807:1 2817:1 2826:3 2831:1 2839:1 2842:1 2843:1 2849:1 2853:1 2876:1 2898:1 2941:1 2948:1 2950:1 2954:1 2981:1 2993:2 2999:1 3002:2 3049:3 3059:2 3063:2 3068:1 3076:2 3089:1 3090:1 3093:1 3095:1 3103:6 3118:1 3129:1 3131:1 3135:1 3136:1 3139:1 3147:3 3173:2 3183:2 3184:4 3208:1 3221:6 3222:1 3234:1 3237:6 3278:1 3288:1 3301:1 3306:1 3312:6 3323:1 3326:2 3328:2 3354:1 3355:1 3358:1 3367:1 3369:2 3377:1 3391:1 3399:2 3404:1 3407:2 3408:1 3416:1 3428:1 3442:1 3450:1 3467:1 3481:1 3495:1 3503:1 3514:1 3519:1 3537:1 3572:1 3596:1 3598:1 3620:1 3622:1 3628:1 3653:1 3655:1 3660:2 3661:1 3666:1 3678:1 3681:1 3710:2 3729:1 3736:1 3737:1 3740:1 3770:1 3773:1 3777:1 3801:1 3803:2 3831:1 3832:1 3837:1 3840:2 3845:1 3856:1 3868:1 3878:1 3889:1 3902:2 3904:1 3908:1 3911:1 3928:4 3937:1 3938:2 3939:1 3961:1 3991:1 3992:1 4003:1 4019:1 4046:1 4047:1 4073:1 4082:1 4084:1 4091:1 4099:1 4107:14 4108:1 4116:1 4136:1 4143:1 4159:1 4160:1 4192:3 4197:1 4198:7 4211:3 4212:2 4214:1 4216:1 4218:1 4222:1 4223:1 4228:1 4229:2 4230:2 4231:4 4234:3 4237:1 4238:1 4248:2 4275:1 4302:1 4319:1 4323:1 4351:1 4364:4 4368:1 4384:1 4391:1 4394:1 4403:1 4409:3 4412:1 4420:1 4436:1 4450:2 4464:1 4470:1 4498:3 4506:1 4529:1 4539:1 4546:4 4561:1 4581:1 4587:2 4599:1 4620:1 4621:2 4625:1 4628:1 4633:2 4644:1 4650:1 4654:1 4658:1 4662:2 4667:1 4673:1 4675:1 4681:1 4689:3 4703:3 4729:1 4741:1 4757:2 4768:1 4771:1 4773:1 4787:1 4794:1 4818:1 4821:1 4823:1 4826:1 4831:1 4836:2 4854:1 4861:1 4872:1 4876:2 4926:4 4927:3 4950:2 4953:2 4958:1 4959:2 4986:1 4994:1 5016:1 5025:1 5049:5 5054:1 5075:1 5090:2 5096:1 5100:2 5103:1 5112:1 5127:1 5130:1 5142:1 5146:2 5187:3 5189:1 5192:3 5205:1 5215:1 5217:1 5225:1 5236:1 5247:3 5248:1 5260:1 5263:1 5264:1 5276:1 5282:2 5289:1 5308:2 5310:2 5314:1 5322:3 5324:1 5325:1 5332:2 5335:1 5337:1 5338:1 5340:4 5342:2 5347:2 5349:5 5350:2 5352:4 5369:1 5396:1 5398:1 5409:1 5426:4 5437:4 5451:2 5488:1 5489:1 5501:1 5520:1 5535:1 5592:2 5604:1 5609:1 5615:1 5616:2 5625:1 5629:2 5630:1 5634:1 5655:1 5656:1 5663:1 5665:1 5668:1 5672:2 5674:4 5686:2 5688:1 5689:1 5693:1 5702:1 5703:1 5709:1 5717:1 5723:1 5726:2 5774:1 5783:3 5785:1 5797:1 5807:3 5808:1 5813:1 5818:1 5819:1 5823:1 5837:1 5874:1 5878:2 5890:1 5914:1 5917:1 5930:1 5947:9 5948:1 5959:1 5968:2 5970:1 5998:2 6021:1 6035:1 6039:1 6040:1 6052:2 6057:1 6071:1 6084:1 6096:1 6116:1 6124:1 6126:1 6130:1 6147:1 6155:3 6175:3 6183:3 6192:1 6194:1 6200:1 6201:1 6209:1 6223:1 6231:1 6232:1 6237:2 6241:1 6246:1 6248:1 6255:1 6260:1 6261:1 6269:1 6276:1 6285:2 6286:1 6288:1 6289:1 6305:1 6324:1 6332:1 6354:1 6359:4 6365:10 6375:1 6382:2 6384:1 6386:4 6387:1 6410:1 6416:1 6429:32 6436:1 6449:5 6451:11 6460:1 6486:1 6497:2 6501:1 6508:1 6545:1 6551:1 6599:1 6607:1 6616:1 6619:1 6655:1 6669:3 6677:3 6680:1 6700:1 6743:1 6771:1 6781:1 6785:1 6789:1 6797:1 6802:1 6806:1 6810:9 6816:2 6818:1 6821:1 6824:1 6841:1 6854:1 6859:27 6882:1 6906:1 6908:1 6918:1 6926:1 6968:1 6981:1 7017:1 7020:1 7030:1 7038:5 7054:2 7056:1 7068:3 7077:1 7078:1 7084:1 7086:3 7110:1 7115:1 7121:1 7125:1 7135:1 7156:1 7157:2 7164:1 7166:3 7169:2 7170:4 7172:1 7173:1 7174:1 7177:2 7182:4 7192:1 7193:1 7194:2 7222:1 7246:1 7257:2 7262:2 7263:1 7264:1 7280:1 7303:3 7305:1 7325:1 7331:1 7364:1 7371:2 7384:1 7400:1 7409:2 7423:2 7425:1 7432:3 7434:1 7437:1 7443:1 7451:1 7457:1 7459:1 7461:4 7488:1 7505:1 7519:1 7521:1 7526:1 7535:2 7539:1 7541:1 7571:1 7573:2 7581:6 7590:4 7594:1 7596:1 7604:3 7615:1 7628:1 7638:1 7649:1 7656:1 7665:1 7672:1 7678:1 7686:1 7712:1 7731:1 7753:1 7777:1 7787:3 7790:1 7798:1 7803:1 7804:1 7805:1 7810:1 7821:1 7865:1 7868:1 7878:1 7896:1 7912:2 7922:1 7927:1 7930:3 7932:1 7943:1 7944:1 7950:1 7964:4 7975:1 7980:1 7988:3 8013:1 8036:1 8048:1 8049:4 8061:1 8064:3 8067:1 8070:6 8071:1 8080:3 8099:1 8118:1 8121:1 8138:2 8139:1 8143:2 8162:11 8166:1 8174:1 8177:1 8189:1 8195:1 8196:1 8200:1 8205:1 8212:1 8215:1 8222:2 8226:1 8285:2 8293:1 8296:3 8297:1 8304:2 8317:1 8328:1 8348:2 8352:2 8363:2 8379:1 8382:1 8387:2 8392:1 8427:1 8437:2 8443:1 8444:2 8480:1 8508:2 8517:2 8532:2 8536:1 8566:1 8570:1 8574:1 8575:1 8581:2 8617:3 8663:1 8679:4 8682:3 8684:1 8700:1 8705:1 8736:2 8746:1 8753:1 8759:3 8760:1 8769:1 8778:3 8783:1 8785:1 8789:2 8801:2 8802:2 8807:1 8809:2 8814:3 8815:1 8817:1 8818:1 8822:1 8824:1 8828:1 8829:1 8832:1 8833:2 8840:1 8841:1 8843:1 8856:3 8857:2 8867:1 8881:1 8891:3 8897:1 8903:1 8905:1 8907:1 8910:1 8914:4 8916:8 8949:1 8960:2 8975:1 8977:1 8981:1 8988:1 8989:4 8997:1 9001:3 9070:1 9080:1 9090:1 9101:4 9102:2 9106:1 9108:1 9145:3 9162:2 9167:1 9173:3 9192:1 9193:1 9198:2 9200:1 9202:1 9205:1 9215:1 9222:1 9225:1 9252:6 9260:2 9282:1 9289:1 9313:1 9317:1 9321:1 9338:1 9346:1 9359:3 9363:2 9388:1 9389:1 9399:1 9411:1 9416:1 9424:1 9433:1 9440:1 9442:1 9459:1 9472:1 9486:2 9488:7 9525:1 9536:2 9542:1 9543:2 9545:1 9547:2 9548:1 9559:1 9561:1 9563:3 9586:1 9587:1 9599:1 9610:1 9621:1 9624:2 9639:1 9653:7 9656:3 9659:1 9668:1 9682:2 9687:1 9695:1 9696:1 9698:1 9703:1 9705:1 9707:1 9710:1 9716:1 9717:1 9723:2 9727:1 9730:1 9738:1 9743:1 9745:1 9760:1 9762:1 9763:5 9772:3 9778:8 9810:1 9814:1 9815:1 9822:1 9823:11 9852:1 9880:1 9881:1 9899:1 9904:1 9911:1 9918:2 9923:4 9924:1 9949:1 9974:3 9989:1 10001:1 10018:1 10022:3 10037:2 10046:1 10053:3 10054:3 10060:1 10061:1 10067:1 10070:1 10074:3 10079:1 10089:1 10095:1 10105:1 10118:1 10130:1 10144:1 10146:1 10151:2 10163:3 10169:1 10179:1 10225:1 10231:1 10233:1 10265:1 10281:3 10290:1 10304:1 10337:1 10360:1 10363:1 10364:2 10391:1 10413:1 10416:1 10430:1 10477:1 10480:8 10483:1 10487:2 10494:2 10502:1 10505:1 10513:1 10531:1 10548:1 10550:11 10556:1 10571:1 10576:2 10598:2 10621:2 10637:1 10652:1 10687:1 10695:1 10724:1 10725:1 10733:1 10739:4 10753:1 10754:1 10755:2 10787:1 10804:1 10818:2 10836:4 10844:1 10846:1 10847:3 10851:3 10861:3 10870:1 10871:8 10872:1 10874:1 10897:1 10901:1 10921:1 10923:2 10942:2 10943:1 10962:1 10969:1 10970:8 10974:1 10982:1 10985:14 10987:1 10993:1 11001:1 11013:1 11016:1 11022:1 11046:4 11065:1 11087:2 11101:2 11118:1 11123:1 11143:1 11156:1 11159:2 11163:2 11168:1 11187:1 11191:1 11220:1 11224:1 11273:1 11275:1 11277:1 11280:5 11281:1 11287:1 11289:2 11297:1 11301:2 11311:1 11317:1 11322:1 11329:1 11332:1 11340:1 11342:1 11368:10 11375:1 11376:2 11392:1 11406:1 11407:2 11408:1 11415:1 11419:1 11432:2 11439:1 11447:2 11449:1 11451:3 11459:1 11509:5 11512:2 11531:2 11554:1 11564:2 11607:1 11612:1 11613:1 11614:2 11638:2 11657:1 11665:1 11689:1 11697:2 11699:1 11704:1 11710:1 11712:1 11717:1 11718:1 11744:1 11747:1 11777:1 11788:1 11806:1 11808:1 11812:1 11813:2 11816:1 11818:2 11825:1 11826:1 11833:1 11841:1 11855:1 11856:1 11861:2 11881:1 11900:1 11902:4 11910:1 11927:4 11942:1 11958:1 11979:1 11985:1 11990:3 11997:1 12006:5 12016:2 12020:1 12025:1 12035:1 12036:1 12045:1 12050:2 12054:1 12060:1 12069:1 12089:1 12091:1 12099:1 12100:1 12105:1 12114:1 12115:1 12123:1 12141:1 12144:1 12151:1 12157:1 12173:1 12175:1 12176:1 12218:1 12229:1 12251:1 12263:3 12269:1 12276:3 12287:1 12303:3 12337:1 12341:1 12346:1 12366:1 12368:1 12372:1 12383:4 12387:1 12389:1 12408:1 12432:1 12436:2 12437:2 12472:1 12473:1 12474:1 12490:1 12525:1 12550:3 12559:1 12582:3 12583:2 12584:1 12586:1 12602:1 12630:1 12633:1 12635:1 12667:1 12689:1 12706:1 12716:1 12723:1 12732:1 12739:1 12741:29 12766:2 12770:1 12778:1 12800:1 12816:1 12822:1 12828:1 12840:1 12859:1 12863:1 12872:2 12877:1 12897:1 12911:1 12920:1 12929:1 12948:1 12950:4 12956:1 12958:2 12959:1 12961:2 12969:1 12975:1 12981:2 12983:1 12984:1 12986:1 12988:6 12989:1 12995:1 12997:1 13000:1 13007:1 13012:1 13030:2 13031:1 13069:1 13070:1 13071:1 13082:1 13094:5 13095:5 13113:1 13121:1 13140:1 13173:1 13202:1 13207:3 13221:1 13225:1 13246:1 13251:1 13259:1 13270:1 13292:2 13295:2 13298:1 13300:1 13322:1 13326:1 13328:6 13339:1 13352:1 13363:1 13371:1 13373:1 13378:1 13379:1 13382:1 13383:4 13390:1 13405:1 13409:1 13410:2 13416:1 13418:1 13424:1 13425:1 13430:1 13431:2 13434:3 13435:2 13437:2 13442:1 13444:3 13445:1 13448:1 13449:1 13453:4 13455:1 13456:1 13459:5 13462:1 13469:1 13482:3 13495:1 13501:1 13525:2 13545:1 13554:1 13562:1 13570:1 13622:1 13637:1 13641:1 13670:1 13675:1 13703:2 13709:1 13719:1 13739:1 13743:1 13746:1 13752:2 13758:2 13765:2 13766:1 13767:1 13775:1 13812:1 13818:2 13819:2 13826:1 13835:2 13837:5 13843:2 13846:1 13867:1 13868:1 13876:2 13895:1 13906:2 13907:1 13924:2 13925:3 13928:9 13931:2 13965:2 13966:1 13970:1 13972:2 13977:2 13979:3 13994:2 14000:1 14003:2 14008:1 14031:2 14035:2 14039:2 14046:1 14052:2 14071:1 14074:1 14077:1 14094:1 14097:1 14100:1 14101:1 14108:1 14114:1 14118:1 14122:1 14124:1 14125:1 14142:1 14154:1 14156:1 14178:1 14189:1 14200:1 14207:1 14210:1 14223:1 14240:2 14245:1 14246:1 14254:1 14262:1 14275:2 14307:1 14311:1 14325:1 14330:1 14332:1 14344:1 14349:1 14368:1 14371:1 14372:1 14380:1 14393:1 14398:1 14403:2 14443:1 14446:1 14449:2 14462:1 14465:1 14468:1 14491:1 14516:1 14518:2 14539:2 14544:2 14550:1 14553:1 14570:1 14574:1 14575:1 14577:1 14585:1 14591:2 14593:1 14596:2 14627:1 14637:1 14640:2 14645:1 14665:1 14677:6 14696:1 14713:1 14714:1 14719:3 14721:1 14740:1 14744:2 14761:1 14762:3 14764:1 14768:2 14774:1 14775:1 14781:1 14783:1 14785:1 14803:2 14806:1 14820:1 14825:1 14830:1 14833:1 14837:1 14844:4 14853:3 14856:1 14864:1 14877:1 14880:1 14885:1 14887:1 14889:1 14903:8 14929:2 14931:2 14963:1 14975:1 14976:1 14981:1 15001:1 15024:1 15035:1 15056:1 15067:1 15070:1 15080:1 15112:1 15116:1 15129:1 15139:1 15142:1 15147:2 15164:1 15179:1 15184:1 15191:1 15205:2 15215:1 15227:1 15251:1 15282:3 15283:1 15307:7 15312:2 15315:1 15328:1 15367:1 15370:1 15371:1 15374:1 15389:1 15396:1 15446:1 15477:1 15480:2178 15482:2 15496:3 15503:1 15514:1 15525:1 15532:1 15543:1 15564:1 15575:1 15577:1 15583:2 15587:1 15602:1 15611:1 15623:1 15633:1 15635:1 15646:5 15655:1 15658:3 15661:1 15662:2 15663:1 15672:2 15684:1 15708:1 15723:4 15725:2 15742:1 15743:1 15762:1 15773:1 15790:1 15800:2 15824:1 15834:3 15883:1 15887:2 15898:1 15929:2 15936:1 15944:1 15949:1 15990:1 16002:1 16009:1 16019:1 16037:1 16042:2 16046:1 16054:3 16074:4 16095:2 16102:2 16110:1 16117:1 16121:1 16129:1 16151:1 16152:5 16159:1 16170:1 16171:3 16176:1 16177:1 16206:8 16212:1 16219:1 16235:1 16239:1 16251:1 16268:1 16271:1 16307:1 16331:1 16332:1 16341:1 16361:1 16362:1 16380:1 16387:2 16402:1 16408:1 16414:1 16416:1 16426:1 16432:2 16434:3 16443:4 16449:1 16461:1 16462:1 16479:2 16482:1 16485:3 16495:1 16500:1 16514:1 16522:2 16538:1 16541:1 16548:1 16573:1 16593:1 16596:1 16611:1 16618:2 16630:1 16650:1 16661:1 16669:9 16676:3 16679:1 16681:1 16706:1 16712:1 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:5 16763:2 16768:2 16781:1 16782:1 16787:1 16795:2 16797:1 16811:1 16815:7 16823:3 16826:1 16832:1 16844:1 16855:1 16856:1 16861:1 16867:1 16873:1 16895:1 16908:1 16945:1 16947:1 16965:3 16981:1 17001:3 17014:2 17017:1 17027:1 17043:1 17046:6 17050:5 17056:1 17058:2 17090:1 17101:1 17109:1 17130:1 17138:2 17144:1 17163:1 17168:1 17188:4 17197:1 17206:1 17210:1 17219:1 17221:1 17223:1 17234:1 17238:1 17248:1 17255:1 17261:1 17275:1 17291:1 17305:1 17311:4 17329:1 17352:1 17358:2 17362:2 17380:1 17400:1 17429:1 17437:3 17443:1 17452:1 17485:10 17491:2 17496:2 17501:1 17510:4 17520:1 17532:1 17535:1 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17571:1 17590:1 17601:1 17604:1 17610:2 17648:1 17649:1 17685:1 17687:1 17706:5 17721:1 17724:2 17735:1 17738:3 17745:1 17747:2 17750:1 17774:1 17806:1 17807:1 17812:1 17813:1 17819:1 17827:1 17833:1 17834:1 17835:4 17837:1 17838:1 17839:1 17851:1 17852:1 17857:1 17867:1 17879:1 17884:1 17893:1 17908:1 17916:3 17921:1 17929:1 17943:1 17958:1 17965:2 17980:2 17993:2 17995:2 17996:2 18035:1 18037:1 18043:2 18053:3 18066:1 18087:1 18088:2 18091:1 18092:1 18093:1 18130:1 18131:1 18166:1 18176:1 18177:2 18186:1 18196:3 18197:3 18199:3 18204:1 18207:1 18210:1 18228:1 18231:3 18234:2 18237:1 18244:1 18248:1 18249:2 18261:1 18264:1 18285:1 18296:1 18318:2 18339:1 18341:3 18347:1 18360:3 18366:2 18378:3 18392:1 18406:1 18421:1 18425:1 18434:2 18459:1 18474:1 18479:1 18491:2 18498:2 18505:1 18506:4 18509:1 18511:1 18532:1 18537:1 18542:1 18558:1 18565:1 18567:2 18573:2 18575:2 18577:1 18578:1 18580:2 18581:1 18616:1 18619:1 18631:1 18641:1 18643:1 18644:1 18658:1 18664:1 18666:1 18676:2 18686:1 18693:2 18704:1 18715:1 18727:3 18729:1 18732:2 18739:3 18742:1 18776:1 18784:1 18803:1 18807:1 18820:2 18842:1 18843:1 18854:1 18856:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:2 18939:1 18941:2 18943:1 18946:1 18948:1 18949:1 18961:1 18965:1 18975:3 18976:3 18978:1 18985:2 18990:3 19007:1 19029:2 19033:1 19036:1 19053:1 19056:1 19064:1 19070:1 19080:1 19096:3 19123:1 19134:4 19145:1 19156:3 19187:2 19193:1 19201:1 19212:1 19213:1 19218:1 19225:1 19229:1 19233:1 19237:1 19249:1 19278:1 19289:1 19325:1 19336:1 19349:2 19360:3 19365:4 19369:1 19371:1 19376:2 19388:1 19405:1 19406:1 19417:1 19425:3 19427:1 19431:1 19435:3 19438:3 19443:1 19444:1 19446:1 19470:1 19474:1 19480:1 19486:1 19493:1 19494:2 19507:1 19508:1 19510:2 19523:1 19525:1 19532:1 19540:1 19559:6 19562:1 19565:3 19573:1 19580:1 19582:1 19587:1 19611:1 19615:3 19637:1 19638:2 19644:1 19666:1 19716:2 19718:1 19730:1 19744:3 19746:1 19748:1 19789:1 19810:2 19823:1 19832:3 19870:1 19901:1 19902:8 19960:1 19974:2 20000:2 20003:1 20004:1 20007:1 20013:1 20022:1 20031:1 20032:1 20040:2 20051:1 20055:1 20063:1 20068:3 20076:1 20083:2 20084:7 20087:1 20089:1 20102:1 20107:1 20109:1 20111:1 20122:1 20126:2 20139:1 20152:1 20155:1 20173:1 20196:1 20204:1 20214:1 20252:1 20266:1 20268:1 20270:1 20273:1 20274:1 20275:1 20276:1 20281:1 20287:1 20305:1 20316:1 20318:1 20327:3 20331:1 20332:2 20334:1 20337:4 20343:1 20344:1 20360:1 20366:4 20378:5 20379:1 20393:1 20411:2 20412:1 20432:1 20441:1 20442:1 20447:1 20448:1 20460:1 20469:2 20473:1 20480:2 20485:1 20490:2 20493:1 20508:1 20512:2 20545:1 20563:1 20567:1 20595:1 20599:2 20630:1 20638:1 20649:1 20651:2 20659:1 20663:1 20670:3 20674:1 20686:6 20718:1 20722:1 20723:1 20734:1 20738:1 20742:6 20750:1 20751:1 20753:1 20755:1 20762:1 20769:1 20785:2 20786:1 20847:1 20878:1 20909:1 20928:3 20930:7 20931:1 20949:3 20955:1 20958:1 20962:2 20964:1 20965:1 20970:2 20989:1 20993:1 21007:1 21023:1 21079:1 21099:1 21100:1 21104:1 21111:1 21112:1 21113:1 21134:1 21136:1 21137:1 21139:1 21154:1 21159:1 21189:1 21190:1 21204:1 21205:1 21208:3 21209:1 21245:1 21267:1 21279:1 21319:1 21337:1 21361:5 21363:1 21364:5 21371:1 21413:1 21438:1 21441:2 21455:1 21480:4 21486:1 21503:1 21512:1 21520:1 21522:1 21551:1 21556:1 21557:1 21559:1 21561:2 21576:1 21581:1 21586:1 21587:1 21594:1 21602:1 21612:3 21628:1 21630:1 21632:1 21637:3 21642:1 21663:1 21665:1 21671:1 21693:1 21695:1 21697:4 21703:1 21707:1 21716:1 21738:1 21740:1 21748:1 21760:6 21761:1 21773:2 21787:1 21812:1 21831:3 21841:1 21844:2 21857:1 21863:1 21869:2 21872:1 21887:1 21905:1 21914:1 21923:1 21926:1 21934:1 21952:1 21974:2 21977:2 21984:1 21996:1 21998:1 22001:1 22008:1 22010:2 22013:3 22014:1 22027:2 22043:1 22048:2 22058:1 22062:1 22065:1 22068:1 22080:4 22108:2 22114:2 22124:1 22138:1 22152:1 22173:1 22186:1 22193:1 22195:1 22208:1 22242:1 22247:2 22304:1 22306:1 22322:1 22331:1 22379:1 22386:1 22390:1 22394:1 22419:1 22423:1 22425:1 22429:1 22462:1 22511:1 22515:1 22522:2 22527:1 22528:3 22547:1 22548:2 22550:1 22553:1 22562:1 22571:1 22572:1 22585:3 22593:1 22601:1 22602:1 22611:4 22616:1 22624:1 22657:1 22666:1 22669:6 22672:2 22674:1 22690:2 22693:1 22699:1 22727:1 22740:4 22749:2 22750:2 22755:1 22759:1 22760:3 22762:1 22769:1 22779:1 22786:1 22798:1 22801:2 22804:1 22815:2 22817:1 22822:1 22823:1 22825:1 22831:1 22837:1 22846:1 22854:1 22869:2 22874:1 22894:2 22897:1 22912:1 22914:1 22916:3 22917:1 22925:1 22939:1 22942:1 22951:1 22957:1 22990:1 22991:1 23005:1 23006:2 23007:1 23022:4 23039:1 23048:1 23050:2 23066:3 23074:2 23088:1 23089:6 23109:2 23113:1 23138:1 23151:1 23206:1 23233:1 23248:3 23284:1 23305:3 23311:1 23314:2 23324:1 23325:1 23339:1 23341:1 23360:4 23363:1 23385:1 23404:1 23405:1 23415:1 23417:1 23430:19 23431:1 23432:1 23446:1 23459:1 23466:12 23469:1 23472:1 23474:1 23476:2 23481:1 23490:1 23518:2 23527:1 23541:1 23546:1 23551:3 23558:3 23586:9 23587:1 23610:1 23623:1 23639:1 23645:2 23647:1 23653:1 23655:1 23694:1 23698:1 23719:1 23739:1 23740:1 23754:1 23758:1 23784:1 23796:4 23797:3 23840:1 23845:1 23847:1 23849:1 23852:1 23853:2 23858:1 23862:1 23868:1 23939:1 23951:1 23956:4 23961:1 23964:1 23966:1 23967:1 23970:1 23971:10 23985:1 23990:1 24000:1 24005:1 24006:2 24012:1 24028:1 24042:1 24049:1 24057:1 24101:1 24108:1 24117:1 24126:1 24139:1 24145:1 24153:1 24162:3 24170:2 24196:1 24223:1 24225:1 24253:1 24261:2 24293:1 24301:1 24302:1 24306:1 24307:2 24315:1 24317:1 24320:1 24324:1 24341:1 24347:2 24353:1 24362:1 24370:1 24376:1 24379:1 24384:1 24392:1 24393:1 24401:4 24409:1 24410:1 24411:2 24418:1 24421:1 24438:1 24440:1 24449:1 24455:1 24463:1 24466:1 24469:3 24470:1 24473:2 24476:4 24479:1 24480:1 24483:2 24487:1 24491:1 24504:1 24523:1 24525:3 24530:1 24535:1 24536:1 24552:1 24563:1
20 13:1 25:1 29:1 30:1 34:2 37:1 39:1 45:1 53:1 61:1 72:1 76:1 85:7 88:1 96:1 105:1 112:1 113:1 150:1 162:1 164:1 172:1 175:1 186:1 201:1 216:3 218:2 240:3 241:1 254:1 256:1 276:1 296:2 298:1 314:1 317:1 339:1 341:2 348:1 377:1 392:1 407:3 441:1 469:1 489:1 492:1 509:1 510:3 516:1 527:2 541:2 545:1 565:2 566:1 568:3 601:1 640:1 694:1 713:1 720:1 752:2 754:1 758:1 762:2 766:1 778:1 784:1 785:4 788:1 795:1 805:1 814:3 825:1 828:1 831:3 833:1 834:5 835:1 838:4 846:1 857:1 862:1 869:4 881:1 888:3 889:3 892:2 899:1 906:1 912:1 937:1 946:1 948:2 952:1 960:1 967:1 989:1 994:1 1005:1 1009:5 1015:4 1043:1 1044:1 1047:1 1053:1 1064:1 1065:1 1074:1 1078:1 1080:1 1094:1 1095:1 1108:1 1110:1 1112:1 1114:1 1131:1 1137:1 1142:1 1158:1 1172:1 1208:1 1212:1 1220:2 1230:2 1236:1 1241:1 1242:1 1257:1 1258:1 1259:4 1267:3 1274:4 1293:1 1296:1 1297:1 1301:1 1311:3 1328:14 1330:2 1332:7 1340:2 1343:1 1345:1 1352:1 1353:2 1360:1 1372:1 1376:1 1381:9 1385:1 1395:1 1396:1 1418:1 1420:1 1429:1 1435:1 1436:1 1439:1 1460:2 1476:1 1484:1 1506:1 1507:5 1510:2 1517:2 1526:1 1535:1 1546:1 1552:2 1564:1 1568:1 1591:1 1612:2 1617:3 1619:2 1629:1 1639:2 1641:1 1644:1 1661:1 1663:1 1666:1 1670:1 1700:1 1703:2 1719:1 1731:4 1745:1 1763:1 1766:3 1771:1 1774:1 1775:1 1782:1 1789:1 1815:1 1826:5 1828:1 1838:1 1846:1 1853:2 1854:2 1856:1 1875:2 1877:8 1879:7 1882:1 1883:1 1889:1 1891:2 1892:3 1894:2 1895:1 1898:1 1904:1 1908:1 1909:2 1910:1 1912:2 1930:1 1938:1 1939:2 1941:1 1942:2 1945:4 1948:2 1949:1 1952:1 1954:2 1959:1 1960:2 1961:1 1963:3 1965:2 1968:3 1970:2 1973:1 1976:2 1978:1 1981:2 1992:1 1994:1 1999:1 2000:1 2024:1 2034:1 2038:1 2045:1 2047:1 2055:1 2074:1 2076:1 2077:1 2102:1 2110:1 2115:1 2140:1 2157:1 2164:1 2167:1 2169:1 2173:1 2188:1 2210:1 2218:1 2222:1 2241:1 2253:1 2254:1 2267:3 2272:1 2273:1 2282:1 2287:1 2303:1 2308:1 2317:1 2319:2 2321:1 2325:2 2328:1 2329:1 2333:1 2353:1 2359:1 2365:1 2374:1 2380:1 2383:1 2390:1 2393:1 2405:1 2409:2 2416:1 2423:1 2434:1 2451:3 2457:1 2461:2 2462:9 2464:2 2478:1 2480:2 2481:3 2491:1 2496:1 2500:1 2507:9 2535:1 2565:1 2589:1 2597:2 2606:1 2611:1 2636:1 2645:3 2678:1 2685:1 2689:1 2694:1 2700:1 2718:1 2745:1 2753:1 2754:1 2764:2 2770:1 2779:3 2780:1 2802:3 2807:1 2817:1 2826:3 2831:1 2839:1 2842:1 2843:1 2849:1 2852:1 2853:1 2876:1 2898:1 2941:1 2948:1 2950:1 2954:1 2981:1 2993:2 2999:1 3002:2 3049:4 3059:2 3063:2 3068:1 3076:2 3089:1 3090:1 3093:1 3095:1 3103:6 3118:1 3129:1 3131:1 3135:1 3136:1 3139:1 3147:3 3173:2 3183:2 3184:4 3208:1 3221:6 3222:1 3234:1 3237:6 3278:1 3288:1 3301:1 3306:1 3312:6 3323:1 3326:2 3328:2 3354:1 3355:1 3358:1 3367:1 3369:2 3377:1 3391:1 3399:2 3404:1 3407:2 3408:1 3416:1 3428:1 3442:1 3450:1 3467:1 3481:1 3495:1 3503:1 3514:1 3519:1 3537:1 3547:1 3572:1 3596:1 3598:1 3620:1 3622:1 3628:1 3653:1 3655:1 3660:2 3661:1 3666:1 3678:1 3681:1 3710:2 3729:1 3736:1 3737:1 3740:1 3770:1 3773:1 3777:1 3801:1 3803:2 3831:1 3832:1 3837:1 3840:2 3845:1 3856:1 3868:1 3878:1 3889:1 3902:2 3904:1 3908:1 3911:1 3928:4 3937:1 3938:2 3939:1 3961:1 3991:1 3992:1 4003:1 4019:1 4046:1 4047:1 4073:1 4082:1 4084:1 4091:1 4099:1 4107:15 4108:1 4116:1 4136:1 4143:1 4159:1 4160:1 4192:3 4197:1 4198:7 4211:3 4212:2 4214:1 4216:1 4218:1 4222:1 4223:1 4228:1 4229:2 4230:2 4231:4 4234:3 4237:1 4238:1 4248:2 4275:1 4302:1 4319:1 4323:1 4351:1 4364:4 4368:1 4384:1 4391:1 4394:1 4403:1 4409:3 4412:1 4420:1 4425:1 4436:1 4450:2 4464:1 4470:1 4498:3 4506:1 4529:1 4539:1 4546:4 4561:1 4581:1 4587:2 4599:1 4620:1 4621:2 4625:1 4628:1 4633:2 4644:1 4650:1 4654:1 4658:1 4662:2 4667:1 4673:1 4675:1 4681:1 4689:3 4703:3 4729:1 4741:1 4757:2 4767:1 4768:1 4771:1 4773:1 4787:1 4794:1 4818:1 4821:1 4823:1 4826:1 4831:1 4836:2 4854:1 4861:1 4872:1 4876:2 4926:4 4927:3 4950:2 4953:2 4958:1 4959:2 4986:1 4994:1 5016:1 5025:1 5037:1 5049:5 5054:1 5075:1 5090:2 5096:1 5100:2 5103:1 5112:1 5127:1 5130:1 5142:1 5146:2 5187:3 5189:1 5192:3 5205:1 5215:1 5217:1 5225:1 5236:1 5247:3 5248:1 5260:1 5263:1 5264:1 5276:1 5282:2 5289:1 5308:2 5310:2 5314:1 5322:3 5324:1 5325:1 5332:2 5335:1 5337:1 5338:1 5340:4 5342:2 5347:2 5349:5 5350:2 5352:4 5369:1 5396:1 5398:1 5409:1 5426:4 5437:4 5451:2 5488:1 5489:1 5501:1 5520:1 5535:1 5592:2 5604:1 5609:1 5615:1 5616:2 5625:1 5629:2 5630:1 5634:1 5655:1 5656:1 5663:1 5665:1 5668:1 5672:2 5674:4 5686:2 5688:1 5689:1 5693:1 5702:1 5703:1 5709:1 5717:1 5723:1 5726:3 5774:1 5783:3 5785:1 5797:1 5807:3 5808:1 5813:1 5818:1 5819:1 5823:1 5837:1 5874:1 5878:2 5890:1 5914:1 5917:1 5930:1 5947:9 5948:1 5959:1 5968:2 5970:1 5998:2 6021:2 6035:1 6039:1 6040:1 6052:2 6057:1 6071:1 6084:1 6096:1 6116:1 6124:1 6126:1 6130:1 6147:1 6155:3 6175:3 6183:3 6192:1 6194:1 6200:1 6201:1 6209:1 6223:1 6231:1 6232:1 6237:2 6241:1 6246:1 6248:1 6255:1 6260:1 6261:1 6269:1 6276:1 6285:2 6286:1 6288:1 6289:1 6305:1 6324:1 6332:1 6354:1 6359:4 6365:10 6375:1 6382:2 6384:1 6386:4 6387:1 6410:1 6416:1 6429:32 6436:1 6449:5 6451:11 6460:1 6486:1 6497:2 6499:1 6501:1 6508:1 6545:1 6551:1 6599:1 6607:1 6616:1 6619:1 6655:1 6669:3 6677:3 6680:1 6700:1 6743:1 6771:1 6781:1 6785:1 6789:1 6797:1 6802:1 6806:1 6810:9 6816:2 6818:1 6821:1 6824:1 6841:1 6854:1 6859:27 6882:1 6906:1 6908:1 6918:1 6926:1 6968:1 6981:1 7017:1 7020:1 7030:1 7038:5 7054:2 7056:1 7068:3 7077:1 7078:1 7084:1 7086:3 7110:1 7115:1 7121:1 7125:1 7135:1 7156:1 7157:2 7164:1 7166:3 7169:2 7170:4 7172:1 7173:1 7174:1 7177:2 7182:4 7192:1 7193:1 7194:2 7222:1 7246:1 7257:2 7262:2 7263:1 7264:1 7280:1 7303:3 7305:1 7325:1 7331:1 7358:1 7364:1 7371:2 7384:1 7400:2 7409:2 7423:2 7425:1 7432:3 7434:1 7437:1 7443:1 7451:1 7457:1 7459:1 7461:4 7488:1 7505:1 7519:1 7521:1 7526:1 7535:2 7539:1 7541:1 7571:1 7573:2 7581:6 7590:4 7594:1 7596:1 7604:3 7615:1 7628:1 7638:1 7649:1 7656:1 7665:1 7672:1 7678:1 7686:1 7712:1 7731:1 7753:1 7777:1 7787:3 7790:1 7798:1 7803:1 7804:1 7805:1 7810:1 7821:1 7865:1 7868:1 7878:1 7896:1 7912:3 7922:1 7927:1 7930:3 7932:1 7943:1 7944:1 7950:1 7964:4 7975:1 7980:1 7988:3 8013:1 8036:1 8048:1 8049:4 8061:1 8064:3 8067:1 8070:6 8071:1 8080:3 8099:1 8118:1 8121:1 8138:2 8139:1 8143:2 8162:11 8166:1 8174:1 8177:1 8183:1 8189:1 8195:1 8196:1 8200:1 8205:1 8212:1 8215:1 8222:2 8226:1 8285:2 8293:1 8296:3 8297:1 8304:2 8317:1 8328:1 8348:2 8352:2 8363:2 8379:1 8382:1 8387:2 8392:1 8427:1 8437:2 8443:1 8444:2 8480:1 8508:2 8517:2 8532:2 8536:1 8566:1 8570:1 8574:1 8575:1 8581:2 8607:1 8617:3 8663:1 8679:4 8682:4 8684:1 8700:1 8705:1 8736:2 8746:1 8753:1 8759:3 8760:1 8769:1 8778:3 8783:1 8785:1 8789:2 8801:2 8802:2 8807:1 8809:2 8814:3 8815:1 8817:1 8818:1 8822:1 8824:1 8828:1 8829:1 8832:1 8833:2 8840:1 8841:1 8843:1 8856:3 8857:2 8867:1 8881:1 8891:3 8897:1 8903:1 8905:1 8907:1 8910:1 8914:4 8916:8 8949:1 8960:2 8975:1 8977:1 8981:1 8988:1 8989:4 8997:1 9001:3 9070:1 9080:1 9090:1 9101:4 9102:2 9106:1 9108:1 9145:3 9162:2 9167:1 9173:3 9192:1 9193:1 9198:2 9200:1 9202:1 9205:1 9215:1 9222:1 9225:1 9252:6 9260:2 9282:1 9289:1 9313:1 9317:1 9321:1 9338:1 9346:1 9359:3 9363:2 9388:1 9389:1 9399:1 9411:1 9416:1 9424:2 9433:1 9440:2 9442:1 9459:1 9472:1 9486:2 9488:7 9495:1 9525:1 9536:2 9542:1 9543:2 9545:1 9547:2 9548:1 9559:1 9561:1 9563:3 9586:1 9587:1 9599:1 9610:1 9621:1 9624:2 9639:1 9653:7 9656:3 9659:1 9668:1 9682:2 9687:1 9695:1 9696:1 9698:1 9699:1 9703:1 9705:1 9707:1 9710:1 9716:1 9717:1 9723:2 9727:1 9730:1 9738:1 9743:1 9745:1 9760:1 9762:1 9763:5 9772:3 9778:8 9808:1 9810:1 9814:1 9815:1 9822:1 9823:11 9852:1 9880:1 9881:1 9899:1 9904:1 9911:1 9918:2 9923:4 9924:1 9932:1 9936:1 9949:1 9974:3 9989:1 9999:1 10001:1 10018:1 10022:3 10037:2 10046:1 10053:3 10054:3 10060:1 10061:1 10067:1 10070:1 10074:3 10079:1 10089:1 10095:1 10105:1 10118:1 10130:1 10144:1 10146:1 10151:2 10163:3 10169:1 10179:1 10200:1 10225:1 10231:1 10233:1 10265:1 10281:3 10290:1 10304:1 10324:1 10337:1 10360:1 10363:1 10364:2 10391:1 10413:1 10416:1 10430:1 10477:1 10480:8 10483:1 10487:2 10494:2 10502:1 10505:1 10513:1 10531:1 10548:1 10550:11 10556:1 10571:1 10576:2 10598:2 10621:2 10637:1 10652:1 10687:1 10695:1 10724:1 10725:1 10733:1 10739:4 10740:1 10753:1 10754:1 10755:2 10787:1 10804:1 10818:2 10836:4 10844:1 10846:1 10847:3 10851:3 10861:3 10870:1 10871:8 10872:1 10874:1 10897:1 10901:1 10921:1 10923:2 10942:2 10943:1 10962:1 10969:1 10970:8 10974:1 10982:1 10985:14 10987:1 10993:1 11001:1 11013:1 11016:1 11022:1 11046:4 11065:1 11087:2 11093:1 11101:2 11108:1 11118:1 11123:1 11143:1 11150:1 11156:1 11159:2 11163:2 11168:1 11187:1 11191:1 11220:1 11224:1 11273:1 11275:1 11277:1 11280:5 11281:1 11283:1 11287:1 11289:2 11297:1 11301:2 11311:1 11317:1 11322:1 11329:1 11332:1 11340:1 11342:1 11368:10 11375:1 11376:2 11392:1 11406:1 11407:2 11408:1 11415:1 11419:1 11432:2 11439:1 11447:2 11449:1 11451:3 11459:1 11509:5 11512:2 11531:2 11554:1 11564:2 11607:1 11612:1 11613:1 11614:2 11638:2 11657:1 11665:1 11689:1 11697:2 11699:1 11704:1 11710:1 11712:1 11717:1 11718:1 11744:1 11747:1 11777:1 11788:1 11806:1 11808:1 11812:2 11813:2 11816:1 11818:2 11825:1 11826:1 11833:1 11841:1 11855:1 11856:1 11861:2 11881:1 11900:1 11902:4 11910:1 11927:4 11942:1 11958:1 11979:1 11985:1 11990:3 11997:1 12006:5 12016:2 12020:1 12025:1 12035:1 12036:1 12045:1 12050:2 12054:1 12060:1 12069:1 12089:1 12091:1 12099:1 12100:1 12105:1 12114:1 12115:1 12123:1 12141:1 12144:1 12151:1 12157:1 12173:1 12175:1 12176:1 12218:1 12229:1 12251:1 12263:3 12269:1 12276:3 12287:1 12303:3 12337:1 12341:1 12346:1 12366:1 12368:1 12372:1 12383:4 12387:1 12389:1 12408:1 12432:1 12436:2 12437:2 12472:1 12473:1 12474:1 12490:1 12525:1 12550:3 12559:1 12582:3 12583:2 12584:1 12586:1 12602:1 12606:1 12630:1 12633:1 12635:1 12652:1 12667:1 12689:1 12706:1 12716:1 12723:1 12732:1 12739:1 12741:30 12766:2 12770:1 12778:1 12800:1 12816:1 12822:1 12828:1 12840:1 12859:1 12863:1 12872:2 12877:1 12897:1 12911:1 12920:1 12929:1 12948:1 12950:4 12956:1 12958:2 12959:1 12961:2 12969:1 12975:1 12981:2 12983:1 12984:1 12986:1 12988:6 12989:1 12995:1 12997:1 13000:1 13007:1 13012:1 13030:2 13031:1 13033:1 13069:1 13070:1 13071:1 13082:1 13094:5 13095:5 13113:1 13121:1 13140:1 13173:1 13202:1 13207:3 13221:1 13225:1 13246:1 13251:1 13259:1 13270:1 13292:2 13295:2 13298:1 13300:1 13322:1 13326:1 13328:6 13339:1 13352:1 13363:1 13371:1 13373:1 13378:1 13379:1 13382:1 13383:4 13390:1 13405:1 13409:1 13410:2 13416:1 13418:1 13424:1 13425:1 13430:1 13431:2 13434:3 13435:2 13437:2 13442:1 13444:3 13445:1 13448:1 13449:1 13453:4 13455:1 13456:1 13459:5 13462:1 13469:1 13482:3 13495:1 13501:1 13525:2 13545:1 13554:1 13562:1 13570:1 13622:1 13637:1 13641:1 13670:1 13675:1 13703:2 13709:1 13719:1 13739:1 13743:1 13746:1 13752:2 13758:2 13765:2 13766:1 13767:1 13775:1 13812:1 13818:2 13819:2 13826:1 13835:2 13837:5 13843:2 13846:1 13867:1 13868:1 13876:2 13893:1 13895:1 13906:2 13907:1 13924:2 13925:3 13928:9 13931:2 13965:2 13966:1 13970:1 13972:2 13977:2 13979:3 13994:2 14000:1 14003:2 14008:1 14031:2 14035:2 14039:2 14046:1 14052:2 14062:1 14071:1 14074:1 14077:1 14094:1 14097:1 14100:1 14101:1 14108:1 14114:1 14118:2 14122:1 14124:1 14125:1 14142:1 14154:1 14156:1 14178:1 14189:1 14200:1 14207:1 14210:1 14223:1 14240:2 14245:1 14246:1 14254:1 14262:1 14275:2 14307:1 14311:1 14325:1 14330:1 14332:1 14344:1 14349:1 14368:1 14371:1 14372:1 14380:1 14393:1 14398:1 14403:2 14443:1 14446:1 14449:2 14462:1 14465:1 14468:1 14491:1 14516:1 14518:2 14539:2 14544:2 14550:1 14553:1 14570:1 14574:1 14575:1 14577:1 14585:1 14591:2 14593:1 14596:2 14627:1 14637:1 14640:2 14645:1 14665:1 14677:6 14696:1 14713:1 14714:1 14719:3 14721:1 14740:1 14744:3 14761:1 14762:3 14764:1 14768:2 14774:1 14775:1 14781:1 14783:1 14785:1 14802:2 14803:2 14806:1 14820:1 14825:1 14830:1 14833:1 14837:1 14844:4 14853:3 14856:1 14864:1 14877:1 14880:1 14885:1 14887:1 14889:1 14903:8 14929:2 14931:2 14941:1 14963:1 14975:1 14976:1 14981:1 15001:1 15024:1 15035:1 15056:1 15067:1 15070:1 15080:1 15112:1 15116:1 15129:1 15139:1 15142:1 15147:2 15164:1 15179:1 15184:1 15191:1 15205:2 15215:1 15227:1 15251:1 15282:3 15283:1 15307:7 15312:2 15315:1 15328:1 15367:1 15370:1 15371:1 15374:1 15389:1 15396:1 15446:1 15477:1 15480:2243 15482:2 15496:3 15503:1 15514:1 15525:1 15532:1 15543:1 15564:1 15575:1 15577:1 15583:2 15587:1 15602:1 15611:1 15623:1 15633:1 15635:1 15646:5 15655:1 15658:3 15661:1 15662:2 15663:1 15672:2 15684:1 15708:1 15723:4 15725:2 15742:1 15743:1 15762:1 15773:1 15790:1 15800:2 15824:1 15834:3 15883:1 15887:2 15898:1 15929:2 15936:1 15944:1 15949:1 15990:1 16002:1 16009:1 16019:1 16037:1 16042:2 16046:1 16054:3 16074:4 16095:2 16102:2 16110:1 16117:1 16121:1 16129:1 16151:1 16152:5 16159:1 16170:1 16171:3 16176:1 16177:1 16206:8 16212:1 16219:1 16235:1 16239:1 16251:1 16268:1 16271:1 16307:1 16308:1 16331:1 16332:2 16341:1 16361:1 16362:1 16380:1 16387:2 16402:1 16408:1 16414:1 16416:1 16426:1 16432:2 16434:3 16443:4 16449:1 16461:1 16462:1 16479:2 16482:1 16485:3 16495:1 16500:1 16514:1 16522:2 16538:1 16541:1 16548:1 16573:1 16593:1 16596:1 16611:1 16618:2 16630:1 16650:1 16654:1 16661:1 16669:10 16676:3 16679:1 16681:1 16706:1 16712:1 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:5 16763:2 16768:2 16781:1 16782:1 16787:1 16795:2 16797:1 16800:1 16811:1 16815:7 16823:3 16826:1 16832:1 16844:1 16855:1 16856:1 16861:1 16867:1 16873:1 16895:1 16908:1 16945:1 16947:1 16965:3 16981:1 17001:3 17014:2 17017:1 17027:1 17043:1 17046:6 17050:5 17056:1 17058:2 17090:1 17101:1 17109:1 17130:1 17138:2 17144:1 17163:1 17168:1 17188:4 17197:1 17206:1 17210:1 17219:1 17221:1 17223:1 17234:1 17238:1 17248:1 17255:1 17261:1 17275:1 17291:1 17305:1 17311:4 17329:1 17352:1 17358:2 17362:2 17380:1 17400:1 17429:1 17437:3 17443:1 17452:1 17485:10 17491:2 17496:2 17501:1 17510:4 17520:1 17532:1 17535:1 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17571:1 17590:1 17601:1 17604:1 17610:2 17648:1 17649:1 17685:1 17687:1 17706:5 17721:1 17724:2 17735:1 17738:3 17745:1 17747:2 17750:1 17774:1 17806:1 17807:1 17812:1 17813:1 17819:1 17827:1 17833:1 17834:1 17835:4 17837:1 17838:1 17839:1 17851:1 17852:1 17857:1 17867:1 17879:1 17884:1 17893:1 17908:1 17916:3 17921:1 17929:1 17943:1 17958:1 17965:2 17980:2 17993:2 17995:2 17996:2 18035:1 18037:1 18043:2 18053:3 18066:1 18068:1 18087:1 18088:2 18090:1 18091:1 18092:1 18093:1 18130:1 18131:1 18166:1 18176:1 18177:2 18186:1 18196:3 18197:3 18199:3 18204:1 18207:1 18210:1 18228:1 18231:3 18234:2 18237:1 18244:1 18248:1 18249:2 18261:1 18264:1 18285:1 18296:1 18318:2 18339:1 18341:3 18347:1 18360:3 18366:2 18378:3 18392:1 18406:1 18421:1 18425:1 18434:2 18459:1 18474:1 18479:1 18491:2 18498:2 18505:1 18506:5 18509:1 18511:1 18532:1 18537:1 18542:1 18558:1 18565:1 18567:2 18573:2 18575:2 18577:1 18578:1 18580:2 18581:1 18616:1 18619:1 18631:1 18641:1 18643:1 18644:1 18658:1 18664:1 18666:1 18676:2 18686:1 18693:2 18704:1 18715:1 18727:3 18729:1 18732:2 18739:3 18742:1 18758:1 18776:1 18784:1 18803:2 18807:1 18820:2 18842:1 18843:1 18854:1 18856:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:2 18939:1 18941:2 18943:1 18946:1 18948:1 18949:1 18961:1 18965:1 18975:3 18976:3 18978:1 18985:2 18990:3 19007:1 19029:2 19033:1 19036:1 19053:1 19056:1 19064:1 19070:1 19080:1 19096:3 19123:1 19134:4 19145:1 19156:3 19187:2 19193:1 19201:1 19212:1 19213:1 19218:1 19225:1 19229:1 19233:1 19237:1 19249:1 19278:1 19289:1 19325:1 19336:1 19349:2 19360:3 19365:4 19369:1 19371:1 19376:2 19388:1 19405:1 19406:1 19417:1 19425:3 19427:1 19431:1 19435:3 19438:3 19443:1 19444:1 19446:1 19470:1 19474:1 19480:1 19486:1 19493:1 19494:2 19507:1 19508:1 19510:2 19523:1 19525:1 19532:1 19540:1 19559:6 19562:1 19565:3 19573:1 19580:1 19582:1 19587:1 19611:1 19615:3 19637:1 19638:2 19644:1 19666:1 19716:2 19718:1 19730:1 19744:3 19746:1 19748:1 19789:1 19810:2 19823:1 19832:3 19870:1 19901:1 19902:8 19960:1 19974:2 20000:2 20003:1 20004:1 20007:1 20013:1 20022:1 20031:1 20032:1 20040:2 20051:1 20055:1 20063:1 20068:3 20076:1 20083:2 20084:7 20087:1 20089:1 20102:1 20107:1 20109:1 20111:1 20122:1 20126:2 20139:1 20152:1 20155:1 20173:1 20196:1 20204:1 20214:1 20252:1 20266:1 20268:1 20270:1 20273:1 20274:1 20275:1 20276:1 20281:1 20287:1 20305:1 20316:1 20318:2 20327:3 20331:1 20332:3 20334:1 20337:4 20343:1 20344:1 20360:1 20366:4 20378:5 20379:1 20393:1 20411:2 20412:1 20432:1 20441:1 20442:1 20446:1 20447:1 20448:1 20460:1 20469:2 20473:1 20480:2 20485:1 20490:2 20493:1 20508:1 20512:2 20545:1 20563:1 20567:1 20595:1 20599:2 20622:1 20630:1 20638:1 20649:1 20651:2 20659:1 20663:1 20670:3 20674:1 20686:6 20718:1 20722:1 20723:1 20734:1 20738:1 20742:6 20750:1 20751:1 20753:1 20755:1 20762:1 20769:1 20785:2 20786:1 20847:1 20878:1 20909:1 20928:3 20930:7 20931:1 20949:3 20955:1 20958:1 20962:2 20964:1 20965:1 20970:2 20989:1 20993:1 21007:1 21023:1 21079:1 21099:1 21100:1 21104:1 21111:1 21112:1 21113:1 21134:1 21136:1 21137:1 21139:1 21154:1 21159:1 21189:1 21190:1 21204:1 21205:1 21208:3 21209:1 21245:1 21267:1 21279:1 21319:1 21337:1 21350:1 21361:5 21363:1 21364:6 21371:1 21413:1 21438:1 21441:2 21455:1 21480:4 21486:1 21503:1 21512:1 21520:1 21522:1 21551:1 21556:1 21557:1 21559:1 21561:2 21576:1 21581:1 21586:1 21587:1 21594:1 21602:1 21612:3 21628:1 21630:1 21632:1 21637:3 21642:1 21663:1 21665:1 21671:1 21693:1 21695:1 21697:4 21703:1 21707:1 21716:1 21738:1 21740:1 21748:1 21760:6 21761:1 21773:3 21787:1 21812:1 21831:3 21841:1 21844:2 21857:1 21863:1 21869:2 21872:1 21887:1 21905:1 21914:1 21923:1 21926:1 21934:1 21952:1 21974:2 21977:2 21984:1 21996:1 21998:1 22001:1 22008:1 22010:2 22013:3 22014:1 22027:2 22043:1 22048:2 22058:1 22062:1 22065:1 22068:1 22080:4 22108:2 22114:2 22124:1 22138:1 22152:1 22173:1 22186:1 22193:1 22195:1 22208:1 22242:1 22247:2 22304:1 22306:1 22322:1 22331:1 22379:1 22386:1 22390:1 22394:1 22419:1 22423:1 22425:1 22429:1 22462:1 22511:1 22515:1 22522:2 22527:1 22528:3 22547:1 22548:2 22550:1 22553:1 22562:1 22571:1 22572:1 22585:3 22593:1 22601:1 22602:1 22611:4 22616:1 22624:1 22657:1 22666:1 22669:6 22672:2 22674:1 22690:2 22693:1 22699:2 22727:1 22740:4 22749:2 22750:2 22755:1 22759:1 22760:3 22762:1 22769:1 22779:1 22786:1 22798:1 22801:2 22804:1 22815:2 22817:1 22820:1 22822:1 22823:1 22825:1 22831:1 22837:1 22846:1 22854:1 22869:2 22874:1 22894:2 22895:1 22897:1 22912:1 22914:1 22916:3 22917:1 22925:1 22939:1 22942:1 22951:1 22957:1 22990:1 22991:1 23004:1 23005:1 23006:2 23007:1 23022:4 23039:1 23048:1 23050:2 23066:3 23074:2 23088:1 23089:6 23109:2 23113:1 23138:1 23151:1 23206:1 23225:1 23233:1 23248:3 23284:1 23305:3 23311:1 23314:2 23324:1 23325:1 23339:1 23341:1 23360:4 23363:1 23385:1 23404:1 23405:1 23415:1 23417:1 23430:19 23431:1 23432:1 23446:1 23459:1 23466:12 23469:1 23472:1 23474:1 23476:2 23481:1 23490:1 23518:2 23527:1 23541:1 23546:1 23551:3 23558:3 23586:9 23587:1 23610:1 23623:1 23639:1 23645:2 23647:1 23653:1 23655:1 23694:1 23698:1 23719:1 23739:1 23740:1 23754:1 23758:1 23784:1 23796:4 23797:3 23840:1 23845:1 23847:1 23849:1 23852:1 23853:2 23858:1 23859:1 23862:1 23868:1 23939:1 23951:1 23956:4 23961:1 23964:1 23966:1 23967:1 23970:1 23971:10 23985:1 23990:1 24000:1 24005:1 24006:3 24012:1 24028:1 24042:1 24049:2 24057:1 24101:1 24108:1 24117:1 24126:1 24139:1 24145:1 24153:1 24162:3 24170:2 24179:1 24196:1 24223:1 24225:1 24253:1 24261:2 24293:1 24301:1 24302:1 24306:1 24307:3 24315:1 24317:1 24320:1 24324:1 24341:1 24347:2 24353:1 24362:1 24370:2 24376:1 24379:1 24384:1 24392:1 24393:1 24401:4 24409:1 24410:1 24411:2 24418:1 24421:1 24438:1 24440:1 24449:1 24455:1 24463:1 24466:1 24469:3 24470:1 24473:2 24476:4 24479:1 24480:1 24483:2 24487:1 24491:1 24504:1 24523:1 24525:3 24530:1 24535:1 24536:1 24552:1 24563:1
20 13:1 25:1 29:1 30:1 34:2 37:1 39:1 45:1 53:1 61:1 72:1 76:1 85:7 88:1 96:1 105:1 112:1 113:1 150:1 162:1 164:1 172:1 175:1 186:1 201:1 216:3 218:2 240:3 241:1 254:1 256:1 276:1 296:2 298:1 314:1 317:1 339:1 341:2 348:1 377:1 392:1 407:3 441:1 469:1 489:1 492:1 509:1 510:3 516:1 527:2 541:2 545:1 565:2 566:1 568:3 601:1 640:1 694:1 713:1 720:1 752:2 754:1 758:1 762:2 766:1 778:1 784:1 785:4 788:1 795:1 802:1 805:1 814:3 825:1 828:1 831:3 833:1 834:5 835:1 838:4 846:1 857:1 862:1 869:4 881:1 888:3 889:3 892:2 899:1 906:1 912:1 937:1 946:1 948:2 952:1 960:1 967:1 989:1 994:1 1005:1 1009:5 1015:4 1043:1 1044:2 1047:1 1053:1 1064:1 1065:1 1074:1 1078:1 1080:1 1094:1 1095:1 1108:1 1110:1 1112:1 1114:1 1131:1 1137:1 1142:1 1158:1 1172:1 1208:1 1212:1 1220:2 1230:2 1236:1 1241:1 1242:1 1257:1 1258:1 1259:4 1267:3 1274:4 1293:1 1296:1 1297:1 1301:1 1311:3 1328:14 1330:2 1332:7 1340:3 1343:1 1345:1 1352:1 1353:2 1360:1 1372:1 1376:1 1381:9 1385:1 1395:1 1396:1 1418:1 1420:1 1429:1 1435:1 1436:1 1439:1 1460:2 1476:1 1484:1 1506:1 1507:5 1510:2 1517:2 1526:1 1535:1 1546:1 1552:2 1564:1 1568:1 1591:1 1612:2 1617:3 1619:2 1629:1 1639:2 1641:1 1644:1 1661:1 1663:1 1666:1 1670:1 1700:1 1703:2 1719:1 1731:4 1745:1 1763:1 1766:3 1771:1 1774:1 1775:1 1782:1 1789:1 1815:1 1826:6 1828:1 1838:1 1846:1 1853:2 1854:2 1856:1 1875:2 1877:8 1879:7 1882:1 1883:1 1889:1 1891:3 1892:3 1894:2 1895:1 1898:1 1904:1 1908:1 1909:2 1910:1 1912:3 1930:1 1938:1 1939:2 1941:1 1942:2 1943:1 1945:4 1948:2 1949:1 1952:1 1954:2 1959:1 1960:3 1961:1 1963:3 1965:3 1968:3 1970:2 1973:2 1976:2 1978:1 1981:2 1992:1 1994:1 1999:1 2000:1 2015:1 2024:1 2034:1 2038:1 2045:1 2047:1 2055:1 2074:1 2076:1 2077:1 2102:1 2110:1 2115:1 2140:1 2157:1 2164:1 2167:1 2169:1 2173:1 2188:1 2210:1 2218:1 2222:1 2241:1 2253:1 2254:1 2267:3 2272:1 2273:1 2282:1 2287:1 2303:1 2308:1 2317:1 2319:2 2321:1 2325:2 2328:1 2329:1 2333:1 2342:1 2353:1 2359:1 2365:1 2374:1 2380:1 2383:1 2390:1 2393:1 2405:1 2409:2 2416:1 2423:1 2434:1 2451:4 2457:1 2461:2 2462:10 2464:2 2478:1 2480:2 2481:3 2491:1 2496:1 2500:1 2507:9 2535:1 2565:1 2589:1 2597:2 2606:1 2611:1 2636:1 2645:3 2649:1 2678:1 2685:1 2689:1 2694:1 2700:1 2718:1 2745:1 2753:1 2754:1 2764:3 2770:1 2779:3 2780:1 2802:3 2807:1 2817:1 2826:3 2831:1 2839:1 2842:1 2843:1 2849:1 2852:1 2853:1 2876:1 2898:1 2941:1 2948:1 2950:1 2954:1 2981:1 2993:2 2999:1 3002:2 3049:5 3059:2 3063:2 3068:1 3076:2 3089:1 3090:1 3093:1 3095:1 3103:6 3118:1 3129:1 3131:1 3135:1 3136:1 3139:1 3147:3 3173:2 3183:2 3184:4 3208:1 3221:6 3222:1 3234:1 3237:6 3278:1 3288:1 3301:1 3306:1 3312:6 3323:1 3326:2 3328:2 3354:1 3355:1 3358:1 3367:1 3369:2 3377:1 3391:1 3399:2 3404:1 3407:2 3408:1 3416:1 3428:1 3442:1 3450:1 3467:1 3477:1 3481:1 3495:1 3503:1 3514:1 3519:1 3522:1 3537:1 3547:1 3572:1 3596:1 3598:1 3620:1 3622:1 3628:1 3653:1 3655:1 3660:2 3661:1 3666:1 3678:1 3681:1 3710:2 3729:1 3736:1 3737:1 3740:1 3770:1 3773:1 3777:1 3801:1 3803:2 3831:1 3832:1 3837:1 3840:2 3845:1 3856:2 3868:2 3878:1 3889:1 3902:2 3904:1 3908:1 3911:1 3928:4 3937:1 3938:2 3939:1 3961:1 3991:1 3992:1 4003:1 4019:1 4046:1 4047:1 4073:1 4082:1 4084:1 4091:1 4099:1 4107:15 4108:1 4116:1 4136:1 4143:1 4159:1 4160:1 4192:3 4197:1 4198:7 4211:3 4212:2 4214:1 4216:1 4218:1 4222:1 4223:1 4228:1 4229:3 4230:2 4231:4 4234:3 4237:1 4238:1 4248:2 4275:1 4302:1 4319:1 4323:1 4351:1 4364:4 4368:1 4384:1 4391:1 4394:1 4403:1 4409:3 4412:1 4420:1 4425:1 4436:1 4450:2 4464:1 4470:1 4498:3 4506:1 4529:1 4533:1 4539:1 4546:4 4561:1 4581:1 4587:2 4599:1 4620:1 4621:2 4625:1 4628:1 4633:2 4644:1 4650:1 4654:1 4658:1 4662:2 4667:1 4673:1 4675:1 4681:1 4689:3 4703:3 4729:1 4741:1 4757:2 4767:1 4768:2 4771:1 4773:1 4787:1 4794:1 4818:1 4821:1 4823:1 4826:1 4831:1 4836:2 4854:1 4861:1 4872:1 4876:2 4926:4 4927:3 4950:2 4953:2 4958:1 4959:2 4986:1 4994:1 5016:1 5025:1 5037:1 5049:6 5054:1 5075:1 5090:2 5096:1 5100:2 5103:1 5112:1 5127:1 5130:1 5142:1 5146:2 5187:3 5189:1 5192:3 5205:1 5215:1 5217:1 5225:1 5236:1 5247:3 5248:1 5260:1 5263:1 5264:1 5276:1 5282:2 5289:1 5308:2 5310:2 5314:1 5322:3 5324:1 5325:1 5332:2 5335:1 5337:1 5338:1 5340:4 5342:2 5347:2 5349:5 5350:2 5352:4 5369:1 5396:1 5398:1 5409:1 5426:4 5437:4 5451:2 5488:1 5489:1 5501:1 5520:1 5535:2 5592:2 5604:1 5609:1 5615:1 5616:2 5625:1 5629:2 5630:1 5634:1 5655:1 5656:1 5663:1 5665:1 5668:1 5672:2 5674:4 5686:2 5688:1 5689:1 5693:1 5702:1 5703:1 5709:1 5717:1 5723:1 5726:3 5735:1 5774:1 5783:3 5785:1 5797:1 5807:3 5808:1 5813:1 5818:1 5819:1 5823:1 5837:1 5874:1 5878:2 5890:1 5914:1 5917:1 5930:1 5947:9 5948:1 5959:1 5968:2 5970:1 5998:2 6021:2 6035:1 6039:1 6040:1 6052:2 6057:1 6071:1 6084:1 6096:1 6116:1 6124:1 6126:1 6130:1 6147:1 6155:3 6175:4 6183:3 6192:1 6194:2 6200:1 6201:1 6209:1 6223:1 6231:1 6232:1 6237:2 6241:1 6246:1 6248:1 6255:1 6260:1 6261:1 6269:1 6276:1 6285:2 6286:1 6288:1 6289:1 6301:1 6305:1 6324:1 6332:1 6354:1 6359:4 6365:11 6375:1 6382:2 6384:1 6386:4 6387:1 6410:1 6416:1 6429:34 6436:1 6449:6 6451:11 6460:1 6486:1 6497:2 6499:1 6501:1 6508:1 6545:1 6551:1 6599:1 6607:1 6616:1 6619:1 6655:1 6669:3 6677:3 6680:1 6700:1 6706:1 6743:1 6771:1 6781:1 6785:1 6789:2 6797:1 6802:1 6806:1 6810:9 6816:2 6818:1 6821:1 6824:1 6841:1 6854:1 6859:27 6882:1 6906:1 6908:1 6918:1 6926:1 6968:1 6981:1 7017:1 7020:1 7030:1 7038:5 7054:2 7056:1 7068:3 7077:1 7078:1 7084:1 7086:3 7110:1 7115:1 7121:1 7125:1 7135:1 7156:1 7157:2 7164:1 7166:3 7169:2 7170:4 7172:1 7173:1 7174:1 7177:2 7182:4 7192:1 7193:1 7194:2 7222:1 7246:1 7257:2 7262:2 7263:1 7264:1 7280:1 7303:3 7305:1 7325:1 7331:1 7358:1 7364:1 7371:2 7384:1 7385:1 7400:2 7409:2 7423:2 7425:1 7432:3 7434:1 7437:1 7443:1 7451:1 7457:1 7459:1 7461:4 7488:1 7505:1 7519:1 7521:1 7526:1 7535:2 7539:1 7541:1 7571:1 7573:2 7581:6 7590:4 7594:1 7596:1 7604:3 7615:1 7628:1 7638:1 7649:1 7656:1 7665:1 7672:1 7678:1 7686:1 7712:1 7731:1 7753:1 7777:1 7787:3 7790:1 7798:1 7803:1 7804:1 7805:1 7810:1 7821:1 7865:1 7868:1 7878:1 7896:1 7912:3 7922:1 7927:1 7930:3 7932:1 7943:1 7944:1 7950:1 7964:4 7975:1 7980:1 7988:3 8013:1 8036:1 8048:1 8049:4 8061:1 8064:3 8067:1 8070:6 8071:1 8080:3 8099:1 8107:1 8118:2 8121:1 8138:2 8139:1 8143:2 8162:11 8166:1 8174:1 8177:1 8183:1 8189:1 8195:1 8196:1 8200:2 8205:1 8212:1 8215:1 8222:2 8226:1 8285:2 8293:1 8296:3 8297:1 8304:2 8317:1 8328:1 8348:2 8352:2 8363:2 8379:1 8382:1 8387:2 8392:1 8427:1 8437:2 8443:1 8444:2 8480:1 8508:2 8517:2 8531:1 8532:2 8536:1 8566:1 8570:1 8574:1 8575:1 8581:2 8607:1 8617:3 8632:1 8663:1 8679:4 8682:5 8684:1 8700:1 8705:1 8719:1 8736:2 8746:1 8753:1 8759:3 8760:1 8769:1 8778:3 8783:1 8785:1 8789:2 8801:2 8802:2 8807:1 8809:2 8814:3 8815:1 8817:1 8818:1 8822:1 8824:1 8828:1 8829:1 8832:1 8833:2 8840:1 8841:1 8843:1 8856:3 8857:2 8867:1 8881:1 8891:3 8897:1 8903:1 8905:1 8907:1 8910:2 8914:4 8916:8 8949:1 8960:2 8975:1 8977:1 8981:1 8988:1 8989:4 8997:1 9001:3 9070:1 9080:1 9090:1 9101:4 9102:2 9106:1 9108:1 9145:3 9162:2 9167:1 9173:3 9192:1 9193:1 9198:3 9200:1 9202:1 9205:1 9215:1 9222:1 9225:1 9252:6 9260:2 9282:1 9289:1 9313:1 9317:1 9321:1 9338:1 9346:1 9359:3 9363:2 9388:1 9389:1 9399:1 9411:1 9416:1 9424:2 9433:1 9440:2 9442:1 9459:1 9472:1 9486:2 9488:7 9495:1 9501:1 9525:1 9536:2 9542:1 9543:2 9545:1 9547:2 9548:1 9559:1 9561:1 9563:3 9586:1 9587:1 9599:1 9610:1 9621:1 9624:2 9639:1 9653:7 9656:3 9659:1 9668:1 9682:2 9687:1 9695:1 9696:1 9698:1 9699:1 9703:1 9705:1 9707:1 9710:1 9716:1 9717:1 9723:2 9727:1 9730:1 9738:1 9743:1 9745:1 9760:1 9762:1 9763:5 9772:3 9778:8 9808:1 9810:1 9814:1 9815:1 9822:1 9823:11 9852:1 9880:1 9881:1 9899:1 9904:1 9911:1 9918:2 9923:4 9924:1 9932:1 9936:1 9949:1 9968:1 9974:3 9989:1 9999:1 10001:1 10018:1 10022:3 10037:2 10046:1 10053:3 10054:3 10060:1 10061:1 10067:1 10070:1 10074:3 10079:1 10089:1 10095:1 10105:1 10118:1 10130:1 10144:1 10146:1 10151:2 10163:3 10169:1 10179:1 10200:1 10217:1 10225:1 10231:1 10233:1 10265:1 10281:3 10290:1 10304:1 10324:1 10337:1 10360:1 10363:1 10364:2 10391:1 10413:1 10416:1 10430:1 10477:1 10480:9 10483:1 10487:2 10494:2 10502:1 10505:1 10513:1 10531:1 10548:1 10550:11 10556:1 10571:1 10576:2 10598:2 10621:2 10637:1 10652:1 10687:1 10695:1 10724:1 10725:1 10733:1 10739:4 10740:1 10753:1 10754:1 10755:2 10787:1 10804:1 10818:2 10836:4 10844:1 10846:1 10847:3 10851:3 10861:3 10870:1 10871:8 10872:1 10874:1 10897:1 10901:1 10921:1 10923:2 10942:2 10943:1 10962:1 10969:1 10970:8 10974:1 10982:1 10985:14 10987:1 10993:1 11001:1 11013:1 11016:1 11022:1 11046:4 11065:1 11087:2 11093:1 11101:2 11108:1 11118:1 11123:1 11143:1 11150:1 11156:1 11159:2 11163:2 11168:1 11187:1 11191:1 11220:1 11224:1 11273:1 11275:1 11277:1 11280:5 11281:1 11283:1 11287:1 11289:2 11297:1 11301:3 11311:1 11317:1 11322:1 11329:1 11332:1 11340:1 11342:1 11368:10 11375:1 11376:2 11392:1 11406:1 11407:2 11408:2 11415:1 11419:1 11432:2 11439:1 11447:2 11449:1 11451:3 11459:1 11509:5 11512:2 11531:2 11554:1 11555:1 11564:2 11607:1 11612:1 11613:1 11614:2 11638:2 11657:1 11665:1 11689:1 11697:2 11699:1 11704:1 11710:1 11712:1 11717:1 11718:1 11744:1 11747:1 11777:1 11788:1 11806:1 11808:1 11812:2 11813:2 11816:1 11818:2 11825:1 11826:1 11830:1 11833:1 11841:1 11855:1 11856:1 11861:2 11881:1 11900:1 11902:4 11910:1 11927:4 11942:1 11958:1 11979:1 11985:1 11990:3 11997:1 12006:5 12016:2 12020:1 12025:1 12035:1 12036:1 12045:1 12050:2 12054:1 12060:1 12069:1 12089:1 12091:1 12099:1 12100:1 12105:1 12114:1 12115:1 12123:1 12141:1 12144:1 12151:1 12157:1 12173:1 12175:1 12176:1 12218:1 12229:1 12251:1 12263:3 12269:1 12276:3 12287:1 12303:3 12337:1 12341:1 12346:1 12366:1 12368:1 12372:1 12383:4 12387:1 12389:1 12408:1 12432:1 12436:2 12437:2 12472:1 12473:1 12474:1 12490:1 12525:1 12550:3 12559:1 12582:3 12583:2 12584:1 12586:1 12602:1 12606:1 12630:1 12633:1 12635:1 12652:1 12667:1 12689:1 12706:1 12716:1 12723:1 12732:1 12739:1 12741:32 12766:2 12770:1 12778:1 12800:1 12816:1 12822:1 12828:1 12840:1 12859:1 12863:1 12872:2 12877:1 12897:1 12911:1 12920:1 12929:1 12948:1 12950:4 12956:1 12958:2 12959:1 12961:2 12969:1 12975:1 12981:2 12983:1 12984:1 12986:1 12988:6 12989:1 12995:2 12997:1 13000:1 13007:1 13012:1 13030:2 13031:1 13033:1 13069:1 13070:1 13071:1 13082:1 13094:5 13095:5 13100:1 13113:1 13121:1 13140:1 13173:1 13202:1 13207:3 13221:1 13225:1 13246:1 13251:1 13259:1 13270:1 13292:2 13295:3 13298:1 13300:1 13322:1 13326:1 13328:6 13339:1 13352:1 13363:1 13371:1 13373:1 13378:1 13379:1 13382:1 13383:4 13390:1 13405:1 13409:1 13410:2 13416:1 13418:1 13424:1 13425:1 13430:1 13431:2 13434:3 13435:2 13437:2 13442:1 13444:3 13445:1 13448:1 13449:1 13453:4 13455:1 13456:1 13459:5 13462:1 13469:1 13482:3 13495:1 13501:1 13525:2 13545:1 13554:1 13562:1 13570:1 13622:1 13637:1 13641:1 13670:1 13675:1 13703:2 13709:1 13719:1 13739:1 13743:1 13746:1 13752:2 13758:2 13765:2 13766:1 13767:1 13775:1 13812:1 13818:2 13819:2 13826:1 13835:2 13837:5 13843:2 13846:1 13867:1 13868:1 13876:2 13893:1 13895:1 13906:2 13907:1 13924:2 13925:3 13928:9 13931:2 13965:2 13966:1 13970:2 13972:2 13977:2 13979:3 13994:2 14000:1 14003:2 14008:1 14031:2 14035:2 14039:2 14046:1 14052:2 14062:1 14071:1 14074:1 14077:1 14094:1 14097:1 14100:1 14101:1 14108:1 14114:1 14118:2 14122:1 14124:1 14125:1 14142:1 14154:1 14156:1 14178:2 14189:1 14200:1 14207:2 14210:1 14223:1 14240:2 14245:1 14246:1 14254:1 14262:1 14275:2 14307:1 14311:1 14325:1 14330:1 14332:1 14344:1 14349:1 14368:1 14371:1 14372:1 14380:1 14393:1 14398:1 14403:2 14443:1 14446:1 14449:2 14462:1 14465:1 14468:1 14491:1 14516:2 14518:2 14539:2 14544:2 14550:1 14553:1 14570:1 14574:1 14575:1 14577:1 14585:1 14591:2 14593:1 14596:2 14627:1 14637:1 14640:2 14645:1 14665:1 14677:6 14696:1 14713:1 14714:1 14719:3 14721:1 14740:2 14744:3 14761:1 14762:3 14764:1 14768:3 14774:1 14775:1 14781:1 14783:1 14785:1 14802:2 14803:2 14806:1 14820:1 14825:1 14830:1 14833:1 14837:1 14844:4 14853:3 14856:2 14864:1 14877:1 14880:1 14885:1 14887:1 14889:1 14903:8 14929:2 14931:2 14941:1 14963:1 14975:1 14976:1 14981:1 15001:1 15024:1 15035:1 15056:1 15067:1 15070:1 15080:1 15089:1 15112:1 15116:1 15129:1 15139:1 15142:1 15147:2 15164:1 15179:1 15184:1 15191:1 15205:2 15215:1 15227:1 15251:1 15282:3 15283:1 15307:7 15312:2 15315:1 15328:1 15361:1 15367:1 15370:1 15371:1 15374:1 15389:1 15396:1 15446:1 15477:1 15480:2283 15482:2 15496:3 15503:1 15514:1 15525:1 15532:1 15543:1 15564:1 15575:1 15577:1 15583:2 15587:1 15602:1 15611:1 15623:1 15633:1 15635:1 15646:5 15655:2 15658:3 15661:1 15662:2 15663:1 15672:2 15684:1 15708:1 15723:4 15725:2 15742:1 15743:1 15762:1 15773:1 15775:1 15790:1 15800:2 15824:1 15834:3 15883:1 15887:2 15898:1 15929:2 15936:1 15944:1 15949:2 15990:1 16002:1 16009:1 16019:1 16037:1 16042:2 16046:1 16054:3 16074:5 16095:2 16102:3 16110:1 16117:1 16121:1 16129:1 16151:1 16152:5 16159:1 16170:1 16171:3 16176:1 16177:1 16206:8 16212:1 16219:1 16235:1 16239:1 16251:1 16268:1 16271:1 16307:1 16308:1 16331:1 16332:2 16341:1 16361:1 16362:1 16380:1 16387:2 16402:1 16408:1 16414:1 16416:1 16426:1 16432:2 16434:3 16443:4 16449:1 16461:1 16462:1 16479:2 16482:1 16485:3 16495:1 16500:1 16514:1 16522:2 16538:1 16541:1 16548:1 16573:1 16593:1 16596:1 16611:1 16618:2 16630:1 16650:1 16654:1 16661:1 16669:12 16676:3 16679:1 16681:1 16706:1 16712:1 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:5 16763:2 16768:2 16781:1 16782:1 16787:1 16795:2 16797:1 16800:1 16811:1 16815:7 16823:3 16826:1 16832:1 16844:1 16855:1 16856:1 16861:1 16867:1 16873:1 16895:1 16908:1 16916:1 16945:1 16947:1 16965:3 16981:1 17001:3 17007:1 17014:2 17017:1 17027:1 17043:1 17046:6 17050:5 17056:1 17058:2 17059:1 17090:1 17101:1 17109:1 17130:1 17138:2 17144:1 17163:1 17168:1 17188:4 17197:1 17206:1 17210:1 17219:1 17221:1 17223:1 17234:1 17238:1 17248:1 17255:1 17261:1 17275:1 17291:1 17305:1 17311:4 17329:1 17352:1 17358:2 17362:2 17380:1 17400:1 17429:1 17437:3 17443:1 17452:1 17485:10 17491:2 17496:2 17501:1 17510:4 17520:1 17532:1 17535:1 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17571:1 17590:1 17601:1 17604:2 17610:2 17648:1 17649:1 17685:1 17687:1 17706:5 17721:1 17724:2 17735:1 17738:3 17745:1 17747:2 17750:1 17774:1 17806:1 17807:1 17812:1 17813:1 17819:1 17827:1 17833:1 17834:1 17835:4 17837:1 17838:1 17839:1 17851:1 17852:1 17857:1 17867:1 17879:1 17884:1 17893:1 17908:1 17916:3 17921:1 17929:1 17943:1 17958:1 17965:2 17980:2 17993:2 17995:2 17996:2 18035:1 18037:1 18043:2 18053:3 18066:1 18068:1 18087:1 18088:2 18090:1 18091:1 18092:1 18093:2 18130:1 18131:1 18166:1 18176:1 18177:2 18186:1 18196:4 18197:3 18199:3 18204:1 18207:1 18210:1 18228:1 18231:3 18234:2 18237:1 18244:2 18248:1 18249:2 18261:1 18264:1 18285:1 18296:1 18318:2 18339:1 18341:3 18347:1 18360:3 18366:2 18378:3 18392:1 18406:1 18421:1 18425:1 18434:2 18459:1 18474:1 18479:1 18481:1 18491:2 18498:2 18505:1 18506:5 18509:1 18511:1 18532:1 18537:1 18542:1 18558:1 18565:1 18567:3 18573:2 18575:2 18577:1 18578:1 18580:2 18581:1 18616:1 18619:1 18631:1 18641:1 18643:1 18644:1 18658:1 18664:1 18666:1 18676:2 18686:1 18693:2 18704:1 18715:1 18727:3 18729:1 18732:2 18739:3 18742:1 18758:1 18776:1 18784:1 18803:2 18807:1 18820:2 18842:1 18843:1 18854:1 18856:1 18867:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:2 18932:1 18939:1 18941:2 18943:1 18946:1 18948:1 18949:1 18961:1 18965:1 18975:3 18976:3 18978:1 18985:2 18990:3 19003:1 19007:1 19029:2 19033:1 19036:1 19053:1 19056:1 19064:1 19070:1 19080:1 19096:3 19123:1 19134:4 19145:1 19156:3 19187:2 19193:1 19201:1 19210:1 19212:1 19213:1 19218:1 19225:2 19229:1 19233:1 19237:1 19249:1 19278:1 19289:1 19325:1 19336:1 19349:2 19360:3 19365:4 19369:1 19371:1 19376:2 19388:1 19405:1 19406:1 19417:1 19425:3 19427:1 19431:1 19435:3 19438:3 19443:1 19444:1 19446:1 19470:1 19474:1 19480:1 19486:1 19493:1 19494:2 19507:1 19508:1 19510:2 19523:1 19525:1 19532:1 19540:1 19559:6 19562:1 19565:3 19573:1 19580:1 19582:1 19587:1 19611:1 19615:3 19637:1 19638:2 19644:1 19666:1 19716:2 19718:1 19730:1 19744:3 19746:1 19748:1 19789:1 19810:2 19823:1 19832:3 19870:1 19901:1 19902:8 19960:1 19974:2 20000:2 20003:1 20004:1 20007:1 20013:1 20022:1 20031:1 20032:1 20040:2 20051:1 20055:1 20063:1 20068:3 20076:1 20083:2 20084:7 20087:1 20089:1 20102:1 20107:1 20109:1 20111:1 20122:1 20126:2 20139:1 20152:1 20155:1 20173:1 20196:1 20204:1 20214:1 20252:1 20266:1 20268:1 20270:1 20273:1 20274:2 20275:1 20276:1 20281:1 20287:1 20305:1 20316:1 20318:2 20327:3 20331:1 20332:3 20334:1 20337:4 20343:2 20344:1 20360:1 20366:4 20378:5 20379:1 20393:1 20411:2 20412:1 20432:1 20441:1 20442:1 20446:1 20447:1 20448:1 20460:1 20469:2 20473:1 20480:2 20485:1 20490:2 20493:1 20508:1 20512:2 20545:1 20563:1 20567:1 20595:1 20599:2 20622:1 20630:1 20638:1 20649:1 20651:2 20659:1 20663:1 20670:3 20674:1 20686:6 20718:1 20722:1 20723:1 20734:1 20738:1 20742:6 20750:1 20751:1 20753:1 20755:1 20762:1 20769:1 20785:2 20786:1 20847:1 20878:1 20909:1 20928:3 20930:7 20931:1 20949:3 20955:1 20958:1 20962:2 20964:1 20965:1 20970:2 20989:1 20993:1 21007:1 21023:1 21079:1 21099:1 21100:1 21104:1 21111:1 21112:1 21113:1 21134:1 21136:1 21137:1 21139:2 21154:1 21159:1 21189:1 21190:1 21204:1 21205:1 21208:3 21209:1 21245:1 21267:1 21279:1 21319:1 21337:1 21344:1 21350:1 21361:5 21363:1 21364:6 21371:1 21413:1 21438:1 21441:2 21455:1 21480:5 21486:1 21503:1 21512:1 21520:1 21522:1 21551:1 21556:1 21557:1 21559:1 21561:2 21576:1 21581:1 21586:1 21587:1 21594:1 21602:1 21612:3 21628:1 21630:1 21632:1 21637:3 21641:1 21642:1 21663:1 21665:1 21671:1 21693:1 21695:1 21697:4 21703:1 21707:1 21716:1 21738:1 21740:1 21748:1 21760:6 21761:1 21773:3 21787:1 21812:1 21831:3 21841:1 21844:2 21857:1 21863:1 21869:2 21872:1 21887:1 21905:1 21914:1 21923:1 21926:2 21934:1 21952:1 21974:2 21977:2 21984:1 21996:1 21998:1 22001:1 22006:1 22008:1 22010:2 22013:3 22014:1 22027:2 22043:1 22048:2 22058:1 22062:1 22065:1 22068:1 22080:4 22108:2 22114:2 22124:1 22138:1 22152:1 22173:1 22186:1 22193:1 22195:1 22208:1 22242:1 22247:2 22304:1 22306:1 22322:1 22331:1 22379:1 22386:1 22390:1 22394:1 22419:1 22423:1 22425:1 22429:1 22462:1 22511:1 22515:1 22522:2 22527:1 22528:3 22540:1 22547:1 22548:2 22550:1 22553:1 22562:2 22571:1 22572:1 22585:3 22593:1 22601:1 22602:1 22611:4 22616:1 22624:1 22657:1 22666:1 22669:6 22672:2 22674:1 22690:2 22693:1 22699:2 22727:1 22740:4 22749:2 22750:2 22755:2 22759:1 22760:3 22762:1 22769:1 22779:1 22786:1 22798:1 22801:2 22804:1 22812:1 22815:2 22817:1 22820:1 22822:1 22823:1 22825:1 22831:1 22837:1 22846:1 22854:1 22869:2 22874:1 22894:2 22895:1 22897:1 22912:1 22914:1 22916:3 22917:1 22925:1 22939:1 22942:1 22951:1 22957:1 22990:1 22991:1 23004:1 23005:1 23006:2 23007:1 23022:4 23039:1 23048:1 23050:2 23066:3 23074:2 23088:1 23089:6 23109:2 23113:1 23138:1 23151:1 23206:1 23225:1 23233:1 23248:3 23284:1 23305:3 23311:1 23314:2 23324:1 23325:1 23339:1 23341:1 23360:4 23363:1 23385:1 23404:1 23405:1 23415:1 23417:1 23430:19 23431:1 23432:1 23446:1 23459:1 23466:12 23469:1 23472:1 23474:1 23476:2 23481:1 23490:1 23518:2 23527:1 23541:1 23546:1 23551:3 23558:3 23586:10 23587:1 23610:2 23623:1 23639:1 23645:2 23647:1 23653:1 23655:1 23694:1 23698:1 23719:1 23739:1 23740:1 23754:1 23758:1 23784:1 23796:4 23797:3 23840:1 23845:1 23847:1 23849:1 23852:1 23853:2 23858:1 23859:1 23862:1 23868:1 23939:1 23951:1 23956:4 23961:1 23964:1 23966:1 23967:1 23970:1 23971:10 23985:1 23990:1 24000:1 24005:1 24006:3 24012:1 24028:1 24042:1 24049:2 24057:1 24101:1 24105:1 24108:1 24117:1 24126:1 24139:1 24145:1 24153:1 24162:3 24170:2 24179:1 24196:1 24223:1 24225:1 24253:1 24261:2 24293:1 24301:1 24302:1 24306:1 24307:4 24315:1 24317:1 24320:1 24324:1 24341:1 24347:2 24353:1 24362:1 24370:2 24376:1 24379:1 24384:1 24392:1 24393:1 24401:5 24409:1 24410:1 24411:2 24418:1 24421:1 24438:1 24440:1 24449:1 24455:1 24463:1 24466:1 24469:3 24470:1 24473:2 24476:4 24479:1 24480:2 24483:2 24487:1 24491:1 24504:1 24523:1 24525:3 24530:1 24535:1 24536:1 24552:1 24563:1
20 13:1 25:1 29:1 30:1 32:1 34:2 37:1 39:1 45:1 53:1 61:1 72:1 76:1 85:7 88:1 96:1 105:1 112:1 113:1 150:1 162:1 164:1 172:1 175:1 186:1 201:1 216:3 218:2 237:1 240:3 241:1 254:1 256:1 276:1 290:1 296:2 298:1 314:1 317:1 339:1 341:2 348:1 377:1 392:1 407:3 441:1 469:1 489:1 492:1 509:1 510:3 516:1 527:2 541:2 545:1 565:2 566:1 568:3 601:1 640:1 694:1 696:1 713:1 720:1 752:2 754:1 758:1 759:1 762:2 766:1 778:1 784:1 785:4 788:1 795:1 802:1 805:1 814:3 825:1 828:1 830:1 831:3 833:1 834:5 835:1 838:5 846:1 857:1 862:1 869:4 881:1 888:3 889:3 892:2 899:1 906:1 912:1 937:1 946:1 948:2 952:1 960:1 967:1 989:1 994:1 1005:1 1009:5 1015:4 1043:1 1044:2 1047:1 1053:1 1064:1 1065:1 1074:1 1078:1 1080:1 1094:1 1095:1 1108:1 1110:1 1112:1 1114:1 1131:1 1137:1 1142:1 1158:1 1172:1 1208:1 1212:1 1220:3 1230:2 1236:1 1241:1 1242:1 1257:1 1258:1 1259:4 1267:3 1274:4 1293:1 1296:1 1297:1 1301:1 1311:3 1328:14 1330:2 1332:7 1340:3 1343:1 1345:1 1352:2 1353:2 1360:1 1372:1 1376:1 1381:9 1385:1 1395:1 1396:1 1418:1 1420:1 1429:1 1435:1 1436:1 1439:1 1460:2 1476:1 1484:1 1506:1 1507:5 1510:2 1517:2 1526:1 1535:1 1546:1 1552:2 1564:1 1568:1 1591:1 1612:2 1617:3 1619:2 1629:1 1639:2 1641:1 1644:1 1661:1 1663:1 1666:1 1670:1 1700:1 1703:2 1719:1 1731:4 1745:1 1763:1 1766:3 1771:1 1774:1 1775:1 1782:1 1789:1 1815:1 1826:6 1828:1 1838:1 1846:1 1853:2 1854:2 1856:1 1875:2 1877:8 1879:7 1882:1 1883:1 1889:1 1891:3 1892:3 1894:2 1895:2 1898:1 1904:1 1908:1 1909:2 1910:1 1912:4 1930:1 1938:1 1939:2 1941:1 1942:2 1943:1 1945:4 1947:1 1948:2 1949:1 1952:1 1954:2 1959:1 1960:3 1961:2 1963:3 1965:3 1968:3 1970:2 1973:2 1976:2 1978:1 1981:2 1992:1 1994:1 1999:1 2000:1 2015:1 2024:1 2034:1 2038:1 2045:1 2047:1 2055:1 2074:1 2076:1 2077:1 2102:1 2110:1 2115:1 2140:1 2157:1 2164:1 2167:1 2169:1 2173:1 2188:1 2210:1 2218:1 2222:1 2241:1 2253:1 2254:1 2267:3 2272:1 2273:1 2282:1 2287:1 2303:1 2308:1 2317:1 2319:2 2321:1 2325:2 2328:1 2329:1 2333:1 2342:1 2353:1 2359:1 2365:1 2374:1 2380:1 2383:1 2390:1 2393:1 2405:1 2409:2 2416:1 2423:1 2434:1 2451:5 2457:1 2461:2 2462:11 2464:2 2478:1 2480:2 2481:3 2491:1 2496:1 2500:1 2507:11 2535:1 2565:1 2589:1 2590:1 2597:2 2606:1 2611:1 2636:1 2645:3 2649:1 2678:1 2685:1 2689:1 2694:1 2700:1 2718:1 2745:1 2753:1 2754:1 2764:3 2770:1 2779:4 2780:1 2802:3 2807:1 2817:1 2826:3 2831:1 2839:1 2842:1 2843:1 2849:1 2852:1 2853:1 2876:1 2898:1 2941:1 2948:1 2950:1 2954:1 2981:1 2993:2 2999:1 3002:2 3047:1 3049:6 3059:2 3063:2 3068:1 3076:2 3089:1 3090:1 3093:1 3095:1 3103:6 3118:1 3129:1 3131:1 3135:1 3136:1 3139:1 3147:3 3173:2 3183:2 3184:4 3208:1 3221:6 3222:1 3226:1 3234:1 3237:6 3278:1 3288:1 3301:1 3306:1 3312:6 3323:1 3326:2 3328:2 3351:1 3354:1 3355:1 3358:1 3367:1 3369:2 3377:1 3391:1 3399:2 3404:1 3407:2 3408:1 3416:1 3428:1 3442:1 3450:1 3467:1 3477:1 3481:1 3495:1 3503:1 3514:1 3519:1 3522:1 3537:1 3547:1 3572:1 3596:1 3598:1 3620:1 3622:1 3628:1 3653:1 3655:1 3660:2 3661:1 3666:1 3678:1 3681:1 3710:2 3729:1 3736:1 3737:1 3740:1 3770:1 3773:1 3777:1 3801:1 3803:2 3831:1 3832:1 3837:1 3840:2 3845:1 3856:2 3868:2 3878:1 3889:1 3902:2 3904:1 3908:1 3911:1 3928:4 3937:1 3938:2 3939:1 3961:1 3991:1 3992:1 4003:1 4019:1 4046:1 4047:1 4073:1 4082:1 4084:1 4091:1 4099:1 4107:18 4108:1 4116:1 4136:1 4143:1 4159:1 4160:1 4192:3 4197:1 4198:7 4211:3 4212:2 4214:1 4216:1 4218:1 4222:1 4223:1 4228:1 4229:3 4230:2 4231:4 4234:3 4237:1 4238:1 4248:2 4275:1 4302:1 4319:1 4323:1 4351:1 4364:4 4368:1 4384:1 4391:1 4394:1 4403:1 4409:3 4412:1 4420:1 4425:1 4436:1 4450:2 4464:1 4470:1 4498:3 4506:1 4529:1 4533:1 4539:1 4546:4 4561:1 4581:1 4587:2 4599:1 4620:1 4621:2 4625:1 4628:1 4633:2 4644:1 4650:1 4654:1 4658:1 4662:2 4667:1 4673:1 4675:1 4681:1 4689:3 4703:3 4729:1 4741:1 4757:2 4767:1 4768:2 4771:1 4773:1 4787:2 4794:1 4818:1 4821:1 4823:1 4826:1 4831:1 4836:2 4854:1 4857:1 4861:1 4872:1 4876:2 4926:4 4927:3 4950:2 4953:2 4958:1 4959:2 4986:1 4994:1 5016:1 5025:1 5037:1 5049:6 5054:1 5075:1 5090:2 5096:1 5100:2 5103:1 5112:1 5127:1 5130:1 5142:1 5146:2 5187:3 5189:1 5192:3 5205:1 5215:1 5217:1 5225:1 5236:1 5247:3 5248:1 5260:1 5263:1 5264:1 5276:1 5282:2 5289:1 5308:3 5310:2 5314:1 5322:3 5324:1 5325:1 5332:3 5335:1 5337:1 5338:1 5340:4 5342:3 5347:2 5349:5 5350:2 5352:4 5369:1 5396:1 5398:1 5409:1 5426:4 5437:4 5451:2 5488:1 5489:1 5501:1 5520:1 5535:2 5592:2 5604:1 5609:1 5615:1 5616:2 5625:1 5629:2 5630:1 5634:1 5655:1 5656:1 5663:1 5665:1 5668:1 5672:2 5674:4 5686:2 5688:1 5689:1 5693:1 5702:1 5703:1 5709:1 5717:1 5723:1 5726:3 5735:1 5774:1 5783:3 5785:1 5797:1 5807:3 5808:1 5813:1 5818:1 5819:1 5823:1 5837:1 5874:1 5878:2 5890:1 5914:1 5917:1 5930:1 5947:9 5948:1 5959:1 5968:2 5970:1 5998:2 6021:2 6035:1 6039:1 6040:1 6052:2 6057:1 6071:1 6084:1 6096:1 6116:1 6124:1 6126:1 6130:1 6147:1 6155:3 6175:4 6183:3 6192:1 6194:2 6200:1 6201:2 6209:1 6223:1 6231:1 6232:1 6237:2 6241:1 6246:1 6248:1 6255:1 6260:1 6261:1 6269:1 6276:1 6285:2 6286:1 6288:1 6289:1 6301:1 6305:1 6324:1 6332:1 6354:1 6359:4 6364:1 6365:11 6375:1 6382:2 6384:1 6386:4 6387:1 6410:1 6416:1 6429:36 6436:1 6449:7 6451:13 6460:1 6486:1 6497:2 6499:1 6501:1 6508:1 6545:1 6551:1 6599:1 6607:1 6616:1 6619:1 6627:1 6655:1 6661:1 6669:3 6677:3 6680:1 6700:1 6706:1 6743:1 6759:1 6771:1 6781:1 6785:1 6789:2 6797:1 6802:1 6806:1 6810:9 6816:2 6818:1 6821:1 6824:1 6841:1 6854:1 6859:27 6882:1 6906:1 6908:1 6918:1 6926:1 6968:1 6981:1 7017:1 7020:1 7030:1 7038:5 7054:2 7056:1 7068:3 7077:1 7078:1 7084:1 7086:3 7110:1 7115:1 7121:1 7125:1 7135:1 7156:1 7157:2 7164:1 7166:3 7169:2 7170:4 7172:1 7173:1 7174:1 7177:2 7182:4 7192:1 7193:1 7194:2 7222:1 7246:2 7257:2 7262:2 7263:1 7264:1 7280:1 7303:3 7305:1 7325:1 7331:1 7358:1 7364:1 7371:2 7384:1 7385:1 7400:2 7409:2 7423:2 7425:1 7432:3 7434:1 7437:1 7443:1 7451:1 7457:1 7459:1 7461:4 7488:1 7505:1 7519:1 7521:1 7526:1 7535:2 7539:1 7541:1 7571:1 7573:2 7581:6 7590:4 7594:1 7596:1 7604:3 7615:1 7628:1 7638:2 7644:1 7649:1 7656:1 7665:1 7672:1 7678:1 7686:1 7712:1 7731:1 7753:1 7777:1 7780:1 7787:3 7790:1 7798:1 7803:1 7804:1 7805:1 7810:1 7821:1 7865:1 7868:1 7878:1 7896:1 7912:3 7922:1 7927:1 7930:4 7932:1 7943:1 7944:1 7950:1 7964:4 7975:1 7980:1 7988:3 8013:1 8036:1 8048:1 8049:4 8061:1 8064:3 8067:1 8070:6 8071:1 8080:3 8099:1 8107:1 8118:2 8121:1 8138:2 8139:1 8143:2 8162:11 8166:1 8174:1 8177:1 8183:1 8189:1 8195:1 8196:1 8200:2 8205:1 8212:1 8215:1 8222:2 8226:1 8285:2 8293:1 8296:3 8297:1 8304:2 8317:1 8328:1 8348:2 8352:2 8363:2 8379:1 8382:1 8387:2 8392:1 8427:1 8437:2 8443:1 8444:2 8448:1 8480:1 8484:1 8508:2 8517:2 8531:1 8532:2 8536:1 8566:1 8570:1 8574:1 8575:1 8581:2 8607:1 8617:3 8632:1 8663:1 8679:4 8682:6 8684:1 8700:1 8705:1 8719:1 8736:2 8746:1 8753:1 8759:3 8760:1 8769:1 8778:3 8783:1 8785:1 8789:2 8801:2 8802:2 8807:1 8809:2 8814:4 8815:1 8817:1 8818:1 8822:1 8824:1 8828:1 8829:1 8832:1 8833:2 8840:1 8841:1 8843:1 8856:3 8857:2 8867:1 8881:1 8891:3 8897:1 8903:1 8905:1 8907:2 8910:2 8914:4 8916:9 8949:1 8960:2 8975:1 8977:1 8981:1 8988:1 8989:4 8997:1 9001:3 9070:1 9080:1 9090:1 9101:4 9102:2 9106:1 9108:1 9145:3 9162:2 9167:1 9173:4 9192:1 9193:1 9198:3 9200:1 9202:1 9205:1 9215:1 9222:1 9225:1 9252:6 9260:2 9282:1 9289:1 9313:1 9317:1 9321:1 9335:1 9338:1 9346:1 9359:3 9363:2 9388:1 9389:1 9399:1 9411:1 9416:1 9424:2 9433:1 9440:2 9442:1 9459:1 9472:1 9486:2 9488:7 9495:1 9501:1 9523:1 9525:1 9536:2 9542:1 9543:2 9545:1 9547:2 9548:1 9559:1 9561:1 9563:3 9586:1 9587:1 9599:1 9610:1 9621:1 9624:2 9639:1 9653:7 9656:3 9659:1 9668:1 9682:2 9687:1 9690:1 9691:1 9695:1 9696:1 9698:1 9699:1 9703:1 9705:1 9707:1 9710:1 9711:1 9716:1 9717:1 9723:2 9727:1 9730:1 9738:1 9743:1 9745:1 9760:1 9762:1 9763:5 9772:3 9778:8 9808:1 9810:1 9814:1 9815:1 9822:1 9823:11 9852:1 9880:1 9881:1 9899:1 9904:1 9911:1 9918:2 9923:4 9924:1 9932:1 9936:1 9949:1 9967:1 9968:1 9974:3 9989:1 9999:1 10001:1 10018:1 10022:3 10037:2 10046:1 10053:3 10054:3 10060:1 10061:1 10067:1 10070:1 10074:3 10079:1 10089:1 10095:1 10105:1 10118:1 10130:1 10144:1 10146:1 10151:2 10163:3 10169:2 10179:1 10200:1 10217:1 10225:1 10231:1 10233:1 10265:1 10281:3 10290:1 10304:1 10324:1 10337:1 10360:1 10363:1 10364:2 10391:1 10413:1 10416:1 10430:1 10477:1 10480:10 10483:1 10487:2 10494:2 10502:1 10505:1 10513:1 10531:1 10548:1 10550:11 10556:1 10571:1 10576:2 10598:2 10621:2 10637:1 10652:1 10675:1 10687:1 10695:1 10724:1 10725:1 10733:1 10739:4 10740:1 10753:1 10754:1 10755:2 10787:1 10804:1 10818:2 10836:4 10844:1 10846:1 10847:3 10851:3 10861:3 10870:1 10871:8 10872:1 10874:1 10897:1 10901:1 10921:1 10923:2 10942:2 10943:2 10962:1 10969:1 10970:8 10974:1 10982:1 10985:14 10987:1 10993:1 11001:1 11013:1 11016:1 11022:1 11046:4 11065:1 11087:2 11093:1 11101:2 11108:1 11118:1 11123:1 11143:1 11150:1 11156:1 11159:2 11163:2 11168:1 11187:1 11191:2 11220:1 11224:1 11273:1 11275:1 11277:1 11280:5 11281:1 11283:1 11287:1 11289:2 11297:1 11301:3 11311:1 11317:1 11322:1 11329:1 11332:1 11340:1 11342:1 11368:10 11375:1 11376:2 11392:1 11406:1 11407:2 11408:2 11415:1 11419:1 11432:2 11439:1 11447:2 11449:1 11450:1 11451:3 11459:1 11509:5 11512:2 11531:2 11554:1 11555:1 11563:2 11564:2 11607:1 11612:1 11613:1 11614:2 11638:2 11657:1 11665:1 11689:1 11697:2 11699:1 11704:1 11710:1 11712:1 11717:1 11718:1 11744:1 11747:1 11777:1 11788:1 11806:1 11808:1 11812:2 11813:2 11816:1 11818:3 11825:1 11826:1 11830:1 11833:1 11841:1 11855:1 11856:1 11861:2 11881:1 11900:1 11902:4 11910:1 11927:4 11942:1 11958:1 11979:1 11985:1 11990:3 11997:1 12006:5 12016:2 12020:1 12025:1 12035:1 12036:1 12045:1 12050:2 12054:1 12060:1 12069:1 12089:1 12091:1 12099:1 12100:1 12105:1 12114:1 12115:1 12123:1 12141:1 12144:1 12151:1 12157:1 12173:1 12175:1 12176:1 12208:1 12218:1 12229:1 12251:1 12263:3 12269:1 12276:3 12287:1 12303:3 12337:1 12341:1 12346:1 12366:1 12368:1 12372:1 12383:4 12387:1 12389:1 12408:1 12432:1 12436:2 12437:2 12472:1 12473:1 12474:1 12490:1 12525:1 12550:3 12559:1 12582:3 12583:2 12584:1 12586:1 12602:1 12606:1 12630:1 12633:1 12635:1 12652:1 12667:1 12689:1 12706:1 12716:1 12723:1 12732:1 12739:1 12741:34 12766:2 12770:1 12778:1 12800:1 12816:1 12822:1 12828:1 12840:1 12859:1 12863:1 12872:2 12877:1 12897:1 12911:1 12920:1 12929:1 12948:1 12950:4 12956:1 12958:2 12959:1 12961:2 12969:1 12975:1 12981:2 12983:1 12984:1 12986:1 12988:6 12989:1 12995:2 12997:1 13000:1 13007:1 13012:1 13030:2 13031:1 13033:1 13069:1 13070:1 13071:1 13082:1 13094:5 13095:5 13100:1 13113:1 13121:1 13140:1 13173:1 13202:1 13207:3 13221:1 13225:1 13246:1 13251:1 13259:1 13270:1 13292:2 13295:3 13298:1 13300:1 13322:1 13326:1 13328:6 13339:1 13352:1 13363:1 13371:1 13373:1 13378:1 13379:1 13382:1 13383:4 13390:1 13405:1 13409:1 13410:2 13416:1 13418:1 13424:1 13425:1 13430:1 13431:2 13434:3 13435:2 13437:2 13442:1 13444:3 13445:1 13448:1 13449:1 13453:4 13455:1 13456:1 13459:5 13462:1 13469:1 13482:3 13495:1 13501:1 13525:2 13545:1 13554:1 13562:1 13570:1 13622:1 13637:1 13641:1 13670:1 13675:1 13703:2 13709:1 13719:1 13739:1 13743:1 13746:1 13752:2 13758:2 13765:2 13766:1 13767:1 13775:1 13812:1 13818:2 13819:2 13826:1 13835:2 13837:6 13843:2 13846:1 13867:1 13868:1 13876:2 13893:1 13895:1 13906:2 13907:1 13924:2 13925:3 13928:9 13931:2 13965:2 13966:1 13970:2 13972:2 13977:2 13979:3 13994:2 14000:1 14003:2 14008:1 14031:2 14035:2 14039:2 14046:1 14052:2 14062:1 14071:1 14074:1 14077:1 14094:1 14097:1 14100:1 14101:1 14108:1 14114:1 14118:2 14122:1 14124:1 14125:2 14127:1 14142:1 14154:1 14156:1 14178:2 14189:1 14200:1 14201:1 14207:3 14210:1 14223:1 14240:2 14245:1 14246:1 14253:1 14254:1 14262:1 14275:2 14307:1 14311:1 14325:1 14330:1 14332:1 14344:1 14349:1 14368:1 14371:1 14372:1 14380:1 14393:1 14398:1 14403:2 14443:1 14446:1 14449:2 14452:1 14462:1 14465:1 14468:1 14491:1 14516:2 14518:2 14539:2 14544:2 14550:1 14553:1 14570:1 14574:1 14575:1 14577:1 14585:1 14591:2 14593:1 14596:2 14627:1 14637:1 14640:2 14645:1 14665:1 14677:6 14696:1 14713:1 14714:1 14719:3 14721:1 14740:2 14744:3 14761:1 14762:3 14764:1 14768:3 14774:1 14775:1 14781:1 14783:1 14785:1 14802:2 14803:2 14806:1 14820:1 14825:1 14830:1 14833:1 14837:2 14844:5 14853:3 14856:2 14864:1 14877:1 14880:1 14885:1 14887:1 14889:1 14903:8 14929:2 14931:2 14941:1 14963:1 14975:1 14976:1 14981:2 15001:1 15024:1 15035:1 15056:1 15067:1 15070:1 15080:1 15088:1 15089:1 15112:1 15116:1 15129:1 15139:1 15142:1 15147:2 15164:1 15179:1 15184:1 15191:1 15205:2 15215:1 15227:1 15236:1 15251:1 15282:3 15283:1 15307:7 15312:2 15315:1 15328:1 15361:1 15367:1 15370:1 15371:1 15374:1 15389:1 15396:1 15446:1 15477:1 15480:2331 15482:2 15496:3 15503:1 15514:1 15525:1 15532:1 15543:1 15552:1 15564:1 15575:1 15577:1 15583:2 15587:1 15602:1 15611:1 15623:1 15633:1 15635:1 15646:5 15655:2 15658:3 15661:1 15662:3 15663:1 15672:2 15684:1 15708:1 15723:4 15725:2 15742:1 15743:1 15762:1 15773:1 15775:1 15790:1 15800:2 15824:1 15834:3 15883:1 15887:2 15898:1 15929:2 15936:1 15944:1 15949:2 15990:1 16000:2 16002:1 16009:1 16019:1 16037:1 16042:2 16046:1 16054:4 16074:5 16095:2 16102:3 16110:1 16117:1 16121:1 16129:1 16151:1 16152:5 16159:1 16170:1 16171:3 16176:1 16177:1 16206:8 16212:1 16219:1 16235:1 16239:1 16251:1 16268:1 16271:1 16307:1 16308:1 16331:1 16332:2 16341:1 16361:1 16362:1 16380:1 16387:2 16402:1 16408:1 16414:1 16416:1 16426:1 16432:3 16434:3 16443:4 16449:1 16461:1 16462:1 16479:2 16482:1 16485:3 16495:1 16500:1 16514:1 16522:2 16538:1 16541:1 16548:1 16573:1 16593:1 16596:1 16611:1 16618:2 16630:1 16650:1 16654:1 16661:1 16669:14 16676:3 16679:1 16681:1 16706:1 16712:1 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:5 16763:2 16768:2 16781:1 16782:1 16787:1 16795:2 16797:1 16800:1 16811:1 16815:8 16823:3 16826:1 16832:1 16844:1 16855:1 16856:1 16861:2 16867:1 16873:1 16883:1 16895:1 16908:1 16916:1 16945:1 16947:1 16965:3 16969:1 16981:1 17001:3 17007:1 17014:2 17017:1 17027:1 17043:1 17046:6 17050:5 17056:1 17058:2 17059:1 17090:1 17101:1 17109:1 17130:1 17138:2 17144:1 17163:1 17168:1 17174:1 17188:4 17197:1 17206:1 17210:1 17219:1 17221:1 17223:2 17234:1 17238:1 17248:1 17255:1 17261:1 17275:1 17282:1 17291:1 17305:1 17311:5 17329:1 17352:1 17358:2 17362:3 17380:1 17400:1 17424:1 17429:1 17437:3 17443:1 17452:1 17485:10 17491:2 17496:2 17501:1 17510:4 17520:1 17532:1 17535:1 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17571:1 17590:1 17601:1 17604:2 17610:2 17648:1 17649:1 17685:1 17687:1 17706:5 17721:1 17724:3 17735:1 17738:3 17745:1 17747:2 17750:1 17774:1 17806:1 17807:1 17812:1 17813:1 17819:1 17827:1 17833:1 17834:2 17835:4 17837:1 17838:1 17839:1 17851:1 17852:1 17857:1 17867:1 17879:1 17884:1 17893:1 17908:1 17916:3 17921:1 17929:1 17943:1 17958:1 17965:2 17980:2 17993:2 17995:2 17996:2 18035:1 18037:1 18043:2 18053:3 18066:1 18068:1 18087:1 18088:2 18090:1 18091:1 18092:1 18093:2 18127:1 18130:1 18131:1 18166:1 18176:1 18177:2 18186:1 18196:4 18197:3 18199:3 18204:1 18207:1 18210:1 18228:1 18231:3 18234:2 18237:1 18244:2 18248:1 18249:2 18261:1 18264:1 18285:1 18296:1 18318:2 18339:1 18341:3 18347:1 18360:3 18366:2 18378:3 18392:1 18406:1 18421:1 18425:1 18434:2 18459:1 18474:1 18479:1 18481:1 18491:2 18498:2 18505:1 18506:5 18509:1 18511:1 18532:1 18537:1 18542:1 18558:1 18565:1 18567:3 18573:2 18575:2 18577:1 18578:1 18580:2 18581:1 18616:1 18619:1 18631:1 18641:1 18643:1 18644:1 18658:1 18664:2 18666:1 18676:2 18686:1 18693:2 18702:1 18703:1 18704:1 18715:1 18727:3 18729:1 18732:2 18739:3 18742:1 18758:1 18776:1 18784:1 18803:2 18807:1 18820:2 18842:1 18843:1 18854:1 18856:1 18867:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:2 18932:1 18939:1 18941:2 18943:1 18946:1 18948:1 18949:1 18961:1 18965:1 18975:3 18976:3 18978:1 18985:2 18990:3 19003:1 19007:1 19029:2 19033:1 19036:1 19053:1 19056:1 19064:1 19070:1 19080:1 19096:3 19123:1 19134:4 19145:1 19156:3 19187:2 19193:1 19201:1 19210:1 19212:1 19213:1 19218:1 19225:2 19229:1 19233:1 19237:1 19249:1 19278:1 19289:1 19325:1 19336:1 19349:2 19360:3 19365:4 19369:1 19371:1 19376:2 19388:1 19405:1 19406:1 19417:1 19425:3 19427:1 19431:1 19435:3 19438:3 19443:1 19444:1 19446:1 19470:1 19474:1 19480:1 19486:1 19493:1 19494:2 19507:1 19508:1 19510:2 19523:1 19525:1 19532:1 19540:1 19550:2 19559:6 19562:1 19565:3 19573:1 19580:1 19582:1 19584:1 19587:1 19611:1 19615:3 19637:1 19638:2 19644:1 19666:1 19716:2 19718:1 19730:1 19744:3 19746:1 19748:1 19789:1 19810:2 19823:1 19832:3 19870:1 19901:1 19902:8 19960:1 19974:2 20000:2 20003:1 20004:1 20007:1 20013:1 20022:1 20031:1 20032:1 20040:2 20051:1 20055:1 20063:1 20068:3 20076:1 20083:2 20084:7 20087:1 20089:1 20102:1 20107:1 20109:1 20111:1 20122:1 20126:2 20139:1 20152:1 20155:1 20173:1 20196:1 20204:1 20214:1 20215:1 20252:1 20266:1 20268:1 20270:1 20273:1 20274:2 20275:1 20276:1 20281:1 20287:1 20305:1 20316:1 20318:2 20327:3 20331:1 20332:3 20334:1 20337:4 20343:2 20344:1 20360:1 20366:4 20378:5 20379:1 20393:1 20411:2 20412:1 20432:1 20441:1 20442:1 20446:1 20447:1 20448:1 20460:1 20469:2 20473:1 20480:2 20485:1 20490:2 20493:1 20496:1 20508:1 20512:2 20545:1 20563:1 20567:1 20595:1 20599:2 20622:1 20630:1 20638:1 20649:1 20651:2 20659:1 20663:1 20670:3 20674:1 20686:6 20718:1 20722:1 20723:1 20734:1 20738:1 20742:6 20750:1 20751:1 20753:1 20755:1 20762:1 20769:2 20785:2 20786:1 20847:1 20878:1 20909:1 20928:3 20930:7 20931:1 20949:3 20955:1 20958:1 20962:2 20964:1 20965:1 20970:2 20989:1 20993:1 21007:1 21023:1 21033:1 21079:1 21099:1 21100:1 21104:1 21111:1 21112:1 21113:1 21121:1 21134:1 21136:1 21137:1 21139:2 21154:1 21159:1 21189:1 21190:1 21204:1 21205:1 21208:3 21209:1 21245:1 21247:1 21267:1 21279:1 21319:1 21337:1 21344:1 21350:1 21361:5 21363:1 21364:6 21371:1 21413:1 21438:1 21441:2 21455:1 21480:5 21486:1 21503:1 21512:1 21520:1 21522:1 21545:1 21551:1 21556:1 21557:1 21559:1 21561:2 21576:1 21581:1 21586:1 21587:1 21594:1 21602:1 21612:3 21628:1 21630:1 21632:1 21637:3 21641:1 21642:1 21663:1 21665:1 21671:1 21693:1 21695:1 21697:4 21703:1 21707:1 21716:1 21738:1 21740:2 21748:1 21760:6 21761:1 21773:3 21787:1 21812:1 21816:1 21831:3 21841:1 21844:2 21857:1 21863:1 21869:2 21872:1 21887:1 21905:1 21914:1 21923:1 21926:2 21934:1 21952:1 21974:2 21977:2 21984:1 21996:1 21998:1 22001:1 22006:1 22008:1 22010:2 22013:3 22014:1 22027:2 22043:1 22048:2 22058:1 22062:1 22065:1 22068:1 22080:4 22108:2 22114:2 22124:1 22138:1 22145:1 22152:1 22173:1 22186:1 22193:1 22195:1 22208:1 22242:1 22247:2 22301:1 22304:1 22306:1 22322:1 22331:1 22379:1 22386:1 22390:1 22394:1 22419:1 22423:1 22425:1 22429:1 22434:1 22462:1 22484:1 22511:1 22515:1 22522:2 22527:1 22528:3 22540:1 22547:1 22548:2 22550:1 22553:1 22562:2 22571:1 22572:1 22585:3 22593:1 22601:1 22602:1 22611:4 22616:1 22624:1 22657:1 22666:1 22669:6 22672:2 22674:1 22690:2 22693:1 22699:2 22727:1 22740:4 22749:2 22750:2 22755:2 22759:1 22760:3 22762:1 22769:1 22779:1 22784:1 22786:2 22798:1 22801:2 22804:1 22812:1 22815:2 22817:1 22820:1 22822:1 22823:1 22825:1 22831:1 22837:1 22846:1 22854:1 22869:2 22874:1 22894:2 22895:1 22897:1 22912:1 22914:1 22916:3 22917:1 22925:1 22939:1 22942:1 22951:1 22957:1 22990:1 22991:1 23004:1 23005:1 23006:2 23007:1 23022:4 23039:1 23048:1 23050:2 23066:3 23074:2 23088:1 23089:6 23109:2 23113:1 23138:1 23151:1 23206:2 23225:1 23233:1 23248:3 23284:1 23305:3 23311:1 23314:2 23324:1 23325:1 23339:1 23341:1 23360:4 23363:1 23385:1 23404:1 23405:1 23415:1 23417:1 23430:19 23431:1 23432:1 23446:1 23449:1 23459:1 23466:12 23469:1 23472:1 23474:1 23476:2 23481:1 23490:1 23518:2 23527:1 23541:1 23546:1 23551:3 23558:3 23586:10 23587:1 23610:2 23623:1 23639:1 23645:2 23647:2 23653:1 23655:1 23657:1 23694:1 23698:1 23719:1 23739:1 23740:1 23751:1 23754:1 23758:1 23784:1 23796:4 23797:3 23840:1 23845:1 23847:1 23849:1 23852:1 23853:2 23858:2 23859:1 23862:1 23868:1 23939:1 23951:1 23956:4 23961:1 23964:1 23966:1 23967:1 23970:1 23971:10 23985:1 23990:1 24000:1 24005:1 24006:3 24012:1 24028:1 24042:1 24049:2 24057:1 24101:1 24105:1 24108:1 24117:1 24126:1 24139:1 24145:1 24153:1 24162:3 24170:2 24179:1 24196:1 24223:1 24225:1 24253:1 24261:2 24293:1 24301:1 24302:1 24306:1 24307:4 24315:1 24317:1 24320:1 24324:1 24341:1 24347:2 24353:1 24362:1 24370:2 24376:1 24379:1 24384:1 24392:1 24393:1 24401:5 24409:1 24410:1 24411:2 24418:1 24421:1 24438:1 24440:1 24449:1 24455:1 24463:1 24466:1 24469:3 24470:1 24473:2 24476:4 24479:1 24480:2 24483:2 24487:1 24491:1 24504:1 24523:1 24525:3 24530:1 24535:1 24536:1 24552:1 24563:1
20 13:1 25:1 29:1 30:1 32:1 34:2 37:1 39:1 45:1 53:1 61:1 72:1 76:1 85:7 88:1 96:1 105:1 112:1 113:1 150:1 162:1 164:1 172:1 175:1 186:1 201:1 216:3 218:2 237:1 240:3 241:1 254:2 256:1 276:1 290:1 296:2 298:1 314:1 317:1 339:1 341:2 348:1 377:1 392:1 407:3 441:1 469:1 489:1 492:1 509:1 510:3 516:1 527:2 541:2 545:1 565:2 566:1 568:3 601:1 640:1 694:1 696:1 713:1 720:1 752:2 754:1 758:1 759:1 762:2 766:1 778:1 779:1 784:1 785:4 788:1 795:1 802:1 805:1 814:3 825:1 828:1 830:1 831:3 833:1 834:5 835:1 838:5 846:1 857:1 862:1 869:4 881:1 888:3 889:3 892:2 899:1 906:1 912:1 937:1 946:1 948:2 952:1 960:1 967:1 989:1 994:1 1005:1 1009:5 1015:4 1043:1 1044:2 1047:1 1053:1 1064:1 1065:1 1074:1 1078:1 1080:1 1094:1 1095:1 1108:1 1110:1 1112:1 1114:1 1131:1 1137:1 1142:1 1158:1 1172:1 1208:1 1212:1 1220:3 1230:2 1236:1 1241:1 1242:1 1257:1 1258:1 1259:4 1267:3 1274:5 1293:1 1296:1 1297:1 1301:2 1311:3 1328:14 1330:2 1332:7 1340:3 1343:1 1345:1 1352:2 1353:2 1360:2 1372:1 1376:1 1381:9 1385:1 1395:1 1396:1 1407:1 1418:1 1420:1 1429:1 1435:1 1436:1 1439:1 1460:2 1476:1 1484:1 1506:1 1507:5 1510:2 1517:2 1526:1 1535:1 1546:1 1552:2 1564:1 1568:1 1591:1 1612:2 1617:3 1619:2 1629:1 1639:2 1641:1 1644:1 1661:1 1663:1 1666:1 1670:1 1700:1 1703:2 1719:1 1731:4 1745:1 1763:1 1766:4 1771:1 1774:1 1775:1 1782:1 1789:1 1815:1 1826:6 1828:1 1838:1 1846:1 1853:2 1854:2 1856:1 1875:2 1877:8 1879:8 1882:1 1883:1 1889:1 1891:3 1892:3 1894:3 1895:2 1898:1 1904:1 1908:1 1909:2 1910:1 1912:4 1930:2 1938:1 1939:2 1941:1 1942:2 1943:1 1945:4 1947:1 1948:2 1949:1 1952:1 1954:2 1959:1 1960:3 1961:2 1963:3 1965:3 1968:3 1970:2 1973:2 1976:2 1978:1 1981:2 1992:1 1994:1 1999:1 2000:1 2015:1 2024:1 2034:1 2038:1 2045:1 2047:1 2055:1 2074:1 2076:1 2077:1 2102:1 2110:1 2115:1 2140:1 2157:1 2164:1 2167:1 2169:1 2173:1 2188:1 2210:1 2218:1 2222:1 2241:1 2253:1 2254:1 2263:1 2267:3 2272:1 2273:1 2282:1 2287:1 2303:1 2308:1 2317:1 2319:2 2321:1 2325:2 2328:1 2329:1 2333:1 2342:1 2353:1 2359:1 2365:1 2374:1 2380:1 2383:1 2390:1 2393:1 2405:1 2409:2 2416:1 2423:1 2434:1 2451:5 2457:1 2461:2 2462:11 2464:2 2478:1 2480:2 2481:3 2491:1 2496:1 2500:1 2507:12 2535:1 2565:1 2589:1 2590:1 2597:2 2606:1 2611:1 2636:1 2645:3 2649:1 2678:1 2685:1 2689:1 2694:1 2700:1 2718:1 2745:1 2753:1 2754:1 2764:3 2770:1 2779:4 2780:1 2802:3 2807:1 2817:1 2826:3 2831:1 2839:1 2842:1 2843:1 2849:1 2852:1 2853:1 2876:1 2898:1 2941:1 2948:1 2950:1 2954:1 2981:1 2993:2 2999:1 3002:2 3031:1 3047:1 3049:7 3059:2 3063:2 3068:1 3076:2 3089:1 3090:1 3093:1 3095:1 3103:6 3118:1 3129:1 3131:1 3135:1 3136:1 3139:1 3147:3 3173:2 3183:2 3184:4 3208:1 3221:6 3222:1 3226:1 3234:1 3237:6 3278:1 3288:2 3301:1 3306:1 3312:6 3323:1 3326:2 3328:2 3351:1 3354:1 3355:1 3358:1 3367:1 3369:2 3377:1 3391:1 3399:2 3404:1 3407:2 3408:1 3416:1 3428:1 3442:1 3450:1 3467:1 3477:1 3481:2 3495:1 3503:1 3514:1 3519:1 3522:1 3537:1 3547:1 3572:1 3596:1 3598:1 3620:1 3622:1 3627:1 3628:1 3653:1 3655:1 3660:2 3661:1 3666:1 3678:1 3681:1 3690:1 3710:2 3729:1 3736:1 3737:1 3740:1 3745:1 3770:1 3773:1 3777:1 3801:1 3803:2 3831:1 3832:1 3837:1 3840:2 3845:1 3856:2 3868:2 3878:1 3889:1 3902:2 3904:1 3908:1 3911:1 3928:4 3937:1 3938:2 3939:1 3961:1 3991:1 3992:1 4003:1 4019:1 4046:1 4047:1 4073:1 4082:1 4084:1 4091:1 4099:1 4107:18 4108:1 4116:1 4136:1 4143:1 4159:1 4160:1 4192:3 4197:1 4198:7 4211:3 4212:2 4214:1 4216:1 4218:1 4222:1 4223:1 4228:1 4229:3 4230:2 4231:4 4234:3 4237:1 4238:1 4248:2 4275:1 4302:1 4319:1 4323:1 4351:1 4364:4 4368:1 4384:1 4391:1 4394:1 4403:1 4409:3 4412:1 4420:1 4425:1 4436:1 4450:2 4464:1 4470:1 4498:3 4506:1 4529:1 4533:1 4539:1 4546:4 4561:1 4581:1 4587:2 4599:1 4620:1 4621:2 4625:1 4628:1 4633:2 4644:1 4650:1 4654:1 4658:1 4662:2 4667:1 4673:1 4675:1 4681:2 4689:3 4703:3 4729:1 4741:1 4757:2 4767:1 4768:2 4771:1 4773:1 4787:3 4794:1 4818:1 4821:1 4823:1 4826:1 4831:1 4836:2 4854:1 4857:1 4861:1 4872:1 4876:2 4926:4 4927:3 4950:2 4953:2 4958:1 4959:2 4986:1 4994:1 5016:1 5025:1 5037:1 5049:6 5054:1 5075:1 5090:2 5096:1 5100:2 5103:1 5112:1 5127:1 5130:1 5142:1 5146:2 5187:3 5189:1 5192:3 5205:1 5215:1 5217:1 5225:1 5236:1 5247:3 5248:1 5260:1 5263:1 5264:1 5276:1 5282:2 5289:1 5308:3 5310:2 5314:1 5322:3 5324:1 5325:1 5332:3 5333:1 5335:1 5337:1 5338:1 5340:4 5342:3 5347:2 5349:5 5350:2 5352:4 5369:1 5393:1 5396:1 5398:1 5409:1 5426:4 5437:4 5451:2 5488:1 5489:1 5501:1 5520:1 5535:2 5592:2 5600:1 5604:1 5609:1 5615:2 5616:2 5625:1 5627:1 5629:2 5630:1 5634:1 5655:1 5656:1 5663:1 5665:1 5668:1 5672:2 5674:4 5686:2 5688:1 5689:1 5693:1 5702:1 5703:1 5709:1 5717:1 5723:1 5726:3 5735:1 5774:1 5783:3 5785:1 5797:1 5807:3 5808:1 5813:1 5818:1 5819:2 5823:1 5837:1 5874:1 5878:2 5890:1 5914:1 5917:1 5930:1 5947:9 5948:1 5959:1 5968:2 5970:2 5998:2 6021:2 6035:1 6039:1 6040:1 6052:2 6057:1 6071:1 6084:1 6096:1 6116:1 6124:1 6126:1 6130:1 6147:1 6155:3 6175:4 6183:4 6192:1 6194:2 6200:1 6201:2 6209:1 6223:1 6226:1 6231:1 6232:1 6237:2 6241:1 6246:1 6248:1 6255:1 6260:1 6261:1 6269:1 6276:1 6285:2 6286:1 6288:1 6289:1 6301:1 6305:1 6324:1 6332:2 6354:1 6359:5 6364:1 6365:11 6375:1 6382:2 6384:1 6386:4 6387:1 6410:1 6416:1 6429:36 6436:1 6449:7 6451:13 6460:1 6486:1 6497:2 6499:1 6501:1 6508:1 6545:1 6551:1 6599:1 6607:1 6616:1 6619:1 6627:1 6655:1 6661:1 6669:3 6677:3 6680:1 6700:1 6704:1 6706:1 6743:1 6759:1 6760:1 6771:1 6781:1 6785:1 6789:2 6797:1 6802:1 6806:1 6810:9 6816:2 6818:1 6821:1 6824:1 6841:1 6854:1 6859:27 6882:1 6906:1 6908:1 6918:1 6926:1 6968:1 6981:1 7017:1 7020:1 7030:1 7038:5 7054:2 7056:1 7068:4 7077:1 7078:1 7084:1 7086:3 7110:1 7115:1 7121:1 7125:1 7135:1 7156:1 7157:2 7164:1 7166:3 7169:2 7170:4 7172:1 7173:1 7174:1 7177:2 7182:5 7192:1 7193:1 7194:2 7222:1 7246:2 7257:2 7262:2 7263:1 7264:1 7280:1 7303:3 7305:1 7325:1 7331:1 7358:1 7364:1 7371:2 7384:1 7385:1 7400:2 7409:2 7423:2 7425:1 7432:3 7434:1 7437:1 7443:1 7451:1 7457:1 7459:1 7460:1 7461:4 7487:1 7488:1 7505:1 7519:1 7521:1 7526:1 7535:2 7539:1 7541:2 7571:1 7573:2 7581:6 7590:4 7594:1 7596:1 7604:3 7613:1 7615:1 7628:1 7638:2 7644:1 7649:1 7656:1 7665:1 7672:1 7678:1 7686:1 7712:1 7731:1 7753:1 7777:1 7780:1 7787:3 7790:1 7798:1 7803:1 7804:1 7805:1 7810:1 7821:1 7865:1 7868:1 7878:1 7896:1 7912:3 7920:1 7922:1 7927:1 7930:4 7932:1 7943:1 7944:1 7950:1 7964:4 7975:1 7980:1 7988:3 8013:1 8026:1 8036:1 8048:1 8049:4 8061:1 8064:3 8067:1 8070:6 8071:1 8080:3 8099:1 8107:1 8118:2 8121:1 8138:2 8139:1 8143:2 8162:12 8166:1 8174:1 8177:1 8179:1 8183:1 8189:1 8195:1 8196:1 8200:2 8205:1 8212:1 8215:1 8222:2 8226:1 8285:2 8293:1 8296:3 8297:1 8304:2 8317:1 8328:1 8348:2 8352:2 8363:2 8379:1 8382:2 8387:2 8392:1 8427:1 8437:2 8443:1 8444:2 8448:1 8480:1 8484:1 8508:2 8517:2 8531:1 8532:2 8536:1 8566:1 8570:1 8574:1 8575:1 8581:2 8607:1 8617:3 8632:1 8663:1 8679:4 8682:7 8684:1 8686:1 8700:1 8705:1 8719:1 8736:2 8746:1 8753:1 8755:1 8759:3 8760:1 8769:1 8778:3 8783:1 8785:1 8789:2 8801:2 8802:3 8807:1 8809:2 8814:4 8815:1 8817:1 8818:1 8822:1 8824:1 8828:1 8829:1 8832:1 8833:2 8840:1 8841:1 8843:1 8856:3 8857:2 8867:1 8881:1 8891:3 8897:1 8903:1 8905:1 8907:2 8910:2 8914:4 8916:9 8949:1 8960:2 8975:1 8977:1 8981:1 8988:1 8989:4 8997:1 9001:3 9070:1 9080:1 9086:1 9090:1 9101:4 9102:2 9106:1 9108:1 9145:3 9162:2 9167:1 9173:4 9187:1 9192:1 9193:1 9198:3 9200:1 9202:1 9205:1 9215:1 9222:1 9225:1 9252:6 9260:2 9282:1 9289:1 9313:1 9317:1 9321:1 9335:1 9338:1 9346:1 9359:3 9363:2 9388:1 9389:1 9399:1 9411:1 9416:1 9424:2 9433:1 9440:2 9442:1 9459:1 9472:1 9486:2 9488:7 9495:1 9501:1 9523:1 9525:1 9536:2 9542:1 9543:2 9545:1 9547:2 9548:1 9559:1 9561:1 9563:3 9586:1 9587:1 9599:1 9610:1 9621:1 9624:2 9639:1 9653:7 9656:3 9659:1 9668:1 9682:2 9687:1 9690:1 9691:1 9695:1 9696:1 9698:1 9699:1 9703:1 9705:1 9707:1 9710:1 9711:1 9716:1 9717:1 9719:1 9723:2 9727:1 9730:1 9738:1 9743:1 9745:1 9760:1 9762:1 9763:5 9772:3 9778:8 9808:1 9810:1 9814:1 9815:1 9822:1 9823:11 9852:1 9880:1 9881:1 9899:1 9904:1 9911:1 9918:2 9923:4 9924:1 9932:1 9936:1 9949:1 9967:1 9968:1 9974:3 9989:1 9999:1 10001:1 10018:1 10022:3 10037:2 10046:1 10053:3 10054:3 10060:1 10061:1 10067:1 10070:2 10074:3 10079:1 10089:1 10095:1 10105:1 10118:1 10130:1 10144:1 10145:1 10146:1 10151:2 10163:3 10169:3 10179:1 10183:1 10200:1 10208:1 10217:1 10225:1 10231:1 10233:1 10265:1 10281:3 10290:1 10304:1 10324:1 10337:1 10360:1 10363:1 10364:2 10391:1 10413:2 10416:1 10430:1 10477:1 10480:10 10483:2 10487:2 10494:2 10502:1 10505:1 10513:1 10531:1 10548:1 10550:11 10556:1 10571:1 10576:2 10598:2 10621:2 10637:1 10652:1 10675:1 10687:1 10695:1 10724:1 10725:1 10733:1 10739:4 10740:1 10753:1 10754:1 10755:2 10787:1 10804:1 10818:2 10836:4 10844:1 10846:1 10847:3 10851:3 10861:3 10870:1 10871:8 10872:1 10874:1 10897:1 10901:1 10921:1 10923:3 10942:3 10943:2 10962:1 10969:1 10970:8 10974:1 10982:1 10985:14 10987:1 10993:1 11001:1 11013:1 11016:1 11022:1 11046:4 11065:1 11087:2 11093:1 11101:2 11108:1 11118:1 11123:1 11143:1 11150:1 11156:1 11159:2 11163:2 11168:1 11187:1 11191:2 11220:1 11224:1 11273:1 11275:1 11277:1 11280:5 11281:1 11283:1 11287:1 11289:2 11297:1 11301:3 11311:1 11317:1 11322:1 11329:1 11332:1 11340:1 11342:1 11368:10 11375:1 11376:2 11392:1 11406:1 11407:2 11408:2 11415:1 11419:1 11432:2 11439:1 11447:2 11449:1 11450:1 11451:3 11459:1 11509:5 11512:2 11531:3 11554:1 11555:1 11563:2 11564:2 11607:1 11612:1 11613:1 11614:2 11638:2 11657:1 11664:1 11665:1 11689:1 11697:2 11699:1 11704:1 11710:1 11712:1 11717:2 11718:1 11744:1 11747:1 11777:1 11788:1 11806:1 11808:1 11812:2 11813:2 11816:1 11818:3 11825:1 11826:1 11830:1 11833:1 11841:1 11855:1 11856:1 11858:1 11861:2 11881:1 11900:1 11902:4 11910:1 11927:4 11942:1 11958:1 11979:1 11985:1 11987:1 11990:3 11997:1 12006:5 12016:2 12020:1 12025:1 12035:1 12036:1 12045:1 12050:2 12054:1 12060:1 12069:1 12089:1 12091:1 12099:1 12100:1 12105:1 12114:1 12115:1 12123:1 12141:1 12144:1 12151:1 12157:1 12173:1 12175:1 12176:1 12208:1 12218:1 12229:1 12251:1 12263:3 12269:1 12276:3 12287:1 12303:3 12337:1 12341:1 12346:1 12366:1 12368:1 12372:1 12383:4 12387:1 12389:1 12408:1 12432:1 12436:2 12437:2 12472:1 12473:1 12474:1 12482:1 12490:1 12525:1 12550:3 12559:1 12582:3 12583:2 12584:1 12586:1 12602:1 12606:1 12630:1 12633:1 12635:1 12652:1 12667:1 12689:1 12706:1 12716:1 12723:1 12732:1 12739:1 12741:36 12766:2 12770:1 12778:1 12800:1 12816:1 12822:1 12828:1 12840:1 12859:1 12863:1 12872:2 12877:1 12897:1 12911:1 12920:1 12929:1 12948:1 12950:4 12956:1 12958:2 12959:1 12961:2 12969:1 12975:1 12981:2 12983:1 12984:1 12986:1 12988:6 12989:1 12995:2 12997:1 13000:1 13007:1 13012:1 13030:2 13031:1 13033:1 13069:1 13070:1 13071:1 13082:1 13094:5 13095:5 13100:1 13113:1 13121:1 13140:1 13173:1 13202:1 13207:3 13221:1 13225:1 13246:1 13251:1 13259:1 13270:1 13292:2 13295:3 13298:1 13300:1 13322:1 13326:1 13328:6 13339:1 13352:1 13363:1 13371:1 13373:1 13378:1 13379:1 13382:1 13383:4 13390:1 13405:1 13409:1 13410:2 13416:1 13418:1 13424:1 13425:1 13430:1 13431:2 13434:3 13435:2 13437:2 13442:1 13444:3 13445:1 13448:1 13449:1 13453:4 13455:1 13456:1 13459:5 13462:1 13469:1 13482:3 13495:1 13501:1 13525:2 13545:1 13554:1 13562:1 13570:1 13622:1 13637:1 13641:1 13670:1 13675:1 13703:2 13709:1 13719:1 13739:1 13743:1 13746:1 13752:2 13758:2 13765:2 13766:1 13767:1 13775:1 13806:1 13812:2 13818:2 13819:2 13826:1 13835:2 13837:6 13843:2 13846:1 13867:1 13868:1 13876:2 13893:1 13895:1 13906:2 13907:1 13924:2 13925:3 13928:9 13931:2 13965:2 13966:1 13970:2 13972:2 13977:2 13979:3 13994:2 14000:1 14003:2 14008:1 14031:2 14035:2 14039:2 14046:1 14052:2 14062:1 14071:1 14074:1 14077:1 14094:1 14097:1 14100:1 14101:1 14108:1 14114:1 14118:2 14122:1 14124:1 14125:2 14127:1 14131:1 14142:1 14154:1 14156:1 14178:2 14189:1 14200:1 14201:1 14207:3 14210:1 14223:1 14240:2 14245:1 14246:1 14253:1 14254:1 14262:1 14275:2 14307:1 14311:1 14325:1 14330:1 14332:1 14344:1 14349:1 14368:1 14371:1 14372:1 14380:1 14393:1 14398:1 14403:3 14443:1 14446:1 14449:2 14452:1 14462:1 14465:1 14468:1 14491:1 14516:2 14518:2 14539:2 14544:2 14550:1 14553:1 14570:1 14574:1 14575:1 14577:1 14585:1 14591:2 14593:1 14596:2 14627:1 14637:1 14640:2 14645:1 14665:1 14677:6 14696:1 14713:1 14714:1 14719:3 14721:1 14740:2 14744:3 14761:1 14762:3 14764:1 14768:3 14774:1 14775:2 14781:1 14783:1 14785:1 14802:3 14803:2 14806:1 14820:1 14825:2 14830:1 14833:2 14837:2 14844:6 14853:3 14856:2 14864:1 14877:1 14880:1 14885:1 14887:1 14889:1 14903:8 14929:2 14931:2 14941:1 14963:1 14975:1 14976:1 14981:2 15001:1 15024:1 15035:1 15056:1 15067:1 15070:1 15080:1 15088:1 15089:1 15112:1 15116:1 15129:1 15139:1 15142:1 15147:2 15164:1 15179:1 15184:1 15191:1 15205:2 15215:1 15227:1 15236:1 15251:1 15282:3 15283:1 15307:8 15312:2 15315:1 15328:1 15361:1 15367:1 15370:1 15371:1 15374:1 15389:1 15396:1 15446:1 15477:1 15480:2383 15482:2 15496:3 15503:1 15514:1 15525:1 15532:1 15543:1 15552:1 15564:1 15575:1 15577:1 15583:2 15587:1 15602:1 15611:1 15623:1 15633:1 15635:1 15646:5 15655:2 15658:3 15661:1 15662:3 15663:1 15672:2 15680:1 15684:1 15708:1 15723:4 15725:2 15742:1 15743:1 15762:1 15773:1 15775:1 15790:1 15800:2 15807:1 15824:1 15834:3 15883:1 15887:2 15898:1 15929:2 15936:1 15944:1 15949:2 15990:1 16000:2 16002:1 16009:1 16019:1 16037:1 16042:3 16046:1 16054:4 16074:5 16095:2 16102:3 16110:1 16117:1 16121:1 16129:1 16151:1 16152:5 16159:1 16170:1 16171:3 16176:1 16177:1 16206:8 16212:1 16219:1 16235:1 16239:1 16251:1 16268:1 16271:1 16307:1 16308:1 16331:1 16332:2 16341:1 16361:1 16362:1 16380:1 16387:2 16402:1 16408:1 16414:1 16416:1 16426:1 16432:3 16434:3 16443:4 16449:1 16461:1 16462:1 16479:2 16482:1 16485:3 16495:1 16500:1 16514:1 16522:2 16538:1 16541:1 16548:1 16573:1 16593:1 16596:1 16611:1 16618:2 16630:1 16650:1 16654:1 16658:1 16661:1 16669:16 16676:3 16679:1 16681:1 16706:1 16712:1 16717:1 16718:1 16724:1 16727:1 16731:1 16733:1 16735:2 16750:2 16753:5 16763:2 16764:1 16768:2 16781:1 16782:1 16787:1 16795:2 16797:1 16800:1 16811:1 16815:8 16823:3 16826:1 16832:1 16844:1 16855:1 16856:1 16861:3 16867:1 16873:1 16883:1 16895:1 16908:1 16916:1 16945:1 16947:1 16965:3 16969:1 16981:1 17001:3 17007:1 17014:2 17017:1 17027:1 17043:1 17046:6 17050:5 17056:1 17058:2 17059:1 17090:1 17101:1 17109:2 17117:1 17130:1 17138:2 17144:1 17163:1 17168:1 17174:1 17188:4 17197:1 17206:1 17210:1 17219:1 17221:1 17223:2 17234:1 17238:1 17248:1 17255:1 17261:1 17275:1 17282:1 17291:1 17305:1 17311:5 17329:1 17352:1 17358:2 17362:3 17380:1 17400:1 17424:1 17429:1 17437:4 17443:1 17452:1 17485:10 17491:2 17496:2 17501:1 17510:4 17520:1 17532:1 17535:1 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17571:1 17590:1 17601:1 17604:2 17610:2 17648:1 17649:1 17685:1 17687:1 17706:5 17721:1 17724:3 17735:1 17738:3 17739:1 17745:1 17747:2 17750:1 17774:1 17806:1 17807:1 17812:1 17813:1 17819:1 17827:1 17833:1 17834:2 17835:5 17837:1 17838:1 17839:1 17851:1 17852:1 17857:1 17867:1 17879:1 17884:1 17893:1 17908:1 17916:3 17921:1 17929:1 17943:1 17958:1 17965:2 17980:2 17993:2 17995:2 17996:3 18035:1 18037:1 18043:2 18053:3 18066:1 18068:1 18087:1 18088:2 18090:1 18091:1 18092:1 18093:2 18127:1 18130:1 18131:1 18166:1 18176:1 18177:2 18186:1 18196:4 18197:3 18199:3 18204:1 18207:1 18210:1 18228:1 18231:3 18234:2 18237:1 18244:2 18248:1 18249:2 18261:1 18264:1 18285:1 18296:1 18318:2 18339:1 18341:3 18347:1 18360:3 18366:2 18378:3 18392:1 18406:1 18421:2 18425:1 18434:2 18459:1 18474:1 18479:1 18481:1 18491:2 18498:2 18505:1 18506:5 18509:1 18511:1 18532:1 18537:1 18542:1 18558:1 18565:1 18567:3 18573:2 18575:2 18577:1 18578:1 18580:2 18581:1 18616:1 18619:1 18631:1 18641:1 18643:1 18644:1 18658:1 18664:2 18666:1 18676:2 18686:1 18693:2 18702:1 18703:1 18704:1 18715:1 18727:3 18729:1 18732:2 18739:3 18742:1 18758:1 18776:1 18784:1 18803:2 18807:1 18820:2 18842:1 18843:1 18854:1 18856:1 18867:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:2 18932:1 18939:1 18941:2 18943:2 18946:1 18948:1 18949:1 18961:1 18965:1 18975:3 18976:3 18978:1 18985:2 18990:3 19003:1 19007:1 19029:2 19033:1 19036:1 19053:1 19056:1 19064:1 19070:1 19080:1 19096:3 19123:1 19134:4 19145:1 19156:3 19187:2 19193:1 19201:1 19210:1 19212:1 19213:1 19218:1 19225:2 19229:1 19233:1 19237:1 19249:1 19278:1 19289:1 19325:1 19336:1 19349:2 19360:3 19365:4 19369:1 19371:1 19376:2 19388:1 19405:1 19406:1 19417:1 19425:3 19427:1 19431:1 19435:3 19438:3 19443:1 19444:1 19446:1 19470:1 19474:1 19480:1 19486:1 19493:1 19494:2 19507:1 19508:1 19510:2 19523:1 19525:1 19532:1 19540:1 19550:2 19559:6 19562:1 19565:3 19573:1 19580:1 19582:1 19584:1 19587:1 19611:1 19615:3 19637:1 19638:2 19644:1 19666:1 19716:2 19718:1 19730:1 19744:3 19746:1 19748:1 19789:1 19810:2 19823:1 19832:3 19870:1 19901:1 19902:8 19960:1 19974:2 20000:2 20003:1 20004:1 20007:1 20013:1 20022:1 20031:1 20032:1 20040:2 20051:1 20055:1 20063:1 20068:3 20076:1 20083:2 20084:7 20087:1 20089:1 20102:1 20107:1 20109:1 20111:1 20122:1 20126:2 20139:1 20152:1 20155:1 20173:1 20196:1 20204:1 20214:1 20215:1 20252:1 20266:1 20268:1 20270:1 20273:1 20274:2 20275:1 20276:1 20281:2 20287:1 20305:1 20316:1 20318:2 20327:3 20331:1 20332:3 20334:1 20337:4 20343:2 20344:1 20360:1 20366:4 20378:5 20379:1 20393:1 20411:2 20412:1 20432:1 20441:1 20442:1 20446:1 20447:1 20448:1 20460:1 20469:2 20473:1 20480:2 20485:1 20490:2 20493:1 20496:1 20508:1 20512:2 20545:1 20547:1 20563:1 20567:1 20595:1 20599:2 20605:1 20622:1 20630:1 20635:1 20638:1 20649:1 20651:2 20659:1 20663:1 20670:3 20674:1 20686:6 20718:1 20722:1 20723:1 20734:1 20738:1 20742:6 20750:1 20751:1 20753:1 20755:1 20762:1 20769:2 20785:2 20786:1 20847:1 20878:1 20909:1 20928:3 20930:7 20931:1 20949:3 20955:1 20958:1 20962:2 20964:1 20965:1 20970:2 20989:1 20993:1 21007:1 21023:1 21033:1 21079:1 21099:1 21100:1 21104:1 21111:1 21112:1 21113:1 21121:1 21134:1 21136:1 21137:1 21139:2 21154:1 21159:1 21185:1 21189:1 21190:1 21204:1 21205:1 21208:3 21209:1 21245:1 21247:1 21267:1 21279:1 21313:1 21319:1 21337:1 21344:1 21350:1 21361:5 21363:1 21364:6 21371:1 21413:2 21438:1 21441:2 21455:1 21480:5 21486:1 21503:1 21512:1 21520:1 21522:1 21545:1 21551:1 21556:1 21557:1 21559:1 21561:2 21576:1 21581:1 21586:1 21587:1 21594:1 21602:1 21612:3 21628:1 21630:1 21632:1 21637:3 21641:1 21642:1 21663:1 21665:1 21671:1 21693:1 21695:1 21697:4 21703:1 21707:1 21716:1 21738:1 21740:2 21748:1 21760:7 21761:1 21773:3 21787:1 21812:1 21816:1 21831:3 21841:1 21844:2 21857:1 21863:1 21869:2 21872:1 21887:1 21905:1 21914:1 21923:1 21926:2 21934:1 21952:1 21974:3 21977:2 21984:1 21996:1 21998:1 22001:1 22006:1 22008:1 22010:2 22013:3 22014:1 22027:2 22043:1 22048:2 22058:1 22062:1 22065:1 22068:2 22080:4 22094:1 22108:2 22114:2 22124:1 22138:1 22145:1 22152:1 22173:1 22186:1 22193:1 22195:1 22208:1 22235:1 22242:1 22247:2 22301:1 22304:1 22306:1 22322:1 22331:1 22379:1 22386:1 22390:1 22394:1 22419:1 22423:1 22425:1 22429:1 22434:1 22462:1 22484:1 22511:1 22515:1 22522:2 22527:1 22528:3 22540:1 22547:1 22548:2 22550:1 22553:1 22562:2 22571:1 22572:1 22585:3 22591:1 22593:1 22601:1 22602:1 22611:4 22616:1 22624:1 22657:1 22666:1 22669:6 22672:2 22674:1 22690:2 22693:1 22699:2 22727:1 22740:4 22749:2 22750:2 22755:2 22759:1 22760:3 22762:1 22769:1 22779:1 22784:1 22786:2 22798:1 22801:2 22804:1 22812:1 22815:2 22817:1 22820:1 22822:1 22823:1 22825:1 22831:1 22837:1 22846:1 22854:1 22869:2 22874:1 22894:2 22895:1 22897:1 22912:1 22914:1 22916:3 22917:1 22925:1 22939:1 22942:1 22951:1 22957:1 22990:1 22991:1 23004:1 23005:1 23006:2 23007:1 23022:4 23039:1 23048:1 23050:2 23066:3 23074:2 23088:1 23089:6 23109:2 23113:1 23138:1 23151:1 23206:2 23225:1 23233:1 23248:3 23284:1 23305:3 23311:1 23314:2 23324:1 23325:1 23333:1 23339:1 23341:1 23360:4 23363:2 23385:1 23404:1 23405:1 23415:1 23417:1 23430:20 23431:1 23432:1 23446:1 23449:1 23459:1 23466:13 23469:1 23472:1 23474:1 23476:2 23481:1 23490:1 23518:2 23527:1 23541:1 23546:1 23551:3 23558:3 23586:10 23587:1 23610:2 23623:1 23639:1 23645:2 23647:2 23653:1 23655:1 23657:1 23694:1 23698:1 23719:1 23739:1 23740:1 23751:1 23754:1 23758:1 23784:1 23796:4 23797:3 23840:1 23845:1 23847:1 23849:1 23852:1 23853:2 23858:2 23859:1 23862:1 23868:1 23939:1 23951:1 23956:4 23961:1 23964:1 23966:1 23967:1 23970:1 23971:10 23985:1 23987:1 23990:1 24000:1 24005:1 24006:3 24007:1 24012:1 24028:1 24042:1 24049:2 24057:1 24101:1 24105:1 24108:1 24117:1 24126:1 24139:1 24145:1 24153:1 24162:3 24170:2 24179:1 24196:1 24223:1 24225:1 24253:1 24261:2 24293:1 24301:1 24302:1 24306:1 24307:4 24315:1 24317:1 24320:1 24324:1 24341:1 24347:2 24353:1 24362:1 24370:2 24376:1 24379:2 24384:1 24392:1 24393:1 24401:5 24409:1 24410:1 24411:2 24418:1 24421:1 24438:1 24440:1 24449:1 24455:1 24463:1 24466:1 24469:3 24470:2 24473:2 24476:4 24479:1 24480:2 24483:2 24487:1 24491:1 24504:1 24523:1 24525:3 24530:1 24535:1 24536:1 24552:1 24563:1
20 13:1 25:1 29:1 30:1 32:1 34:2 37:1 39:1 45:1 53:1 61:1 72:1 76:1 85:7 88:1 96:1 105:1 112:1 113:1 150:1 162:1 164:1 172:1 175:1 186:1 201:1 216:3 218:2 237:1 239:1 240:3 241:1 254:2 256:1 276:1 290:1 296:2 298:1 314:1 317:1 339:1 341:2 348:1 377:1 392:1 407:3 441:1 469:1 489:1 492:1 509:1 510:3 516:1 527:2 541:2 545:1 565:2 566:1 568:3 601:1 640:1 694:1 696:1 713:1 720:1 752:2 754:1 758:1 759:1 762:2 766:1 778:1 779:1 784:1 785:4 788:1 795:1 802:1 805:1 814:3 825:1 828:1 830:1 831:3 833:1 834:5 835:1 838:5 846:1 857:1 862:1 869:4 881:1 888:3 889:3 892:2 899:1 906:1 912:1 937:1 946:1 948:2 952:2 960:1 967:1 989:1 994:1 1005:1 1009:5 1015:4 1043:1 1044:2 1047:1 1053:1 1064:1 1065:1 1074:1 1078:1 1080:1 1094:1 1095:1 1108:1 1110:1 1112:1 1114:1 1131:1 1137:1 1142:1 1158:1 1172:1 1208:1 1212:1 1220:3 1230:2 1236:1 1241:1 1242:1 1257:1 1258:1 1259:4 1267:3 1274:5 1293:1 1296:1 1297:1 1301:2 1311:3 1328:14 1330:2 1332:7 1340:4 1343:1 1345:1 1352:2 1353:2 1360:2 1372:1 1376:1 1381:9 1385:1 1395:1 1396:1 1407:1 1418:1 1420:1 1429:1 1435:1 1436:1 1439:1 1460:2 1476:1 1484:1 1506:1 1507:5 1510:2 1517:2 1526:1 1535:1 1546:1 1552:2 1564:1 1568:1 1591:1 1612:2 1617:3 1619:2 1629:1 1639:2 1641:1 1644:1 1661:1 1663:1 1666:1 1670:1 1700:1 1703:2 1719:1 1731:4 1745:1 1763:1 1766:4 1771:1 1774:1 1775:1 1782:1 1789:1 1815:1 1826:6 1828:1 1838:1 1846:1 1853:2 1854:2 1856:1 1875:2 1877:8 1879:8 1882:1 1883:1 1889:1 1891:3 1892:3 1894:3 1895:2 1898:1 1904:1 1908:1 1909:2 1910:1 1912:4 1930:2 1938:1 1939:2 1941:1 1942:2 1943:1 1945:4 1947:1 1948:2 1949:1 1952:1 1954:2 1959:1 1960:3 1961:2 1963:3 1965:3 1968:3 1970:2 1973:2 1976:2 1978:1 1981:2 1992:1 1994:1 1999:1 2000:1 2015:1 2024:1 2034:1 2038:1 2045:1 2047:1 2055:1 2074:1 2076:1 2077:1 2102:1 2110:1 2115:1 2140:1 2157:1 2164:1 2167:1 2169:1 2173:1 2188:1 2210:1 2218:1 2222:1 2241:1 2253:1 2254:1 2263:1 2267:3 2272:1 2273:1 2282:1 2287:1 2303:1 2308:1 2317:1 2319:2 2321:1 2325:2 2328:1 2329:1 2333:3 2342:1 2353:1 2359:1 2365:1 2374:1 2380:1 2383:1 2390:1 2393:1 2405:1 2409:3 2416:1 2423:1 2434:1 2451:6 2457:1 2461:2 2462:11 2464:2 2478:1 2480:2 2481:3 2491:1 2496:1 2500:1 2507:12 2535:1 2565:2 2589:1 2590:1 2597:2 2606:1 2611:1 2636:1 2645:4 2649:1 2678:1 2685:1 2689:1 2694:1 2700:1 2718:1 2745:1 2753:1 2754:1 2764:3 2770:1 2779:4 2780:1 2802:3 2807:1 2817:1 2826:3 2831:1 2839:1 2842:1 2843:1 2849:1 2852:1 2853:1 2876:1 2898:1 2941:1 2948:1 2950:1 2954:1 2981:1 2993:2 2999:1 3002:2 3031:1 3047:1 3048:1 3049:7 3059:2 3063:2 3068:1 3076:2 3089:1 3090:1 3093:1 3095:1 3103:6 3118:1 3129:1 3131:1 3135:1 3136:1 3139:1 3147:4 3173:2 3183:2 3184:4 3208:1 3221:6 3222:1 3226:1 3234:1 3237:6 3278:1 3288:2 3301:1 3306:1 3312:6 3323:1 3326:2 3328:2 3351:1 3354:1 3355:1 3358:1 3367:1 3369:2 3375:1 3377:1 3391:1 3399:2 3404:1 3407:3 3408:1 3416:1 3428:1 3442:1 3450:1 3467:1 3477:1 3481:2 3495:1 3503:1 3514:1 3519:1 3522:1 3537:1 3547:1 3572:1 3596:1 3598:1 3620:1 3622:1 3627:1 3628:1 3653:1 3655:1 3660:2 3661:1 3666:1 3678:1 3681:1 3690:1 3710:2 3729:1 3736:1 3737:1 3740:1 3745:1 3770:1 3773:1 3777:1 3801:1 3803:2 3831:1 3832:1 3837:1 3840:2 3845:1 3856:2 3868:2 3878:1 3889:1 3902:2 3904:1 3908:1 3911:1 3928:4 3937:1 3938:2 3939:1 3961:1 3991:1 3992:1 4003:1 4019:1 4046:1 4047:1 4073:1 4082:1 4084:1 4091:1 4099:1 4107:19 4108:1 4116:1 4136:1 4143:1 4159:1 4160:1 4192:3 4197:1 4198:7 4211:3 4212:2 4214:1 4216:1 4218:1 4222:1 4223:1 4228:1 4229:3 4230:2 4231:4 4234:3 4237:1 4238:1 4248:2 4275:1 4301:1 4302:1 4319:1 4323:1 4351:1 4364:4 4368:1 4384:1 4391:1 4394:1 4403:1 4409:3 4412:1 4420:1 4425:1 4436:1 4450:2 4464:1 4470:1 4498:3 4506:1 4529:2 4533:1 4539:1 4546:4 4561:1 4581:1 4587:2 4599:1 4620:1 4621:2 4625:1 4628:1 4633:2 4644:1 4650:1 4654:1 4658:1 4662:2 4667:1 4673:1 4675:1 4681:2 4689:3 4703:3 4729:1 4741:1 4757:2 4767:1 4768:2 4771:1 4773:1 4787:3 4794:1 4818:1 4821:1 4823:1 4826:1 4831:1 4836:2 4854:1 4857:1 4861:1 4872:1 4876:2 4926:4 4927:3 4950:2 4953:2 4958:1 4959:2 4986:1 4994:1 5016:1 5025:1 5037:1 5049:6 5054:1 5075:1 5089:1 5090:2 5096:1 5100:2 5103:1 5112:1 5127:1 5130:1 5142:1 5146:2 5187:3 5189:1 5192:3 5205:1 5215:1 5217:1 5225:1 5236:1 5247:3 5248:1 5260:1 5263:1 5264:1 5276:1 5282:2 5289:1 5308:3 5310:2 5314:1 5322:3 5324:1 5325:1 5332:3 5333:1 5335:1 5337:1 5338:1 5340:4 5342:3 5347:2 5349:5 5350:2 5352:4 5369:1 5393:1 5396:1 5398:1 5409:1 5426:4 5437:4 5451:2 5488:1 5489:1 5501:1 5520:1 5535:2 5592:2 5600:1 5604:1 5609:1 5615:2 5616:2 5625:1 5627:1 5629:2 5630:1 5634:1 5649:1 5655:1 5656:1 5663:1 5665:1 5668:1 5672:2 5674:4 5686:2 5688:1 5689:1 5693:1 5702:1 5703:1 5709:1 5717:1 5723:1 5726:3 5735:1 5774:1 5783:3 5785:1 5797:1 5807:3 5808:1 5813:1 5818:1 5819:2 5823:1 5837:1 5874:1 5878:2 5890:1 5914:1 5917:1 5930:1 5947:9 5948:1 5959:1 5968:2 5970:2 5998:2 6021:2 6035:1 6039:1 6040:1 6052:2 6057:1 6071:1 6084:1 6096:1 6116:1 6124:1 6126:1 6130:1 6147:1 6155:3 6175:4 6183:4 6192:1 6194:2 6200:1 6201:2 6209:1 6223:1 6226:1 6231:1 6232:1 6237:2 6241:1 6246:1 6248:1 6255:1 6260:1 6261:1 6269:1 6276:1 6285:2 6286:1 6288:1 6289:1 6301:1 6305:1 6324:1 6332:2 6354:1 6359:5 6364:1 6365:11 6375:1 6382:2 6384:1 6386:4 6387:1 6410:1 6416:1 6429:36 6436:1 6445:1 6449:8 6451:13 6460:1 6486:1 6497:2 6499:1 6501:1 6508:1 6545:1 6549:1 6551:1 6599:1 6607:1 6614:1 6616:3 6619:1 6627:1 6655:1 6661:2 6669:3 6677:3 6680:1 6700:1 6704:1 6706:1 6743:1 6759:1 6760:1 6771:1 6781:1 6785:1 6789:2 6797:1 6802:1 6806:1 6810:9 6816:2 6818:1 6821:1 6824:1 6825:1 6841:1 6854:1 6859:27 6882:1 6906:1 6908:1 6918:1 6926:1 6968:1 6981:1 7017:1 7020:1 7030:1 7038:5 7054:2 7056:1 7068:4 7077:1 7078:1 7084:1 7086:3 7110:1 7115:1 7121:1 7125:1 7135:1 7156:1 7157:2 7164:1 7166:3 7169:2 7170:4 7172:1 7173:1 7174:1 7177:2 7182:5 7192:1 7193:1 7194:2 7222:1 7246:2 7257:2 7262:2 7263:1 7264:1 7280:1 7303:3 7305:1 7325:1 7331:1 7358:1 7364:1 7371:2 7384:1 7385:1 7400:2 7409:2 7423:2 7425:1 7432:3 7434:1 7437:1 7443:1 7451:1 7457:1 7459:1 7460:1 7461:4 7487:1 7488:1 7505:1 7519:1 7521:1 7526:1 7535:2 7539:1 7541:2 7571:1 7573:2 7581:6 7590:4 7594:1 7596:1 7604:3 7613:1 7615:1 7628:1 7638:2 7644:1 7649:1 7656:1 7665:1 7672:3 7678:1 7686:1 7712:1 7731:1 7753:1 7777:1 7780:1 7787:3 7790:1 7798:1 7803:1 7804:1 7805:1 7810:1 7821:1 7865:1 7868:1 7878:1 7896:1 7912:3 7920:1 7922:1 7927:1 7930:4 7932:1 7943:1 7944:1 7950:1 7964:4 7975:1 7980:1 7988:3 8013:1 8026:1 8036:1 8048:1 8049:4 8061:1 8064:3 8067:1 8070:6 8071:1 8080:3 8099:1 8107:1 8118:2 8121:1 8138:2 8139:1 8143:2 8162:12 8166:1 8174:1 8177:1 8179:1 8183:1 8189:1 8195:1 8196:1 8200:2 8205:1 8212:1 8215:1 8222:2 8226:1 8285:2 8293:1 8296:3 8297:1 8304:2 8317:1 8328:1 8348:2 8352:2 8363:2 8379:1 8382:2 8387:2 8392:1 8427:1 8437:2 8443:1 8444:2 8448:1 8480:1 8484:1 8508:2 8517:2 8531:1 8532:2 8536:1 8566:1 8570:1 8574:1 8575:1 8581:2 8597:1 8607:1 8617:3 8632:1 8663:1 8679:4 8682:7 8684:1 8686:1 8700:1 8705:1 8719:1 8736:2 8746:1 8753:1 8755:2 8759:3 8760:1 8769:1 8778:3 8783:1 8785:1 8789:2 8801:2 8802:3 8807:1 8809:2 8814:4 8815:1 8817:1 8818:1 8822:1 8824:1 8828:1 8829:1 8832:1 8833:2 8840:1 8841:1 8843:1 8856:3 8857:2 8867:1 8881:1 8891:3 8897:1 8903:1 8905:1 8907:2 8910:2 8914:4 8916:9 8949:1 8960:2 8975:1 8977:1 8981:1 8988:1 8989:4 8997:1 9000:1 9001:3 9070:1 9080:1 9086:1 9090:1 9101:4 9102:2 9106:1 9108:1 9145:3 9162:2 9167:1 9173:4 9185:1 9187:1 9192:1 9193:1 9198:3 9200:1 9202:1 9205:1 9215:1 9222:1 9225:1 9252:6 9260:2 9282:1 9289:1 9313:1 9317:1 9321:1 9335:1 9338:1 9346:1 9359:3 9363:2 9388:1 9389:1 9399:1 9411:1 9416:1 9424:2 9433:1 9440:2 9442:2 9459:1 9472:1 9486:2 9488:7 9495:1 9501:1 9523:1 9525:1 9536:2 9542:1 9543:2 9545:1 9547:2 9548:1 9559:1 9561:1 9563:3 9586:1 9587:1 9599:1 9610:1 9621:1 9624:2 9639:1 9653:7 9656:3 9659:1 9668:1 9682:2 9687:1 9690:1 9691:1 9695:1 9696:1 9698:1 9699:1 9703:1 9705:1 9707:1 9710:2 9711:1 9716:1 9717:1 9719:1 9723:2 9727:1 9730:1 9738:1 9743:1 9745:1 9760:1 9762:1 9763:5 9772:3 9778:8 9808:1 9810:1 9814:1 9815:1 9822:1 9823:11 9852:1 9880:1 9881:1 9899:1 9904:1 9911:1 9918:2 9923:4 9924:1 9932:1 9936:1 9949:1 9967:1 9968:1 9974:3 9989:1 9999:1 10001:1 10018:1 10022:3 10037:2 10046:1 10053:4 10054:4 10060:1 10061:1 10067:1 10070:2 10074:3 10079:1 10089:1 10094:1 10095:1 10105:1 10118:1 10130:1 10144:1 10145:1 10146:1 10151:2 10163:3 10169:3 10179:1 10183:1 10200:1 10208:1 10217:1 10225:1 10231:1 10233:1 10265:1 10281:3 10290:1 10304:1 10324:1 10337:1 10360:1 10363:1 10364:2 10391:1 10413:2 10416:1 10430:1 10477:1 10480:10 10483:2 10487:2 10494:2 10502:1 10505:1 10513:1 10524:1 10531:1 10548:1 10550:11 10556:1 10571:1 10576:2 10598:2 10621:2 10637:1 10652:1 10675:1 10687:1 10695:1 10724:1 10725:1 10733:1 10739:4 10740:1 10753:1 10754:1 10755:2 10787:1 10804:1 10818:2 10836:4 10844:1 10846:1 10847:3 10851:3 10861:3 10870:1 10871:8 10872:1 10874:1 10897:1 10901:1 10921:1 10923:3 10942:3 10943:2 10962:1 10969:1 10970:8 10974:1 10982:1 10985:14 10987:1 10993:1 11001:1 11013:1 11016:1 11022:1 11046:4 11065:1 11087:2 11093:1 11101:2 11108:1 11118:1 11123:1 11143:1 11150:1 11156:1 11159:2 11163:2 11168:1 11187:1 11191:2 11220:1 11224:1 11273:1 11275:1 11277:1 11280:5 11281:1 11283:1 11284:1 11287:1 11289:2 11297:1 11301:3 11311:1 11317:1 11322:1 11329:1 11332:1 11340:1 11342:1 11368:10 11375:1 11376:2 11392:1 11406:1 11407:2 11408:2 11415:1 11419:1 11432:2 11439:1 11447:2 11449:1 11450:1 11451:3 11459:1 11509:5 11512:2 11531:3 11554:1 11555:1 11563:2 11564:2 11607:1 11612:1 11613:1 11614:2 11638:2 11657:1 11664:1 11665:1 11689:1 11697:2 11699:1 11704:1 11710:1 11712:1 11717:2 11718:1 11744:1 11747:1 11777:1 11788:1 11806:1 11808:1 11812:2 11813:2 11816:1 11818:3 11825:1 11826:1 11830:1 11833:1 11841:1 11855:1 11856:1 11858:1 11861:2 11881:1 11900:1 11902:4 11910:1 11927:4 11942:1 11958:1 11979:1 11985:1 11987:1 11990:3 11997:1 12006:5 12016:2 12020:1 12025:1 12035:1 12036:1 12045:1 12050:2 12054:1 12060:1 12069:1 12089:1 12091:1 12099:1 12100:1 12105:1 12114:1 12115:1 12123:1 12141:1 12144:1 12151:1 12157:2 12173:1 12175:1 12176:1 12208:1 12218:1 12229:1 12251:1 12263:3 12269:1 12276:4 12287:1 12303:3 12337:1 12341:1 12346:1 12366:1 12368:1 12372:1 12383:4 12387:1 12389:1 12408:1 12432:1 12436:2 12437:2 12472:1 12473:1 12474:1 12482:1 12490:1 12525:1 12550:3 12559:1 12576:1 12582:3 12583:2 12584:1 12586:1 12602:1 12606:1 12630:1 12633:1 12635:1 12652:1 12667:1 12689:1 12706:1 12716:1 12723:1 12732:1 12739:1 12741:37 12766:2 12770:1 12778:1 12800:1 12816:1 12822:2 12828:1 12840:1 12859:1 12863:1 12872:2 12877:1 12897:1 12911:1 12920:1 12929:1 12948:1 12950:4 12956:1 12958:2 12959:1 12961:2 12969:1 12975:1 12981:2 12983:1 12984:1 12986:1 12988:6 12989:1 12995:2 12997:1 13000:1 13007:1 13012:1 13030:3 13031:1 13033:1 13069:1 13070:1 13071:1 13082:1 13094:5 13095:5 13100:1 13113:1 13121:1 13140:1 13173:1 13202:1 13207:3 13221:1 13225:1 13246:1 13251:1 13259:1 13270:1 13292:2 13295:3 13298:1 13300:1 13322:1 13326:1 13328:6 13339:1 13352:1 13363:1 13371:1 13373:1 13378:1 13379:1 13382:1 13383:4 13390:1 13405:1 13409:1 13410:2 13416:1 13418:1 13424:1 13425:1 13430:1 13431:2 13434:3 13435:2 13437:2 13442:1 13444:3 13445:1 13448:1 13449:1 13453:4 13455:1 13456:1 13459:5 13462:1 13469:1 13482:3 13495:1 13501:1 13525:2 13545:1 13554:1 13562:1 13570:1 13622:1 13637:1 13641:1 13670:1 13675:1 13703:2 13709:1 13719:1 13739:1 13743:1 13746:1 13752:2 13758:2 13765:2 13766:1 13767:1 13775:1 13780:1 13806:1 13812:2 13818:2 13819:2 13826:1 13835:2 13837:6 13843:2 13846:1 13867:1 13868:1 13876:2 13893:1 13895:1 13906:2 13907:1 13924:2 13925:3 13928:9 13931:2 13936:1 13965:2 13966:1 13970:2 13972:2 13977:2 13979:3 13994:2 14000:1 14003:2 14008:1 14031:2 14035:2 14039:2 14046:1 14052:2 14062:1 14071:1 14074:1 14077:1 14094:1 14097:1 14100:1 14101:2 14108:1 14114:1 14118:2 14122:1 14124:1 14125:2 14127:1 14131:1 14142:1 14154:1 14156:1 14178:2 14189:1 14200:1 14201:1 14207:3 14210:1 14223:1 14240:2 14245:1 14246:1 14253:1 14254:1 14262:1 14275:2 14307:1 14311:1 14325:1 14330:1 14332:1 14344:1 14349:1 14368:1 14371:1 14372:1 14380:1 14393:1 14398:1 14403:3 14443:1 14446:1 14449:2 14452:1 14462:1 14465:1 14468:1 14491:1 14516:2 14518:2 14534:1 14539:2 14544:2 14550:1 14553:1 14570:1 14574:1 14575:1 14577:1 14585:1 14591:2 14593:1 14596:2 14627:1 14637:1 14640:2 14645:1 14665:1 14677:6 14696:1 14713:1 14714:1 14719:3 14721:1 14740:2 14744:3 14761:1 14762:3 14764:1 14768:3 14774:1 14775:2 14781:1 14783:1 14785:1 14802:3 14803:2 14806:1 14820:1 14825:2 14830:1 14833:2 14837:2 14844:6 14853:3 14856:2 14864:1 14877:1 14880:1 14885:1 14887:1 14889:1 14903:8 14929:2 14931:2 14941:1 14963:1 14975:1 14976:1 14981:2 15001:1 15024:1 15035:1 15056:1 15067:1 15070:1 15080:1 15088:1 15089:1 15112:1 15116:1 15129:1 15139:1 15142:1 15147:2 15164:1 15179:1 15184:1 15191:1 15205:2 15215:2 15227:1 15236:1 15251:1 15282:3 15283:1 15307:8 15312:2 15315:1 15328:1 15361:1 15367:1 15370:1 15371:1 15374:1 15389:1 15396:1 15446:1 15477:1 15480:2465 15482:2 15496:3 15503:1 15514:1 15525:1 15532:1 15543:1 15552:1 15564:1 15575:1 15577:1 15583:2 15587:1 15602:1 15611:1 15623:1 15633:1 15635:1 15646:5 15655:2 15658:3 15661:1 15662:3 15663:1 15672:2 15680:1 15684:1 15708:1 15723:4 15725:2 15742:1 15743:1 15762:1 15773:1 15775:1 15790:1 15800:2 15807:1 15824:1 15834:3 15883:1 15887:2 15898:1 15929:2 15936:1 15944:1 15949:2 15990:1 16000:2 16002:1 16009:1 16019:1 16037:1 16042:3 16046:1 16054:4 16074:5 16095:2 16102:3 16110:1 16117:1 16121:1 16129:1 16151:1 16152:5 16159:1 16170:1 16171:3 16176:1 16177:1 16206:8 16212:1 16219:1 16235:1 16239:1 16251:1 16268:1 16271:1 16307:1 16308:1 16331:1 16332:2 16341:1 16361:1 16362:1 16380:1 16387:2 16402:1 16408:1 16414:1 16416:1 16426:1 16432:3 16434:3 16443:4 16449:1 16461:1 16462:1 16479:2 16482:1 16485:3 16495:1 16500:1 16514:1 16522:2 16538:1 16541:1 16548:1 16573:1 16593:1 16596:1 16611:1 16618:2 16630:1 16650:1 16654:1 16658:1 16661:1 16669:17 16676:3 16679:1 16681:1 16706:1 16712:1 16717:1 16718:1 16724:1 16727:1 16729:1 16731:1 16733:1 16735:2 16748:1 16750:2 16753:5 16763:2 16764:1 16768:2 16781:1 16782:1 16787:1 16795:2 16797:1 16800:1 16811:1 16815:8 16823:3 16826:1 16832:1 16844:1 16855:1 16856:1 16861:3 16867:1 16873:1 16883:1 16895:1 16908:1 16916:1 16945:1 16947:1 16965:3 16969:1 16981:1 17001:3 17007:1 17014:2 17017:1 17027:1 17043:1 17046:6 17050:5 17056:1 17058:2 17059:1 17090:1 17101:1 17109:2 17117:1 17130:1 17136:1 17138:2 17144:1 17163:1 17168:1 17171:1 17174:1 17188:4 17197:1 17206:1 17210:1 17219:1 17221:1 17223:2 17234:1 17238:1 17248:1 17255:1 17261:1 17275:1 17282:1 17291:1 17305:1 17311:5 17329:1 17352:1 17358:2 17362:3 17380:1 17400:1 17424:1 17429:2 17437:4 17443:1 17452:1 17485:10 17491:2 17496:2 17501:1 17510:4 17520:1 17532:1 17535:1 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17571:1 17590:1 17601:1 17604:2 17610:2 17648:1 17649:1 17685:1 17687:1 17706:5 17721:1 17724:3 17735:2 17738:3 17739:1 17745:1 17747:2 17750:1 17774:1 17806:1 17807:1 17812:1 17813:1 17819:1 17827:1 17833:1 17834:2 17835:5 17837:1 17838:1 17839:1 17851:1 17852:1 17857:1 17867:1 17879:1 17884:1 17893:1 17908:1 17916:3 17921:1 17929:1 17943:1 17958:1 17965:2 17980:2 17993:2 17995:2 17996:3 18035:1 18037:1 18043:2 18053:3 18066:1 18068:1 18087:1 18088:2 18090:1 18091:1 18092:1 18093:2 18127:1 18130:1 18131:1 18166:1 18176:1 18177:2 18186:1 18196:4 18197:3 18199:3 18204:1 18207:1 18210:2 18228:1 18231:3 18234:2 18237:1 18244:2 18248:1 18249:2 18261:1 18264:1 18285:1 18296:1 18318:2 18339:1 18341:3 18347:1 18360:3 18366:2 18378:3 18392:1 18406:1 18421:2 18425:1 18434:2 18459:1 18474:1 18479:1 18481:1 18491:2 18498:2 18505:1 18506:5 18509:1 18511:1 18532:1 18537:1 18542:1 18558:1 18565:1 18567:3 18573:2 18575:2 18577:1 18578:1 18580:2 18581:1 18616:1 18619:1 18631:1 18641:1 18643:1 18644:1 18658:1 18664:2 18666:1 18676:2 18686:1 18693:2 18702:2 18703:1 18704:1 18715:1 18727:3 18729:1 18732:2 18739:3 18742:1 18758:1 18776:1 18784:1 18803:2 18807:1 18820:2 18842:1 18843:1 18854:1 18856:1 18867:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:2 18932:1 18939:1 18941:2 18943:2 18946:1 18948:1 18949:1 18961:1 18965:1 18975:3 18976:3 18978:1 18985:2 18990:3 19003:1 19007:1 19029:2 19033:1 19036:1 19053:1 19056:1 19064:1 19070:1 19080:1 19096:3 19101:1 19123:1 19134:4 19145:1 19156:3 19187:2 19193:1 19201:1 19210:1 19212:1 19213:1 19218:1 19225:2 19229:1 19233:1 19237:1 19249:1 19278:1 19289:1 19325:1 19336:1 19349:2 19360:3 19365:4 19369:1 19371:1 19376:2 19388:1 19405:1 19406:1 19417:1 19425:3 19427:1 19431:1 19435:3 19438:3 19443:1 19444:1 19446:1 19470:1 19474:1 19480:1 19486:1 19493:1 19494:2 19507:1 19508:1 19510:2 19523:1 19525:1 19532:1 19540:1 19544:1 19550:2 19559:6 19562:1 19565:3 19573:1 19580:1 19582:1 19584:1 19587:1 19611:1 19615:3 19637:1 19638:2 19644:1 19666:1 19716:2 19718:1 19730:1 19744:3 19746:1 19748:1 19789:1 19810:2 19823:1 19832:3 19870:1 19901:1 19902:8 19960:1 19974:2 20000:2 20003:1 20004:1 20007:1 20013:1 20022:1 20031:1 20032:1 20040:2 20051:1 20055:1 20063:1 20068:3 20076:1 20083:2 20084:7 20087:1 20089:1 20102:1 20107:1 20109:1 20111:2 20122:1 20126:2 20139:1 20152:1 20155:1 20173:1 20196:1 20204:1 20214:1 20215:1 20252:1 20266:1 20268:1 20270:1 20273:1 20274:3 20275:1 20276:1 20281:2 20287:1 20305:1 20316:1 20318:2 20327:3 20331:1 20332:3 20334:1 20337:5 20343:2 20344:1 20360:1 20366:4 20378:5 20379:1 20393:1 20411:2 20412:1 20413:1 20432:1 20441:1 20442:1 20446:1 20447:1 20448:1 20460:1 20469:2 20473:1 20480:2 20485:1 20490:2 20493:1 20496:1 20508:1 20512:2 20545:1 20547:1 20563:1 20567:1 20595:1 20599:2 20605:1 20622:1 20630:1 20635:1 20638:1 20649:1 20651:2 20659:1 20663:1 20670:3 20674:1 20686:6 20717:1 20718:1 20722:1 20723:1 20734:1 20738:1 20742:6 20750:1 20751:1 20753:1 20755:1 20762:1 20769:2 20785:2 20786:1 20847:1 20878:1 20909:1 20928:3 20930:7 20931:1 20949:3 20955:2 20958:1 20962:2 20964:1 20965:1 20970:2 20989:1 20993:1 21007:1 21023:1 21033:1 21079:1 21099:1 21100:1 21104:1 21111:1 21112:1 21113:1 21121:1 21134:1 21136:1 21137:1 21139:2 21154:1 21159:2 21185:1 21189:1 21190:1 21204:1 21205:1 21208:3 21209:1 21245:1 21247:1 21267:1 21279:1 21313:1 21319:1 21337:1 21344:1 21350:1 21361:5 21363:1 21364:6 21371:1 21413:2 21438:1 21441:2 21455:1 21480:5 21486:1 21503:1 21512:1 21520:1 21522:1 21545:1 21548:1 21551:1 21556:1 21557:1 21559:1 21561:2 21576:1 21581:1 21586:1 21587:1 21594:1 21602:1 21612:3 21628:1 21630:1 21632:1 21637:3 21641:1 21642:2 21663:1 21665:1 21671:1 21693:1 21695:1 21697:4 21703:1 21707:1 21716:1 21738:1 21740:2 21748:1 21760:7 21761:1 21773:3 21787:1 21812:1 21816:1 21831:4 21841:1 21844:2 21857:1 21863:1 21869:2 21872:1 21887:1 21905:1 21914:1 21923:1 21926:2 21934:1 21952:1 21974:3 21977:2 21984:1 21996:1 21998:1 22001:1 22006:1 22008:1 22010:2 22013:3 22014:1 22027:2 22043:1 22048:2 22058:1 22062:1 22065:1 22068:2 22080:4 22094:1 22108:2 22114:2 22124:1 22138:1 22145:1 22152:1 22173:1 22186:1 22193:1 22195:1 22208:1 22235:1 22242:1 22247:2 22301:1 22304:1 22306:1 22322:1 22331:1 22379:1 22386:1 22390:1 22394:1 22419:1 22423:1 22425:1 22429:1 22434:1 22462:1 22484:1 22511:1 22515:1 22522:2 22527:1 22528:3 22540:1 22547:1 22548:2 22550:1 22553:1 22562:2 22571:1 22572:1 22585:3 22591:1 22593:1 22601:1 22602:1 22611:4 22616:1 22624:1 22657:1 22666:1 22669:6 22672:2 22674:1 22690:2 22693:1 22699:2 22727:1 22740:4 22749:2 22750:2 22755:2 22759:1 22760:4 22762:1 22769:1 22779:1 22784:1 22786:2 22798:1 22801:2 22804:1 22812:1 22815:2 22817:1 22820:1 22822:1 22823:1 22825:1 22831:1 22837:1 22846:1 22854:1 22869:2 22874:1 22894:2 22895:1 22897:1 22912:1 22914:1 22916:3 22917:1 22925:1 22939:1 22942:1 22951:1 22957:1 22990:1 22991:1 23004:1 23005:1 23006:2 23007:1 23022:4 23039:1 23048:1 23050:2 23066:3 23074:2 23088:1 23089:6 23109:2 23113:1 23138:1 23151:1 23206:2 23225:1 23233:1 23248:3 23255:1 23284:1 23305:3 23311:1 23314:2 23324:1 23325:1 23333:1 23339:1 23341:1 23360:4 23363:2 23385:1 23404:1 23405:1 23415:1 23417:1 23430:20 23431:1 23432:1 23446:1 23449:1 23459:1 23466:13 23469:1 23472:1 23474:1 23476:2 23481:1 23490:1 23518:2 23527:1 23541:1 23546:1 23551:3 23558:3 23586:10 23587:1 23610:2 23623:1 23639:1 23645:2 23647:2 23653:1 23655:1 23657:1 23694:1 23698:1 23719:1 23739:1 23740:1 23751:1 23754:1 23758:1 23784:1 23796:4 23797:4 23840:1 23845:1 23847:1 23849:1 23852:1 23853:2 23858:2 23859:1 23862:1 23868:1 23939:1 23951:1 23956:4 23961:1 23964:1 23966:1 23967:1 23970:1 23971:10 23977:1 23985:1 23987:1 23990:1 24000:1 24005:1 24006:3 24007:1 24012:1 24028:1 24042:1 24049:2 24057:1 24101:1 24105:1 24108:1 24117:1 24126:1 24139:1 24145:1 24153:1 24162:3 24170:2 24179:1 24196:1 24223:1 24225:1 24253:1 24261:2 24293:1 24301:1 24302:1 24306:1 24307:4 24315:1 24317:1 24320:1 24324:1 24341:1 24347:2 24353:1 24362:1 24370:2 24376:1 24379:2 24384:1 24392:1 24393:1 24401:5 24409:1 24410:1 24411:2 24418:1 24421:1 24438:1 24440:1 24449:1 24455:1 24463:1 24466:1 24469:3 24470:2 24473:2 24476:4 24477:1 24479:1 24480:2 24483:2 24487:1 24491:1 24504:1 24523:1 24525:3 24530:1 24535:1 24536:1 24552:1 24563:1
20 13:1 25:1 29:1 30:1 32:1 34:2 37:1 39:1 45:1 53:1 61:1 72:1 76:1 85:7 88:1 96:1 105:1 112:1 113:1 150:1 162:1 164:1 172:1 175:1 186:1 201:1 216:3 218:2 237:1 239:1 240:3 241:1 252:1 254:2 256:1 276:1 290:1 296:2 298:1 314:1 317:1 339:2 341:2 348:1 377:1 392:1 407:3 441:1 469:1 489:1 492:1 509:1 510:3 516:1 527:2 541:2 545:1 565:2 566:1 568:3 601:1 640:1 694:1 696:1 713:1 720:1 748:1 752:2 754:2 758:1 759:1 762:3 766:1 778:1 779:2 784:1 785:4 788:1 795:1 802:1 805:1 814:3 825:1 828:1 830:1 831:3 833:1 834:5 835:1 838:5 846:1 857:1 862:1 869:5 881:1 888:3 889:3 892:2 899:1 906:1 912:1 937:1 946:1 948:2 952:2 960:1 967:1 989:1 994:1 995:1 1005:1 1009:5 1015:4 1043:1 1044:2 1047:1 1053:1 1064:1 1065:1 1074:1 1078:1 1080:1 1094:1 1095:1 1108:1 1110:1 1112:1 1114:1 1131:1 1137:1 1142:1 1158:1 1172:1 1208:1 1212:1 1220:3 1230:2 1236:1 1241:1 1242:1 1257:1 1258:1 1259:4 1267:3 1274:6 1293:1 1296:1 1297:1 1301:2 1311:3 1321:1 1328:14 1330:2 1332:7 1340:4 1343:1 1345:1 1352:3 1353:2 1360:2 1372:1 1376:1 1381:9 1385:1 1395:1 1396:1 1407:1 1418:1 1420:1 1429:1 1435:1 1436:1 1439:1 1460:2 1476:1 1484:1 1506:1 1507:5 1510:2 1517:2 1526:1 1535:1 1546:1 1552:2 1564:1 1568:1 1591:1 1612:2 1617:3 1619:2 1629:1 1639:2 1641:1 1644:1 1661:1 1663:1 1666:1 1670:1 1700:1 1703:2 1719:1 1731:4 1745:1 1763:1 1766:4 1771:1 1774:1 1775:1 1782:1 1789:1 1815:1 1826:6 1828:1 1838:1 1846:1 1853:2 1854:2 1856:1 1875:2 1877:8 1879:8 1882:1 1883:1 1889:1 1891:4 1892:3 1894:3 1895:2 1898:1 1904:1 1908:1 1909:2 1910:1 1912:4 1930:2 1938:1 1939:2 1941:1 1942:2 1943:1 1945:4 1947:1 1948:2 1949:1 1952:1 1954:2 1959:1 1960:3 1961:2 1963:3 1965:3 1968:4 1970:2 1973:2 1976:2 1978:1 1981:2 1992:1 1994:1 1999:1 2000:1 2015:1 2024:1 2034:1 2038:1 2045:1 2047:1 2055:1 2074:1 2076:1 2077:1 2102:1 2110:1 2115:1 2140:1 2157:1 2164:1 2167:1 2169:1 2173:1 2188:1 2210:1 2218:1 2222:1 2241:1 2253:1 2254:1 2263:1 2267:3 2272:1 2273:1 2282:1 2287:1 2303:1 2304:1 2308:1 2317:1 2319:2 2321:1 2325:2 2328:1 2329:1 2333:4 2342:1 2353:1 2359:1 2365:1 2374:1 2376:1 2380:1 2383:1 2390:1 2393:1 2405:1 2409:3 2416:1 2423:1 2434:1 2451:6 2457:1 2461:2 2462:11 2464:2 2478:1 2480:2 2481:3 2491:1 2496:1 2500:1 2507:12 2535:1 2565:2 2589:1 2590:1 2597:2 2606:1 2611:1 2636:1 2645:4 2649:1 2678:1 2685:1 2689:1 2694:1 2700:1 2718:1 2745:1 2753:1 2754:1 2764:4 2770:1 2779:4 2780:1 2802:3 2807:1 2817:1 2826:3 2831:1 2839:1 2842:1 2843:1 2849:1 2852:1 2853:1 2876:1 2898:1 2941:1 2948:1 2950:1 2954:1 2981:1 2993:2 2999:1 3002:2 3031:1 3047:1 3048:2 3049:7 3059:2 3063:3 3068:1 3076:2 3089:1 3090:1 3093:1 3095:1 3103:6 3118:1 3129:1 3131:1 3135:1 3136:1 3139:1 3147:4 3173:2 3183:2 3184:4 3208:1 3221:6 3222:1 3226:1 3234:1 3237:7 3278:1 3288:2 3301:1 3306:1 3312:6 3323:1 3326:2 3328:2 3351:1 3354:2 3355:1 3358:1 3367:1 3369:2 3375:1 3377:1 3391:1 3399:2 3404:1 3407:3 3408:1 3416:1 3428:1 3442:1 3450:1 3467:1 3477:1 3481:2 3495:1 3503:1 3513:1 3514:1 3519:1 3522:1 3537:1 3547:1 3572:1 3596:1 3598:1 3620:1 3622:1 3627:1 3628:1 3653:1 3655:1 3660:2 3661:1 3666:1 3678:1 3681:1 3690:1 3710:2 3729:1 3736:1 3737:1 3740:1 3745:1 3770:1 3773:1 3777:1 3801:1 3803:2 3831:1 3832:1 3837:1 3840:2 3845:1 3856:2 3868:2 3878:1 3889:1 3902:2 3904:1 3908:1 3911:1 3928:4 3937:1 3938:3 3939:1 3961:1 3991:1 3992:1 4003:1 4017:1 4019:1 4046:1 4047:1 4073:1 4082:1 4084:1 4091:1 4099:1 4107:20 4108:1 4116:1 4136:1 4143:1 4159:1 4160:1 4192:3 4197:1 4198:7 4211:3 4212:2 4214:1 4216:1 4218:1 4222:1 4223:1 4228:1 4229:3 4230:2 4231:4 4234:3 4237:1 4238:1 4248:2 4275:1 4301:1 4302:1 4319:1 4323:1 4351:1 4364:4 4368:1 4384:1 4391:1 4394:1 4403:1 4409:3 4412:1 4417:1 4420:1 4425:1 4436:1 4450:2 4464:1 4470:1 4498:3 4506:1 4529:3 4533:1 4539:1 4546:4 4561:1 4581:1 4587:2 4599:1 4603:1 4620:1 4621:2 4625:1 4628:1 4633:2 4644:1 4650:1 4654:1 4658:1 4662:2 4667:1 4673:1 4675:1 4681:2 4689:3 4703:3 4729:1 4741:1 4757:2 4767:1 4768:2 4771:1 4773:1 4787:3 4794:1 4818:1 4821:1 4823:1 4826:1 4831:1 4836:2 4854:1 4857:1 4861:1 4872:1 4876:2 4926:4 4927:3 4935:1 4950:2 4953:2 4958:1 4959:2 4986:1 4994:1 5016:1 5025:1 5037:1 5049:6 5054:1 5075:1 5089:1 5090:2 5096:1 5100:2 5103:1 5112:1 5120:1 5127:1 5130:1 5142:1 5146:2 5187:3 5189:1 5192:3 5205:1 5215:1 5217:1 5225:1 5236:1 5247:4 5248:1 5260:1 5263:1 5264:1 5276:1 5282:2 5289:1 5308:3 5310:2 5314:1 5322:3 5324:1 5325:1 5332:3 5333:2 5335:1 5337:1 5338:1 5340:4 5342:3 5347:2 5349:5 5350:2 5352:4 5369:1 5393:1 5396:1 5398:1 5409:1 5426:4 5437:4 5451:2 5488:1 5489:1 5501:1 5520:1 5534:1 5535:2 5592:2 5600:1 5604:1 5609:1 5615:2 5616:3 5625:1 5627:1 5629:2 5630:1 5634:1 5649:1 5655:1 5656:1 5663:1 5665:1 5668:1 5672:2 5674:4 5686:2 5688:1 5689:1 5693:1 5702:1 5703:1 5709:1 5717:1 5723:1 5726:3 5735:1 5737:1 5739:1 5774:1 5783:3 5785:1 5797:1 5807:3 5808:1 5813:1 5818:1 5819:2 5823:1 5837:1 5874:1 5878:2 5890:1 5914:1 5917:1 5930:1 5947:9 5948:1 5959:1 5968:2 5970:2 5998:2 6021:2 6035:1 6039:1 6040:1 6041:1 6052:2 6057:1 6071:1 6084:1 6096:1 6116:1 6124:1 6126:1 6130:1 6147:1 6155:3 6175:4 6183:4 6192:1 6194:2 6200:1 6201:2 6209:1 6223:1 6226:1 6231:1 6232:1 6237:2 6241:1 6246:1 6248:1 6255:1 6260:1 6261:1 6269:1 6276:1 6285:2 6286:1 6288:1 6289:1 6301:1 6305:1 6324:1 6332:2 6354:1 6359:5 6364:1 6365:11 6375:1 6382:2 6384:1 6386:5 6387:1 6410:1 6416:1 6429:37 6436:1 6438:1 6445:1 6449:8 6451:13 6453:1 6460:1 6486:1 6497:2 6499:1 6501:1 6508:1 6545:1 6549:1 6551:1 6560:1 6599:1 6607:1 6614:1 6616:4 6619:1 6627:1 6655:1 6661:2 6669:3 6677:3 6680:1 6700:1 6704:1 6706:1 6743:1 6759:1 6760:1 6771:1 6781:1 6785:1 6789:2 6797:1 6802:1 6806:1 6810:9 6816:2 6818:1 6821:1 6824:1 6825:1 6841:1 6854:1 6859:28 6882:1 6906:1 6908:1 6918:1 6926:1 6968:1 6981:1 7017:1 7020:1 7030:1 7038:5 7054:2 7056:1 7068:4 7077:1 7078:1 7084:1 7086:3 7110:1 7115:1 7121:1 7125:1 7135:1 7156:1 7157:2 7164:1 7166:3 7169:2 7170:4 7172:1 7173:1 7174:1 7177:2 7182:5 7192:1 7193:1 7194:2 7222:1 7246:2 7257:2 7262:2 7263:1 7264:1 7280:1 7303:3 7305:1 7325:1 7331:1 7358:1 7364:1 7371:2 7384:1 7385:1 7400:2 7409:2 7423:2 7425:1 7432:3 7434:1 7437:1 7443:1 7451:1 7457:2 7459:1 7460:1 7461:4 7487:1 7488:1 7505:1 7519:1 7521:1 7526:1 7535:2 7539:1 7541:2 7571:1 7573:2 7581:6 7590:4 7594:1 7596:1 7604:3 7613:1 7615:1 7628:1 7638:2 7644:1 7649:1 7656:1 7665:1 7672:4 7678:1 7686:1 7712:1 7731:1 7753:1 7777:1 7780:1 7787:3 7790:1 7798:1 7803:2 7804:1 7805:1 7810:1 7821:1 7865:1 7868:1 7878:1 7896:1 7912:3 7920:1 7922:1 7927:1 7930:4 7932:1 7943:1 7944:1 7950:1 7964:4 7975:1 7980:1 7988:3 8013:1 8026:1 8036:1 8048:1 8049:4 8061:1 8064:3 8067:1 8070:6 8071:1 8080:3 8099:1 8107:1 8118:2 8121:1 8138:2 8139:1 8143:2 8162:12 8166:1 8174:1 8177:1 8179:1 8183:1 8189:1 8195:1 8196:1 8200:2 8205:1 8212:1 8215:1 8222:2 8226:1 8285:2 8293:1 8296:3 8297:1 8304:2 8317:1 8328:1 8348:2 8352:2 8363:2 8379:1 8382:2 8387:2 8392:1 8427:1 8437:2 8443:1 8444:2 8448:1 8480:1 8484:1 8508:2 8517:2 8531:1 8532:2 8536:1 8566:1 8570:1 8574:1 8575:1 8581:2 8597:1 8607:1 8617:3 8632:1 8663:1 8679:4 8682:7 8684:1 8686:1 8700:1 8705:1 8719:1 8736:2 8746:1 8753:1 8755:2 8759:3 8760:1 8769:1 8778:3 8783:1 8785:1 8789:2 8801:2 8802:3 8807:1 8809:2 8814:4 8815:1 8817:1 8818:1 8822:1 8824:1 8828:1 8829:1 8832:1 8833:2 8840:1 8841:1 8843:1 8856:3 8857:2 8867:1 8881:1 8891:3 8897:1 8903:1 8905:1 8907:3 8910:2 8914:4 8916:9 8921:1 8949:1 8953:1 8960:2 8975:1 8977:1 8981:1 8988:1 8989:4 8997:1 9000:1 9001:3 9070:1 9080:1 9086:1 9090:1 9101:4 9102:2 9106:1 9108:1 9145:3 9162:2 9167:1 9173:4 9185:1 9187:1 9192:1 9193:1 9198:3 9200:1 9202:1 9205:1 9214:1 9215:1 9222:1 9225:1 9252:6 9260:2 9282:1 9289:1 9313:1 9317:1 9321:1 9335:1 9338:1 9346:1 9359:3 9363:2 9388:1 9389:1 9399:1 9411:1 9413:1 9416:1 9424:2 9433:1 9440:2 9442:2 9459:1 9472:1 9486:2 9488:8 9495:1 9501:1 9523:1 9525:1 9536:2 9542:1 9543:2 9545:1 9547:3 9548:1 9559:1 9561:1 9563:3 9586:1 9587:1 9599:1 9610:1 9621:1 9624:2 9639:1 9653:7 9656:3 9659:1 9668:1 9682:2 9687:1 9690:1 9691:1 9695:2 9696:1 9698:1 9699:1 9703:1 9705:1 9707:1 9710:2 9711:1 9716:1 9717:1 9719:1 9723:2 9727:1 9730:1 9738:1 9743:1 9745:1 9760:1 9762:1 9763:5 9772:3 9778:8 9808:1 9810:1 9814:1 9815:1 9822:1 9823:11 9852:1 9880:1 9881:1 9899:1 9904:1 9911:1 9918:2 9923:4 9924:1 9932:1 9936:1 9949:1 9967:1 9968:1 9974:3 9989:1 9999:1 10001:1 10018:1 10022:3 10037:2 10046:1 10053:4 10054:4 10060:1 10061:1 10067:1 10070:2 10074:4 10079:1 10089:1 10094:1 10095:1 10105:1 10118:1 10130:1 10144:1 10145:1 10146:1 10151:2 10163:3 10169:3 10179:1 10183:1 10200:1 10208:1 10217:1 10225:1 10231:1 10233:1 10265:1 10281:3 10290:1 10304:1 10324:1 10337:1 10341:1 10360:1 10363:1 10364:2 10391:1 10413:2 10416:1 10430:1 10477:1 10480:10 10483:2 10487:2 10494:2 10502:1 10505:1 10513:1 10524:1 10531:1 10548:1 10550:11 10556:1 10571:1 10576:2 10598:2 10621:2 10637:1 10652:1 10675:1 10687:1 10695:1 10724:1 10725:1 10733:1 10739:4 10740:1 10753:1 10754:1 10755:2 10787:1 10804:1 10818:2 10836:4 10844:1 10846:1 10847:5 10851:3 10861:3 10870:1 10871:8 10872:1 10874:1 10897:1 10901:1 10921:1 10923:3 10942:3 10943:3 10952:1 10962:2 10969:1 10970:8 10974:2 10982:1 10985:14 10987:1 10993:1 11001:1 11013:1 11016:1 11022:1 11046:4 11065:1 11087:2 11093:1 11101:2 11108:1 11118:2 11123:1 11143:1 11150:1 11156:1 11159:2 11163:2 11168:1 11187:1 11191:2 11199:1 11220:1 11224:1 11273:1 11275:1 11277:1 11280:5 11281:1 11283:1 11284:1 11287:1 11289:2 11297:1 11301:3 11311:1 11317:1 11322:1 11329:1 11332:1 11340:1 11342:1 11368:11 11375:1 11376:2 11392:1 11406:1 11407:2 11408:2 11415:1 11419:1 11432:2 11439:1 11447:2 11449:1 11450:1 11451:3 11459:1 11509:5 11512:2 11531:3 11554:1 11555:1 11563:2 11564:2 11607:1 11612:1 11613:1 11614:2 11638:2 11657:1 11664:1 11665:1 11689:1 11697:2 11699:1 11700:1 11704:1 11710:1 11712:1 11717:2 11718:1 11744:1 11747:1 11777:1 11788:3 11806:1 11808:1 11812:2 11813:2 11816:1 11818:3 11825:1 11826:1 11830:1 11833:1 11841:1 11848:1 11855:1 11856:1 11858:1 11861:2 11881:1 11900:1 11902:4 11910:1 11927:4 11942:1 11958:1 11979:1 11985:1 11987:1 11990:3 11997:1 12006:5 12016:2 12020:1 12025:1 12035:1 12036:1 12045:1 12050:2 12054:1 12060:1 12069:1 12089:1 12091:1 12099:1 12100:1 12105:1 12114:1 12115:1 12123:1 12141:1 12144:1 12151:1 12157:3 12173:1 12175:1 12176:1 12208:1 12218:1 12229:1 12251:1 12263:3 12269:1 12276:4 12287:1 12303:3 12337:1 12341:1 12346:1 12366:1 12368:1 12372:1 12383:4 12387:1 12389:1 12408:1 12432:1 12436:2 12437:2 12472:1 12473:1 12474:1 12482:1 12490:1 12525:1 12550:3 12559:1 12576:1 12582:3 12583:2 12584:1 12586:1 12602:1 12606:1 12630:1 12633:1 12635:1 12652:1 12667:1 12689:1 12706:1 12716:1 12723:1 12732:1 12739:1 12741:38 12766:2 12770:1 12778:1 12800:1 12816:1 12822:2 12828:1 12840:1 12859:1 12863:1 12872:2 12877:1 12897:1 12909:1 12911:1 12920:1 12929:1 12948:1 12950:4 12956:1 12958:2 12959:1 12961:2 12969:1 12975:1 12981:2 12983:1 12984:1 12986:1 12988:6 12989:1 12995:2 12997:1 13000:1 13007:1 13012:1 13030:4 13031:1 13033:1 13069:1 13070:1 13071:1 13082:1 13094:5 13095:5 13100:1 13113:1 13121:1 13140:1 13173:1 13202:1 13207:3 13221:1 13225:1 13246:2 13251:1 13259:1 13270:1 13292:2 13295:3 13298:1 13300:1 13305:1 13322:1 13326:1 13328:6 13339:1 13352:1 13363:1 13371:1 13373:1 13378:1 13379:1 13382:1 13383:4 13390:1 13405:1 13409:1 13410:2 13416:1 13418:1 13424:1 13425:2 13430:1 13431:2 13434:3 13435:2 13437:2 13442:2 13444:3 13445:1 13448:1 13449:1 13453:4 13455:1 13456:1 13459:5 13462:1 13469:1 13482:3 13495:1 13501:1 13525:2 13545:1 13554:1 13562:1 13570:1 13622:1 13637:1 13641:1 13670:1 13675:1 13703:2 13709:1 13719:1 13739:1 13743:1 13746:1 13752:2 13758:3 13765:2 13766:1 13767:1 13775:1 13780:1 13806:1 13812:2 13818:2 13819:2 13826:1 13835:2 13837:6 13843:2 13846:1 13867:1 13868:1 13876:2 13893:1 13895:1 13906:2 13907:1 13924:2 13925:3 13928:9 13931:2 13936:1 13965:2 13966:1 13970:2 13972:2 13977:2 13979:3 13994:2 14000:1 14003:2 14008:1 14031:2 14035:2 14039:2 14046:1 14052:2 14062:1 14071:1 14074:1 14077:1 14094:1 14097:1 14100:1 14101:2 14108:1 14114:1 14118:2 14122:1 14124:1 14125:2 14127:1 14131:1 14142:1 14154:1 14156:1 14178:2 14189:1 14193:1 14200:1 14201:1 14207:3 14210:1 14223:1 14240:2 14245:1 14246:1 14253:1 14254:1 14262:1 14275:2 14307:1 14311:1 14325:1 14330:1 14332:1 14344:1 14349:1 14368:1 14371:1 14372:1 14380:1 14393:1 14398:1 14403:4 14419:1 14443:1 14446:1 14449:2 14452:1 14462:1 14465:2 14468:1 14491:1 14516:2 14518:2 14534:1 14539:2 14544:2 14550:1 14553:1 14570:1 14574:2 14575:1 14577:1 14585:1 14591:2 14593:1 14596:2 14627:1 14637:1 14640:2 14645:1 14665:1 14677:6 14696:1 14713:1 14714:1 14719:3 14721:1 14740:2 14744:3 14761:1 14762:3 14764:1 14768:3 14774:1 14775:2 14781:1 14783:1 14785:1 14802:3 14803:2 14806:1 14820:1 14825:2 14830:1 14833:2 14837:2 14844:6 14853:3 14856:3 14864:1 14877:1 14880:1 14885:1 14887:1 14889:1 14903:8 14929:2 14931:2 14941:1 14963:1 14975:1 14976:1 14981:2 15001:1 15024:1 15035:1 15038:1 15056:1 15067:1 15070:1 15080:1 15088:1 15089:1 15112:1 15116:1 15127:1 15129:1 15139:1 15142:1 15147:3 15164:1 15179:1 15184:1 15191:1 15205:2 15215:2 15227:1 15236:1 15251:1 15282:3 15283:1 15307:9 15312:2 15315:1 15328:1 15361:1 15367:1 15370:1 15371:1 15374:1 15389:1 15396:1 15446:1 15477:1 15480:2521 15482:3 15496:3 15503:1 15514:1 15525:1 15532:1 15543:1 15552:1 15564:1 15574:1 15575:1 15577:1 15583:2 15587:1 15602:1 15611:1 15623:1 15633:1 15635:1 15646:5 15655:2 15658:3 15661:1 15662:3 15663:1 15672:2 15680:1 15684:1 15708:1 15723:4 15725:2 15742:1 15743:1 15762:1 15773:1 15775:1 15790:1 15800:2 15807:1 15824:1 15834:4 15883:1 15887:3 15898:1 15929:2 15936:1 15944:1 15949:2 15990:1 16000:2 16002:1 16009:1 16019:1 16037:1 16042:3 16046:1 16054:4 16074:5 16095:2 16102:3 16110:1 16117:1 16121:1 16129:1 16151:1 16152:5 16159:1 16170:1 16171:3 16176:1 16177:1 16206:8 16212:1 16219:1 16235:1 16239:1 16251:1 16268:1 16271:1 16307:1 16308:1 16331:1 16332:2 16341:1 16361:1 16362:1 16380:1 16387:2 16402:1 16408:1 16414:1 16416:2 16426:1 16432:3 16434:3 16443:4 16449:1 16461:1 16462:1 16479:2 16482:1 16485:3 16495:1 16500:1 16514:1 16522:2 16538:1 16541:1 16548:1 16573:1 16593:1 16596:1 16611:1 16618:2 16630:1 16650:1 16654:1 16658:1 16661:1 16669:17 16676:3 16679:1 16681:2 16691:1 16706:1 16712:1 16717:1 16718:1 16724:1 16727:1 16729:1 16731:1 16733:1 16735:2 16748:1 16750:2 16753:5 16763:2 16764:1 16768:2 16781:1 16782:1 16787:2 16795:2 16797:1 16800:1 16811:1 16815:8 16823:3 16826:1 16832:1 16844:1 16855:1 16856:1 16861:3 16867:1 16873:1 16883:1 16895:1 16908:1 16916:1 16945:1 16947:1 16965:3 16969:1 16981:1 17001:3 17007:1 17014:2 17017:1 17027:1 17043:1 17046:6 17050:5 17056:1 17058:2 17059:1 17090:1 17101:1 17109:3 17117:1 17130:1 17136:1 17138:2 17144:1 17163:1 17168:1 17171:1 17174:1 17188:4 17197:1 17206:1 17210:1 17219:1 17221:1 17223:2 17234:1 17238:1 17248:1 17255:1 17261:1 17275:1 17282:1 17291:1 17305:1 17311:5 17329:1 17352:1 17358:2 17362:3 17380:1 17400:1 17416:1 17424:1 17429:3 17437:4 17443:1 17452:1 17485:11 17491:2 17496:2 17501:1 17510:4 17520:1 17532:1 17535:1 17542:1 17550:1 17553:1 17558:1 17562:1 17564:1 17570:1 17571:1 17590:1 17601:1 17604:2 17610:2 17619:1 17631:1 17648:1 17649:1 17685:1 17687:1 17706:5 17721:1 17724:3 17735:3 17738:3 17739:2 17745:1 17747:2 17750:1 17774:1 17806:1 17807:1 17812:1 17813:1 17819:1 17827:1 17833:1 17834:2 17835:6 17837:1 17838:1 17839:1 17851:1 17852:1 17857:1 17867:1 17879:1 17884:1 17893:1 17908:1 17916:3 17921:1 17929:1 17943:1 17958:1 17965:2 17980:2 17993:2 17995:2 17996:3 18035:1 18037:1 18043:2 18053:3 18066:1 18068:1 18087:1 18088:3 18090:1 18091:1 18092:1 18093:2 18127:1 18130:1 18131:1 18166:1 18176:1 18177:2 18186:1 18196:4 18197:3 18199:3 18204:1 18207:1 18210:2 18228:1 18231:3 18234:2 18237:1 18244:2 18248:1 18249:2 18261:1 18264:1 18285:1 18296:1 18306:1 18318:2 18339:1 18341:3 18347:1 18360:3 18366:2 18378:3 18392:1 18406:1 18421:2 18425:1 18434:2 18459:1 18474:1 18479:1 18481:1 18491:2 18498:2 18505:1 18506:6 18509:1 18511:1 18532:1 18537:1 18542:1 18558:1 18565:1 18567:3 18573:2 18575:2 18577:1 18578:1 18580:2 18581:1 18616:1 18619:1 18622:1 18631:1 18639:1 18641:1 18643:1 18644:1 18658:1 18664:2 18666:1 18676:2 18686:1 18693:2 18702:2 18703:1 18704:1 18715:1 18727:3 18729:1 18732:4 18739:3 18742:1 18758:1 18769:1 18776:1 18784:1 18803:2 18807:1 18820:2 18842:1 18843:1 18854:1 18856:1 18865:1 18867:1 18874:3 18877:1 18893:1 18894:1 18900:1 18917:1 18925:1 18930:2 18932:1 18939:1 18941:2 18943:2 18946:1 18948:1 18949:1 18961:1 18965:1 18975:3 18976:3 18978:1 18985:2 18990:3 19003:1 19007:1 19029:2 19033:1 19036:2 19053:1 19056:1 19064:1 19070:1 19080:1 19096:3 19101:1 19123:1 19134:5 19145:1 19156:3 19187:2 19193:1 19201:1 19210:1 19212:1 19213:1 19218:1 19225:2 19227:1 19229:1 19233:1 19237:1 19249:1 19278:1 19289:1 19325:1 19336:1 19349:2 19351:1 19360:3 19365:4 19369:1 19371:1 19376:2 19388:1 19405:1 19406:1 19417:1 19425:3 19427:1 19431:1 19435:3 19438:3 19443:1 19444:1 19446:1 19470:1 19474:1 19480:1 19486:1 19493:1 19494:2 19502:1 19507:1 19508:1 19510:2 19523:1 19525:1 19532:1 19540:1 19544:1 19550:2 19559:6 19562:1 19565:3 19573:1 19580:1 19582:1 19584:1 19587:1 19602:1 19611:1 19615:3 19637:1 19638:2 19644:2 19666:1 19716:2 19718:1 19730:1 19744:3 19746:1 19748:1 19789:1 19810:3 19823:1 19832:3 19870:1 19901:2 19902:8 19960:1 19974:3 20000:2 20003:1 20004:1 20007:1 20013:1 20022:1 20031:1 20032:1 20040:2 20051:1 20055:1 20063:1 20068:3 20076:1 20083:2 20084:7 20087:1 20089:1 20102:1 20107:1 20109:1 20111:3 20122:1 20126:2 20139:1 20152:1 20155:1 20173:1 20196:1 20204:1 20214:1 20215:1 20252:1 20266:1 20268:1 20270:1 20273:1 20274:3 20275:1 20276:1 20281:2 20287:1 20305:1 20316:1 20318:2 20327:3 20331:1 20332:3 20334:1 20337:5 20343:2 20344:1 20360:1 20366:4 20378:5 20379:1 20393:1 20411:2 20412:1 20413:1 20432:1 20441:1 20442:1 20446:1 20447:1 20448:1 20460:1 20469:2 20473:1 20480:2 20485:1 20490:2 20493:1 20496:1 20508:1 20512:2 20545:1 20547:1 20563:1 20567:1 20595:1 20599:2 20605:1 20622:1 20630:1 20635:1 20638:1 20649:1 20651:2 20659:1 20663:1 20670:3 20674:1 20686:6 20717:1 20718:1 20722:1 20723:1 20734:1 20738:1 20742:6 20750:1 20751:1 20753:1 20755:1 20762:1 20769:2 20785:2 20786:1 20847:1 20878:1 20909:1 20928:3 20930:7 20931:1 20949:4 20955:3 20958:1 20962:2 20964:1 20965:1 20970:2 20989:1 20993:1 21007:1 21023:1 21033:1 21079:1 21099:1 21100:1 21104:1 21111:1 21112:1 21113:1 21121:1 21134:1 21136:1 21137:1 21139:2 21154:1 21159:2 21169:1 21185:1 21189:1 21190:1 21204:1 21205:1 21208:3 21209:1 21215:1 21245:1 21247:1 21267:1 21279:1 21313:1 21319:1 21337:1 21344:1 21350:1 21361:5 21363:1 21364:7 21371:1 21413:2 21438:1 21441:2 21455:1 21480:5 21486:1 21503:1 21512:1 21520:1 21522:1 21545:1 21548:1 21551:1 21556:1 21557:1 21559:1 21561:2 21576:1 21581:1 21586:1 21587:1 21594:1 21602:1 21612:3 21628:1 21630:1 21632:1 21637:3 21638:1 21641:1 21642:2 21663:1 21665:1 21671:1 21693:1 21695:1 21697:4 21703:1 21707:1 21716:1 21738:1 21740:2 21748:1 21760:8 21761:1 21773:3 21787:1 21812:1 21816:1 21831:4 21841:1 21844:2 21857:1 21863:1 21869:2 21872:1 21887:1 21905:1 21914:1 21923:1 21926:2 21934:1 21952:1 21974:3 21977:2 21984:1 21996:1 21998:1 22001:1 22006:1 22008:1 22010:2 22013:3 22014:1 22027:2 22043:1 22048:2 22058:1 22062:1 22065:1 22068:2 22080:4 22092:1 22094:1 22108:2 22114:2 22124:1 22138:1 22145:1 22152:1 22173:1 22186:1 22193:1 22195:1 22208:1 22235:1 22242:1 22247:2 22301:1 22304:1 22306:1 22322:1 22331:1 22379:1 22386:1 22390:1 22394:1 22419:1 22423:1 22425:1 22429:1 22434:1 22462:1 22484:1 22509:1 22511:1 22515:1 22522:2 22527:1 22528:3 22540:1 22547:1 22548:2 22550:1 22553:1 22562:2 22571:1 22572:1 22585:3 22591:1 22593:2 22601:1 22602:1 22611:4 22616:1 22624:1 22657:1 22666:1 22669:6 22672:2 22674:1 22690:2 22693:1 22699:2 22727:1 22740:4 22749:2 22750:2 22755:2 22759:1 22760:4 22762:1 22769:1 22779:1 22784:1 22786:2 22798:1 22801:2 22804:1 22812:1 22815:2 22817:1 22820:1 22822:1 22823:1 22825:1 22831:1 22837:1 22846:1 22854:1 22869:2 22874:1 22894:2 22895:1 22897:1 22912:1 22914:1 22916:3 22917:1 22925:1 22939:1 22942:1 22951:1 22957:1 22990:1 22991:1 23004:1 23005:1 23006:2 23007:1 23022:4 23039:1 23048:1 23050:2 23066:3 23074:2 23088:1 23089:6 23109:2 23113:1 23138:1 23151:1 23206:3 23225:1 23233:1 23248:3 23255:1 23284:1 23305:3 23311:1 23314:2 23324:1 23325:1 23333:1 23339:1 23341:1 23360:5 23363:2 23385:1 23404:1 23405:1 23415:1 23417:1 23430:20 23431:1 23432:1 23446:1 23449:1 23459:1 23466:13 23469:1 23472:1 23474:1 23476:2 23481:1 23484:1 23490:1 23518:2 23527:1 23541:1 23546:1 23551:3 23558:3 23586:10 23587:1 23610:2 23623:1 23639:1 23645:2 23647:2 23653:1 23655:2 23657:1 23694:1 23698:1 23719:1 23739:1 23740:1 23751:1 23754:1 23758:1 23784:1 23796:4 23797:4 23840:1 23845:1 23847:1 23849:1 23852:1 23853:2 23858:2 23859:1 23862:1 23868:1 23939:1 23951:2 23956:4 23961:1 23964:1 23966:1 23967:1 23970:1 23971:10 23977:1 23985:1 23987:1 23990:1 24000:1 24005:1 24006:3 24007:1 24012:1 24028:1 24042:1 24049:2 24057:1 24101:1 24105:1 24108:1 24117:1 24126:1 24139:1 24145:1 24153:1 24162:3 24170:2 24179:1 24196:1 24223:1 24225:1 24253:1 24261:2 24280:1 24293:1 24301:1 24302:1 24306:1 24307:5 24315:1 24317:1 24320:1 24324:1 24341:1 24347:3 24353:1 24362:1 24370:2 24376:1 24379:2 24384:1 24392:1 24393:1 24401:5 24409:1 24410:1 24411:2 24418:1 24421:1 24438:1 24440:1 24449:1 24455:1 24463:1 24466:1 24469:3 24470:2 24473:2 24476:5 24477:1 24479:1 24480:2 24483:2 24487:1 24491:1 24504:1 24523:1 24525:3 24530:1 24535:1 24536:1 24552:1 24563:1
|
43716463c6dab21cdeb16c3ea3f2fbed1efc747f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3785/CH5/EX5.8/Ex5_8.sce | 4ffb4feabfa1760818c7d1df36b37459bbcb2c03 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 738 | sce | Ex5_8.sce | // Example 5_8
clc;funcprot(0);
// Given data
V_f=200;// The speed of flying air plane in km/h
rho=1.2;// The density of air in kg/m^3
F=3*10^3;// The propulsive force in N
D_p=2;// The diameter of the propeller in m
// Calculation
// (a)
V_f=(V_f*10^3)/3600;// The speed of flying air plane in m/s
A_p=(%pi*D_p^2)/4;// Area of propeller in m^2
V_w=sqrt((V_f^2)+((2*F)/(rho*A_p)));// The wake speed in m/s
printf("\nThe wake speed,V_w=%2.2f m/s",V_w);
// (b)
n_prop=(2*V_f)/(V_w+V_f)*100;// The propulsive efficiency in %
printf("\nThe propulsive efficiency is %2.2f percentage",n_prop);
// (c)
P_p=(F*(V_w+V_f))/(2*10^3);// The engine powerin kW
printf("\nThe engine power for this air craft is %3.1f kW",P_p);
|
22b8714430c5ee3a55815feaea2be9df34973105 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set5/s_Digital_Signal_Processing_R._Babu_52.zip/Digital_Signal_Processing_R._Babu_52/CH5/EX5.7/Example5_7.sce | 28160134dd42150ae520a3815df52323a0a88f99 | [] | 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 | 323 | sce | Example5_7.sce | errcatch(-1,"stop");mode(2);//Example 5.7
//To Design an analog Chebyshev Filter with Given Specifications
;
;
;
os=2;
op=1;
ap=3;//db
as=16;//db
e1=1/sqrt(2);
l1=0.1;
epsilon=sqrt(1/(e1^2)-1);
lambda=sqrt(1/(l1^2)-1);
N=acosh(lambda/epsilon)/acosh(os/op);
disp(ceil(N),'Order of the filter, N =');
exit();
|
81c8ded98ecaad7c1d167dd941185c3b8ff2c632 | 39c5c468df5e2bde0147a30cf092fc8da3e7ed3e | /UFRGS/calcNumerico/area2/m12/M12 - aprox-derivada_encontre_coeficientes.sce | b4f5757993a5713dc3e3f8f19dbf3d3e6cb116bb | [] | no_license | andredxc/Files | 9dffc9fe5f7e923b83035d794dfa15c930cdb898 | e32309b9ab548b829b04be66c2776cf9c9c6656e | refs/heads/master | 2021-06-03T10:44:01.606242 | 2020-09-21T15:39:48 | 2020-09-21T15:39:48 | 107,410,076 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 752 | sce | M12 - aprox-derivada_encontre_coeficientes.sce | // Os x sao os pontos onde a f(x) e' calculada
// Fx(xn) = [C1Fn-1 + C2Fn+0 + C3Fn+1] / H
// ^ ^ ^ ^
//M12-q7-q8
n = 2; // indice do coeficiente que multiplica o Fn
xc = 0.0 // Numero que multiplica h e soma com xn
x(1) = -1;
x(2) = 0
x(3) = 2;
//x(4) = ...
//M12-q9-q10
//n = 1; // indice do coeficiente que multiplica o Fn
//xc = 0
//x(1) = 0;
//x(2) = x(n)+1/3;
//x(3) = 2;
//x(4) = ...
// Daqui pra baixo nao muda pra esse padrao de aprox de derivada
b(1) = 0;
b(2) = 1;
b(3) = 2*xc;
// b(4)=3*x(n)^2
for i=1:3
M(1,i) = 1;
M(2,i) = x(i);
M(3,i) = x(i)^2;
// M(4,i)=x(i)^3
end
c = inv(M)*b;
S = c(1)^2 + c(2)^2 + c(3)^2; // +c(4)^2
disp(c)
//disp(c(1));
//disp(c(2));
//disp(c(1));
//disp(c(2));
|
96427dab12075bf4ca151610c2a9b68253a83d8f | 725517259e3eea555ad0f79d421792c632bc4655 | /workspace/testBaptiste.sce | 9b2c148ae828acdee13920fa982b5701bac2b4c9 | [] | no_license | Exia-epickiwi/exolife | 58b8a72aa397c5d3df8dc6f61730b3b2b217740e | b1bdb3ec2adb92c0fc8c546c9bd56a654523bd22 | refs/heads/master | 2020-05-25T14:05:45.795829 | 2017-03-20T09:26:15 | 2017-03-20T09:26:15 | 84,937,674 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 401 | sce | testBaptiste.sce | //Load scripts from folder
funcprot(0)
getd("../scripts");
//Global variables
imgPos = "../images/"; //The position of the source images
renderPos = "render/"; //The folder where the render images will be saved
//Load image
imgin = readpbm(imgPos+"Earth.pbm");
//Assign a "seuillage" filter to the image
imgout=seuillage(imgin,100);
//Save new image
writepbm(imgout,renderPos+"testBaptiste.pbm");
|
cbd11c6d7f31cc39e16f4ea5f9b2dd0af8b7ace0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2966/CH3/EX3.19/Ex3_19.sce | 71f96902d76dcd9b5e4371ddf1387e5f8834aabe | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 568 | sce | Ex3_19.sce | //lubricants//
//page 3.38 example 9//
clc
S_C=188//Saponification value of castor oil//
wt_oil=12.3//weight f oil saponified(gms)//
blank=45//volume blank titration reading(ml)//
back=30.2//volume back titration reading(ml)//
volume=blank-back//volume of alcoholic KOH consumed(ml)//
N=0.5//normality of KOH for equivalence//
S_blended=volume*N*56/wt_oil//formula for saponification value//
printf("\nSaponification value of blended oil is %.2f mg/g",S_blended);
pc_C=(S_blended/S_C)*100
printf("\npercentage of castor oil in blend is %.2f percent",pc_C); |
f949955ea8e9631bd7427155ca6f411fc1293158 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3432/CH7/EX7.14/Ex7_14.sce | 1812532d1d5a2f228b25ea7aee2c6c9f33391d71 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,167 | sce | Ex7_14.sce | //Example 7.14
//Analysis of state equations of Tape Drive.
//compute the poles, zeros and transfer function of Tape Drive System.
xdel(winsid())//close all graphics Windows
clear;
clc;
//------------------------------------------------------------------
// State space matrices of Tape Drive System
F=[0 2 0 0 0;
-0.1 -0.35 0.1 0.1 0.75;
0 0 0 2 0;
0.4 0.4 -0.4 -1.4 0;
0 -0.03 0 0 -1];
G=[0 0 0 0 1]';
H2=[0 0 1 0 0];
H3=[0.5 0 0.5 0 0];
Ht=[-0.2 -0.2 0.2 0.2 0];
//------------------------------------------------------------------
//Poles (eigen values) of the system
p=clean(spec(F));
disp(p,"P","Poles of Tape Drive System are (for any output)")
disp("************************************************************")
disp("pole and zero polynomials and transfer function...
for a system with output H2")
sys2=syslin('c',F,G,H2,0);
[d2 num2 den2]=ss2tf(sys2);
N2=coeff(num2);
D2=coeff(den2);
disp(D2,"D2",N2,"N2")
// zeros of the system with output H2
[zer2]=trzeros(sys2)
disp(zer2,"ZER2","zeros are")
// transfer function of the system with output H2
G2=clean(num2/den2);
disp(G2,"G2(s)=N2(s)/D2(s)=")
disp("************************************************************")
disp("pole and zero polynomials and transfer function for a...
system with output H3")
sys3=syslin('c',F,G,H3,0);
[d3 num3 den3]=ss2tf(sys3);
N3=coeff(num3);
D3=coeff(den3);
disp(D3,"D3",N3,"N3")
// zeros of the system with output H3
[zer3]=trzeros(sys3)
disp(zer3,"ZER3","zeros are")
// transfer function of the system with output H3
G3=clean(num2/den2);
disp(G3,"G3(s)=N3(s)/D3(s)=")
disp("************************************************************")
disp("pole and zero polynomials and transfer function for a...
system with output Ht")
syst=syslin('c',F,G,Ht,0);
[dt numt dent]=ss2tf(syst);
Nt=coeff(numt);
Dt=coeff(dent);
disp(Dt,"Dt",Nt,"Nt","zeros are")
// zeros of the system with output Ht
[zert]=trzeros(syst)
disp(zert,"ZERT")
// transfer function of the system with output Ht
Gt=clean(numt/dent);
disp(Gt,"G(s)=Nt(s)/Dt(s)=")
disp("************************************************************")
//------------------------------------------------------------------
|
d8cb713107f0c0119059d85de1006dba778b908b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1748/CH1/EX1.6/Exa1_6.sce | 4debfc34003ebb0b46d535f6eee10323408e8db9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 620 | sce | Exa1_6.sce | //Exa 1.6
clc;
clear;
close;
//given data
format('v',7);
StatorSlots=24//No. of stator slots
Poles=4;//No. of poles
SlotsPerPole=StatorSlots/Poles;// no. of slots per pole
coilSpan=1:6;//unitless
disp("If the sides of the coil are placed in slots 1 and 7, then it is full pitched, but if the coil slides are placed in 1 and 6 then it is short pitched and the distance equal to 5/6th of pole-pitch.");
disp("Since it falls short by 1/6th of the pole-pitch, hence it is short by :")
theta=180/SlotsPerPole;//in Degree
disp(string(theta)+" Degree.")
Kp=cosd(theta/2);//unitless
disp(Kp,"Pitch-factor Kp : "); |
76b8409680989dd0e5d33af5a04df4ee4486fb01 | 584105ff5b87869494a42f632079668e4c3f82de | /TestCases/extractHOGFeatures/extractHOGFeatures.sce | 62707f9f60469a18d220c5c011cce1945ef5a81d | [] | no_license | kevgeo/FOSSEE-Computer-Vision | 0ceb1aafb800580498ea7d79982003714d88fb48 | 9ca5ceae56d11d81a178a9dafddc809238e412ba | refs/heads/master | 2021-01-17T21:11:31.309967 | 2016-08-01T14:45:40 | 2016-08-01T14:45:40 | 63,127,286 | 6 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,932 | sce | extractHOGFeatures.sce | //**************************************************************************
//"output->" shows the error on console
//"->" means that output is correct and no modification needs to be done
//**************************************************************************
I1 = imread("left.jpg");
values = extractHOGFeatures(I1);
//-> Correct output is given
values = extractHOGFeatures(I1,"CellSize",[8,8]);
//->Correct output is given
values = extractHOGFeatures(I1,"CellSize",[8,8,8]);
//output-> Invalid Argument. Only two values for CellSize.
values = extractHOGFeatures(I3,"CellSize",[8,8],"BlockSize",[16,8],"BlockOverlap",[8,8],"NumBins",9);
//-> No error
values = extractHOGFeatures(I3,"CellSize",[8,8],"BlockSize",[32,8],"BlockOverlap",[8,8],"NumBins",9);
//output-> BlockSize values cannot be more than 16.
values = extractHOGFeatures(I3,"CellSize",[8,32],"BlockSize",[32,8],"BlockOverlap",[8,8],"NumBins",9);
//output-> CellSize values cannot be more than 16.
values = extractHOGFeatures(I3,"CellSize",[8,4],"BlockSize",[8,8],"BlockOverlap",[18,8],"NumBins",9);
//output-> BlockOverlap values cannot be more than 16.
values = extractHOGFeatures(I3,"CellSize",[16,4],"BlockSize",[8,8],"BlockOverlap",[16,8],"NumBins",9);
//output-> CellSize values cannot be more than BlockSize values.
values = extractHOGFeatures(I3,"CellSize",[4,4],"BlockSize",[8,8],"BlockOverlap",[16,8],"NumBins",9);
//output-> BlockOverlap values cannot be more than BlockSize values.
values = extractHOGFeatures(I3,"CellSize",[4,4],"BlockSize",[8,8],"NumBins",9);
//-> No error
values = extractHOGFeatures(I3,"BlockSize",[8,8],"NumBins",9);
//-> No error
values = extractHOGFeatures(I3,"BlockSize",[8,8],"CellSize",[8,8],"NumBins",9);
//-> No error when shifting name-value pair arguments randomly
values = extractHOGFeatures(I3,"BlockSize",[8,],"CellSize",[8,8],"NumBins",9);
//output->Invalid Argument.Only two values for BlockSize.
|
47c76a44fbea03769cad83f2b0b358ffeed6d542 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set9/s_Engineering_Physics_K._Rajagopal_2840.zip/Engineering_Physics_K._Rajagopal_2840/CH10/EX10.4/Ex10_4.sce | 979c45371bf1cfdb2a1e5f7987752fa4278b9131 | [] | 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 | 205 | sce | Ex10_4.sce | errcatch(-1,"stop");mode(2);;
all;
Ef=5.51 //in eV
E=(3/5)*Ef;//The average energy of a free electron in silver at 0k
disp(+'eV',E,'The average energy of a free electron in silver at 0k =')
exit();
|
ee2ec3906b148e8508908bc5eebd8d5cbe07bc63 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2699/CH12/EX12.6/Ex12_6.sce | db64bc9fb4e66df0efa4b089385ec4fd89a9e780 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 300 | sce | Ex12_6.sce | //EX12_6 Pg-12.23
clc
clear
m=0.75;//modulation index
P=20;//total power in kW
Pc=P/(1+m^2/2)//since P=Pc*(1+m^2/2)
printf("therefore carrier power in the modulated wave is %.1f kW",Pc)
Psb=Pc*m^2/4;//side band power
Pusb=Psb;
Plsb=Psb;
printf("\n Pusb=%.1f kW \n Plsb=%.1f kW",Pusb,Plsb)
|
a7a89ade1f86f57bac0bc54d8f342da146dff250 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4.1/macros/util/define.sci | 7b0426be71eeefddf0c35cecef118876358c5993 | [
"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 | 850 | sci | define.sci | function define(x)
txt=[]
if x<>'{' then error('define :Incorrect syntax'),end
while %t
t=''
while %t
t1=stripblanks(read(%io(1),1,1,'(a)'))
if part(t1,1:3)=='-->' then t1=part(t,4:length(t)),end
ks=strindex(t1,'..')
if ks==[] then t=t+t1,break,end
if ks(1)==length(t1)-1 then
t=t+part(t1,1:ks(1)-1),
else
t=t+t1,break,
end
end
strsubst(t,'''','''''')
strsubst(t,'""','""""')
if t=='}' then break,end
txt=[txt;t]
end
if size(txt,'*')==0 then
disp('Empty code, no function defined')
end
h=stripblanks(txt(1))
txt(1)=[]
if part(h,1:9)=='function ' then h=part(h,10:length(h)),end
k=strindex(h,'=')
if k==[] then k=0,end
k1=strindex(h,'(')
if k1<>[] then
name=stripblanks(part(h,k+1:k1-1))
else
name=stripblanks(part(h,k+1:length(h)))
end
deff(h,txt)
execstr(name+'=resume('+name+')')
|
f39c8f4f716cf02ec654978881b043cfa3f11372 | ac717936dd571d8c25bf302308d8ad59dc34321f | /src/testControlSystem/writeValue.sce | 1db40ca70817e540ae2fab3655bb1d2f06aa20e6 | [] | no_license | MhDelt/diplom | df6e5b2a3941563719d05b9bbc1dac2b6c8b0b28 | d27a26fdc5f12481a1f6f63612f46d7b49bfe845 | refs/heads/master | 2021-01-18T21:57:15.082025 | 2016-06-07T10:10:11 | 2016-06-07T10:10:11 | 54,836,786 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 101 | sce | writeValue.sce | function [res]=writeValue(handle, t,u1)
SOCKET_write(handle, string(u1));
res=0;
endfunction
|
c79f3fc93b30a19d508364877fbd257862f14d5e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2045/CH1/EX1.14/Ex1_14.sce | 4d1ec5efa914c4e1ca3780a6e1a8989baa2316b4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 577 | sce | Ex1_14.sce | //pagenumber 33 example 14
clear
up=1800;//centimetre square per velocity second
un=3800;//centimetre square per velocity second
//(1) resistivity is 45 ohm
q=1.6*10^-19;//coulomb
ni=2.5*10^13;
sigma1=(un+up)*q*ni;
resist=1/sigma1;
disp("resistivity = "+string((resist))+" ohm centimetre");
disp("resistivity equal to 45");
//(2) impurity added to extent of 1 atom per 10^9
n=4.4*10^22/10^9;
p1=ni^2/n;
sigma1=(n*un+p1*up)*q;
resist=1/sigma1;
disp("resistivity = "+string((resist))+" ohm centimetre");
disp("resistivity equal to 32.4");
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.